dara-components 1.16.14__py3-none-any.whl → 1.16.16__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.
@@ -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