@visactor/react-vchart 2.0.1 → 2.0.2
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/cjs/charts/Bar3dChart.d.ts +2 -2
- package/cjs/charts/Funnel3dChart.d.ts +2 -2
- package/cjs/charts/Histogram3dChart.d.ts +2 -2
- package/cjs/charts/Pie3dChart.d.ts +2 -2
- package/cjs/charts/RangeColumn3dChart.d.ts +2 -2
- package/cjs/charts/WordCloud3dChart.d.ts +2 -2
- package/cjs/index.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/esm/charts/Bar3dChart.d.ts +2 -2
- package/esm/charts/Funnel3dChart.d.ts +2 -2
- package/esm/charts/Histogram3dChart.d.ts +2 -2
- package/esm/charts/Pie3dChart.d.ts +2 -2
- package/esm/charts/RangeColumn3dChart.d.ts +2 -2
- package/esm/charts/WordCloud3dChart.d.ts +2 -2
- package/esm/index.d.ts +1 -1
- package/esm/index.js +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +7 -7
|
@@ -3,8 +3,8 @@ import type { IBar3dChartSpec } from '@visactor/vchart-extension';
|
|
|
3
3
|
import type { BaseChartProps } from './BaseChart';
|
|
4
4
|
export interface Bar3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IBar3dChartSpec>, 'type'> {
|
|
5
5
|
}
|
|
6
|
-
export declare const Bar3dChart: React.ForwardRefExoticComponent<Bar3dChartProps & {
|
|
6
|
+
export declare const Bar3dChart: React.ForwardRefExoticComponent<Omit<Bar3dChartProps & {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
} & {
|
|
9
9
|
type?: 'bar3d';
|
|
10
|
-
} & React.RefAttributes<any>>;
|
|
10
|
+
}, "ref"> & React.RefAttributes<any>>;
|
|
@@ -3,8 +3,8 @@ import type { BaseChartProps } from './BaseChart';
|
|
|
3
3
|
import type { IFunnel3dChartSpec } from '@visactor/vchart-extension';
|
|
4
4
|
export interface Funnel3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IFunnel3dChartSpec>, 'type'> {
|
|
5
5
|
}
|
|
6
|
-
export declare const Funnel3dChart: React.ForwardRefExoticComponent<Funnel3dChartProps & {
|
|
6
|
+
export declare const Funnel3dChart: React.ForwardRefExoticComponent<Omit<Funnel3dChartProps & {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
} & {
|
|
9
9
|
type?: 'funnel3d';
|
|
10
|
-
} & React.RefAttributes<any>>;
|
|
10
|
+
}, "ref"> & React.RefAttributes<any>>;
|
|
@@ -3,8 +3,8 @@ import type { BaseChartProps } from './BaseChart';
|
|
|
3
3
|
import type { IHistogram3dChartSpec } from '@visactor/vchart-extension';
|
|
4
4
|
export interface Histogram3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IHistogram3dChartSpec>, 'type'> {
|
|
5
5
|
}
|
|
6
|
-
export declare const Histogram3dChart: React.ForwardRefExoticComponent<Histogram3dChartProps & {
|
|
6
|
+
export declare const Histogram3dChart: React.ForwardRefExoticComponent<Omit<Histogram3dChartProps & {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
} & {
|
|
9
9
|
type?: 'histogram3d';
|
|
10
|
-
} & React.RefAttributes<any>>;
|
|
10
|
+
}, "ref"> & React.RefAttributes<any>>;
|
|
@@ -3,8 +3,8 @@ import type { BaseChartProps } from './BaseChart';
|
|
|
3
3
|
import type { IPie3dChartSpec } from '@visactor/vchart-extension';
|
|
4
4
|
export interface Pie3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IPie3dChartSpec>, 'type'> {
|
|
5
5
|
}
|
|
6
|
-
export declare const Pie3dChart: React.ForwardRefExoticComponent<Pie3dChartProps & {
|
|
6
|
+
export declare const Pie3dChart: React.ForwardRefExoticComponent<Omit<Pie3dChartProps & {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
} & {
|
|
9
9
|
type?: 'pie3d';
|
|
10
|
-
} & React.RefAttributes<any>>;
|
|
10
|
+
}, "ref"> & React.RefAttributes<any>>;
|
|
@@ -3,8 +3,8 @@ import type { BaseChartProps } from './BaseChart';
|
|
|
3
3
|
import type { IRangeColumn3dChartSpec } from '@visactor/vchart-extension';
|
|
4
4
|
export interface RangeColumn3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IRangeColumn3dChartSpec>, 'type'> {
|
|
5
5
|
}
|
|
6
|
-
export declare const RangeColumn3dChart: React.ForwardRefExoticComponent<RangeColumn3dChartProps & {
|
|
6
|
+
export declare const RangeColumn3dChart: React.ForwardRefExoticComponent<Omit<RangeColumn3dChartProps & {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
} & {
|
|
9
9
|
type?: 'rangeColumn3d';
|
|
10
|
-
} & React.RefAttributes<any>>;
|
|
10
|
+
}, "ref"> & React.RefAttributes<any>>;
|
|
@@ -3,8 +3,8 @@ import type { BaseChartProps } from './BaseChart';
|
|
|
3
3
|
import type { IWordCloud3dChartSpec } from '@visactor/vchart-extension';
|
|
4
4
|
export interface WordCloud3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IWordCloud3dChartSpec>, 'type'> {
|
|
5
5
|
}
|
|
6
|
-
export declare const WordCloud3dChart: React.ForwardRefExoticComponent<WordCloud3dChartProps & {
|
|
6
|
+
export declare const WordCloud3dChart: React.ForwardRefExoticComponent<Omit<WordCloud3dChartProps & {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
} & {
|
|
9
9
|
type?: 'wordCloud3d';
|
|
10
|
-
} & React.RefAttributes<any>>;
|
|
10
|
+
}, "ref"> & React.RefAttributes<any>>;
|
package/cjs/index.d.ts
CHANGED
|
@@ -5,6 +5,6 @@ export * from './VChart';
|
|
|
5
5
|
export * from './VChartSimple';
|
|
6
6
|
export * from './register';
|
|
7
7
|
export { VChart as VChartCore } from '@visactor/vchart';
|
|
8
|
-
export declare const version = "2.0.
|
|
8
|
+
export declare const version = "2.0.2";
|
|
9
9
|
export type { IAreaChartSpec, IBarChartSpec, IBoxPlotChartSpec, ICirclePackingChartSpec, ICommonChartSpec, IFunnelChartSpec, IGaugeChartSpec, IHeatmapChartSpec, IHistogramChartSpec, ILineChartSpec, IMapChartSpec, IPieChartSpec, ICircularProgressChartSpec, ILinearProgressChartSpec, IRadarChartSpec, IRangeColumnChartSpec, IRangeAreaChartSpec, IRoseChartSpec, IScatterChartSpec, ISankeyChartSpec, ISequenceChartSpec, ISunburstChartSpec, ITreemapChartSpec, IWaterfallChartSpec, ICorrelationChartSpec, ILiquidChartSpec, IWordCloudChartSpec, IPolarChartSpec, ICartesianChartSpec, ITheme, IInitOption, ISpec, IVChart } from '@visactor/vchart';
|
|
10
10
|
export type { IBar3dChartSpec, IFunnel3dChartSpec, IHistogram3dChartSpec, IPie3dChartSpec, IRangeColumn3dChartSpec, IWordCloud3dChartSpec } from '@visactor/vchart-extension';
|
package/cjs/index.js
CHANGED
package/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,2CAAyB;AACzB,+CAA6B;AAC7B,2CAAyB;AACzB,iDAA+B;AAC/B,6CAA2B;AAC3B,2CAAwD;AAA/C,oGAAA,MAAM,OAAc;AAGhB,QAAA,OAAO,GAAG,OAAO,CAAC","file":"index.js","sourcesContent":["export * from './charts';\nexport * from './series';\nexport * from './components';\nexport * from './VChart';\nexport * from './VChartSimple';\nexport * from './register';\nexport { VChart as VChartCore } from '@visactor/vchart';\n\n// export the version, since @1.8.3\nexport const version = \"2.0.
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,2CAAyB;AACzB,2CAAyB;AACzB,+CAA6B;AAC7B,2CAAyB;AACzB,iDAA+B;AAC/B,6CAA2B;AAC3B,2CAAwD;AAA/C,oGAAA,MAAM,OAAc;AAGhB,QAAA,OAAO,GAAG,OAAO,CAAC","file":"index.js","sourcesContent":["export * from './charts';\nexport * from './series';\nexport * from './components';\nexport * from './VChart';\nexport * from './VChartSimple';\nexport * from './register';\nexport { VChart as VChartCore } from '@visactor/vchart';\n\n// export the version, since @1.8.3\nexport const version = \"2.0.2\";\n\nexport type {\n IAreaChartSpec,\n IBarChartSpec,\n IBoxPlotChartSpec,\n ICirclePackingChartSpec,\n ICommonChartSpec,\n IFunnelChartSpec,\n IGaugeChartSpec,\n IHeatmapChartSpec,\n IHistogramChartSpec,\n ILineChartSpec,\n IMapChartSpec,\n IPieChartSpec,\n ICircularProgressChartSpec,\n ILinearProgressChartSpec,\n IRadarChartSpec,\n IRangeColumnChartSpec,\n IRangeAreaChartSpec,\n IRoseChartSpec,\n IScatterChartSpec,\n ISankeyChartSpec,\n ISequenceChartSpec,\n ISunburstChartSpec,\n ITreemapChartSpec,\n IWaterfallChartSpec,\n ICorrelationChartSpec,\n ILiquidChartSpec,\n IWordCloudChartSpec,\n IPolarChartSpec,\n ICartesianChartSpec,\n ITheme,\n IInitOption,\n ISpec,\n IVChart\n} from '@visactor/vchart';\n\nexport type {\n IBar3dChartSpec,\n IFunnel3dChartSpec,\n IHistogram3dChartSpec,\n IPie3dChartSpec,\n IRangeColumn3dChartSpec,\n IWordCloud3dChartSpec\n} from '@visactor/vchart-extension';\n"]}
|
|
@@ -3,8 +3,8 @@ import type { IBar3dChartSpec } from '@visactor/vchart-extension';
|
|
|
3
3
|
import type { BaseChartProps } from './BaseChart';
|
|
4
4
|
export interface Bar3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IBar3dChartSpec>, 'type'> {
|
|
5
5
|
}
|
|
6
|
-
export declare const Bar3dChart: React.ForwardRefExoticComponent<Bar3dChartProps & {
|
|
6
|
+
export declare const Bar3dChart: React.ForwardRefExoticComponent<Omit<Bar3dChartProps & {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
} & {
|
|
9
9
|
type?: 'bar3d';
|
|
10
|
-
} & React.RefAttributes<any>>;
|
|
10
|
+
}, "ref"> & React.RefAttributes<any>>;
|
|
@@ -3,8 +3,8 @@ import type { BaseChartProps } from './BaseChart';
|
|
|
3
3
|
import type { IFunnel3dChartSpec } from '@visactor/vchart-extension';
|
|
4
4
|
export interface Funnel3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IFunnel3dChartSpec>, 'type'> {
|
|
5
5
|
}
|
|
6
|
-
export declare const Funnel3dChart: React.ForwardRefExoticComponent<Funnel3dChartProps & {
|
|
6
|
+
export declare const Funnel3dChart: React.ForwardRefExoticComponent<Omit<Funnel3dChartProps & {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
} & {
|
|
9
9
|
type?: 'funnel3d';
|
|
10
|
-
} & React.RefAttributes<any>>;
|
|
10
|
+
}, "ref"> & React.RefAttributes<any>>;
|
|
@@ -3,8 +3,8 @@ import type { BaseChartProps } from './BaseChart';
|
|
|
3
3
|
import type { IHistogram3dChartSpec } from '@visactor/vchart-extension';
|
|
4
4
|
export interface Histogram3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IHistogram3dChartSpec>, 'type'> {
|
|
5
5
|
}
|
|
6
|
-
export declare const Histogram3dChart: React.ForwardRefExoticComponent<Histogram3dChartProps & {
|
|
6
|
+
export declare const Histogram3dChart: React.ForwardRefExoticComponent<Omit<Histogram3dChartProps & {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
} & {
|
|
9
9
|
type?: 'histogram3d';
|
|
10
|
-
} & React.RefAttributes<any>>;
|
|
10
|
+
}, "ref"> & React.RefAttributes<any>>;
|
|
@@ -3,8 +3,8 @@ import type { BaseChartProps } from './BaseChart';
|
|
|
3
3
|
import type { IPie3dChartSpec } from '@visactor/vchart-extension';
|
|
4
4
|
export interface Pie3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IPie3dChartSpec>, 'type'> {
|
|
5
5
|
}
|
|
6
|
-
export declare const Pie3dChart: React.ForwardRefExoticComponent<Pie3dChartProps & {
|
|
6
|
+
export declare const Pie3dChart: React.ForwardRefExoticComponent<Omit<Pie3dChartProps & {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
} & {
|
|
9
9
|
type?: 'pie3d';
|
|
10
|
-
} & React.RefAttributes<any>>;
|
|
10
|
+
}, "ref"> & React.RefAttributes<any>>;
|
|
@@ -3,8 +3,8 @@ import type { BaseChartProps } from './BaseChart';
|
|
|
3
3
|
import type { IRangeColumn3dChartSpec } from '@visactor/vchart-extension';
|
|
4
4
|
export interface RangeColumn3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IRangeColumn3dChartSpec>, 'type'> {
|
|
5
5
|
}
|
|
6
|
-
export declare const RangeColumn3dChart: React.ForwardRefExoticComponent<RangeColumn3dChartProps & {
|
|
6
|
+
export declare const RangeColumn3dChart: React.ForwardRefExoticComponent<Omit<RangeColumn3dChartProps & {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
} & {
|
|
9
9
|
type?: 'rangeColumn3d';
|
|
10
|
-
} & React.RefAttributes<any>>;
|
|
10
|
+
}, "ref"> & React.RefAttributes<any>>;
|
|
@@ -3,8 +3,8 @@ import type { BaseChartProps } from './BaseChart';
|
|
|
3
3
|
import type { IWordCloud3dChartSpec } from '@visactor/vchart-extension';
|
|
4
4
|
export interface WordCloud3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IWordCloud3dChartSpec>, 'type'> {
|
|
5
5
|
}
|
|
6
|
-
export declare const WordCloud3dChart: React.ForwardRefExoticComponent<WordCloud3dChartProps & {
|
|
6
|
+
export declare const WordCloud3dChart: React.ForwardRefExoticComponent<Omit<WordCloud3dChartProps & {
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
} & {
|
|
9
9
|
type?: 'wordCloud3d';
|
|
10
|
-
} & React.RefAttributes<any>>;
|
|
10
|
+
}, "ref"> & React.RefAttributes<any>>;
|
package/esm/index.d.ts
CHANGED
|
@@ -5,6 +5,6 @@ export * from './VChart';
|
|
|
5
5
|
export * from './VChartSimple';
|
|
6
6
|
export * from './register';
|
|
7
7
|
export { VChart as VChartCore } from '@visactor/vchart';
|
|
8
|
-
export declare const version = "2.0.
|
|
8
|
+
export declare const version = "2.0.2";
|
|
9
9
|
export type { IAreaChartSpec, IBarChartSpec, IBoxPlotChartSpec, ICirclePackingChartSpec, ICommonChartSpec, IFunnelChartSpec, IGaugeChartSpec, IHeatmapChartSpec, IHistogramChartSpec, ILineChartSpec, IMapChartSpec, IPieChartSpec, ICircularProgressChartSpec, ILinearProgressChartSpec, IRadarChartSpec, IRangeColumnChartSpec, IRangeAreaChartSpec, IRoseChartSpec, IScatterChartSpec, ISankeyChartSpec, ISequenceChartSpec, ISunburstChartSpec, ITreemapChartSpec, IWaterfallChartSpec, ICorrelationChartSpec, ILiquidChartSpec, IWordCloudChartSpec, IPolarChartSpec, ICartesianChartSpec, ITheme, IInitOption, ISpec, IVChart } from '@visactor/vchart';
|
|
10
10
|
export type { IBar3dChartSpec, IFunnel3dChartSpec, IHistogram3dChartSpec, IPie3dChartSpec, IRangeColumn3dChartSpec, IWordCloud3dChartSpec } from '@visactor/vchart-extension';
|
package/esm/index.js
CHANGED
package/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,MAAM,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAGxD,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC","file":"index.js","sourcesContent":["export * from './charts';\nexport * from './series';\nexport * from './components';\nexport * from './VChart';\nexport * from './VChartSimple';\nexport * from './register';\nexport { VChart as VChartCore } from '@visactor/vchart';\n\n// export the version, since @1.8.3\nexport const version = \"2.0.
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,OAAO,EAAE,MAAM,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAGxD,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC","file":"index.js","sourcesContent":["export * from './charts';\nexport * from './series';\nexport * from './components';\nexport * from './VChart';\nexport * from './VChartSimple';\nexport * from './register';\nexport { VChart as VChartCore } from '@visactor/vchart';\n\n// export the version, since @1.8.3\nexport const version = \"2.0.2\";\n\nexport type {\n IAreaChartSpec,\n IBarChartSpec,\n IBoxPlotChartSpec,\n ICirclePackingChartSpec,\n ICommonChartSpec,\n IFunnelChartSpec,\n IGaugeChartSpec,\n IHeatmapChartSpec,\n IHistogramChartSpec,\n ILineChartSpec,\n IMapChartSpec,\n IPieChartSpec,\n ICircularProgressChartSpec,\n ILinearProgressChartSpec,\n IRadarChartSpec,\n IRangeColumnChartSpec,\n IRangeAreaChartSpec,\n IRoseChartSpec,\n IScatterChartSpec,\n ISankeyChartSpec,\n ISequenceChartSpec,\n ISunburstChartSpec,\n ITreemapChartSpec,\n IWaterfallChartSpec,\n ICorrelationChartSpec,\n ILiquidChartSpec,\n IWordCloudChartSpec,\n IPolarChartSpec,\n ICartesianChartSpec,\n ITheme,\n IInitOption,\n ISpec,\n IVChart\n} from '@visactor/vchart';\n\nexport type {\n IBar3dChartSpec,\n IFunnel3dChartSpec,\n IHistogram3dChartSpec,\n IPie3dChartSpec,\n IRangeColumn3dChartSpec,\n IWordCloud3dChartSpec\n} from '@visactor/vchart-extension';\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/react-vchart",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"description": "The react version of VChart 4.x",
|
|
6
6
|
"keywords": [
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"dist"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@visactor/vchart": "2.0.
|
|
27
|
-
"@visactor/vchart-extension": "2.0.
|
|
26
|
+
"@visactor/vchart": "2.0.2",
|
|
27
|
+
"@visactor/vchart-extension": "2.0.2",
|
|
28
28
|
"@visactor/vutils": "~1.0.6",
|
|
29
|
-
"@visactor/vrender-core": "1.0.
|
|
30
|
-
"@visactor/vrender-kits": "1.0.
|
|
29
|
+
"@visactor/vrender-core": "1.0.9",
|
|
30
|
+
"@visactor/vrender-kits": "1.0.9",
|
|
31
31
|
"react-is": "^18.2.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"@vitejs/plugin-react": "3.1.0",
|
|
56
56
|
"vite": "3.2.6",
|
|
57
57
|
"@internal/bundler": "0.0.1",
|
|
58
|
-
"@internal/
|
|
59
|
-
"@internal/
|
|
58
|
+
"@internal/eslint-config": "0.0.1",
|
|
59
|
+
"@internal/ts-config": "0.0.1"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
62
|
"react": ">=16.0.0",
|