@fluentui/react-charts 0.0.0-nightly-20250826-0412.1 → 0.0.0-nightly-20250827-0407.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -15
- package/lib/components/ChartTable/ChartTable.js +87 -6
- package/lib/components/ChartTable/ChartTable.js.map +1 -1
- package/lib/components/DeclarativeChart/DeclarativeChart.js +11 -1
- package/lib/components/DeclarativeChart/DeclarativeChart.js.map +1 -1
- package/lib/components/DeclarativeChart/PlotlyColorAdapter.js +19 -0
- package/lib/components/DeclarativeChart/PlotlyColorAdapter.js.map +1 -1
- package/lib/components/DeclarativeChart/PlotlySchemaAdapter.js +202 -63
- package/lib/components/DeclarativeChart/PlotlySchemaAdapter.js.map +1 -1
- package/lib/components/LineChart/LineChart.js +29 -4
- package/lib/components/LineChart/LineChart.js.map +1 -1
- package/lib/components/ScatterChart/ScatterChart.js +62 -45
- package/lib/components/ScatterChart/ScatterChart.js.map +1 -1
- package/lib/utilities/scatterpolar-utils.js +63 -0
- package/lib/utilities/scatterpolar-utils.js.map +1 -0
- package/lib/utilities/utilities.js +32 -8
- package/lib/utilities/utilities.js.map +1 -1
- package/lib-commonjs/components/ChartTable/ChartTable.js +87 -6
- package/lib-commonjs/components/ChartTable/ChartTable.js.map +1 -1
- package/lib-commonjs/components/DeclarativeChart/DeclarativeChart.js +11 -1
- package/lib-commonjs/components/DeclarativeChart/DeclarativeChart.js.map +1 -1
- package/lib-commonjs/components/DeclarativeChart/PlotlyColorAdapter.js +22 -0
- package/lib-commonjs/components/DeclarativeChart/PlotlyColorAdapter.js.map +1 -1
- package/lib-commonjs/components/DeclarativeChart/PlotlySchemaAdapter.js +201 -62
- package/lib-commonjs/components/DeclarativeChart/PlotlySchemaAdapter.js.map +1 -1
- package/lib-commonjs/components/LineChart/LineChart.js +28 -3
- package/lib-commonjs/components/LineChart/LineChart.js.map +1 -1
- package/lib-commonjs/components/ScatterChart/ScatterChart.js +61 -44
- package/lib-commonjs/components/ScatterChart/ScatterChart.js.map +1 -1
- package/lib-commonjs/utilities/scatterpolar-utils.js +78 -0
- package/lib-commonjs/utilities/scatterpolar-utils.js.map +1 -0
- package/lib-commonjs/utilities/utilities.js +28 -8
- package/lib-commonjs/utilities/utilities.js.map +1 -1
- package/package.json +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui/react-charts",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20250827-0407.1",
|
|
4
4
|
"description": "React web chart controls for Microsoft fluentui v9 system.",
|
|
5
5
|
"main": "lib-commonjs/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -22,21 +22,21 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@fluentui/eslint-plugin": "*",
|
|
25
|
-
"@fluentui/react-conformance": "0.0.0-nightly-
|
|
26
|
-
"@fluentui/react-conformance-griffel": "0.0.0-nightly-
|
|
25
|
+
"@fluentui/react-conformance": "0.0.0-nightly-20250827-0407.1",
|
|
26
|
+
"@fluentui/react-conformance-griffel": "0.0.0-nightly-20250827-0407.1",
|
|
27
27
|
"@fluentui/scripts-api-extractor": "*"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@fluentui/chart-utilities": "^1.1.28",
|
|
31
|
-
"@fluentui/react-button": "0.0.0-nightly-
|
|
32
|
-
"@fluentui/react-jsx-runtime": "0.0.0-nightly-
|
|
33
|
-
"@fluentui/react-overflow": "0.0.0-nightly-
|
|
34
|
-
"@fluentui/react-popover": "0.0.0-nightly-
|
|
35
|
-
"@fluentui/react-shared-contexts": "0.0.0-nightly-
|
|
36
|
-
"@fluentui/react-tabster": "0.0.0-nightly-
|
|
37
|
-
"@fluentui/react-theme": "0.0.0-nightly-
|
|
38
|
-
"@fluentui/react-tooltip": "0.0.0-nightly-
|
|
39
|
-
"@fluentui/react-utilities": "0.0.0-nightly-
|
|
31
|
+
"@fluentui/react-button": "0.0.0-nightly-20250827-0407.1",
|
|
32
|
+
"@fluentui/react-jsx-runtime": "0.0.0-nightly-20250827-0407.1",
|
|
33
|
+
"@fluentui/react-overflow": "0.0.0-nightly-20250827-0407.1",
|
|
34
|
+
"@fluentui/react-popover": "0.0.0-nightly-20250827-0407.1",
|
|
35
|
+
"@fluentui/react-shared-contexts": "0.0.0-nightly-20250827-0407.1",
|
|
36
|
+
"@fluentui/react-tabster": "0.0.0-nightly-20250827-0407.1",
|
|
37
|
+
"@fluentui/react-theme": "0.0.0-nightly-20250827-0407.1",
|
|
38
|
+
"@fluentui/react-tooltip": "0.0.0-nightly-20250827-0407.1",
|
|
39
|
+
"@fluentui/react-utilities": "0.0.0-nightly-20250827-0407.1",
|
|
40
40
|
"@griffel/react": "^1.5.22",
|
|
41
41
|
"@swc/helpers": "^0.5.1",
|
|
42
42
|
"@types/d3-array": "^3.0.0",
|