Skip to content

Commit 83c5422

Browse files
committed
Version 2.15.0 build artifacts
1 parent 78d07c4 commit 83c5422

Some content is hidden

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

42 files changed

+217
-99
lines changed

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

Lines changed: 41 additions & 18 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/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: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-table",
3-
"version": "5.2.8",
3+
"version": "5.2.9",
44
"description": "Dash table",
55
"repository": {
66
"type": "git",
@@ -41,13 +41,13 @@
4141
"maintainer": "Alex Johnson <alex@plotly.com>",
4242
"license": "MIT",
4343
"devDependencies": {
44-
"@babel/cli": "^7.23.0",
45-
"@babel/core": "^7.23.0",
44+
"@babel/cli": "^7.23.4",
45+
"@babel/core": "^7.23.7",
4646
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
47-
"@babel/plugin-transform-regenerator": "^7.22.10",
47+
"@babel/plugin-transform-regenerator": "^7.23.3",
4848
"@babel/polyfill": "^7.12.1",
49-
"@babel/preset-env": "^7.22.20",
50-
"@babel/preset-react": "^7.22.15",
49+
"@babel/preset-env": "^7.23.8",
50+
"@babel/preset-react": "^7.23.3",
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",
@@ -92,7 +92,7 @@
9292
"npm-run-all": "^4.1.5",
9393
"papaparse": "^5.4.1",
9494
"prettier": "^2.8.8",
95-
"ramda": "^0.29.0",
95+
"ramda": "^0.29.1",
9696
"raw-loader": "^4.0.2",
9797
"react": "^16.14.0",
9898
"react-docgen": "^5.4.3",
@@ -103,8 +103,8 @@
103103
"sheetclip": "^0.3.0",
104104
"style-loader": "^3.3.3",
105105
"ts-loader": "^9.4.3",
106-
"typescript": "^5.0.4",
107-
"webpack": "^5.88.2",
106+
"typescript": "^5.3.3",
107+
"webpack": "^5.90.0",
108108
"webpack-cli": "^5.1.4",
109109
"webpack-dev-server": "^4.15.1",
110110
"webpack-preprocessor": "^0.1.12",

dash/dcc/Clipboard.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,11 @@ class Clipboard(Component):
1616
The class name of the icon element.
1717
1818
- content (string; optional):
19-
The text to be copied to the clipboard if the `target_id` is
20-
None.
19+
The text to be copied to the clipboard if the `target_id` is None.
20+
21+
- html_content (string; optional):
22+
The clipboard html text be copied to the clipboard if the
23+
`target_id` is None.
2124
2225
- loading_state (dict; optional):
2326
Object that holds the loading state object coming from
@@ -61,6 +64,7 @@ def __init__(
6164
target_id=Component.UNDEFINED,
6265
content=Component.UNDEFINED,
6366
n_clicks=Component.UNDEFINED,
67+
html_content=Component.UNDEFINED,
6468
title=Component.UNDEFINED,
6569
style=Component.UNDEFINED,
6670
className=Component.UNDEFINED,
@@ -71,6 +75,7 @@ def __init__(
7175
"id",
7276
"className",
7377
"content",
78+
"html_content",
7479
"loading_state",
7580
"n_clicks",
7681
"style",
@@ -82,6 +87,7 @@ def __init__(
8287
"id",
8388
"className",
8489
"content",
90+
"html_content",
8591
"loading_state",
8692
"n_clicks",
8793
"style",

dash/dcc/RangeSlider.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,23 @@ class RangeSlider(Component):
7676
sets the _origin_ of the tooltip, so e.g. `topLeft` will in
7777
reality appear to be on the top right of the handle.
7878
79+
- style (dict; optional):
80+
Custom style for the tooltip.
81+
82+
- template (string; optional):
83+
Template string to display the tooltip in. Must contain
84+
`{value}`, which will be replaced with either the default
85+
string representation of the value or the result of the
86+
transform function if there is one.
87+
88+
- transform (string; optional):
89+
Reference to a function in the `window.dccFunctions`
90+
namespace. This can be added in a script in the asset folder.
91+
For example, in `assets/tooltip.js`: ``` window.dccFunctions =
92+
window.dccFunctions || {}; window.dccFunctions.multByTen =
93+
function(value) { return value * 10; } ``` Then in the
94+
component `tooltip={'transform': 'multByTen'}`.
95+
7996
- updatemode (a value equal to: 'mouseup', 'drag'; default 'mouseup'):
8097
Determines when the component should update its `value` property.
8198
If `mouseup` (the default) then the slider will only trigger its

dash/dcc/Slider.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,23 @@ class Slider(Component):
6363
sets the _origin_ of the tooltip, so e.g. `topLeft` will in
6464
reality appear to be on the top right of the handle.
6565
66+
- style (dict; optional):
67+
Custom style for the tooltip.
68+
69+
- template (string; optional):
70+
Template string to display the tooltip in. Must contain
71+
`{value}`, which will be replaced with either the default
72+
string representation of the value or the result of the
73+
transform function if there is one.
74+
75+
- transform (string; optional):
76+
Reference to a function in the `window.dccFunctions`
77+
namespace. This can be added in a script in the asset folder.
78+
For example, in `assets/tooltip.js`: ``` window.dccFunctions =
79+
window.dccFunctions || {}; window.dccFunctions.multByTen =
80+
function(value) { return value * 10; } ``` Then in the
81+
component `tooltip={'transform': 'multByTen'}`.
82+
6683
- updatemode (a value equal to: 'mouseup', 'drag'; default 'mouseup'):
6784
Determines when the component should update its `value` property.
6885
If `mouseup` (the default) then the slider will only trigger its

dash/dcc/async-datepicker.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/dcc/async-datepicker.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/dcc/async-dropdown.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/dcc/async-dropdown.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/dcc/async-graph.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/dcc/async-graph.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/dcc/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/dcc/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/dcc/async-markdown.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/dcc/async-markdown.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/dcc/async-plotlyjs.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/dcc/async-slider.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/dcc/async-slider.js.LICENSE.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
11
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
2+
3+
/**
4+
* @license React
5+
* react-is.production.min.js
6+
*
7+
* Copyright (c) Facebook, Inc. and its affiliates.
8+
*
9+
* This source code is licensed under the MIT license found in the
10+
* LICENSE file in the root directory of this source tree.
11+
*/

dash/dcc/async-slider.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/dcc/async-upload.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/dcc/async-upload.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/dcc/dash_core_components-shared.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/dcc/dash_core_components-shared.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/dcc/dash_core_components.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/dcc/dash_core_components.js.LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
//! momentjs.com
2424

25-
//! version : 2.29.4
25+
//! version : 2.30.1

dash/dcc/dash_core_components.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/dcc/mathjax.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/dcc/metadata.json

Lines changed: 61 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,13 @@
280280
"description": "The Clipboard component copies text to the clipboard",
281281
"displayName": "Clipboard",
282282
"methods": [
283+
{
284+
"name": "onClickHandler",
285+
"docblock": null,
286+
"modifiers": [],
287+
"params": [],
288+
"returns": null
289+
},
283290
{
284291
"name": "stringifyId",
285292
"docblock": null,
@@ -302,6 +309,10 @@
302309
{
303310
"name": "content",
304311
"type": null
312+
},
313+
{
314+
"name": "htmlContent",
315+
"type": null
305316
}
306317
],
307318
"returns": null
@@ -364,7 +375,7 @@
364375
"name": "string"
365376
},
366377
"required": false,
367-
"description": "The text to be copied to the clipboard if the `target_id` is None.",
378+
"description": "The text to be copied to the clipboard if the `target_id` is None.",
368379
"defaultValue": {
369380
"value": "null",
370381
"computed": false
@@ -381,6 +392,17 @@
381392
"computed": false
382393
}
383394
},
395+
"html_content": {
396+
"type": {
397+
"name": "string"
398+
},
399+
"required": false,
400+
"description": "The clipboard html text be copied to the clipboard if the `target_id` is None.",
401+
"defaultValue": {
402+
"value": "null",
403+
"computed": false
404+
}
405+
},
384406
"title": {
385407
"type": {
386408
"name": "string"
@@ -3325,20 +3347,7 @@
33253347
"src/components/Link.react.js": {
33263348
"description": "Link allows you to create a clickable link within a multi-page app.\n\nFor links with destinations outside the current app, `html.A` is a better\ncomponent to use.",
33273349
"displayName": "Link",
3328-
"methods": [
3329-
{
3330-
"name": "updateLocation",
3331-
"docblock": null,
3332-
"modifiers": [],
3333-
"params": [
3334-
{
3335-
"name": "e",
3336-
"type": null
3337-
}
3338-
],
3339-
"returns": null
3340-
}
3341-
],
3350+
"methods": [],
33423351
"props": {
33433352
"children": {
33443353
"type": {
@@ -3423,6 +3432,13 @@
34233432
},
34243433
"required": false,
34253434
"description": "Object that holds the loading state object coming from dash-renderer"
3435+
},
3436+
"setProps": {
3437+
"type": {
3438+
"name": "func"
3439+
},
3440+
"required": false,
3441+
"description": ""
34263442
}
34273443
}
34283444
},
@@ -4329,6 +4345,21 @@
43294345
],
43304346
"description": "Determines the placement of tooltips\nSee https://github.com/react-component/tooltip#api\ntop/bottom{*} sets the _origin_ of the tooltip, so e.g. `topLeft`\nwill in reality appear to be on the top right of the handle",
43314347
"required": false
4348+
},
4349+
"template": {
4350+
"name": "string",
4351+
"description": "Template string to display the tooltip in.\nMust contain `{value}`, which will be replaced with either\nthe default string representation of the value or the result of the\ntransform function if there is one.",
4352+
"required": false
4353+
},
4354+
"style": {
4355+
"name": "object",
4356+
"description": "Custom style for the tooltip.",
4357+
"required": false
4358+
},
4359+
"transform": {
4360+
"name": "string",
4361+
"description": "Reference to a function in the `window.dccFunctions` namespace.\nThis can be added in a script in the asset folder.\n\nFor example, in `assets/tooltip.js`:\n```\nwindow.dccFunctions = window.dccFunctions || {};\nwindow.dccFunctions.multByTen = function(value) {\n return value * 10;\n}\n```\nThen in the component `tooltip={'transform': 'multByTen'}`",
4362+
"required": false
43324363
}
43334364
}
43344365
},
@@ -4620,6 +4651,21 @@
46204651
],
46214652
"description": "Determines the placement of tooltips\nSee https://github.com/react-component/tooltip#api\ntop/bottom{*} sets the _origin_ of the tooltip, so e.g. `topLeft`\nwill in reality appear to be on the top right of the handle",
46224653
"required": false
4654+
},
4655+
"template": {
4656+
"name": "string",
4657+
"description": "Template string to display the tooltip in.\nMust contain `{value}`, which will be replaced with either\nthe default string representation of the value or the result of the\ntransform function if there is one.",
4658+
"required": false
4659+
},
4660+
"style": {
4661+
"name": "object",
4662+
"description": "Custom style for the tooltip.",
4663+
"required": false
4664+
},
4665+
"transform": {
4666+
"name": "string",
4667+
"description": "Reference to a function in the `window.dccFunctions` namespace.\nThis can be added in a script in the asset folder.\n\nFor example, in `assets/tooltip.js`:\n```\nwindow.dccFunctions = window.dccFunctions || {};\nwindow.dccFunctions.multByTen = function(value) {\n return value * 10;\n}\n```\nThen in the component `tooltip={'transform': 'multByTen'}`",
4668+
"required": false
46234669
}
46244670
}
46254671
},

