@fluentui/react-charts 0.0.0-nightly-20250624-0406.1 → 0.0.0-nightly-20250625-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/dist/index.d.ts +11 -0
- package/lib/components/CommonComponents/CartesianChart.js +2 -1
- package/lib/components/CommonComponents/CartesianChart.js.map +1 -1
- package/lib/components/CommonComponents/CartesianChart.types.js.map +1 -1
- package/lib/components/DeclarativeChart/PlotlySchemaAdapter.js +4 -2
- package/lib/components/DeclarativeChart/PlotlySchemaAdapter.js.map +1 -1
- package/lib/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.js +104 -30
- package/lib/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.js.map +1 -1
- package/lib/utilities/utilities.js +43 -6
- package/lib/utilities/utilities.js.map +1 -1
- package/lib-commonjs/components/CommonComponents/CartesianChart.js +1 -1
- package/lib-commonjs/components/CommonComponents/CartesianChart.js.map +1 -1
- package/lib-commonjs/components/CommonComponents/CartesianChart.types.js.map +1 -1
- package/lib-commonjs/components/DeclarativeChart/PlotlySchemaAdapter.js +4 -2
- package/lib-commonjs/components/DeclarativeChart/PlotlySchemaAdapter.js.map +1 -1
- package/lib-commonjs/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.js +99 -29
- package/lib-commonjs/components/HorizontalBarChartWithAxis/HorizontalBarChartWithAxis.js.map +1 -1
- package/lib-commonjs/utilities/utilities.js +39 -6
- 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-20250625-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",
|
|
@@ -31,22 +31,22 @@
|
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@fluentui/eslint-plugin": "*",
|
|
34
|
-
"@fluentui/react-conformance": "0.0.0-nightly-
|
|
35
|
-
"@fluentui/react-conformance-griffel": "0.0.0-nightly-
|
|
34
|
+
"@fluentui/react-conformance": "0.0.0-nightly-20250625-0407.1",
|
|
35
|
+
"@fluentui/react-conformance-griffel": "0.0.0-nightly-20250625-0407.1",
|
|
36
36
|
"@fluentui/scripts-api-extractor": "*",
|
|
37
37
|
"@fluentui/scripts-tasks": "*"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@fluentui/chart-utilities": "^1.1.18",
|
|
41
|
-
"@fluentui/react-button": "0.0.0-nightly-
|
|
42
|
-
"@fluentui/react-jsx-runtime": "0.0.0-nightly-
|
|
43
|
-
"@fluentui/react-overflow": "0.0.0-nightly-
|
|
44
|
-
"@fluentui/react-popover": "0.0.0-nightly-
|
|
45
|
-
"@fluentui/react-shared-contexts": "0.0.0-nightly-
|
|
46
|
-
"@fluentui/react-tabster": "0.0.0-nightly-
|
|
47
|
-
"@fluentui/react-theme": "0.0.0-nightly-
|
|
48
|
-
"@fluentui/react-tooltip": "0.0.0-nightly-
|
|
49
|
-
"@fluentui/react-utilities": "0.0.0-nightly-
|
|
41
|
+
"@fluentui/react-button": "0.0.0-nightly-20250625-0407.1",
|
|
42
|
+
"@fluentui/react-jsx-runtime": "0.0.0-nightly-20250625-0407.1",
|
|
43
|
+
"@fluentui/react-overflow": "0.0.0-nightly-20250625-0407.1",
|
|
44
|
+
"@fluentui/react-popover": "0.0.0-nightly-20250625-0407.1",
|
|
45
|
+
"@fluentui/react-shared-contexts": "0.0.0-nightly-20250625-0407.1",
|
|
46
|
+
"@fluentui/react-tabster": "0.0.0-nightly-20250625-0407.1",
|
|
47
|
+
"@fluentui/react-theme": "0.0.0-nightly-20250625-0407.1",
|
|
48
|
+
"@fluentui/react-tooltip": "0.0.0-nightly-20250625-0407.1",
|
|
49
|
+
"@fluentui/react-utilities": "0.0.0-nightly-20250625-0407.1",
|
|
50
50
|
"@griffel/react": "^1.5.22",
|
|
51
51
|
"@swc/helpers": "^0.5.1",
|
|
52
52
|
"@types/d3-array": "^3.0.0",
|