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

Commit 515da32

Browse files
committed
📦 Regenerate.
1 parent 0e5454b commit 515da32

26 files changed

+50
-234
lines changed

dash_core_components/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
'external_url': (
3030
'https://unpkg.com/dash-core-components@{}'
3131
'/dash_core_components/dash_core_components.min.js'
32-
).format(__version__),
32+
).format('0.45.0-rc1'),
3333
'namespace': 'dash_core_components'
3434
},
3535
{
@@ -38,7 +38,7 @@
3838
'external_url': (
3939
'https://unpkg.com/dash-core-components@{}'
4040
'/dash_core_components/dash_core_components.min.js.map'
41-
).format(__version__),
41+
).format('0.45.0-rc1'),
4242
'namespace': 'dash_core_components',
4343
'dynamic': True
4444
}

dash_core_components/_checklist.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
"""
22
Autogenerated file
33
DO NOT EDIT.
4-
CONTENT WILL BE OVERWRITTEN!
5-
6-
WARNING: Do not import this file directly!
74
"""
85
import typing
96

@@ -47,9 +44,8 @@ def __init__(
4744
labelStyle="{}",
4845
labelClassName='',
4946
loading_state=UNDEFINED,
50-
**kwargs
5147
):
52-
# type: (typing.Union[str, Undefined], typing.Union[typing.List[typing.Dict[str, typing.Union[str, bool]]], Undefined], typing.Union[typing.List[str], Undefined], typing.Union[str, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined], typing.Any) -> None # noqa: E501
48+
# type: (typing.Union[str, Undefined], typing.Union[typing.List[typing.Dict[str, typing.Union[str, bool]]], Undefined], typing.Union[typing.List[str], Undefined], typing.Union[str, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined]) -> None # noqa: E501
5349
"""
5450
:param id:
5551
:param options: An array of options
@@ -65,8 +61,4 @@ def __init__(
6561
:param loading_state: Object that holds the loading state object
6662
coming from dash-renderer
6763
"""
68-
kws = {
69-
k: v for k, v in locals().items() if k not in ('self', 'kwargs')
70-
}
71-
kws.update(kwargs)
72-
DashComponent.__init__(self, **kws)
64+
DashComponent.__init__(self, locals())

dash_core_components/_confirm_dialog.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
"""
22
Autogenerated file
33
DO NOT EDIT.
4-
CONTENT WILL BE OVERWRITTEN!
5-
6-
WARNING: Do not import this file directly!
74
"""
85
import typing
96

@@ -43,9 +40,8 @@ def __init__(
4340
cancel_n_clicks_timestamp=-1,
4441
displayed=UNDEFINED,
4542
key=UNDEFINED,
46-
**kwargs
4743
):
48-
# type: (typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[bool, Undefined], typing.Union[str, Undefined], typing.Any) -> None # noqa: E501
44+
# type: (typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[bool, Undefined], typing.Union[str, Undefined]) -> None # noqa: E501
4945
"""
5046
:param id:
5147
:param message: Message to show in the popup.
@@ -59,8 +55,4 @@ def __init__(
5955
:param displayed: Set to true to send the ConfirmDialog.
6056
:param key:
6157
"""
62-
kws = {
63-
k: v for k, v in locals().items() if k not in ('self', 'kwargs')
64-
}
65-
kws.update(kwargs)
66-
DashComponent.__init__(self, **kws)
58+
DashComponent.__init__(self, locals())

dash_core_components/_confirm_dialog_provider.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
"""
22
Autogenerated file
33
DO NOT EDIT.
4-
CONTENT WILL BE OVERWRITTEN!
5-
6-
WARNING: Do not import this file directly!
74
"""
85
import typing
96

@@ -46,9 +43,8 @@ def __init__(
4643
cancel_n_clicks_timestamp=-1,
4744
displayed=UNDEFINED,
4845
loading_state=UNDEFINED,
49-
**kwargs
5046
):
51-
# type: (typing.Union[typing.Any, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined], typing.Any) -> None # noqa: E501
47+
# type: (typing.Union[typing.Any, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined]) -> None # noqa: E501
5248
"""
5349
:param id:
5450
:param message: Message to show in the popup.
@@ -64,8 +60,4 @@ def __init__(
6460
:param loading_state: Object that holds the loading state object
6561
coming from dash-renderer
6662
"""
67-
kws = {
68-
k: v for k, v in locals().items() if k not in ('self', 'kwargs')
69-
}
70-
kws.update(kwargs)
71-
DashComponent.__init__(self, **kws)
63+
DashComponent.__init__(self, locals())