dash/dcc/package-info.json

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-core-components",
3-
"version": "2.12.1",
3+
"version": "2.13.0",
44
"description": "Core component suite for Dash",
55
"repository": {
66
"type": "git",
@@ -35,6 +35,7 @@
3535
"maintainer": "Alex Johnson <alex@plotly.com>",
3636
"license": "MIT",
3737
"dependencies": {
38+
"@braintree/sanitize-url": "^7.0.0",
3839
"@fortawesome/fontawesome-svg-core": "1.2.36",
3940
"@fortawesome/free-regular-svg-icons": "^5.15.4",
4041
"@fortawesome/free-solid-svg-icons": "^5.15.4",
@@ -49,7 +50,7 @@
4950
"moment": "^2.29.4",
5051
"node-polyfill-webpack-plugin": "^2.0.1",
5152
"prop-types": "^15.8.1",
52-
"ramda": "^0.29.0",
53+
"ramda": "^0.29.1",
5354
"rc-slider": "^9.7.5",
5455
"react-addons-shallow-compare": "^15.6.3",
5556
"react-dates": "^21.8.0",
@@ -64,11 +65,11 @@
6465
"uniqid": "^5.4.0"
6566
},
6667
"devDependencies": {
67-
"@babel/cli": "^7.23.0",
68-
"@babel/core": "^7.23.0",
68+
"@babel/cli": "^7.23.4",
69+
"@babel/core": "^7.23.7",
6970
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
70-
"@babel/preset-env": "^7.22.20",
71-
"@babel/preset-react": "^7.22.15",
71+
"@babel/preset-env": "^7.23.8",
72+
"@babel/preset-react": "^7.23.3",
7273
"@plotly/dash-component-plugins": "^1.2.3",
7374
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
7475
"babel-loader": "^9.1.3",
@@ -88,9 +89,10 @@
8889
"react-jsx-parser": "1.21.0",
8990
"style-loader": "^3.3.3",
9091
"styled-jsx": "^3.4.4",
91-
"webpack": "^5.88.2",
92+
"webpack": "^5.90.0",
9293
"webpack-cli": "^5.1.4"
9394
},
95+
"optionalDependencies": { "fsevents": "*" },
9496
"files": [
9597
"/dash_core_components/*{.js,.map}",
9698
"/lib/"

dash/dcc/plotly.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash/html/dash_html_components.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/html/dash_html_components.min.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/html/package-info.json

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-html-components",
3-
"version": "2.0.15",
3+
"version": "2.0.16",
44
"description": "Vanilla HTML components for Dash",
55
"main": "lib/index.js",
66
"repository": {
@@ -28,16 +28,15 @@
2828
"author": "Chris Parmer <chris@plotly.com>",
2929
"maintainer": "Alex Johnson <alex@plotly.com>",
3030
"dependencies": {
31+
"@braintree/sanitize-url": "^7.0.0",
3132
"prop-types": "^15.8.1",
32-
"ramda": "^0.29.0",
33-
"react": "^18.2.0",
34-
"react-dom": "^18.2.0"
33+
"ramda": "^0.29.0"
3534
},
3635
"devDependencies": {
37-
"@babel/cli": "^7.23.0",
38-
"@babel/core": "^7.23.0",
39-
"@babel/preset-env": "^7.22.20",
40-
"@babel/preset-react": "^7.22.15",
36+
"@babel/cli": "^7.23.4",
37+
"@babel/core": "^7.23.7",
38+
"@babel/preset-env": "^7.23.8",
39+
"@babel/preset-react": "^7.23.3",
4140
"babel-loader": "^9.1.3",
4241
"cheerio": "^0.22.0",
4342
"cross-env": "^7.0.3",
@@ -49,16 +48,14 @@
4948
"react-docgen": "^5.4.3",
5049
"request": "^2.88.2",
5150
"string": "^3.3.3",
52-
"webpack": "^5.88.2",
53-
"webpack-cli": "^5.1.4"
51+
"webpack": "^5.90.0",
52+
"webpack-cli": "^5.1.4",
53+
"react": "^16.14.0",
54+
"react-dom": "^16.14.0"
5455
},
5556
"files": [
5657
"/dash_html_components/*{.js,.map}"
5758
],
58-
"peerDependencies": {
59-
"react": ">=17",
60-
"react-dom": ">=17"
61-
},
6259
"browserslist": [
6360
"last 8 years and not dead"
6461
]

0 commit comments

Comments
 (0)