Number / Magnitude Widgets Should Respect `inclusive_bounds`

In this case:

import param as pm
import panel as pn
pn.extension()

class A(pm.Parameterized):
    a = pm.Magnitude(inclusive_bounds=(False,False))
    
pn.panel(A)

It would be nice if the default slider widget would respect the bounds.

1 Like