Skip to content

Commit

Permalink
Version 2.15.0 build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
T4rk1n committed Jan 31, 2024
1 parent 78d07c4 commit 83c5422
Show file tree
Hide file tree
Showing 42 changed files with 217 additions and 99 deletions.
59 changes: 41 additions & 18 deletions dash/dash-renderer/build/dash_renderer.dev.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dash-renderer/build/dash_renderer.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dash_table/async-highlight.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dash_table/async-highlight.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dash_table/async-table.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dash_table/async-table.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dash_table/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dash_table/bundle.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dash_table/demo.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dash_table/demo.js.map

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions dash/dash_table/package-info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-table",
"version": "5.2.8",
"version": "5.2.9",
"description": "Dash table",
"repository": {
"type": "git",
Expand Down Expand Up @@ -41,13 +41,13 @@
"maintainer": "Alex Johnson <alex@plotly.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-regenerator": "^7.22.10",
"@babel/plugin-transform-regenerator": "^7.23.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
Expand Down Expand Up @@ -92,7 +92,7 @@
"npm-run-all": "^4.1.5",
"papaparse": "^5.4.1",
"prettier": "^2.8.8",
"ramda": "^0.29.0",
"ramda": "^0.29.1",
"raw-loader": "^4.0.2",
"react": "^16.14.0",
"react-docgen": "^5.4.3",
Expand All @@ -103,8 +103,8 @@
"sheetclip": "^0.3.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.3",
"typescript": "^5.0.4",
"webpack": "^5.88.2",
"typescript": "^5.3.3",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-preprocessor": "^0.1.12",
Expand Down
10 changes: 8 additions & 2 deletions dash/dcc/Clipboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ class Clipboard(Component):
The class name of the icon element.
- content (string; optional):
The text to be copied to the clipboard if the `target_id` is
None.
The text to be copied to the clipboard if the `target_id` is None.
- html_content (string; optional):
The clipboard html text be copied to the clipboard if the
`target_id` is None.
- loading_state (dict; optional):
Object that holds the loading state object coming from
Expand Down Expand Up @@ -61,6 +64,7 @@ def __init__(
target_id=Component.UNDEFINED,
content=Component.UNDEFINED,
n_clicks=Component.UNDEFINED,
html_content=Component.UNDEFINED,
title=Component.UNDEFINED,
style=Component.UNDEFINED,
className=Component.UNDEFINED,
Expand All @@ -71,6 +75,7 @@ def __init__(
"id",
"className",
"content",
"html_content",
"loading_state",
"n_clicks",
"style",
Expand All @@ -82,6 +87,7 @@ def __init__(
"id",
"className",
"content",
"html_content",
"loading_state",
"n_clicks",
"style",
Expand Down
17 changes: 17 additions & 0 deletions dash/dcc/RangeSlider.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,23 @@ class RangeSlider(Component):
sets the _origin_ of the tooltip, so e.g. `topLeft` will in
reality appear to be on the top right of the handle.
- style (dict; optional):
Custom style for the tooltip.
- template (string; optional):
Template string to display the tooltip in. Must contain
`{value}`, which will be replaced with either the default
string representation of the value or the result of the
transform function if there is one.
- transform (string; optional):
Reference to a function in the `window.dccFunctions`
namespace. This can be added in a script in the asset folder.
For example, in `assets/tooltip.js`: ``` window.dccFunctions =
window.dccFunctions || {}; window.dccFunctions.multByTen =
function(value) { return value * 10; } ``` Then in the
component `tooltip={'transform': 'multByTen'}`.
- updatemode (a value equal to: 'mouseup', 'drag'; default 'mouseup'):
Determines when the component should update its `value` property.
If `mouseup` (the default) then the slider will only trigger its
Expand Down
17 changes: 17 additions & 0 deletions dash/dcc/Slider.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,23 @@ class Slider(Component):
sets the _origin_ of the tooltip, so e.g. `topLeft` will in
reality appear to be on the top right of the handle.
- style (dict; optional):
Custom style for the tooltip.
- template (string; optional):
Template string to display the tooltip in. Must contain
`{value}`, which will be replaced with either the default
string representation of the value or the result of the
transform function if there is one.
- transform (string; optional):
Reference to a function in the `window.dccFunctions`
namespace. This can be added in a script in the asset folder.
For example, in `assets/tooltip.js`: ``` window.dccFunctions =
window.dccFunctions || {}; window.dccFunctions.multByTen =
function(value) { return value * 10; } ``` Then in the
component `tooltip={'transform': 'multByTen'}`.
- updatemode (a value equal to: 'mouseup', 'drag'; default 'mouseup'):
Determines when the component should update its `value` property.
If `mouseup` (the default) then the slider will only trigger its
Expand Down
2 changes: 1 addition & 1 deletion dash/dcc/async-datepicker.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-datepicker.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-dropdown.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-dropdown.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-graph.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-graph.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-highlight.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-highlight.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-markdown.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-markdown.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-plotlyjs.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-slider.js

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions dash/dcc/async-slider.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */

/**
* @license React
* react-is.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
2 changes: 1 addition & 1 deletion dash/dcc/async-slider.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-upload.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/async-upload.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/dash_core_components-shared.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/dash_core_components-shared.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/dash_core_components.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/dash_core_components.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@

//! momentjs.com

//! version : 2.29.4
//! version : 2.30.1
2 changes: 1 addition & 1 deletion dash/dcc/dash_core_components.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/dcc/mathjax.js

Large diffs are not rendered by default.

76 changes: 61 additions & 15 deletions dash/dcc/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,13 @@
"description": "The Clipboard component copies text to the clipboard",
"displayName": "Clipboard",
"methods": [
{
"name": "onClickHandler",
"docblock": null,
"modifiers": [],
"params": [],
"returns": null
},
{
"name": "stringifyId",
"docblock": null,
Expand All @@ -302,6 +309,10 @@
{
"name": "content",
"type": null
},
{
"name": "htmlContent",
"type": null
}
],
"returns": null
Expand Down Expand Up @@ -364,7 +375,7 @@
"name": "string"
},
"required": false,
"description": "The text to be copied to the clipboard if the `target_id` is None.",
"description": "The text to be copied to the clipboard if the `target_id` is None.",
"defaultValue": {
"value": "null",
"computed": false
Expand All @@ -381,6 +392,17 @@
"computed": false
}
},
"html_content": {
"type": {
"name": "string"
},
"required": false,
"description": "The clipboard html text be copied to the clipboard if the `target_id` is None.",
"defaultValue": {
"value": "null",
"computed": false
}
},
"title": {
"type": {
"name": "string"
Expand Down Expand Up @@ -3325,20 +3347,7 @@
"src/components/Link.react.js": {
"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.",
"displayName": "Link",
"methods": [
{
"name": "updateLocation",
"docblock": null,
"modifiers": [],
"params": [
{
"name": "e",
"type": null
}
],
"returns": null
}
],
"methods": [],
"props": {
"children": {
"type": {
Expand Down Expand Up @@ -3423,6 +3432,13 @@
},
"required": false,
"description": "Object that holds the loading state object coming from dash-renderer"
},
"setProps": {
"type": {
"name": "func"
},
"required": false,
"description": ""
}
}
},
Expand Down Expand Up @@ -4329,6 +4345,21 @@
],
"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",
"required": false
},
"template": {
"name": "string",
"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.",
"required": false
},
"style": {
"name": "object",
"description": "Custom style for the tooltip.",
"required": false
},
"transform": {
"name": "string",
"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'}`",
"required": false
}
}
},
Expand Down Expand Up @@ -4620,6 +4651,21 @@
],
"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",
"required": false
},
"template": {
"name": "string",
"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.",
"required": false
},
"style": {
"name": "object",
"description": "Custom style for the tooltip.",
"required": false
},
"transform": {
"name": "string",
"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'}`",
"required": false
}
}
},
Expand Down
16 changes: 9 additions & 7 deletions dash/dcc/package-info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-core-components",
"version": "2.12.1",
"version": "2.13.0",
"description": "Core component suite for Dash",
"repository": {
"type": "git",
Expand Down Expand Up @@ -35,6 +35,7 @@
"maintainer": "Alex Johnson <alex@plotly.com>",
"license": "MIT",
"dependencies": {
"@braintree/sanitize-url": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
Expand All @@ -49,7 +50,7 @@
"moment": "^2.29.4",
"node-polyfill-webpack-plugin": "^2.0.1",
"prop-types": "^15.8.1",
"ramda": "^0.29.0",
"ramda": "^0.29.1",
"rc-slider": "^9.7.5",
"react-addons-shallow-compare": "^15.6.3",
"react-dates": "^21.8.0",
Expand All @@ -64,11 +65,11 @@
"uniqid": "^5.4.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@plotly/dash-component-plugins": "^1.2.3",
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
"babel-loader": "^9.1.3",
Expand All @@ -88,9 +89,10 @@
"react-jsx-parser": "1.21.0",
"style-loader": "^3.3.3",
"styled-jsx": "^3.4.4",
"webpack": "^5.88.2",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": { "fsevents": "*" },
"files": [
"/dash_core_components/*{.js,.map}",
"/lib/"
Expand Down
4 changes: 2 additions & 2 deletions dash/dcc/plotly.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/html/dash_html_components.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dash/html/dash_html_components.min.js.map

Large diffs are not rendered by default.

25 changes: 11 additions & 14 deletions dash/html/package-info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-html-components",
"version": "2.0.15",
"version": "2.0.16",
"description": "Vanilla HTML components for Dash",
"main": "lib/index.js",
"repository": {
Expand Down Expand Up @@ -28,16 +28,15 @@
"author": "Chris Parmer <chris@plotly.com>",
"maintainer": "Alex Johnson <alex@plotly.com>",
"dependencies": {
"@braintree/sanitize-url": "^7.0.0",
"prop-types": "^15.8.1",
"ramda": "^0.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"ramda": "^0.29.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"cheerio": "^0.22.0",
"cross-env": "^7.0.3",
Expand All @@ -49,16 +48,14 @@
"react-docgen": "^5.4.3",
"request": "^2.88.2",
"string": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"files": [
"/dash_html_components/*{.js,.map}"
],
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"browserslist": [
"last 8 years and not dead"
]
Expand Down

0 comments on commit 83c5422

Please sign in to comment.