Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 6ffdb52

Browse files
committed
📦 Rebuild components
1 parent cf38fe2 commit 6ffdb52

24 files changed

+162
-25
lines changed

dash_core_components/_checklist.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ class Checklist(DashComponent):
2121
"""
2222
_namespace = 'dash_core_components'
2323
_typename = 'Checklist'
24+
available_wildcard_properties = [
25+
26+
]
2427
id = ComponentProp('id', UNDEFINED, False)
2528
options = ComponentProp('options', "[]", False)
2629
values = ComponentProp('values', UNDEFINED, False)
@@ -62,5 +65,8 @@ def __init__(
6265
:param loading_state: Object that holds the loading state object
6366
coming from dash-renderer
6467
"""
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)
6672
DashComponent.__init__(self, **kws)

dash_core_components/_confirm_dialog.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ class ConfirmDialog(DashComponent):
2121
"""
2222
_namespace = 'dash_core_components'
2323
_typename = 'ConfirmDialog'
24+
available_wildcard_properties = [
25+
26+
]
2427
id = ComponentProp('id', UNDEFINED, False)
2528
message = ComponentProp('message', UNDEFINED, False)
2629
submit_n_clicks = ComponentProp('submit_n_clicks', 0, False)
@@ -56,5 +59,8 @@ def __init__(
5659
:param displayed: Set to true to send the ConfirmDialog.
5760
:param key:
5861
"""
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)
6066
DashComponent.__init__(self, **kws)

dash_core_components/_confirm_dialog_provider.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ class ConfirmDialogProvider(DashComponent):
2222
"""
2323
_namespace = 'dash_core_components'
2424
_typename = 'ConfirmDialogProvider'
25+
available_wildcard_properties = [
26+
27+
]
2528
id = ComponentProp('id', UNDEFINED, False)
2629
message = ComponentProp('message', UNDEFINED, False)
2730
submit_n_clicks = ComponentProp('submit_n_clicks', 0, False)
@@ -61,5 +64,8 @@ def __init__(
6164
:param loading_state: Object that holds the loading state object
6265
coming from dash-renderer
6366
"""
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)
6571
DashComponent.__init__(self, **kws)

dash_core_components/_date_picker_range.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ class DatePickerRange(DashComponent):
2323
"""
2424
_namespace = 'dash_core_components'
2525
_typename = 'DatePickerRange'
26+
available_wildcard_properties = [
27+
28+
]
2629
id = ComponentProp('id', UNDEFINED, False)
2730
start_date = ComponentProp('start_date', UNDEFINED, False)
2831
end_date = ComponentProp('end_date', UNDEFINED, False)
@@ -178,5 +181,8 @@ def __init__(
178181
:param loading_state: Object that holds the loading state object
179182
coming from dash-renderer
180183
"""
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)
182188
DashComponent.__init__(self, **kws)

dash_core_components/_date_picker_single.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ class DatePickerSingle(DashComponent):
2323
"""
2424
_namespace = 'dash_core_components'
2525
_typename = 'DatePickerSingle'
26+
available_wildcard_properties = [
27+
28+
]
2629
id = ComponentProp('id', UNDEFINED, False)
2730
date = ComponentProp('date', UNDEFINED, False)
2831
min_date_allowed = ComponentProp('min_date_allowed', UNDEFINED, False)
@@ -150,5 +153,8 @@ def __init__(
150153
:param loading_state: Object that holds the loading state object
151154
coming from dash-renderer
152155
"""
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)
154160
DashComponent.__init__(self, **kws)

dash_core_components/_dropdown.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ class Dropdown(DashComponent):
2424
"""
2525
_namespace = 'dash_core_components'
2626
_typename = 'Dropdown'
27+
available_wildcard_properties = [
28+
29+
]
2730
id = ComponentProp('id', UNDEFINED, False)
2831
options = ComponentProp('options', UNDEFINED, False)
2932
value = ComponentProp('value', UNDEFINED, False)
@@ -75,5 +78,8 @@ def __init__(
7578
:param loading_state: Object that holds the loading state object
7679
coming from dash-renderer
7780
"""
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)
7985
DashComponent.__init__(self, **kws)

