@wise/dynamic-flow-types 3.15.1 → 3.17.0
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/main.js +85 -41
- package/build/main.mjs +85 -41
- package/build/next/feature/SuggestionsValue.d.ts +5 -0
- package/build/next/feature/toolbar/Toolbar.d.ts +4 -0
- package/build/next/feature/toolbar/ToolbarButton.d.ts +4 -0
- package/build/next/layout/AlertLayout.d.ts +4 -0
- package/build/next/layout/BoxLayout.d.ts +4 -0
- package/build/next/layout/ButtonLayout.d.ts +4 -0
- package/build/next/layout/ColumnsLayout.d.ts +4 -0
- package/build/next/layout/DecisionLayout.d.ts +4 -0
- package/build/next/layout/DecisionLayoutOption.d.ts +6 -1
- package/build/next/layout/DividerLayout.d.ts +4 -0
- package/build/next/layout/FormLayout.d.ts +4 -0
- package/build/next/layout/HeadingLayout.d.ts +4 -0
- package/build/next/layout/ImageLayout.d.ts +4 -0
- package/build/next/layout/InfoLayout.d.ts +4 -0
- package/build/next/layout/InstructionsLayout.d.ts +4 -0
- package/build/next/layout/InstructionsLayoutItem.d.ts +5 -0
- package/build/next/layout/ListLayout.d.ts +4 -0
- package/build/next/layout/ListLayoutItem.d.ts +10 -0
- package/build/next/layout/LoadingIndicatorLayout.d.ts +4 -0
- package/build/next/layout/MarkdownLayout.d.ts +4 -0
- package/build/next/layout/ModalLayout.d.ts +4 -0
- package/build/next/layout/ParagraphLayout.d.ts +4 -0
- package/build/next/layout/ProgressLayout.d.ts +4 -0
- package/build/next/layout/ReviewLayout.d.ts +4 -0
- package/build/next/layout/ReviewLayoutField.d.ts +5 -0
- package/build/next/layout/SearchLayout.d.ts +4 -0
- package/build/next/layout/SectionLayout.d.ts +4 -0
- package/build/next/layout/StatusListLayout.d.ts +4 -0
- package/build/next/layout/StatusListLayoutItem.d.ts +5 -0
- package/build/next/layout/TabsLayout.d.ts +4 -0
- package/build/next/layout/TabsLayoutTab.d.ts +5 -0
- package/build/next/schema/AllOfSchema.d.ts +4 -0
- package/build/next/schema/ArraySchemaList.d.ts +4 -0
- package/build/next/schema/ArraySchemaTuple.d.ts +4 -0
- package/build/next/schema/BlobSchema.d.ts +4 -0
- package/build/next/schema/BooleanSchema.d.ts +4 -0
- package/build/next/schema/ConstSchema.d.ts +4 -0
- package/build/next/schema/IntegerSchema.d.ts +4 -0
- package/build/next/schema/NumberSchema.d.ts +4 -0
- package/build/next/schema/ObjectSchema.d.ts +8 -0
- package/build/next/schema/OneOfSchema.d.ts +4 -0
- package/build/next/schema/StringSchema.d.ts +4 -0
- package/build/next/step/Step.d.ts +4 -0
- package/build/renderers/DecisionRendererProps.d.ts +2 -0
- package/build/renderers/InstructionsRendererProps.d.ts +2 -0
- package/build/renderers/ListRendererProps.d.ts +3 -0
- package/build/renderers/RendererProps.d.ts +1 -0
- package/build/renderers/RepeatableRendererProps.d.ts +1 -0
- package/build/renderers/ReviewRendererProps.d.ts +2 -0
- package/build/renderers/SelectInputRendererProps.d.ts +1 -0
- package/build/renderers/StatusListRendererProps.d.ts +2 -0
- package/build/renderers/StepRendererProps.d.ts +3 -0
- package/build/renderers/Suggestions.d.ts +2 -0
- package/build/renderers/TabsRendererProps.d.ts +2 -0
- package/build/zod/schemas.d.ts +49 -0
- package/build/zod/schemas.ts +722 -677
- package/package.json +5 -5
package/build/zod/schemas.d.ts
CHANGED
|
@@ -192,18 +192,21 @@ export declare const loadingIndicatorLayoutSchema: z.ZodObject<{
|
|
|
192
192
|
control: z.ZodOptional<z.ZodString>;
|
|
193
193
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
194
194
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
195
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
195
196
|
}, "strip", z.ZodTypeAny, {
|
|
196
197
|
type: "loading-indicator";
|
|
197
198
|
analyticsId?: string | undefined;
|
|
198
199
|
control?: string | undefined;
|
|
199
200
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
200
201
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
202
|
+
tags?: string[] | undefined;
|
|
201
203
|
}, {
|
|
202
204
|
type: "loading-indicator";
|
|
203
205
|
analyticsId?: string | undefined;
|
|
204
206
|
control?: string | undefined;
|
|
205
207
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
206
208
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
209
|
+
tags?: string[] | undefined;
|
|
207
210
|
}>;
|
|
208
211
|
export declare const paragraphLayoutSchema: z.ZodObject<{
|
|
209
212
|
type: z.ZodLiteral<"paragraph">;
|
|
@@ -212,12 +215,14 @@ export declare const paragraphLayoutSchema: z.ZodObject<{
|
|
|
212
215
|
control: z.ZodOptional<z.ZodString>;
|
|
213
216
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
214
217
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
218
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
215
219
|
}, "strip", z.ZodTypeAny, {
|
|
216
220
|
type: "paragraph";
|
|
217
221
|
text: string;
|
|
218
222
|
analyticsId?: string | undefined;
|
|
219
223
|
control?: string | undefined;
|
|
220
224
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
225
|
+
tags?: string[] | undefined;
|
|
221
226
|
align?: "left" | "right" | "center" | undefined;
|
|
222
227
|
}, {
|
|
223
228
|
type: "paragraph";
|
|
@@ -225,6 +230,7 @@ export declare const paragraphLayoutSchema: z.ZodObject<{
|
|
|
225
230
|
analyticsId?: string | undefined;
|
|
226
231
|
control?: string | undefined;
|
|
227
232
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
233
|
+
tags?: string[] | undefined;
|
|
228
234
|
align?: "left" | "right" | "center" | undefined;
|
|
229
235
|
}>;
|
|
230
236
|
export declare const dividerLayoutSchema: z.ZodObject<{
|
|
@@ -232,16 +238,19 @@ export declare const dividerLayoutSchema: z.ZodObject<{
|
|
|
232
238
|
control: z.ZodOptional<z.ZodString>;
|
|
233
239
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
234
240
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
241
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
235
242
|
}, "strip", z.ZodTypeAny, {
|
|
236
243
|
type: "divider";
|
|
237
244
|
analyticsId?: string | undefined;
|
|
238
245
|
control?: string | undefined;
|
|
239
246
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
247
|
+
tags?: string[] | undefined;
|
|
240
248
|
}, {
|
|
241
249
|
type: "divider";
|
|
242
250
|
analyticsId?: string | undefined;
|
|
243
251
|
control?: string | undefined;
|
|
244
252
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
253
|
+
tags?: string[] | undefined;
|
|
245
254
|
}>;
|
|
246
255
|
export declare const listLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"warning">, z.ZodLiteral<"neutral">, z.ZodLiteral<"positive">]>;
|
|
247
256
|
export declare const formLayoutSchemaReferenceSchema: z.ZodObject<{
|
|
@@ -277,6 +286,7 @@ export declare const imageLayoutSchema: z.ZodObject<{
|
|
|
277
286
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
278
287
|
align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
|
|
279
288
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
289
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
280
290
|
}, "strip", z.ZodTypeAny, {
|
|
281
291
|
type: "image";
|
|
282
292
|
url?: string | undefined;
|
|
@@ -292,6 +302,7 @@ export declare const imageLayoutSchema: z.ZodObject<{
|
|
|
292
302
|
} | undefined;
|
|
293
303
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
294
304
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
305
|
+
tags?: string[] | undefined;
|
|
295
306
|
align?: "left" | "right" | "center" | undefined;
|
|
296
307
|
}, {
|
|
297
308
|
type: "image";
|
|
@@ -308,6 +319,7 @@ export declare const imageLayoutSchema: z.ZodObject<{
|
|
|
308
319
|
} | undefined;
|
|
309
320
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
310
321
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
322
|
+
tags?: string[] | undefined;
|
|
311
323
|
align?: "left" | "right" | "center" | undefined;
|
|
312
324
|
}>;
|
|
313
325
|
export declare const statusListLayoutStatusSchema: z.ZodUnion<[z.ZodLiteral<"not-done">, z.ZodLiteral<"pending">, z.ZodLiteral<"done">]>;
|
|
@@ -316,15 +328,18 @@ export declare const instructionsLayoutItemSchema: z.ZodObject<{
|
|
|
316
328
|
context: z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>;
|
|
317
329
|
tag: z.ZodOptional<z.ZodString>;
|
|
318
330
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
331
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
319
332
|
}, "strip", z.ZodTypeAny, {
|
|
320
333
|
text: string;
|
|
321
334
|
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
322
335
|
analyticsId?: string | undefined;
|
|
336
|
+
tags?: string[] | undefined;
|
|
323
337
|
tag?: string | undefined;
|
|
324
338
|
}, {
|
|
325
339
|
text: string;
|
|
326
340
|
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
327
341
|
analyticsId?: string | undefined;
|
|
342
|
+
tags?: string[] | undefined;
|
|
328
343
|
tag?: string | undefined;
|
|
329
344
|
}>;
|
|
330
345
|
export declare const modalLayoutTriggerSchema: z.ZodObject<{
|
|
@@ -351,6 +366,7 @@ export declare const searchLayoutSchema: z.ZodObject<{
|
|
|
351
366
|
control: z.ZodOptional<z.ZodString>;
|
|
352
367
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
353
368
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
369
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
354
370
|
}, "strip", z.ZodTypeAny, {
|
|
355
371
|
url: string;
|
|
356
372
|
type: "search";
|
|
@@ -360,6 +376,7 @@ export declare const searchLayoutSchema: z.ZodObject<{
|
|
|
360
376
|
analyticsId?: string | undefined;
|
|
361
377
|
control?: string | undefined;
|
|
362
378
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
379
|
+
tags?: string[] | undefined;
|
|
363
380
|
emptyMessage?: string | undefined;
|
|
364
381
|
}, {
|
|
365
382
|
url: string;
|
|
@@ -370,10 +387,12 @@ export declare const searchLayoutSchema: z.ZodObject<{
|
|
|
370
387
|
analyticsId?: string | undefined;
|
|
371
388
|
control?: string | undefined;
|
|
372
389
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
390
|
+
tags?: string[] | undefined;
|
|
373
391
|
emptyMessage?: string | undefined;
|
|
374
392
|
}>;
|
|
375
393
|
export declare const infoLayoutSchema: z.ZodObject<{
|
|
376
394
|
type: z.ZodLiteral<"info">;
|
|
395
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
377
396
|
markdown: z.ZodString;
|
|
378
397
|
align: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"left">, z.ZodLiteral<"center">, z.ZodLiteral<"right">]>>;
|
|
379
398
|
control: z.ZodOptional<z.ZodString>;
|
|
@@ -385,6 +404,7 @@ export declare const infoLayoutSchema: z.ZodObject<{
|
|
|
385
404
|
analyticsId?: string | undefined;
|
|
386
405
|
control?: string | undefined;
|
|
387
406
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
407
|
+
tags?: string[] | undefined;
|
|
388
408
|
align?: "left" | "right" | "center" | undefined;
|
|
389
409
|
}, {
|
|
390
410
|
type: "info";
|
|
@@ -392,6 +412,7 @@ export declare const infoLayoutSchema: z.ZodObject<{
|
|
|
392
412
|
analyticsId?: string | undefined;
|
|
393
413
|
control?: string | undefined;
|
|
394
414
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
415
|
+
tags?: string[] | undefined;
|
|
395
416
|
align?: "left" | "right" | "center" | undefined;
|
|
396
417
|
}>;
|
|
397
418
|
export declare const formLayoutSchema: z.ZodObject<{
|
|
@@ -407,12 +428,14 @@ export declare const formLayoutSchema: z.ZodObject<{
|
|
|
407
428
|
control: z.ZodOptional<z.ZodString>;
|
|
408
429
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
409
430
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
431
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
410
432
|
}, "strip", z.ZodTypeAny, {
|
|
411
433
|
type: "form";
|
|
412
434
|
schemaId: string;
|
|
413
435
|
analyticsId?: string | undefined;
|
|
414
436
|
control?: string | undefined;
|
|
415
437
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
438
|
+
tags?: string[] | undefined;
|
|
416
439
|
schema?: {
|
|
417
440
|
$ref: string;
|
|
418
441
|
} | undefined;
|
|
@@ -422,6 +445,7 @@ export declare const formLayoutSchema: z.ZodObject<{
|
|
|
422
445
|
analyticsId?: string | undefined;
|
|
423
446
|
control?: string | undefined;
|
|
424
447
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
448
|
+
tags?: string[] | undefined;
|
|
425
449
|
schema?: {
|
|
426
450
|
$ref: string;
|
|
427
451
|
} | undefined;
|
|
@@ -434,6 +458,7 @@ export declare const headingLayoutSchema: z.ZodObject<{
|
|
|
434
458
|
control: z.ZodOptional<z.ZodString>;
|
|
435
459
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
436
460
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
461
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
437
462
|
}, "strip", z.ZodTypeAny, {
|
|
438
463
|
type: "heading";
|
|
439
464
|
text: string;
|
|
@@ -441,6 +466,7 @@ export declare const headingLayoutSchema: z.ZodObject<{
|
|
|
441
466
|
control?: string | undefined;
|
|
442
467
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
443
468
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
469
|
+
tags?: string[] | undefined;
|
|
444
470
|
align?: "left" | "right" | "center" | undefined;
|
|
445
471
|
}, {
|
|
446
472
|
type: "heading";
|
|
@@ -449,6 +475,7 @@ export declare const headingLayoutSchema: z.ZodObject<{
|
|
|
449
475
|
control?: string | undefined;
|
|
450
476
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
451
477
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
478
|
+
tags?: string[] | undefined;
|
|
452
479
|
align?: "left" | "right" | "center" | undefined;
|
|
453
480
|
}>;
|
|
454
481
|
export declare const instructionsLayoutSchema: z.ZodObject<{
|
|
@@ -459,44 +486,52 @@ export declare const instructionsLayoutSchema: z.ZodObject<{
|
|
|
459
486
|
context: z.ZodUnion<[z.ZodLiteral<"positive">, z.ZodLiteral<"neutral">, z.ZodLiteral<"warning">, z.ZodLiteral<"negative">, z.ZodLiteral<"success">, z.ZodLiteral<"failure">, z.ZodLiteral<"info">, z.ZodLiteral<"primary">]>;
|
|
460
487
|
tag: z.ZodOptional<z.ZodString>;
|
|
461
488
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
489
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
462
490
|
}, "strip", z.ZodTypeAny, {
|
|
463
491
|
text: string;
|
|
464
492
|
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
465
493
|
analyticsId?: string | undefined;
|
|
494
|
+
tags?: string[] | undefined;
|
|
466
495
|
tag?: string | undefined;
|
|
467
496
|
}, {
|
|
468
497
|
text: string;
|
|
469
498
|
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
470
499
|
analyticsId?: string | undefined;
|
|
500
|
+
tags?: string[] | undefined;
|
|
471
501
|
tag?: string | undefined;
|
|
472
502
|
}>, "many">;
|
|
473
503
|
control: z.ZodOptional<z.ZodString>;
|
|
474
504
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
475
505
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
506
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
476
507
|
}, "strip", z.ZodTypeAny, {
|
|
477
508
|
type: "instructions";
|
|
478
509
|
items: {
|
|
479
510
|
text: string;
|
|
480
511
|
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
481
512
|
analyticsId?: string | undefined;
|
|
513
|
+
tags?: string[] | undefined;
|
|
482
514
|
tag?: string | undefined;
|
|
483
515
|
}[];
|
|
484
516
|
analyticsId?: string | undefined;
|
|
485
517
|
title?: string | undefined;
|
|
486
518
|
control?: string | undefined;
|
|
487
519
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
520
|
+
tags?: string[] | undefined;
|
|
488
521
|
}, {
|
|
489
522
|
type: "instructions";
|
|
490
523
|
items: {
|
|
491
524
|
text: string;
|
|
492
525
|
context: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary";
|
|
493
526
|
analyticsId?: string | undefined;
|
|
527
|
+
tags?: string[] | undefined;
|
|
494
528
|
tag?: string | undefined;
|
|
495
529
|
}[];
|
|
496
530
|
analyticsId?: string | undefined;
|
|
497
531
|
title?: string | undefined;
|
|
498
532
|
control?: string | undefined;
|
|
499
533
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
534
|
+
tags?: string[] | undefined;
|
|
500
535
|
}>;
|
|
501
536
|
export declare const markdownLayoutSchema: z.ZodObject<{
|
|
502
537
|
type: z.ZodLiteral<"markdown">;
|
|
@@ -505,12 +540,14 @@ export declare const markdownLayoutSchema: z.ZodObject<{
|
|
|
505
540
|
control: z.ZodOptional<z.ZodString>;
|
|
506
541
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
507
542
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
543
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
508
544
|
}, "strip", z.ZodTypeAny, {
|
|
509
545
|
type: "markdown";
|
|
510
546
|
content: string;
|
|
511
547
|
analyticsId?: string | undefined;
|
|
512
548
|
control?: string | undefined;
|
|
513
549
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
550
|
+
tags?: string[] | undefined;
|
|
514
551
|
align?: "left" | "right" | "center" | undefined;
|
|
515
552
|
}, {
|
|
516
553
|
type: "markdown";
|
|
@@ -518,6 +555,7 @@ export declare const markdownLayoutSchema: z.ZodObject<{
|
|
|
518
555
|
analyticsId?: string | undefined;
|
|
519
556
|
control?: string | undefined;
|
|
520
557
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
558
|
+
tags?: string[] | undefined;
|
|
521
559
|
align?: "left" | "right" | "center" | undefined;
|
|
522
560
|
}>;
|
|
523
561
|
export declare const progressLayoutSchema: z.ZodObject<{
|
|
@@ -537,6 +575,7 @@ export declare const progressLayoutSchema: z.ZodObject<{
|
|
|
537
575
|
control: z.ZodOptional<z.ZodString>;
|
|
538
576
|
margin: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"xs">, z.ZodLiteral<"sm">, z.ZodLiteral<"md">, z.ZodLiteral<"lg">, z.ZodLiteral<"xl">]>>;
|
|
539
577
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
578
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
540
579
|
}, "strip", z.ZodTypeAny, {
|
|
541
580
|
type: "progress";
|
|
542
581
|
progress: number;
|
|
@@ -550,6 +589,7 @@ export declare const progressLayoutSchema: z.ZodObject<{
|
|
|
550
589
|
control?: string | undefined;
|
|
551
590
|
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
552
591
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
592
|
+
tags?: string[] | undefined;
|
|
553
593
|
}, {
|
|
554
594
|
type: "progress";
|
|
555
595
|
progress: number;
|
|
@@ -563,6 +603,7 @@ export declare const progressLayoutSchema: z.ZodObject<{
|
|
|
563
603
|
control?: string | undefined;
|
|
564
604
|
context?: "neutral" | "warning" | "positive" | "negative" | "success" | "failure" | "info" | "primary" | undefined;
|
|
565
605
|
margin?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
606
|
+
tags?: string[] | undefined;
|
|
566
607
|
}>;
|
|
567
608
|
export declare const columnsLayoutBiasSchema: z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>;
|
|
568
609
|
export declare const mediaSchema: z.ZodUnion<[z.ZodObject<{
|
|
@@ -1163,6 +1204,7 @@ export declare const suggestionsValueSchema: z.ZodObject<{
|
|
|
1163
1204
|
accessibilityDescription?: string | undefined;
|
|
1164
1205
|
}>]>>;
|
|
1165
1206
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
1207
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1166
1208
|
}, "strip", z.ZodTypeAny, {
|
|
1167
1209
|
value: JsonElement;
|
|
1168
1210
|
label: string;
|
|
@@ -1178,6 +1220,7 @@ export declare const suggestionsValueSchema: z.ZodObject<{
|
|
|
1178
1220
|
} | {
|
|
1179
1221
|
text: string;
|
|
1180
1222
|
} | undefined;
|
|
1223
|
+
tags?: string[] | undefined;
|
|
1181
1224
|
tag?: string | undefined;
|
|
1182
1225
|
media?: {
|
|
1183
1226
|
type: "image";
|
|
@@ -1211,6 +1254,7 @@ export declare const suggestionsValueSchema: z.ZodObject<{
|
|
|
1211
1254
|
} | {
|
|
1212
1255
|
text: string;
|
|
1213
1256
|
} | undefined;
|
|
1257
|
+
tags?: string[] | undefined;
|
|
1214
1258
|
tag?: string | undefined;
|
|
1215
1259
|
media?: {
|
|
1216
1260
|
type: "image";
|
|
@@ -1859,6 +1903,7 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
1859
1903
|
accessibilityDescription?: string | undefined;
|
|
1860
1904
|
}>]>>;
|
|
1861
1905
|
analyticsId: z.ZodOptional<z.ZodString>;
|
|
1906
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1862
1907
|
}, "strip", z.ZodTypeAny, {
|
|
1863
1908
|
value: JsonElement;
|
|
1864
1909
|
label: string;
|
|
@@ -1874,6 +1919,7 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
1874
1919
|
} | {
|
|
1875
1920
|
text: string;
|
|
1876
1921
|
} | undefined;
|
|
1922
|
+
tags?: string[] | undefined;
|
|
1877
1923
|
tag?: string | undefined;
|
|
1878
1924
|
media?: {
|
|
1879
1925
|
type: "image";
|
|
@@ -1907,6 +1953,7 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
1907
1953
|
} | {
|
|
1908
1954
|
text: string;
|
|
1909
1955
|
} | undefined;
|
|
1956
|
+
tags?: string[] | undefined;
|
|
1910
1957
|
tag?: string | undefined;
|
|
1911
1958
|
media?: {
|
|
1912
1959
|
type: "image";
|
|
@@ -1942,6 +1989,7 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
1942
1989
|
} | {
|
|
1943
1990
|
text: string;
|
|
1944
1991
|
} | undefined;
|
|
1992
|
+
tags?: string[] | undefined;
|
|
1945
1993
|
tag?: string | undefined;
|
|
1946
1994
|
media?: {
|
|
1947
1995
|
type: "image";
|
|
@@ -1977,6 +2025,7 @@ export declare const suggestionsSchema: z.ZodObject<{
|
|
|
1977
2025
|
} | {
|
|
1978
2026
|
text: string;
|
|
1979
2027
|
} | undefined;
|
|
2028
|
+
tags?: string[] | undefined;
|
|
1980
2029
|
tag?: string | undefined;
|
|
1981
2030
|
media?: {
|
|
1982
2031
|
type: "image";
|