@@ -46,6 +46,9 @@ class Slider(Component):
46
46
True if you want to render the slider with dots. Note: dots are
47
47
disabled automatically when using color.ranges.
48
48
49
+ - fullSize (boolean; optional):
50
+ make slider same size of its parent.
51
+
49
52
- handleLabel (dict; optional):
50
53
Configuration of the slider handle's label. Passing falsy value
51
54
will disable the label.
@@ -157,12 +160,12 @@ class Slider(Component):
157
160
- vertical (boolean; optional):
158
161
If True, the slider will be vertical."""
159
162
@_explicitize_args
160
- def __init__ (self , id = Component .UNDEFINED , style = Component .UNDEFINED , marks = Component .UNDEFINED , color = Component .UNDEFINED , value = Component .UNDEFINED , className = Component .UNDEFINED , labelPosition = Component .UNDEFINED , disabled = Component .UNDEFINED , dots = Component .UNDEFINED , included = Component .UNDEFINED , min = Component .UNDEFINED , max = Component .UNDEFINED , step = Component .UNDEFINED , vertical = Component .UNDEFINED , size = Component .UNDEFINED , targets = Component .UNDEFINED , theme = Component .UNDEFINED , handleLabel = Component .UNDEFINED , updatemode = Component .UNDEFINED , persistence = Component .UNDEFINED , persisted_props = Component .UNDEFINED , persistence_type = Component .UNDEFINED , ** kwargs ):
161
- self ._prop_names = ['id' , 'className' , 'color' , 'disabled' , 'dots' , 'handleLabel' , 'included' , 'labelPosition' , 'marks' , 'max' , 'min' , 'persisted_props' , 'persistence' , 'persistence_type' , 'size' , 'step' , 'style' , 'targets' , 'theme' , 'updatemode' , 'value' , 'vertical' ]
163
+ def __init__ (self , id = Component .UNDEFINED , style = Component .UNDEFINED , marks = Component .UNDEFINED , color = Component .UNDEFINED , value = Component .UNDEFINED , className = Component .UNDEFINED , labelPosition = Component .UNDEFINED , disabled = Component .UNDEFINED , dots = Component .UNDEFINED , included = Component .UNDEFINED , min = Component .UNDEFINED , max = Component .UNDEFINED , step = Component .UNDEFINED , vertical = Component .UNDEFINED , size = Component .UNDEFINED , targets = Component .UNDEFINED , theme = Component .UNDEFINED , handleLabel = Component .UNDEFINED , updatemode = Component .UNDEFINED , persistence = Component .UNDEFINED , persisted_props = Component .UNDEFINED , persistence_type = Component .UNDEFINED , fullSize = Component . UNDEFINED , ** kwargs ):
164
+ self ._prop_names = ['id' , 'className' , 'color' , 'disabled' , 'dots' , 'fullSize' , ' handleLabel' , 'included' , 'labelPosition' , 'marks' , 'max' , 'min' , 'persisted_props' , 'persistence' , 'persistence_type' , 'size' , 'step' , 'style' , 'targets' , 'theme' , 'updatemode' , 'value' , 'vertical' ]
162
165
self ._type = 'Slider'
163
166
self ._namespace = 'dash_daq'
164
167
self ._valid_wildcard_attributes = []
165
- self .available_properties = ['id' , 'className' , 'color' , 'disabled' , 'dots' , 'handleLabel' , 'included' , 'labelPosition' , 'marks' , 'max' , 'min' , 'persisted_props' , 'persistence' , 'persistence_type' , 'size' , 'step' , 'style' , 'targets' , 'theme' , 'updatemode' , 'value' , 'vertical' ]
168
+ self .available_properties = ['id' , 'className' , 'color' , 'disabled' , 'dots' , 'fullSize' , ' handleLabel' , 'included' , 'labelPosition' , 'marks' , 'max' , 'min' , 'persisted_props' , 'persistence' , 'persistence_type' , 'size' , 'step' , 'style' , 'targets' , 'theme' , 'updatemode' , 'value' , 'vertical' ]
166
169
self .available_wildcard_properties = []
167
170
_explicit_args = kwargs .pop ('_explicit_args' )
168
171
_locals = locals ()
0 commit comments