@visactor/vseed 0.0.10 → 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.
Files changed (69) hide show
  1. package/dist/builder/builder/builder.d.ts +5168 -511
  2. package/dist/builder/register/theme.d.ts +4 -1
  3. package/dist/dataSelector/selector.d.ts +1 -1
  4. package/dist/index.cjs +1690 -247
  5. package/dist/index.cjs.map +1 -1
  6. package/dist/index.js +1658 -254
  7. package/dist/index.js.map +1 -1
  8. package/dist/pipeline/advanced/pipes/config/config.d.ts +3 -3
  9. package/dist/pipeline/constant.d.ts +2 -0
  10. package/dist/pipeline/spec/pipes/annotation/annotationArea.d.ts +2 -0
  11. package/dist/pipeline/spec/pipes/annotation/annotationAreaBand.d.ts +2 -0
  12. package/dist/pipeline/spec/pipes/annotation/annotationHorizontalLine.d.ts +2 -0
  13. package/dist/pipeline/spec/pipes/annotation/annotationVerticalLine.d.ts +2 -0
  14. package/dist/pipeline/spec/pipes/annotation/index.d.ts +4 -0
  15. package/dist/pipeline/spec/pipes/annotation/utils.d.ts +2 -0
  16. package/dist/pipeline/spec/pipes/crosshair/horizontalCrosshairRect.d.ts +2 -0
  17. package/dist/pipeline/spec/pipes/crosshair/index.d.ts +3 -0
  18. package/dist/pipeline/spec/pipes/crosshair/verticalCrosshairLine.d.ts +2 -0
  19. package/dist/pipeline/spec/pipes/crosshair/verticalCrosshairRect.d.ts +2 -0
  20. package/dist/pipeline/spec/pipes/index.d.ts +1 -0
  21. package/dist/pipeline/spec/pipes/markStyle/areaStyle.d.ts +2 -0
  22. package/dist/pipeline/spec/pipes/markStyle/index.d.ts +3 -0
  23. package/dist/pipeline/spec/pipes/markStyle/lineStyle.d.ts +2 -0
  24. package/dist/pipeline/spec/pipes/markStyle/pointStyle.d.ts +2 -0
  25. package/dist/pipeline/spec/pipes/stack/index.d.ts +1 -0
  26. package/dist/pipeline/spec/pipes/stack/stackCornerRadius.d.ts +2 -0
  27. package/dist/pipeline/utils/chatType.d.ts +16 -16
  28. package/dist/pipeline/utils/format/createFormatter.d.ts +2 -0
  29. package/dist/pipeline/utils/format/createNumFormatter.d.ts +2 -0
  30. package/dist/pipeline/utils/format/index.d.ts +2 -0
  31. package/dist/pipeline/utils/index.d.ts +4 -2
  32. package/dist/pipeline/utils/measures/findMeasureById.d.ts +2 -0
  33. package/dist/pipeline/utils/measures/index.d.ts +1 -0
  34. package/dist/types/advancedVSeed.d.ts +3018 -106
  35. package/dist/types/builder/builder.d.ts +3 -0
  36. package/dist/types/chartType/area/area.d.ts +48 -1
  37. package/dist/types/chartType/areaPercent/areaPercent.d.ts +48 -1
  38. package/dist/types/chartType/bar/bar.d.ts +28 -2
  39. package/dist/types/chartType/barParallel/barParallel.d.ts +28 -2
  40. package/dist/types/chartType/barPercent/barPercent.d.ts +28 -2
  41. package/dist/types/chartType/column/column.d.ts +28 -2
  42. package/dist/types/chartType/columnParallel/columnParallel.d.ts +28 -2
  43. package/dist/types/chartType/columnPercent/columnPercent.d.ts +28 -2
  44. package/dist/types/chartType/line/line.d.ts +39 -1
  45. package/dist/types/dataSelector/selector.d.ts +60 -6
  46. package/dist/types/properties/annotation/annotation.d.ts +747 -8
  47. package/dist/types/properties/annotation/annotationArea.d.ts +248 -0
  48. package/dist/types/properties/annotation/annotationHorizontalLine.d.ts +253 -0
  49. package/dist/types/properties/annotation/annotationPoint.d.ts +56 -4
  50. package/dist/types/properties/annotation/annotationVerticalLine.d.ts +253 -0
  51. package/dist/types/properties/annotation/index.d.ts +3 -0
  52. package/dist/types/properties/config/config.d.ts +105 -36
  53. package/dist/types/properties/config/crosshair.d.ts +17 -0
  54. package/dist/types/properties/config/index.d.ts +2 -0
  55. package/dist/types/properties/config/stackCornerRadius.d.ts +3 -0
  56. package/dist/types/properties/markStyle/areaStyle.d.ts +129 -0
  57. package/dist/types/properties/markStyle/barStyle.d.ts +56 -4
  58. package/dist/types/properties/markStyle/index.d.ts +3 -0
  59. package/dist/types/properties/markStyle/lineStyle.d.ts +160 -0
  60. package/dist/types/properties/markStyle/markStyle.d.ts +599 -6
  61. package/dist/types/properties/markStyle/pointStyle.d.ts +168 -0
  62. package/dist/types/properties/measures/format/formatter.d.ts +1 -0
  63. package/dist/types/properties/measures/format/index.d.ts +2 -0
  64. package/dist/types/properties/measures/format/numFormat.d.ts +20 -0
  65. package/dist/types/properties/measures/index.d.ts +2 -2
  66. package/dist/types/properties/measures/measures.d.ts +40 -40
  67. package/dist/types/properties/theme/customTheme.d.ts +3094 -72
  68. package/dist/types/vseed.d.ts +20 -20
  69. package/package.json +1 -1