dash_core_components/_date_picker_range.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
"""
22
Autogenerated file
33
DO NOT EDIT.
4-
CONTENT WILL BE OVERWRITTEN!
5-
6-
WARNING: Do not import this file directly!
74
"""
85
import typing
96

@@ -83,9 +80,8 @@ def __init__(
8380
className=UNDEFINED,
8481
updatemode="'singledate'",
8582
loading_state=UNDEFINED,
86-
**kwargs
8783
):
88-
# type: (typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Any, Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Any, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[typing.Any, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined], typing.Any) -> None # noqa: E501
84+
# type: (typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Any, Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Any, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[typing.Any, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined]) -> None # noqa: E501
8985
"""
9086
:param id:
9187
:param start_date: Specifies the starting date for the component.
@@ -181,8 +177,4 @@ def __init__(
181177
:param loading_state: Object that holds the loading state object
182178
coming from dash-renderer
183179
"""
184-
kws = {
185-
k: v for k, v in locals().items() if k not in ('self', 'kwargs')
186-
}
187-
kws.update(kwargs)
188-
DashComponent.__init__(self, **kws)
180+
DashComponent.__init__(self, locals())

dash_core_components/_date_picker_single.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
"""
22
Autogenerated file
33
DO NOT EDIT.
4-
CONTENT WILL BE OVERWRITTEN!
5-
6-
WARNING: Do not import this file directly!
74
"""
85
import typing
96

@@ -75,9 +72,8 @@ def __init__(
7572
style=UNDEFINED,
7673
className=UNDEFINED,
7774
loading_state=UNDEFINED,
78-
**kwargs
7975
):
80-
# type: (typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Any, Undefined], typing.Union[bool, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Any, Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined], typing.Any) -> None # noqa: E501
76+
# type: (typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Any, Undefined], typing.Union[bool, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Any, Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined]) -> None # noqa: E501
8177
"""
8278
:param id:
8379
:param date: Specifies the starting date for the component, best
@@ -153,8 +149,4 @@ def __init__(
153149
:param loading_state: Object that holds the loading state object
154150
coming from dash-renderer
155151
"""
156-
kws = {
157-
k: v for k, v in locals().items() if k not in ('self', 'kwargs')
158-
}
159-
kws.update(kwargs)
160-
DashComponent.__init__(self, **kws)
152+
DashComponent.__init__(self, locals())

dash_core_components/_dropdown.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
"""
22
Autogenerated file
33
DO NOT EDIT.
4-
CONTENT WILL BE OVERWRITTEN!
5-
6-
WARNING: Do not import this file directly!
74
"""
85
import typing
96

@@ -52,9 +49,8 @@ def __init__(
5249
searchable=True,
5350
style=UNDEFINED,
5451
loading_state=UNDEFINED,
55-
**kwargs
5652
):
57-
# type: (typing.Union[str, Undefined], typing.Union[typing.List[typing.Dict[str, typing.Union[str, bool]]], Undefined], typing.Union[typing.Union[str,typing.List[str]], Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined], typing.Any) -> None # noqa: E501
53+
# type: (typing.Union[str, Undefined], typing.Union[typing.List[typing.Dict[str, typing.Union[str, bool]]], Undefined], typing.Union[typing.Union[str,typing.List[str]], Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[bool, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined]) -> None # noqa: E501
5854
"""
5955
:param id:
6056
:param options: An array of options
@@ -78,8 +74,4 @@ def __init__(
7874
:param loading_state: Object that holds the loading state object
7975
coming from dash-renderer
8076
"""
81-
kws = {
82-
k: v for k, v in locals().items() if k not in ('self', 'kwargs')
83-
}
84-
kws.update(kwargs)
85-
DashComponent.__init__(self, **kws)
77+
DashComponent.__init__(self, locals())

