@visactor/vseed 0.0.11 → 0.0.12
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/builder/builder/builder.d.ts +4336 -477
- package/dist/builder/register/theme.d.ts +4 -1
- package/dist/dataSelector/selector.d.ts +1 -1
- package/dist/index.cjs +907 -174
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +877 -174
- package/dist/index.js.map +1 -1
- package/dist/pipeline/advanced/pipes/config/config.d.ts +3 -3
- package/dist/pipeline/constant.d.ts +2 -0
- package/dist/pipeline/spec/pipes/crosshair/horizontalCrosshairRect.d.ts +2 -0
- package/dist/pipeline/spec/pipes/crosshair/index.d.ts +3 -0
- package/dist/pipeline/spec/pipes/crosshair/verticalCrosshairLine.d.ts +2 -0
- package/dist/pipeline/spec/pipes/crosshair/verticalCrosshairRect.d.ts +2 -0
- package/dist/pipeline/spec/pipes/index.d.ts +1 -0
- package/dist/pipeline/spec/pipes/markStyle/areaStyle.d.ts +2 -0
- package/dist/pipeline/spec/pipes/markStyle/index.d.ts +3 -0
- package/dist/pipeline/spec/pipes/markStyle/lineStyle.d.ts +2 -0
- package/dist/pipeline/spec/pipes/markStyle/pointStyle.d.ts +2 -0
- package/dist/pipeline/spec/pipes/stack/index.d.ts +1 -0
- package/dist/pipeline/spec/pipes/stack/stackCornerRadius.d.ts +2 -0
- package/dist/pipeline/utils/chatType.d.ts +16 -16
- package/dist/pipeline/utils/format/createFormatter.d.ts +2 -0
- package/dist/pipeline/utils/format/createNumFormatter.d.ts +2 -0
- package/dist/pipeline/utils/format/index.d.ts +2 -0
- package/dist/pipeline/utils/index.d.ts +4 -2
- package/dist/pipeline/utils/measures/findMeasureById.d.ts +2 -0
- package/dist/pipeline/utils/measures/index.d.ts +1 -0
- package/dist/types/advancedVSeed.d.ts +2441 -320
- package/dist/types/chartType/area/area.d.ts +33 -1
- package/dist/types/chartType/areaPercent/areaPercent.d.ts +36 -4
- package/dist/types/chartType/bar/bar.d.ts +13 -2
- package/dist/types/chartType/barParallel/barParallel.d.ts +13 -2
- package/dist/types/chartType/barPercent/barPercent.d.ts +13 -2
- package/dist/types/chartType/column/column.d.ts +13 -2
- package/dist/types/chartType/columnParallel/columnParallel.d.ts +13 -2
- package/dist/types/chartType/columnPercent/columnPercent.d.ts +13 -2
- package/dist/types/chartType/line/line.d.ts +27 -4
- package/dist/types/properties/config/config.d.ts +105 -36
- package/dist/types/properties/config/crosshair.d.ts +17 -0
- package/dist/types/properties/config/index.d.ts +2 -0
- package/dist/types/properties/config/stackCornerRadius.d.ts +3 -0
- package/dist/types/properties/markStyle/areaStyle.d.ts +129 -0
- package/dist/types/properties/markStyle/index.d.ts +3 -0
- package/dist/types/properties/markStyle/lineStyle.d.ts +160 -0
- package/dist/types/properties/markStyle/markStyle.d.ts +543 -2
- package/dist/types/properties/markStyle/pointStyle.d.ts +168 -0
- package/dist/types/properties/measures/format/formatter.d.ts +1 -0
- package/dist/types/properties/measures/format/index.d.ts +2 -0
- package/dist/types/properties/measures/format/numFormat.d.ts +20 -0
- package/dist/types/properties/measures/index.d.ts +2 -2
- package/dist/types/properties/measures/measures.d.ts +40 -40
- package/dist/types/properties/theme/customTheme.d.ts +3094 -72
- package/dist/types/vseed.d.ts +20 -20
- package/package.json +1 -1
package/dist/types/vseed.d.ts
CHANGED
@@ -53,48 +53,48 @@ export declare const zVSeed: z.ZodObject<{
|
|
53
53
|
alias: z.ZodOptional<z.ZodString>;
|
54
54
|
visible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
55
55
|
autoFormat: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
56
|
-
format: z.ZodOptional<z.ZodObject<{
|
57
|
-
type: z.
|
56
|
+
format: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
57
|
+
type: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
58
58
|
number: "number";
|
59
59
|
percent: "percent";
|
60
60
|
permille: "permille";
|
61
61
|
}>>>;
|
62
|
-
ratio: z.
|
63
|
-
symbol: z.
|
64
|
-
thousandSeparator: z.
|
65
|
-
decimalPlaces: z.
|
66
|
-
round: z.
|
62
|
+
ratio: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
63
|
+
symbol: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
64
|
+
thousandSeparator: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
65
|
+
decimalPlaces: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
66
|
+
round: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
67
67
|
round: "round";
|
68
68
|
floor: "floor";
|
69
69
|
ceil: "ceil";
|
70
70
|
}>>>;
|
71
|
-
prefix: z.
|
72
|
-
suffix: z.
|
73
|
-
}, z.core.$strip
|
71
|
+
prefix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
72
|
+
suffix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
73
|
+
}, z.core.$strip>>>;
|
74
74
|
}, z.core.$strip>]>>>;
|
75
75
|
}, z.core.$strip>, z.ZodObject<{
|
76
76
|
id: z.ZodString;
|
77
77
|
alias: z.ZodOptional<z.ZodString>;
|
78
78
|
visible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
79
79
|
autoFormat: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
80
|
-
format: z.ZodOptional<z.ZodObject<{
|
81
|
-
type: z.
|
80
|
+
format: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
81
|
+
type: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
82
82
|
number: "number";
|
83
83
|
percent: "percent";
|
84
84
|
permille: "permille";
|
85
85
|
}>>>;
|
86
|
-
ratio: z.
|
87
|
-
symbol: z.
|
88
|
-
thousandSeparator: z.
|
89
|
-
decimalPlaces: z.
|
90
|
-
round: z.
|
86
|
+
ratio: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
87
|
+
symbol: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
88
|
+
thousandSeparator: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
89
|
+
decimalPlaces: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
90
|
+
round: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
|
91
91
|
round: "round";
|
92
92
|
floor: "floor";
|
93
93
|
ceil: "ceil";
|
94
94
|
}>>>;
|
95
|
-
prefix: z.
|
96
|
-
suffix: z.
|
97
|
-
}, z.core.$strip
|
95
|
+
prefix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
96
|
+
suffix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
97
|
+
}, z.core.$strip>>>;
|
98
98
|
}, z.core.$strip>]>>>;
|
99
99
|
backgroundColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
100
100
|
}, z.core.$strip>;
|