Skip to content

Commit 58e2a3f

Browse files
committed
Build artifacts for 2.5.0
1 parent 4ba470a commit 58e2a3f

File tree

167 files changed

+945
-363
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+945
-363
lines changed

dash/dash-renderer/build/dash_renderer.dev.js

Lines changed: 170 additions & 11 deletions
Large diffs are not rendered by default.

dash/dash-renderer/build/dash_renderer.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash/dash_table/DataTable.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,6 +1119,11 @@ class DataTable(Component):
11191119
kept after the browser quit. session: window.sessionStorage, data
11201120
is cleared once the browser quit."""
11211121

1122+
_children_props = []
1123+
_base_nodes = ["children"]
1124+
_namespace = "dash_table"
1125+
_type = "DataTable"
1126+
11221127
@_explicitize_args
11231128
def __init__(
11241129
self,
@@ -1280,8 +1285,6 @@ def __init__(
12801285
"persisted_props",
12811286
"persistence_type",
12821287
]
1283-
self._type = "DataTable"
1284-
self._namespace = "dash_table"
12851288
self._valid_wildcard_attributes = []
12861289
self.available_properties = [
12871290
"data",

dash/dash_table/bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash/dash_table/bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash/dash_table/demo.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash/dash_table/demo.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash/dash_table/package-info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-table",
3-
"version": "5.1.2",
3+
"version": "5.1.3",
44
"description": "Dash table",
55
"repository": {
66
"type": "git",

dash/dcc/Checklist.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Checklist(Component):
2121
- disabled (boolean; optional):
2222
If True, this option is disabled and cannot be selected.
2323
24-
- label (string | number | boolean; required):
24+
- label (a list of or a singular dash component, string or number; required):
2525
The option's label.
2626
2727
- title (string; optional):
@@ -101,6 +101,11 @@ class Checklist(Component):
101101
kept after the browser quit. session: window.sessionStorage, data
102102
is cleared once the browser quit."""
103103

104+
_children_props = ["options[].label"]
105+
_base_nodes = ["children"]
106+
_namespace = "dash_core_components"
107+
_type = "Checklist"
108+
104109
@_explicitize_args
105110
def __init__(
106111
self,
@@ -136,8 +141,6 @@ def __init__(
136141
"persisted_props",
137142
"persistence_type",
138143
]
139-
self._type = "Checklist"
140-
self._namespace = "dash_core_components"
141144
self._valid_wildcard_attributes = []
142145
self.available_properties = [
143146
"options",

dash/dcc/Clipboard.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ class Clipboard(Component):
4949
- title (string; optional):
5050
The text shown as a tooltip when hovering over the copy icon."""
5151

52+
_children_props = []
53+
_base_nodes = ["children"]
54+
_namespace = "dash_core_components"
55+
_type = "Clipboard"
56+
5257
@_explicitize_args
5358
def __init__(
5459
self,
@@ -72,8 +77,6 @@ def __init__(
7277
"target_id",
7378
"title",
7479
]
75-
self._type = "Clipboard"
76-
self._namespace = "dash_core_components"
7780
self._valid_wildcard_attributes = []
7881
self.available_properties = [
7982
"id",

0 commit comments

Comments
 (0)