dash_core_components/_graph.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
"""
22
Autogenerated file
33
DO NOT EDIT.
4-
CONTENT WILL BE OVERWRITTEN!
5-
6-
WARNING: Do not import this file directly!
74
"""
85
import typing
96

@@ -54,9 +51,8 @@ def __init__(
5451
animation_options="{\n frame: {\n redraw: false,\n },\n transition: {\n duration: 750,\n ease: 'cubic-in-out',\n },\n}",
5552
config="{\n staticPlot: false,\n editable: false,\n edits: {\n annotationPosition: false,\n annotationTail: false,\n annotationText: false,\n axisTitleText: false,\n colorbarPosition: false,\n colorbarTitleText: false,\n legendPosition: false,\n legendText: false,\n shapePosition: false,\n titleText: false,\n },\n autosizable: false,\n queueLength: 0,\n fillFrame: false,\n frameMargins: 0,\n scrollZoom: false,\n doubleClick: 'reset+autosize',\n showTips: true,\n showAxisDragHandles: true,\n showAxisRangeEntryBoxes: true,\n showLink: false,\n sendData: true,\n linkText: 'Edit chart',\n showSources: false,\n displayModeBar: 'hover',\n modeBarButtonsToRemove: [],\n modeBarButtonsToAdd: [],\n modeBarButtons: false,\n displaylogo: true,\n plotGlPixelRatio: 2,\n topojsonURL: 'https://cdn.plot.ly/',\n mapboxAccessToken: null,\n}",
5653
loading_state=UNDEFINED,
57-
**kwargs
5854
):
59-
# type: (typing.Union[str, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.List, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, typing.Dict[str, typing.Union[bool]], typing.Union[float, int], typing.Any, str, typing.List]], Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined], typing.Any) -> None # noqa: E501
55+
# type: (typing.Union[str, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.List, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, typing.Dict[str, typing.Union[bool]], typing.Union[float, int], typing.Any, str, typing.List]], Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined]) -> None # noqa: E501
6056
"""
6157
:param id: The ID of this component, used to identify dash
6258
components in callbacks. The ID needs to be unique
@@ -103,8 +99,4 @@ def __init__(
10399
:param loading_state: Object that holds the loading state object
104100
coming from dash-renderer
105101
"""
106-
kws = {
107-
k: v for k, v in locals().items() if k not in ('self', 'kwargs')
108-
}
109-
kws.update(kwargs)
110-
DashComponent.__init__(self, **kws)
102+
DashComponent.__init__(self, locals())

dash_core_components/_input.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
"""
22
Autogenerated file
33
DO NOT EDIT.
4-
CONTENT WILL BE OVERWRITTEN!
5-
6-
WARNING: Do not import this file directly!
74
"""
85
import typing
96

@@ -91,9 +88,8 @@ def __init__(
9188
n_blur=0,
9289
n_blur_timestamp=-1,
9390
loading_state=UNDEFINED,
94-
**kwargs
9591
):
96-
# type: (typing.Union[str, Undefined], typing.Union[typing.Union[str,typing.Union[float, int]], Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Any, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Any, Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[str,typing.Union[float, int]], Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[str,typing.Union[float, int]], Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[str,typing.Union[float, int]], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined], typing.Any) -> None # noqa: E501
92+
# type: (typing.Union[str, Undefined], typing.Union[typing.Union[str,typing.Union[float, int]], Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Any, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Any, Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[str,typing.Union[float, int]], Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[str,typing.Union[float, int]], Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[str, Undefined], typing.Union[typing.Union[str,typing.Union[float, int]], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Union[float, int], Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined]) -> None # noqa: E501
9793
"""
9894
:param id: The ID of this component, used to identify dash
9995
components in callbacks. The ID needs to be unique
@@ -258,8 +254,4 @@ def __init__(
258254
:param loading_state: Object that holds the loading state object
259255
coming from dash-renderer
260256
"""
261-
kws = {
262-
k: v for k, v in locals().items() if k not in ('self', 'kwargs')
263-
}
264-
kws.update(kwargs)
265-
DashComponent.__init__(self, **kws)
257+
DashComponent.__init__(self, locals())

0 commit comments

Comments
 (0)