This repository was archived by the owner on Jun 3, 2024. It is now read-only.
File tree 24 files changed +162
-25
lines changed
24 files changed +162
-25
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ class Checklist(DashComponent):
21
21
"""
22
22
_namespace = 'dash_core_components'
23
23
_typename = 'Checklist'
24
+ available_wildcard_properties = [
25
+
26
+ ]
24
27
id = ComponentProp ('id' , UNDEFINED , False )
25
28
options = ComponentProp ('options' , "[]" , False )
26
29
values = ComponentProp ('values' , UNDEFINED , False )
@@ -62,5 +65,8 @@ def __init__(
62
65
:param loading_state: Object that holds the loading state object
63
66
coming from dash-renderer
64
67
"""
65
- kws = {k : v for k , v in locals ().items () if k != 'self' }
68
+ kws = {
69
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
70
+ }
71
+ kws .update (kwargs )
66
72
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ class ConfirmDialog(DashComponent):
21
21
"""
22
22
_namespace = 'dash_core_components'
23
23
_typename = 'ConfirmDialog'
24
+ available_wildcard_properties = [
25
+
26
+ ]
24
27
id = ComponentProp ('id' , UNDEFINED , False )
25
28
message = ComponentProp ('message' , UNDEFINED , False )
26
29
submit_n_clicks = ComponentProp ('submit_n_clicks' , 0 , False )
@@ -56,5 +59,8 @@ def __init__(
56
59
:param displayed: Set to true to send the ConfirmDialog.
57
60
:param key:
58
61
"""
59
- kws = {k : v for k , v in locals ().items () if k != 'self' }
62
+ kws = {
63
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
64
+ }
65
+ kws .update (kwargs )
60
66
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ class ConfirmDialogProvider(DashComponent):
22
22
"""
23
23
_namespace = 'dash_core_components'
24
24
_typename = 'ConfirmDialogProvider'
25
+ available_wildcard_properties = [
26
+
27
+ ]
25
28
id = ComponentProp ('id' , UNDEFINED , False )
26
29
message = ComponentProp ('message' , UNDEFINED , False )
27
30
submit_n_clicks = ComponentProp ('submit_n_clicks' , 0 , False )
@@ -61,5 +64,8 @@ def __init__(
61
64
:param loading_state: Object that holds the loading state object
62
65
coming from dash-renderer
63
66
"""
64
- kws = {k : v for k , v in locals ().items () if k != 'self' }
67
+ kws = {
68
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
69
+ }
70
+ kws .update (kwargs )
65
71
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ class DatePickerRange(DashComponent):
23
23
"""
24
24
_namespace = 'dash_core_components'
25
25
_typename = 'DatePickerRange'
26
+ available_wildcard_properties = [
27
+
28
+ ]
26
29
id = ComponentProp ('id' , UNDEFINED , False )
27
30
start_date = ComponentProp ('start_date' , UNDEFINED , False )
28
31
end_date = ComponentProp ('end_date' , UNDEFINED , False )
@@ -178,5 +181,8 @@ def __init__(
178
181
:param loading_state: Object that holds the loading state object
179
182
coming from dash-renderer
180
183
"""
181
- kws = {k : v for k , v in locals ().items () if k != 'self' }
184
+ kws = {
185
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
186
+ }
187
+ kws .update (kwargs )
182
188
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ class DatePickerSingle(DashComponent):
23
23
"""
24
24
_namespace = 'dash_core_components'
25
25
_typename = 'DatePickerSingle'
26
+ available_wildcard_properties = [
27
+
28
+ ]
26
29
id = ComponentProp ('id' , UNDEFINED , False )
27
30
date = ComponentProp ('date' , UNDEFINED , False )
28
31
min_date_allowed = ComponentProp ('min_date_allowed' , UNDEFINED , False )
@@ -150,5 +153,8 @@ def __init__(
150
153
:param loading_state: Object that holds the loading state object
151
154
coming from dash-renderer
152
155
"""
153
- kws = {k : v for k , v in locals ().items () if k != 'self' }
156
+ kws = {
157
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
158
+ }
159
+ kws .update (kwargs )
154
160
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ class Dropdown(DashComponent):
24
24
"""
25
25
_namespace = 'dash_core_components'
26
26
_typename = 'Dropdown'
27
+ available_wildcard_properties = [
28
+
29
+ ]
27
30
id = ComponentProp ('id' , UNDEFINED , False )
28
31
options = ComponentProp ('options' , UNDEFINED , False )
29
32
value = ComponentProp ('value' , UNDEFINED , False )
@@ -75,5 +78,8 @@ def __init__(
75
78
:param loading_state: Object that holds the loading state object
76
79
coming from dash-renderer
77
80
"""
78
- kws = {k : v for k , v in locals ().items () if k != 'self' }
81
+ kws = {
82
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
83
+ }
84
+ kws .update (kwargs )
79
85
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ class Graph(DashComponent):
18
18
"""
19
19
_namespace = 'dash_core_components'
20
20
_typename = 'Graph'
21
+ available_wildcard_properties = [
22
+
23
+ ]
21
24
id = ComponentProp ('id' , UNDEFINED , False )
22
25
clickData = ComponentProp ('clickData' , "null" , False )
23
26
clickAnnotationData = ComponentProp ('clickAnnotationData' , "null" , False )
@@ -100,5 +103,8 @@ def __init__(
100
103
:param loading_state: Object that holds the loading state object
101
104
coming from dash-renderer
102
105
"""
103
- kws = {k : v for k , v in locals ().items () if k != 'self' }
106
+ kws = {
107
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
108
+ }
109
+ kws .update (kwargs )
104
110
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ class Input(DashComponent):
21
21
"""
22
22
_namespace = 'dash_core_components'
23
23
_typename = 'Input'
24
+ available_wildcard_properties = [
25
+
26
+ ]
24
27
id = ComponentProp ('id' , UNDEFINED , False )
25
28
value = ComponentProp ('value' , UNDEFINED , False )
26
29
style = ComponentProp ('style' , UNDEFINED , False )
@@ -255,5 +258,8 @@ def __init__(
255
258
:param loading_state: Object that holds the loading state object
256
259
coming from dash-renderer
257
260
"""
258
- kws = {k : v for k , v in locals ().items () if k != 'self' }
261
+ kws = {
262
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
263
+ }
264
+ kws .update (kwargs )
259
265
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ class Interval(DashComponent):
21
21
"""
22
22
_namespace = 'dash_core_components'
23
23
_typename = 'Interval'
24
+ available_wildcard_properties = [
25
+
26
+ ]
24
27
id = ComponentProp ('id' , UNDEFINED , False )
25
28
interval = ComponentProp ('interval' , 1000 , False )
26
29
disabled = ComponentProp ('disabled' , UNDEFINED , False )
@@ -48,5 +51,8 @@ def __init__(
48
51
default) and if 0 then the interval stops
49
52
running.
50
53
"""
51
- kws = {k : v for k , v in locals ().items () if k != 'self' }
54
+ kws = {
55
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
56
+ }
57
+ kws .update (kwargs )
52
58
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ class Link(DashComponent):
18
18
"""
19
19
_namespace = 'dash_core_components'
20
20
_typename = 'Link'
21
+ available_wildcard_properties = [
22
+
23
+ ]
21
24
href = ComponentProp ('href' , UNDEFINED , False )
22
25
refresh = ComponentProp ('refresh' , False , False )
23
26
className = ComponentProp ('className' , UNDEFINED , False )
@@ -48,5 +51,8 @@ def __init__(
48
51
:param loading_state: Object that holds the loading state object
49
52
coming from dash-renderer
50
53
"""
51
- kws = {k : v for k , v in locals ().items () if k != 'self' }
54
+ kws = {
55
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
56
+ }
57
+ kws .update (kwargs )
52
58
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ class Loading(DashComponent):
19
19
"""
20
20
_namespace = 'dash_core_components'
21
21
_typename = 'Loading'
22
+ available_wildcard_properties = [
23
+
24
+ ]
22
25
id = ComponentProp ('id' , UNDEFINED , False )
23
26
children = ComponentProp ('children' , UNDEFINED , False )
24
27
type = ComponentProp ('type' , "'default'" , False )
@@ -60,5 +63,8 @@ def __init__(
60
63
:param loading_state: Object that holds the loading state object
61
64
coming from dash-renderer
62
65
"""
63
- kws = {k : v for k , v in locals ().items () if k != 'self' }
66
+ kws = {
67
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
68
+ }
69
+ kws .update (kwargs )
64
70
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ class Location(DashComponent):
20
20
"""
21
21
_namespace = 'dash_core_components'
22
22
_typename = 'Location'
23
+ available_wildcard_properties = [
24
+
25
+ ]
23
26
id = ComponentProp ('id' , UNDEFINED , True )
24
27
pathname = ComponentProp ('pathname' , UNDEFINED , False )
25
28
search = ComponentProp ('search' , UNDEFINED , False )
@@ -48,5 +51,8 @@ def __init__(
48
51
"/my/full/pathname?myargument=1#myhash"
49
52
:param refresh: Refresh the page when the location is updated?
50
53
"""
51
- kws = {k : v for k , v in locals ().items () if k != 'self' }
54
+ kws = {
55
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
56
+ }
57
+ kws .update (kwargs )
52
58
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ class LogoutButton(DashComponent):
28
28
"""
29
29
_namespace = 'dash_core_components'
30
30
_typename = 'LogoutButton'
31
+ available_wildcard_properties = [
32
+
33
+ ]
31
34
id = ComponentProp ('id' , UNDEFINED , False )
32
35
label = ComponentProp ('label' , 'Logout' , False )
33
36
logout_url = ComponentProp ('logout_url' , UNDEFINED , False )
@@ -58,5 +61,8 @@ def __init__(
58
61
:param loading_state: Object that holds the loading state object
59
62
coming from dash-renderer
60
63
"""
61
- kws = {k : v for k , v in locals ().items () if k != 'self' }
64
+ kws = {
65
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
66
+ }
67
+ kws .update (kwargs )
62
68
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ class Markdown(DashComponent):
19
19
"""
20
20
_namespace = 'dash_core_components'
21
21
_typename = 'Markdown'
22
+ available_wildcard_properties = [
23
+
24
+ ]
22
25
id = ComponentProp ('id' , UNDEFINED , False )
23
26
className = ComponentProp ('className' , UNDEFINED , False )
24
27
containerProps = ComponentProp ('containerProps' , UNDEFINED , False )
@@ -55,5 +58,8 @@ def __init__(
55
58
:param loading_state: Object that holds the loading state object
56
59
coming from dash-renderer
57
60
"""
58
- kws = {k : v for k , v in locals ().items () if k != 'self' }
61
+ kws = {
62
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
63
+ }
64
+ kws .update (kwargs )
59
65
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ class RadioItems(DashComponent):
21
21
"""
22
22
_namespace = 'dash_core_components'
23
23
_typename = 'RadioItems'
24
+ available_wildcard_properties = [
25
+
26
+ ]
24
27
id = ComponentProp ('id' , UNDEFINED , False )
25
28
options = ComponentProp ('options' , "[]" , False )
26
29
value = ComponentProp ('value' , UNDEFINED , False )
@@ -62,5 +65,8 @@ def __init__(
62
65
:param loading_state: Object that holds the loading state object
63
66
coming from dash-renderer
64
67
"""
65
- kws = {k : v for k , v in locals ().items () if k != 'self' }
68
+ kws = {
69
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
70
+ }
71
+ kws .update (kwargs )
66
72
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -19,6 +19,9 @@ class RangeSlider(DashComponent):
19
19
"""
20
20
_namespace = 'dash_core_components'
21
21
_typename = 'RangeSlider'
22
+ available_wildcard_properties = [
23
+
24
+ ]
22
25
id = ComponentProp ('id' , UNDEFINED , False )
23
26
marks = ComponentProp ('marks' , UNDEFINED , False )
24
27
value = ComponentProp ('value' , UNDEFINED , False )
@@ -95,5 +98,8 @@ def __init__(
95
98
:param loading_state: Object that holds the loading state object
96
99
coming from dash-renderer
97
100
"""
98
- kws = {k : v for k , v in locals ().items () if k != 'self' }
101
+ kws = {
102
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
103
+ }
104
+ kws .update (kwargs )
99
105
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ class Slider(DashComponent):
18
18
"""
19
19
_namespace = 'dash_core_components'
20
20
_typename = 'Slider'
21
+ available_wildcard_properties = [
22
+
23
+ ]
21
24
id = ComponentProp ('id' , UNDEFINED , False )
22
25
marks = ComponentProp ('marks' , UNDEFINED , False )
23
26
value = ComponentProp ('value' , UNDEFINED , False )
@@ -80,5 +83,8 @@ def __init__(
80
83
:param loading_state: Object that holds the loading state object
81
84
coming from dash-renderer
82
85
"""
83
- kws = {k : v for k , v in locals ().items () if k != 'self' }
86
+ kws = {
87
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
88
+ }
89
+ kws .update (kwargs )
84
90
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ class Store(DashComponent):
20
20
"""
21
21
_namespace = 'dash_core_components'
22
22
_typename = 'Store'
23
+ available_wildcard_properties = [
24
+
25
+ ]
23
26
id = ComponentProp ('id' , UNDEFINED , True )
24
27
storage_type = ComponentProp ('storage_type' , "'memory'" , False )
25
28
data = ComponentProp ('data' , UNDEFINED , False )
@@ -50,5 +53,8 @@ def __init__(
50
53
`data_key`.
51
54
:param modified_timestamp: The last time the storage was modified.
52
55
"""
53
- kws = {k : v for k , v in locals ().items () if k != 'self' }
56
+ kws = {
57
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
58
+ }
59
+ kws .update (kwargs )
54
60
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ class SyntaxHighlighter(DashComponent):
18
18
"""
19
19
_namespace = 'dash_core_components'
20
20
_typename = 'SyntaxHighlighter'
21
+ available_wildcard_properties = [
22
+
23
+ ]
21
24
id = ComponentProp ('id' , UNDEFINED , False )
22
25
children = ComponentProp ('children' , UNDEFINED , False )
23
26
language = ComponentProp ('language' , UNDEFINED , False )
@@ -96,5 +99,8 @@ def __init__(
96
99
:param loading_state: Object that holds the loading state object
97
100
coming from dash-renderer
98
101
"""
99
- kws = {k : v for k , v in locals ().items () if k != 'self' }
102
+ kws = {
103
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
104
+ }
105
+ kws .update (kwargs )
100
106
DashComponent .__init__ (self , ** kws )
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ class Tab(DashComponent):
18
18
"""
19
19
_namespace = 'dash_core_components'
20
20
_typename = 'Tab'
21
+ available_wildcard_properties = [
22
+
23
+ ]
21
24
id = ComponentProp ('id' , UNDEFINED , False )
22
25
label = ComponentProp ('label' , UNDEFINED , False )
23
26
children = ComponentProp ('children' , UNDEFINED , False )
@@ -72,5 +75,8 @@ def __init__(
72
75
:param loading_state: Object that holds the loading state object
73
76
coming from dash-renderer
74
77
"""
75
- kws = {k : v for k , v in locals ().items () if k != 'self' }
78
+ kws = {
79
+ k : v for k , v in locals ().items () if k not in ('self' , 'kwargs' )
80
+ }
81
+ kws .update (kwargs )
76
82
DashComponent .__init__ (self , ** kws )
You can’t perform that action at this time.
0 commit comments