@visactor/vseed 0.0.11 → 0.0.13
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 +4339 -477
- package/dist/builder/register/theme.d.ts +4 -1
- package/dist/dataSelector/selector.d.ts +1 -1
- package/dist/i18n/i18n.d.ts +17 -0
- package/dist/i18n/index.d.ts +1 -0
- package/dist/index.cjs +1064 -190
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1015 -183
- package/dist/index.js.map +1 -1
- package/dist/pipeline/advanced/pipes/config/config.d.ts +3 -3
- package/dist/pipeline/advanced/pipes/i18n/index.d.ts +1 -0
- package/dist/pipeline/advanced/pipes/i18n/locale.d.ts +2 -0
- package/dist/pipeline/advanced/pipes/index.d.ts +1 -0
- 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 +3 -0
- package/dist/pipeline/utils/format/createNumFormatter.d.ts +3 -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 +2445 -320
- package/dist/types/chartType/area/area.d.ts +40 -1
- package/dist/types/chartType/areaPercent/areaPercent.d.ts +43 -4
- package/dist/types/chartType/bar/bar.d.ts +20 -2
- package/dist/types/chartType/barParallel/barParallel.d.ts +20 -2
- package/dist/types/chartType/barPercent/barPercent.d.ts +20 -2
- package/dist/types/chartType/column/column.d.ts +20 -2
- package/dist/types/chartType/columnParallel/columnParallel.d.ts +20 -2
- package/dist/types/chartType/columnPercent/columnPercent.d.ts +20 -2
- package/dist/types/chartType/donut/donut.d.ts +7 -0
- package/dist/types/chartType/dualAxis/dualAxis.d.ts +7 -0
- package/dist/types/chartType/line/line.d.ts +34 -4
- package/dist/types/chartType/pie/pie.d.ts +7 -0
- package/dist/types/chartType/pivotTable/pivotTable.d.ts +7 -0
- package/dist/types/chartType/rose/rose.d.ts +7 -0
- package/dist/types/chartType/table/table.d.ts +7 -0
- package/dist/types/i18n/i18n.d.ts +9 -0
- package/dist/types/i18n/index.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- 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 +29 -25
- package/package.json +1 -1
@@ -1,6 +1,6 @@
|
|
1
1
|
import { z } from 'zod';
|
2
2
|
export declare const zMarkStyle: z.ZodObject<{
|
3
|
-
barStyle: z.ZodOptional<z.ZodObject<{
|
3
|
+
barStyle: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
4
4
|
selector: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
5
5
|
field: z.ZodString;
|
6
6
|
operator: z.ZodOptional<z.ZodEnum<{
|
@@ -76,6 +76,547 @@ export declare const zMarkStyle: z.ZodObject<{
|
|
76
76
|
barBorderWidth: z.ZodOptional<z.ZodNumber>;
|
77
77
|
barBorderStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"solid">, z.ZodLiteral<"dashed">, z.ZodLiteral<"dotted">]>>;
|
78
78
|
barRadius: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodArray<z.ZodNumber>]>>;
|
79
|
-
}, z.core.$strip
|
79
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
80
|
+
selector: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
81
|
+
field: z.ZodString;
|
82
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
83
|
+
"=": "=";
|
84
|
+
"==": "==";
|
85
|
+
"!=": "!=";
|
86
|
+
">": ">";
|
87
|
+
"<": "<";
|
88
|
+
">=": ">=";
|
89
|
+
"<=": "<=";
|
90
|
+
between: "between";
|
91
|
+
}>>;
|
92
|
+
op: z.ZodOptional<z.ZodEnum<{
|
93
|
+
"=": "=";
|
94
|
+
"==": "==";
|
95
|
+
"!=": "!=";
|
96
|
+
">": ">";
|
97
|
+
"<": "<";
|
98
|
+
">=": ">=";
|
99
|
+
"<=": "<=";
|
100
|
+
between: "between";
|
101
|
+
}>>;
|
102
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
103
|
+
}, z.core.$strip>, z.ZodObject<{
|
104
|
+
field: z.ZodString;
|
105
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
106
|
+
in: "in";
|
107
|
+
"not in": "not in";
|
108
|
+
}>>;
|
109
|
+
op: z.ZodOptional<z.ZodEnum<{
|
110
|
+
in: "in";
|
111
|
+
"not in": "not in";
|
112
|
+
}>>;
|
113
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
114
|
+
}, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
115
|
+
field: z.ZodString;
|
116
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
117
|
+
"=": "=";
|
118
|
+
"==": "==";
|
119
|
+
"!=": "!=";
|
120
|
+
">": ">";
|
121
|
+
"<": "<";
|
122
|
+
">=": ">=";
|
123
|
+
"<=": "<=";
|
124
|
+
between: "between";
|
125
|
+
}>>;
|
126
|
+
op: z.ZodOptional<z.ZodEnum<{
|
127
|
+
"=": "=";
|
128
|
+
"==": "==";
|
129
|
+
"!=": "!=";
|
130
|
+
">": ">";
|
131
|
+
"<": "<";
|
132
|
+
">=": ">=";
|
133
|
+
"<=": "<=";
|
134
|
+
between: "between";
|
135
|
+
}>>;
|
136
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
137
|
+
}, z.core.$strip>, z.ZodObject<{
|
138
|
+
field: z.ZodString;
|
139
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
140
|
+
in: "in";
|
141
|
+
"not in": "not in";
|
142
|
+
}>>;
|
143
|
+
op: z.ZodOptional<z.ZodEnum<{
|
144
|
+
in: "in";
|
145
|
+
"not in": "not in";
|
146
|
+
}>>;
|
147
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
148
|
+
}, z.core.$strip>]>>]>>;
|
149
|
+
barColor: z.ZodOptional<z.ZodString>;
|
150
|
+
barColorOpacity: z.ZodOptional<z.ZodNumber>;
|
151
|
+
barBorderColor: z.ZodOptional<z.ZodString>;
|
152
|
+
barBorderWidth: z.ZodOptional<z.ZodNumber>;
|
153
|
+
barBorderStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"solid">, z.ZodLiteral<"dashed">, z.ZodLiteral<"dotted">]>>;
|
154
|
+
barRadius: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodArray<z.ZodNumber>]>>;
|
155
|
+
}, z.core.$strip>>]>>;
|
156
|
+
pointStyle: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
157
|
+
selector: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
158
|
+
field: z.ZodString;
|
159
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
160
|
+
"=": "=";
|
161
|
+
"==": "==";
|
162
|
+
"!=": "!=";
|
163
|
+
">": ">";
|
164
|
+
"<": "<";
|
165
|
+
">=": ">=";
|
166
|
+
"<=": "<=";
|
167
|
+
between: "between";
|
168
|
+
}>>;
|
169
|
+
op: z.ZodOptional<z.ZodEnum<{
|
170
|
+
"=": "=";
|
171
|
+
"==": "==";
|
172
|
+
"!=": "!=";
|
173
|
+
">": ">";
|
174
|
+
"<": "<";
|
175
|
+
">=": ">=";
|
176
|
+
"<=": "<=";
|
177
|
+
between: "between";
|
178
|
+
}>>;
|
179
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
180
|
+
}, z.core.$strip>, z.ZodObject<{
|
181
|
+
field: z.ZodString;
|
182
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
183
|
+
in: "in";
|
184
|
+
"not in": "not in";
|
185
|
+
}>>;
|
186
|
+
op: z.ZodOptional<z.ZodEnum<{
|
187
|
+
in: "in";
|
188
|
+
"not in": "not in";
|
189
|
+
}>>;
|
190
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
191
|
+
}, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
192
|
+
field: z.ZodString;
|
193
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
194
|
+
"=": "=";
|
195
|
+
"==": "==";
|
196
|
+
"!=": "!=";
|
197
|
+
">": ">";
|
198
|
+
"<": "<";
|
199
|
+
">=": ">=";
|
200
|
+
"<=": "<=";
|
201
|
+
between: "between";
|
202
|
+
}>>;
|
203
|
+
op: z.ZodOptional<z.ZodEnum<{
|
204
|
+
"=": "=";
|
205
|
+
"==": "==";
|
206
|
+
"!=": "!=";
|
207
|
+
">": ">";
|
208
|
+
"<": "<";
|
209
|
+
">=": ">=";
|
210
|
+
"<=": "<=";
|
211
|
+
between: "between";
|
212
|
+
}>>;
|
213
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
214
|
+
}, z.core.$strip>, z.ZodObject<{
|
215
|
+
field: z.ZodString;
|
216
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
217
|
+
in: "in";
|
218
|
+
"not in": "not in";
|
219
|
+
}>>;
|
220
|
+
op: z.ZodOptional<z.ZodEnum<{
|
221
|
+
in: "in";
|
222
|
+
"not in": "not in";
|
223
|
+
}>>;
|
224
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
225
|
+
}, z.core.$strip>]>>]>>;
|
226
|
+
pointSize: z.ZodOptional<z.ZodNumber>;
|
227
|
+
pointColor: z.ZodOptional<z.ZodString>;
|
228
|
+
pointColorOpacity: z.ZodOptional<z.ZodNumber>;
|
229
|
+
pointBorderColor: z.ZodOptional<z.ZodString>;
|
230
|
+
pointBorderWidth: z.ZodOptional<z.ZodNumber>;
|
231
|
+
pointBorderStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
232
|
+
solid: "solid";
|
233
|
+
dashed: "dashed";
|
234
|
+
dotted: "dotted";
|
235
|
+
}>]>>;
|
236
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
237
|
+
selector: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
238
|
+
field: z.ZodString;
|
239
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
240
|
+
"=": "=";
|
241
|
+
"==": "==";
|
242
|
+
"!=": "!=";
|
243
|
+
">": ">";
|
244
|
+
"<": "<";
|
245
|
+
">=": ">=";
|
246
|
+
"<=": "<=";
|
247
|
+
between: "between";
|
248
|
+
}>>;
|
249
|
+
op: z.ZodOptional<z.ZodEnum<{
|
250
|
+
"=": "=";
|
251
|
+
"==": "==";
|
252
|
+
"!=": "!=";
|
253
|
+
">": ">";
|
254
|
+
"<": "<";
|
255
|
+
">=": ">=";
|
256
|
+
"<=": "<=";
|
257
|
+
between: "between";
|
258
|
+
}>>;
|
259
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
260
|
+
}, z.core.$strip>, z.ZodObject<{
|
261
|
+
field: z.ZodString;
|
262
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
263
|
+
in: "in";
|
264
|
+
"not in": "not in";
|
265
|
+
}>>;
|
266
|
+
op: z.ZodOptional<z.ZodEnum<{
|
267
|
+
in: "in";
|
268
|
+
"not in": "not in";
|
269
|
+
}>>;
|
270
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
271
|
+
}, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
272
|
+
field: z.ZodString;
|
273
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
274
|
+
"=": "=";
|
275
|
+
"==": "==";
|
276
|
+
"!=": "!=";
|
277
|
+
">": ">";
|
278
|
+
"<": "<";
|
279
|
+
">=": ">=";
|
280
|
+
"<=": "<=";
|
281
|
+
between: "between";
|
282
|
+
}>>;
|
283
|
+
op: z.ZodOptional<z.ZodEnum<{
|
284
|
+
"=": "=";
|
285
|
+
"==": "==";
|
286
|
+
"!=": "!=";
|
287
|
+
">": ">";
|
288
|
+
"<": "<";
|
289
|
+
">=": ">=";
|
290
|
+
"<=": "<=";
|
291
|
+
between: "between";
|
292
|
+
}>>;
|
293
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
294
|
+
}, z.core.$strip>, z.ZodObject<{
|
295
|
+
field: z.ZodString;
|
296
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
297
|
+
in: "in";
|
298
|
+
"not in": "not in";
|
299
|
+
}>>;
|
300
|
+
op: z.ZodOptional<z.ZodEnum<{
|
301
|
+
in: "in";
|
302
|
+
"not in": "not in";
|
303
|
+
}>>;
|
304
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
305
|
+
}, z.core.$strip>]>>]>>;
|
306
|
+
pointSize: z.ZodOptional<z.ZodNumber>;
|
307
|
+
pointColor: z.ZodOptional<z.ZodString>;
|
308
|
+
pointColorOpacity: z.ZodOptional<z.ZodNumber>;
|
309
|
+
pointBorderColor: z.ZodOptional<z.ZodString>;
|
310
|
+
pointBorderWidth: z.ZodOptional<z.ZodNumber>;
|
311
|
+
pointBorderStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
312
|
+
solid: "solid";
|
313
|
+
dashed: "dashed";
|
314
|
+
dotted: "dotted";
|
315
|
+
}>]>>;
|
316
|
+
}, z.core.$strip>>]>>;
|
317
|
+
lineStyle: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
318
|
+
selector: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
319
|
+
field: z.ZodString;
|
320
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
321
|
+
"=": "=";
|
322
|
+
"==": "==";
|
323
|
+
"!=": "!=";
|
324
|
+
">": ">";
|
325
|
+
"<": "<";
|
326
|
+
">=": ">=";
|
327
|
+
"<=": "<=";
|
328
|
+
between: "between";
|
329
|
+
}>>;
|
330
|
+
op: z.ZodOptional<z.ZodEnum<{
|
331
|
+
"=": "=";
|
332
|
+
"==": "==";
|
333
|
+
"!=": "!=";
|
334
|
+
">": ">";
|
335
|
+
"<": "<";
|
336
|
+
">=": ">=";
|
337
|
+
"<=": "<=";
|
338
|
+
between: "between";
|
339
|
+
}>>;
|
340
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
341
|
+
}, z.core.$strip>, z.ZodObject<{
|
342
|
+
field: z.ZodString;
|
343
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
344
|
+
in: "in";
|
345
|
+
"not in": "not in";
|
346
|
+
}>>;
|
347
|
+
op: z.ZodOptional<z.ZodEnum<{
|
348
|
+
in: "in";
|
349
|
+
"not in": "not in";
|
350
|
+
}>>;
|
351
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
352
|
+
}, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
353
|
+
field: z.ZodString;
|
354
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
355
|
+
"=": "=";
|
356
|
+
"==": "==";
|
357
|
+
"!=": "!=";
|
358
|
+
">": ">";
|
359
|
+
"<": "<";
|
360
|
+
">=": ">=";
|
361
|
+
"<=": "<=";
|
362
|
+
between: "between";
|
363
|
+
}>>;
|
364
|
+
op: z.ZodOptional<z.ZodEnum<{
|
365
|
+
"=": "=";
|
366
|
+
"==": "==";
|
367
|
+
"!=": "!=";
|
368
|
+
">": ">";
|
369
|
+
"<": "<";
|
370
|
+
">=": ">=";
|
371
|
+
"<=": "<=";
|
372
|
+
between: "between";
|
373
|
+
}>>;
|
374
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
375
|
+
}, z.core.$strip>, z.ZodObject<{
|
376
|
+
field: z.ZodString;
|
377
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
378
|
+
in: "in";
|
379
|
+
"not in": "not in";
|
380
|
+
}>>;
|
381
|
+
op: z.ZodOptional<z.ZodEnum<{
|
382
|
+
in: "in";
|
383
|
+
"not in": "not in";
|
384
|
+
}>>;
|
385
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
386
|
+
}, z.core.$strip>]>>]>>;
|
387
|
+
lineSmooth: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
388
|
+
lineColor: z.ZodOptional<z.ZodString>;
|
389
|
+
lineColorOpacity: z.ZodOptional<z.ZodNumber>;
|
390
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
391
|
+
lineStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
392
|
+
solid: "solid";
|
393
|
+
dashed: "dashed";
|
394
|
+
dotted: "dotted";
|
395
|
+
}>]>>;
|
396
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
397
|
+
selector: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
398
|
+
field: z.ZodString;
|
399
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
400
|
+
"=": "=";
|
401
|
+
"==": "==";
|
402
|
+
"!=": "!=";
|
403
|
+
">": ">";
|
404
|
+
"<": "<";
|
405
|
+
">=": ">=";
|
406
|
+
"<=": "<=";
|
407
|
+
between: "between";
|
408
|
+
}>>;
|
409
|
+
op: z.ZodOptional<z.ZodEnum<{
|
410
|
+
"=": "=";
|
411
|
+
"==": "==";
|
412
|
+
"!=": "!=";
|
413
|
+
">": ">";
|
414
|
+
"<": "<";
|
415
|
+
">=": ">=";
|
416
|
+
"<=": "<=";
|
417
|
+
between: "between";
|
418
|
+
}>>;
|
419
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
420
|
+
}, z.core.$strip>, z.ZodObject<{
|
421
|
+
field: z.ZodString;
|
422
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
423
|
+
in: "in";
|
424
|
+
"not in": "not in";
|
425
|
+
}>>;
|
426
|
+
op: z.ZodOptional<z.ZodEnum<{
|
427
|
+
in: "in";
|
428
|
+
"not in": "not in";
|
429
|
+
}>>;
|
430
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
431
|
+
}, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
432
|
+
field: z.ZodString;
|
433
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
434
|
+
"=": "=";
|
435
|
+
"==": "==";
|
436
|
+
"!=": "!=";
|
437
|
+
">": ">";
|
438
|
+
"<": "<";
|
439
|
+
">=": ">=";
|
440
|
+
"<=": "<=";
|
441
|
+
between: "between";
|
442
|
+
}>>;
|
443
|
+
op: z.ZodOptional<z.ZodEnum<{
|
444
|
+
"=": "=";
|
445
|
+
"==": "==";
|
446
|
+
"!=": "!=";
|
447
|
+
">": ">";
|
448
|
+
"<": "<";
|
449
|
+
">=": ">=";
|
450
|
+
"<=": "<=";
|
451
|
+
between: "between";
|
452
|
+
}>>;
|
453
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
454
|
+
}, z.core.$strip>, z.ZodObject<{
|
455
|
+
field: z.ZodString;
|
456
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
457
|
+
in: "in";
|
458
|
+
"not in": "not in";
|
459
|
+
}>>;
|
460
|
+
op: z.ZodOptional<z.ZodEnum<{
|
461
|
+
in: "in";
|
462
|
+
"not in": "not in";
|
463
|
+
}>>;
|
464
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
465
|
+
}, z.core.$strip>]>>]>>;
|
466
|
+
lineSmooth: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
467
|
+
lineColor: z.ZodOptional<z.ZodString>;
|
468
|
+
lineColorOpacity: z.ZodOptional<z.ZodNumber>;
|
469
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
470
|
+
lineStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
471
|
+
solid: "solid";
|
472
|
+
dashed: "dashed";
|
473
|
+
dotted: "dotted";
|
474
|
+
}>]>>;
|
475
|
+
}, z.core.$strip>>]>>;
|
476
|
+
areaStyle: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
477
|
+
selector: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
478
|
+
field: z.ZodString;
|
479
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
480
|
+
"=": "=";
|
481
|
+
"==": "==";
|
482
|
+
"!=": "!=";
|
483
|
+
">": ">";
|
484
|
+
"<": "<";
|
485
|
+
">=": ">=";
|
486
|
+
"<=": "<=";
|
487
|
+
between: "between";
|
488
|
+
}>>;
|
489
|
+
op: z.ZodOptional<z.ZodEnum<{
|
490
|
+
"=": "=";
|
491
|
+
"==": "==";
|
492
|
+
"!=": "!=";
|
493
|
+
">": ">";
|
494
|
+
"<": "<";
|
495
|
+
">=": ">=";
|
496
|
+
"<=": "<=";
|
497
|
+
between: "between";
|
498
|
+
}>>;
|
499
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
500
|
+
}, z.core.$strip>, z.ZodObject<{
|
501
|
+
field: z.ZodString;
|
502
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
503
|
+
in: "in";
|
504
|
+
"not in": "not in";
|
505
|
+
}>>;
|
506
|
+
op: z.ZodOptional<z.ZodEnum<{
|
507
|
+
in: "in";
|
508
|
+
"not in": "not in";
|
509
|
+
}>>;
|
510
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
511
|
+
}, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
512
|
+
field: z.ZodString;
|
513
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
514
|
+
"=": "=";
|
515
|
+
"==": "==";
|
516
|
+
"!=": "!=";
|
517
|
+
">": ">";
|
518
|
+
"<": "<";
|
519
|
+
">=": ">=";
|
520
|
+
"<=": "<=";
|
521
|
+
between: "between";
|
522
|
+
}>>;
|
523
|
+
op: z.ZodOptional<z.ZodEnum<{
|
524
|
+
"=": "=";
|
525
|
+
"==": "==";
|
526
|
+
"!=": "!=";
|
527
|
+
">": ">";
|
528
|
+
"<": "<";
|
529
|
+
">=": ">=";
|
530
|
+
"<=": "<=";
|
531
|
+
between: "between";
|
532
|
+
}>>;
|
533
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
534
|
+
}, z.core.$strip>, z.ZodObject<{
|
535
|
+
field: z.ZodString;
|
536
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
537
|
+
in: "in";
|
538
|
+
"not in": "not in";
|
539
|
+
}>>;
|
540
|
+
op: z.ZodOptional<z.ZodEnum<{
|
541
|
+
in: "in";
|
542
|
+
"not in": "not in";
|
543
|
+
}>>;
|
544
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
545
|
+
}, z.core.$strip>]>>]>>;
|
546
|
+
areaColor: z.ZodOptional<z.ZodString>;
|
547
|
+
areaColorOpacity: z.ZodOptional<z.ZodNumber>;
|
548
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
549
|
+
selector: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
550
|
+
field: z.ZodString;
|
551
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
552
|
+
"=": "=";
|
553
|
+
"==": "==";
|
554
|
+
"!=": "!=";
|
555
|
+
">": ">";
|
556
|
+
"<": "<";
|
557
|
+
">=": ">=";
|
558
|
+
"<=": "<=";
|
559
|
+
between: "between";
|
560
|
+
}>>;
|
561
|
+
op: z.ZodOptional<z.ZodEnum<{
|
562
|
+
"=": "=";
|
563
|
+
"==": "==";
|
564
|
+
"!=": "!=";
|
565
|
+
">": ">";
|
566
|
+
"<": "<";
|
567
|
+
">=": ">=";
|
568
|
+
"<=": "<=";
|
569
|
+
between: "between";
|
570
|
+
}>>;
|
571
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
572
|
+
}, z.core.$strip>, z.ZodObject<{
|
573
|
+
field: z.ZodString;
|
574
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
575
|
+
in: "in";
|
576
|
+
"not in": "not in";
|
577
|
+
}>>;
|
578
|
+
op: z.ZodOptional<z.ZodEnum<{
|
579
|
+
in: "in";
|
580
|
+
"not in": "not in";
|
581
|
+
}>>;
|
582
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
583
|
+
}, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
|
584
|
+
field: z.ZodString;
|
585
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
586
|
+
"=": "=";
|
587
|
+
"==": "==";
|
588
|
+
"!=": "!=";
|
589
|
+
">": ">";
|
590
|
+
"<": "<";
|
591
|
+
">=": ">=";
|
592
|
+
"<=": "<=";
|
593
|
+
between: "between";
|
594
|
+
}>>;
|
595
|
+
op: z.ZodOptional<z.ZodEnum<{
|
596
|
+
"=": "=";
|
597
|
+
"==": "==";
|
598
|
+
"!=": "!=";
|
599
|
+
">": ">";
|
600
|
+
"<": "<";
|
601
|
+
">=": ">=";
|
602
|
+
"<=": "<=";
|
603
|
+
between: "between";
|
604
|
+
}>>;
|
605
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
606
|
+
}, z.core.$strip>, z.ZodObject<{
|
607
|
+
field: z.ZodString;
|
608
|
+
operator: z.ZodOptional<z.ZodEnum<{
|
609
|
+
in: "in";
|
610
|
+
"not in": "not in";
|
611
|
+
}>>;
|
612
|
+
op: z.ZodOptional<z.ZodEnum<{
|
613
|
+
in: "in";
|
614
|
+
"not in": "not in";
|
615
|
+
}>>;
|
616
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
|
617
|
+
}, z.core.$strip>]>>]>>;
|
618
|
+
areaColor: z.ZodOptional<z.ZodString>;
|
619
|
+
areaColorOpacity: z.ZodOptional<z.ZodNumber>;
|
620
|
+
}, z.core.$strip>>]>>;
|
80
621
|
}, z.core.$strip>;
|
81
622
|
export type MarkStyle = z.infer<typeof zMarkStyle>;
|