@chakra-ui/charts 3.16.0 → 3.16.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/dist/cjs/index.cjs +8 -8
- package/dist/esm/index.js +3 -3
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -2,22 +2,16 @@
|
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
var useChart = require('./use-chart.cjs');
|
|
5
|
-
var chart = require('./chart/chart.cjs');
|
|
6
|
-
var namespace = require('./chart/namespace.cjs');
|
|
7
5
|
var barList = require('./bar-list/bar-list.cjs');
|
|
8
6
|
var namespace$1 = require('./bar-list/namespace.cjs');
|
|
7
|
+
var chart = require('./chart/chart.cjs');
|
|
8
|
+
var namespace = require('./chart/namespace.cjs');
|
|
9
9
|
var barSegment = require('./bar-segment/bar-segment.cjs');
|
|
10
10
|
var namespace$2 = require('./bar-segment/namespace.cjs');
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
exports.useChart = useChart.useChart;
|
|
15
|
-
exports.ChartGradient = chart.ChartGradient;
|
|
16
|
-
exports.ChartLegend = chart.ChartLegend;
|
|
17
|
-
exports.ChartRadialText = chart.ChartRadialText;
|
|
18
|
-
exports.ChartRoot = chart.ChartRoot;
|
|
19
|
-
exports.ChartTooltip = chart.ChartTooltip;
|
|
20
|
-
exports.Chart = namespace;
|
|
21
15
|
exports.BarListBar = barList.BarListBar;
|
|
22
16
|
exports.BarListContent = barList.BarListContent;
|
|
23
17
|
exports.BarListLabel = barList.BarListLabel;
|
|
@@ -26,6 +20,12 @@ exports.BarListTitle = barList.BarListTitle;
|
|
|
26
20
|
exports.BarListTooltip = barList.BarListTooltip;
|
|
27
21
|
exports.BarListValue = barList.BarListValue;
|
|
28
22
|
exports.BarList = namespace$1;
|
|
23
|
+
exports.ChartGradient = chart.ChartGradient;
|
|
24
|
+
exports.ChartLegend = chart.ChartLegend;
|
|
25
|
+
exports.ChartRadialText = chart.ChartRadialText;
|
|
26
|
+
exports.ChartRoot = chart.ChartRoot;
|
|
27
|
+
exports.ChartTooltip = chart.ChartTooltip;
|
|
28
|
+
exports.Chart = namespace;
|
|
29
29
|
exports.BarSegmentBar = barSegment.BarSegmentBar;
|
|
30
30
|
exports.BarSegmentContent = barSegment.BarSegmentContent;
|
|
31
31
|
exports.BarSegmentLabel = barSegment.BarSegmentLabel;
|
package/dist/esm/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
export { useChart } from './use-chart.js';
|
|
3
|
-
export { ChartGradient, ChartLegend, ChartRadialText, ChartRoot, ChartTooltip } from './chart/chart.js';
|
|
4
|
-
import * as namespace from './chart/namespace.js';
|
|
5
|
-
export { namespace as Chart };
|
|
6
3
|
export { BarListBar, BarListContent, BarListLabel, BarListRoot, BarListTitle, BarListTooltip, BarListValue } from './bar-list/bar-list.js';
|
|
7
4
|
import * as namespace$1 from './bar-list/namespace.js';
|
|
8
5
|
export { namespace$1 as BarList };
|
|
6
|
+
export { ChartGradient, ChartLegend, ChartRadialText, ChartRoot, ChartTooltip } from './chart/chart.js';
|
|
7
|
+
import * as namespace from './chart/namespace.js';
|
|
8
|
+
export { namespace as Chart };
|
|
9
9
|
export { BarSegmentBar, BarSegmentContent, BarSegmentLabel, BarSegmentLegend, BarSegmentReference, BarSegmentRoot, BarSegmentValue } from './bar-segment/bar-segment.js';
|
|
10
10
|
import * as namespace$2 from './bar-segment/namespace.js';
|
|
11
11
|
export { namespace$2 as BarSegment };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chakra-ui/charts",
|
|
3
|
-
"version": "3.16.
|
|
3
|
+
"version": "3.16.1",
|
|
4
4
|
"description": "Data visualization components for Chakra UI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cjs/index.cjs",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"recharts": "2.15.2",
|
|
47
47
|
"react": "19.1.0",
|
|
48
48
|
"react-dom": "19.1.0",
|
|
49
|
-
"@chakra-ui/react": "3.16.
|
|
49
|
+
"@chakra-ui/react": "3.16.1"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"@chakra-ui/react": ">=3",
|