@visactor/vchart-extension 2.0.0-alpha.3 → 2.0.0-alpha.4
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/build/index.js +269 -565
- package/build/index.min.js +2 -2
- package/cjs/charts/axis-3d/axis-3d-mixin.d.ts +13 -0
- package/cjs/charts/axis-3d/axis-3d-mixin.js +19 -0
- package/cjs/charts/axis-3d/axis-3d-mixin.js.map +1 -0
- package/cjs/charts/axis-3d/band-axis.d.ts +0 -45
- package/cjs/charts/axis-3d/band-axis.js +7 -18
- package/cjs/charts/axis-3d/band-axis.js.map +1 -1
- package/cjs/charts/axis-3d/linear-axis.d.ts +0 -41
- package/cjs/charts/axis-3d/linear-axis.js +9 -26
- package/cjs/charts/axis-3d/linear-axis.js.map +1 -1
- package/cjs/charts/axis-3d/log-axis.d.ts +0 -45
- package/cjs/charts/axis-3d/log-axis.js +9 -19
- package/cjs/charts/axis-3d/log-axis.js.map +1 -1
- package/cjs/charts/axis-3d/symlog-axis.d.ts +0 -45
- package/cjs/charts/axis-3d/symlog-axis.js +7 -18
- package/cjs/charts/axis-3d/symlog-axis.js.map +1 -1
- package/cjs/charts/axis-3d/time-axis.d.ts +0 -44
- package/cjs/charts/axis-3d/time-axis.js +7 -18
- package/cjs/charts/axis-3d/time-axis.js.map +1 -1
- package/cjs/charts/conversion-funnel/constants.js +1 -2
- package/cjs/charts/conversion-funnel/conversion-funnel-transformer.js +1 -0
- package/cjs/charts/image-cloud/image-cloud-transformer.js +1 -2
- package/cjs/charts/image-cloud/image-cloud.js +2 -1
- package/cjs/charts/pictogram/pictogram-transformer.js +1 -1
- package/cjs/charts/word-cloud-3d/animation.js +1 -1
- package/cjs/charts/word-cloud-3d/animation.js.map +1 -1
- package/esm/charts/axis-3d/axis-3d-mixin.d.ts +13 -0
- package/esm/charts/axis-3d/axis-3d-mixin.js +13 -0
- package/esm/charts/axis-3d/axis-3d-mixin.js.map +1 -0
- package/esm/charts/axis-3d/band-axis.d.ts +0 -45
- package/esm/charts/axis-3d/band-axis.js +8 -17
- package/esm/charts/axis-3d/band-axis.js.map +1 -1
- package/esm/charts/axis-3d/linear-axis.d.ts +0 -41
- package/esm/charts/axis-3d/linear-axis.js +9 -24
- package/esm/charts/axis-3d/linear-axis.js.map +1 -1
- package/esm/charts/axis-3d/log-axis.d.ts +0 -45
- package/esm/charts/axis-3d/log-axis.js +10 -18
- package/esm/charts/axis-3d/log-axis.js.map +1 -1
- package/esm/charts/axis-3d/symlog-axis.d.ts +0 -45
- package/esm/charts/axis-3d/symlog-axis.js +8 -17
- package/esm/charts/axis-3d/symlog-axis.js.map +1 -1
- package/esm/charts/axis-3d/time-axis.d.ts +0 -44
- package/esm/charts/axis-3d/time-axis.js +8 -17
- package/esm/charts/axis-3d/time-axis.js.map +1 -1
- package/esm/charts/conversion-funnel/constants.js +1 -2
- package/esm/charts/conversion-funnel/conversion-funnel-transformer.js +2 -1
- package/esm/charts/image-cloud/image-cloud-transformer.js +1 -2
- package/esm/charts/image-cloud/image-cloud.js +2 -1
- package/esm/charts/pictogram/pictogram-transformer.js +1 -1
- package/esm/charts/word-cloud-3d/animation.js +1 -1
- package/esm/charts/word-cloud-3d/animation.js.map +1 -1
- package/package.json +8 -8
|
@@ -1,46 +1 @@
|
|
|
1
|
-
import type { ICartesianBandAxisSpec } from '@visactor/vchart';
|
|
2
|
-
import { BandAxisMixin, CartesianBandAxis } from '@visactor/vchart';
|
|
3
|
-
export interface CartesianBandAxis3d<T extends ICartesianBandAxisSpec = ICartesianBandAxisSpec> extends Pick<BandAxisMixin, 'valueToPosition' | 'updateGroupScaleRange' | 'getPosition' | 'calcScales' | 'computeBandDomain'>, CartesianBandAxis<T> {
|
|
4
|
-
}
|
|
5
|
-
export declare class CartesianBandAxis3d<T extends ICartesianBandAxisSpec = ICartesianBandAxisSpec> extends CartesianBandAxis<T> {
|
|
6
|
-
static readonly builtInTheme: {
|
|
7
|
-
axisZ: {
|
|
8
|
-
grid?: import("@visactor/vchart/esm/component/axis").IGrid;
|
|
9
|
-
subGrid?: import("@visactor/vchart/esm/component/axis").IGrid;
|
|
10
|
-
domainLine?: import("@visactor/vchart/esm/component/axis").ICartesianDomainLine;
|
|
11
|
-
label?: import("@visactor/vchart/esm/component/axis").ICartesianLabel;
|
|
12
|
-
title?: import("@visactor/vchart/esm/component/axis").ICartesianTitle;
|
|
13
|
-
tick?: import("@visactor/vchart/esm/component/axis").ITick;
|
|
14
|
-
subTick?: import("@visactor/vchart/esm/component/axis").ITick;
|
|
15
|
-
background?: {
|
|
16
|
-
visible: boolean;
|
|
17
|
-
style?: Partial<import("@visactor/vchart").IRectMarkSpec>;
|
|
18
|
-
state?: import("@visactor/vrender-components").AxisItemStateStyle<Partial<import("@visactor/vchart").IRectMarkSpec>>;
|
|
19
|
-
};
|
|
20
|
-
padding?: import("@visactor/vchart").ILayoutPaddingSpec;
|
|
21
|
-
width?: import("@visactor/vchart").ILayoutNumber;
|
|
22
|
-
maxWidth?: import("@visactor/vchart").ILayoutNumber;
|
|
23
|
-
minWidth?: import("@visactor/vchart").ILayoutNumber;
|
|
24
|
-
height?: import("@visactor/vchart").ILayoutNumber;
|
|
25
|
-
maxHeight?: import("@visactor/vchart").ILayoutNumber;
|
|
26
|
-
minHeight?: import("@visactor/vchart").ILayoutNumber;
|
|
27
|
-
unit?: import("@visactor/vchart/esm/component/axis").ICartesianAxisUnit;
|
|
28
|
-
};
|
|
29
|
-
axis: import("@visactor/vchart").IAxisCommonTheme;
|
|
30
|
-
axisBand: import("@visactor/vchart").IBandAxisTheme;
|
|
31
|
-
axisX: import("@visactor/vchart").ICartesianAxisCommonTheme;
|
|
32
|
-
axisY: import("@visactor/vchart").ICartesianAxisCommonTheme;
|
|
33
|
-
};
|
|
34
|
-
layout3dBox?: {
|
|
35
|
-
width: number;
|
|
36
|
-
height: number;
|
|
37
|
-
length: number;
|
|
38
|
-
};
|
|
39
|
-
setLayout3dBox(box3d: {
|
|
40
|
-
width: number;
|
|
41
|
-
height: number;
|
|
42
|
-
length: number;
|
|
43
|
-
}): void;
|
|
44
|
-
protected _getUpdateAttribute(ignoreGrid: boolean): any;
|
|
45
|
-
}
|
|
46
1
|
export declare const registerCartesianBandAxis3d: () => void;
|
|
@@ -1,25 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
import { mixin } from "@visactor/vutils";
|
|
4
|
-
|
|
5
|
-
import { getUpdateAttributeOfZAxis } from "./util";
|
|
1
|
+
import { CartesianBandAxis, Factory, registerCartesianBandAxis } from "@visactor/vchart";
|
|
6
2
|
|
|
7
3
|
import { axisZ } from "./theme";
|
|
8
4
|
|
|
9
|
-
|
|
10
|
-
setLayout3dBox(box3d) {
|
|
11
|
-
this.layout3dBox = box3d;
|
|
12
|
-
}
|
|
13
|
-
_getUpdateAttribute(ignoreGrid) {
|
|
14
|
-
return isZAxis(this._orient) ? getUpdateAttributeOfZAxis(this, ignoreGrid) : super._getUpdateAttribute(ignoreGrid);
|
|
15
|
-
}
|
|
16
|
-
}
|
|
5
|
+
import { mixin } from "@visactor/vutils";
|
|
17
6
|
|
|
18
|
-
|
|
19
|
-
axisZ: Object.assign(Object.assign({}, CartesianBandAxis.builtInTheme.axisX), axisZ)
|
|
20
|
-
}), mixin(CartesianBandAxis3d, BandAxisMixin);
|
|
7
|
+
import { Axis3dMixin } from "./axis-3d-mixin";
|
|
21
8
|
|
|
22
9
|
export const registerCartesianBandAxis3d = () => {
|
|
23
|
-
|
|
10
|
+
registerCartesianBandAxis();
|
|
11
|
+
const AxisCls = Factory.getComponentInKey(CartesianBandAxis.type);
|
|
12
|
+
AxisCls.builtInTheme = Object.assign(Object.assign({}, AxisCls.builtInTheme), {
|
|
13
|
+
axisZ: Object.assign(Object.assign({}, CartesianBandAxis.builtInTheme.axisX), axisZ)
|
|
14
|
+
}), mixin(AxisCls, Axis3dMixin);
|
|
24
15
|
};
|
|
25
16
|
//# sourceMappingURL=band-axis.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/charts/axis-3d/band-axis.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/charts/axis-3d/band-axis.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,OAAO,EAAE,yBAAyB,EAAE,MAAM,kBAAkB,CAAC;AACzF,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C,MAAM,CAAC,MAAM,2BAA2B,GAAG,GAAG,EAAE;IAC9C,yBAAyB,EAAE,CAAC;IAC5B,MAAM,OAAO,GAAG,OAAO,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;IAEjE,OAAe,CAAC,YAAY,mCACxB,OAAO,CAAC,YAAY,KACvB,KAAK,kCACA,iBAAiB,CAAC,YAAY,CAAC,KAAK,GACpC,KAAK,IAEX,CAAC;IAEF,KAAK,CAAC,OAAO,EAAE,WAAW,CAAC,CAAC;AAC9B,CAAC,CAAC","file":"band-axis.js","sourcesContent":["import { CartesianBandAxis, Factory, registerCartesianBandAxis } from '@visactor/vchart';\nimport { axisZ } from './theme';\nimport { mixin } from '@visactor/vutils';\nimport { Axis3dMixin } from './axis-3d-mixin';\n\nexport const registerCartesianBandAxis3d = () => {\n registerCartesianBandAxis();\n const AxisCls = Factory.getComponentInKey(CartesianBandAxis.type);\n\n (AxisCls as any).builtInTheme = {\n ...AxisCls.builtInTheme,\n axisZ: {\n ...CartesianBandAxis.builtInTheme.axisX,\n ...axisZ\n }\n };\n\n mixin(AxisCls, Axis3dMixin);\n};\n"]}
|
|
@@ -1,42 +1 @@
|
|
|
1
|
-
import type { ICartesianLinearAxisSpec } from '@visactor/vchart';
|
|
2
|
-
import { LinearAxisMixin, CartesianLinearAxis } from '@visactor/vchart';
|
|
3
|
-
export interface CartesianLinearAxis3d<T extends ICartesianLinearAxisSpec = ICartesianLinearAxisSpec> extends Pick<LinearAxisMixin, 'setExtraAttrFromSpec' | 'computeLinearDomain' | 'valueToPosition' | 'setScaleNice' | '_domain' | 'transformScaleDomain' | 'setExtendDomain' | '_break'>, CartesianLinearAxis<T> {
|
|
4
|
-
}
|
|
5
|
-
export declare class CartesianLinearAxis3d<T extends ICartesianLinearAxisSpec = ICartesianLinearAxisSpec> extends CartesianLinearAxis<T> {
|
|
6
|
-
static readonly builtInTheme: {
|
|
7
|
-
axisZ: {
|
|
8
|
-
grid?: import("@visactor/vchart/esm/component/axis").IGrid;
|
|
9
|
-
subGrid?: import("@visactor/vchart/esm/component/axis").IGrid;
|
|
10
|
-
domainLine?: import("@visactor/vchart/esm/component/axis").ICartesianDomainLine;
|
|
11
|
-
label?: import("@visactor/vchart/esm/component/axis").ICartesianLabel;
|
|
12
|
-
title?: import("@visactor/vchart/esm/component/axis").ICartesianTitle;
|
|
13
|
-
tick?: import("@visactor/vchart/esm/component/axis").ITick;
|
|
14
|
-
subTick?: import("@visactor/vchart/esm/component/axis").ITick;
|
|
15
|
-
background?: {
|
|
16
|
-
visible: boolean;
|
|
17
|
-
style?: Partial<import("@visactor/vchart").IRectMarkSpec>;
|
|
18
|
-
state?: import("@visactor/vrender-components").AxisItemStateStyle<Partial<import("@visactor/vchart").IRectMarkSpec>>;
|
|
19
|
-
};
|
|
20
|
-
padding?: import("@visactor/vchart").ILayoutPaddingSpec;
|
|
21
|
-
width?: import("@visactor/vchart").ILayoutNumber;
|
|
22
|
-
maxWidth?: import("@visactor/vchart").ILayoutNumber;
|
|
23
|
-
minWidth?: import("@visactor/vchart").ILayoutNumber;
|
|
24
|
-
height?: import("@visactor/vchart").ILayoutNumber;
|
|
25
|
-
maxHeight?: import("@visactor/vchart").ILayoutNumber;
|
|
26
|
-
minHeight?: import("@visactor/vchart").ILayoutNumber;
|
|
27
|
-
unit?: import("@visactor/vchart/esm/component/axis").ICartesianAxisUnit;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
30
|
-
layout3dBox?: {
|
|
31
|
-
width: number;
|
|
32
|
-
height: number;
|
|
33
|
-
length: number;
|
|
34
|
-
};
|
|
35
|
-
setLayout3dBox(box3d: {
|
|
36
|
-
width: number;
|
|
37
|
-
height: number;
|
|
38
|
-
length: number;
|
|
39
|
-
}): void;
|
|
40
|
-
protected _getUpdateAttribute(ignoreGrid: boolean): any;
|
|
41
|
-
}
|
|
42
1
|
export declare const registerCartesianLinearAxis3d: () => void;
|
|
@@ -1,30 +1,15 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
import { mixin } from "@visactor/vutils";
|
|
4
|
-
|
|
5
|
-
import { getUpdateAttributeOfZAxis } from "./util";
|
|
1
|
+
import { CartesianLinearAxis, Factory, registerCartesianLinearAxis } from "@visactor/vchart";
|
|
6
2
|
|
|
7
3
|
import { axisZ } from "./theme";
|
|
8
4
|
|
|
9
|
-
|
|
10
|
-
setLayout3dBox(box3d) {
|
|
11
|
-
this.layout3dBox = box3d;
|
|
12
|
-
}
|
|
13
|
-
_getUpdateAttribute(ignoreGrid) {
|
|
14
|
-
if (!isZAxis(this._orient)) {
|
|
15
|
-
const attrs = super._getUpdateAttribute(ignoreGrid);
|
|
16
|
-
return ignoreGrid || (attrs.grid.depth = this.layout3dBox ? this.layout3dBox.length : 0),
|
|
17
|
-
attrs;
|
|
18
|
-
}
|
|
19
|
-
return getUpdateAttributeOfZAxis(this, ignoreGrid);
|
|
20
|
-
}
|
|
21
|
-
}
|
|
5
|
+
import { mixin } from "@visactor/vutils";
|
|
22
6
|
|
|
23
|
-
|
|
24
|
-
axisZ: Object.assign(Object.assign({}, CartesianLinearAxis.builtInTheme.axisX), axisZ)
|
|
25
|
-
}), mixin(CartesianLinearAxis3d, LinearAxisMixin);
|
|
7
|
+
import { Axis3dMixin } from "./axis-3d-mixin";
|
|
26
8
|
|
|
27
9
|
export const registerCartesianLinearAxis3d = () => {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
10
|
+
registerCartesianLinearAxis();
|
|
11
|
+
const AxisCls = Factory.getComponentInKey(CartesianLinearAxis.type);
|
|
12
|
+
AxisCls.builtInTheme = Object.assign(Object.assign({}, AxisCls.builtInTheme), {
|
|
13
|
+
axisZ: Object.assign(Object.assign({}, CartesianLinearAxis.builtInTheme.axisX), axisZ)
|
|
14
|
+
}), mixin(AxisCls, Axis3dMixin);
|
|
15
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/charts/axis-3d/linear-axis.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/charts/axis-3d/linear-axis.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,OAAO,EAAE,2BAA2B,EAAE,MAAM,kBAAkB,CAAC;AAC7F,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C,MAAM,CAAC,MAAM,6BAA6B,GAAG,GAAG,EAAE;IAChD,2BAA2B,EAAE,CAAC;IAC9B,MAAM,OAAO,GAAG,OAAO,CAAC,iBAAiB,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;IAEnE,OAAe,CAAC,YAAY,mCACxB,OAAO,CAAC,YAAY,KACvB,KAAK,kCACA,mBAAmB,CAAC,YAAY,CAAC,KAAK,GACtC,KAAK,IAEX,CAAC;IAEF,KAAK,CAAC,OAAO,EAAE,WAAW,CAAC,CAAC;AAC9B,CAAC,CAAC","file":"linear-axis.js","sourcesContent":["import { CartesianLinearAxis, Factory, registerCartesianLinearAxis } from '@visactor/vchart';\nimport { axisZ } from './theme';\nimport { mixin } from '@visactor/vutils';\nimport { Axis3dMixin } from './axis-3d-mixin';\n\nexport const registerCartesianLinearAxis3d = () => {\n registerCartesianLinearAxis();\n const AxisCls = Factory.getComponentInKey(CartesianLinearAxis.type);\n\n (AxisCls as any).builtInTheme = {\n ...AxisCls.builtInTheme,\n axisZ: {\n ...CartesianLinearAxis.builtInTheme.axisX,\n ...axisZ\n }\n };\n\n mixin(AxisCls, Axis3dMixin);\n};\n"]}
|
|
@@ -1,46 +1 @@
|
|
|
1
|
-
import type { ICartesianLogAxisSpec } from '@visactor/vchart';
|
|
2
|
-
import { LinearAxisMixin, CartesianLogAxis } from '@visactor/vchart';
|
|
3
|
-
export interface CartesianLogAxis3d<T extends ICartesianLogAxisSpec = ICartesianLogAxisSpec> extends Pick<LinearAxisMixin, 'valueToPosition'>, CartesianLogAxis<T> {
|
|
4
|
-
}
|
|
5
|
-
export declare class CartesianLogAxis3d<T extends ICartesianLogAxisSpec = ICartesianLogAxisSpec> extends CartesianLogAxis<T> {
|
|
6
|
-
static readonly builtInTheme: {
|
|
7
|
-
axisZ: {
|
|
8
|
-
grid?: import("@visactor/vchart/esm/component/axis").IGrid;
|
|
9
|
-
subGrid?: import("@visactor/vchart/esm/component/axis").IGrid;
|
|
10
|
-
domainLine?: import("@visactor/vchart/esm/component/axis").ICartesianDomainLine;
|
|
11
|
-
label?: import("@visactor/vchart/esm/component/axis").ICartesianLabel;
|
|
12
|
-
title?: import("@visactor/vchart/esm/component/axis").ICartesianTitle;
|
|
13
|
-
tick?: import("@visactor/vchart/esm/component/axis").ITick;
|
|
14
|
-
subTick?: import("@visactor/vchart/esm/component/axis").ITick;
|
|
15
|
-
background?: {
|
|
16
|
-
visible: boolean;
|
|
17
|
-
style?: Partial<import("@visactor/vchart").IRectMarkSpec>;
|
|
18
|
-
state?: import("@visactor/vrender-components").AxisItemStateStyle<Partial<import("@visactor/vchart").IRectMarkSpec>>;
|
|
19
|
-
};
|
|
20
|
-
padding?: import("@visactor/vchart").ILayoutPaddingSpec;
|
|
21
|
-
width?: import("@visactor/vchart").ILayoutNumber;
|
|
22
|
-
maxWidth?: import("@visactor/vchart").ILayoutNumber;
|
|
23
|
-
minWidth?: import("@visactor/vchart").ILayoutNumber;
|
|
24
|
-
height?: import("@visactor/vchart").ILayoutNumber;
|
|
25
|
-
maxHeight?: import("@visactor/vchart").ILayoutNumber;
|
|
26
|
-
minHeight?: import("@visactor/vchart").ILayoutNumber;
|
|
27
|
-
unit?: import("@visactor/vchart/esm/component/axis").ICartesianAxisUnit;
|
|
28
|
-
};
|
|
29
|
-
axis: import("@visactor/vchart").IAxisCommonTheme;
|
|
30
|
-
axisLinear: import("@visactor/vchart").IAxisCommonTheme;
|
|
31
|
-
axisX: import("@visactor/vchart").ICartesianAxisCommonTheme;
|
|
32
|
-
axisY: import("@visactor/vchart").ICartesianAxisCommonTheme;
|
|
33
|
-
};
|
|
34
|
-
layout3dBox?: {
|
|
35
|
-
width: number;
|
|
36
|
-
height: number;
|
|
37
|
-
length: number;
|
|
38
|
-
};
|
|
39
|
-
setLayout3dBox(box3d: {
|
|
40
|
-
width: number;
|
|
41
|
-
height: number;
|
|
42
|
-
length: number;
|
|
43
|
-
}): void;
|
|
44
|
-
protected _getUpdateAttribute(ignoreGrid: boolean): any;
|
|
45
|
-
}
|
|
46
1
|
export declare const registerCartesianLogAxis3d: () => void;
|
|
@@ -1,24 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
import { mixin } from "@visactor/vutils";
|
|
4
|
-
|
|
5
|
-
import { getUpdateAttributeOfZAxis } from "./util";
|
|
1
|
+
import { CartesianLogAxis, Factory, registerCartesianLogAxis } from "@visactor/vchart";
|
|
6
2
|
|
|
7
3
|
import { axisZ } from "./theme";
|
|
8
4
|
|
|
9
|
-
|
|
10
|
-
setLayout3dBox(box3d) {
|
|
11
|
-
this.layout3dBox = box3d;
|
|
12
|
-
}
|
|
13
|
-
_getUpdateAttribute(ignoreGrid) {
|
|
14
|
-
return isZAxis(this._orient) ? getUpdateAttributeOfZAxis(this, ignoreGrid) : super._getUpdateAttribute(ignoreGrid);
|
|
15
|
-
}
|
|
16
|
-
}
|
|
5
|
+
import { mixin } from "@visactor/vutils";
|
|
17
6
|
|
|
18
|
-
|
|
19
|
-
axisZ: Object.assign(Object.assign({}, CartesianLogAxis.builtInTheme.axisX), axisZ)
|
|
20
|
-
}), mixin(CartesianLogAxis3d, LinearAxisMixin);
|
|
7
|
+
import { Axis3dMixin } from "./axis-3d-mixin";
|
|
21
8
|
|
|
22
9
|
export const registerCartesianLogAxis3d = () => {
|
|
23
|
-
|
|
24
|
-
|
|
10
|
+
registerCartesianLogAxis();
|
|
11
|
+
const AxisCls = Factory.getComponentInKey(CartesianLogAxis.type);
|
|
12
|
+
AxisCls.builtInTheme = Object.assign(Object.assign({}, AxisCls.builtInTheme), {
|
|
13
|
+
axisZ: Object.assign(Object.assign({}, CartesianLogAxis.builtInTheme.axisX), axisZ)
|
|
14
|
+
}), mixin(AxisCls, Axis3dMixin);
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=log-axis.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/charts/axis-3d/log-axis.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/charts/axis-3d/log-axis.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,OAAO,EAAE,wBAAwB,EAAE,MAAM,kBAAkB,CAAC;AACvF,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C,MAAM,CAAC,MAAM,0BAA0B,GAAG,GAAG,EAAE;IAC7C,wBAAwB,EAAE,CAAC;IAC3B,MAAM,OAAO,GAAG,OAAO,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC;IAEhE,OAAe,CAAC,YAAY,mCACxB,OAAO,CAAC,YAAY,KACvB,KAAK,kCACA,gBAAgB,CAAC,YAAY,CAAC,KAAK,GACnC,KAAK,IAEX,CAAC;IAEF,KAAK,CAAC,OAAO,EAAE,WAAW,CAAC,CAAC;AAC9B,CAAC,CAAC","file":"log-axis.js","sourcesContent":["import { CartesianLogAxis, Factory, registerCartesianLogAxis } from '@visactor/vchart';\nimport { axisZ } from './theme';\nimport { mixin } from '@visactor/vutils';\nimport { Axis3dMixin } from './axis-3d-mixin';\n\nexport const registerCartesianLogAxis3d = () => {\n registerCartesianLogAxis();\n const AxisCls = Factory.getComponentInKey(CartesianLogAxis.type);\n\n (AxisCls as any).builtInTheme = {\n ...AxisCls.builtInTheme,\n axisZ: {\n ...CartesianLogAxis.builtInTheme.axisX,\n ...axisZ\n }\n };\n\n mixin(AxisCls, Axis3dMixin);\n};\n"]}
|
|
@@ -1,46 +1 @@
|
|
|
1
|
-
import type { ICartesianSymlogAxisSpec } from '@visactor/vchart';
|
|
2
|
-
import { LinearAxisMixin, CartesianSymlogAxis } from '@visactor/vchart';
|
|
3
|
-
export interface CartesianSymlogAxis3d<T extends ICartesianSymlogAxisSpec = ICartesianSymlogAxisSpec> extends Pick<LinearAxisMixin, 'valueToPosition'>, CartesianSymlogAxis<T> {
|
|
4
|
-
}
|
|
5
|
-
export declare class CartesianSymlogAxis3d<T extends ICartesianSymlogAxisSpec = ICartesianSymlogAxisSpec> extends CartesianSymlogAxis<T> {
|
|
6
|
-
static readonly builtInTheme: {
|
|
7
|
-
axisZ: {
|
|
8
|
-
grid?: import("@visactor/vchart/esm/component/axis").IGrid;
|
|
9
|
-
subGrid?: import("@visactor/vchart/esm/component/axis").IGrid;
|
|
10
|
-
domainLine?: import("@visactor/vchart/esm/component/axis").ICartesianDomainLine;
|
|
11
|
-
label?: import("@visactor/vchart/esm/component/axis").ICartesianLabel;
|
|
12
|
-
title?: import("@visactor/vchart/esm/component/axis").ICartesianTitle;
|
|
13
|
-
tick?: import("@visactor/vchart/esm/component/axis").ITick;
|
|
14
|
-
subTick?: import("@visactor/vchart/esm/component/axis").ITick;
|
|
15
|
-
background?: {
|
|
16
|
-
visible: boolean;
|
|
17
|
-
style?: Partial<import("@visactor/vchart").IRectMarkSpec>;
|
|
18
|
-
state?: import("@visactor/vrender-components").AxisItemStateStyle<Partial<import("@visactor/vchart").IRectMarkSpec>>;
|
|
19
|
-
};
|
|
20
|
-
padding?: import("@visactor/vchart").ILayoutPaddingSpec;
|
|
21
|
-
width?: import("@visactor/vchart").ILayoutNumber;
|
|
22
|
-
maxWidth?: import("@visactor/vchart").ILayoutNumber;
|
|
23
|
-
minWidth?: import("@visactor/vchart").ILayoutNumber;
|
|
24
|
-
height?: import("@visactor/vchart").ILayoutNumber;
|
|
25
|
-
maxHeight?: import("@visactor/vchart").ILayoutNumber;
|
|
26
|
-
minHeight?: import("@visactor/vchart").ILayoutNumber;
|
|
27
|
-
unit?: import("@visactor/vchart/esm/component/axis").ICartesianAxisUnit;
|
|
28
|
-
};
|
|
29
|
-
axis: import("@visactor/vchart").IAxisCommonTheme;
|
|
30
|
-
axisLinear: import("@visactor/vchart").IAxisCommonTheme;
|
|
31
|
-
axisX: import("@visactor/vchart").ICartesianAxisCommonTheme;
|
|
32
|
-
axisY: import("@visactor/vchart").ICartesianAxisCommonTheme;
|
|
33
|
-
};
|
|
34
|
-
layout3dBox?: {
|
|
35
|
-
width: number;
|
|
36
|
-
height: number;
|
|
37
|
-
length: number;
|
|
38
|
-
};
|
|
39
|
-
setLayout3dBox(box3d: {
|
|
40
|
-
width: number;
|
|
41
|
-
height: number;
|
|
42
|
-
length: number;
|
|
43
|
-
}): void;
|
|
44
|
-
protected _getUpdateAttribute(ignoreGrid: boolean): any;
|
|
45
|
-
}
|
|
46
1
|
export declare const registerCartesianSymlogAxis3d: () => void;
|
|
@@ -1,25 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
import { mixin } from "@visactor/vutils";
|
|
4
|
-
|
|
5
|
-
import { getUpdateAttributeOfZAxis } from "./util";
|
|
1
|
+
import { CartesianSymlogAxis, Factory, registerCartesianLogAxis } from "@visactor/vchart";
|
|
6
2
|
|
|
7
3
|
import { axisZ } from "./theme";
|
|
8
4
|
|
|
9
|
-
|
|
10
|
-
setLayout3dBox(box3d) {
|
|
11
|
-
this.layout3dBox = box3d;
|
|
12
|
-
}
|
|
13
|
-
_getUpdateAttribute(ignoreGrid) {
|
|
14
|
-
return isZAxis(this._orient) ? getUpdateAttributeOfZAxis(this, ignoreGrid) : super._getUpdateAttribute(ignoreGrid);
|
|
15
|
-
}
|
|
16
|
-
}
|
|
5
|
+
import { mixin } from "@visactor/vutils";
|
|
17
6
|
|
|
18
|
-
|
|
19
|
-
axisZ: Object.assign(Object.assign({}, CartesianSymlogAxis.builtInTheme.axisX), axisZ)
|
|
20
|
-
}), mixin(CartesianSymlogAxis3d, LinearAxisMixin);
|
|
7
|
+
import { Axis3dMixin } from "./axis-3d-mixin";
|
|
21
8
|
|
|
22
9
|
export const registerCartesianSymlogAxis3d = () => {
|
|
23
|
-
|
|
10
|
+
registerCartesianLogAxis();
|
|
11
|
+
const AxisCls = Factory.getComponentInKey(CartesianSymlogAxis.type);
|
|
12
|
+
AxisCls.builtInTheme = Object.assign(Object.assign({}, AxisCls.builtInTheme), {
|
|
13
|
+
axisZ: Object.assign(Object.assign({}, AxisCls.builtInTheme.axisX), axisZ)
|
|
14
|
+
}), mixin(AxisCls, Axis3dMixin);
|
|
24
15
|
};
|
|
25
16
|
//# sourceMappingURL=symlog-axis.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/charts/axis-3d/symlog-axis.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/charts/axis-3d/symlog-axis.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,OAAO,EAAE,wBAAwB,EAAE,MAAM,kBAAkB,CAAC;AAC1F,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C,MAAM,CAAC,MAAM,6BAA6B,GAAG,GAAG,EAAE;IAChD,wBAAwB,EAAE,CAAC;IAC3B,MAAM,OAAO,GAAG,OAAO,CAAC,iBAAiB,CAAC,mBAAmB,CAAC,IAAI,CAAC,CAAC;IAEnE,OAAe,CAAC,YAAY,mCACxB,OAAO,CAAC,YAAY,KACvB,KAAK,kCACA,OAAO,CAAC,YAAY,CAAC,KAAK,GAC1B,KAAK,IAEX,CAAC;IAEF,KAAK,CAAC,OAAO,EAAE,WAAW,CAAC,CAAC;AAC9B,CAAC,CAAC","file":"symlog-axis.js","sourcesContent":["import { CartesianSymlogAxis, Factory, registerCartesianLogAxis } from '@visactor/vchart';\nimport { axisZ } from './theme';\nimport { mixin } from '@visactor/vutils';\nimport { Axis3dMixin } from './axis-3d-mixin';\n\nexport const registerCartesianSymlogAxis3d = () => {\n registerCartesianLogAxis();\n const AxisCls = Factory.getComponentInKey(CartesianSymlogAxis.type);\n\n (AxisCls as any).builtInTheme = {\n ...AxisCls.builtInTheme,\n axisZ: {\n ...AxisCls.builtInTheme.axisX,\n ...axisZ\n }\n };\n\n mixin(AxisCls, Axis3dMixin);\n};\n"]}
|
|
@@ -1,45 +1 @@
|
|
|
1
|
-
import type { ICartesianTimeAxisSpec } from '@visactor/vchart';
|
|
2
|
-
import { LinearAxisMixin, CartesianTimeAxis } from '@visactor/vchart';
|
|
3
|
-
export interface CartesianTimeAxis3d<T extends ICartesianTimeAxisSpec = ICartesianTimeAxisSpec> extends Pick<LinearAxisMixin, 'valueToPosition'>, CartesianTimeAxis<T> {
|
|
4
|
-
}
|
|
5
|
-
export declare class CartesianTimeAxis3d<T extends ICartesianTimeAxisSpec = ICartesianTimeAxisSpec> extends CartesianTimeAxis<T> {
|
|
6
|
-
static readonly builtInTheme: {
|
|
7
|
-
axisZ: {
|
|
8
|
-
grid?: import("@visactor/vchart/esm/component/axis").IGrid;
|
|
9
|
-
subGrid?: import("@visactor/vchart/esm/component/axis").IGrid;
|
|
10
|
-
domainLine?: import("@visactor/vchart/esm/component/axis").ICartesianDomainLine;
|
|
11
|
-
label?: import("@visactor/vchart/esm/component/axis").ICartesianLabel;
|
|
12
|
-
title?: import("@visactor/vchart/esm/component/axis").ICartesianTitle;
|
|
13
|
-
tick?: import("@visactor/vchart/esm/component/axis").ITick;
|
|
14
|
-
subTick?: import("@visactor/vchart/esm/component/axis").ITick;
|
|
15
|
-
background?: {
|
|
16
|
-
visible: boolean;
|
|
17
|
-
style?: Partial<import("@visactor/vchart").IRectMarkSpec>;
|
|
18
|
-
state?: import("@visactor/vrender-components").AxisItemStateStyle<Partial<import("@visactor/vchart").IRectMarkSpec>>;
|
|
19
|
-
};
|
|
20
|
-
padding?: import("@visactor/vchart").ILayoutPaddingSpec;
|
|
21
|
-
width?: import("@visactor/vchart").ILayoutNumber;
|
|
22
|
-
maxWidth?: import("@visactor/vchart").ILayoutNumber;
|
|
23
|
-
minWidth?: import("@visactor/vchart").ILayoutNumber;
|
|
24
|
-
height?: import("@visactor/vchart").ILayoutNumber;
|
|
25
|
-
maxHeight?: import("@visactor/vchart").ILayoutNumber;
|
|
26
|
-
minHeight?: import("@visactor/vchart").ILayoutNumber;
|
|
27
|
-
unit?: import("@visactor/vchart/esm/component/axis").ICartesianAxisUnit;
|
|
28
|
-
};
|
|
29
|
-
axis: import("@visactor/vchart").IAxisCommonTheme;
|
|
30
|
-
axisX: import("@visactor/vchart").ICartesianAxisCommonTheme;
|
|
31
|
-
axisY: import("@visactor/vchart").ICartesianAxisCommonTheme;
|
|
32
|
-
};
|
|
33
|
-
layout3dBox?: {
|
|
34
|
-
width: number;
|
|
35
|
-
height: number;
|
|
36
|
-
length: number;
|
|
37
|
-
};
|
|
38
|
-
setLayout3dBox(box3d: {
|
|
39
|
-
width: number;
|
|
40
|
-
height: number;
|
|
41
|
-
length: number;
|
|
42
|
-
}): void;
|
|
43
|
-
protected _getUpdateAttribute(ignoreGrid: boolean): any;
|
|
44
|
-
}
|
|
45
1
|
export declare const registerCartesianTimeAxis3d: () => void;
|
|
@@ -1,25 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
import { mixin } from "@visactor/vutils";
|
|
4
|
-
|
|
5
|
-
import { getUpdateAttributeOfZAxis } from "./util";
|
|
1
|
+
import { CartesianTimeAxis, Factory, registerCartesianTimeAxis } from "@visactor/vchart";
|
|
6
2
|
|
|
7
3
|
import { axisZ } from "./theme";
|
|
8
4
|
|
|
9
|
-
|
|
10
|
-
setLayout3dBox(box3d) {
|
|
11
|
-
this.layout3dBox = box3d;
|
|
12
|
-
}
|
|
13
|
-
_getUpdateAttribute(ignoreGrid) {
|
|
14
|
-
return isZAxis(this._orient) ? getUpdateAttributeOfZAxis(this, ignoreGrid) : super._getUpdateAttribute(ignoreGrid);
|
|
15
|
-
}
|
|
16
|
-
}
|
|
5
|
+
import { mixin } from "@visactor/vutils";
|
|
17
6
|
|
|
18
|
-
|
|
19
|
-
axisZ: Object.assign(Object.assign({}, CartesianTimeAxis.builtInTheme.axisX), axisZ)
|
|
20
|
-
}), mixin(CartesianTimeAxis3d, LinearAxisMixin);
|
|
7
|
+
import { Axis3dMixin } from "./axis-3d-mixin";
|
|
21
8
|
|
|
22
9
|
export const registerCartesianTimeAxis3d = () => {
|
|
23
|
-
|
|
10
|
+
registerCartesianTimeAxis();
|
|
11
|
+
const AxisCls = Factory.getComponentInKey(CartesianTimeAxis.type);
|
|
12
|
+
AxisCls.builtInTheme = Object.assign(Object.assign({}, AxisCls.builtInTheme), {
|
|
13
|
+
axisZ: Object.assign(Object.assign({}, AxisCls.builtInTheme.axisX), axisZ)
|
|
14
|
+
}), mixin(AxisCls, Axis3dMixin);
|
|
24
15
|
};
|
|
25
16
|
//# sourceMappingURL=time-axis.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/charts/axis-3d/time-axis.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/charts/axis-3d/time-axis.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,OAAO,EAAE,yBAAyB,EAAE,MAAM,kBAAkB,CAAC;AACzF,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AACzC,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C,MAAM,CAAC,MAAM,2BAA2B,GAAG,GAAG,EAAE;IAC9C,yBAAyB,EAAE,CAAC;IAC5B,MAAM,OAAO,GAAG,OAAO,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;IAEjE,OAAe,CAAC,YAAY,mCACxB,OAAO,CAAC,YAAY,KACvB,KAAK,kCACA,OAAO,CAAC,YAAY,CAAC,KAAK,GAC1B,KAAK,IAEX,CAAC;IAEF,KAAK,CAAC,OAAO,EAAE,WAAW,CAAC,CAAC;AAC9B,CAAC,CAAC","file":"time-axis.js","sourcesContent":["import { CartesianTimeAxis, Factory, registerCartesianTimeAxis } from '@visactor/vchart';\nimport { axisZ } from './theme';\nimport { mixin } from '@visactor/vutils';\nimport { Axis3dMixin } from './axis-3d-mixin';\n\nexport const registerCartesianTimeAxis3d = () => {\n registerCartesianTimeAxis();\n const AxisCls = Factory.getComponentInKey(CartesianTimeAxis.type);\n\n (AxisCls as any).builtInTheme = {\n ...AxisCls.builtInTheme,\n axisZ: {\n ...AxisCls.builtInTheme.axisX,\n ...axisZ\n }\n };\n\n mixin(AxisCls, Axis3dMixin);\n};\n"]}
|
|
@@ -7,5 +7,4 @@ export class ImageCloudChartSpecTransformer extends BaseChartSpecTransformer {
|
|
|
7
7
|
_getDefaultSeriesSpec(spec) {
|
|
8
8
|
return super._getDefaultSeriesSpec(spec, [ "urlField", "nameField", "valueField", "imageSize", "imageSizeRange", "ratio", "maskShape", "imageMask", "layoutConfig", "image" ]);
|
|
9
9
|
}
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=image-cloud-transformer.js.map
|
|
10
|
+
}
|
|
@@ -18,4 +18,5 @@ ImageCloudChart.transformerConstructor = ImageCloudChartSpecTransformer;
|
|
|
18
18
|
|
|
19
19
|
export const registerImageCloudChart = () => {
|
|
20
20
|
registerImageCloudSeries(), Factory.registerChart(ImageCloudChart.type, ImageCloudChart);
|
|
21
|
-
};
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=image-cloud.js.map
|
|
@@ -12,7 +12,7 @@ export const WordCloud3dAnimation = params => ({
|
|
|
12
12
|
|
|
13
13
|
export const registerWordCloud3dAnimation = () => {
|
|
14
14
|
Factory.registerAnimation("wordCloud3d", (params => ({
|
|
15
|
-
|
|
15
|
+
appear: WordCloud3dAnimation(params)
|
|
16
16
|
})));
|
|
17
17
|
};
|
|
18
18
|
//# sourceMappingURL=animation.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/charts/word-cloud-3d/animation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAGlE,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAE3C,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,MAAiD,EAAwB,EAAE;IAC9G,OAAO;QACL,MAAM,EAAE,qBAAqB;QAC7B,gBAAgB,EAAE,GAAG,EAAE,CAAC,MAAM;QAC9B,MAAM,EAAE,QAAQ;QAChB,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;KACf,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,4BAA4B,GAAG,GAAG,EAAE;IAC/C,OAAO,CAAC,iBAAiB,CAAC,aAAa,EAAE,CAAC,MAAmC,EAAE,EAAE,CAAC,CAAC;QACjF,
|
|
1
|
+
{"version":3,"sources":["../src/charts/word-cloud-3d/animation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAGlE,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAE3C,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,MAAiD,EAAwB,EAAE;IAC9G,OAAO;QACL,MAAM,EAAE,qBAAqB;QAC7B,gBAAgB,EAAE,GAAG,EAAE,CAAC,MAAM;QAC9B,MAAM,EAAE,QAAQ;QAChB,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;KACf,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,4BAA4B,GAAG,GAAG,EAAE;IAC/C,OAAO,CAAC,iBAAiB,CAAC,aAAa,EAAE,CAAC,MAAmC,EAAE,EAAE,CAAC,CAAC;QACjF,MAAM,EAAE,oBAAoB,CAAC,MAAM,CAAC;KACrC,CAAC,CAAC,CAAC;AACN,CAAC,CAAC","file":"animation.js","sourcesContent":["import { RotateBySphereAnimate } from '@visactor/vrender-animate';\nimport type { IWordcloud3dAnimationParams } from './interface';\nimport type { IAnimationTypeConfig } from '@visactor/vchart';\nimport { Factory } from '@visactor/vchart';\n\nexport const WordCloud3dAnimation = (params: IWordcloud3dAnimationParams | (() => any)): IAnimationTypeConfig => {\n return {\n custom: RotateBySphereAnimate,\n customParameters: () => params,\n easing: 'linear',\n loop: Infinity,\n duration: 6000\n };\n};\n\nexport const registerWordCloud3dAnimation = () => {\n Factory.registerAnimation('wordCloud3d', (params: IWordcloud3dAnimationParams) => ({\n appear: WordCloud3dAnimation(params)\n }));\n};\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vchart-extension",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.4",
|
|
4
4
|
"description": "vchart extension package, including extension plugins and components",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "cjs/index.js",
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"build"
|
|
13
13
|
],
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@visactor/vrender-core": "1.0.0-alpha.
|
|
16
|
-
"@visactor/vrender-kits": "1.0.0-alpha.
|
|
17
|
-
"@visactor/vrender-components": "1.0.0-alpha.
|
|
18
|
-
"@visactor/vrender-animate": "1.0.0-alpha.
|
|
15
|
+
"@visactor/vrender-core": "1.0.0-alpha.23",
|
|
16
|
+
"@visactor/vrender-kits": "1.0.0-alpha.23",
|
|
17
|
+
"@visactor/vrender-components": "1.0.0-alpha.23",
|
|
18
|
+
"@visactor/vrender-animate": "1.0.0-alpha.23",
|
|
19
19
|
"@visactor/vutils": "~1.0.6",
|
|
20
20
|
"@visactor/vdataset": "~1.0.6",
|
|
21
21
|
"@visactor/vlayouts": "~1.0.6",
|
|
22
|
-
"@visactor/vchart": "2.0.0-alpha.
|
|
22
|
+
"@visactor/vchart": "2.0.0-alpha.4"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@rushstack/eslint-patch": "~1.1.4",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"rollup-plugin-bundle-size": "1.0.3",
|
|
44
44
|
"rollup-plugin-sizes": "1.0.5",
|
|
45
45
|
"rollup": "3.20.5",
|
|
46
|
-
"@internal/
|
|
46
|
+
"@internal/bundler": "0.0.1",
|
|
47
47
|
"@internal/eslint-config": "0.0.1",
|
|
48
|
-
"@internal/
|
|
48
|
+
"@internal/ts-config": "0.0.1"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public",
|