Skip to content

Commit 8c73426

Browse files
committed
2.4.0 build artifacts
1 parent 86f4cfb commit 8c73426

File tree

191 files changed

+23309
-11831
lines changed

Some content is hidden

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

191 files changed

+23309
-11831
lines changed

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

Lines changed: 21050 additions & 10295 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1365,7 +1365,7 @@ def __init__(
13651365
self.available_wildcard_properties = []
13661366
_explicit_args = kwargs.pop("_explicit_args")
13671367
_locals = locals()
1368-
_locals.update(kwargs) # For wildcard attrs
1368+
_locals.update(kwargs) # For wildcard attrs and excess named props
13691369
args = {k: _locals[k] for k in _explicit_args if k != "children"}
13701370
for k in []:
13711371
if k not in args:

dash/dash_table/Format.py

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ def get_named_tuple(name, dict):
1717
Prefix = get_named_tuple(
1818
"prefix",
1919
{
20-
"yocto": 10 ** -24,
21-
"zepto": 10 ** -21,
22-
"atto": 10 ** -18,
23-
"femto": 10 ** -15,
24-
"pico": 10 ** -12,
25-
"nano": 10 ** -9,
26-
"micro": 10 ** -6,
27-
"milli": 10 ** -3,
20+
"yocto": 10**-24,
21+
"zepto": 10**-21,
22+
"atto": 10**-18,
23+
"femto": 10**-15,
24+
"pico": 10**-12,
25+
"nano": 10**-9,
26+
"micro": 10**-6,
27+
"milli": 10**-3,
2828
"none": None,
29-
"kilo": 10 ** 3,
30-
"mega": 10 ** 6,
31-
"giga": 10 ** 9,
32-
"tera": 10 ** 12,
33-
"peta": 10 ** 15,
34-
"exa": 10 ** 18,
35-
"zetta": 10 ** 21,
36-
"yotta": 10 ** 24,
29+
"kilo": 10**3,
30+
"mega": 10**6,
31+
"giga": 10**9,
32+
"tera": 10**12,
33+
"peta": 10**15,
34+
"exa": 10**18,
35+
"zetta": 10**21,
36+
"yotta": 10**24,
3737
},
3838
)
3939

@@ -121,7 +121,7 @@ def _validate_named(self, value, named_values):
121121
raise TypeError("expected value to be one of", str(list(named_values)))
122122

123123
def _validate_string(self, value):
124-
if not isinstance(value, (str, u"".__class__)):
124+
if not isinstance(value, (str, "".__class__)):
125125
raise TypeError("expected value to be a string")
126126

127127
# Specifier

dash/dash_table/async-highlight.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/async-highlight.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/async-table.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/async-table.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/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: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-table",
3-
"version": "5.1.1",
3+
"version": "5.1.2",
44
"description": "Dash table",
55
"repository": {
66
"type": "git",
@@ -23,7 +23,7 @@
2323
"private::format.black": "black dash_table_base tests",
2424
"private::lint.ts": "eslint ./src ./tests",
2525
"private::lint.flake": "flake8 dash_table_base tests",
26-
"private::lint.black": "black --check dash_table_base tests",
26+
"private::lint.black": "if [[ ${PYVERSION:-python39} != python36 ]]; then black --check dash_table_base tests; fi",
2727
"private::lint.prettier": "prettier --config .prettierrc \"{src,tests,demo}/**/*.{js,ts,tsx}\" --list-different",
2828
"private::test.python": "python -m unittest tests/unit/format_test.py",
2929
"private::test.unit": "karma start karma.conf.js --single-run",
@@ -41,58 +41,58 @@
4141
"maintainer": "Alex Johnson <[email protected]>",
4242
"license": "MIT",
4343
"devDependencies": {
44-
"@babel/cli": "^7.17.3",
45-
"@babel/core": "^7.17.4",
44+
"@babel/cli": "^7.17.10",
45+
"@babel/core": "^7.17.10",
4646
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
47-
"@babel/plugin-transform-regenerator": "^7.16.7",
47+
"@babel/plugin-transform-regenerator": "^7.17.9",
4848
"@babel/polyfill": "^7.12.1",
49-
"@babel/preset-env": "^7.16.11",
49+
"@babel/preset-env": "^7.17.10",
5050
"@babel/preset-react": "^7.16.7",
5151
"@fortawesome/fontawesome-svg-core": "1.2.36",
5252
"@fortawesome/free-regular-svg-icons": "^5.15.4",
5353
"@fortawesome/free-solid-svg-icons": "^5.15.4",
5454
"@fortawesome/react-fontawesome": "^0.1.17",
5555
"@percy/storybook": "^3.3.1",
56-
"@plotly/dash-component-plugins": "^1.2.2",
56+
"@plotly/dash-component-plugins": "^1.2.3",
5757
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
58-
"@storybook/builder-webpack5": "^6.4.19",
59-
"@storybook/cli": "^6.4.19",
60-
"@storybook/manager-webpack5": "^6.4.19",
61-
"@storybook/react": "^6.4.19",
58+
"@storybook/builder-webpack5": "^6.4.22",
59+
"@storybook/cli": "^6.4.22",
60+
"@storybook/manager-webpack5": "^6.4.22",
61+
"@storybook/react": "^6.4.22",
6262
"@storybook/semver": "^7.3.2",
63-
"@types/chai": "^4.3.0",
63+
"@types/chai": "^4.3.1",
6464
"@types/d3-format": "^3.0.1",
65-
"@types/mocha": "^8.2.3",
65+
"@types/mocha": "^9.1.1",
6666
"@types/papaparse": "^5.3.2",
67-
"@types/ramda": "0.27.42",
67+
"@types/ramda": "0.28.11",
6868
"@types/react": "^16.14.8",
6969
"@types/react-dom": "^16.9.13",
7070
"@types/react-select": "^4.0.16",
71-
"@typescript-eslint/eslint-plugin": "^5.7.0",
72-
"@typescript-eslint/parser": "^5.7.0",
73-
"babel-loader": "^8.2.3",
71+
"@typescript-eslint/eslint-plugin": "^5.22.0",
72+
"@typescript-eslint/parser": "^5.22.0",
73+
"babel-loader": "^8.2.5",
7474
"chai": "^4.3.6",
75-
"css-loader": "^6.6.0",
75+
"css-loader": "^6.7.1",
7676
"css.escape": "^1.5.1",
7777
"d3-format": "^3.1.0",
7878
"es-check": "^6.2.1",
79-
"eslint": "^7.30.0",
80-
"eslint-config-prettier": "^8.3.0",
79+
"eslint": "^8.14.0",
80+
"eslint-config-prettier": "^8.5.0",
8181
"fast-isnumeric": "^1.1.4",
8282
"file-loader": "^6.2.0",
83-
"highlight.js": "^11.4.0",
84-
"karma": "^6.3.16",
85-
"karma-chrome-launcher": "^3.1.0",
83+
"highlight.js": "^11.5.1",
84+
"karma": "^6.3.19",
85+
"karma-chrome-launcher": "^3.1.1",
8686
"karma-mocha": "^2.0.1",
8787
"karma-typescript": "^5.5.3",
8888
"karma-webpack": "^5.0.0",
8989
"less": "^4.1.2",
9090
"less-loader": "^10.2.0",
91-
"mocha": "^9.2.0",
91+
"mocha": "^9.2.2",
9292
"npm-run-all": "^4.1.5",
93-
"papaparse": "^5.3.1",
94-
"prettier": "^2.5.1",
95-
"ramda": "^0.27.1",
93+
"papaparse": "^5.3.2",
94+
"prettier": "^2.6.2",
95+
"ramda": "^0.28.0",
9696
"raw-loader": "^4.0.2",
9797
"react": "^16.14.0",
9898
"react-docgen": "^5.4.0",
@@ -102,13 +102,13 @@
102102
"remarkable": "^2.0.1",
103103
"sheetclip": "^0.3.0",
104104
"style-loader": "^3.3.1",
105-
"ts-loader": "^9.2.6",
106-
"typescript": "^4.3.5",
107-
"webpack": "^5.69.0",
105+
"ts-loader": "^9.3.0",
106+
"typescript": "^4.6.4",
107+
"webpack": "^5.72.0",
108108
"webpack-cli": "^4.9.2",
109109
"webpack-dev-server": "^3.11.2",
110110
"webpack-preprocessor": "^0.1.12",
111-
"xlsx": "^0.17.4"
111+
"xlsx": "^0.17.5"
112112
},
113113
"files": [
114114
"/dash_table/async-*{.js,.map}",

dash/dcc/Checklist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def __init__(
158158
self.available_wildcard_properties = []
159159
_explicit_args = kwargs.pop("_explicit_args")
160160
_locals = locals()
161-
_locals.update(kwargs) # For wildcard attrs
161+
_locals.update(kwargs) # For wildcard attrs and excess named props
162162
args = {k: _locals[k] for k in _explicit_args if k != "children"}
163163
for k in []:
164164
if k not in args:

dash/dcc/Clipboard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def __init__(
8888
self.available_wildcard_properties = []
8989
_explicit_args = kwargs.pop("_explicit_args")
9090
_locals = locals()
91-
_locals.update(kwargs) # For wildcard attrs
91+
_locals.update(kwargs) # For wildcard attrs and excess named props
9292
args = {k: _locals[k] for k in _explicit_args if k != "children"}
9393
for k in []:
9494
if k not in args:

dash/dcc/ConfirmDialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def __init__(
7171
self.available_wildcard_properties = []
7272
_explicit_args = kwargs.pop("_explicit_args")
7373
_locals = locals()
74-
_locals.update(kwargs) # For wildcard attrs
74+
_locals.update(kwargs) # For wildcard attrs and excess named props
7575
args = {k: _locals[k] for k in _explicit_args if k != "children"}
7676
for k in []:
7777
if k not in args:

dash/dcc/ConfirmDialogProvider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def __init__(
101101
self.available_wildcard_properties = []
102102
_explicit_args = kwargs.pop("_explicit_args")
103103
_locals = locals()
104-
_locals.update(kwargs) # For wildcard attrs
104+
_locals.update(kwargs) # For wildcard attrs and excess named props
105105
args = {k: _locals[k] for k in _explicit_args if k != "children"}
106106
for k in []:
107107
if k not in args:

dash/dcc/DatePickerRange.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def __init__(
290290
self.available_wildcard_properties = []
291291
_explicit_args = kwargs.pop("_explicit_args")
292292
_locals = locals()
293-
_locals.update(kwargs) # For wildcard attrs
293+
_locals.update(kwargs) # For wildcard attrs and excess named props
294294
args = {k: _locals[k] for k in _explicit_args if k != "children"}
295295
for k in []:
296296
if k not in args:

dash/dcc/DatePickerSingle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def __init__(
246246
self.available_wildcard_properties = []
247247
_explicit_args = kwargs.pop("_explicit_args")
248248
_locals = locals()
249-
_locals.update(kwargs) # For wildcard attrs
249+
_locals.update(kwargs) # For wildcard attrs and excess named props
250250
args = {k: _locals[k] for k in _explicit_args if k != "children"}
251251
for k in []:
252252
if k not in args:

dash/dcc/Download.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __init__(
5555
self.available_wildcard_properties = []
5656
_explicit_args = kwargs.pop("_explicit_args")
5757
_locals = locals()
58-
_locals.update(kwargs) # For wildcard attrs
58+
_locals.update(kwargs) # For wildcard attrs and excess named props
5959
args = {k: _locals[k] for k in _explicit_args if k != "children"}
6060
for k in []:
6161
if k not in args:

dash/dcc/Dropdown.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def __init__(
180180
self.available_wildcard_properties = []
181181
_explicit_args = kwargs.pop("_explicit_args")
182182
_locals = locals()
183-
_locals.update(kwargs) # For wildcard attrs
183+
_locals.update(kwargs) # For wildcard attrs and excess named props
184184
args = {k: _locals[k] for k in _explicit_args if k != "children"}
185185
for k in []:
186186
if k not in args:

dash/dcc/Graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def __init__(
385385
self.available_wildcard_properties = []
386386
_explicit_args = kwargs.pop("_explicit_args")
387387
_locals = locals()
388-
_locals.update(kwargs) # For wildcard attrs
388+
_locals.update(kwargs) # For wildcard attrs and excess named props
389389
args = {k: _locals[k] for k in _explicit_args if k != "children"}
390390
for k in []:
391391
if k not in args:

dash/dcc/Input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ def __init__(
356356
self.available_wildcard_properties = []
357357
_explicit_args = kwargs.pop("_explicit_args")
358358
_locals = locals()
359-
_locals.update(kwargs) # For wildcard attrs
359+
_locals.update(kwargs) # For wildcard attrs and excess named props
360360
args = {k: _locals[k] for k in _explicit_args if k != "children"}
361361
for k in []:
362362
if k not in args:

dash/dcc/Interval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __init__(
6262
self.available_wildcard_properties = []
6363
_explicit_args = kwargs.pop("_explicit_args")
6464
_locals = locals()
65-
_locals.update(kwargs) # For wildcard attrs
65+
_locals.update(kwargs) # For wildcard attrs and excess named props
6666
args = {k: _locals[k] for k in _explicit_args if k != "children"}
6767
for k in []:
6868
if k not in args:

dash/dcc/Link.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def __init__(
9797
self.available_wildcard_properties = []
9898
_explicit_args = kwargs.pop("_explicit_args")
9999
_locals = locals()
100-
_locals.update(kwargs) # For wildcard attrs
100+
_locals.update(kwargs) # For wildcard attrs and excess named props
101101
args = {k: _locals[k] for k in _explicit_args if k != "children"}
102102
for k in ["href"]:
103103
if k not in args:

dash/dcc/Loading.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def __init__(
108108
self.available_wildcard_properties = []
109109
_explicit_args = kwargs.pop("_explicit_args")
110110
_locals = locals()
111-
_locals.update(kwargs) # For wildcard attrs
111+
_locals.update(kwargs) # For wildcard attrs and excess named props
112112
args = {k: _locals[k] for k in _explicit_args if k != "children"}
113113
for k in []:
114114
if k not in args:

dash/dcc/Location.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def __init__(
5757
self.available_wildcard_properties = []
5858
_explicit_args = kwargs.pop("_explicit_args")
5959
_locals = locals()
60-
_locals.update(kwargs) # For wildcard attrs
60+
_locals.update(kwargs) # For wildcard attrs and excess named props
6161
args = {k: _locals[k] for k in _explicit_args if k != "children"}
6262
for k in ["id"]:
6363
if k not in args:

dash/dcc/LogoutButton.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def __init__(
9898
self.available_wildcard_properties = []
9999
_explicit_args = kwargs.pop("_explicit_args")
100100
_locals = locals()
101-
_locals.update(kwargs) # For wildcard attrs
101+
_locals.update(kwargs) # For wildcard attrs and excess named props
102102
args = {k: _locals[k] for k in _explicit_args if k != "children"}
103103
for k in []:
104104
if k not in args:

dash/dcc/Markdown.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ class Markdown(Component):
4343
- theme (a value equal to: 'dark', 'light'; optional):
4444
Color scheme; default 'light'.
4545
46+
- link_target (string; optional):
47+
A string for the target attribute to use on links (such as
48+
\"_blank\").
49+
4650
- loading_state (dict; optional):
4751
Object that holds the loading state object coming from
4852
dash-renderer.
@@ -73,6 +77,7 @@ def __init__(
7377
className=Component.UNDEFINED,
7478
mathjax=Component.UNDEFINED,
7579
dangerously_allow_html=Component.UNDEFINED,
80+
link_target=Component.UNDEFINED,
7681
dedent=Component.UNDEFINED,
7782
highlight_config=Component.UNDEFINED,
7883
loading_state=Component.UNDEFINED,
@@ -86,6 +91,7 @@ def __init__(
8691
"dangerously_allow_html",
8792
"dedent",
8893
"highlight_config",
94+
"link_target",
8995
"loading_state",
9096
"mathjax",
9197
"style",
@@ -100,14 +106,15 @@ def __init__(
100106
"dangerously_allow_html",
101107
"dedent",
102108
"highlight_config",
109+
"link_target",
103110
"loading_state",
104111
"mathjax",
105112
"style",
106113
]
107114
self.available_wildcard_properties = []
108115
_explicit_args = kwargs.pop("_explicit_args")
109116
_locals = locals()
110-
_locals.update(kwargs) # For wildcard attrs
117+
_locals.update(kwargs) # For wildcard attrs and excess named props
111118
args = {k: _locals[k] for k in _explicit_args if k != "children"}
112119
for k in []:
113120
if k not in args:

dash/dcc/RadioItems.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def __init__(
158158
self.available_wildcard_properties = []
159159
_explicit_args = kwargs.pop("_explicit_args")
160160
_locals = locals()
161-
_locals.update(kwargs) # For wildcard attrs
161+
_locals.update(kwargs) # For wildcard attrs and excess named props
162162
args = {k: _locals[k] for k in _explicit_args if k != "children"}
163163
for k in []:
164164
if k not in args:

dash/dcc/RangeSlider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def __init__(
213213
self.available_wildcard_properties = []
214214
_explicit_args = kwargs.pop("_explicit_args")
215215
_locals = locals()
216-
_locals.update(kwargs) # For wildcard attrs
216+
_locals.update(kwargs) # For wildcard attrs and excess named props
217217
args = {k: _locals[k] for k in _explicit_args if k != "children"}
218218
for k in []:
219219
if k not in args:

dash/dcc/Slider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def __init__(
192192
self.available_wildcard_properties = []
193193
_explicit_args = kwargs.pop("_explicit_args")
194194
_locals = locals()
195-
_locals.update(kwargs) # For wildcard attrs
195+
_locals.update(kwargs) # For wildcard attrs and excess named props
196196
args = {k: _locals[k] for k in _explicit_args if k != "children"}
197197
for k in []:
198198
if k not in args:

dash/dcc/Store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def __init__(
6262
self.available_wildcard_properties = []
6363
_explicit_args = kwargs.pop("_explicit_args")
6464
_locals = locals()
65-
_locals.update(kwargs) # For wildcard attrs
65+
_locals.update(kwargs) # For wildcard attrs and excess named props
6666
args = {k: _locals[k] for k in _explicit_args if k != "children"}
6767
for k in ["id"]:
6868
if k not in args:

0 commit comments

Comments
 (0)