@@ -3,19 +3,71 @@ export declare const zAnnotation: z.ZodObject<{
3
3
  annotationPoint: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
4
4
  selector: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
5
5
  field: z.ZodString;
6
- operator: z.ZodString;
6
+ operator: z.ZodOptional<z.ZodEnum<{
7
+ "=": "=";
8
+ "==": "==";
9
+ "!=": "!=";
10
+ ">": ">";
11
+ "<": "<";
12
+ ">=": ">=";
13
+ "<=": "<=";
14
+ between: "between";
15
+ }>>;
16
+ op: z.ZodOptional<z.ZodEnum<{
17
+ "=": "=";
18
+ "==": "==";
19
+ "!=": "!=";
20
+ ">": ">";
21
+ "<": "<";
22
+ ">=": ">=";
23
+ "<=": "<=";
24
+ between: "between";
25
+ }>>;
7
26
  value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
8
27
  }, z.core.$strip>, z.ZodObject<{
9
28
  field: z.ZodString;
10
- operator: z.ZodString;
29
+ operator: z.ZodOptional<z.ZodEnum<{
30
+ in: "in";
31
+ "not in": "not in";
32
+ }>>;
33
+ op: z.ZodOptional<z.ZodEnum<{
34
+ in: "in";
35
+ "not in": "not in";
36
+ }>>;
11
37
  value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
12
38
  }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
13
39
  field: z.ZodString;
14
- operator: z.ZodString;
40
+ operator: z.ZodOptional<z.ZodEnum<{
41
+ "=": "=";
42
+ "==": "==";
43
+ "!=": "!=";
44
+ ">": ">";
45
+ "<": "<";
46
+ ">=": ">=";
47
+ "<=": "<=";
48
+ between: "between";
49
+ }>>;
50
+ op: z.ZodOptional<z.ZodEnum<{
51
+ "=": "=";
52
+ "==": "==";
53
+ "!=": "!=";
54
+ ">": ">";
55
+ "<": "<";
56
+ ">=": ">=";
57
+ "<=": "<=";
58
+ between: "between";
59
+ }>>;
15
60
  value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
16
61
  }, z.core.$strip>, z.ZodObject<{
17
62
  field: z.ZodString;
18
- operator: z.ZodString;
63
+ operator: z.ZodOptional<z.ZodEnum<{
64
+ in: "in";
65
+ "not in": "not in";
66
+ }>>;
67
+ op: z.ZodOptional<z.ZodEnum<{
68
+ in: "in";
69
+ "not in": "not in";
70
+ }>>;
19
71
  value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
20
72
  }, z.core.$strip>]>>]>;
21
73
  text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>;
