dara-components 1.16.15__py3-none-any.whl → 1.16.17__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dara/components/common/slider.py +2 -0
- dara/components/umd/dara.components.umd.js +26484 -23900
- {dara_components-1.16.15.dist-info → dara_components-1.16.17.dist-info}/METADATA +3 -3
- {dara_components-1.16.15.dist-info → dara_components-1.16.17.dist-info}/RECORD +6 -6
- {dara_components-1.16.15.dist-info → dara_components-1.16.17.dist-info}/LICENSE +0 -0
- {dara_components-1.16.15.dist-info → dara_components-1.16.17.dist-info}/WHEEL +0 -0
dara/components/common/slider.py
CHANGED
|
@@ -123,6 +123,7 @@ class Slider(FormComponent):
|
|
|
123
123
|
:param rail_from_start: Boolean, if True the track is rendered from leftmost handle to the end
|
|
124
124
|
:param rail_labels: A label for the track
|
|
125
125
|
:param rail_to_end: Boolean, if True the track is rendered from rightmost handle to the end
|
|
126
|
+
:param thumb_labels: A list of labels for the slider's thumbs
|
|
126
127
|
:param ticks: List specifying the position of the ticks
|
|
127
128
|
:param value: A Variable instance recording the component's state; can be a single number for single-handle Slider, or an N-length array for a Slider with N handles
|
|
128
129
|
:param disable_input_alternative: Boolean, if True disable the rendering of the input alternative switch
|
|
@@ -135,6 +136,7 @@ class Slider(FormComponent):
|
|
|
135
136
|
rail_from_start: bool = True
|
|
136
137
|
rail_labels: Optional[List[str]] = None
|
|
137
138
|
rail_to_end: bool = False
|
|
139
|
+
thumb_labels: Optional[List[str]] = None
|
|
138
140
|
ticks: Optional[List[Union[float, int]]] = None
|
|
139
141
|
value: Optional[Union[Variable[Any], UrlVariable[Any]]] = None
|
|
140
142
|
disable_input_alternative: bool = False
|