dash_core_components/_graph.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ class Graph(DashComponent):
1818
"""
1919
_namespace = 'dash_core_components'
2020
_typename = 'Graph'
21+
available_wildcard_properties = [
22+
23+
]
2124
id = ComponentProp('id', UNDEFINED, False)
2225
clickData = ComponentProp('clickData', "null", False)
2326
clickAnnotationData = ComponentProp('clickAnnotationData', "null", False)
@@ -100,5 +103,8 @@ def __init__(
100103
:param loading_state: Object that holds the loading state object
101104
coming from dash-renderer
102105
"""
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)
104110
DashComponent.__init__(self, **kws)

dash_core_components/_input.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ class Input(DashComponent):
2121
"""
2222
_namespace = 'dash_core_components'
2323
_typename = 'Input'
24+
available_wildcard_properties = [
25+
26+
]
2427
id = ComponentProp('id', UNDEFINED, False)
2528
value = ComponentProp('value', UNDEFINED, False)
2629
style = ComponentProp('style', UNDEFINED, False)
@@ -255,5 +258,8 @@ def __init__(
255258
:param loading_state: Object that holds the loading state object
256259
coming from dash-renderer
257260
"""
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)
259265
DashComponent.__init__(self, **kws)

dash_core_components/_interval.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ class Interval(DashComponent):
2121
"""
2222
_namespace = 'dash_core_components'
2323
_typename = 'Interval'
24+
available_wildcard_properties = [
25+
26+
]
2427
id = ComponentProp('id', UNDEFINED, False)
2528
interval = ComponentProp('interval', 1000, False)
2629
disabled = ComponentProp('disabled', UNDEFINED, False)
@@ -48,5 +51,8 @@ def __init__(
4851
default) and if 0 then the interval stops
4952
running.
5053
"""
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)
5258
DashComponent.__init__(self, **kws)

dash_core_components/_link.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ class Link(DashComponent):
1818
"""
1919
_namespace = 'dash_core_components'
2020
_typename = 'Link'
21+
available_wildcard_properties = [
22+
23+
]
2124
href = ComponentProp('href', UNDEFINED, False)
2225
refresh = ComponentProp('refresh', False, False)
2326
className = ComponentProp('className', UNDEFINED, False)
@@ -48,5 +51,8 @@ def __init__(
4851
:param loading_state: Object that holds the loading state object
4952
coming from dash-renderer
5053
"""
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)
5258
DashComponent.__init__(self, **kws)

dash_core_components/_loading.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ class Loading(DashComponent):
1919
"""
2020
_namespace = 'dash_core_components'
2121
_typename = 'Loading'
22+
available_wildcard_properties = [
23+
24+
]
2225
id = ComponentProp('id', UNDEFINED, False)
2326
children = ComponentProp('children', UNDEFINED, False)
2427
type = ComponentProp('type', "'default'", False)
@@ -60,5 +63,8 @@ def __init__(
6063
:param loading_state: Object that holds the loading state object
6164
coming from dash-renderer
6265
"""
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)
6470
DashComponent.__init__(self, **kws)

dash_core_components/_location.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ class Location(DashComponent):
2020
"""
2121
_namespace = 'dash_core_components'
2222
_typename = 'Location'
23+
available_wildcard_properties = [
24+
25+
]
2326
id = ComponentProp('id', UNDEFINED, True)
2427
pathname = ComponentProp('pathname', UNDEFINED, False)
2528
search = ComponentProp('search', UNDEFINED, False)
@@ -48,5 +51,8 @@ def __init__(
4851
"/my/full/pathname?myargument=1#myhash"
4952
:param refresh: Refresh the page when the location is updated?
5053
"""
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)
5258
DashComponent.__init__(self, **kws)

dash_core_components/_logout_button.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ class LogoutButton(DashComponent):
2828
"""
2929
_namespace = 'dash_core_components'
3030
_typename = 'LogoutButton'
31+
available_wildcard_properties = [
32+
33+
]
3134
id = ComponentProp('id', UNDEFINED, False)
3235
label = ComponentProp('label', 'Logout', False)
3336
logout_url = ComponentProp('logout_url', UNDEFINED, False)
@@ -58,5 +61,8 @@ def __init__(
5861
:param loading_state: Object that holds the loading state object
5962
coming from dash-renderer
6063
"""
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)
6268
DashComponent.__init__(self, **kws)