@@ -43,19 +95,71 @@ export declare const zAnnotation: z.ZodObject<{
43
95
  }, z.core.$strip>, z.ZodArray<z.ZodObject<{
44
96
  selector: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
45
97
  field: z.ZodString;
46
- operator: z.ZodString;
98
+ operator: z.ZodOptional<z.ZodEnum<{
99
+ "=": "=";
100
+ "==": "==";
101
+ "!=": "!=";
102
+ ">": ">";
103
+ "<": "<";
104
+ ">=": ">=";
105
+ "<=": "<=";
106
+ between: "between";
107
+ }>>;
108
+ op: z.ZodOptional<z.ZodEnum<{
109
+ "=": "=";
110
+ "==": "==";
111
+ "!=": "!=";
112
+ ">": ">";
113
+ "<": "<";
114
+ ">=": ">=";
115
+ "<=": "<=";
116
+ between: "between";
117
+ }>>;
47
118
  value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
48
119
  }, z.core.$strip>, z.ZodObject<{
49
120
  field: z.ZodString;
50
- operator: z.ZodString;
121
+ operator: z.ZodOptional<z.ZodEnum<{
122
+ in: "in";
123
+ "not in": "not in";
124
+ }>>;
125
+ op: z.ZodOptional<z.ZodEnum<{
126
+ in: "in";
127
+ "not in": "not in";
128
+ }>>;
51
129
  value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
52
130
  }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
53
131
  field: z.ZodString;
54
- operator: z.ZodString;
132
+ operator: z.ZodOptional<z.ZodEnum<{
133
+ "=": "=";
134
+ "==": "==";
135
+ "!=": "!=";
136
+ ">": ">";
137
+ "<": "<";
138
+ ">=": ">=";
139
+ "<=": "<=";
140
+ between: "between";
141
+ }>>;
142
+ op: z.ZodOptional<z.ZodEnum<{
143
+ "=": "=";
144
+ "==": "==";
145
+ "!=": "!=";
146
+ ">": ">";
147
+ "<": "<";
148
+ ">=": ">=";
149
+ "<=": "<=";
150
+ between: "between";
151
+ }>>;
55
152
  value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
56
153
  }, z.core.$strip>, z.ZodObject<{
57
154
  field: z.ZodString;
58
- operator: z.ZodString;
155
+ operator: z.ZodOptional<z.ZodEnum<{
156
+ in: "in";
157
+ "not in": "not in";
158
+ }>>;
159
+ op: z.ZodOptional<z.ZodEnum<{
160
+ in: "in";
161
+ "not in": "not in";
162
+ }>>;
59
163
  value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
60
164
  }, z.core.$strip>]>>]>;
61
165
  text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>;
@@ -81,5 +185,640 @@ export declare const zAnnotation: z.ZodObject<{
81
185
  offsetY: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
82
186
  offsetX: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
83
187
  }, z.core.$strip>>]>>;
