@yamada-ui/charts 1.4.1-dev-20240818003836 → 1.4.1-dev-20240818021736
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/area-chart.d.mts +1 -0
- package/dist/area-chart.d.ts +1 -0
- package/dist/bar-chart.d.mts +1 -0
- package/dist/bar-chart.d.ts +1 -0
- package/dist/chart.types.d.mts +4 -3
- package/dist/chart.types.d.ts +4 -3
- package/dist/chart.types.js.map +1 -1
- package/dist/donut-chart.d.mts +1 -0
- package/dist/donut-chart.d.ts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/line-chart.d.mts +1 -0
- package/dist/line-chart.d.ts +1 -0
- package/dist/pie-chart.d.mts +1 -0
- package/dist/pie-chart.d.ts +1 -0
- package/dist/radar-chart.d.mts +1 -0
- package/dist/radar-chart.d.ts +1 -0
- package/dist/use-area-chart.d.mts +1 -0
- package/dist/use-area-chart.d.ts +1 -0
- package/dist/use-bar-chart.d.mts +1 -0
- package/dist/use-bar-chart.d.ts +1 -0
- package/dist/use-chart-axis.d.mts +1 -0
- package/dist/use-chart-axis.d.ts +1 -0
- package/dist/use-chart-grid.d.mts +1 -0
- package/dist/use-chart-grid.d.ts +1 -0
- package/dist/use-chart-legend.d.mts +1 -0
- package/dist/use-chart-legend.d.ts +1 -0
- package/dist/use-chart-reference-line.d.mts +1 -0
- package/dist/use-chart-reference-line.d.ts +1 -0
- package/dist/use-chart-tooltip.d.mts +1 -0
- package/dist/use-chart-tooltip.d.ts +1 -0
- package/dist/use-chart.d.mts +1 -0
- package/dist/use-chart.d.ts +1 -0
- package/dist/use-line-chart.d.mts +1 -0
- package/dist/use-line-chart.d.ts +1 -0
- package/dist/use-pie-chart.d.mts +1 -0
- package/dist/use-pie-chart.d.ts +1 -0
- package/dist/use-radar-chart.d.mts +1 -0
- package/dist/use-radar-chart.d.ts +1 -0
- package/package.json +3 -3
package/dist/area-chart.d.mts
CHANGED
package/dist/area-chart.d.ts
CHANGED
package/dist/bar-chart.d.mts
CHANGED
package/dist/bar-chart.d.ts
CHANGED
package/dist/chart.types.d.mts
CHANGED
@@ -2,6 +2,7 @@ import { As, HTMLUIProps, CSSUIProps } from '@yamada-ui/core';
|
|
2
2
|
import { Merge } from '@yamada-ui/utils';
|
3
3
|
import { ComponentPropsWithoutRef, SVGProps, ReactElement, ReactNode } from 'react';
|
4
4
|
import * as Recharts from 'recharts';
|
5
|
+
import { pieProperties } from './rechart-properties.mjs';
|
5
6
|
|
6
7
|
type ChartPropGetter<Y extends As = "div", M = undefined, D = undefined> = (props?: Merge<HTMLUIProps<Y>, M>, ref?: React.Ref<any>) => D;
|
7
8
|
type RequiredChartPropGetter<Y extends As = "div", M = undefined, D = undefined> = (props: Merge<HTMLUIProps<Y>, M>, ref?: React.Ref<any>) => D;
|
@@ -45,9 +46,9 @@ type RadarProps = Merge<Merge<CSSUIProps, Recharts.RadarProps>, {
|
|
45
46
|
dimDot?: DotProps;
|
46
47
|
dimRadar?: Partial<RadarProps>;
|
47
48
|
}>;
|
48
|
-
type PieProps = Merge<Merge<
|
49
|
-
activeShape?:
|
50
|
-
inactiveShape?:
|
49
|
+
type PieProps = Merge<Merge<Pick<Recharts.PieProps, (typeof pieProperties)[number]>, CSSUIProps>, {
|
50
|
+
activeShape?: Partial<PieProps>;
|
51
|
+
inactiveShape?: Partial<PieProps>;
|
51
52
|
label?: HTMLUIProps<"text">;
|
52
53
|
labelLine?: HTMLUIProps<"path">;
|
53
54
|
}>;
|
package/dist/chart.types.d.ts
CHANGED
@@ -2,6 +2,7 @@ import { As, HTMLUIProps, CSSUIProps } from '@yamada-ui/core';
|
|
2
2
|
import { Merge } from '@yamada-ui/utils';
|
3
3
|
import { ComponentPropsWithoutRef, SVGProps, ReactElement, ReactNode } from 'react';
|
4
4
|
import * as Recharts from 'recharts';
|
5
|
+
import { pieProperties } from './rechart-properties.js';
|
5
6
|
|
6
7
|
type ChartPropGetter<Y extends As = "div", M = undefined, D = undefined> = (props?: Merge<HTMLUIProps<Y>, M>, ref?: React.Ref<any>) => D;
|
7
8
|
type RequiredChartPropGetter<Y extends As = "div", M = undefined, D = undefined> = (props: Merge<HTMLUIProps<Y>, M>, ref?: React.Ref<any>) => D;
|
@@ -45,9 +46,9 @@ type RadarProps = Merge<Merge<CSSUIProps, Recharts.RadarProps>, {
|
|
45
46
|
dimDot?: DotProps;
|
46
47
|
dimRadar?: Partial<RadarProps>;
|
47
48
|
}>;
|
48
|
-
type PieProps = Merge<Merge<
|
49
|
-
activeShape?:
|
50
|
-
inactiveShape?:
|
49
|
+
type PieProps = Merge<Merge<Pick<Recharts.PieProps, (typeof pieProperties)[number]>, CSSUIProps>, {
|
50
|
+
activeShape?: Partial<PieProps>;
|
51
|
+
inactiveShape?: Partial<PieProps>;
|
51
52
|
label?: HTMLUIProps<"text">;
|
52
53
|
labelLine?: HTMLUIProps<"path">;
|
53
54
|
}>;
|
package/dist/chart.types.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../src/chart.types.ts"],"sourcesContent":["import type { As, CSSUIProps, HTMLUIProps } from \"@yamada-ui/core\"\nimport type { Merge } from \"@yamada-ui/utils\"\nimport type {\n ComponentPropsWithoutRef,\n ReactElement,\n ReactNode,\n SVGProps,\n} from \"react\"\nimport type * as Recharts from \"recharts\"\n\nexport type ChartPropGetter<\n Y extends As = \"div\",\n M = undefined,\n D = undefined,\n> = (props?: Merge<HTMLUIProps<Y>, M>, ref?: React.Ref<any>) => D\n\nexport type RequiredChartPropGetter<\n Y extends As = \"div\",\n M = undefined,\n D = undefined,\n> = (props: Merge<HTMLUIProps<Y>, M>, ref?: React.Ref<any>) => D\nexport type ChartLayoutType = \"horizontal\" | \"vertical\"\nexport type AreaChartType = \"default\" | \"stacked\" | \"percent\" | \"split\"\nexport type BarChartType = Exclude<AreaChartType, \"split\">\nexport type ChartAxisType = \"x\" | \"y\" | \"xy\" | \"none\"\nexport type ChartCurveType =\n | \"bump\"\n | \"linear\"\n | \"natural\"\n | \"monotone\"\n | \"step\"\n | \"stepBefore\"\n | \"stepAfter\"\nexport type TooltipDataSourceType = \"segment\" | \"all\"\n\nexport type AreaChartProps = Merge<\n CSSUIProps,\n ComponentPropsWithoutRef<typeof Recharts.AreaChart>\n>\nexport type BarChartProps = Merge<\n CSSUIProps,\n ComponentPropsWithoutRef<typeof Recharts.BarChart>\n>\nexport type LineChartProps = Merge<\n CSSUIProps,\n ComponentPropsWithoutRef<typeof Recharts.LineChart>\n>\nexport type RadarChartProps = Merge<\n CSSUIProps,\n ComponentPropsWithoutRef<typeof Recharts.RadarChart>\n>\nexport type PieChartProps = Merge<\n CSSUIProps,\n ComponentPropsWithoutRef<typeof Recharts.PieChart>\n>\nexport type ReferenceLineProps = Merge<CSSUIProps, Recharts.ReferenceLineProps>\nexport type ResponsiveContainerProps = Merge<\n CSSUIProps,\n Omit<Recharts.ResponsiveContainerProps, \"children\">\n>\nexport type AreaProps = Merge<\n Merge<CSSUIProps, Recharts.AreaProps>,\n {\n color: CSSUIProps[\"color\"]\n dot?: DotProps\n activeDot?: DotProps\n dimDot?: DotProps\n dimArea?: Partial<AreaProps>\n }\n>\nexport type LineProps = Merge<\n Merge<CSSUIProps, Recharts.LineProps>,\n {\n color: CSSUIProps[\"color\"]\n activeDot?: DotProps\n dot?: DotProps\n dimDot?: DotProps\n dimLine?: Partial<LineProps>\n }\n>\nexport type BarProps = Merge<\n Merge<CSSUIProps, Recharts.BarProps>,\n {\n color: CSSUIProps[\"color\"]\n activeBar?: Merge<SVGProps<SVGPathElement>, CSSUIProps>\n background?: Merge<SVGProps<SVGPathElement>, CSSUIProps>\n dimBar?: Partial<BarProps>\n }\n>\nexport type RadarProps = Merge<\n Merge<CSSUIProps, Recharts.RadarProps>,\n {\n color: CSSUIProps[\"color\"]\n dot?: DotProps\n activeDot?: DotProps\n dimDot?: DotProps\n dimRadar?: Partial<RadarProps>\n }\n>\nexport type PieProps = Merge<\n Merge<
|
1
|
+
{"version":3,"sources":["../src/chart.types.ts"],"sourcesContent":["import type { As, CSSUIProps, HTMLUIProps } from \"@yamada-ui/core\"\nimport type { Merge } from \"@yamada-ui/utils\"\nimport type {\n ComponentPropsWithoutRef,\n ReactElement,\n ReactNode,\n SVGProps,\n} from \"react\"\nimport type * as Recharts from \"recharts\"\nimport type { pieProperties } from \"./rechart-properties\"\n\nexport type ChartPropGetter<\n Y extends As = \"div\",\n M = undefined,\n D = undefined,\n> = (props?: Merge<HTMLUIProps<Y>, M>, ref?: React.Ref<any>) => D\n\nexport type RequiredChartPropGetter<\n Y extends As = \"div\",\n M = undefined,\n D = undefined,\n> = (props: Merge<HTMLUIProps<Y>, M>, ref?: React.Ref<any>) => D\nexport type ChartLayoutType = \"horizontal\" | \"vertical\"\nexport type AreaChartType = \"default\" | \"stacked\" | \"percent\" | \"split\"\nexport type BarChartType = Exclude<AreaChartType, \"split\">\nexport type ChartAxisType = \"x\" | \"y\" | \"xy\" | \"none\"\nexport type ChartCurveType =\n | \"bump\"\n | \"linear\"\n | \"natural\"\n | \"monotone\"\n | \"step\"\n | \"stepBefore\"\n | \"stepAfter\"\nexport type TooltipDataSourceType = \"segment\" | \"all\"\n\nexport type AreaChartProps = Merge<\n CSSUIProps,\n ComponentPropsWithoutRef<typeof Recharts.AreaChart>\n>\nexport type BarChartProps = Merge<\n CSSUIProps,\n ComponentPropsWithoutRef<typeof Recharts.BarChart>\n>\nexport type LineChartProps = Merge<\n CSSUIProps,\n ComponentPropsWithoutRef<typeof Recharts.LineChart>\n>\nexport type RadarChartProps = Merge<\n CSSUIProps,\n ComponentPropsWithoutRef<typeof Recharts.RadarChart>\n>\nexport type PieChartProps = Merge<\n CSSUIProps,\n ComponentPropsWithoutRef<typeof Recharts.PieChart>\n>\nexport type ReferenceLineProps = Merge<CSSUIProps, Recharts.ReferenceLineProps>\nexport type ResponsiveContainerProps = Merge<\n CSSUIProps,\n Omit<Recharts.ResponsiveContainerProps, \"children\">\n>\nexport type AreaProps = Merge<\n Merge<CSSUIProps, Recharts.AreaProps>,\n {\n color: CSSUIProps[\"color\"]\n dot?: DotProps\n activeDot?: DotProps\n dimDot?: DotProps\n dimArea?: Partial<AreaProps>\n }\n>\nexport type LineProps = Merge<\n Merge<CSSUIProps, Recharts.LineProps>,\n {\n color: CSSUIProps[\"color\"]\n activeDot?: DotProps\n dot?: DotProps\n dimDot?: DotProps\n dimLine?: Partial<LineProps>\n }\n>\nexport type BarProps = Merge<\n Merge<CSSUIProps, Recharts.BarProps>,\n {\n color: CSSUIProps[\"color\"]\n activeBar?: Merge<SVGProps<SVGPathElement>, CSSUIProps>\n background?: Merge<SVGProps<SVGPathElement>, CSSUIProps>\n dimBar?: Partial<BarProps>\n }\n>\nexport type RadarProps = Merge<\n Merge<CSSUIProps, Recharts.RadarProps>,\n {\n color: CSSUIProps[\"color\"]\n dot?: DotProps\n activeDot?: DotProps\n dimDot?: DotProps\n dimRadar?: Partial<RadarProps>\n }\n>\nexport type PieProps = Merge<\n Merge<Pick<Recharts.PieProps, (typeof pieProperties)[number]>, CSSUIProps>,\n {\n activeShape?: Partial<PieProps>\n inactiveShape?: Partial<PieProps>\n label?: HTMLUIProps<\"text\">\n labelLine?: HTMLUIProps<\"path\">\n }\n>\nexport type CellProps = Merge<\n CSSUIProps,\n {\n name: string\n value: number\n dimCell?: Partial<CellProps>\n }\n>\nexport type DotProps = Merge<Omit<Recharts.DotProps, \"ref\">, CSSUIProps>\nexport type XAxisProps = Merge<\n Merge<CSSUIProps, Recharts.XAxisProps>,\n {\n color?: CSSUIProps[\"color\"]\n stroke?: CSSUIProps[\"color\"]\n fill?: CSSUIProps[\"color\"]\n }\n>\nexport type YAxisProps = Merge<\n Merge<CSSUIProps, Recharts.YAxisProps>,\n { color?: CSSUIProps[\"color\"] }\n>\nexport type LegendProps = Merge<CSSUIProps, Omit<Recharts.LegendProps, \"ref\">>\nexport type TooltipProps = Merge<\n Merge<CSSUIProps, Omit<Recharts.TooltipProps<any, any>, \"ref\">>,\n { cursor?: CSSUIProps }\n>\nexport type GridProps = Merge<CSSUIProps, Recharts.CartesianGridProps>\nexport type PolarGridProps = Merge<CSSUIProps, Recharts.PolarGridProps>\nexport type PolarAngleAxisProps = Merge<\n Recharts.PolarAngleAxisProps,\n CSSUIProps\n>\nexport type PolarRadiusAxisProps = Merge<\n CSSUIProps,\n Recharts.PolarRadiusAxisProps\n>\nexport type LabelProps = Merge<CSSUIProps, Recharts.LabelProps>\nexport type ChartTooltip =\n | ReactElement\n | ((\n props: Recharts.TooltipProps<\n number | string | Array<number | string>,\n number | string\n >,\n ) => ReactNode)\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;AAAA;","names":[]}
|
package/dist/donut-chart.d.mts
CHANGED
package/dist/donut-chart.d.ts
CHANGED
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/line-chart.d.mts
CHANGED
package/dist/line-chart.d.ts
CHANGED
package/dist/pie-chart.d.mts
CHANGED
package/dist/pie-chart.d.ts
CHANGED
package/dist/radar-chart.d.mts
CHANGED
package/dist/radar-chart.d.ts
CHANGED
@@ -9,6 +9,7 @@ import { AreaGradientProps } from './area-chart-gradient.mjs';
|
|
9
9
|
import { AreaSplitProps } from './area-chart-split.mjs';
|
10
10
|
import { AreaProps, AreaChartType, AreaChartProps, ChartLayoutType, ChartCurveType, ReferenceLineProps, ChartPropGetter, RequiredChartPropGetter } from './chart.types.mjs';
|
11
11
|
import 'react/jsx-runtime';
|
12
|
+
import './rechart-properties.mjs';
|
12
13
|
|
13
14
|
type UseAreaChartOptions = {
|
14
15
|
/**
|
package/dist/use-area-chart.d.ts
CHANGED
@@ -9,6 +9,7 @@ import { AreaGradientProps } from './area-chart-gradient.js';
|
|
9
9
|
import { AreaSplitProps } from './area-chart-split.js';
|
10
10
|
import { AreaProps, AreaChartType, AreaChartProps, ChartLayoutType, ChartCurveType, ReferenceLineProps, ChartPropGetter, RequiredChartPropGetter } from './chart.types.js';
|
11
11
|
import 'react/jsx-runtime';
|
12
|
+
import './rechart-properties.js';
|
12
13
|
|
13
14
|
type UseAreaChartOptions = {
|
14
15
|
/**
|
package/dist/use-bar-chart.d.mts
CHANGED
@@ -8,6 +8,7 @@ import { CSSUIObject } from '@yamada-ui/core';
|
|
8
8
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
9
9
|
import * as Recharts from 'recharts';
|
10
10
|
import { BarProps, BarChartType, ChartLayoutType, BarChartProps, ReferenceLineProps, RequiredChartPropGetter, ChartPropGetter } from './chart.types.mjs';
|
11
|
+
import './rechart-properties.mjs';
|
11
12
|
|
12
13
|
type UseBarChartOptions = {
|
13
14
|
/**
|
package/dist/use-bar-chart.d.ts
CHANGED
@@ -8,6 +8,7 @@ import { CSSUIObject } from '@yamada-ui/core';
|
|
8
8
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
9
9
|
import * as Recharts from 'recharts';
|
10
10
|
import { BarProps, BarChartType, ChartLayoutType, BarChartProps, ReferenceLineProps, RequiredChartPropGetter, ChartPropGetter } from './chart.types.js';
|
11
|
+
import './rechart-properties.js';
|
11
12
|
|
12
13
|
type UseBarChartOptions = {
|
13
14
|
/**
|
@@ -3,6 +3,7 @@ import { Dict } from '@yamada-ui/utils';
|
|
3
3
|
import * as Recharts from 'recharts';
|
4
4
|
import { AreaChartType, ChartLayoutType, ChartAxisType, XAxisProps, YAxisProps, LabelProps, ChartPropGetter } from './chart.types.mjs';
|
5
5
|
import 'react';
|
6
|
+
import './rechart-properties.mjs';
|
6
7
|
|
7
8
|
type UseChartAxisOptions = {
|
8
9
|
/**
|
package/dist/use-chart-axis.d.ts
CHANGED
@@ -3,6 +3,7 @@ import { Dict } from '@yamada-ui/utils';
|
|
3
3
|
import * as Recharts from 'recharts';
|
4
4
|
import { AreaChartType, ChartLayoutType, ChartAxisType, XAxisProps, YAxisProps, LabelProps, ChartPropGetter } from './chart.types.js';
|
5
5
|
import 'react';
|
6
|
+
import './rechart-properties.js';
|
6
7
|
|
7
8
|
type UseChartAxisOptions = {
|
8
9
|
/**
|
package/dist/use-chart-grid.d.ts
CHANGED
package/dist/use-chart.d.mts
CHANGED
@@ -3,6 +3,7 @@ import { CSSUIObject } from '@yamada-ui/core';
|
|
3
3
|
import * as Recharts from 'recharts';
|
4
4
|
import { ResponsiveContainerProps, ChartPropGetter } from './chart.types.mjs';
|
5
5
|
import '@yamada-ui/utils';
|
6
|
+
import './rechart-properties.mjs';
|
6
7
|
|
7
8
|
type ChartContext = {
|
8
9
|
styles: Record<string, CSSUIObject>;
|
package/dist/use-chart.d.ts
CHANGED
@@ -3,6 +3,7 @@ import { CSSUIObject } from '@yamada-ui/core';
|
|
3
3
|
import * as Recharts from 'recharts';
|
4
4
|
import { ResponsiveContainerProps, ChartPropGetter } from './chart.types.js';
|
5
5
|
import '@yamada-ui/utils';
|
6
|
+
import './rechart-properties.js';
|
6
7
|
|
7
8
|
type ChartContext = {
|
8
9
|
styles: Record<string, CSSUIObject>;
|
@@ -6,6 +6,7 @@ import { CSSUIObject } from '@yamada-ui/core';
|
|
6
6
|
import * as recharts_types_chart_generateCategoricalChart from 'recharts/types/chart/generateCategoricalChart';
|
7
7
|
import * as Recharts from 'recharts';
|
8
8
|
import { LineProps, LineChartProps, ChartLayoutType, ChartCurveType, ReferenceLineProps, RequiredChartPropGetter, ChartPropGetter } from './chart.types.mjs';
|
9
|
+
import './rechart-properties.mjs';
|
9
10
|
|
10
11
|
type UseLineChartOptions = {
|
11
12
|
/**
|
package/dist/use-line-chart.d.ts
CHANGED
@@ -6,6 +6,7 @@ import { CSSUIObject } from '@yamada-ui/core';
|
|
6
6
|
import * as recharts_types_chart_generateCategoricalChart from 'recharts/types/chart/generateCategoricalChart';
|
7
7
|
import * as Recharts from 'recharts';
|
8
8
|
import { LineProps, LineChartProps, ChartLayoutType, ChartCurveType, ReferenceLineProps, RequiredChartPropGetter, ChartPropGetter } from './chart.types.js';
|
9
|
+
import './rechart-properties.js';
|
9
10
|
|
10
11
|
type UseLineChartOptions = {
|
11
12
|
/**
|
package/dist/use-pie-chart.d.mts
CHANGED
@@ -6,6 +6,7 @@ import * as _yamada_ui_core from '@yamada-ui/core';
|
|
6
6
|
import { CSSUIObject } from '@yamada-ui/core';
|
7
7
|
import * as Recharts from 'recharts';
|
8
8
|
import { CellProps, PieChartProps, PieProps, RequiredChartPropGetter, ChartPropGetter } from './chart.types.mjs';
|
9
|
+
import './rechart-properties.mjs';
|
9
10
|
|
10
11
|
type UsePieChartOptions = {
|
11
12
|
/**
|
package/dist/use-pie-chart.d.ts
CHANGED
@@ -6,6 +6,7 @@ import * as _yamada_ui_core from '@yamada-ui/core';
|
|
6
6
|
import { CSSUIObject } from '@yamada-ui/core';
|
7
7
|
import * as Recharts from 'recharts';
|
8
8
|
import { CellProps, PieChartProps, PieProps, RequiredChartPropGetter, ChartPropGetter } from './chart.types.js';
|
9
|
+
import './rechart-properties.js';
|
9
10
|
|
10
11
|
type UsePieChartOptions = {
|
11
12
|
/**
|
@@ -6,6 +6,7 @@ import * as _yamada_ui_core from '@yamada-ui/core';
|
|
6
6
|
import { CSSUIProps, CSSUIObject } from '@yamada-ui/core';
|
7
7
|
import * as Recharts from 'recharts';
|
8
8
|
import { RadarProps, RadarChartProps, PolarGridProps, PolarAngleAxisProps, PolarRadiusAxisProps, ChartPropGetter, RequiredChartPropGetter } from './chart.types.mjs';
|
9
|
+
import './rechart-properties.mjs';
|
9
10
|
|
10
11
|
type UseRadarChartOptions = {
|
11
12
|
/**
|
@@ -6,6 +6,7 @@ import * as _yamada_ui_core from '@yamada-ui/core';
|
|
6
6
|
import { CSSUIProps, CSSUIObject } from '@yamada-ui/core';
|
7
7
|
import * as Recharts from 'recharts';
|
8
8
|
import { RadarProps, RadarChartProps, PolarGridProps, PolarAngleAxisProps, PolarRadiusAxisProps, ChartPropGetter, RequiredChartPropGetter } from './chart.types.js';
|
9
|
+
import './rechart-properties.js';
|
9
10
|
|
10
11
|
type UseRadarChartOptions = {
|
11
12
|
/**
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@yamada-ui/charts",
|
3
|
-
"version": "1.4.1-dev-
|
3
|
+
"version": "1.4.1-dev-20240818021736",
|
4
4
|
"description": "Yamada UI charts component",
|
5
5
|
"keywords": [
|
6
6
|
"yamada",
|
@@ -37,8 +37,8 @@
|
|
37
37
|
},
|
38
38
|
"dependencies": {
|
39
39
|
"recharts": "^2.12.7",
|
40
|
-
"@yamada-ui/core": "1.13.0-dev-
|
41
|
-
"@yamada-ui/utils": "1.4.0-dev-
|
40
|
+
"@yamada-ui/core": "1.13.0-dev-20240818021736",
|
41
|
+
"@yamada-ui/utils": "1.4.0-dev-20240818021736"
|
42
42
|
},
|
43
43
|
"devDependencies": {
|
44
44
|
"clean-package": "2.2.0",
|