Consider the following example:
import param as pm
import panel as pn
pn.extension()
class A(pm.Parameterized):
a = pm.Magnitude(inclusive_bounds=(False,True))
pn.panel(A)
This yields an unsafe slider widget that raises ValueError when the user slides to 0.
It would be great if the slider widget could infer a softbound in the case of exclusive bounds.