188
+ annotationVerticalLine: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
189
+ selector: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
190
+ field: z.ZodString;
191
+ operator: z.ZodOptional<z.ZodEnum<{
192
+ "=": "=";
193
+ "==": "==";
194
+ "!=": "!=";
195
+ ">": ">";
196
+ "<": "<";
197
+ ">=": ">=";
198
+ "<=": "<=";
199
+ between: "between";
200
+ }>>;
201
+ op: z.ZodOptional<z.ZodEnum<{
202
+ "=": "=";
203
+ "==": "==";
204
+ "!=": "!=";
205
+ ">": ">";
206
+ "<": "<";
207
+ ">=": ">=";
208
+ "<=": "<=";
209
+ between: "between";
210
+ }>>;
211
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
212
+ }, z.core.$strip>, z.ZodObject<{
213
+ field: z.ZodString;
214
+ operator: z.ZodOptional<z.ZodEnum<{
215
+ in: "in";
216
+ "not in": "not in";
217
+ }>>;
218
+ op: z.ZodOptional<z.ZodEnum<{
219
+ in: "in";
220
+ "not in": "not in";
221
+ }>>;
222
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
223
+ }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
224
+ field: z.ZodString;
225
+ operator: z.ZodOptional<z.ZodEnum<{
226
+ "=": "=";
227
+ "==": "==";
228
+ "!=": "!=";
229
+ ">": ">";
230
+ "<": "<";
231
+ ">=": ">=";
232
+ "<=": "<=";
233
+ between: "between";
234
+ }>>;
235
+ op: z.ZodOptional<z.ZodEnum<{
236
+ "=": "=";
237
+ "==": "==";
238
+ "!=": "!=";
239
+ ">": ">";
240
+ "<": "<";
241
+ ">=": ">=";
242
+ "<=": "<=";
243
+ between: "between";
244
+ }>>;
245
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
246
+ }, z.core.$strip>, z.ZodObject<{
247
+ field: z.ZodString;
248
+ operator: z.ZodOptional<z.ZodEnum<{
249
+ in: "in";
250
+ "not in": "not in";
251
+ }>>;
252
+ op: z.ZodOptional<z.ZodEnum<{
253
+ in: "in";
254
+ "not in": "not in";
255
+ }>>;
256
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
257
+ }, z.core.$strip>]>>]>>;
258
+ xValue: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>]>>;
259
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>;
260
+ textPosition: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
261
+ outsideStart: "outsideStart";
262
+ outsideEnd: "outsideEnd";
263
+ outsideMiddle: "outsideMiddle";
264
+ insideStart: "insideStart";
265
+ insideMiddle: "insideMiddle";
266
+ insideEnd: "insideEnd";
267
+ }>>>;
268
+ textColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
269
+ textFontSize: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
270
+ textFontWeight: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
271
+ textAlign: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
272
+ left: "left";
273
+ right: "right";
274
+ center: "center";
275
+ }>>>;
276
+ textBaseline: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
277
+ top: "top";
278
+ bottom: "bottom";
279
+ middle: "middle";
280
+ }>>>;
281
+ lineVisible: z.ZodOptional<z.ZodBoolean>;
282
+ lineColor: z.ZodOptional<z.ZodString>;
283
+ lineWidth: z.ZodOptional<z.ZodNumber>;
284
+ lineStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"solid">, z.ZodLiteral<"dashed">, z.ZodLiteral<"dotted">]>>;
285
+ backgroundVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
286
+ backgroundColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
287
+ backgroundBorderColor: z.ZodOptional<z.ZodString>;
288
+ backgroundBorderWidth: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
289
+ backgroundBorderRadius: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
290
+ backgroundPadding: z.ZodOptional<z.ZodNumber>;
291
+ offsetY: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
292
+ offsetX: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
293
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
294
+ selector: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
295
+ field: z.ZodString;
296
+ operator: z.ZodOptional<z.ZodEnum<{
297
+ "=": "=";
298
+ "==": "==";
299
+ "!=": "!=";
300
+ ">": ">";
301
+ "<": "<";
302
+ ">=": ">=";
303
+ "<=": "<=";
304
+ between: "between";
305
+ }>>;
306
+ op: z.ZodOptional<z.ZodEnum<{
307
+ "=": "=";
308
+ "==": "==";
309
+ "!=": "!=";
310
+ ">": ">";
311
+ "<": "<";
312
+ ">=": ">=";
313
+ "<=": "<=";
314
+ between: "between";
315
+ }>>;
316
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
317
+ }, z.core.$strip>, z.ZodObject<{
318
+ field: z.ZodString;
319
+ operator: z.ZodOptional<z.ZodEnum<{
320
+ in: "in";
321
+ "not in": "not in";
322
+ }>>;
323
+ op: z.ZodOptional<z.ZodEnum<{
324
+ in: "in";
325
+ "not in": "not in";
326
+ }>>;
327
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
328
+ }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
329
+ field: z.ZodString;
330
+ operator: z.ZodOptional<z.ZodEnum<{
331
+ "=": "=";
332
+ "==": "==";
333
+ "!=": "!=";
334
+ ">": ">";
335
+ "<": "<";
336
+ ">=": ">=";
337
+ "<=": "<=";
338
+ between: "between";
339
+ }>>;
340
+ op: z.ZodOptional<z.ZodEnum<{
341
+ "=": "=";
342
+ "==": "==";
343
+ "!=": "!=";
344
+ ">": ">";
345
+ "<": "<";
346
+ ">=": ">=";
347
+ "<=": "<=";
348
+ between: "between";
349
+ }>>;
350
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
351
+ }, z.core.$strip>, z.ZodObject<{
352
+ field: z.ZodString;
353
+ operator: z.ZodOptional<z.ZodEnum<{
354
+ in: "in";
355
+ "not in": "not in";
356
+ }>>;
357
+ op: z.ZodOptional<z.ZodEnum<{
358
+ in: "in";
359
+ "not in": "not in";
360
+ }>>;
361
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
362
+ }, z.core.$strip>]>>]>>;
363
+ xValue: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>]>>;
364
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>;
365
+ textPosition: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
366
+ outsideStart: "outsideStart";
367
+ outsideEnd: "outsideEnd";
368
+ outsideMiddle: "outsideMiddle";
369
+ insideStart: "insideStart";
370
+ insideMiddle: "insideMiddle";
371
+ insideEnd: "insideEnd";
372
+ }>>>;
373
+ textColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
374
+ textFontSize: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
375
+ textFontWeight: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
376
+ textAlign: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
377
+ left: "left";
378
+ right: "right";
379
+ center: "center";
380
+ }>>>;
381
+ textBaseline: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
382
+ top: "top";
383
+ bottom: "bottom";
384
+ middle: "middle";
385
+ }>>>;
386
+ lineVisible: z.ZodOptional<z.ZodBoolean>;
387
+ lineColor: z.ZodOptional<z.ZodString>;
388
+ lineWidth: z.ZodOptional<z.ZodNumber>;
389
+ lineStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"solid">, z.ZodLiteral<"dashed">, z.ZodLiteral<"dotted">]>>;
390
+ backgroundVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
391
+ backgroundColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
392
+ backgroundBorderColor: z.ZodOptional<z.ZodString>;
393
+ backgroundBorderWidth: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
394
+ backgroundBorderRadius: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
395
+ backgroundPadding: z.ZodOptional<z.ZodNumber>;
396
+ offsetY: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
397
+ offsetX: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
398
+ }, z.core.$strip>>]>>;
399
+ annotationHorizontalLine: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
400
+ selector: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
401
+ field: z.ZodString;
402
+ operator: z.ZodOptional<z.ZodEnum<{
403
+ "=": "=";
404
+ "==": "==";
405
+ "!=": "!=";
406
+ ">": ">";
407
+ "<": "<";
408
+ ">=": ">=";
409
+ "<=": "<=";
410
+ between: "between";
411
+ }>>;
412
+ op: z.ZodOptional<z.ZodEnum<{
413
+ "=": "=";
414
+ "==": "==";
415
+ "!=": "!=";
416
+ ">": ">";
417
+ "<": "<";
418
+ ">=": ">=";
419
+ "<=": "<=";
420
+ between: "between";
421
+ }>>;
422
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
423
+ }, z.core.$strip>, z.ZodObject<{
424
+ field: z.ZodString;
425
+ operator: z.ZodOptional<z.ZodEnum<{
426
+ in: "in";
427
+ "not in": "not in";
428
+ }>>;
429
+ op: z.ZodOptional<z.ZodEnum<{
430
+ in: "in";
431
+ "not in": "not in";
432
+ }>>;
433
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
434
+ }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
435
+ field: z.ZodString;
436
+ operator: z.ZodOptional<z.ZodEnum<{
437
+ "=": "=";
438
+ "==": "==";
439
+ "!=": "!=";
440
+ ">": ">";
441
+ "<": "<";
442
+ ">=": ">=";
443
+ "<=": "<=";
444
+ between: "between";
445
+ }>>;
446
+ op: z.ZodOptional<z.ZodEnum<{
447
+ "=": "=";
448
+ "==": "==";
449
+ "!=": "!=";
450
+ ">": ">";
451
+ "<": "<";
452
+ ">=": ">=";
453
+ "<=": "<=";
454
+ between: "between";
455
+ }>>;
456
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
457
+ }, z.core.$strip>, z.ZodObject<{
458
+ field: z.ZodString;
459
+ operator: z.ZodOptional<z.ZodEnum<{
460
+ in: "in";
461
+ "not in": "not in";
462
+ }>>;
463
+ op: z.ZodOptional<z.ZodEnum<{
464
+ in: "in";
465
+ "not in": "not in";
466
+ }>>;
467
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
468
+ }, z.core.$strip>]>>]>>;
469
+ yValue: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>]>>;
470
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>;
471
+ textPosition: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
472
+ outsideStart: "outsideStart";
473
+ outsideEnd: "outsideEnd";
474
+ outsideMiddle: "outsideMiddle";
475
+ insideStart: "insideStart";
476
+ insideMiddle: "insideMiddle";
477
+ insideEnd: "insideEnd";
478
+ }>>>;
479
+ textColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
480
+ textFontSize: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
481
+ textFontWeight: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
482
+ textAlign: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
483
+ left: "left";
484
+ right: "right";
485
+ center: "center";
486
+ }>>>;
487
+ textBaseline: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
488
+ top: "top";
489
+ bottom: "bottom";
490
+ middle: "middle";
491
+ }>>>;
492
+ lineVisible: z.ZodOptional<z.ZodBoolean>;
493
+ lineColor: z.ZodOptional<z.ZodString>;
494
+ lineWidth: z.ZodOptional<z.ZodNumber>;
495
+ lineStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"solid">, z.ZodLiteral<"dashed">, z.ZodLiteral<"dotted">]>>;
496
+ backgroundVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
497
+ backgroundColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
498
+ backgroundBorderColor: z.ZodOptional<z.ZodString>;
499
+ backgroundBorderWidth: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
500
+ backgroundBorderRadius: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
501
+ backgroundPadding: z.ZodOptional<z.ZodNumber>;
502
+ offsetY: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
503
+ offsetX: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
504
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
505
+ selector: z.ZodOptional<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
506
+ field: z.ZodString;
507
+ operator: z.ZodOptional<z.ZodEnum<{
508
+ "=": "=";
509
+ "==": "==";
510
+ "!=": "!=";
511
+ ">": ">";
512
+ "<": "<";
513
+ ">=": ">=";
514
+ "<=": "<=";
515
+ between: "between";
516
+ }>>;
517
+ op: z.ZodOptional<z.ZodEnum<{
518
+ "=": "=";
519
+ "==": "==";
520
+ "!=": "!=";
521
+ ">": ">";
522
+ "<": "<";
523
+ ">=": ">=";
524
+ "<=": "<=";
525
+ between: "between";
526
+ }>>;
527
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
528
+ }, z.core.$strip>, z.ZodObject<{
529
+ field: z.ZodString;
530
+ operator: z.ZodOptional<z.ZodEnum<{
531
+ in: "in";
532
+ "not in": "not in";
533
+ }>>;
534
+ op: z.ZodOptional<z.ZodEnum<{
535
+ in: "in";
536
+ "not in": "not in";
537
+ }>>;
538
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
539
+ }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
540
+ field: z.ZodString;
541
+ operator: z.ZodOptional<z.ZodEnum<{
542
+ "=": "=";
543
+ "==": "==";
544
+ "!=": "!=";
545
+ ">": ">";
546
+ "<": "<";
547
+ ">=": ">=";
548
+ "<=": "<=";
549
+ between: "between";
550
+ }>>;
551
+ op: z.ZodOptional<z.ZodEnum<{
552
+ "=": "=";
553
+ "==": "==";
554
+ "!=": "!=";
555
+ ">": ">";
556
+ "<": "<";
557
+ ">=": ">=";
558
+ "<=": "<=";
559
+ between: "between";
560
+ }>>;
561
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
562
+ }, z.core.$strip>, z.ZodObject<{
563
+ field: z.ZodString;
564
+ operator: z.ZodOptional<z.ZodEnum<{
565
+ in: "in";
566
+ "not in": "not in";
567
+ }>>;
568
+ op: z.ZodOptional<z.ZodEnum<{
569
+ in: "in";
570
+ "not in": "not in";
571
+ }>>;
572
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
573
+ }, z.core.$strip>]>>]>>;
574
+ yValue: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodArray<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>]>>;
575
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>;
576
+ textPosition: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
577
+ outsideStart: "outsideStart";
578
+ outsideEnd: "outsideEnd";
579
+ outsideMiddle: "outsideMiddle";
580
+ insideStart: "insideStart";
581
+ insideMiddle: "insideMiddle";
582
+ insideEnd: "insideEnd";
583
+ }>>>;
584
+ textColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
585
+ textFontSize: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
586
+ textFontWeight: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
587
+ textAlign: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
588
+ left: "left";
589
+ right: "right";
590
+ center: "center";
591
+ }>>>;
592
+ textBaseline: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
593
+ top: "top";
594
+ bottom: "bottom";
595
+ middle: "middle";
596
+ }>>>;
597
+ lineVisible: z.ZodOptional<z.ZodBoolean>;
598
+ lineColor: z.ZodOptional<z.ZodString>;
599
+ lineWidth: z.ZodOptional<z.ZodNumber>;
600
+ lineStyle: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"solid">, z.ZodLiteral<"dashed">, z.ZodLiteral<"dotted">]>>;
601
+ backgroundVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
602
+ backgroundColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
603
+ backgroundBorderColor: z.ZodOptional<z.ZodString>;
604
+ backgroundBorderWidth: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
605
+ backgroundBorderRadius: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
606
+ backgroundPadding: z.ZodOptional<z.ZodNumber>;
607
+ offsetY: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
608
+ offsetX: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
609
+ }, z.core.$strip>>]>>;
610
+ annotationArea: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
611
+ selector: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
612
+ field: z.ZodString;
613
+ operator: z.ZodOptional<z.ZodEnum<{
614
+ "=": "=";
615
+ "==": "==";
616
+ "!=": "!=";
617
+ ">": ">";
618
+ "<": "<";
619
+ ">=": ">=";
620
+ "<=": "<=";
621
+ between: "between";
622
+ }>>;
623
+ op: z.ZodOptional<z.ZodEnum<{
624
+ "=": "=";
625
+ "==": "==";
626
+ "!=": "!=";
627
+ ">": ">";
628
+ "<": "<";
629
+ ">=": ">=";
630
+ "<=": "<=";
631
+ between: "between";
632
+ }>>;
633
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
634
+ }, z.core.$strip>, z.ZodObject<{
635
+ field: z.ZodString;
636
+ operator: z.ZodOptional<z.ZodEnum<{
637
+ in: "in";
638
+ "not in": "not in";
639
+ }>>;
640
+ op: z.ZodOptional<z.ZodEnum<{
641
+ in: "in";
642
+ "not in": "not in";
643
+ }>>;
644
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
645
+ }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
646
+ field: z.ZodString;
647
+ operator: z.ZodOptional<z.ZodEnum<{
648
+ "=": "=";
649
+ "==": "==";
650
+ "!=": "!=";
651
+ ">": ">";
652
+ "<": "<";
653
+ ">=": ">=";
654
+ "<=": "<=";
655
+ between: "between";
656
+ }>>;
657
+ op: z.ZodOptional<z.ZodEnum<{
658
+ "=": "=";
659
+ "==": "==";
660
+ "!=": "!=";
661
+ ">": ">";
662
+ "<": "<";
663
+ ">=": ">=";
664
+ "<=": "<=";
665
+ between: "between";
666
+ }>>;
667
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
668
+ }, z.core.$strip>, z.ZodObject<{
669
+ field: z.ZodString;
670
+ operator: z.ZodOptional<z.ZodEnum<{
671
+ in: "in";
672
+ "not in": "not in";
673
+ }>>;
674
+ op: z.ZodOptional<z.ZodEnum<{
675
+ in: "in";
676
+ "not in": "not in";
677
+ }>>;
678
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
679
+ }, z.core.$strip>]>>]>;
680
+ textPosition: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
681
+ left: "left";
682
+ top: "top";
683
+ topLeft: "topLeft";
684
+ topRight: "topRight";
685
+ right: "right";
686
+ bottom: "bottom";
687
+ bottomLeft: "bottomLeft";
688
+ bottomRight: "bottomRight";
689
+ }>>>;
690
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>;
691
+ textColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
692
+ textFontSize: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
693
+ textFontWeight: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
694
+ textAlign: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
695
+ left: "left";
696
+ right: "right";
697
+ center: "center";
698
+ }>>>;
699
+ textBaseline: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
700
+ top: "top";
701
+ bottom: "bottom";
702
+ middle: "middle";
703
+ }>>>;
704
+ backgroundVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
705
+ backgroundColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
706
+ backgroundBorderColor: z.ZodOptional<z.ZodString>;
707
+ backgroundBorderWidth: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
708
+ backgroundBorderRadius: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
709
+ backgroundPadding: z.ZodOptional<z.ZodNumber>;
710
+ areaColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
711
+ areaColorOpacity: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
712
+ areaBorderColor: z.ZodOptional<z.ZodNumber>;
713
+ areaBorderWidth: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
714
+ areaBorderRadius: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
715
+ outerPadding: z.ZodOptional<z.ZodNumber>;
716
+ }, z.core.$strip>, z.ZodArray<z.ZodObject<{
717
+ selector: z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
718
+ field: z.ZodString;
719
+ operator: z.ZodOptional<z.ZodEnum<{
720
+ "=": "=";
721
+ "==": "==";
722
+ "!=": "!=";
723
+ ">": ">";
724
+ "<": "<";
725
+ ">=": ">=";
726
+ "<=": "<=";
727
+ between: "between";
728
+ }>>;
729
+ op: z.ZodOptional<z.ZodEnum<{
730
+ "=": "=";
731
+ "==": "==";
732
+ "!=": "!=";
733
+ ">": ">";
734
+ "<": "<";
735
+ ">=": ">=";
736
+ "<=": "<=";
737
+ between: "between";
738
+ }>>;
739
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
740
+ }, z.core.$strip>, z.ZodObject<{
741
+ field: z.ZodString;
742
+ operator: z.ZodOptional<z.ZodEnum<{
743
+ in: "in";
744
+ "not in": "not in";
745
+ }>>;
746
+ op: z.ZodOptional<z.ZodEnum<{
747
+ in: "in";
748
+ "not in": "not in";
749
+ }>>;
750
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
751
+ }, z.core.$strip>]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodObject<{
752
+ field: z.ZodString;
753
+ operator: z.ZodOptional<z.ZodEnum<{
754
+ "=": "=";
755
+ "==": "==";
756
+ "!=": "!=";
757
+ ">": ">";
758
+ "<": "<";
759
+ ">=": ">=";
760
+ "<=": "<=";
761
+ between: "between";
762
+ }>>;
763
+ op: z.ZodOptional<z.ZodEnum<{
764
+ "=": "=";
765
+ "==": "==";
766
+ "!=": "!=";
767
+ ">": ">";
768
+ "<": "<";
769
+ ">=": ">=";
770
+ "<=": "<=";
771
+ between: "between";
772
+ }>>;
773
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
774
+ }, z.core.$strip>, z.ZodObject<{
775
+ field: z.ZodString;
776
+ operator: z.ZodOptional<z.ZodEnum<{
777
+ in: "in";
778
+ "not in": "not in";
779
+ }>>;
780
+ op: z.ZodOptional<z.ZodEnum<{
781
+ in: "in";
782
+ "not in": "not in";
783
+ }>>;
784
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>]>;
785
+ }, z.core.$strip>]>>]>;
786
+ textPosition: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
787
+ left: "left";
788
+ top: "top";
789
+ topLeft: "topLeft";
790
+ topRight: "topRight";
791
+ right: "right";
792
+ bottom: "bottom";
793
+ bottomLeft: "bottomLeft";
794
+ bottomRight: "bottomRight";
795
+ }>>>;
796
+ text: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>;
797
+ textColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
798
+ textFontSize: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
799
+ textFontWeight: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
800
+ textAlign: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
801
+ left: "left";
802
+ right: "right";
803
+ center: "center";
804
+ }>>>;
805
+ textBaseline: z.ZodOptional<z.ZodDefault<z.ZodEnum<{
806
+ top: "top";
807
+ bottom: "bottom";
808
+ middle: "middle";
809
+ }>>>;
810
+ backgroundVisible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
811
+ backgroundColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
812
+ backgroundBorderColor: z.ZodOptional<z.ZodString>;
813
+ backgroundBorderWidth: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
814
+ backgroundBorderRadius: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
815
+ backgroundPadding: z.ZodOptional<z.ZodNumber>;
816
+ areaColor: z.ZodOptional<z.ZodDefault<z.ZodString>>;
817
+ areaColorOpacity: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
818
+ areaBorderColor: z.ZodOptional<z.ZodNumber>;
819
+ areaBorderWidth: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
820
+ areaBorderRadius: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
821
+ outerPadding: z.ZodOptional<z.ZodNumber>;
822
+ }, z.core.$strip>>]>>;
84
823
  }, z.core.$strip>;
85
824
  export type Annotation = z.infer<typeof zAnnotation>;