@object-ui/plugin-charts 3.1.2 → 3.1.3
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/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +9 -0
- package/dist/{AdvancedChartImpl-D5NQFQLZ.js → AdvancedChartImpl-DW8x9DgS.js} +1204 -1097
- package/dist/{BarChart-C_I0OFbj.js → BarChart-CdpS5ozp.js} +9254 -8888
- package/dist/{ChartImpl-WXTkPN08.js → ChartImpl-DQsl4_ct.js} +2 -2
- package/dist/{index-xUWSanB8.js → index-CYV5Bp-d.js} +1 -1
- package/dist/index.js +1 -1
- package/dist/index.umd.cjs +22 -22
- package/dist/src/ChartContainerImpl.d.ts +2 -2
- package/package.json +6 -6
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ResponsiveContainer, Tooltip
|
|
1
|
+
import { ResponsiveContainer, Tooltip } from 'recharts';
|
|
2
2
|
/**
|
|
3
3
|
* ObjectUI
|
|
4
4
|
* Copyright (c) 2024-present ObjectStack Inc.
|
|
@@ -33,6 +33,6 @@ declare const ChartStyle: ({ id, config }: {
|
|
|
33
33
|
}) => import("react/jsx-runtime").JSX.Element | null;
|
|
34
34
|
declare const ChartTooltip: typeof Tooltip;
|
|
35
35
|
declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: any): import("react/jsx-runtime").JSX.Element | null;
|
|
36
|
-
declare const ChartLegend:
|
|
36
|
+
declare const ChartLegend: React.MemoExoticComponent<(outsideProps: import('recharts').LegendProps) => React.ReactPortal | null>;
|
|
37
37
|
declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: any): import("react/jsx-runtime").JSX.Element | null;
|
|
38
38
|
export { ChartContainer, ChartTooltip, ChartTooltipContent, ChartLegend, ChartLegendContent, ChartStyle, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@object-ui/plugin-charts",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Chart components plugin for Object UI, powered by Recharts",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"recharts": "^3.
|
|
28
|
-
"@object-ui/components": "3.1.
|
|
29
|
-
"@object-ui/core": "3.1.
|
|
30
|
-
"@object-ui/react": "3.1.
|
|
31
|
-
"@object-ui/types": "3.1.
|
|
27
|
+
"recharts": "^3.8.0",
|
|
28
|
+
"@object-ui/components": "3.1.3",
|
|
29
|
+
"@object-ui/core": "3.1.3",
|
|
30
|
+
"@object-ui/react": "3.1.3",
|
|
31
|
+
"@object-ui/types": "3.1.3"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"react": "^18.0.0 || ^19.0.0",
|