@underdogai/mesh-event-schemas 0.1.0 → 0.3.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/dist/apppacks.d.ts +1466 -246
- package/dist/apppacks.d.ts.map +1 -1
- package/dist/blocks.d.ts +130 -28
- package/dist/blocks.d.ts.map +1 -1
- package/dist/blocks.js +27 -2
- package/dist/blocks.js.map +1 -1
- package/dist/events.d.ts +268 -50
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +92 -0
- package/dist/events.js.map +1 -1
- package/dist/namespace.d.ts +16 -0
- package/dist/namespace.d.ts.map +1 -1
- package/dist/namespace.js +16 -0
- package/dist/namespace.js.map +1 -1
- package/dist/registry.d.ts.map +1 -1
- package/dist/registry.js +22 -1
- package/dist/registry.js.map +1 -1
- package/dist/surfaces.d.ts +44585 -10003
- package/dist/surfaces.d.ts.map +1 -1
- package/dist/surfaces.js +198 -5
- package/dist/surfaces.js.map +1 -1
- package/package.json +2 -2
- package/src/blocks.ts +27 -2
- package/src/events.ts +116 -0
- package/src/namespace.ts +16 -0
- package/src/registry.ts +24 -0
- package/src/surfaces.ts +223 -5
- package/src/templates.ts +1 -1
package/dist/apppacks.d.ts
CHANGED
|
@@ -199,14 +199,32 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
199
199
|
label: z.ZodString;
|
|
200
200
|
value: z.ZodString;
|
|
201
201
|
short: z.ZodOptional<z.ZodBoolean>;
|
|
202
|
+
parts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
203
|
+
text: z.ZodString;
|
|
204
|
+
tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
|
|
205
|
+
}, "strip", z.ZodTypeAny, {
|
|
206
|
+
text: string;
|
|
207
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
208
|
+
}, {
|
|
209
|
+
text: string;
|
|
210
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
211
|
+
}>, "many">>;
|
|
202
212
|
}, "strip", z.ZodTypeAny, {
|
|
203
213
|
value: string;
|
|
204
214
|
label: string;
|
|
205
215
|
short?: boolean | undefined;
|
|
216
|
+
parts?: {
|
|
217
|
+
text: string;
|
|
218
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
219
|
+
}[] | undefined;
|
|
206
220
|
}, {
|
|
207
221
|
value: string;
|
|
208
222
|
label: string;
|
|
209
223
|
short?: boolean | undefined;
|
|
224
|
+
parts?: {
|
|
225
|
+
text: string;
|
|
226
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
227
|
+
}[] | undefined;
|
|
210
228
|
}>, "many">;
|
|
211
229
|
}, "strip", z.ZodTypeAny, {
|
|
212
230
|
type: "fields";
|
|
@@ -214,6 +232,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
214
232
|
value: string;
|
|
215
233
|
label: string;
|
|
216
234
|
short?: boolean | undefined;
|
|
235
|
+
parts?: {
|
|
236
|
+
text: string;
|
|
237
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
238
|
+
}[] | undefined;
|
|
217
239
|
}[];
|
|
218
240
|
}, {
|
|
219
241
|
type: "fields";
|
|
@@ -221,6 +243,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
221
243
|
value: string;
|
|
222
244
|
label: string;
|
|
223
245
|
short?: boolean | undefined;
|
|
246
|
+
parts?: {
|
|
247
|
+
text: string;
|
|
248
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
249
|
+
}[] | undefined;
|
|
224
250
|
}[];
|
|
225
251
|
}>, z.ZodObject<{
|
|
226
252
|
type: z.ZodLiteral<"image">;
|
|
@@ -512,14 +538,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
512
538
|
type: "callout";
|
|
513
539
|
text: string;
|
|
514
540
|
title?: string | undefined;
|
|
515
|
-
icon?: string | undefined;
|
|
516
541
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
542
|
+
icon?: string | undefined;
|
|
517
543
|
}, {
|
|
518
544
|
type: "callout";
|
|
519
545
|
text: string;
|
|
520
546
|
title?: string | undefined;
|
|
521
|
-
icon?: string | undefined;
|
|
522
547
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
548
|
+
icon?: string | undefined;
|
|
523
549
|
}>, z.ZodObject<{
|
|
524
550
|
type: z.ZodLiteral<"entityRef">;
|
|
525
551
|
label: z.ZodString;
|
|
@@ -529,14 +555,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
529
555
|
}, "strip", z.ZodTypeAny, {
|
|
530
556
|
type: "entityRef";
|
|
531
557
|
label: string;
|
|
532
|
-
url?: string | undefined;
|
|
533
558
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
559
|
+
url?: string | undefined;
|
|
534
560
|
entity?: string | undefined;
|
|
535
561
|
}, {
|
|
536
562
|
type: "entityRef";
|
|
537
563
|
label: string;
|
|
538
|
-
url?: string | undefined;
|
|
539
564
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
565
|
+
url?: string | undefined;
|
|
540
566
|
entity?: string | undefined;
|
|
541
567
|
}>, z.ZodObject<{
|
|
542
568
|
type: z.ZodLiteral<"kanban">;
|
|
@@ -562,20 +588,20 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
562
588
|
}, "strip", z.ZodTypeAny, {
|
|
563
589
|
title: string;
|
|
564
590
|
id: string;
|
|
591
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
565
592
|
badge?: {
|
|
566
593
|
label: string;
|
|
567
594
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
568
595
|
} | undefined;
|
|
569
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
570
596
|
meta?: string[] | undefined;
|
|
571
597
|
}, {
|
|
572
598
|
title: string;
|
|
573
599
|
id: string;
|
|
600
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
574
601
|
badge?: {
|
|
575
602
|
label: string;
|
|
576
603
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
577
604
|
} | undefined;
|
|
578
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
579
605
|
meta?: string[] | undefined;
|
|
580
606
|
}>, "many">;
|
|
581
607
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -584,11 +610,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
584
610
|
cards: {
|
|
585
611
|
title: string;
|
|
586
612
|
id: string;
|
|
613
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
587
614
|
badge?: {
|
|
588
615
|
label: string;
|
|
589
616
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
590
617
|
} | undefined;
|
|
591
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
592
618
|
meta?: string[] | undefined;
|
|
593
619
|
}[];
|
|
594
620
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -598,11 +624,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
598
624
|
cards: {
|
|
599
625
|
title: string;
|
|
600
626
|
id: string;
|
|
627
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
601
628
|
badge?: {
|
|
602
629
|
label: string;
|
|
603
630
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
604
631
|
} | undefined;
|
|
605
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
606
632
|
meta?: string[] | undefined;
|
|
607
633
|
}[];
|
|
608
634
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -616,11 +642,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
616
642
|
cards: {
|
|
617
643
|
title: string;
|
|
618
644
|
id: string;
|
|
645
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
619
646
|
badge?: {
|
|
620
647
|
label: string;
|
|
621
648
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
622
649
|
} | undefined;
|
|
623
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
624
650
|
meta?: string[] | undefined;
|
|
625
651
|
}[];
|
|
626
652
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -634,11 +660,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
634
660
|
cards: {
|
|
635
661
|
title: string;
|
|
636
662
|
id: string;
|
|
663
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
637
664
|
badge?: {
|
|
638
665
|
label: string;
|
|
639
666
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
640
667
|
} | undefined;
|
|
641
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
642
668
|
meta?: string[] | undefined;
|
|
643
669
|
}[];
|
|
644
670
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -758,27 +784,33 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
758
784
|
}>, z.ZodObject<{
|
|
759
785
|
type: z.ZodLiteral<"input">;
|
|
760
786
|
name: z.ZodString;
|
|
761
|
-
input: z.ZodOptional<z.ZodEnum<["text", "textarea", "number", "date", "datetime", "time"]>>;
|
|
787
|
+
input: z.ZodOptional<z.ZodEnum<["text", "textarea", "number", "date", "datetime", "time", "url", "email", "file"]>>;
|
|
762
788
|
label: z.ZodOptional<z.ZodString>;
|
|
763
789
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
764
790
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
765
791
|
value: z.ZodOptional<z.ZodString>;
|
|
792
|
+
accept: z.ZodOptional<z.ZodString>;
|
|
793
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
766
794
|
}, "strip", z.ZodTypeAny, {
|
|
767
795
|
type: "input";
|
|
768
796
|
name: string;
|
|
769
797
|
value?: string | undefined;
|
|
770
798
|
label?: string | undefined;
|
|
771
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
799
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
772
800
|
placeholder?: string | undefined;
|
|
773
801
|
required?: boolean | undefined;
|
|
802
|
+
accept?: string | undefined;
|
|
803
|
+
multiple?: boolean | undefined;
|
|
774
804
|
}, {
|
|
775
805
|
type: "input";
|
|
776
806
|
name: string;
|
|
777
807
|
value?: string | undefined;
|
|
778
808
|
label?: string | undefined;
|
|
779
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
809
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
780
810
|
placeholder?: string | undefined;
|
|
781
811
|
required?: boolean | undefined;
|
|
812
|
+
accept?: string | undefined;
|
|
813
|
+
multiple?: boolean | undefined;
|
|
782
814
|
}>, z.ZodObject<{
|
|
783
815
|
type: z.ZodLiteral<"toggle">;
|
|
784
816
|
name: z.ZodString;
|
|
@@ -1216,14 +1248,32 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1216
1248
|
label: z.ZodString;
|
|
1217
1249
|
value: z.ZodString;
|
|
1218
1250
|
short: z.ZodOptional<z.ZodBoolean>;
|
|
1251
|
+
parts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1252
|
+
text: z.ZodString;
|
|
1253
|
+
tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
|
|
1254
|
+
}, "strip", z.ZodTypeAny, {
|
|
1255
|
+
text: string;
|
|
1256
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1257
|
+
}, {
|
|
1258
|
+
text: string;
|
|
1259
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1260
|
+
}>, "many">>;
|
|
1219
1261
|
}, "strip", z.ZodTypeAny, {
|
|
1220
1262
|
value: string;
|
|
1221
1263
|
label: string;
|
|
1222
1264
|
short?: boolean | undefined;
|
|
1265
|
+
parts?: {
|
|
1266
|
+
text: string;
|
|
1267
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1268
|
+
}[] | undefined;
|
|
1223
1269
|
}, {
|
|
1224
1270
|
value: string;
|
|
1225
1271
|
label: string;
|
|
1226
1272
|
short?: boolean | undefined;
|
|
1273
|
+
parts?: {
|
|
1274
|
+
text: string;
|
|
1275
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1276
|
+
}[] | undefined;
|
|
1227
1277
|
}>, "many">;
|
|
1228
1278
|
}, "strip", z.ZodTypeAny, {
|
|
1229
1279
|
type: "fields";
|
|
@@ -1231,6 +1281,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1231
1281
|
value: string;
|
|
1232
1282
|
label: string;
|
|
1233
1283
|
short?: boolean | undefined;
|
|
1284
|
+
parts?: {
|
|
1285
|
+
text: string;
|
|
1286
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1287
|
+
}[] | undefined;
|
|
1234
1288
|
}[];
|
|
1235
1289
|
}, {
|
|
1236
1290
|
type: "fields";
|
|
@@ -1238,6 +1292,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1238
1292
|
value: string;
|
|
1239
1293
|
label: string;
|
|
1240
1294
|
short?: boolean | undefined;
|
|
1295
|
+
parts?: {
|
|
1296
|
+
text: string;
|
|
1297
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1298
|
+
}[] | undefined;
|
|
1241
1299
|
}[];
|
|
1242
1300
|
}>, z.ZodObject<{
|
|
1243
1301
|
type: z.ZodLiteral<"image">;
|
|
@@ -1529,14 +1587,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1529
1587
|
type: "callout";
|
|
1530
1588
|
text: string;
|
|
1531
1589
|
title?: string | undefined;
|
|
1532
|
-
icon?: string | undefined;
|
|
1533
1590
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1591
|
+
icon?: string | undefined;
|
|
1534
1592
|
}, {
|
|
1535
1593
|
type: "callout";
|
|
1536
1594
|
text: string;
|
|
1537
1595
|
title?: string | undefined;
|
|
1538
|
-
icon?: string | undefined;
|
|
1539
1596
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1597
|
+
icon?: string | undefined;
|
|
1540
1598
|
}>, z.ZodObject<{
|
|
1541
1599
|
type: z.ZodLiteral<"entityRef">;
|
|
1542
1600
|
label: z.ZodString;
|
|
@@ -1546,14 +1604,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1546
1604
|
}, "strip", z.ZodTypeAny, {
|
|
1547
1605
|
type: "entityRef";
|
|
1548
1606
|
label: string;
|
|
1549
|
-
url?: string | undefined;
|
|
1550
1607
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1608
|
+
url?: string | undefined;
|
|
1551
1609
|
entity?: string | undefined;
|
|
1552
1610
|
}, {
|
|
1553
1611
|
type: "entityRef";
|
|
1554
1612
|
label: string;
|
|
1555
|
-
url?: string | undefined;
|
|
1556
1613
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1614
|
+
url?: string | undefined;
|
|
1557
1615
|
entity?: string | undefined;
|
|
1558
1616
|
}>, z.ZodObject<{
|
|
1559
1617
|
type: z.ZodLiteral<"kanban">;
|
|
@@ -1579,20 +1637,20 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1579
1637
|
}, "strip", z.ZodTypeAny, {
|
|
1580
1638
|
title: string;
|
|
1581
1639
|
id: string;
|
|
1640
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1582
1641
|
badge?: {
|
|
1583
1642
|
label: string;
|
|
1584
1643
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1585
1644
|
} | undefined;
|
|
1586
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1587
1645
|
meta?: string[] | undefined;
|
|
1588
1646
|
}, {
|
|
1589
1647
|
title: string;
|
|
1590
1648
|
id: string;
|
|
1649
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1591
1650
|
badge?: {
|
|
1592
1651
|
label: string;
|
|
1593
1652
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1594
1653
|
} | undefined;
|
|
1595
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1596
1654
|
meta?: string[] | undefined;
|
|
1597
1655
|
}>, "many">;
|
|
1598
1656
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1601,11 +1659,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1601
1659
|
cards: {
|
|
1602
1660
|
title: string;
|
|
1603
1661
|
id: string;
|
|
1662
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1604
1663
|
badge?: {
|
|
1605
1664
|
label: string;
|
|
1606
1665
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1607
1666
|
} | undefined;
|
|
1608
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1609
1667
|
meta?: string[] | undefined;
|
|
1610
1668
|
}[];
|
|
1611
1669
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -1615,11 +1673,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1615
1673
|
cards: {
|
|
1616
1674
|
title: string;
|
|
1617
1675
|
id: string;
|
|
1676
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1618
1677
|
badge?: {
|
|
1619
1678
|
label: string;
|
|
1620
1679
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1621
1680
|
} | undefined;
|
|
1622
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1623
1681
|
meta?: string[] | undefined;
|
|
1624
1682
|
}[];
|
|
1625
1683
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -1633,11 +1691,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1633
1691
|
cards: {
|
|
1634
1692
|
title: string;
|
|
1635
1693
|
id: string;
|
|
1694
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1636
1695
|
badge?: {
|
|
1637
1696
|
label: string;
|
|
1638
1697
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1639
1698
|
} | undefined;
|
|
1640
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1641
1699
|
meta?: string[] | undefined;
|
|
1642
1700
|
}[];
|
|
1643
1701
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -1651,11 +1709,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1651
1709
|
cards: {
|
|
1652
1710
|
title: string;
|
|
1653
1711
|
id: string;
|
|
1712
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1654
1713
|
badge?: {
|
|
1655
1714
|
label: string;
|
|
1656
1715
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1657
1716
|
} | undefined;
|
|
1658
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
1659
1717
|
meta?: string[] | undefined;
|
|
1660
1718
|
}[];
|
|
1661
1719
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -1775,27 +1833,33 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
1775
1833
|
}>, z.ZodObject<{
|
|
1776
1834
|
type: z.ZodLiteral<"input">;
|
|
1777
1835
|
name: z.ZodString;
|
|
1778
|
-
input: z.ZodOptional<z.ZodEnum<["text", "textarea", "number", "date", "datetime", "time"]>>;
|
|
1836
|
+
input: z.ZodOptional<z.ZodEnum<["text", "textarea", "number", "date", "datetime", "time", "url", "email", "file"]>>;
|
|
1779
1837
|
label: z.ZodOptional<z.ZodString>;
|
|
1780
1838
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
1781
1839
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
1782
1840
|
value: z.ZodOptional<z.ZodString>;
|
|
1841
|
+
accept: z.ZodOptional<z.ZodString>;
|
|
1842
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
1783
1843
|
}, "strip", z.ZodTypeAny, {
|
|
1784
1844
|
type: "input";
|
|
1785
1845
|
name: string;
|
|
1786
1846
|
value?: string | undefined;
|
|
1787
1847
|
label?: string | undefined;
|
|
1788
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
1848
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
1789
1849
|
placeholder?: string | undefined;
|
|
1790
1850
|
required?: boolean | undefined;
|
|
1851
|
+
accept?: string | undefined;
|
|
1852
|
+
multiple?: boolean | undefined;
|
|
1791
1853
|
}, {
|
|
1792
1854
|
type: "input";
|
|
1793
1855
|
name: string;
|
|
1794
1856
|
value?: string | undefined;
|
|
1795
1857
|
label?: string | undefined;
|
|
1796
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
1858
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
1797
1859
|
placeholder?: string | undefined;
|
|
1798
1860
|
required?: boolean | undefined;
|
|
1861
|
+
accept?: string | undefined;
|
|
1862
|
+
multiple?: boolean | undefined;
|
|
1799
1863
|
}>, z.ZodObject<{
|
|
1800
1864
|
type: z.ZodLiteral<"toggle">;
|
|
1801
1865
|
name: z.ZodString;
|
|
@@ -2212,6 +2276,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2212
2276
|
value: string;
|
|
2213
2277
|
label: string;
|
|
2214
2278
|
short?: boolean | undefined;
|
|
2279
|
+
parts?: {
|
|
2280
|
+
text: string;
|
|
2281
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2282
|
+
}[] | undefined;
|
|
2215
2283
|
}[];
|
|
2216
2284
|
} | {
|
|
2217
2285
|
type: "image";
|
|
@@ -2238,9 +2306,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2238
2306
|
name: string;
|
|
2239
2307
|
value?: string | undefined;
|
|
2240
2308
|
label?: string | undefined;
|
|
2241
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
2309
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
2242
2310
|
placeholder?: string | undefined;
|
|
2243
2311
|
required?: boolean | undefined;
|
|
2312
|
+
accept?: string | undefined;
|
|
2313
|
+
multiple?: boolean | undefined;
|
|
2244
2314
|
} | {
|
|
2245
2315
|
type: "toggle";
|
|
2246
2316
|
label: string;
|
|
@@ -2423,13 +2493,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2423
2493
|
type: "callout";
|
|
2424
2494
|
text: string;
|
|
2425
2495
|
title?: string | undefined;
|
|
2426
|
-
icon?: string | undefined;
|
|
2427
2496
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2497
|
+
icon?: string | undefined;
|
|
2428
2498
|
} | {
|
|
2429
2499
|
type: "entityRef";
|
|
2430
2500
|
label: string;
|
|
2431
|
-
url?: string | undefined;
|
|
2432
2501
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2502
|
+
url?: string | undefined;
|
|
2433
2503
|
entity?: string | undefined;
|
|
2434
2504
|
} | {
|
|
2435
2505
|
type: "kanban";
|
|
@@ -2439,11 +2509,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2439
2509
|
cards: {
|
|
2440
2510
|
title: string;
|
|
2441
2511
|
id: string;
|
|
2512
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2442
2513
|
badge?: {
|
|
2443
2514
|
label: string;
|
|
2444
2515
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2445
2516
|
} | undefined;
|
|
2446
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2447
2517
|
meta?: string[] | undefined;
|
|
2448
2518
|
}[];
|
|
2449
2519
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -2487,6 +2557,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2487
2557
|
value: string;
|
|
2488
2558
|
label: string;
|
|
2489
2559
|
short?: boolean | undefined;
|
|
2560
|
+
parts?: {
|
|
2561
|
+
text: string;
|
|
2562
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2563
|
+
}[] | undefined;
|
|
2490
2564
|
}[];
|
|
2491
2565
|
} | {
|
|
2492
2566
|
type: "image";
|
|
@@ -2513,9 +2587,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2513
2587
|
name: string;
|
|
2514
2588
|
value?: string | undefined;
|
|
2515
2589
|
label?: string | undefined;
|
|
2516
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
2590
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
2517
2591
|
placeholder?: string | undefined;
|
|
2518
2592
|
required?: boolean | undefined;
|
|
2593
|
+
accept?: string | undefined;
|
|
2594
|
+
multiple?: boolean | undefined;
|
|
2519
2595
|
} | {
|
|
2520
2596
|
type: "toggle";
|
|
2521
2597
|
label: string;
|
|
@@ -2698,13 +2774,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2698
2774
|
type: "callout";
|
|
2699
2775
|
text: string;
|
|
2700
2776
|
title?: string | undefined;
|
|
2701
|
-
icon?: string | undefined;
|
|
2702
2777
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2778
|
+
icon?: string | undefined;
|
|
2703
2779
|
} | {
|
|
2704
2780
|
type: "entityRef";
|
|
2705
2781
|
label: string;
|
|
2706
|
-
url?: string | undefined;
|
|
2707
2782
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2783
|
+
url?: string | undefined;
|
|
2708
2784
|
entity?: string | undefined;
|
|
2709
2785
|
} | {
|
|
2710
2786
|
type: "kanban";
|
|
@@ -2714,11 +2790,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2714
2790
|
cards: {
|
|
2715
2791
|
title: string;
|
|
2716
2792
|
id: string;
|
|
2793
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2717
2794
|
badge?: {
|
|
2718
2795
|
label: string;
|
|
2719
2796
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2720
2797
|
} | undefined;
|
|
2721
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2722
2798
|
meta?: string[] | undefined;
|
|
2723
2799
|
}[];
|
|
2724
2800
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -2804,6 +2880,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2804
2880
|
value: string;
|
|
2805
2881
|
label: string;
|
|
2806
2882
|
short?: boolean | undefined;
|
|
2883
|
+
parts?: {
|
|
2884
|
+
text: string;
|
|
2885
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
2886
|
+
}[] | undefined;
|
|
2807
2887
|
}[];
|
|
2808
2888
|
} | {
|
|
2809
2889
|
type: "image";
|
|
@@ -2830,9 +2910,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
2830
2910
|
name: string;
|
|
2831
2911
|
value?: string | undefined;
|
|
2832
2912
|
label?: string | undefined;
|
|
2833
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
2913
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
2834
2914
|
placeholder?: string | undefined;
|
|
2835
2915
|
required?: boolean | undefined;
|
|
2916
|
+
accept?: string | undefined;
|
|
2917
|
+
multiple?: boolean | undefined;
|
|
2836
2918
|
} | {
|
|
2837
2919
|
type: "toggle";
|
|
2838
2920
|
label: string;
|
|
@@ -3015,13 +3097,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3015
3097
|
type: "callout";
|
|
3016
3098
|
text: string;
|
|
3017
3099
|
title?: string | undefined;
|
|
3018
|
-
icon?: string | undefined;
|
|
3019
3100
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3101
|
+
icon?: string | undefined;
|
|
3020
3102
|
} | {
|
|
3021
3103
|
type: "entityRef";
|
|
3022
3104
|
label: string;
|
|
3023
|
-
url?: string | undefined;
|
|
3024
3105
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3106
|
+
url?: string | undefined;
|
|
3025
3107
|
entity?: string | undefined;
|
|
3026
3108
|
} | {
|
|
3027
3109
|
type: "kanban";
|
|
@@ -3031,11 +3113,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3031
3113
|
cards: {
|
|
3032
3114
|
title: string;
|
|
3033
3115
|
id: string;
|
|
3116
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3034
3117
|
badge?: {
|
|
3035
3118
|
label: string;
|
|
3036
3119
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3037
3120
|
} | undefined;
|
|
3038
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3039
3121
|
meta?: string[] | undefined;
|
|
3040
3122
|
}[];
|
|
3041
3123
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -3095,6 +3177,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3095
3177
|
value: string;
|
|
3096
3178
|
label: string;
|
|
3097
3179
|
short?: boolean | undefined;
|
|
3180
|
+
parts?: {
|
|
3181
|
+
text: string;
|
|
3182
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3183
|
+
}[] | undefined;
|
|
3098
3184
|
}[];
|
|
3099
3185
|
} | {
|
|
3100
3186
|
type: "image";
|
|
@@ -3121,9 +3207,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3121
3207
|
name: string;
|
|
3122
3208
|
value?: string | undefined;
|
|
3123
3209
|
label?: string | undefined;
|
|
3124
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
3210
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
3125
3211
|
placeholder?: string | undefined;
|
|
3126
3212
|
required?: boolean | undefined;
|
|
3213
|
+
accept?: string | undefined;
|
|
3214
|
+
multiple?: boolean | undefined;
|
|
3127
3215
|
} | {
|
|
3128
3216
|
type: "toggle";
|
|
3129
3217
|
label: string;
|
|
@@ -3306,13 +3394,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3306
3394
|
type: "callout";
|
|
3307
3395
|
text: string;
|
|
3308
3396
|
title?: string | undefined;
|
|
3309
|
-
icon?: string | undefined;
|
|
3310
3397
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3398
|
+
icon?: string | undefined;
|
|
3311
3399
|
} | {
|
|
3312
3400
|
type: "entityRef";
|
|
3313
3401
|
label: string;
|
|
3314
|
-
url?: string | undefined;
|
|
3315
3402
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3403
|
+
url?: string | undefined;
|
|
3316
3404
|
entity?: string | undefined;
|
|
3317
3405
|
} | {
|
|
3318
3406
|
type: "kanban";
|
|
@@ -3322,11 +3410,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3322
3410
|
cards: {
|
|
3323
3411
|
title: string;
|
|
3324
3412
|
id: string;
|
|
3413
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3325
3414
|
badge?: {
|
|
3326
3415
|
label: string;
|
|
3327
3416
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3328
3417
|
} | undefined;
|
|
3329
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3330
3418
|
meta?: string[] | undefined;
|
|
3331
3419
|
}[];
|
|
3332
3420
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -3391,6 +3479,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3391
3479
|
value: string;
|
|
3392
3480
|
label: string;
|
|
3393
3481
|
short?: boolean | undefined;
|
|
3482
|
+
parts?: {
|
|
3483
|
+
text: string;
|
|
3484
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3485
|
+
}[] | undefined;
|
|
3394
3486
|
}[];
|
|
3395
3487
|
} | {
|
|
3396
3488
|
type: "image";
|
|
@@ -3417,9 +3509,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3417
3509
|
name: string;
|
|
3418
3510
|
value?: string | undefined;
|
|
3419
3511
|
label?: string | undefined;
|
|
3420
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
3512
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
3421
3513
|
placeholder?: string | undefined;
|
|
3422
3514
|
required?: boolean | undefined;
|
|
3515
|
+
accept?: string | undefined;
|
|
3516
|
+
multiple?: boolean | undefined;
|
|
3423
3517
|
} | {
|
|
3424
3518
|
type: "toggle";
|
|
3425
3519
|
label: string;
|
|
@@ -3602,13 +3696,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3602
3696
|
type: "callout";
|
|
3603
3697
|
text: string;
|
|
3604
3698
|
title?: string | undefined;
|
|
3605
|
-
icon?: string | undefined;
|
|
3606
3699
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3700
|
+
icon?: string | undefined;
|
|
3607
3701
|
} | {
|
|
3608
3702
|
type: "entityRef";
|
|
3609
3703
|
label: string;
|
|
3610
|
-
url?: string | undefined;
|
|
3611
3704
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3705
|
+
url?: string | undefined;
|
|
3612
3706
|
entity?: string | undefined;
|
|
3613
3707
|
} | {
|
|
3614
3708
|
type: "kanban";
|
|
@@ -3618,11 +3712,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3618
3712
|
cards: {
|
|
3619
3713
|
title: string;
|
|
3620
3714
|
id: string;
|
|
3715
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3621
3716
|
badge?: {
|
|
3622
3717
|
label: string;
|
|
3623
3718
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3624
3719
|
} | undefined;
|
|
3625
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3626
3720
|
meta?: string[] | undefined;
|
|
3627
3721
|
}[];
|
|
3628
3722
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -3666,6 +3760,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3666
3760
|
value: string;
|
|
3667
3761
|
label: string;
|
|
3668
3762
|
short?: boolean | undefined;
|
|
3763
|
+
parts?: {
|
|
3764
|
+
text: string;
|
|
3765
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3766
|
+
}[] | undefined;
|
|
3669
3767
|
}[];
|
|
3670
3768
|
} | {
|
|
3671
3769
|
type: "image";
|
|
@@ -3692,9 +3790,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3692
3790
|
name: string;
|
|
3693
3791
|
value?: string | undefined;
|
|
3694
3792
|
label?: string | undefined;
|
|
3695
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
3793
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
3696
3794
|
placeholder?: string | undefined;
|
|
3697
3795
|
required?: boolean | undefined;
|
|
3796
|
+
accept?: string | undefined;
|
|
3797
|
+
multiple?: boolean | undefined;
|
|
3698
3798
|
} | {
|
|
3699
3799
|
type: "toggle";
|
|
3700
3800
|
label: string;
|
|
@@ -3877,13 +3977,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3877
3977
|
type: "callout";
|
|
3878
3978
|
text: string;
|
|
3879
3979
|
title?: string | undefined;
|
|
3880
|
-
icon?: string | undefined;
|
|
3881
3980
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3981
|
+
icon?: string | undefined;
|
|
3882
3982
|
} | {
|
|
3883
3983
|
type: "entityRef";
|
|
3884
3984
|
label: string;
|
|
3885
|
-
url?: string | undefined;
|
|
3886
3985
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3986
|
+
url?: string | undefined;
|
|
3887
3987
|
entity?: string | undefined;
|
|
3888
3988
|
} | {
|
|
3889
3989
|
type: "kanban";
|
|
@@ -3893,11 +3993,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3893
3993
|
cards: {
|
|
3894
3994
|
title: string;
|
|
3895
3995
|
id: string;
|
|
3996
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3896
3997
|
badge?: {
|
|
3897
3998
|
label: string;
|
|
3898
3999
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3899
4000
|
} | undefined;
|
|
3900
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
3901
4001
|
meta?: string[] | undefined;
|
|
3902
4002
|
}[];
|
|
3903
4003
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -3947,6 +4047,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3947
4047
|
value: string;
|
|
3948
4048
|
label: string;
|
|
3949
4049
|
short?: boolean | undefined;
|
|
4050
|
+
parts?: {
|
|
4051
|
+
text: string;
|
|
4052
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4053
|
+
}[] | undefined;
|
|
3950
4054
|
}[];
|
|
3951
4055
|
} | {
|
|
3952
4056
|
type: "image";
|
|
@@ -3973,9 +4077,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
3973
4077
|
name: string;
|
|
3974
4078
|
value?: string | undefined;
|
|
3975
4079
|
label?: string | undefined;
|
|
3976
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
4080
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
3977
4081
|
placeholder?: string | undefined;
|
|
3978
4082
|
required?: boolean | undefined;
|
|
4083
|
+
accept?: string | undefined;
|
|
4084
|
+
multiple?: boolean | undefined;
|
|
3979
4085
|
} | {
|
|
3980
4086
|
type: "toggle";
|
|
3981
4087
|
label: string;
|
|
@@ -4158,13 +4264,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4158
4264
|
type: "callout";
|
|
4159
4265
|
text: string;
|
|
4160
4266
|
title?: string | undefined;
|
|
4161
|
-
icon?: string | undefined;
|
|
4162
4267
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4268
|
+
icon?: string | undefined;
|
|
4163
4269
|
} | {
|
|
4164
4270
|
type: "entityRef";
|
|
4165
4271
|
label: string;
|
|
4166
|
-
url?: string | undefined;
|
|
4167
4272
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4273
|
+
url?: string | undefined;
|
|
4168
4274
|
entity?: string | undefined;
|
|
4169
4275
|
} | {
|
|
4170
4276
|
type: "kanban";
|
|
@@ -4174,11 +4280,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4174
4280
|
cards: {
|
|
4175
4281
|
title: string;
|
|
4176
4282
|
id: string;
|
|
4283
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4177
4284
|
badge?: {
|
|
4178
4285
|
label: string;
|
|
4179
4286
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4180
4287
|
} | undefined;
|
|
4181
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4182
4288
|
meta?: string[] | undefined;
|
|
4183
4289
|
}[];
|
|
4184
4290
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -4238,6 +4344,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4238
4344
|
value: string;
|
|
4239
4345
|
label: string;
|
|
4240
4346
|
short?: boolean | undefined;
|
|
4347
|
+
parts?: {
|
|
4348
|
+
text: string;
|
|
4349
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4350
|
+
}[] | undefined;
|
|
4241
4351
|
}[];
|
|
4242
4352
|
} | {
|
|
4243
4353
|
type: "image";
|
|
@@ -4264,9 +4374,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4264
4374
|
name: string;
|
|
4265
4375
|
value?: string | undefined;
|
|
4266
4376
|
label?: string | undefined;
|
|
4267
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
4377
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
4268
4378
|
placeholder?: string | undefined;
|
|
4269
4379
|
required?: boolean | undefined;
|
|
4380
|
+
accept?: string | undefined;
|
|
4381
|
+
multiple?: boolean | undefined;
|
|
4270
4382
|
} | {
|
|
4271
4383
|
type: "toggle";
|
|
4272
4384
|
label: string;
|
|
@@ -4449,13 +4561,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4449
4561
|
type: "callout";
|
|
4450
4562
|
text: string;
|
|
4451
4563
|
title?: string | undefined;
|
|
4452
|
-
icon?: string | undefined;
|
|
4453
4564
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4565
|
+
icon?: string | undefined;
|
|
4454
4566
|
} | {
|
|
4455
4567
|
type: "entityRef";
|
|
4456
4568
|
label: string;
|
|
4457
|
-
url?: string | undefined;
|
|
4458
4569
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4570
|
+
url?: string | undefined;
|
|
4459
4571
|
entity?: string | undefined;
|
|
4460
4572
|
} | {
|
|
4461
4573
|
type: "kanban";
|
|
@@ -4465,11 +4577,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4465
4577
|
cards: {
|
|
4466
4578
|
title: string;
|
|
4467
4579
|
id: string;
|
|
4580
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4468
4581
|
badge?: {
|
|
4469
4582
|
label: string;
|
|
4470
4583
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4471
4584
|
} | undefined;
|
|
4472
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4473
4585
|
meta?: string[] | undefined;
|
|
4474
4586
|
}[];
|
|
4475
4587
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -4537,6 +4649,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4537
4649
|
value: string;
|
|
4538
4650
|
label: string;
|
|
4539
4651
|
short?: boolean | undefined;
|
|
4652
|
+
parts?: {
|
|
4653
|
+
text: string;
|
|
4654
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4655
|
+
}[] | undefined;
|
|
4540
4656
|
}[];
|
|
4541
4657
|
} | {
|
|
4542
4658
|
type: "image";
|
|
@@ -4563,9 +4679,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4563
4679
|
name: string;
|
|
4564
4680
|
value?: string | undefined;
|
|
4565
4681
|
label?: string | undefined;
|
|
4566
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
4682
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
4567
4683
|
placeholder?: string | undefined;
|
|
4568
4684
|
required?: boolean | undefined;
|
|
4685
|
+
accept?: string | undefined;
|
|
4686
|
+
multiple?: boolean | undefined;
|
|
4569
4687
|
} | {
|
|
4570
4688
|
type: "toggle";
|
|
4571
4689
|
label: string;
|
|
@@ -4748,13 +4866,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4748
4866
|
type: "callout";
|
|
4749
4867
|
text: string;
|
|
4750
4868
|
title?: string | undefined;
|
|
4751
|
-
icon?: string | undefined;
|
|
4752
4869
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4870
|
+
icon?: string | undefined;
|
|
4753
4871
|
} | {
|
|
4754
4872
|
type: "entityRef";
|
|
4755
4873
|
label: string;
|
|
4756
|
-
url?: string | undefined;
|
|
4757
4874
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4875
|
+
url?: string | undefined;
|
|
4758
4876
|
entity?: string | undefined;
|
|
4759
4877
|
} | {
|
|
4760
4878
|
type: "kanban";
|
|
@@ -4764,11 +4882,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4764
4882
|
cards: {
|
|
4765
4883
|
title: string;
|
|
4766
4884
|
id: string;
|
|
4885
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4767
4886
|
badge?: {
|
|
4768
4887
|
label: string;
|
|
4769
4888
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4770
4889
|
} | undefined;
|
|
4771
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4772
4890
|
meta?: string[] | undefined;
|
|
4773
4891
|
}[];
|
|
4774
4892
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -4812,6 +4930,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4812
4930
|
value: string;
|
|
4813
4931
|
label: string;
|
|
4814
4932
|
short?: boolean | undefined;
|
|
4933
|
+
parts?: {
|
|
4934
|
+
text: string;
|
|
4935
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
4936
|
+
}[] | undefined;
|
|
4815
4937
|
}[];
|
|
4816
4938
|
} | {
|
|
4817
4939
|
type: "image";
|
|
@@ -4838,9 +4960,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
4838
4960
|
name: string;
|
|
4839
4961
|
value?: string | undefined;
|
|
4840
4962
|
label?: string | undefined;
|
|
4841
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
4963
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
4842
4964
|
placeholder?: string | undefined;
|
|
4843
4965
|
required?: boolean | undefined;
|
|
4966
|
+
accept?: string | undefined;
|
|
4967
|
+
multiple?: boolean | undefined;
|
|
4844
4968
|
} | {
|
|
4845
4969
|
type: "toggle";
|
|
4846
4970
|
label: string;
|
|
@@ -5023,13 +5147,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5023
5147
|
type: "callout";
|
|
5024
5148
|
text: string;
|
|
5025
5149
|
title?: string | undefined;
|
|
5026
|
-
icon?: string | undefined;
|
|
5027
5150
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5151
|
+
icon?: string | undefined;
|
|
5028
5152
|
} | {
|
|
5029
5153
|
type: "entityRef";
|
|
5030
5154
|
label: string;
|
|
5031
|
-
url?: string | undefined;
|
|
5032
5155
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5156
|
+
url?: string | undefined;
|
|
5033
5157
|
entity?: string | undefined;
|
|
5034
5158
|
} | {
|
|
5035
5159
|
type: "kanban";
|
|
@@ -5039,11 +5163,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5039
5163
|
cards: {
|
|
5040
5164
|
title: string;
|
|
5041
5165
|
id: string;
|
|
5166
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5042
5167
|
badge?: {
|
|
5043
5168
|
label: string;
|
|
5044
5169
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5045
5170
|
} | undefined;
|
|
5046
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5047
5171
|
meta?: string[] | undefined;
|
|
5048
5172
|
}[];
|
|
5049
5173
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -5128,6 +5252,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5128
5252
|
value: string;
|
|
5129
5253
|
label: string;
|
|
5130
5254
|
short?: boolean | undefined;
|
|
5255
|
+
parts?: {
|
|
5256
|
+
text: string;
|
|
5257
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5258
|
+
}[] | undefined;
|
|
5131
5259
|
}[];
|
|
5132
5260
|
} | {
|
|
5133
5261
|
type: "image";
|
|
@@ -5154,9 +5282,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5154
5282
|
name: string;
|
|
5155
5283
|
value?: string | undefined;
|
|
5156
5284
|
label?: string | undefined;
|
|
5157
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
5285
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
5158
5286
|
placeholder?: string | undefined;
|
|
5159
5287
|
required?: boolean | undefined;
|
|
5288
|
+
accept?: string | undefined;
|
|
5289
|
+
multiple?: boolean | undefined;
|
|
5160
5290
|
} | {
|
|
5161
5291
|
type: "toggle";
|
|
5162
5292
|
label: string;
|
|
@@ -5339,13 +5469,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5339
5469
|
type: "callout";
|
|
5340
5470
|
text: string;
|
|
5341
5471
|
title?: string | undefined;
|
|
5342
|
-
icon?: string | undefined;
|
|
5343
5472
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5473
|
+
icon?: string | undefined;
|
|
5344
5474
|
} | {
|
|
5345
5475
|
type: "entityRef";
|
|
5346
5476
|
label: string;
|
|
5347
|
-
url?: string | undefined;
|
|
5348
5477
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5478
|
+
url?: string | undefined;
|
|
5349
5479
|
entity?: string | undefined;
|
|
5350
5480
|
} | {
|
|
5351
5481
|
type: "kanban";
|
|
@@ -5355,11 +5485,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5355
5485
|
cards: {
|
|
5356
5486
|
title: string;
|
|
5357
5487
|
id: string;
|
|
5488
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5358
5489
|
badge?: {
|
|
5359
5490
|
label: string;
|
|
5360
5491
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5361
5492
|
} | undefined;
|
|
5362
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5363
5493
|
meta?: string[] | undefined;
|
|
5364
5494
|
}[];
|
|
5365
5495
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -5419,6 +5549,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5419
5549
|
value: string;
|
|
5420
5550
|
label: string;
|
|
5421
5551
|
short?: boolean | undefined;
|
|
5552
|
+
parts?: {
|
|
5553
|
+
text: string;
|
|
5554
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5555
|
+
}[] | undefined;
|
|
5422
5556
|
}[];
|
|
5423
5557
|
} | {
|
|
5424
5558
|
type: "image";
|
|
@@ -5445,9 +5579,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5445
5579
|
name: string;
|
|
5446
5580
|
value?: string | undefined;
|
|
5447
5581
|
label?: string | undefined;
|
|
5448
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
5582
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
5449
5583
|
placeholder?: string | undefined;
|
|
5450
5584
|
required?: boolean | undefined;
|
|
5585
|
+
accept?: string | undefined;
|
|
5586
|
+
multiple?: boolean | undefined;
|
|
5451
5587
|
} | {
|
|
5452
5588
|
type: "toggle";
|
|
5453
5589
|
label: string;
|
|
@@ -5630,13 +5766,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5630
5766
|
type: "callout";
|
|
5631
5767
|
text: string;
|
|
5632
5768
|
title?: string | undefined;
|
|
5633
|
-
icon?: string | undefined;
|
|
5634
5769
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5770
|
+
icon?: string | undefined;
|
|
5635
5771
|
} | {
|
|
5636
5772
|
type: "entityRef";
|
|
5637
5773
|
label: string;
|
|
5638
|
-
url?: string | undefined;
|
|
5639
5774
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5775
|
+
url?: string | undefined;
|
|
5640
5776
|
entity?: string | undefined;
|
|
5641
5777
|
} | {
|
|
5642
5778
|
type: "kanban";
|
|
@@ -5646,11 +5782,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5646
5782
|
cards: {
|
|
5647
5783
|
title: string;
|
|
5648
5784
|
id: string;
|
|
5785
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5649
5786
|
badge?: {
|
|
5650
5787
|
label: string;
|
|
5651
5788
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5652
5789
|
} | undefined;
|
|
5653
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5654
5790
|
meta?: string[] | undefined;
|
|
5655
5791
|
}[];
|
|
5656
5792
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -5756,6 +5892,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5756
5892
|
value: string;
|
|
5757
5893
|
label: string;
|
|
5758
5894
|
short?: boolean | undefined;
|
|
5895
|
+
parts?: {
|
|
5896
|
+
text: string;
|
|
5897
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5898
|
+
}[] | undefined;
|
|
5759
5899
|
}[];
|
|
5760
5900
|
} | {
|
|
5761
5901
|
type: "image";
|
|
@@ -5782,9 +5922,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5782
5922
|
name: string;
|
|
5783
5923
|
value?: string | undefined;
|
|
5784
5924
|
label?: string | undefined;
|
|
5785
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
5925
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
5786
5926
|
placeholder?: string | undefined;
|
|
5787
5927
|
required?: boolean | undefined;
|
|
5928
|
+
accept?: string | undefined;
|
|
5929
|
+
multiple?: boolean | undefined;
|
|
5788
5930
|
} | {
|
|
5789
5931
|
type: "toggle";
|
|
5790
5932
|
label: string;
|
|
@@ -5967,13 +6109,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5967
6109
|
type: "callout";
|
|
5968
6110
|
text: string;
|
|
5969
6111
|
title?: string | undefined;
|
|
5970
|
-
icon?: string | undefined;
|
|
5971
6112
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6113
|
+
icon?: string | undefined;
|
|
5972
6114
|
} | {
|
|
5973
6115
|
type: "entityRef";
|
|
5974
6116
|
label: string;
|
|
5975
|
-
url?: string | undefined;
|
|
5976
6117
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6118
|
+
url?: string | undefined;
|
|
5977
6119
|
entity?: string | undefined;
|
|
5978
6120
|
} | {
|
|
5979
6121
|
type: "kanban";
|
|
@@ -5983,11 +6125,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
5983
6125
|
cards: {
|
|
5984
6126
|
title: string;
|
|
5985
6127
|
id: string;
|
|
6128
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5986
6129
|
badge?: {
|
|
5987
6130
|
label: string;
|
|
5988
6131
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5989
6132
|
} | undefined;
|
|
5990
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
5991
6133
|
meta?: string[] | undefined;
|
|
5992
6134
|
}[];
|
|
5993
6135
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -6031,6 +6173,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6031
6173
|
value: string;
|
|
6032
6174
|
label: string;
|
|
6033
6175
|
short?: boolean | undefined;
|
|
6176
|
+
parts?: {
|
|
6177
|
+
text: string;
|
|
6178
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6179
|
+
}[] | undefined;
|
|
6034
6180
|
}[];
|
|
6035
6181
|
} | {
|
|
6036
6182
|
type: "image";
|
|
@@ -6057,9 +6203,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6057
6203
|
name: string;
|
|
6058
6204
|
value?: string | undefined;
|
|
6059
6205
|
label?: string | undefined;
|
|
6060
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
6206
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
6061
6207
|
placeholder?: string | undefined;
|
|
6062
6208
|
required?: boolean | undefined;
|
|
6209
|
+
accept?: string | undefined;
|
|
6210
|
+
multiple?: boolean | undefined;
|
|
6063
6211
|
} | {
|
|
6064
6212
|
type: "toggle";
|
|
6065
6213
|
label: string;
|
|
@@ -6242,13 +6390,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6242
6390
|
type: "callout";
|
|
6243
6391
|
text: string;
|
|
6244
6392
|
title?: string | undefined;
|
|
6245
|
-
icon?: string | undefined;
|
|
6246
6393
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6394
|
+
icon?: string | undefined;
|
|
6247
6395
|
} | {
|
|
6248
6396
|
type: "entityRef";
|
|
6249
6397
|
label: string;
|
|
6250
|
-
url?: string | undefined;
|
|
6251
6398
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6399
|
+
url?: string | undefined;
|
|
6252
6400
|
entity?: string | undefined;
|
|
6253
6401
|
} | {
|
|
6254
6402
|
type: "kanban";
|
|
@@ -6258,11 +6406,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6258
6406
|
cards: {
|
|
6259
6407
|
title: string;
|
|
6260
6408
|
id: string;
|
|
6409
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6261
6410
|
badge?: {
|
|
6262
6411
|
label: string;
|
|
6263
6412
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6264
6413
|
} | undefined;
|
|
6265
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6266
6414
|
meta?: string[] | undefined;
|
|
6267
6415
|
}[];
|
|
6268
6416
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -6352,6 +6500,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6352
6500
|
value: string;
|
|
6353
6501
|
label: string;
|
|
6354
6502
|
short?: boolean | undefined;
|
|
6503
|
+
parts?: {
|
|
6504
|
+
text: string;
|
|
6505
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6506
|
+
}[] | undefined;
|
|
6355
6507
|
}[];
|
|
6356
6508
|
} | {
|
|
6357
6509
|
type: "image";
|
|
@@ -6378,9 +6530,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6378
6530
|
name: string;
|
|
6379
6531
|
value?: string | undefined;
|
|
6380
6532
|
label?: string | undefined;
|
|
6381
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
6533
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
6382
6534
|
placeholder?: string | undefined;
|
|
6383
6535
|
required?: boolean | undefined;
|
|
6536
|
+
accept?: string | undefined;
|
|
6537
|
+
multiple?: boolean | undefined;
|
|
6384
6538
|
} | {
|
|
6385
6539
|
type: "toggle";
|
|
6386
6540
|
label: string;
|
|
@@ -6563,13 +6717,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6563
6717
|
type: "callout";
|
|
6564
6718
|
text: string;
|
|
6565
6719
|
title?: string | undefined;
|
|
6566
|
-
icon?: string | undefined;
|
|
6567
6720
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6721
|
+
icon?: string | undefined;
|
|
6568
6722
|
} | {
|
|
6569
6723
|
type: "entityRef";
|
|
6570
6724
|
label: string;
|
|
6571
|
-
url?: string | undefined;
|
|
6572
6725
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6726
|
+
url?: string | undefined;
|
|
6573
6727
|
entity?: string | undefined;
|
|
6574
6728
|
} | {
|
|
6575
6729
|
type: "kanban";
|
|
@@ -6579,11 +6733,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6579
6733
|
cards: {
|
|
6580
6734
|
title: string;
|
|
6581
6735
|
id: string;
|
|
6736
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6582
6737
|
badge?: {
|
|
6583
6738
|
label: string;
|
|
6584
6739
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6585
6740
|
} | undefined;
|
|
6586
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6587
6741
|
meta?: string[] | undefined;
|
|
6588
6742
|
}[];
|
|
6589
6743
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -6643,6 +6797,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6643
6797
|
value: string;
|
|
6644
6798
|
label: string;
|
|
6645
6799
|
short?: boolean | undefined;
|
|
6800
|
+
parts?: {
|
|
6801
|
+
text: string;
|
|
6802
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6803
|
+
}[] | undefined;
|
|
6646
6804
|
}[];
|
|
6647
6805
|
} | {
|
|
6648
6806
|
type: "image";
|
|
@@ -6669,9 +6827,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6669
6827
|
name: string;
|
|
6670
6828
|
value?: string | undefined;
|
|
6671
6829
|
label?: string | undefined;
|
|
6672
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
6830
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
6673
6831
|
placeholder?: string | undefined;
|
|
6674
6832
|
required?: boolean | undefined;
|
|
6833
|
+
accept?: string | undefined;
|
|
6834
|
+
multiple?: boolean | undefined;
|
|
6675
6835
|
} | {
|
|
6676
6836
|
type: "toggle";
|
|
6677
6837
|
label: string;
|
|
@@ -6854,13 +7014,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6854
7014
|
type: "callout";
|
|
6855
7015
|
text: string;
|
|
6856
7016
|
title?: string | undefined;
|
|
6857
|
-
icon?: string | undefined;
|
|
6858
7017
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7018
|
+
icon?: string | undefined;
|
|
6859
7019
|
} | {
|
|
6860
7020
|
type: "entityRef";
|
|
6861
7021
|
label: string;
|
|
6862
|
-
url?: string | undefined;
|
|
6863
7022
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7023
|
+
url?: string | undefined;
|
|
6864
7024
|
entity?: string | undefined;
|
|
6865
7025
|
} | {
|
|
6866
7026
|
type: "kanban";
|
|
@@ -6870,11 +7030,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6870
7030
|
cards: {
|
|
6871
7031
|
title: string;
|
|
6872
7032
|
id: string;
|
|
7033
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6873
7034
|
badge?: {
|
|
6874
7035
|
label: string;
|
|
6875
7036
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6876
7037
|
} | undefined;
|
|
6877
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
6878
7038
|
meta?: string[] | undefined;
|
|
6879
7039
|
}[];
|
|
6880
7040
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -6986,6 +7146,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
6986
7146
|
value: string;
|
|
6987
7147
|
label: string;
|
|
6988
7148
|
short?: boolean | undefined;
|
|
7149
|
+
parts?: {
|
|
7150
|
+
text: string;
|
|
7151
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7152
|
+
}[] | undefined;
|
|
6989
7153
|
}[];
|
|
6990
7154
|
} | {
|
|
6991
7155
|
type: "image";
|
|
@@ -7012,9 +7176,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7012
7176
|
name: string;
|
|
7013
7177
|
value?: string | undefined;
|
|
7014
7178
|
label?: string | undefined;
|
|
7015
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
7179
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
7016
7180
|
placeholder?: string | undefined;
|
|
7017
7181
|
required?: boolean | undefined;
|
|
7182
|
+
accept?: string | undefined;
|
|
7183
|
+
multiple?: boolean | undefined;
|
|
7018
7184
|
} | {
|
|
7019
7185
|
type: "toggle";
|
|
7020
7186
|
label: string;
|
|
@@ -7197,13 +7363,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7197
7363
|
type: "callout";
|
|
7198
7364
|
text: string;
|
|
7199
7365
|
title?: string | undefined;
|
|
7200
|
-
icon?: string | undefined;
|
|
7201
7366
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7367
|
+
icon?: string | undefined;
|
|
7202
7368
|
} | {
|
|
7203
7369
|
type: "entityRef";
|
|
7204
7370
|
label: string;
|
|
7205
|
-
url?: string | undefined;
|
|
7206
7371
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7372
|
+
url?: string | undefined;
|
|
7207
7373
|
entity?: string | undefined;
|
|
7208
7374
|
} | {
|
|
7209
7375
|
type: "kanban";
|
|
@@ -7213,11 +7379,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7213
7379
|
cards: {
|
|
7214
7380
|
title: string;
|
|
7215
7381
|
id: string;
|
|
7382
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7216
7383
|
badge?: {
|
|
7217
7384
|
label: string;
|
|
7218
7385
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7219
7386
|
} | undefined;
|
|
7220
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7221
7387
|
meta?: string[] | undefined;
|
|
7222
7388
|
}[];
|
|
7223
7389
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -7261,6 +7427,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7261
7427
|
value: string;
|
|
7262
7428
|
label: string;
|
|
7263
7429
|
short?: boolean | undefined;
|
|
7430
|
+
parts?: {
|
|
7431
|
+
text: string;
|
|
7432
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7433
|
+
}[] | undefined;
|
|
7264
7434
|
}[];
|
|
7265
7435
|
} | {
|
|
7266
7436
|
type: "image";
|
|
@@ -7287,9 +7457,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7287
7457
|
name: string;
|
|
7288
7458
|
value?: string | undefined;
|
|
7289
7459
|
label?: string | undefined;
|
|
7290
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
7460
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
7291
7461
|
placeholder?: string | undefined;
|
|
7292
7462
|
required?: boolean | undefined;
|
|
7463
|
+
accept?: string | undefined;
|
|
7464
|
+
multiple?: boolean | undefined;
|
|
7293
7465
|
} | {
|
|
7294
7466
|
type: "toggle";
|
|
7295
7467
|
label: string;
|
|
@@ -7472,13 +7644,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7472
7644
|
type: "callout";
|
|
7473
7645
|
text: string;
|
|
7474
7646
|
title?: string | undefined;
|
|
7475
|
-
icon?: string | undefined;
|
|
7476
7647
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7648
|
+
icon?: string | undefined;
|
|
7477
7649
|
} | {
|
|
7478
7650
|
type: "entityRef";
|
|
7479
7651
|
label: string;
|
|
7480
|
-
url?: string | undefined;
|
|
7481
7652
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7653
|
+
url?: string | undefined;
|
|
7482
7654
|
entity?: string | undefined;
|
|
7483
7655
|
} | {
|
|
7484
7656
|
type: "kanban";
|
|
@@ -7488,11 +7660,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7488
7660
|
cards: {
|
|
7489
7661
|
title: string;
|
|
7490
7662
|
id: string;
|
|
7663
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7491
7664
|
badge?: {
|
|
7492
7665
|
label: string;
|
|
7493
7666
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7494
7667
|
} | undefined;
|
|
7495
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7496
7668
|
meta?: string[] | undefined;
|
|
7497
7669
|
}[];
|
|
7498
7670
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -7647,14 +7819,32 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7647
7819
|
label: z.ZodString;
|
|
7648
7820
|
value: z.ZodString;
|
|
7649
7821
|
short: z.ZodOptional<z.ZodBoolean>;
|
|
7822
|
+
parts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7823
|
+
text: z.ZodString;
|
|
7824
|
+
tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
|
|
7825
|
+
}, "strip", z.ZodTypeAny, {
|
|
7826
|
+
text: string;
|
|
7827
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7828
|
+
}, {
|
|
7829
|
+
text: string;
|
|
7830
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7831
|
+
}>, "many">>;
|
|
7650
7832
|
}, "strip", z.ZodTypeAny, {
|
|
7651
7833
|
value: string;
|
|
7652
7834
|
label: string;
|
|
7653
7835
|
short?: boolean | undefined;
|
|
7836
|
+
parts?: {
|
|
7837
|
+
text: string;
|
|
7838
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7839
|
+
}[] | undefined;
|
|
7654
7840
|
}, {
|
|
7655
7841
|
value: string;
|
|
7656
7842
|
label: string;
|
|
7657
7843
|
short?: boolean | undefined;
|
|
7844
|
+
parts?: {
|
|
7845
|
+
text: string;
|
|
7846
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7847
|
+
}[] | undefined;
|
|
7658
7848
|
}>, "many">;
|
|
7659
7849
|
}, "strip", z.ZodTypeAny, {
|
|
7660
7850
|
type: "fields";
|
|
@@ -7662,6 +7852,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7662
7852
|
value: string;
|
|
7663
7853
|
label: string;
|
|
7664
7854
|
short?: boolean | undefined;
|
|
7855
|
+
parts?: {
|
|
7856
|
+
text: string;
|
|
7857
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7858
|
+
}[] | undefined;
|
|
7665
7859
|
}[];
|
|
7666
7860
|
}, {
|
|
7667
7861
|
type: "fields";
|
|
@@ -7669,6 +7863,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7669
7863
|
value: string;
|
|
7670
7864
|
label: string;
|
|
7671
7865
|
short?: boolean | undefined;
|
|
7866
|
+
parts?: {
|
|
7867
|
+
text: string;
|
|
7868
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
7869
|
+
}[] | undefined;
|
|
7672
7870
|
}[];
|
|
7673
7871
|
}>, z.ZodObject<{
|
|
7674
7872
|
type: z.ZodLiteral<"image">;
|
|
@@ -7960,14 +8158,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7960
8158
|
type: "callout";
|
|
7961
8159
|
text: string;
|
|
7962
8160
|
title?: string | undefined;
|
|
7963
|
-
icon?: string | undefined;
|
|
7964
8161
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8162
|
+
icon?: string | undefined;
|
|
7965
8163
|
}, {
|
|
7966
8164
|
type: "callout";
|
|
7967
8165
|
text: string;
|
|
7968
8166
|
title?: string | undefined;
|
|
7969
|
-
icon?: string | undefined;
|
|
7970
8167
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8168
|
+
icon?: string | undefined;
|
|
7971
8169
|
}>, z.ZodObject<{
|
|
7972
8170
|
type: z.ZodLiteral<"entityRef">;
|
|
7973
8171
|
label: z.ZodString;
|
|
@@ -7977,14 +8175,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
7977
8175
|
}, "strip", z.ZodTypeAny, {
|
|
7978
8176
|
type: "entityRef";
|
|
7979
8177
|
label: string;
|
|
7980
|
-
url?: string | undefined;
|
|
7981
8178
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8179
|
+
url?: string | undefined;
|
|
7982
8180
|
entity?: string | undefined;
|
|
7983
8181
|
}, {
|
|
7984
8182
|
type: "entityRef";
|
|
7985
8183
|
label: string;
|
|
7986
|
-
url?: string | undefined;
|
|
7987
8184
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8185
|
+
url?: string | undefined;
|
|
7988
8186
|
entity?: string | undefined;
|
|
7989
8187
|
}>, z.ZodObject<{
|
|
7990
8188
|
type: z.ZodLiteral<"kanban">;
|
|
@@ -8010,20 +8208,20 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8010
8208
|
}, "strip", z.ZodTypeAny, {
|
|
8011
8209
|
title: string;
|
|
8012
8210
|
id: string;
|
|
8211
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8013
8212
|
badge?: {
|
|
8014
8213
|
label: string;
|
|
8015
8214
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8016
8215
|
} | undefined;
|
|
8017
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8018
8216
|
meta?: string[] | undefined;
|
|
8019
8217
|
}, {
|
|
8020
8218
|
title: string;
|
|
8021
8219
|
id: string;
|
|
8220
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8022
8221
|
badge?: {
|
|
8023
8222
|
label: string;
|
|
8024
8223
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8025
8224
|
} | undefined;
|
|
8026
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8027
8225
|
meta?: string[] | undefined;
|
|
8028
8226
|
}>, "many">;
|
|
8029
8227
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8032,11 +8230,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8032
8230
|
cards: {
|
|
8033
8231
|
title: string;
|
|
8034
8232
|
id: string;
|
|
8233
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8035
8234
|
badge?: {
|
|
8036
8235
|
label: string;
|
|
8037
8236
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8038
8237
|
} | undefined;
|
|
8039
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8040
8238
|
meta?: string[] | undefined;
|
|
8041
8239
|
}[];
|
|
8042
8240
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -8046,11 +8244,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8046
8244
|
cards: {
|
|
8047
8245
|
title: string;
|
|
8048
8246
|
id: string;
|
|
8247
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8049
8248
|
badge?: {
|
|
8050
8249
|
label: string;
|
|
8051
8250
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8052
8251
|
} | undefined;
|
|
8053
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8054
8252
|
meta?: string[] | undefined;
|
|
8055
8253
|
}[];
|
|
8056
8254
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -8064,11 +8262,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8064
8262
|
cards: {
|
|
8065
8263
|
title: string;
|
|
8066
8264
|
id: string;
|
|
8265
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8067
8266
|
badge?: {
|
|
8068
8267
|
label: string;
|
|
8069
8268
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8070
8269
|
} | undefined;
|
|
8071
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8072
8270
|
meta?: string[] | undefined;
|
|
8073
8271
|
}[];
|
|
8074
8272
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -8082,11 +8280,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8082
8280
|
cards: {
|
|
8083
8281
|
title: string;
|
|
8084
8282
|
id: string;
|
|
8283
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8085
8284
|
badge?: {
|
|
8086
8285
|
label: string;
|
|
8087
8286
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8088
8287
|
} | undefined;
|
|
8089
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8090
8288
|
meta?: string[] | undefined;
|
|
8091
8289
|
}[];
|
|
8092
8290
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -8206,27 +8404,33 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8206
8404
|
}>, z.ZodObject<{
|
|
8207
8405
|
type: z.ZodLiteral<"input">;
|
|
8208
8406
|
name: z.ZodString;
|
|
8209
|
-
input: z.ZodOptional<z.ZodEnum<["text", "textarea", "number", "date", "datetime", "time"]>>;
|
|
8407
|
+
input: z.ZodOptional<z.ZodEnum<["text", "textarea", "number", "date", "datetime", "time", "url", "email", "file"]>>;
|
|
8210
8408
|
label: z.ZodOptional<z.ZodString>;
|
|
8211
8409
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
8212
8410
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
8213
8411
|
value: z.ZodOptional<z.ZodString>;
|
|
8412
|
+
accept: z.ZodOptional<z.ZodString>;
|
|
8413
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
8214
8414
|
}, "strip", z.ZodTypeAny, {
|
|
8215
8415
|
type: "input";
|
|
8216
8416
|
name: string;
|
|
8217
8417
|
value?: string | undefined;
|
|
8218
8418
|
label?: string | undefined;
|
|
8219
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
8419
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
8220
8420
|
placeholder?: string | undefined;
|
|
8221
8421
|
required?: boolean | undefined;
|
|
8422
|
+
accept?: string | undefined;
|
|
8423
|
+
multiple?: boolean | undefined;
|
|
8222
8424
|
}, {
|
|
8223
8425
|
type: "input";
|
|
8224
8426
|
name: string;
|
|
8225
8427
|
value?: string | undefined;
|
|
8226
8428
|
label?: string | undefined;
|
|
8227
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
8429
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
8228
8430
|
placeholder?: string | undefined;
|
|
8229
8431
|
required?: boolean | undefined;
|
|
8432
|
+
accept?: string | undefined;
|
|
8433
|
+
multiple?: boolean | undefined;
|
|
8230
8434
|
}>, z.ZodObject<{
|
|
8231
8435
|
type: z.ZodLiteral<"toggle">;
|
|
8232
8436
|
name: z.ZodString;
|
|
@@ -8664,14 +8868,32 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8664
8868
|
label: z.ZodString;
|
|
8665
8869
|
value: z.ZodString;
|
|
8666
8870
|
short: z.ZodOptional<z.ZodBoolean>;
|
|
8871
|
+
parts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8872
|
+
text: z.ZodString;
|
|
8873
|
+
tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
|
|
8874
|
+
}, "strip", z.ZodTypeAny, {
|
|
8875
|
+
text: string;
|
|
8876
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8877
|
+
}, {
|
|
8878
|
+
text: string;
|
|
8879
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8880
|
+
}>, "many">>;
|
|
8667
8881
|
}, "strip", z.ZodTypeAny, {
|
|
8668
8882
|
value: string;
|
|
8669
8883
|
label: string;
|
|
8670
8884
|
short?: boolean | undefined;
|
|
8885
|
+
parts?: {
|
|
8886
|
+
text: string;
|
|
8887
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8888
|
+
}[] | undefined;
|
|
8671
8889
|
}, {
|
|
8672
8890
|
value: string;
|
|
8673
8891
|
label: string;
|
|
8674
8892
|
short?: boolean | undefined;
|
|
8893
|
+
parts?: {
|
|
8894
|
+
text: string;
|
|
8895
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8896
|
+
}[] | undefined;
|
|
8675
8897
|
}>, "many">;
|
|
8676
8898
|
}, "strip", z.ZodTypeAny, {
|
|
8677
8899
|
type: "fields";
|
|
@@ -8679,6 +8901,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8679
8901
|
value: string;
|
|
8680
8902
|
label: string;
|
|
8681
8903
|
short?: boolean | undefined;
|
|
8904
|
+
parts?: {
|
|
8905
|
+
text: string;
|
|
8906
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8907
|
+
}[] | undefined;
|
|
8682
8908
|
}[];
|
|
8683
8909
|
}, {
|
|
8684
8910
|
type: "fields";
|
|
@@ -8686,6 +8912,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8686
8912
|
value: string;
|
|
8687
8913
|
label: string;
|
|
8688
8914
|
short?: boolean | undefined;
|
|
8915
|
+
parts?: {
|
|
8916
|
+
text: string;
|
|
8917
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
8918
|
+
}[] | undefined;
|
|
8689
8919
|
}[];
|
|
8690
8920
|
}>, z.ZodObject<{
|
|
8691
8921
|
type: z.ZodLiteral<"image">;
|
|
@@ -8977,14 +9207,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8977
9207
|
type: "callout";
|
|
8978
9208
|
text: string;
|
|
8979
9209
|
title?: string | undefined;
|
|
8980
|
-
icon?: string | undefined;
|
|
8981
9210
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9211
|
+
icon?: string | undefined;
|
|
8982
9212
|
}, {
|
|
8983
9213
|
type: "callout";
|
|
8984
9214
|
text: string;
|
|
8985
9215
|
title?: string | undefined;
|
|
8986
|
-
icon?: string | undefined;
|
|
8987
9216
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9217
|
+
icon?: string | undefined;
|
|
8988
9218
|
}>, z.ZodObject<{
|
|
8989
9219
|
type: z.ZodLiteral<"entityRef">;
|
|
8990
9220
|
label: z.ZodString;
|
|
@@ -8994,14 +9224,14 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
8994
9224
|
}, "strip", z.ZodTypeAny, {
|
|
8995
9225
|
type: "entityRef";
|
|
8996
9226
|
label: string;
|
|
8997
|
-
url?: string | undefined;
|
|
8998
9227
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9228
|
+
url?: string | undefined;
|
|
8999
9229
|
entity?: string | undefined;
|
|
9000
9230
|
}, {
|
|
9001
9231
|
type: "entityRef";
|
|
9002
9232
|
label: string;
|
|
9003
|
-
url?: string | undefined;
|
|
9004
9233
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9234
|
+
url?: string | undefined;
|
|
9005
9235
|
entity?: string | undefined;
|
|
9006
9236
|
}>, z.ZodObject<{
|
|
9007
9237
|
type: z.ZodLiteral<"kanban">;
|
|
@@ -9027,20 +9257,20 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9027
9257
|
}, "strip", z.ZodTypeAny, {
|
|
9028
9258
|
title: string;
|
|
9029
9259
|
id: string;
|
|
9260
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9030
9261
|
badge?: {
|
|
9031
9262
|
label: string;
|
|
9032
9263
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9033
9264
|
} | undefined;
|
|
9034
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9035
9265
|
meta?: string[] | undefined;
|
|
9036
9266
|
}, {
|
|
9037
9267
|
title: string;
|
|
9038
9268
|
id: string;
|
|
9269
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9039
9270
|
badge?: {
|
|
9040
9271
|
label: string;
|
|
9041
9272
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9042
9273
|
} | undefined;
|
|
9043
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9044
9274
|
meta?: string[] | undefined;
|
|
9045
9275
|
}>, "many">;
|
|
9046
9276
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9049,11 +9279,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9049
9279
|
cards: {
|
|
9050
9280
|
title: string;
|
|
9051
9281
|
id: string;
|
|
9282
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9052
9283
|
badge?: {
|
|
9053
9284
|
label: string;
|
|
9054
9285
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9055
9286
|
} | undefined;
|
|
9056
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9057
9287
|
meta?: string[] | undefined;
|
|
9058
9288
|
}[];
|
|
9059
9289
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -9063,11 +9293,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9063
9293
|
cards: {
|
|
9064
9294
|
title: string;
|
|
9065
9295
|
id: string;
|
|
9296
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9066
9297
|
badge?: {
|
|
9067
9298
|
label: string;
|
|
9068
9299
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9069
9300
|
} | undefined;
|
|
9070
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9071
9301
|
meta?: string[] | undefined;
|
|
9072
9302
|
}[];
|
|
9073
9303
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -9081,11 +9311,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9081
9311
|
cards: {
|
|
9082
9312
|
title: string;
|
|
9083
9313
|
id: string;
|
|
9314
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9084
9315
|
badge?: {
|
|
9085
9316
|
label: string;
|
|
9086
9317
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9087
9318
|
} | undefined;
|
|
9088
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9089
9319
|
meta?: string[] | undefined;
|
|
9090
9320
|
}[];
|
|
9091
9321
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -9099,11 +9329,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9099
9329
|
cards: {
|
|
9100
9330
|
title: string;
|
|
9101
9331
|
id: string;
|
|
9332
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9102
9333
|
badge?: {
|
|
9103
9334
|
label: string;
|
|
9104
9335
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9105
9336
|
} | undefined;
|
|
9106
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9107
9337
|
meta?: string[] | undefined;
|
|
9108
9338
|
}[];
|
|
9109
9339
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -9223,27 +9453,33 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9223
9453
|
}>, z.ZodObject<{
|
|
9224
9454
|
type: z.ZodLiteral<"input">;
|
|
9225
9455
|
name: z.ZodString;
|
|
9226
|
-
input: z.ZodOptional<z.ZodEnum<["text", "textarea", "number", "date", "datetime", "time"]>>;
|
|
9456
|
+
input: z.ZodOptional<z.ZodEnum<["text", "textarea", "number", "date", "datetime", "time", "url", "email", "file"]>>;
|
|
9227
9457
|
label: z.ZodOptional<z.ZodString>;
|
|
9228
9458
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
9229
9459
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
9230
9460
|
value: z.ZodOptional<z.ZodString>;
|
|
9461
|
+
accept: z.ZodOptional<z.ZodString>;
|
|
9462
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
9231
9463
|
}, "strip", z.ZodTypeAny, {
|
|
9232
9464
|
type: "input";
|
|
9233
9465
|
name: string;
|
|
9234
9466
|
value?: string | undefined;
|
|
9235
9467
|
label?: string | undefined;
|
|
9236
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
9468
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
9237
9469
|
placeholder?: string | undefined;
|
|
9238
9470
|
required?: boolean | undefined;
|
|
9471
|
+
accept?: string | undefined;
|
|
9472
|
+
multiple?: boolean | undefined;
|
|
9239
9473
|
}, {
|
|
9240
9474
|
type: "input";
|
|
9241
9475
|
name: string;
|
|
9242
9476
|
value?: string | undefined;
|
|
9243
9477
|
label?: string | undefined;
|
|
9244
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
9478
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
9245
9479
|
placeholder?: string | undefined;
|
|
9246
9480
|
required?: boolean | undefined;
|
|
9481
|
+
accept?: string | undefined;
|
|
9482
|
+
multiple?: boolean | undefined;
|
|
9247
9483
|
}>, z.ZodObject<{
|
|
9248
9484
|
type: z.ZodLiteral<"toggle">;
|
|
9249
9485
|
name: z.ZodString;
|
|
@@ -9660,6 +9896,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9660
9896
|
value: string;
|
|
9661
9897
|
label: string;
|
|
9662
9898
|
short?: boolean | undefined;
|
|
9899
|
+
parts?: {
|
|
9900
|
+
text: string;
|
|
9901
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9902
|
+
}[] | undefined;
|
|
9663
9903
|
}[];
|
|
9664
9904
|
} | {
|
|
9665
9905
|
type: "image";
|
|
@@ -9686,9 +9926,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9686
9926
|
name: string;
|
|
9687
9927
|
value?: string | undefined;
|
|
9688
9928
|
label?: string | undefined;
|
|
9689
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
9929
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
9690
9930
|
placeholder?: string | undefined;
|
|
9691
9931
|
required?: boolean | undefined;
|
|
9932
|
+
accept?: string | undefined;
|
|
9933
|
+
multiple?: boolean | undefined;
|
|
9692
9934
|
} | {
|
|
9693
9935
|
type: "toggle";
|
|
9694
9936
|
label: string;
|
|
@@ -9871,13 +10113,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9871
10113
|
type: "callout";
|
|
9872
10114
|
text: string;
|
|
9873
10115
|
title?: string | undefined;
|
|
9874
|
-
icon?: string | undefined;
|
|
9875
10116
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10117
|
+
icon?: string | undefined;
|
|
9876
10118
|
} | {
|
|
9877
10119
|
type: "entityRef";
|
|
9878
10120
|
label: string;
|
|
9879
|
-
url?: string | undefined;
|
|
9880
10121
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10122
|
+
url?: string | undefined;
|
|
9881
10123
|
entity?: string | undefined;
|
|
9882
10124
|
} | {
|
|
9883
10125
|
type: "kanban";
|
|
@@ -9887,11 +10129,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9887
10129
|
cards: {
|
|
9888
10130
|
title: string;
|
|
9889
10131
|
id: string;
|
|
10132
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9890
10133
|
badge?: {
|
|
9891
10134
|
label: string;
|
|
9892
10135
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9893
10136
|
} | undefined;
|
|
9894
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
9895
10137
|
meta?: string[] | undefined;
|
|
9896
10138
|
}[];
|
|
9897
10139
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -9935,6 +10177,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9935
10177
|
value: string;
|
|
9936
10178
|
label: string;
|
|
9937
10179
|
short?: boolean | undefined;
|
|
10180
|
+
parts?: {
|
|
10181
|
+
text: string;
|
|
10182
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10183
|
+
}[] | undefined;
|
|
9938
10184
|
}[];
|
|
9939
10185
|
} | {
|
|
9940
10186
|
type: "image";
|
|
@@ -9961,9 +10207,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
9961
10207
|
name: string;
|
|
9962
10208
|
value?: string | undefined;
|
|
9963
10209
|
label?: string | undefined;
|
|
9964
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
10210
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
9965
10211
|
placeholder?: string | undefined;
|
|
9966
10212
|
required?: boolean | undefined;
|
|
10213
|
+
accept?: string | undefined;
|
|
10214
|
+
multiple?: boolean | undefined;
|
|
9967
10215
|
} | {
|
|
9968
10216
|
type: "toggle";
|
|
9969
10217
|
label: string;
|
|
@@ -10146,13 +10394,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10146
10394
|
type: "callout";
|
|
10147
10395
|
text: string;
|
|
10148
10396
|
title?: string | undefined;
|
|
10149
|
-
icon?: string | undefined;
|
|
10150
10397
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10398
|
+
icon?: string | undefined;
|
|
10151
10399
|
} | {
|
|
10152
10400
|
type: "entityRef";
|
|
10153
10401
|
label: string;
|
|
10154
|
-
url?: string | undefined;
|
|
10155
10402
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10403
|
+
url?: string | undefined;
|
|
10156
10404
|
entity?: string | undefined;
|
|
10157
10405
|
} | {
|
|
10158
10406
|
type: "kanban";
|
|
@@ -10162,11 +10410,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10162
10410
|
cards: {
|
|
10163
10411
|
title: string;
|
|
10164
10412
|
id: string;
|
|
10413
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10165
10414
|
badge?: {
|
|
10166
10415
|
label: string;
|
|
10167
10416
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10168
10417
|
} | undefined;
|
|
10169
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10170
10418
|
meta?: string[] | undefined;
|
|
10171
10419
|
}[];
|
|
10172
10420
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -10252,6 +10500,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10252
10500
|
value: string;
|
|
10253
10501
|
label: string;
|
|
10254
10502
|
short?: boolean | undefined;
|
|
10503
|
+
parts?: {
|
|
10504
|
+
text: string;
|
|
10505
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10506
|
+
}[] | undefined;
|
|
10255
10507
|
}[];
|
|
10256
10508
|
} | {
|
|
10257
10509
|
type: "image";
|
|
@@ -10278,9 +10530,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10278
10530
|
name: string;
|
|
10279
10531
|
value?: string | undefined;
|
|
10280
10532
|
label?: string | undefined;
|
|
10281
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
10533
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
10282
10534
|
placeholder?: string | undefined;
|
|
10283
10535
|
required?: boolean | undefined;
|
|
10536
|
+
accept?: string | undefined;
|
|
10537
|
+
multiple?: boolean | undefined;
|
|
10284
10538
|
} | {
|
|
10285
10539
|
type: "toggle";
|
|
10286
10540
|
label: string;
|
|
@@ -10463,13 +10717,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10463
10717
|
type: "callout";
|
|
10464
10718
|
text: string;
|
|
10465
10719
|
title?: string | undefined;
|
|
10466
|
-
icon?: string | undefined;
|
|
10467
10720
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10721
|
+
icon?: string | undefined;
|
|
10468
10722
|
} | {
|
|
10469
10723
|
type: "entityRef";
|
|
10470
10724
|
label: string;
|
|
10471
|
-
url?: string | undefined;
|
|
10472
10725
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10726
|
+
url?: string | undefined;
|
|
10473
10727
|
entity?: string | undefined;
|
|
10474
10728
|
} | {
|
|
10475
10729
|
type: "kanban";
|
|
@@ -10479,11 +10733,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10479
10733
|
cards: {
|
|
10480
10734
|
title: string;
|
|
10481
10735
|
id: string;
|
|
10736
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10482
10737
|
badge?: {
|
|
10483
10738
|
label: string;
|
|
10484
10739
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10485
10740
|
} | undefined;
|
|
10486
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10487
10741
|
meta?: string[] | undefined;
|
|
10488
10742
|
}[];
|
|
10489
10743
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -10543,6 +10797,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10543
10797
|
value: string;
|
|
10544
10798
|
label: string;
|
|
10545
10799
|
short?: boolean | undefined;
|
|
10800
|
+
parts?: {
|
|
10801
|
+
text: string;
|
|
10802
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10803
|
+
}[] | undefined;
|
|
10546
10804
|
}[];
|
|
10547
10805
|
} | {
|
|
10548
10806
|
type: "image";
|
|
@@ -10569,9 +10827,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10569
10827
|
name: string;
|
|
10570
10828
|
value?: string | undefined;
|
|
10571
10829
|
label?: string | undefined;
|
|
10572
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
10830
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
10573
10831
|
placeholder?: string | undefined;
|
|
10574
10832
|
required?: boolean | undefined;
|
|
10833
|
+
accept?: string | undefined;
|
|
10834
|
+
multiple?: boolean | undefined;
|
|
10575
10835
|
} | {
|
|
10576
10836
|
type: "toggle";
|
|
10577
10837
|
label: string;
|
|
@@ -10754,13 +11014,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10754
11014
|
type: "callout";
|
|
10755
11015
|
text: string;
|
|
10756
11016
|
title?: string | undefined;
|
|
10757
|
-
icon?: string | undefined;
|
|
10758
11017
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11018
|
+
icon?: string | undefined;
|
|
10759
11019
|
} | {
|
|
10760
11020
|
type: "entityRef";
|
|
10761
11021
|
label: string;
|
|
10762
|
-
url?: string | undefined;
|
|
10763
11022
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11023
|
+
url?: string | undefined;
|
|
10764
11024
|
entity?: string | undefined;
|
|
10765
11025
|
} | {
|
|
10766
11026
|
type: "kanban";
|
|
@@ -10770,11 +11030,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10770
11030
|
cards: {
|
|
10771
11031
|
title: string;
|
|
10772
11032
|
id: string;
|
|
11033
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10773
11034
|
badge?: {
|
|
10774
11035
|
label: string;
|
|
10775
11036
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10776
11037
|
} | undefined;
|
|
10777
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
10778
11038
|
meta?: string[] | undefined;
|
|
10779
11039
|
}[];
|
|
10780
11040
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -10839,6 +11099,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10839
11099
|
value: string;
|
|
10840
11100
|
label: string;
|
|
10841
11101
|
short?: boolean | undefined;
|
|
11102
|
+
parts?: {
|
|
11103
|
+
text: string;
|
|
11104
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11105
|
+
}[] | undefined;
|
|
10842
11106
|
}[];
|
|
10843
11107
|
} | {
|
|
10844
11108
|
type: "image";
|
|
@@ -10865,9 +11129,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
10865
11129
|
name: string;
|
|
10866
11130
|
value?: string | undefined;
|
|
10867
11131
|
label?: string | undefined;
|
|
10868
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
11132
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
10869
11133
|
placeholder?: string | undefined;
|
|
10870
11134
|
required?: boolean | undefined;
|
|
11135
|
+
accept?: string | undefined;
|
|
11136
|
+
multiple?: boolean | undefined;
|
|
10871
11137
|
} | {
|
|
10872
11138
|
type: "toggle";
|
|
10873
11139
|
label: string;
|
|
@@ -11050,13 +11316,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11050
11316
|
type: "callout";
|
|
11051
11317
|
text: string;
|
|
11052
11318
|
title?: string | undefined;
|
|
11053
|
-
icon?: string | undefined;
|
|
11054
11319
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11320
|
+
icon?: string | undefined;
|
|
11055
11321
|
} | {
|
|
11056
11322
|
type: "entityRef";
|
|
11057
11323
|
label: string;
|
|
11058
|
-
url?: string | undefined;
|
|
11059
11324
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11325
|
+
url?: string | undefined;
|
|
11060
11326
|
entity?: string | undefined;
|
|
11061
11327
|
} | {
|
|
11062
11328
|
type: "kanban";
|
|
@@ -11066,11 +11332,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11066
11332
|
cards: {
|
|
11067
11333
|
title: string;
|
|
11068
11334
|
id: string;
|
|
11335
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11069
11336
|
badge?: {
|
|
11070
11337
|
label: string;
|
|
11071
11338
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11072
11339
|
} | undefined;
|
|
11073
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11074
11340
|
meta?: string[] | undefined;
|
|
11075
11341
|
}[];
|
|
11076
11342
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -11114,6 +11380,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11114
11380
|
value: string;
|
|
11115
11381
|
label: string;
|
|
11116
11382
|
short?: boolean | undefined;
|
|
11383
|
+
parts?: {
|
|
11384
|
+
text: string;
|
|
11385
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11386
|
+
}[] | undefined;
|
|
11117
11387
|
}[];
|
|
11118
11388
|
} | {
|
|
11119
11389
|
type: "image";
|
|
@@ -11140,9 +11410,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11140
11410
|
name: string;
|
|
11141
11411
|
value?: string | undefined;
|
|
11142
11412
|
label?: string | undefined;
|
|
11143
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
11413
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
11144
11414
|
placeholder?: string | undefined;
|
|
11145
11415
|
required?: boolean | undefined;
|
|
11416
|
+
accept?: string | undefined;
|
|
11417
|
+
multiple?: boolean | undefined;
|
|
11146
11418
|
} | {
|
|
11147
11419
|
type: "toggle";
|
|
11148
11420
|
label: string;
|
|
@@ -11325,13 +11597,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11325
11597
|
type: "callout";
|
|
11326
11598
|
text: string;
|
|
11327
11599
|
title?: string | undefined;
|
|
11328
|
-
icon?: string | undefined;
|
|
11329
11600
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11601
|
+
icon?: string | undefined;
|
|
11330
11602
|
} | {
|
|
11331
11603
|
type: "entityRef";
|
|
11332
11604
|
label: string;
|
|
11333
|
-
url?: string | undefined;
|
|
11334
11605
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11606
|
+
url?: string | undefined;
|
|
11335
11607
|
entity?: string | undefined;
|
|
11336
11608
|
} | {
|
|
11337
11609
|
type: "kanban";
|
|
@@ -11341,11 +11613,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11341
11613
|
cards: {
|
|
11342
11614
|
title: string;
|
|
11343
11615
|
id: string;
|
|
11616
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11344
11617
|
badge?: {
|
|
11345
11618
|
label: string;
|
|
11346
11619
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11347
11620
|
} | undefined;
|
|
11348
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11349
11621
|
meta?: string[] | undefined;
|
|
11350
11622
|
}[];
|
|
11351
11623
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -11396,6 +11668,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11396
11668
|
value: string;
|
|
11397
11669
|
label: string;
|
|
11398
11670
|
short?: boolean | undefined;
|
|
11671
|
+
parts?: {
|
|
11672
|
+
text: string;
|
|
11673
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11674
|
+
}[] | undefined;
|
|
11399
11675
|
}[];
|
|
11400
11676
|
} | {
|
|
11401
11677
|
type: "image";
|
|
@@ -11422,9 +11698,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11422
11698
|
name: string;
|
|
11423
11699
|
value?: string | undefined;
|
|
11424
11700
|
label?: string | undefined;
|
|
11425
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
11701
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
11426
11702
|
placeholder?: string | undefined;
|
|
11427
11703
|
required?: boolean | undefined;
|
|
11704
|
+
accept?: string | undefined;
|
|
11705
|
+
multiple?: boolean | undefined;
|
|
11428
11706
|
} | {
|
|
11429
11707
|
type: "toggle";
|
|
11430
11708
|
label: string;
|
|
@@ -11607,13 +11885,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11607
11885
|
type: "callout";
|
|
11608
11886
|
text: string;
|
|
11609
11887
|
title?: string | undefined;
|
|
11610
|
-
icon?: string | undefined;
|
|
11611
11888
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11889
|
+
icon?: string | undefined;
|
|
11612
11890
|
} | {
|
|
11613
11891
|
type: "entityRef";
|
|
11614
11892
|
label: string;
|
|
11615
|
-
url?: string | undefined;
|
|
11616
11893
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11894
|
+
url?: string | undefined;
|
|
11617
11895
|
entity?: string | undefined;
|
|
11618
11896
|
} | {
|
|
11619
11897
|
type: "kanban";
|
|
@@ -11623,11 +11901,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11623
11901
|
cards: {
|
|
11624
11902
|
title: string;
|
|
11625
11903
|
id: string;
|
|
11904
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11626
11905
|
badge?: {
|
|
11627
11906
|
label: string;
|
|
11628
11907
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11629
11908
|
} | undefined;
|
|
11630
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11631
11909
|
meta?: string[] | undefined;
|
|
11632
11910
|
}[];
|
|
11633
11911
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -11687,6 +11965,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11687
11965
|
value: string;
|
|
11688
11966
|
label: string;
|
|
11689
11967
|
short?: boolean | undefined;
|
|
11968
|
+
parts?: {
|
|
11969
|
+
text: string;
|
|
11970
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11971
|
+
}[] | undefined;
|
|
11690
11972
|
}[];
|
|
11691
11973
|
} | {
|
|
11692
11974
|
type: "image";
|
|
@@ -11713,9 +11995,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11713
11995
|
name: string;
|
|
11714
11996
|
value?: string | undefined;
|
|
11715
11997
|
label?: string | undefined;
|
|
11716
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
11998
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
11717
11999
|
placeholder?: string | undefined;
|
|
11718
12000
|
required?: boolean | undefined;
|
|
12001
|
+
accept?: string | undefined;
|
|
12002
|
+
multiple?: boolean | undefined;
|
|
11719
12003
|
} | {
|
|
11720
12004
|
type: "toggle";
|
|
11721
12005
|
label: string;
|
|
@@ -11898,13 +12182,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11898
12182
|
type: "callout";
|
|
11899
12183
|
text: string;
|
|
11900
12184
|
title?: string | undefined;
|
|
11901
|
-
icon?: string | undefined;
|
|
11902
12185
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12186
|
+
icon?: string | undefined;
|
|
11903
12187
|
} | {
|
|
11904
12188
|
type: "entityRef";
|
|
11905
12189
|
label: string;
|
|
11906
|
-
url?: string | undefined;
|
|
11907
12190
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12191
|
+
url?: string | undefined;
|
|
11908
12192
|
entity?: string | undefined;
|
|
11909
12193
|
} | {
|
|
11910
12194
|
type: "kanban";
|
|
@@ -11914,11 +12198,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11914
12198
|
cards: {
|
|
11915
12199
|
title: string;
|
|
11916
12200
|
id: string;
|
|
12201
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11917
12202
|
badge?: {
|
|
11918
12203
|
label: string;
|
|
11919
12204
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11920
12205
|
} | undefined;
|
|
11921
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
11922
12206
|
meta?: string[] | undefined;
|
|
11923
12207
|
}[];
|
|
11924
12208
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -11988,6 +12272,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
11988
12272
|
value: string;
|
|
11989
12273
|
label: string;
|
|
11990
12274
|
short?: boolean | undefined;
|
|
12275
|
+
parts?: {
|
|
12276
|
+
text: string;
|
|
12277
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12278
|
+
}[] | undefined;
|
|
11991
12279
|
}[];
|
|
11992
12280
|
} | {
|
|
11993
12281
|
type: "image";
|
|
@@ -12014,9 +12302,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12014
12302
|
name: string;
|
|
12015
12303
|
value?: string | undefined;
|
|
12016
12304
|
label?: string | undefined;
|
|
12017
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
12305
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
12018
12306
|
placeholder?: string | undefined;
|
|
12019
12307
|
required?: boolean | undefined;
|
|
12308
|
+
accept?: string | undefined;
|
|
12309
|
+
multiple?: boolean | undefined;
|
|
12020
12310
|
} | {
|
|
12021
12311
|
type: "toggle";
|
|
12022
12312
|
label: string;
|
|
@@ -12199,13 +12489,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12199
12489
|
type: "callout";
|
|
12200
12490
|
text: string;
|
|
12201
12491
|
title?: string | undefined;
|
|
12202
|
-
icon?: string | undefined;
|
|
12203
12492
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12493
|
+
icon?: string | undefined;
|
|
12204
12494
|
} | {
|
|
12205
12495
|
type: "entityRef";
|
|
12206
12496
|
label: string;
|
|
12207
|
-
url?: string | undefined;
|
|
12208
12497
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12498
|
+
url?: string | undefined;
|
|
12209
12499
|
entity?: string | undefined;
|
|
12210
12500
|
} | {
|
|
12211
12501
|
type: "kanban";
|
|
@@ -12215,11 +12505,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12215
12505
|
cards: {
|
|
12216
12506
|
title: string;
|
|
12217
12507
|
id: string;
|
|
12508
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12218
12509
|
badge?: {
|
|
12219
12510
|
label: string;
|
|
12220
12511
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12221
12512
|
} | undefined;
|
|
12222
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12223
12513
|
meta?: string[] | undefined;
|
|
12224
12514
|
}[];
|
|
12225
12515
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -12263,6 +12553,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12263
12553
|
value: string;
|
|
12264
12554
|
label: string;
|
|
12265
12555
|
short?: boolean | undefined;
|
|
12556
|
+
parts?: {
|
|
12557
|
+
text: string;
|
|
12558
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12559
|
+
}[] | undefined;
|
|
12266
12560
|
}[];
|
|
12267
12561
|
} | {
|
|
12268
12562
|
type: "image";
|
|
@@ -12289,9 +12583,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12289
12583
|
name: string;
|
|
12290
12584
|
value?: string | undefined;
|
|
12291
12585
|
label?: string | undefined;
|
|
12292
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
12586
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
12293
12587
|
placeholder?: string | undefined;
|
|
12294
12588
|
required?: boolean | undefined;
|
|
12589
|
+
accept?: string | undefined;
|
|
12590
|
+
multiple?: boolean | undefined;
|
|
12295
12591
|
} | {
|
|
12296
12592
|
type: "toggle";
|
|
12297
12593
|
label: string;
|
|
@@ -12474,13 +12770,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12474
12770
|
type: "callout";
|
|
12475
12771
|
text: string;
|
|
12476
12772
|
title?: string | undefined;
|
|
12477
|
-
icon?: string | undefined;
|
|
12478
12773
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12774
|
+
icon?: string | undefined;
|
|
12479
12775
|
} | {
|
|
12480
12776
|
type: "entityRef";
|
|
12481
12777
|
label: string;
|
|
12482
|
-
url?: string | undefined;
|
|
12483
12778
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12779
|
+
url?: string | undefined;
|
|
12484
12780
|
entity?: string | undefined;
|
|
12485
12781
|
} | {
|
|
12486
12782
|
type: "kanban";
|
|
@@ -12490,11 +12786,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12490
12786
|
cards: {
|
|
12491
12787
|
title: string;
|
|
12492
12788
|
id: string;
|
|
12789
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12493
12790
|
badge?: {
|
|
12494
12791
|
label: string;
|
|
12495
12792
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12496
12793
|
} | undefined;
|
|
12497
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12498
12794
|
meta?: string[] | undefined;
|
|
12499
12795
|
}[];
|
|
12500
12796
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -12961,66 +13257,726 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
12961
13257
|
title: z.ZodString;
|
|
12962
13258
|
description: z.ZodOptional<z.ZodString>;
|
|
12963
13259
|
tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
|
|
12964
|
-
|
|
13260
|
+
blocks: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
13261
|
+
type: z.ZodLiteral<"input">;
|
|
13262
|
+
name: z.ZodString;
|
|
13263
|
+
input: z.ZodOptional<z.ZodEnum<["text", "textarea", "number", "date", "datetime", "time", "url", "email", "file"]>>;
|
|
13264
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13265
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
13266
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
13267
|
+
value: z.ZodOptional<z.ZodString>;
|
|
13268
|
+
accept: z.ZodOptional<z.ZodString>;
|
|
13269
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13270
|
+
}, "strip", z.ZodTypeAny, {
|
|
13271
|
+
type: "input";
|
|
13272
|
+
name: string;
|
|
13273
|
+
value?: string | undefined;
|
|
13274
|
+
label?: string | undefined;
|
|
13275
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13276
|
+
placeholder?: string | undefined;
|
|
13277
|
+
required?: boolean | undefined;
|
|
13278
|
+
accept?: string | undefined;
|
|
13279
|
+
multiple?: boolean | undefined;
|
|
13280
|
+
}, {
|
|
13281
|
+
type: "input";
|
|
13282
|
+
name: string;
|
|
13283
|
+
value?: string | undefined;
|
|
13284
|
+
label?: string | undefined;
|
|
13285
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13286
|
+
placeholder?: string | undefined;
|
|
13287
|
+
required?: boolean | undefined;
|
|
13288
|
+
accept?: string | undefined;
|
|
13289
|
+
multiple?: boolean | undefined;
|
|
13290
|
+
}>, z.ZodObject<{
|
|
13291
|
+
type: z.ZodLiteral<"select">;
|
|
13292
|
+
name: z.ZodString;
|
|
13293
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13294
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
13295
|
+
options: z.ZodArray<z.ZodObject<{
|
|
13296
|
+
value: z.ZodString;
|
|
13297
|
+
label: z.ZodString;
|
|
13298
|
+
}, "strip", z.ZodTypeAny, {
|
|
13299
|
+
value: string;
|
|
13300
|
+
label: string;
|
|
13301
|
+
}, {
|
|
13302
|
+
value: string;
|
|
13303
|
+
label: string;
|
|
13304
|
+
}>, "many">;
|
|
13305
|
+
value: z.ZodOptional<z.ZodString>;
|
|
13306
|
+
multi: z.ZodOptional<z.ZodBoolean>;
|
|
13307
|
+
}, "strip", z.ZodTypeAny, {
|
|
13308
|
+
options: {
|
|
13309
|
+
value: string;
|
|
13310
|
+
label: string;
|
|
13311
|
+
}[];
|
|
13312
|
+
type: "select";
|
|
13313
|
+
name: string;
|
|
13314
|
+
value?: string | undefined;
|
|
13315
|
+
label?: string | undefined;
|
|
13316
|
+
placeholder?: string | undefined;
|
|
13317
|
+
multi?: boolean | undefined;
|
|
13318
|
+
}, {
|
|
13319
|
+
options: {
|
|
13320
|
+
value: string;
|
|
13321
|
+
label: string;
|
|
13322
|
+
}[];
|
|
13323
|
+
type: "select";
|
|
13324
|
+
name: string;
|
|
13325
|
+
value?: string | undefined;
|
|
13326
|
+
label?: string | undefined;
|
|
13327
|
+
placeholder?: string | undefined;
|
|
13328
|
+
multi?: boolean | undefined;
|
|
13329
|
+
}>, z.ZodObject<{
|
|
13330
|
+
type: z.ZodLiteral<"radio">;
|
|
13331
|
+
name: z.ZodString;
|
|
13332
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13333
|
+
options: z.ZodArray<z.ZodObject<{
|
|
13334
|
+
value: z.ZodString;
|
|
13335
|
+
label: z.ZodString;
|
|
13336
|
+
}, "strip", z.ZodTypeAny, {
|
|
13337
|
+
value: string;
|
|
13338
|
+
label: string;
|
|
13339
|
+
}, {
|
|
13340
|
+
value: string;
|
|
13341
|
+
label: string;
|
|
13342
|
+
}>, "many">;
|
|
13343
|
+
value: z.ZodOptional<z.ZodString>;
|
|
13344
|
+
}, "strip", z.ZodTypeAny, {
|
|
13345
|
+
options: {
|
|
13346
|
+
value: string;
|
|
13347
|
+
label: string;
|
|
13348
|
+
}[];
|
|
13349
|
+
type: "radio";
|
|
13350
|
+
name: string;
|
|
13351
|
+
value?: string | undefined;
|
|
13352
|
+
label?: string | undefined;
|
|
13353
|
+
}, {
|
|
13354
|
+
options: {
|
|
13355
|
+
value: string;
|
|
13356
|
+
label: string;
|
|
13357
|
+
}[];
|
|
13358
|
+
type: "radio";
|
|
13359
|
+
name: string;
|
|
13360
|
+
value?: string | undefined;
|
|
13361
|
+
label?: string | undefined;
|
|
13362
|
+
}>, z.ZodObject<{
|
|
13363
|
+
type: z.ZodLiteral<"checkbox">;
|
|
13364
|
+
name: z.ZodString;
|
|
12965
13365
|
label: z.ZodString;
|
|
12966
|
-
|
|
12967
|
-
tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
|
|
13366
|
+
checked: z.ZodOptional<z.ZodBoolean>;
|
|
12968
13367
|
}, "strip", z.ZodTypeAny, {
|
|
13368
|
+
type: "checkbox";
|
|
12969
13369
|
label: string;
|
|
12970
|
-
|
|
12971
|
-
|
|
13370
|
+
name: string;
|
|
13371
|
+
checked?: boolean | undefined;
|
|
12972
13372
|
}, {
|
|
13373
|
+
type: "checkbox";
|
|
12973
13374
|
label: string;
|
|
12974
|
-
|
|
12975
|
-
|
|
12976
|
-
}
|
|
12977
|
-
|
|
12978
|
-
|
|
12979
|
-
|
|
12980
|
-
|
|
12981
|
-
|
|
12982
|
-
|
|
13375
|
+
name: string;
|
|
13376
|
+
checked?: boolean | undefined;
|
|
13377
|
+
}>, z.ZodObject<{
|
|
13378
|
+
type: z.ZodLiteral<"toggle">;
|
|
13379
|
+
name: z.ZodString;
|
|
13380
|
+
label: z.ZodString;
|
|
13381
|
+
checked: z.ZodOptional<z.ZodBoolean>;
|
|
13382
|
+
onText: z.ZodOptional<z.ZodString>;
|
|
13383
|
+
offText: z.ZodOptional<z.ZodString>;
|
|
13384
|
+
}, "strip", z.ZodTypeAny, {
|
|
13385
|
+
type: "toggle";
|
|
12983
13386
|
label: string;
|
|
12984
|
-
|
|
12985
|
-
|
|
12986
|
-
|
|
12987
|
-
|
|
12988
|
-
|
|
12989
|
-
|
|
12990
|
-
}, {
|
|
12991
|
-
title: string;
|
|
12992
|
-
id: string;
|
|
12993
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
12994
|
-
confirm?: {
|
|
13387
|
+
name: string;
|
|
13388
|
+
checked?: boolean | undefined;
|
|
13389
|
+
onText?: string | undefined;
|
|
13390
|
+
offText?: string | undefined;
|
|
13391
|
+
}, {
|
|
13392
|
+
type: "toggle";
|
|
12995
13393
|
label: string;
|
|
12996
|
-
|
|
12997
|
-
|
|
12998
|
-
|
|
12999
|
-
|
|
13000
|
-
|
|
13001
|
-
|
|
13002
|
-
|
|
13003
|
-
|
|
13004
|
-
|
|
13005
|
-
|
|
13006
|
-
|
|
13007
|
-
|
|
13008
|
-
|
|
13009
|
-
|
|
13394
|
+
name: string;
|
|
13395
|
+
checked?: boolean | undefined;
|
|
13396
|
+
onText?: string | undefined;
|
|
13397
|
+
offText?: string | undefined;
|
|
13398
|
+
}>, z.ZodObject<{
|
|
13399
|
+
type: z.ZodLiteral<"slider">;
|
|
13400
|
+
name: z.ZodString;
|
|
13401
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13402
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
13403
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
13404
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
13405
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
13406
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
13407
|
+
}, "strip", z.ZodTypeAny, {
|
|
13408
|
+
type: "slider";
|
|
13409
|
+
name: string;
|
|
13410
|
+
value?: number | undefined;
|
|
13411
|
+
label?: string | undefined;
|
|
13412
|
+
min?: number | undefined;
|
|
13413
|
+
max?: number | undefined;
|
|
13414
|
+
step?: number | undefined;
|
|
13415
|
+
unit?: string | undefined;
|
|
13416
|
+
}, {
|
|
13417
|
+
type: "slider";
|
|
13418
|
+
name: string;
|
|
13419
|
+
value?: number | undefined;
|
|
13420
|
+
label?: string | undefined;
|
|
13421
|
+
min?: number | undefined;
|
|
13422
|
+
max?: number | undefined;
|
|
13423
|
+
step?: number | undefined;
|
|
13424
|
+
unit?: string | undefined;
|
|
13425
|
+
}>]>, "many">>;
|
|
13426
|
+
steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13427
|
+
title: z.ZodOptional<z.ZodString>;
|
|
13428
|
+
blocks: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
13429
|
+
type: z.ZodLiteral<"input">;
|
|
13430
|
+
name: z.ZodString;
|
|
13431
|
+
input: z.ZodOptional<z.ZodEnum<["text", "textarea", "number", "date", "datetime", "time", "url", "email", "file"]>>;
|
|
13432
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13433
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
13434
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
13435
|
+
value: z.ZodOptional<z.ZodString>;
|
|
13436
|
+
accept: z.ZodOptional<z.ZodString>;
|
|
13437
|
+
multiple: z.ZodOptional<z.ZodBoolean>;
|
|
13438
|
+
}, "strip", z.ZodTypeAny, {
|
|
13439
|
+
type: "input";
|
|
13440
|
+
name: string;
|
|
13441
|
+
value?: string | undefined;
|
|
13442
|
+
label?: string | undefined;
|
|
13443
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13444
|
+
placeholder?: string | undefined;
|
|
13445
|
+
required?: boolean | undefined;
|
|
13446
|
+
accept?: string | undefined;
|
|
13447
|
+
multiple?: boolean | undefined;
|
|
13448
|
+
}, {
|
|
13449
|
+
type: "input";
|
|
13450
|
+
name: string;
|
|
13451
|
+
value?: string | undefined;
|
|
13452
|
+
label?: string | undefined;
|
|
13453
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13454
|
+
placeholder?: string | undefined;
|
|
13455
|
+
required?: boolean | undefined;
|
|
13456
|
+
accept?: string | undefined;
|
|
13457
|
+
multiple?: boolean | undefined;
|
|
13458
|
+
}>, z.ZodObject<{
|
|
13459
|
+
type: z.ZodLiteral<"select">;
|
|
13460
|
+
name: z.ZodString;
|
|
13461
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13462
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
13463
|
+
options: z.ZodArray<z.ZodObject<{
|
|
13464
|
+
value: z.ZodString;
|
|
13465
|
+
label: z.ZodString;
|
|
13466
|
+
}, "strip", z.ZodTypeAny, {
|
|
13010
13467
|
value: string;
|
|
13011
13468
|
label: string;
|
|
13012
|
-
}
|
|
13013
|
-
|
|
13014
|
-
} | {
|
|
13015
|
-
items: {
|
|
13469
|
+
}, {
|
|
13470
|
+
value: string;
|
|
13016
13471
|
label: string;
|
|
13017
|
-
|
|
13018
|
-
|
|
13019
|
-
|
|
13020
|
-
}
|
|
13021
|
-
|
|
13022
|
-
|
|
13023
|
-
|
|
13472
|
+
}>, "many">;
|
|
13473
|
+
value: z.ZodOptional<z.ZodString>;
|
|
13474
|
+
multi: z.ZodOptional<z.ZodBoolean>;
|
|
13475
|
+
}, "strip", z.ZodTypeAny, {
|
|
13476
|
+
options: {
|
|
13477
|
+
value: string;
|
|
13478
|
+
label: string;
|
|
13479
|
+
}[];
|
|
13480
|
+
type: "select";
|
|
13481
|
+
name: string;
|
|
13482
|
+
value?: string | undefined;
|
|
13483
|
+
label?: string | undefined;
|
|
13484
|
+
placeholder?: string | undefined;
|
|
13485
|
+
multi?: boolean | undefined;
|
|
13486
|
+
}, {
|
|
13487
|
+
options: {
|
|
13488
|
+
value: string;
|
|
13489
|
+
label: string;
|
|
13490
|
+
}[];
|
|
13491
|
+
type: "select";
|
|
13492
|
+
name: string;
|
|
13493
|
+
value?: string | undefined;
|
|
13494
|
+
label?: string | undefined;
|
|
13495
|
+
placeholder?: string | undefined;
|
|
13496
|
+
multi?: boolean | undefined;
|
|
13497
|
+
}>, z.ZodObject<{
|
|
13498
|
+
type: z.ZodLiteral<"radio">;
|
|
13499
|
+
name: z.ZodString;
|
|
13500
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13501
|
+
options: z.ZodArray<z.ZodObject<{
|
|
13502
|
+
value: z.ZodString;
|
|
13503
|
+
label: z.ZodString;
|
|
13504
|
+
}, "strip", z.ZodTypeAny, {
|
|
13505
|
+
value: string;
|
|
13506
|
+
label: string;
|
|
13507
|
+
}, {
|
|
13508
|
+
value: string;
|
|
13509
|
+
label: string;
|
|
13510
|
+
}>, "many">;
|
|
13511
|
+
value: z.ZodOptional<z.ZodString>;
|
|
13512
|
+
}, "strip", z.ZodTypeAny, {
|
|
13513
|
+
options: {
|
|
13514
|
+
value: string;
|
|
13515
|
+
label: string;
|
|
13516
|
+
}[];
|
|
13517
|
+
type: "radio";
|
|
13518
|
+
name: string;
|
|
13519
|
+
value?: string | undefined;
|
|
13520
|
+
label?: string | undefined;
|
|
13521
|
+
}, {
|
|
13522
|
+
options: {
|
|
13523
|
+
value: string;
|
|
13524
|
+
label: string;
|
|
13525
|
+
}[];
|
|
13526
|
+
type: "radio";
|
|
13527
|
+
name: string;
|
|
13528
|
+
value?: string | undefined;
|
|
13529
|
+
label?: string | undefined;
|
|
13530
|
+
}>, z.ZodObject<{
|
|
13531
|
+
type: z.ZodLiteral<"checkbox">;
|
|
13532
|
+
name: z.ZodString;
|
|
13533
|
+
label: z.ZodString;
|
|
13534
|
+
checked: z.ZodOptional<z.ZodBoolean>;
|
|
13535
|
+
}, "strip", z.ZodTypeAny, {
|
|
13536
|
+
type: "checkbox";
|
|
13537
|
+
label: string;
|
|
13538
|
+
name: string;
|
|
13539
|
+
checked?: boolean | undefined;
|
|
13540
|
+
}, {
|
|
13541
|
+
type: "checkbox";
|
|
13542
|
+
label: string;
|
|
13543
|
+
name: string;
|
|
13544
|
+
checked?: boolean | undefined;
|
|
13545
|
+
}>, z.ZodObject<{
|
|
13546
|
+
type: z.ZodLiteral<"toggle">;
|
|
13547
|
+
name: z.ZodString;
|
|
13548
|
+
label: z.ZodString;
|
|
13549
|
+
checked: z.ZodOptional<z.ZodBoolean>;
|
|
13550
|
+
onText: z.ZodOptional<z.ZodString>;
|
|
13551
|
+
offText: z.ZodOptional<z.ZodString>;
|
|
13552
|
+
}, "strip", z.ZodTypeAny, {
|
|
13553
|
+
type: "toggle";
|
|
13554
|
+
label: string;
|
|
13555
|
+
name: string;
|
|
13556
|
+
checked?: boolean | undefined;
|
|
13557
|
+
onText?: string | undefined;
|
|
13558
|
+
offText?: string | undefined;
|
|
13559
|
+
}, {
|
|
13560
|
+
type: "toggle";
|
|
13561
|
+
label: string;
|
|
13562
|
+
name: string;
|
|
13563
|
+
checked?: boolean | undefined;
|
|
13564
|
+
onText?: string | undefined;
|
|
13565
|
+
offText?: string | undefined;
|
|
13566
|
+
}>, z.ZodObject<{
|
|
13567
|
+
type: z.ZodLiteral<"slider">;
|
|
13568
|
+
name: z.ZodString;
|
|
13569
|
+
label: z.ZodOptional<z.ZodString>;
|
|
13570
|
+
min: z.ZodOptional<z.ZodNumber>;
|
|
13571
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
13572
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
13573
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
13574
|
+
unit: z.ZodOptional<z.ZodString>;
|
|
13575
|
+
}, "strip", z.ZodTypeAny, {
|
|
13576
|
+
type: "slider";
|
|
13577
|
+
name: string;
|
|
13578
|
+
value?: number | undefined;
|
|
13579
|
+
label?: string | undefined;
|
|
13580
|
+
min?: number | undefined;
|
|
13581
|
+
max?: number | undefined;
|
|
13582
|
+
step?: number | undefined;
|
|
13583
|
+
unit?: string | undefined;
|
|
13584
|
+
}, {
|
|
13585
|
+
type: "slider";
|
|
13586
|
+
name: string;
|
|
13587
|
+
value?: number | undefined;
|
|
13588
|
+
label?: string | undefined;
|
|
13589
|
+
min?: number | undefined;
|
|
13590
|
+
max?: number | undefined;
|
|
13591
|
+
step?: number | undefined;
|
|
13592
|
+
unit?: string | undefined;
|
|
13593
|
+
}>]>, "many">;
|
|
13594
|
+
}, "strip", z.ZodTypeAny, {
|
|
13595
|
+
blocks: ({
|
|
13596
|
+
type: "input";
|
|
13597
|
+
name: string;
|
|
13598
|
+
value?: string | undefined;
|
|
13599
|
+
label?: string | undefined;
|
|
13600
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13601
|
+
placeholder?: string | undefined;
|
|
13602
|
+
required?: boolean | undefined;
|
|
13603
|
+
accept?: string | undefined;
|
|
13604
|
+
multiple?: boolean | undefined;
|
|
13605
|
+
} | {
|
|
13606
|
+
type: "toggle";
|
|
13607
|
+
label: string;
|
|
13608
|
+
name: string;
|
|
13609
|
+
checked?: boolean | undefined;
|
|
13610
|
+
onText?: string | undefined;
|
|
13611
|
+
offText?: string | undefined;
|
|
13612
|
+
} | {
|
|
13613
|
+
type: "slider";
|
|
13614
|
+
name: string;
|
|
13615
|
+
value?: number | undefined;
|
|
13616
|
+
label?: string | undefined;
|
|
13617
|
+
min?: number | undefined;
|
|
13618
|
+
max?: number | undefined;
|
|
13619
|
+
step?: number | undefined;
|
|
13620
|
+
unit?: string | undefined;
|
|
13621
|
+
} | {
|
|
13622
|
+
options: {
|
|
13623
|
+
value: string;
|
|
13624
|
+
label: string;
|
|
13625
|
+
}[];
|
|
13626
|
+
type: "radio";
|
|
13627
|
+
name: string;
|
|
13628
|
+
value?: string | undefined;
|
|
13629
|
+
label?: string | undefined;
|
|
13630
|
+
} | {
|
|
13631
|
+
options: {
|
|
13632
|
+
value: string;
|
|
13633
|
+
label: string;
|
|
13634
|
+
}[];
|
|
13635
|
+
type: "select";
|
|
13636
|
+
name: string;
|
|
13637
|
+
value?: string | undefined;
|
|
13638
|
+
label?: string | undefined;
|
|
13639
|
+
placeholder?: string | undefined;
|
|
13640
|
+
multi?: boolean | undefined;
|
|
13641
|
+
} | {
|
|
13642
|
+
type: "checkbox";
|
|
13643
|
+
label: string;
|
|
13644
|
+
name: string;
|
|
13645
|
+
checked?: boolean | undefined;
|
|
13646
|
+
})[];
|
|
13647
|
+
title?: string | undefined;
|
|
13648
|
+
}, {
|
|
13649
|
+
blocks: ({
|
|
13650
|
+
type: "input";
|
|
13651
|
+
name: string;
|
|
13652
|
+
value?: string | undefined;
|
|
13653
|
+
label?: string | undefined;
|
|
13654
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13655
|
+
placeholder?: string | undefined;
|
|
13656
|
+
required?: boolean | undefined;
|
|
13657
|
+
accept?: string | undefined;
|
|
13658
|
+
multiple?: boolean | undefined;
|
|
13659
|
+
} | {
|
|
13660
|
+
type: "toggle";
|
|
13661
|
+
label: string;
|
|
13662
|
+
name: string;
|
|
13663
|
+
checked?: boolean | undefined;
|
|
13664
|
+
onText?: string | undefined;
|
|
13665
|
+
offText?: string | undefined;
|
|
13666
|
+
} | {
|
|
13667
|
+
type: "slider";
|
|
13668
|
+
name: string;
|
|
13669
|
+
value?: number | undefined;
|
|
13670
|
+
label?: string | undefined;
|
|
13671
|
+
min?: number | undefined;
|
|
13672
|
+
max?: number | undefined;
|
|
13673
|
+
step?: number | undefined;
|
|
13674
|
+
unit?: string | undefined;
|
|
13675
|
+
} | {
|
|
13676
|
+
options: {
|
|
13677
|
+
value: string;
|
|
13678
|
+
label: string;
|
|
13679
|
+
}[];
|
|
13680
|
+
type: "radio";
|
|
13681
|
+
name: string;
|
|
13682
|
+
value?: string | undefined;
|
|
13683
|
+
label?: string | undefined;
|
|
13684
|
+
} | {
|
|
13685
|
+
options: {
|
|
13686
|
+
value: string;
|
|
13687
|
+
label: string;
|
|
13688
|
+
}[];
|
|
13689
|
+
type: "select";
|
|
13690
|
+
name: string;
|
|
13691
|
+
value?: string | undefined;
|
|
13692
|
+
label?: string | undefined;
|
|
13693
|
+
placeholder?: string | undefined;
|
|
13694
|
+
multi?: boolean | undefined;
|
|
13695
|
+
} | {
|
|
13696
|
+
type: "checkbox";
|
|
13697
|
+
label: string;
|
|
13698
|
+
name: string;
|
|
13699
|
+
checked?: boolean | undefined;
|
|
13700
|
+
})[];
|
|
13701
|
+
title?: string | undefined;
|
|
13702
|
+
}>, "many">>;
|
|
13703
|
+
review: z.ZodOptional<z.ZodBoolean>;
|
|
13704
|
+
confirm: z.ZodOptional<z.ZodObject<{
|
|
13705
|
+
label: z.ZodString;
|
|
13706
|
+
action_id: z.ZodString;
|
|
13707
|
+
tone: z.ZodOptional<z.ZodEnum<["neutral", "success", "warning", "danger", "info"]>>;
|
|
13708
|
+
}, "strip", z.ZodTypeAny, {
|
|
13709
|
+
label: string;
|
|
13710
|
+
action_id: string;
|
|
13711
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13712
|
+
}, {
|
|
13713
|
+
label: string;
|
|
13714
|
+
action_id: string;
|
|
13715
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13716
|
+
}>>;
|
|
13717
|
+
cancelLabel: z.ZodOptional<z.ZodString>;
|
|
13718
|
+
}, "strip", z.ZodTypeAny, {
|
|
13719
|
+
title: string;
|
|
13720
|
+
id: string;
|
|
13721
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13722
|
+
confirm?: {
|
|
13723
|
+
label: string;
|
|
13724
|
+
action_id: string;
|
|
13725
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13726
|
+
} | undefined;
|
|
13727
|
+
steps?: {
|
|
13728
|
+
blocks: ({
|
|
13729
|
+
type: "input";
|
|
13730
|
+
name: string;
|
|
13731
|
+
value?: string | undefined;
|
|
13732
|
+
label?: string | undefined;
|
|
13733
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13734
|
+
placeholder?: string | undefined;
|
|
13735
|
+
required?: boolean | undefined;
|
|
13736
|
+
accept?: string | undefined;
|
|
13737
|
+
multiple?: boolean | undefined;
|
|
13738
|
+
} | {
|
|
13739
|
+
type: "toggle";
|
|
13740
|
+
label: string;
|
|
13741
|
+
name: string;
|
|
13742
|
+
checked?: boolean | undefined;
|
|
13743
|
+
onText?: string | undefined;
|
|
13744
|
+
offText?: string | undefined;
|
|
13745
|
+
} | {
|
|
13746
|
+
type: "slider";
|
|
13747
|
+
name: string;
|
|
13748
|
+
value?: number | undefined;
|
|
13749
|
+
label?: string | undefined;
|
|
13750
|
+
min?: number | undefined;
|
|
13751
|
+
max?: number | undefined;
|
|
13752
|
+
step?: number | undefined;
|
|
13753
|
+
unit?: string | undefined;
|
|
13754
|
+
} | {
|
|
13755
|
+
options: {
|
|
13756
|
+
value: string;
|
|
13757
|
+
label: string;
|
|
13758
|
+
}[];
|
|
13759
|
+
type: "radio";
|
|
13760
|
+
name: string;
|
|
13761
|
+
value?: string | undefined;
|
|
13762
|
+
label?: string | undefined;
|
|
13763
|
+
} | {
|
|
13764
|
+
options: {
|
|
13765
|
+
value: string;
|
|
13766
|
+
label: string;
|
|
13767
|
+
}[];
|
|
13768
|
+
type: "select";
|
|
13769
|
+
name: string;
|
|
13770
|
+
value?: string | undefined;
|
|
13771
|
+
label?: string | undefined;
|
|
13772
|
+
placeholder?: string | undefined;
|
|
13773
|
+
multi?: boolean | undefined;
|
|
13774
|
+
} | {
|
|
13775
|
+
type: "checkbox";
|
|
13776
|
+
label: string;
|
|
13777
|
+
name: string;
|
|
13778
|
+
checked?: boolean | undefined;
|
|
13779
|
+
})[];
|
|
13780
|
+
title?: string | undefined;
|
|
13781
|
+
}[] | undefined;
|
|
13782
|
+
variant?: "dialog" | "sheet" | undefined;
|
|
13783
|
+
blocks?: ({
|
|
13784
|
+
type: "input";
|
|
13785
|
+
name: string;
|
|
13786
|
+
value?: string | undefined;
|
|
13787
|
+
label?: string | undefined;
|
|
13788
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13789
|
+
placeholder?: string | undefined;
|
|
13790
|
+
required?: boolean | undefined;
|
|
13791
|
+
accept?: string | undefined;
|
|
13792
|
+
multiple?: boolean | undefined;
|
|
13793
|
+
} | {
|
|
13794
|
+
type: "toggle";
|
|
13795
|
+
label: string;
|
|
13796
|
+
name: string;
|
|
13797
|
+
checked?: boolean | undefined;
|
|
13798
|
+
onText?: string | undefined;
|
|
13799
|
+
offText?: string | undefined;
|
|
13800
|
+
} | {
|
|
13801
|
+
type: "slider";
|
|
13802
|
+
name: string;
|
|
13803
|
+
value?: number | undefined;
|
|
13804
|
+
label?: string | undefined;
|
|
13805
|
+
min?: number | undefined;
|
|
13806
|
+
max?: number | undefined;
|
|
13807
|
+
step?: number | undefined;
|
|
13808
|
+
unit?: string | undefined;
|
|
13809
|
+
} | {
|
|
13810
|
+
options: {
|
|
13811
|
+
value: string;
|
|
13812
|
+
label: string;
|
|
13813
|
+
}[];
|
|
13814
|
+
type: "radio";
|
|
13815
|
+
name: string;
|
|
13816
|
+
value?: string | undefined;
|
|
13817
|
+
label?: string | undefined;
|
|
13818
|
+
} | {
|
|
13819
|
+
options: {
|
|
13820
|
+
value: string;
|
|
13821
|
+
label: string;
|
|
13822
|
+
}[];
|
|
13823
|
+
type: "select";
|
|
13824
|
+
name: string;
|
|
13825
|
+
value?: string | undefined;
|
|
13826
|
+
label?: string | undefined;
|
|
13827
|
+
placeholder?: string | undefined;
|
|
13828
|
+
multi?: boolean | undefined;
|
|
13829
|
+
} | {
|
|
13830
|
+
type: "checkbox";
|
|
13831
|
+
label: string;
|
|
13832
|
+
name: string;
|
|
13833
|
+
checked?: boolean | undefined;
|
|
13834
|
+
})[] | undefined;
|
|
13835
|
+
description?: string | undefined;
|
|
13836
|
+
review?: boolean | undefined;
|
|
13837
|
+
cancelLabel?: string | undefined;
|
|
13838
|
+
}, {
|
|
13839
|
+
title: string;
|
|
13840
|
+
id: string;
|
|
13841
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13842
|
+
confirm?: {
|
|
13843
|
+
label: string;
|
|
13844
|
+
action_id: string;
|
|
13845
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13846
|
+
} | undefined;
|
|
13847
|
+
steps?: {
|
|
13848
|
+
blocks: ({
|
|
13849
|
+
type: "input";
|
|
13850
|
+
name: string;
|
|
13851
|
+
value?: string | undefined;
|
|
13852
|
+
label?: string | undefined;
|
|
13853
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13854
|
+
placeholder?: string | undefined;
|
|
13855
|
+
required?: boolean | undefined;
|
|
13856
|
+
accept?: string | undefined;
|
|
13857
|
+
multiple?: boolean | undefined;
|
|
13858
|
+
} | {
|
|
13859
|
+
type: "toggle";
|
|
13860
|
+
label: string;
|
|
13861
|
+
name: string;
|
|
13862
|
+
checked?: boolean | undefined;
|
|
13863
|
+
onText?: string | undefined;
|
|
13864
|
+
offText?: string | undefined;
|
|
13865
|
+
} | {
|
|
13866
|
+
type: "slider";
|
|
13867
|
+
name: string;
|
|
13868
|
+
value?: number | undefined;
|
|
13869
|
+
label?: string | undefined;
|
|
13870
|
+
min?: number | undefined;
|
|
13871
|
+
max?: number | undefined;
|
|
13872
|
+
step?: number | undefined;
|
|
13873
|
+
unit?: string | undefined;
|
|
13874
|
+
} | {
|
|
13875
|
+
options: {
|
|
13876
|
+
value: string;
|
|
13877
|
+
label: string;
|
|
13878
|
+
}[];
|
|
13879
|
+
type: "radio";
|
|
13880
|
+
name: string;
|
|
13881
|
+
value?: string | undefined;
|
|
13882
|
+
label?: string | undefined;
|
|
13883
|
+
} | {
|
|
13884
|
+
options: {
|
|
13885
|
+
value: string;
|
|
13886
|
+
label: string;
|
|
13887
|
+
}[];
|
|
13888
|
+
type: "select";
|
|
13889
|
+
name: string;
|
|
13890
|
+
value?: string | undefined;
|
|
13891
|
+
label?: string | undefined;
|
|
13892
|
+
placeholder?: string | undefined;
|
|
13893
|
+
multi?: boolean | undefined;
|
|
13894
|
+
} | {
|
|
13895
|
+
type: "checkbox";
|
|
13896
|
+
label: string;
|
|
13897
|
+
name: string;
|
|
13898
|
+
checked?: boolean | undefined;
|
|
13899
|
+
})[];
|
|
13900
|
+
title?: string | undefined;
|
|
13901
|
+
}[] | undefined;
|
|
13902
|
+
variant?: "dialog" | "sheet" | undefined;
|
|
13903
|
+
blocks?: ({
|
|
13904
|
+
type: "input";
|
|
13905
|
+
name: string;
|
|
13906
|
+
value?: string | undefined;
|
|
13907
|
+
label?: string | undefined;
|
|
13908
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13909
|
+
placeholder?: string | undefined;
|
|
13910
|
+
required?: boolean | undefined;
|
|
13911
|
+
accept?: string | undefined;
|
|
13912
|
+
multiple?: boolean | undefined;
|
|
13913
|
+
} | {
|
|
13914
|
+
type: "toggle";
|
|
13915
|
+
label: string;
|
|
13916
|
+
name: string;
|
|
13917
|
+
checked?: boolean | undefined;
|
|
13918
|
+
onText?: string | undefined;
|
|
13919
|
+
offText?: string | undefined;
|
|
13920
|
+
} | {
|
|
13921
|
+
type: "slider";
|
|
13922
|
+
name: string;
|
|
13923
|
+
value?: number | undefined;
|
|
13924
|
+
label?: string | undefined;
|
|
13925
|
+
min?: number | undefined;
|
|
13926
|
+
max?: number | undefined;
|
|
13927
|
+
step?: number | undefined;
|
|
13928
|
+
unit?: string | undefined;
|
|
13929
|
+
} | {
|
|
13930
|
+
options: {
|
|
13931
|
+
value: string;
|
|
13932
|
+
label: string;
|
|
13933
|
+
}[];
|
|
13934
|
+
type: "radio";
|
|
13935
|
+
name: string;
|
|
13936
|
+
value?: string | undefined;
|
|
13937
|
+
label?: string | undefined;
|
|
13938
|
+
} | {
|
|
13939
|
+
options: {
|
|
13940
|
+
value: string;
|
|
13941
|
+
label: string;
|
|
13942
|
+
}[];
|
|
13943
|
+
type: "select";
|
|
13944
|
+
name: string;
|
|
13945
|
+
value?: string | undefined;
|
|
13946
|
+
label?: string | undefined;
|
|
13947
|
+
placeholder?: string | undefined;
|
|
13948
|
+
multi?: boolean | undefined;
|
|
13949
|
+
} | {
|
|
13950
|
+
type: "checkbox";
|
|
13951
|
+
label: string;
|
|
13952
|
+
name: string;
|
|
13953
|
+
checked?: boolean | undefined;
|
|
13954
|
+
})[] | undefined;
|
|
13955
|
+
description?: string | undefined;
|
|
13956
|
+
review?: boolean | undefined;
|
|
13957
|
+
cancelLabel?: string | undefined;
|
|
13958
|
+
}>, "many">>;
|
|
13959
|
+
}, "strip", z.ZodTypeAny, {
|
|
13960
|
+
app: string;
|
|
13961
|
+
panel: {
|
|
13962
|
+
sections: {
|
|
13963
|
+
id: string;
|
|
13964
|
+
body: {
|
|
13965
|
+
items: {
|
|
13966
|
+
value: string;
|
|
13967
|
+
label: string;
|
|
13968
|
+
}[];
|
|
13969
|
+
kind: "fields";
|
|
13970
|
+
} | {
|
|
13971
|
+
items: {
|
|
13972
|
+
label: string;
|
|
13973
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13974
|
+
}[];
|
|
13975
|
+
kind: "tags";
|
|
13976
|
+
} | {
|
|
13977
|
+
value: string;
|
|
13978
|
+
kind: "select";
|
|
13979
|
+
} | {
|
|
13024
13980
|
items: {
|
|
13025
13981
|
primary: string;
|
|
13026
13982
|
secondary?: string | undefined;
|
|
@@ -13056,6 +14012,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13056
14012
|
value: string;
|
|
13057
14013
|
label: string;
|
|
13058
14014
|
short?: boolean | undefined;
|
|
14015
|
+
parts?: {
|
|
14016
|
+
text: string;
|
|
14017
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14018
|
+
}[] | undefined;
|
|
13059
14019
|
}[];
|
|
13060
14020
|
} | {
|
|
13061
14021
|
type: "image";
|
|
@@ -13082,9 +14042,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13082
14042
|
name: string;
|
|
13083
14043
|
value?: string | undefined;
|
|
13084
14044
|
label?: string | undefined;
|
|
13085
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
14045
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13086
14046
|
placeholder?: string | undefined;
|
|
13087
14047
|
required?: boolean | undefined;
|
|
14048
|
+
accept?: string | undefined;
|
|
14049
|
+
multiple?: boolean | undefined;
|
|
13088
14050
|
} | {
|
|
13089
14051
|
type: "toggle";
|
|
13090
14052
|
label: string;
|
|
@@ -13267,13 +14229,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13267
14229
|
type: "callout";
|
|
13268
14230
|
text: string;
|
|
13269
14231
|
title?: string | undefined;
|
|
13270
|
-
icon?: string | undefined;
|
|
13271
14232
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14233
|
+
icon?: string | undefined;
|
|
13272
14234
|
} | {
|
|
13273
14235
|
type: "entityRef";
|
|
13274
14236
|
label: string;
|
|
13275
|
-
url?: string | undefined;
|
|
13276
14237
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14238
|
+
url?: string | undefined;
|
|
13277
14239
|
entity?: string | undefined;
|
|
13278
14240
|
} | {
|
|
13279
14241
|
type: "kanban";
|
|
@@ -13283,11 +14245,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13283
14245
|
cards: {
|
|
13284
14246
|
title: string;
|
|
13285
14247
|
id: string;
|
|
14248
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13286
14249
|
badge?: {
|
|
13287
14250
|
label: string;
|
|
13288
14251
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13289
14252
|
} | undefined;
|
|
13290
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13291
14253
|
meta?: string[] | undefined;
|
|
13292
14254
|
}[];
|
|
13293
14255
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -13347,6 +14309,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13347
14309
|
value: string;
|
|
13348
14310
|
label: string;
|
|
13349
14311
|
short?: boolean | undefined;
|
|
14312
|
+
parts?: {
|
|
14313
|
+
text: string;
|
|
14314
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14315
|
+
}[] | undefined;
|
|
13350
14316
|
}[];
|
|
13351
14317
|
} | {
|
|
13352
14318
|
type: "image";
|
|
@@ -13373,9 +14339,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13373
14339
|
name: string;
|
|
13374
14340
|
value?: string | undefined;
|
|
13375
14341
|
label?: string | undefined;
|
|
13376
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
14342
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13377
14343
|
placeholder?: string | undefined;
|
|
13378
14344
|
required?: boolean | undefined;
|
|
14345
|
+
accept?: string | undefined;
|
|
14346
|
+
multiple?: boolean | undefined;
|
|
13379
14347
|
} | {
|
|
13380
14348
|
type: "toggle";
|
|
13381
14349
|
label: string;
|
|
@@ -13558,13 +14526,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13558
14526
|
type: "callout";
|
|
13559
14527
|
text: string;
|
|
13560
14528
|
title?: string | undefined;
|
|
13561
|
-
icon?: string | undefined;
|
|
13562
14529
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14530
|
+
icon?: string | undefined;
|
|
13563
14531
|
} | {
|
|
13564
14532
|
type: "entityRef";
|
|
13565
14533
|
label: string;
|
|
13566
|
-
url?: string | undefined;
|
|
13567
14534
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14535
|
+
url?: string | undefined;
|
|
13568
14536
|
entity?: string | undefined;
|
|
13569
14537
|
} | {
|
|
13570
14538
|
type: "kanban";
|
|
@@ -13574,11 +14542,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13574
14542
|
cards: {
|
|
13575
14543
|
title: string;
|
|
13576
14544
|
id: string;
|
|
14545
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13577
14546
|
badge?: {
|
|
13578
14547
|
label: string;
|
|
13579
14548
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13580
14549
|
} | undefined;
|
|
13581
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13582
14550
|
meta?: string[] | undefined;
|
|
13583
14551
|
}[];
|
|
13584
14552
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -13657,6 +14625,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13657
14625
|
value: string;
|
|
13658
14626
|
label: string;
|
|
13659
14627
|
short?: boolean | undefined;
|
|
14628
|
+
parts?: {
|
|
14629
|
+
text: string;
|
|
14630
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14631
|
+
}[] | undefined;
|
|
13660
14632
|
}[];
|
|
13661
14633
|
} | {
|
|
13662
14634
|
type: "image";
|
|
@@ -13683,9 +14655,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13683
14655
|
name: string;
|
|
13684
14656
|
value?: string | undefined;
|
|
13685
14657
|
label?: string | undefined;
|
|
13686
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
14658
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13687
14659
|
placeholder?: string | undefined;
|
|
13688
14660
|
required?: boolean | undefined;
|
|
14661
|
+
accept?: string | undefined;
|
|
14662
|
+
multiple?: boolean | undefined;
|
|
13689
14663
|
} | {
|
|
13690
14664
|
type: "toggle";
|
|
13691
14665
|
label: string;
|
|
@@ -13868,13 +14842,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13868
14842
|
type: "callout";
|
|
13869
14843
|
text: string;
|
|
13870
14844
|
title?: string | undefined;
|
|
13871
|
-
icon?: string | undefined;
|
|
13872
14845
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14846
|
+
icon?: string | undefined;
|
|
13873
14847
|
} | {
|
|
13874
14848
|
type: "entityRef";
|
|
13875
14849
|
label: string;
|
|
13876
|
-
url?: string | undefined;
|
|
13877
14850
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14851
|
+
url?: string | undefined;
|
|
13878
14852
|
entity?: string | undefined;
|
|
13879
14853
|
} | {
|
|
13880
14854
|
type: "kanban";
|
|
@@ -13884,11 +14858,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13884
14858
|
cards: {
|
|
13885
14859
|
title: string;
|
|
13886
14860
|
id: string;
|
|
14861
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13887
14862
|
badge?: {
|
|
13888
14863
|
label: string;
|
|
13889
14864
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13890
14865
|
} | undefined;
|
|
13891
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
13892
14866
|
meta?: string[] | undefined;
|
|
13893
14867
|
}[];
|
|
13894
14868
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -13948,6 +14922,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13948
14922
|
value: string;
|
|
13949
14923
|
label: string;
|
|
13950
14924
|
short?: boolean | undefined;
|
|
14925
|
+
parts?: {
|
|
14926
|
+
text: string;
|
|
14927
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14928
|
+
}[] | undefined;
|
|
13951
14929
|
}[];
|
|
13952
14930
|
} | {
|
|
13953
14931
|
type: "image";
|
|
@@ -13974,9 +14952,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
13974
14952
|
name: string;
|
|
13975
14953
|
value?: string | undefined;
|
|
13976
14954
|
label?: string | undefined;
|
|
13977
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
14955
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
13978
14956
|
placeholder?: string | undefined;
|
|
13979
14957
|
required?: boolean | undefined;
|
|
14958
|
+
accept?: string | undefined;
|
|
14959
|
+
multiple?: boolean | undefined;
|
|
13980
14960
|
} | {
|
|
13981
14961
|
type: "toggle";
|
|
13982
14962
|
label: string;
|
|
@@ -14159,13 +15139,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14159
15139
|
type: "callout";
|
|
14160
15140
|
text: string;
|
|
14161
15141
|
title?: string | undefined;
|
|
14162
|
-
icon?: string | undefined;
|
|
14163
15142
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15143
|
+
icon?: string | undefined;
|
|
14164
15144
|
} | {
|
|
14165
15145
|
type: "entityRef";
|
|
14166
15146
|
label: string;
|
|
14167
|
-
url?: string | undefined;
|
|
14168
15147
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15148
|
+
url?: string | undefined;
|
|
14169
15149
|
entity?: string | undefined;
|
|
14170
15150
|
} | {
|
|
14171
15151
|
type: "kanban";
|
|
@@ -14175,11 +15155,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14175
15155
|
cards: {
|
|
14176
15156
|
title: string;
|
|
14177
15157
|
id: string;
|
|
15158
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14178
15159
|
badge?: {
|
|
14179
15160
|
label: string;
|
|
14180
15161
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14181
15162
|
} | undefined;
|
|
14182
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14183
15163
|
meta?: string[] | undefined;
|
|
14184
15164
|
}[];
|
|
14185
15165
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -14295,8 +15275,116 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14295
15275
|
action_id: string;
|
|
14296
15276
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14297
15277
|
} | undefined;
|
|
15278
|
+
steps?: {
|
|
15279
|
+
blocks: ({
|
|
15280
|
+
type: "input";
|
|
15281
|
+
name: string;
|
|
15282
|
+
value?: string | undefined;
|
|
15283
|
+
label?: string | undefined;
|
|
15284
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
15285
|
+
placeholder?: string | undefined;
|
|
15286
|
+
required?: boolean | undefined;
|
|
15287
|
+
accept?: string | undefined;
|
|
15288
|
+
multiple?: boolean | undefined;
|
|
15289
|
+
} | {
|
|
15290
|
+
type: "toggle";
|
|
15291
|
+
label: string;
|
|
15292
|
+
name: string;
|
|
15293
|
+
checked?: boolean | undefined;
|
|
15294
|
+
onText?: string | undefined;
|
|
15295
|
+
offText?: string | undefined;
|
|
15296
|
+
} | {
|
|
15297
|
+
type: "slider";
|
|
15298
|
+
name: string;
|
|
15299
|
+
value?: number | undefined;
|
|
15300
|
+
label?: string | undefined;
|
|
15301
|
+
min?: number | undefined;
|
|
15302
|
+
max?: number | undefined;
|
|
15303
|
+
step?: number | undefined;
|
|
15304
|
+
unit?: string | undefined;
|
|
15305
|
+
} | {
|
|
15306
|
+
options: {
|
|
15307
|
+
value: string;
|
|
15308
|
+
label: string;
|
|
15309
|
+
}[];
|
|
15310
|
+
type: "radio";
|
|
15311
|
+
name: string;
|
|
15312
|
+
value?: string | undefined;
|
|
15313
|
+
label?: string | undefined;
|
|
15314
|
+
} | {
|
|
15315
|
+
options: {
|
|
15316
|
+
value: string;
|
|
15317
|
+
label: string;
|
|
15318
|
+
}[];
|
|
15319
|
+
type: "select";
|
|
15320
|
+
name: string;
|
|
15321
|
+
value?: string | undefined;
|
|
15322
|
+
label?: string | undefined;
|
|
15323
|
+
placeholder?: string | undefined;
|
|
15324
|
+
multi?: boolean | undefined;
|
|
15325
|
+
} | {
|
|
15326
|
+
type: "checkbox";
|
|
15327
|
+
label: string;
|
|
15328
|
+
name: string;
|
|
15329
|
+
checked?: boolean | undefined;
|
|
15330
|
+
})[];
|
|
15331
|
+
title?: string | undefined;
|
|
15332
|
+
}[] | undefined;
|
|
14298
15333
|
variant?: "dialog" | "sheet" | undefined;
|
|
15334
|
+
blocks?: ({
|
|
15335
|
+
type: "input";
|
|
15336
|
+
name: string;
|
|
15337
|
+
value?: string | undefined;
|
|
15338
|
+
label?: string | undefined;
|
|
15339
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
15340
|
+
placeholder?: string | undefined;
|
|
15341
|
+
required?: boolean | undefined;
|
|
15342
|
+
accept?: string | undefined;
|
|
15343
|
+
multiple?: boolean | undefined;
|
|
15344
|
+
} | {
|
|
15345
|
+
type: "toggle";
|
|
15346
|
+
label: string;
|
|
15347
|
+
name: string;
|
|
15348
|
+
checked?: boolean | undefined;
|
|
15349
|
+
onText?: string | undefined;
|
|
15350
|
+
offText?: string | undefined;
|
|
15351
|
+
} | {
|
|
15352
|
+
type: "slider";
|
|
15353
|
+
name: string;
|
|
15354
|
+
value?: number | undefined;
|
|
15355
|
+
label?: string | undefined;
|
|
15356
|
+
min?: number | undefined;
|
|
15357
|
+
max?: number | undefined;
|
|
15358
|
+
step?: number | undefined;
|
|
15359
|
+
unit?: string | undefined;
|
|
15360
|
+
} | {
|
|
15361
|
+
options: {
|
|
15362
|
+
value: string;
|
|
15363
|
+
label: string;
|
|
15364
|
+
}[];
|
|
15365
|
+
type: "radio";
|
|
15366
|
+
name: string;
|
|
15367
|
+
value?: string | undefined;
|
|
15368
|
+
label?: string | undefined;
|
|
15369
|
+
} | {
|
|
15370
|
+
options: {
|
|
15371
|
+
value: string;
|
|
15372
|
+
label: string;
|
|
15373
|
+
}[];
|
|
15374
|
+
type: "select";
|
|
15375
|
+
name: string;
|
|
15376
|
+
value?: string | undefined;
|
|
15377
|
+
label?: string | undefined;
|
|
15378
|
+
placeholder?: string | undefined;
|
|
15379
|
+
multi?: boolean | undefined;
|
|
15380
|
+
} | {
|
|
15381
|
+
type: "checkbox";
|
|
15382
|
+
label: string;
|
|
15383
|
+
name: string;
|
|
15384
|
+
checked?: boolean | undefined;
|
|
15385
|
+
})[] | undefined;
|
|
14299
15386
|
description?: string | undefined;
|
|
15387
|
+
review?: boolean | undefined;
|
|
14300
15388
|
cancelLabel?: string | undefined;
|
|
14301
15389
|
}[] | undefined;
|
|
14302
15390
|
displayName?: string | undefined;
|
|
@@ -14388,6 +15476,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14388
15476
|
value: string;
|
|
14389
15477
|
label: string;
|
|
14390
15478
|
short?: boolean | undefined;
|
|
15479
|
+
parts?: {
|
|
15480
|
+
text: string;
|
|
15481
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15482
|
+
}[] | undefined;
|
|
14391
15483
|
}[];
|
|
14392
15484
|
} | {
|
|
14393
15485
|
type: "image";
|
|
@@ -14414,9 +15506,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14414
15506
|
name: string;
|
|
14415
15507
|
value?: string | undefined;
|
|
14416
15508
|
label?: string | undefined;
|
|
14417
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
15509
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
14418
15510
|
placeholder?: string | undefined;
|
|
14419
15511
|
required?: boolean | undefined;
|
|
15512
|
+
accept?: string | undefined;
|
|
15513
|
+
multiple?: boolean | undefined;
|
|
14420
15514
|
} | {
|
|
14421
15515
|
type: "toggle";
|
|
14422
15516
|
label: string;
|
|
@@ -14599,13 +15693,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14599
15693
|
type: "callout";
|
|
14600
15694
|
text: string;
|
|
14601
15695
|
title?: string | undefined;
|
|
14602
|
-
icon?: string | undefined;
|
|
14603
15696
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15697
|
+
icon?: string | undefined;
|
|
14604
15698
|
} | {
|
|
14605
15699
|
type: "entityRef";
|
|
14606
15700
|
label: string;
|
|
14607
|
-
url?: string | undefined;
|
|
14608
15701
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15702
|
+
url?: string | undefined;
|
|
14609
15703
|
entity?: string | undefined;
|
|
14610
15704
|
} | {
|
|
14611
15705
|
type: "kanban";
|
|
@@ -14615,11 +15709,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14615
15709
|
cards: {
|
|
14616
15710
|
title: string;
|
|
14617
15711
|
id: string;
|
|
15712
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14618
15713
|
badge?: {
|
|
14619
15714
|
label: string;
|
|
14620
15715
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14621
15716
|
} | undefined;
|
|
14622
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14623
15717
|
meta?: string[] | undefined;
|
|
14624
15718
|
}[];
|
|
14625
15719
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -14663,6 +15757,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14663
15757
|
value: string;
|
|
14664
15758
|
label: string;
|
|
14665
15759
|
short?: boolean | undefined;
|
|
15760
|
+
parts?: {
|
|
15761
|
+
text: string;
|
|
15762
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15763
|
+
}[] | undefined;
|
|
14666
15764
|
}[];
|
|
14667
15765
|
} | {
|
|
14668
15766
|
type: "image";
|
|
@@ -14689,9 +15787,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14689
15787
|
name: string;
|
|
14690
15788
|
value?: string | undefined;
|
|
14691
15789
|
label?: string | undefined;
|
|
14692
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
15790
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
14693
15791
|
placeholder?: string | undefined;
|
|
14694
15792
|
required?: boolean | undefined;
|
|
15793
|
+
accept?: string | undefined;
|
|
15794
|
+
multiple?: boolean | undefined;
|
|
14695
15795
|
} | {
|
|
14696
15796
|
type: "toggle";
|
|
14697
15797
|
label: string;
|
|
@@ -14874,13 +15974,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14874
15974
|
type: "callout";
|
|
14875
15975
|
text: string;
|
|
14876
15976
|
title?: string | undefined;
|
|
14877
|
-
icon?: string | undefined;
|
|
14878
15977
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15978
|
+
icon?: string | undefined;
|
|
14879
15979
|
} | {
|
|
14880
15980
|
type: "entityRef";
|
|
14881
15981
|
label: string;
|
|
14882
|
-
url?: string | undefined;
|
|
14883
15982
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15983
|
+
url?: string | undefined;
|
|
14884
15984
|
entity?: string | undefined;
|
|
14885
15985
|
} | {
|
|
14886
15986
|
type: "kanban";
|
|
@@ -14890,11 +15990,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14890
15990
|
cards: {
|
|
14891
15991
|
title: string;
|
|
14892
15992
|
id: string;
|
|
15993
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14893
15994
|
badge?: {
|
|
14894
15995
|
label: string;
|
|
14895
15996
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14896
15997
|
} | undefined;
|
|
14897
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
14898
15998
|
meta?: string[] | undefined;
|
|
14899
15999
|
}[];
|
|
14900
16000
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -14989,6 +16089,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
14989
16089
|
value: string;
|
|
14990
16090
|
label: string;
|
|
14991
16091
|
short?: boolean | undefined;
|
|
16092
|
+
parts?: {
|
|
16093
|
+
text: string;
|
|
16094
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16095
|
+
}[] | undefined;
|
|
14992
16096
|
}[];
|
|
14993
16097
|
} | {
|
|
14994
16098
|
type: "image";
|
|
@@ -15015,9 +16119,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15015
16119
|
name: string;
|
|
15016
16120
|
value?: string | undefined;
|
|
15017
16121
|
label?: string | undefined;
|
|
15018
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
16122
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
15019
16123
|
placeholder?: string | undefined;
|
|
15020
16124
|
required?: boolean | undefined;
|
|
16125
|
+
accept?: string | undefined;
|
|
16126
|
+
multiple?: boolean | undefined;
|
|
15021
16127
|
} | {
|
|
15022
16128
|
type: "toggle";
|
|
15023
16129
|
label: string;
|
|
@@ -15200,13 +16306,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15200
16306
|
type: "callout";
|
|
15201
16307
|
text: string;
|
|
15202
16308
|
title?: string | undefined;
|
|
15203
|
-
icon?: string | undefined;
|
|
15204
16309
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16310
|
+
icon?: string | undefined;
|
|
15205
16311
|
} | {
|
|
15206
16312
|
type: "entityRef";
|
|
15207
16313
|
label: string;
|
|
15208
|
-
url?: string | undefined;
|
|
15209
16314
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16315
|
+
url?: string | undefined;
|
|
15210
16316
|
entity?: string | undefined;
|
|
15211
16317
|
} | {
|
|
15212
16318
|
type: "kanban";
|
|
@@ -15216,11 +16322,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15216
16322
|
cards: {
|
|
15217
16323
|
title: string;
|
|
15218
16324
|
id: string;
|
|
16325
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15219
16326
|
badge?: {
|
|
15220
16327
|
label: string;
|
|
15221
16328
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15222
16329
|
} | undefined;
|
|
15223
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15224
16330
|
meta?: string[] | undefined;
|
|
15225
16331
|
}[];
|
|
15226
16332
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -15264,6 +16370,10 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15264
16370
|
value: string;
|
|
15265
16371
|
label: string;
|
|
15266
16372
|
short?: boolean | undefined;
|
|
16373
|
+
parts?: {
|
|
16374
|
+
text: string;
|
|
16375
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16376
|
+
}[] | undefined;
|
|
15267
16377
|
}[];
|
|
15268
16378
|
} | {
|
|
15269
16379
|
type: "image";
|
|
@@ -15290,9 +16400,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15290
16400
|
name: string;
|
|
15291
16401
|
value?: string | undefined;
|
|
15292
16402
|
label?: string | undefined;
|
|
15293
|
-
input?: "number" | "text" | "date" | "textarea" | "datetime" | "time" | undefined;
|
|
16403
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
15294
16404
|
placeholder?: string | undefined;
|
|
15295
16405
|
required?: boolean | undefined;
|
|
16406
|
+
accept?: string | undefined;
|
|
16407
|
+
multiple?: boolean | undefined;
|
|
15296
16408
|
} | {
|
|
15297
16409
|
type: "toggle";
|
|
15298
16410
|
label: string;
|
|
@@ -15475,13 +16587,13 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15475
16587
|
type: "callout";
|
|
15476
16588
|
text: string;
|
|
15477
16589
|
title?: string | undefined;
|
|
15478
|
-
icon?: string | undefined;
|
|
15479
16590
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16591
|
+
icon?: string | undefined;
|
|
15480
16592
|
} | {
|
|
15481
16593
|
type: "entityRef";
|
|
15482
16594
|
label: string;
|
|
15483
|
-
url?: string | undefined;
|
|
15484
16595
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
16596
|
+
url?: string | undefined;
|
|
15485
16597
|
entity?: string | undefined;
|
|
15486
16598
|
} | {
|
|
15487
16599
|
type: "kanban";
|
|
@@ -15491,11 +16603,11 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15491
16603
|
cards: {
|
|
15492
16604
|
title: string;
|
|
15493
16605
|
id: string;
|
|
16606
|
+
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15494
16607
|
badge?: {
|
|
15495
16608
|
label: string;
|
|
15496
16609
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15497
16610
|
} | undefined;
|
|
15498
|
-
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15499
16611
|
meta?: string[] | undefined;
|
|
15500
16612
|
}[];
|
|
15501
16613
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
@@ -15610,8 +16722,116 @@ export declare const AppPackSchema: z.ZodObject<{
|
|
|
15610
16722
|
action_id: string;
|
|
15611
16723
|
tone?: "neutral" | "success" | "warning" | "danger" | "info" | undefined;
|
|
15612
16724
|
} | undefined;
|
|
16725
|
+
steps?: {
|
|
16726
|
+
blocks: ({
|
|
16727
|
+
type: "input";
|
|
16728
|
+
name: string;
|
|
16729
|
+
value?: string | undefined;
|
|
16730
|
+
label?: string | undefined;
|
|
16731
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
16732
|
+
placeholder?: string | undefined;
|
|
16733
|
+
required?: boolean | undefined;
|
|
16734
|
+
accept?: string | undefined;
|
|
16735
|
+
multiple?: boolean | undefined;
|
|
16736
|
+
} | {
|
|
16737
|
+
type: "toggle";
|
|
16738
|
+
label: string;
|
|
16739
|
+
name: string;
|
|
16740
|
+
checked?: boolean | undefined;
|
|
16741
|
+
onText?: string | undefined;
|
|
16742
|
+
offText?: string | undefined;
|
|
16743
|
+
} | {
|
|
16744
|
+
type: "slider";
|
|
16745
|
+
name: string;
|
|
16746
|
+
value?: number | undefined;
|
|
16747
|
+
label?: string | undefined;
|
|
16748
|
+
min?: number | undefined;
|
|
16749
|
+
max?: number | undefined;
|
|
16750
|
+
step?: number | undefined;
|
|
16751
|
+
unit?: string | undefined;
|
|
16752
|
+
} | {
|
|
16753
|
+
options: {
|
|
16754
|
+
value: string;
|
|
16755
|
+
label: string;
|
|
16756
|
+
}[];
|
|
16757
|
+
type: "radio";
|
|
16758
|
+
name: string;
|
|
16759
|
+
value?: string | undefined;
|
|
16760
|
+
label?: string | undefined;
|
|
16761
|
+
} | {
|
|
16762
|
+
options: {
|
|
16763
|
+
value: string;
|
|
16764
|
+
label: string;
|
|
16765
|
+
}[];
|
|
16766
|
+
type: "select";
|
|
16767
|
+
name: string;
|
|
16768
|
+
value?: string | undefined;
|
|
16769
|
+
label?: string | undefined;
|
|
16770
|
+
placeholder?: string | undefined;
|
|
16771
|
+
multi?: boolean | undefined;
|
|
16772
|
+
} | {
|
|
16773
|
+
type: "checkbox";
|
|
16774
|
+
label: string;
|
|
16775
|
+
name: string;
|
|
16776
|
+
checked?: boolean | undefined;
|
|
16777
|
+
})[];
|
|
16778
|
+
title?: string | undefined;
|
|
16779
|
+
}[] | undefined;
|
|
15613
16780
|
variant?: "dialog" | "sheet" | undefined;
|
|
16781
|
+
blocks?: ({
|
|
16782
|
+
type: "input";
|
|
16783
|
+
name: string;
|
|
16784
|
+
value?: string | undefined;
|
|
16785
|
+
label?: string | undefined;
|
|
16786
|
+
input?: "number" | "text" | "date" | "url" | "textarea" | "datetime" | "time" | "email" | "file" | undefined;
|
|
16787
|
+
placeholder?: string | undefined;
|
|
16788
|
+
required?: boolean | undefined;
|
|
16789
|
+
accept?: string | undefined;
|
|
16790
|
+
multiple?: boolean | undefined;
|
|
16791
|
+
} | {
|
|
16792
|
+
type: "toggle";
|
|
16793
|
+
label: string;
|
|
16794
|
+
name: string;
|
|
16795
|
+
checked?: boolean | undefined;
|
|
16796
|
+
onText?: string | undefined;
|
|
16797
|
+
offText?: string | undefined;
|
|
16798
|
+
} | {
|
|
16799
|
+
type: "slider";
|
|
16800
|
+
name: string;
|
|
16801
|
+
value?: number | undefined;
|
|
16802
|
+
label?: string | undefined;
|
|
16803
|
+
min?: number | undefined;
|
|
16804
|
+
max?: number | undefined;
|
|
16805
|
+
step?: number | undefined;
|
|
16806
|
+
unit?: string | undefined;
|
|
16807
|
+
} | {
|
|
16808
|
+
options: {
|
|
16809
|
+
value: string;
|
|
16810
|
+
label: string;
|
|
16811
|
+
}[];
|
|
16812
|
+
type: "radio";
|
|
16813
|
+
name: string;
|
|
16814
|
+
value?: string | undefined;
|
|
16815
|
+
label?: string | undefined;
|
|
16816
|
+
} | {
|
|
16817
|
+
options: {
|
|
16818
|
+
value: string;
|
|
16819
|
+
label: string;
|
|
16820
|
+
}[];
|
|
16821
|
+
type: "select";
|
|
16822
|
+
name: string;
|
|
16823
|
+
value?: string | undefined;
|
|
16824
|
+
label?: string | undefined;
|
|
16825
|
+
placeholder?: string | undefined;
|
|
16826
|
+
multi?: boolean | undefined;
|
|
16827
|
+
} | {
|
|
16828
|
+
type: "checkbox";
|
|
16829
|
+
label: string;
|
|
16830
|
+
name: string;
|
|
16831
|
+
checked?: boolean | undefined;
|
|
16832
|
+
})[] | undefined;
|
|
15614
16833
|
description?: string | undefined;
|
|
16834
|
+
review?: boolean | undefined;
|
|
15615
16835
|
cancelLabel?: string | undefined;
|
|
15616
16836
|
}[] | undefined;
|
|
15617
16837
|
displayName?: string | undefined;
|