@pisell/charts-materials 1.0.72 → 1.0.74
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/es/area/index.d.ts +1 -1
- package/es/bar/index.d.ts +1 -1
- package/es/column/index.d.ts +1 -1
- package/es/line/index.d.ts +1 -1
- package/es/pie/index.d.ts +1 -1
- package/lib/area/index.d.ts +1 -1
- package/lib/bar/index.d.ts +1 -1
- package/lib/column/index.d.ts +1 -1
- package/lib/line/index.d.ts +1 -1
- package/lib/pie/index.d.ts +1 -1
- package/package.json +2 -2
package/es/area/index.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import { Area as AntArea } from "@ant-design/plots";
|
|
|
3
3
|
declare type AntAreaProps = typeof AntArea;
|
|
4
4
|
export interface AreaProps extends React.ComponentProps<AntAreaProps> {
|
|
5
5
|
}
|
|
6
|
-
declare const Area: (props: AreaProps) => JSX.Element;
|
|
6
|
+
declare const Area: (props: AreaProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default Area;
|
package/es/bar/index.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import { Bar as AntBar } from "@ant-design/plots";
|
|
|
3
3
|
declare type AntBarProps = typeof AntBar;
|
|
4
4
|
export interface BarProps extends React.ComponentProps<AntBarProps> {
|
|
5
5
|
}
|
|
6
|
-
declare const Bar: (props: BarProps) => JSX.Element;
|
|
6
|
+
declare const Bar: (props: BarProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default Bar;
|
package/es/column/index.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import { Column as AntColumn } from "@ant-design/plots";
|
|
|
3
3
|
declare type AntColumnProps = typeof AntColumn;
|
|
4
4
|
export interface ColumnProps extends React.ComponentProps<AntColumnProps> {
|
|
5
5
|
}
|
|
6
|
-
declare const Column: (props: ColumnProps) => JSX.Element;
|
|
6
|
+
declare const Column: (props: ColumnProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default Column;
|
package/es/line/index.d.ts
CHANGED
|
@@ -4,5 +4,5 @@ declare type AntLineProps = typeof AntLine;
|
|
|
4
4
|
export interface LineProps extends React.ComponentProps<AntLineProps> {
|
|
5
5
|
others: any;
|
|
6
6
|
}
|
|
7
|
-
declare const Line: (props: LineProps) => JSX.Element;
|
|
7
|
+
declare const Line: (props: LineProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export default Line;
|
package/es/pie/index.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import { Pie as AntPie } from "@ant-design/plots";
|
|
|
3
3
|
declare type AntPieProps = typeof AntPie;
|
|
4
4
|
export interface PieProps extends React.ComponentProps<AntPieProps> {
|
|
5
5
|
}
|
|
6
|
-
declare const Pie: (props: PieProps) => JSX.Element;
|
|
6
|
+
declare const Pie: (props: PieProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default Pie;
|
package/lib/area/index.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import { Area as AntArea } from "@ant-design/plots";
|
|
|
3
3
|
declare type AntAreaProps = typeof AntArea;
|
|
4
4
|
export interface AreaProps extends React.ComponentProps<AntAreaProps> {
|
|
5
5
|
}
|
|
6
|
-
declare const Area: (props: AreaProps) => JSX.Element;
|
|
6
|
+
declare const Area: (props: AreaProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default Area;
|
package/lib/bar/index.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import { Bar as AntBar } from "@ant-design/plots";
|
|
|
3
3
|
declare type AntBarProps = typeof AntBar;
|
|
4
4
|
export interface BarProps extends React.ComponentProps<AntBarProps> {
|
|
5
5
|
}
|
|
6
|
-
declare const Bar: (props: BarProps) => JSX.Element;
|
|
6
|
+
declare const Bar: (props: BarProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default Bar;
|
package/lib/column/index.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import { Column as AntColumn } from "@ant-design/plots";
|
|
|
3
3
|
declare type AntColumnProps = typeof AntColumn;
|
|
4
4
|
export interface ColumnProps extends React.ComponentProps<AntColumnProps> {
|
|
5
5
|
}
|
|
6
|
-
declare const Column: (props: ColumnProps) => JSX.Element;
|
|
6
|
+
declare const Column: (props: ColumnProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default Column;
|
package/lib/line/index.d.ts
CHANGED
|
@@ -4,5 +4,5 @@ declare type AntLineProps = typeof AntLine;
|
|
|
4
4
|
export interface LineProps extends React.ComponentProps<AntLineProps> {
|
|
5
5
|
others: any;
|
|
6
6
|
}
|
|
7
|
-
declare const Line: (props: LineProps) => JSX.Element;
|
|
7
|
+
declare const Line: (props: LineProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export default Line;
|
package/lib/pie/index.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ import { Pie as AntPie } from "@ant-design/plots";
|
|
|
3
3
|
declare type AntPieProps = typeof AntPie;
|
|
4
4
|
export interface PieProps extends React.ComponentProps<AntPieProps> {
|
|
5
5
|
}
|
|
6
|
-
declare const Pie: (props: PieProps) => JSX.Element;
|
|
6
|
+
declare const Pie: (props: PieProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export default Pie;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pisell/charts-materials",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.74",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"module": "./es/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"react-resizable": "^3.0.5",
|
|
52
52
|
"styled-components": "^6.0.0-rc.3",
|
|
53
53
|
"ahooks": "^3.7.6",
|
|
54
|
-
"@pisell/utils": "1.0.
|
|
54
|
+
"@pisell/utils": "1.0.70",
|
|
55
55
|
"@pisell/icon": "0.0.10"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|