dash_core_components/_markdown.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ class Markdown(DashComponent):
1919
"""
2020
_namespace = 'dash_core_components'
2121
_typename = 'Markdown'
22+
available_wildcard_properties = [
23+
24+
]
2225
id = ComponentProp('id', UNDEFINED, False)
2326
className = ComponentProp('className', UNDEFINED, False)
2427
containerProps = ComponentProp('containerProps', UNDEFINED, False)
@@ -55,5 +58,8 @@ def __init__(
5558
:param loading_state: Object that holds the loading state object
5659
coming from dash-renderer
5760
"""
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)
5965
DashComponent.__init__(self, **kws)

dash_core_components/_radio_items.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ class RadioItems(DashComponent):
2121
"""
2222
_namespace = 'dash_core_components'
2323
_typename = 'RadioItems'
24+
available_wildcard_properties = [
25+
26+
]
2427
id = ComponentProp('id', UNDEFINED, False)
2528
options = ComponentProp('options', "[]", False)
2629
value = ComponentProp('value', UNDEFINED, False)
@@ -62,5 +65,8 @@ def __init__(
6265
:param loading_state: Object that holds the loading state object
6366
coming from dash-renderer
6467
"""
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)
6672
DashComponent.__init__(self, **kws)

dash_core_components/_range_slider.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ class RangeSlider(DashComponent):
1919
"""
2020
_namespace = 'dash_core_components'
2121
_typename = 'RangeSlider'
22+
available_wildcard_properties = [
23+
24+
]
2225
id = ComponentProp('id', UNDEFINED, False)
2326
marks = ComponentProp('marks', UNDEFINED, False)
2427
value = ComponentProp('value', UNDEFINED, False)
@@ -95,5 +98,8 @@ def __init__(
9598
:param loading_state: Object that holds the loading state object
9699
coming from dash-renderer
97100
"""
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)
99105
DashComponent.__init__(self, **kws)

dash_core_components/_slider.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ class Slider(DashComponent):
1818
"""
1919
_namespace = 'dash_core_components'
2020
_typename = 'Slider'
21+
available_wildcard_properties = [
22+
23+
]
2124
id = ComponentProp('id', UNDEFINED, False)
2225
marks = ComponentProp('marks', UNDEFINED, False)
2326
value = ComponentProp('value', UNDEFINED, False)
@@ -80,5 +83,8 @@ def __init__(
8083
:param loading_state: Object that holds the loading state object
8184
coming from dash-renderer
8285
"""
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)
8490
DashComponent.__init__(self, **kws)

dash_core_components/_store.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ class Store(DashComponent):
2020
"""
2121
_namespace = 'dash_core_components'
2222
_typename = 'Store'
23+
available_wildcard_properties = [
24+
25+
]
2326
id = ComponentProp('id', UNDEFINED, True)
2427
storage_type = ComponentProp('storage_type', "'memory'", False)
2528
data = ComponentProp('data', UNDEFINED, False)
@@ -50,5 +53,8 @@ def __init__(
5053
`data_key`.
5154
:param modified_timestamp: The last time the storage was modified.
5255
"""
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)
5460
DashComponent.__init__(self, **kws)

dash_core_components/_syntax_highlighter.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ class SyntaxHighlighter(DashComponent):
1818
"""
1919
_namespace = 'dash_core_components'
2020
_typename = 'SyntaxHighlighter'
21+
available_wildcard_properties = [
22+
23+
]
2124
id = ComponentProp('id', UNDEFINED, False)
2225
children = ComponentProp('children', UNDEFINED, False)
2326
language = ComponentProp('language', UNDEFINED, False)
@@ -96,5 +99,8 @@ def __init__(
9699
:param loading_state: Object that holds the loading state object
97100
coming from dash-renderer
98101
"""
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)
100106
DashComponent.__init__(self, **kws)

dash_core_components/_tab.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ class Tab(DashComponent):
1818
"""
1919
_namespace = 'dash_core_components'
2020
_typename = 'Tab'
21+
available_wildcard_properties = [
22+
23+
]
2124
id = ComponentProp('id', UNDEFINED, False)
2225
label = ComponentProp('label', UNDEFINED, False)
2326
children = ComponentProp('children', UNDEFINED, False)
@@ -72,5 +75,8 @@ def __init__(
7275
:param loading_state: Object that holds the loading state object
7376
coming from dash-renderer
7477
"""
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)
7682
DashComponent.__init__(self, **kws)

0 commit comments

Comments
 (0)