@a2ui/web_core 0.9.0 → 0.9.1-alpha.1
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/.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/v0_8/types/types.d.ts +4 -1
- package/src/v0_8/types/types.d.ts.map +1 -1
- package/src/v0_9/basic_catalog/components/basic_components.d.ts +216 -216
- package/src/v0_9/basic_catalog/functions/basic_functions.d.ts +104 -0
- package/src/v0_9/basic_catalog/functions/basic_functions.d.ts.map +1 -1
- package/src/v0_9/basic_catalog/functions/basic_functions.js +105 -1
- package/src/v0_9/basic_catalog/functions/basic_functions.js.map +1 -1
- package/src/v0_9/basic_catalog/index.d.ts +1 -0
- package/src/v0_9/basic_catalog/index.d.ts.map +1 -1
- package/src/v0_9/basic_catalog/index.js +1 -0
- package/src/v0_9/basic_catalog/index.js.map +1 -1
- package/src/v0_9/basic_catalog/styles/default.d.ts +17 -0
- package/src/v0_9/basic_catalog/styles/default.d.ts.map +1 -0
- package/src/v0_9/basic_catalog/styles/default.js +136 -0
- package/src/v0_9/basic_catalog/styles/default.js.map +1 -0
- package/src/v0_9/catalog/types.test.js +3 -2
- package/src/v0_9/catalog/types.test.js.map +1 -1
- package/src/v0_9/index.d.ts +1 -1
- package/src/v0_9/index.d.ts.map +1 -1
- package/src/v0_9/index.js +1 -1
- package/src/v0_9/index.js.map +1 -1
- package/src/v0_9/processing/message-processor.d.ts +4 -4
- package/src/v0_9/processing/message-processor.d.ts.map +1 -1
- package/src/v0_9/processing/message-processor.js +4 -3
- package/src/v0_9/processing/message-processor.js.map +1 -1
- package/src/v0_9/processing/message-processor.test.js +24 -0
- package/src/v0_9/processing/message-processor.test.js.map +1 -1
- package/src/v0_9/reactivity/signals.d.ts +14 -6
- package/src/v0_9/reactivity/signals.d.ts.map +1 -1
- package/src/v0_9/reactivity/signals.test.d.ts +12 -1
- package/src/v0_9/reactivity/signals.test.d.ts.map +1 -1
- package/src/v0_9/reactivity/signals.test.js +10 -2
- package/src/v0_9/reactivity/signals.test.js.map +1 -1
- package/src/v0_9/rendering/component-context.d.ts +2 -0
- package/src/v0_9/rendering/component-context.d.ts.map +1 -1
- package/src/v0_9/rendering/component-context.js +1 -0
- package/src/v0_9/rendering/component-context.js.map +1 -1
- package/src/v0_9/rendering/component-context.test.js +13 -0
- package/src/v0_9/rendering/component-context.test.js.map +1 -1
- package/src/v0_9/rendering/data-context.d.ts.map +1 -1
- package/src/v0_9/rendering/data-context.js +1 -0
- package/src/v0_9/rendering/data-context.js.map +1 -1
- package/src/v0_9/schema/client-to-server.d.ts +260 -22
- package/src/v0_9/schema/client-to-server.d.ts.map +1 -1
- package/src/v0_9/schema/client-to-server.js +9 -0
- package/src/v0_9/schema/client-to-server.js.map +1 -1
- package/src/v0_9/schema/server-to-client.d.ts +350 -12
- package/src/v0_9/schema/server-to-client.d.ts.map +1 -1
- package/src/v0_9/schema/server-to-client.js +9 -0
- package/src/v0_9/schema/server-to-client.js.map +1 -1
- package/src/v0_9/schemas/client_to_server_list_wrapper.json +16 -0
- package/src/v0_9/schemas/server_to_client_list_wrapper.json +16 -0
|
@@ -102,6 +102,7 @@ export declare const TextApi: {
|
|
|
102
102
|
args: Record<string, any>;
|
|
103
103
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
104
104
|
};
|
|
105
|
+
weight?: number | undefined;
|
|
105
106
|
variant?: "h1" | "h2" | "h3" | "h4" | "h5" | "caption" | "body" | undefined;
|
|
106
107
|
accessibility?: {
|
|
107
108
|
description?: string | {
|
|
@@ -119,7 +120,6 @@ export declare const TextApi: {
|
|
|
119
120
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
120
121
|
} | undefined;
|
|
121
122
|
} | undefined;
|
|
122
|
-
weight?: number | undefined;
|
|
123
123
|
}, {
|
|
124
124
|
text: string | {
|
|
125
125
|
path: string;
|
|
@@ -128,6 +128,7 @@ export declare const TextApi: {
|
|
|
128
128
|
args: Record<string, any>;
|
|
129
129
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
130
130
|
};
|
|
131
|
+
weight?: number | undefined;
|
|
131
132
|
variant?: "h1" | "h2" | "h3" | "h4" | "h5" | "caption" | "body" | undefined;
|
|
132
133
|
accessibility?: {
|
|
133
134
|
description?: string | {
|
|
@@ -145,7 +146,6 @@ export declare const TextApi: {
|
|
|
145
146
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
146
147
|
} | undefined;
|
|
147
148
|
} | undefined;
|
|
148
|
-
weight?: number | undefined;
|
|
149
149
|
}>;
|
|
150
150
|
};
|
|
151
151
|
export declare const ImageApi: {
|
|
@@ -270,7 +270,7 @@ export declare const ImageApi: {
|
|
|
270
270
|
args: Record<string, any>;
|
|
271
271
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
272
272
|
};
|
|
273
|
-
|
|
273
|
+
weight?: number | undefined;
|
|
274
274
|
description?: string | {
|
|
275
275
|
path: string;
|
|
276
276
|
} | {
|
|
@@ -295,7 +295,7 @@ export declare const ImageApi: {
|
|
|
295
295
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
296
296
|
} | undefined;
|
|
297
297
|
} | undefined;
|
|
298
|
-
|
|
298
|
+
fit?: "fill" | "contain" | "cover" | "none" | "scaleDown" | undefined;
|
|
299
299
|
}, {
|
|
300
300
|
url: string | {
|
|
301
301
|
path: string;
|
|
@@ -304,7 +304,7 @@ export declare const ImageApi: {
|
|
|
304
304
|
args: Record<string, any>;
|
|
305
305
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
306
306
|
};
|
|
307
|
-
|
|
307
|
+
weight?: number | undefined;
|
|
308
308
|
description?: string | {
|
|
309
309
|
path: string;
|
|
310
310
|
} | {
|
|
@@ -329,7 +329,7 @@ export declare const ImageApi: {
|
|
|
329
329
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
330
330
|
} | undefined;
|
|
331
331
|
} | undefined;
|
|
332
|
-
|
|
332
|
+
fit?: "fill" | "contain" | "cover" | "none" | "scaleDown" | undefined;
|
|
333
333
|
}>;
|
|
334
334
|
};
|
|
335
335
|
export declare const IconApi: {
|
|
@@ -414,9 +414,10 @@ export declare const IconApi: {
|
|
|
414
414
|
}>>;
|
|
415
415
|
weight: z.ZodOptional<z.ZodNumber>;
|
|
416
416
|
}, "strict", z.ZodTypeAny, {
|
|
417
|
-
name: "
|
|
417
|
+
name: "error" | "add" | "event" | "call" | "search" | "accountCircle" | "arrowBack" | "arrowForward" | "attachFile" | "calendarToday" | "camera" | "check" | "close" | "delete" | "download" | "edit" | "fastForward" | "favorite" | "favoriteOff" | "folder" | "help" | "home" | "info" | "locationOn" | "lock" | "lockOpen" | "mail" | "menu" | "moreVert" | "moreHoriz" | "notificationsOff" | "notifications" | "pause" | "payment" | "person" | "phone" | "photo" | "play" | "print" | "refresh" | "rewind" | "send" | "settings" | "share" | "shoppingCart" | "skipNext" | "skipPrevious" | "star" | "starHalf" | "starOff" | "stop" | "upload" | "visibility" | "visibilityOff" | "volumeDown" | "volumeMute" | "volumeOff" | "volumeUp" | "warning" | {
|
|
418
418
|
path: string;
|
|
419
419
|
};
|
|
420
|
+
weight?: number | undefined;
|
|
420
421
|
accessibility?: {
|
|
421
422
|
description?: string | {
|
|
422
423
|
path: string;
|
|
@@ -433,11 +434,11 @@ export declare const IconApi: {
|
|
|
433
434
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
434
435
|
} | undefined;
|
|
435
436
|
} | undefined;
|
|
436
|
-
weight?: number | undefined;
|
|
437
437
|
}, {
|
|
438
|
-
name: "
|
|
438
|
+
name: "error" | "add" | "event" | "call" | "search" | "accountCircle" | "arrowBack" | "arrowForward" | "attachFile" | "calendarToday" | "camera" | "check" | "close" | "delete" | "download" | "edit" | "fastForward" | "favorite" | "favoriteOff" | "folder" | "help" | "home" | "info" | "locationOn" | "lock" | "lockOpen" | "mail" | "menu" | "moreVert" | "moreHoriz" | "notificationsOff" | "notifications" | "pause" | "payment" | "person" | "phone" | "photo" | "play" | "print" | "refresh" | "rewind" | "send" | "settings" | "share" | "shoppingCart" | "skipNext" | "skipPrevious" | "star" | "starHalf" | "starOff" | "stop" | "upload" | "visibility" | "visibilityOff" | "volumeDown" | "volumeMute" | "volumeOff" | "volumeUp" | "warning" | {
|
|
439
439
|
path: string;
|
|
440
440
|
};
|
|
441
|
+
weight?: number | undefined;
|
|
441
442
|
accessibility?: {
|
|
442
443
|
description?: string | {
|
|
443
444
|
path: string;
|
|
@@ -454,7 +455,6 @@ export declare const IconApi: {
|
|
|
454
455
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
455
456
|
} | undefined;
|
|
456
457
|
} | undefined;
|
|
457
|
-
weight?: number | undefined;
|
|
458
458
|
}>;
|
|
459
459
|
};
|
|
460
460
|
export declare const VideoApi: {
|
|
@@ -558,6 +558,7 @@ export declare const VideoApi: {
|
|
|
558
558
|
args: Record<string, any>;
|
|
559
559
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
560
560
|
};
|
|
561
|
+
weight?: number | undefined;
|
|
561
562
|
accessibility?: {
|
|
562
563
|
description?: string | {
|
|
563
564
|
path: string;
|
|
@@ -574,7 +575,6 @@ export declare const VideoApi: {
|
|
|
574
575
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
575
576
|
} | undefined;
|
|
576
577
|
} | undefined;
|
|
577
|
-
weight?: number | undefined;
|
|
578
578
|
}, {
|
|
579
579
|
url: string | {
|
|
580
580
|
path: string;
|
|
@@ -583,6 +583,7 @@ export declare const VideoApi: {
|
|
|
583
583
|
args: Record<string, any>;
|
|
584
584
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
585
585
|
};
|
|
586
|
+
weight?: number | undefined;
|
|
586
587
|
accessibility?: {
|
|
587
588
|
description?: string | {
|
|
588
589
|
path: string;
|
|
@@ -599,7 +600,6 @@ export declare const VideoApi: {
|
|
|
599
600
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
600
601
|
} | undefined;
|
|
601
602
|
} | undefined;
|
|
602
|
-
weight?: number | undefined;
|
|
603
603
|
}>;
|
|
604
604
|
};
|
|
605
605
|
export declare const AudioPlayerApi: {
|
|
@@ -722,6 +722,7 @@ export declare const AudioPlayerApi: {
|
|
|
722
722
|
args: Record<string, any>;
|
|
723
723
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
724
724
|
};
|
|
725
|
+
weight?: number | undefined;
|
|
725
726
|
description?: string | {
|
|
726
727
|
path: string;
|
|
727
728
|
} | {
|
|
@@ -745,7 +746,6 @@ export declare const AudioPlayerApi: {
|
|
|
745
746
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
746
747
|
} | undefined;
|
|
747
748
|
} | undefined;
|
|
748
|
-
weight?: number | undefined;
|
|
749
749
|
}, {
|
|
750
750
|
url: string | {
|
|
751
751
|
path: string;
|
|
@@ -754,6 +754,7 @@ export declare const AudioPlayerApi: {
|
|
|
754
754
|
args: Record<string, any>;
|
|
755
755
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
756
756
|
};
|
|
757
|
+
weight?: number | undefined;
|
|
757
758
|
description?: string | {
|
|
758
759
|
path: string;
|
|
759
760
|
} | {
|
|
@@ -777,7 +778,6 @@ export declare const AudioPlayerApi: {
|
|
|
777
778
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
778
779
|
} | undefined;
|
|
779
780
|
} | undefined;
|
|
780
|
-
weight?: number | undefined;
|
|
781
781
|
}>;
|
|
782
782
|
};
|
|
783
783
|
export declare const RowApi: {
|
|
@@ -871,6 +871,7 @@ export declare const RowApi: {
|
|
|
871
871
|
path: string;
|
|
872
872
|
componentId: string;
|
|
873
873
|
};
|
|
874
|
+
weight?: number | undefined;
|
|
874
875
|
accessibility?: {
|
|
875
876
|
description?: string | {
|
|
876
877
|
path: string;
|
|
@@ -887,14 +888,14 @@ export declare const RowApi: {
|
|
|
887
888
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
888
889
|
} | undefined;
|
|
889
890
|
} | undefined;
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
align?: "start" | "center" | "end" | "stretch" | undefined;
|
|
891
|
+
justify?: "center" | "end" | "spaceAround" | "spaceBetween" | "spaceEvenly" | "start" | "stretch" | undefined;
|
|
892
|
+
align?: "center" | "end" | "start" | "stretch" | undefined;
|
|
893
893
|
}, {
|
|
894
894
|
children: string[] | {
|
|
895
895
|
path: string;
|
|
896
896
|
componentId: string;
|
|
897
897
|
};
|
|
898
|
+
weight?: number | undefined;
|
|
898
899
|
accessibility?: {
|
|
899
900
|
description?: string | {
|
|
900
901
|
path: string;
|
|
@@ -911,9 +912,8 @@ export declare const RowApi: {
|
|
|
911
912
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
912
913
|
} | undefined;
|
|
913
914
|
} | undefined;
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
align?: "start" | "center" | "end" | "stretch" | undefined;
|
|
915
|
+
justify?: "center" | "end" | "spaceAround" | "spaceBetween" | "spaceEvenly" | "start" | "stretch" | undefined;
|
|
916
|
+
align?: "center" | "end" | "start" | "stretch" | undefined;
|
|
917
917
|
}>;
|
|
918
918
|
};
|
|
919
919
|
export declare const ColumnApi: {
|
|
@@ -1007,6 +1007,7 @@ export declare const ColumnApi: {
|
|
|
1007
1007
|
path: string;
|
|
1008
1008
|
componentId: string;
|
|
1009
1009
|
};
|
|
1010
|
+
weight?: number | undefined;
|
|
1010
1011
|
accessibility?: {
|
|
1011
1012
|
description?: string | {
|
|
1012
1013
|
path: string;
|
|
@@ -1023,14 +1024,14 @@ export declare const ColumnApi: {
|
|
|
1023
1024
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
1024
1025
|
} | undefined;
|
|
1025
1026
|
} | undefined;
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
align?: "start" | "center" | "end" | "stretch" | undefined;
|
|
1027
|
+
justify?: "center" | "end" | "spaceAround" | "spaceBetween" | "spaceEvenly" | "start" | "stretch" | undefined;
|
|
1028
|
+
align?: "center" | "end" | "start" | "stretch" | undefined;
|
|
1029
1029
|
}, {
|
|
1030
1030
|
children: string[] | {
|
|
1031
1031
|
path: string;
|
|
1032
1032
|
componentId: string;
|
|
1033
1033
|
};
|
|
1034
|
+
weight?: number | undefined;
|
|
1034
1035
|
accessibility?: {
|
|
1035
1036
|
description?: string | {
|
|
1036
1037
|
path: string;
|
|
@@ -1047,9 +1048,8 @@ export declare const ColumnApi: {
|
|
|
1047
1048
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
1048
1049
|
} | undefined;
|
|
1049
1050
|
} | undefined;
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
align?: "start" | "center" | "end" | "stretch" | undefined;
|
|
1051
|
+
justify?: "center" | "end" | "spaceAround" | "spaceBetween" | "spaceEvenly" | "start" | "stretch" | undefined;
|
|
1052
|
+
align?: "center" | "end" | "start" | "stretch" | undefined;
|
|
1053
1053
|
}>;
|
|
1054
1054
|
};
|
|
1055
1055
|
export declare const ListApi: {
|
|
@@ -1143,7 +1143,7 @@ export declare const ListApi: {
|
|
|
1143
1143
|
path: string;
|
|
1144
1144
|
componentId: string;
|
|
1145
1145
|
};
|
|
1146
|
-
|
|
1146
|
+
weight?: number | undefined;
|
|
1147
1147
|
accessibility?: {
|
|
1148
1148
|
description?: string | {
|
|
1149
1149
|
path: string;
|
|
@@ -1160,14 +1160,14 @@ export declare const ListApi: {
|
|
|
1160
1160
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
1161
1161
|
} | undefined;
|
|
1162
1162
|
} | undefined;
|
|
1163
|
-
|
|
1164
|
-
|
|
1163
|
+
align?: "center" | "end" | "start" | "stretch" | undefined;
|
|
1164
|
+
direction?: "vertical" | "horizontal" | undefined;
|
|
1165
1165
|
}, {
|
|
1166
1166
|
children: string[] | {
|
|
1167
1167
|
path: string;
|
|
1168
1168
|
componentId: string;
|
|
1169
1169
|
};
|
|
1170
|
-
|
|
1170
|
+
weight?: number | undefined;
|
|
1171
1171
|
accessibility?: {
|
|
1172
1172
|
description?: string | {
|
|
1173
1173
|
path: string;
|
|
@@ -1184,8 +1184,8 @@ export declare const ListApi: {
|
|
|
1184
1184
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
1185
1185
|
} | undefined;
|
|
1186
1186
|
} | undefined;
|
|
1187
|
-
|
|
1188
|
-
|
|
1187
|
+
align?: "center" | "end" | "start" | "stretch" | undefined;
|
|
1188
|
+
direction?: "vertical" | "horizontal" | undefined;
|
|
1189
1189
|
}>;
|
|
1190
1190
|
};
|
|
1191
1191
|
export declare const CardApi: {
|
|
@@ -1265,6 +1265,7 @@ export declare const CardApi: {
|
|
|
1265
1265
|
weight: z.ZodOptional<z.ZodNumber>;
|
|
1266
1266
|
}, "strict", z.ZodTypeAny, {
|
|
1267
1267
|
child: string;
|
|
1268
|
+
weight?: number | undefined;
|
|
1268
1269
|
accessibility?: {
|
|
1269
1270
|
description?: string | {
|
|
1270
1271
|
path: string;
|
|
@@ -1281,9 +1282,9 @@ export declare const CardApi: {
|
|
|
1281
1282
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
1282
1283
|
} | undefined;
|
|
1283
1284
|
} | undefined;
|
|
1284
|
-
weight?: number | undefined;
|
|
1285
1285
|
}, {
|
|
1286
1286
|
child: string;
|
|
1287
|
+
weight?: number | undefined;
|
|
1287
1288
|
accessibility?: {
|
|
1288
1289
|
description?: string | {
|
|
1289
1290
|
path: string;
|
|
@@ -1300,7 +1301,6 @@ export declare const CardApi: {
|
|
|
1300
1301
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
1301
1302
|
} | undefined;
|
|
1302
1303
|
} | undefined;
|
|
1303
|
-
weight?: number | undefined;
|
|
1304
1304
|
}>;
|
|
1305
1305
|
};
|
|
1306
1306
|
export declare const TabsApi: {
|
|
@@ -1428,6 +1428,7 @@ export declare const TabsApi: {
|
|
|
1428
1428
|
};
|
|
1429
1429
|
child: string;
|
|
1430
1430
|
}[];
|
|
1431
|
+
weight?: number | undefined;
|
|
1431
1432
|
accessibility?: {
|
|
1432
1433
|
description?: string | {
|
|
1433
1434
|
path: string;
|
|
@@ -1444,7 +1445,6 @@ export declare const TabsApi: {
|
|
|
1444
1445
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
1445
1446
|
} | undefined;
|
|
1446
1447
|
} | undefined;
|
|
1447
|
-
weight?: number | undefined;
|
|
1448
1448
|
}, {
|
|
1449
1449
|
tabs: {
|
|
1450
1450
|
title: string | {
|
|
@@ -1456,6 +1456,7 @@ export declare const TabsApi: {
|
|
|
1456
1456
|
};
|
|
1457
1457
|
child: string;
|
|
1458
1458
|
}[];
|
|
1459
|
+
weight?: number | undefined;
|
|
1459
1460
|
accessibility?: {
|
|
1460
1461
|
description?: string | {
|
|
1461
1462
|
path: string;
|
|
@@ -1472,7 +1473,6 @@ export declare const TabsApi: {
|
|
|
1472
1473
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
1473
1474
|
} | undefined;
|
|
1474
1475
|
} | undefined;
|
|
1475
|
-
weight?: number | undefined;
|
|
1476
1476
|
}>;
|
|
1477
1477
|
};
|
|
1478
1478
|
export declare const ModalApi: {
|
|
@@ -1554,6 +1554,7 @@ export declare const ModalApi: {
|
|
|
1554
1554
|
}, "strict", z.ZodTypeAny, {
|
|
1555
1555
|
trigger: string;
|
|
1556
1556
|
content: string;
|
|
1557
|
+
weight?: number | undefined;
|
|
1557
1558
|
accessibility?: {
|
|
1558
1559
|
description?: string | {
|
|
1559
1560
|
path: string;
|
|
@@ -1570,10 +1571,10 @@ export declare const ModalApi: {
|
|
|
1570
1571
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
1571
1572
|
} | undefined;
|
|
1572
1573
|
} | undefined;
|
|
1573
|
-
weight?: number | undefined;
|
|
1574
1574
|
}, {
|
|
1575
1575
|
trigger: string;
|
|
1576
1576
|
content: string;
|
|
1577
|
+
weight?: number | undefined;
|
|
1577
1578
|
accessibility?: {
|
|
1578
1579
|
description?: string | {
|
|
1579
1580
|
path: string;
|
|
@@ -1590,7 +1591,6 @@ export declare const ModalApi: {
|
|
|
1590
1591
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
1591
1592
|
} | undefined;
|
|
1592
1593
|
} | undefined;
|
|
1593
|
-
weight?: number | undefined;
|
|
1594
1594
|
}>;
|
|
1595
1595
|
};
|
|
1596
1596
|
export declare const DividerApi: {
|
|
@@ -1669,7 +1669,7 @@ export declare const DividerApi: {
|
|
|
1669
1669
|
}>>;
|
|
1670
1670
|
weight: z.ZodOptional<z.ZodNumber>;
|
|
1671
1671
|
}, "strict", z.ZodTypeAny, {
|
|
1672
|
-
|
|
1672
|
+
weight?: number | undefined;
|
|
1673
1673
|
accessibility?: {
|
|
1674
1674
|
description?: string | {
|
|
1675
1675
|
path: string;
|
|
@@ -1686,9 +1686,9 @@ export declare const DividerApi: {
|
|
|
1686
1686
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
1687
1687
|
} | undefined;
|
|
1688
1688
|
} | undefined;
|
|
1689
|
-
|
|
1689
|
+
axis?: "vertical" | "horizontal" | undefined;
|
|
1690
1690
|
}, {
|
|
1691
|
-
|
|
1691
|
+
weight?: number | undefined;
|
|
1692
1692
|
accessibility?: {
|
|
1693
1693
|
description?: string | {
|
|
1694
1694
|
path: string;
|
|
@@ -1705,7 +1705,7 @@ export declare const DividerApi: {
|
|
|
1705
1705
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
1706
1706
|
} | undefined;
|
|
1707
1707
|
} | undefined;
|
|
1708
|
-
|
|
1708
|
+
axis?: "vertical" | "horizontal" | undefined;
|
|
1709
1709
|
}>;
|
|
1710
1710
|
};
|
|
1711
1711
|
export declare const ButtonApi: {
|
|
@@ -1915,7 +1915,6 @@ export declare const ButtonApi: {
|
|
|
1915
1915
|
}>>;
|
|
1916
1916
|
weight: z.ZodOptional<z.ZodNumber>;
|
|
1917
1917
|
}, "strict", z.ZodTypeAny, {
|
|
1918
|
-
child: string;
|
|
1919
1918
|
action: {
|
|
1920
1919
|
event: {
|
|
1921
1920
|
name: string;
|
|
@@ -1934,36 +1933,36 @@ export declare const ButtonApi: {
|
|
|
1934
1933
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
1935
1934
|
};
|
|
1936
1935
|
};
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1936
|
+
child: string;
|
|
1937
|
+
weight?: number | undefined;
|
|
1938
|
+
checks?: {
|
|
1939
|
+
message: string;
|
|
1940
|
+
condition: boolean | {
|
|
1940
1941
|
path: string;
|
|
1941
1942
|
} | {
|
|
1942
1943
|
call: string;
|
|
1943
1944
|
args: Record<string, any>;
|
|
1944
1945
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
1945
|
-
}
|
|
1946
|
-
|
|
1946
|
+
};
|
|
1947
|
+
}[] | undefined;
|
|
1948
|
+
variant?: "default" | "primary" | "borderless" | undefined;
|
|
1949
|
+
accessibility?: {
|
|
1950
|
+
description?: string | {
|
|
1947
1951
|
path: string;
|
|
1948
1952
|
} | {
|
|
1949
1953
|
call: string;
|
|
1950
1954
|
args: Record<string, any>;
|
|
1951
1955
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
1952
1956
|
} | undefined;
|
|
1953
|
-
|
|
1954
|
-
weight?: number | undefined;
|
|
1955
|
-
checks?: {
|
|
1956
|
-
message: string;
|
|
1957
|
-
condition: boolean | {
|
|
1957
|
+
label?: string | {
|
|
1958
1958
|
path: string;
|
|
1959
1959
|
} | {
|
|
1960
1960
|
call: string;
|
|
1961
1961
|
args: Record<string, any>;
|
|
1962
1962
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
1963
|
-
};
|
|
1964
|
-
}
|
|
1963
|
+
} | undefined;
|
|
1964
|
+
} | undefined;
|
|
1965
1965
|
}, {
|
|
1966
|
-
child: string;
|
|
1967
1966
|
action: {
|
|
1968
1967
|
event: {
|
|
1969
1968
|
name: string;
|
|
@@ -1982,34 +1981,35 @@ export declare const ButtonApi: {
|
|
|
1982
1981
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
1983
1982
|
};
|
|
1984
1983
|
};
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1984
|
+
child: string;
|
|
1985
|
+
weight?: number | undefined;
|
|
1986
|
+
checks?: {
|
|
1987
|
+
message: string;
|
|
1988
|
+
condition: boolean | {
|
|
1988
1989
|
path: string;
|
|
1989
1990
|
} | {
|
|
1990
1991
|
call: string;
|
|
1991
1992
|
args: Record<string, any>;
|
|
1992
1993
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
1993
|
-
}
|
|
1994
|
-
|
|
1994
|
+
};
|
|
1995
|
+
}[] | undefined;
|
|
1996
|
+
variant?: "default" | "primary" | "borderless" | undefined;
|
|
1997
|
+
accessibility?: {
|
|
1998
|
+
description?: string | {
|
|
1995
1999
|
path: string;
|
|
1996
2000
|
} | {
|
|
1997
2001
|
call: string;
|
|
1998
2002
|
args: Record<string, any>;
|
|
1999
2003
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2000
2004
|
} | undefined;
|
|
2001
|
-
|
|
2002
|
-
weight?: number | undefined;
|
|
2003
|
-
checks?: {
|
|
2004
|
-
message: string;
|
|
2005
|
-
condition: boolean | {
|
|
2005
|
+
label?: string | {
|
|
2006
2006
|
path: string;
|
|
2007
2007
|
} | {
|
|
2008
2008
|
call: string;
|
|
2009
2009
|
args: Record<string, any>;
|
|
2010
2010
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2011
|
-
};
|
|
2012
|
-
}
|
|
2011
|
+
} | undefined;
|
|
2012
|
+
} | undefined;
|
|
2013
2013
|
}>;
|
|
2014
2014
|
};
|
|
2015
2015
|
export declare const TextFieldApi: {
|
|
@@ -2181,35 +2181,35 @@ export declare const TextFieldApi: {
|
|
|
2181
2181
|
args: Record<string, any>;
|
|
2182
2182
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2183
2183
|
} | undefined;
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2184
|
+
weight?: number | undefined;
|
|
2185
|
+
checks?: {
|
|
2186
|
+
message: string;
|
|
2187
|
+
condition: boolean | {
|
|
2188
2188
|
path: string;
|
|
2189
2189
|
} | {
|
|
2190
2190
|
call: string;
|
|
2191
2191
|
args: Record<string, any>;
|
|
2192
2192
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2193
|
-
}
|
|
2194
|
-
|
|
2193
|
+
};
|
|
2194
|
+
}[] | undefined;
|
|
2195
|
+
variant?: "number" | "longText" | "shortText" | "obscured" | undefined;
|
|
2196
|
+
accessibility?: {
|
|
2197
|
+
description?: string | {
|
|
2195
2198
|
path: string;
|
|
2196
2199
|
} | {
|
|
2197
2200
|
call: string;
|
|
2198
2201
|
args: Record<string, any>;
|
|
2199
2202
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2200
2203
|
} | undefined;
|
|
2201
|
-
|
|
2202
|
-
weight?: number | undefined;
|
|
2203
|
-
checks?: {
|
|
2204
|
-
message: string;
|
|
2205
|
-
condition: boolean | {
|
|
2204
|
+
label?: string | {
|
|
2206
2205
|
path: string;
|
|
2207
2206
|
} | {
|
|
2208
2207
|
call: string;
|
|
2209
2208
|
args: Record<string, any>;
|
|
2210
2209
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2211
|
-
};
|
|
2212
|
-
}
|
|
2210
|
+
} | undefined;
|
|
2211
|
+
} | undefined;
|
|
2212
|
+
validationRegexp?: string | undefined;
|
|
2213
2213
|
}, {
|
|
2214
2214
|
label: string | {
|
|
2215
2215
|
path: string;
|
|
@@ -2225,35 +2225,35 @@ export declare const TextFieldApi: {
|
|
|
2225
2225
|
args: Record<string, any>;
|
|
2226
2226
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2227
2227
|
} | undefined;
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2228
|
+
weight?: number | undefined;
|
|
2229
|
+
checks?: {
|
|
2230
|
+
message: string;
|
|
2231
|
+
condition: boolean | {
|
|
2232
2232
|
path: string;
|
|
2233
2233
|
} | {
|
|
2234
2234
|
call: string;
|
|
2235
2235
|
args: Record<string, any>;
|
|
2236
2236
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2237
|
-
}
|
|
2238
|
-
|
|
2237
|
+
};
|
|
2238
|
+
}[] | undefined;
|
|
2239
|
+
variant?: "number" | "longText" | "shortText" | "obscured" | undefined;
|
|
2240
|
+
accessibility?: {
|
|
2241
|
+
description?: string | {
|
|
2239
2242
|
path: string;
|
|
2240
2243
|
} | {
|
|
2241
2244
|
call: string;
|
|
2242
2245
|
args: Record<string, any>;
|
|
2243
2246
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2244
2247
|
} | undefined;
|
|
2245
|
-
|
|
2246
|
-
weight?: number | undefined;
|
|
2247
|
-
checks?: {
|
|
2248
|
-
message: string;
|
|
2249
|
-
condition: boolean | {
|
|
2248
|
+
label?: string | {
|
|
2250
2249
|
path: string;
|
|
2251
2250
|
} | {
|
|
2252
2251
|
call: string;
|
|
2253
2252
|
args: Record<string, any>;
|
|
2254
2253
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2255
|
-
};
|
|
2256
|
-
}
|
|
2254
|
+
} | undefined;
|
|
2255
|
+
} | undefined;
|
|
2256
|
+
validationRegexp?: string | undefined;
|
|
2257
2257
|
}>;
|
|
2258
2258
|
};
|
|
2259
2259
|
export declare const CheckBoxApi: {
|
|
@@ -2423,33 +2423,33 @@ export declare const CheckBoxApi: {
|
|
|
2423
2423
|
args: Record<string, any>;
|
|
2424
2424
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2425
2425
|
};
|
|
2426
|
-
|
|
2427
|
-
|
|
2426
|
+
weight?: number | undefined;
|
|
2427
|
+
checks?: {
|
|
2428
|
+
message: string;
|
|
2429
|
+
condition: boolean | {
|
|
2428
2430
|
path: string;
|
|
2429
2431
|
} | {
|
|
2430
2432
|
call: string;
|
|
2431
2433
|
args: Record<string, any>;
|
|
2432
2434
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2433
|
-
}
|
|
2434
|
-
|
|
2435
|
+
};
|
|
2436
|
+
}[] | undefined;
|
|
2437
|
+
accessibility?: {
|
|
2438
|
+
description?: string | {
|
|
2435
2439
|
path: string;
|
|
2436
2440
|
} | {
|
|
2437
2441
|
call: string;
|
|
2438
2442
|
args: Record<string, any>;
|
|
2439
2443
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2440
2444
|
} | undefined;
|
|
2441
|
-
|
|
2442
|
-
weight?: number | undefined;
|
|
2443
|
-
checks?: {
|
|
2444
|
-
message: string;
|
|
2445
|
-
condition: boolean | {
|
|
2445
|
+
label?: string | {
|
|
2446
2446
|
path: string;
|
|
2447
2447
|
} | {
|
|
2448
2448
|
call: string;
|
|
2449
2449
|
args: Record<string, any>;
|
|
2450
2450
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2451
|
-
};
|
|
2452
|
-
}
|
|
2451
|
+
} | undefined;
|
|
2452
|
+
} | undefined;
|
|
2453
2453
|
}, {
|
|
2454
2454
|
value: boolean | {
|
|
2455
2455
|
path: string;
|
|
@@ -2465,33 +2465,33 @@ export declare const CheckBoxApi: {
|
|
|
2465
2465
|
args: Record<string, any>;
|
|
2466
2466
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2467
2467
|
};
|
|
2468
|
-
|
|
2469
|
-
|
|
2468
|
+
weight?: number | undefined;
|
|
2469
|
+
checks?: {
|
|
2470
|
+
message: string;
|
|
2471
|
+
condition: boolean | {
|
|
2470
2472
|
path: string;
|
|
2471
2473
|
} | {
|
|
2472
2474
|
call: string;
|
|
2473
2475
|
args: Record<string, any>;
|
|
2474
2476
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2475
|
-
}
|
|
2476
|
-
|
|
2477
|
+
};
|
|
2478
|
+
}[] | undefined;
|
|
2479
|
+
accessibility?: {
|
|
2480
|
+
description?: string | {
|
|
2477
2481
|
path: string;
|
|
2478
2482
|
} | {
|
|
2479
2483
|
call: string;
|
|
2480
2484
|
args: Record<string, any>;
|
|
2481
2485
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2482
2486
|
} | undefined;
|
|
2483
|
-
|
|
2484
|
-
weight?: number | undefined;
|
|
2485
|
-
checks?: {
|
|
2486
|
-
message: string;
|
|
2487
|
-
condition: boolean | {
|
|
2487
|
+
label?: string | {
|
|
2488
2488
|
path: string;
|
|
2489
2489
|
} | {
|
|
2490
2490
|
call: string;
|
|
2491
2491
|
args: Record<string, any>;
|
|
2492
2492
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2493
|
-
};
|
|
2494
|
-
}
|
|
2493
|
+
} | undefined;
|
|
2494
|
+
} | undefined;
|
|
2495
2495
|
}>;
|
|
2496
2496
|
};
|
|
2497
2497
|
export declare const ChoicePickerApi: {
|
|
@@ -2690,13 +2690,6 @@ export declare const ChoicePickerApi: {
|
|
|
2690
2690
|
}>>;
|
|
2691
2691
|
weight: z.ZodOptional<z.ZodNumber>;
|
|
2692
2692
|
}, "strict", z.ZodTypeAny, {
|
|
2693
|
-
value: string[] | {
|
|
2694
|
-
path: string;
|
|
2695
|
-
} | {
|
|
2696
|
-
call: string;
|
|
2697
|
-
args: Record<string, any>;
|
|
2698
|
-
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2699
|
-
};
|
|
2700
2693
|
options: {
|
|
2701
2694
|
value: string;
|
|
2702
2695
|
label: string | {
|
|
@@ -2707,6 +2700,14 @@ export declare const ChoicePickerApi: {
|
|
|
2707
2700
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2708
2701
|
};
|
|
2709
2702
|
}[];
|
|
2703
|
+
value: string[] | {
|
|
2704
|
+
path: string;
|
|
2705
|
+
} | {
|
|
2706
|
+
call: string;
|
|
2707
|
+
args: Record<string, any>;
|
|
2708
|
+
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2709
|
+
};
|
|
2710
|
+
weight?: number | undefined;
|
|
2710
2711
|
label?: string | {
|
|
2711
2712
|
path: string;
|
|
2712
2713
|
} | {
|
|
@@ -2714,7 +2715,16 @@ export declare const ChoicePickerApi: {
|
|
|
2714
2715
|
args: Record<string, any>;
|
|
2715
2716
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2716
2717
|
} | undefined;
|
|
2717
|
-
|
|
2718
|
+
checks?: {
|
|
2719
|
+
message: string;
|
|
2720
|
+
condition: boolean | {
|
|
2721
|
+
path: string;
|
|
2722
|
+
} | {
|
|
2723
|
+
call: string;
|
|
2724
|
+
args: Record<string, any>;
|
|
2725
|
+
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2726
|
+
};
|
|
2727
|
+
}[] | undefined;
|
|
2718
2728
|
variant?: "multipleSelection" | "mutuallyExclusive" | undefined;
|
|
2719
2729
|
accessibility?: {
|
|
2720
2730
|
description?: string | {
|
|
@@ -2732,26 +2742,9 @@ export declare const ChoicePickerApi: {
|
|
|
2732
2742
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2733
2743
|
} | undefined;
|
|
2734
2744
|
} | undefined;
|
|
2735
|
-
weight?: number | undefined;
|
|
2736
|
-
checks?: {
|
|
2737
|
-
message: string;
|
|
2738
|
-
condition: boolean | {
|
|
2739
|
-
path: string;
|
|
2740
|
-
} | {
|
|
2741
|
-
call: string;
|
|
2742
|
-
args: Record<string, any>;
|
|
2743
|
-
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2744
|
-
};
|
|
2745
|
-
}[] | undefined;
|
|
2746
2745
|
displayStyle?: "checkbox" | "chips" | undefined;
|
|
2746
|
+
filterable?: boolean | undefined;
|
|
2747
2747
|
}, {
|
|
2748
|
-
value: string[] | {
|
|
2749
|
-
path: string;
|
|
2750
|
-
} | {
|
|
2751
|
-
call: string;
|
|
2752
|
-
args: Record<string, any>;
|
|
2753
|
-
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2754
|
-
};
|
|
2755
2748
|
options: {
|
|
2756
2749
|
value: string;
|
|
2757
2750
|
label: string | {
|
|
@@ -2762,6 +2755,14 @@ export declare const ChoicePickerApi: {
|
|
|
2762
2755
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2763
2756
|
};
|
|
2764
2757
|
}[];
|
|
2758
|
+
value: string[] | {
|
|
2759
|
+
path: string;
|
|
2760
|
+
} | {
|
|
2761
|
+
call: string;
|
|
2762
|
+
args: Record<string, any>;
|
|
2763
|
+
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2764
|
+
};
|
|
2765
|
+
weight?: number | undefined;
|
|
2765
2766
|
label?: string | {
|
|
2766
2767
|
path: string;
|
|
2767
2768
|
} | {
|
|
@@ -2769,7 +2770,16 @@ export declare const ChoicePickerApi: {
|
|
|
2769
2770
|
args: Record<string, any>;
|
|
2770
2771
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2771
2772
|
} | undefined;
|
|
2772
|
-
|
|
2773
|
+
checks?: {
|
|
2774
|
+
message: string;
|
|
2775
|
+
condition: boolean | {
|
|
2776
|
+
path: string;
|
|
2777
|
+
} | {
|
|
2778
|
+
call: string;
|
|
2779
|
+
args: Record<string, any>;
|
|
2780
|
+
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2781
|
+
};
|
|
2782
|
+
}[] | undefined;
|
|
2773
2783
|
variant?: "multipleSelection" | "mutuallyExclusive" | undefined;
|
|
2774
2784
|
accessibility?: {
|
|
2775
2785
|
description?: string | {
|
|
@@ -2787,18 +2797,8 @@ export declare const ChoicePickerApi: {
|
|
|
2787
2797
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2788
2798
|
} | undefined;
|
|
2789
2799
|
} | undefined;
|
|
2790
|
-
weight?: number | undefined;
|
|
2791
|
-
checks?: {
|
|
2792
|
-
message: string;
|
|
2793
|
-
condition: boolean | {
|
|
2794
|
-
path: string;
|
|
2795
|
-
} | {
|
|
2796
|
-
call: string;
|
|
2797
|
-
args: Record<string, any>;
|
|
2798
|
-
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
2799
|
-
};
|
|
2800
|
-
}[] | undefined;
|
|
2801
2800
|
displayStyle?: "checkbox" | "chips" | undefined;
|
|
2801
|
+
filterable?: boolean | undefined;
|
|
2802
2802
|
}>;
|
|
2803
2803
|
};
|
|
2804
2804
|
export declare const SliderApi: {
|
|
@@ -2964,6 +2964,7 @@ export declare const SliderApi: {
|
|
|
2964
2964
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2965
2965
|
};
|
|
2966
2966
|
max: number;
|
|
2967
|
+
weight?: number | undefined;
|
|
2967
2968
|
label?: string | {
|
|
2968
2969
|
path: string;
|
|
2969
2970
|
} | {
|
|
@@ -2971,34 +2972,33 @@ export declare const SliderApi: {
|
|
|
2971
2972
|
args: Record<string, any>;
|
|
2972
2973
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2973
2974
|
} | undefined;
|
|
2974
|
-
|
|
2975
|
-
|
|
2975
|
+
checks?: {
|
|
2976
|
+
message: string;
|
|
2977
|
+
condition: boolean | {
|
|
2976
2978
|
path: string;
|
|
2977
2979
|
} | {
|
|
2978
2980
|
call: string;
|
|
2979
2981
|
args: Record<string, any>;
|
|
2980
2982
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2981
|
-
}
|
|
2982
|
-
|
|
2983
|
+
};
|
|
2984
|
+
}[] | undefined;
|
|
2985
|
+
min?: number | undefined;
|
|
2986
|
+
accessibility?: {
|
|
2987
|
+
description?: string | {
|
|
2983
2988
|
path: string;
|
|
2984
2989
|
} | {
|
|
2985
2990
|
call: string;
|
|
2986
2991
|
args: Record<string, any>;
|
|
2987
2992
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2988
2993
|
} | undefined;
|
|
2989
|
-
|
|
2990
|
-
weight?: number | undefined;
|
|
2991
|
-
checks?: {
|
|
2992
|
-
message: string;
|
|
2993
|
-
condition: boolean | {
|
|
2994
|
+
label?: string | {
|
|
2994
2995
|
path: string;
|
|
2995
2996
|
} | {
|
|
2996
2997
|
call: string;
|
|
2997
2998
|
args: Record<string, any>;
|
|
2998
2999
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
2999
|
-
};
|
|
3000
|
-
}
|
|
3001
|
-
min?: number | undefined;
|
|
3000
|
+
} | undefined;
|
|
3001
|
+
} | undefined;
|
|
3002
3002
|
}, {
|
|
3003
3003
|
value: number | {
|
|
3004
3004
|
path: string;
|
|
@@ -3008,6 +3008,7 @@ export declare const SliderApi: {
|
|
|
3008
3008
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
3009
3009
|
};
|
|
3010
3010
|
max: number;
|
|
3011
|
+
weight?: number | undefined;
|
|
3011
3012
|
label?: string | {
|
|
3012
3013
|
path: string;
|
|
3013
3014
|
} | {
|
|
@@ -3015,34 +3016,33 @@ export declare const SliderApi: {
|
|
|
3015
3016
|
args: Record<string, any>;
|
|
3016
3017
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
3017
3018
|
} | undefined;
|
|
3018
|
-
|
|
3019
|
-
|
|
3019
|
+
checks?: {
|
|
3020
|
+
message: string;
|
|
3021
|
+
condition: boolean | {
|
|
3020
3022
|
path: string;
|
|
3021
3023
|
} | {
|
|
3022
3024
|
call: string;
|
|
3023
3025
|
args: Record<string, any>;
|
|
3024
3026
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
3025
|
-
}
|
|
3026
|
-
|
|
3027
|
+
};
|
|
3028
|
+
}[] | undefined;
|
|
3029
|
+
min?: number | undefined;
|
|
3030
|
+
accessibility?: {
|
|
3031
|
+
description?: string | {
|
|
3027
3032
|
path: string;
|
|
3028
3033
|
} | {
|
|
3029
3034
|
call: string;
|
|
3030
3035
|
args: Record<string, any>;
|
|
3031
3036
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
3032
3037
|
} | undefined;
|
|
3033
|
-
|
|
3034
|
-
weight?: number | undefined;
|
|
3035
|
-
checks?: {
|
|
3036
|
-
message: string;
|
|
3037
|
-
condition: boolean | {
|
|
3038
|
+
label?: string | {
|
|
3038
3039
|
path: string;
|
|
3039
3040
|
} | {
|
|
3040
3041
|
call: string;
|
|
3041
3042
|
args: Record<string, any>;
|
|
3042
3043
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
3043
|
-
};
|
|
3044
|
-
}
|
|
3045
|
-
min?: number | undefined;
|
|
3044
|
+
} | undefined;
|
|
3045
|
+
} | undefined;
|
|
3046
3046
|
}>;
|
|
3047
3047
|
};
|
|
3048
3048
|
export declare const DateTimeInputApi: {
|
|
@@ -3245,6 +3245,7 @@ export declare const DateTimeInputApi: {
|
|
|
3245
3245
|
args: Record<string, any>;
|
|
3246
3246
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
3247
3247
|
};
|
|
3248
|
+
weight?: number | undefined;
|
|
3248
3249
|
label?: string | {
|
|
3249
3250
|
path: string;
|
|
3250
3251
|
} | {
|
|
@@ -3252,25 +3253,6 @@ export declare const DateTimeInputApi: {
|
|
|
3252
3253
|
args: Record<string, any>;
|
|
3253
3254
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
3254
3255
|
} | undefined;
|
|
3255
|
-
enableDate?: boolean | undefined;
|
|
3256
|
-
enableTime?: boolean | undefined;
|
|
3257
|
-
accessibility?: {
|
|
3258
|
-
description?: string | {
|
|
3259
|
-
path: string;
|
|
3260
|
-
} | {
|
|
3261
|
-
call: string;
|
|
3262
|
-
args: Record<string, any>;
|
|
3263
|
-
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
3264
|
-
} | undefined;
|
|
3265
|
-
label?: string | {
|
|
3266
|
-
path: string;
|
|
3267
|
-
} | {
|
|
3268
|
-
call: string;
|
|
3269
|
-
args: Record<string, any>;
|
|
3270
|
-
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
3271
|
-
} | undefined;
|
|
3272
|
-
} | undefined;
|
|
3273
|
-
weight?: number | undefined;
|
|
3274
3256
|
checks?: {
|
|
3275
3257
|
message: string;
|
|
3276
3258
|
condition: boolean | {
|
|
@@ -3295,40 +3277,40 @@ export declare const DateTimeInputApi: {
|
|
|
3295
3277
|
args: Record<string, any>;
|
|
3296
3278
|
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
3297
3279
|
} | undefined;
|
|
3298
|
-
}, {
|
|
3299
|
-
value: string | {
|
|
3300
|
-
path: string;
|
|
3301
|
-
} | {
|
|
3302
|
-
call: string;
|
|
3303
|
-
args: Record<string, any>;
|
|
3304
|
-
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
3305
|
-
};
|
|
3306
|
-
label?: string | {
|
|
3307
|
-
path: string;
|
|
3308
|
-
} | {
|
|
3309
|
-
call: string;
|
|
3310
|
-
args: Record<string, any>;
|
|
3311
|
-
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
3312
|
-
} | undefined;
|
|
3313
|
-
enableDate?: boolean | undefined;
|
|
3314
|
-
enableTime?: boolean | undefined;
|
|
3315
3280
|
accessibility?: {
|
|
3316
3281
|
description?: string | {
|
|
3317
3282
|
path: string;
|
|
3318
3283
|
} | {
|
|
3319
3284
|
call: string;
|
|
3320
3285
|
args: Record<string, any>;
|
|
3321
|
-
returnType
|
|
3286
|
+
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
3322
3287
|
} | undefined;
|
|
3323
3288
|
label?: string | {
|
|
3324
3289
|
path: string;
|
|
3325
3290
|
} | {
|
|
3326
3291
|
call: string;
|
|
3327
3292
|
args: Record<string, any>;
|
|
3328
|
-
returnType
|
|
3293
|
+
returnType: "string" | "number" | "boolean" | "object" | "array" | "void" | "any";
|
|
3329
3294
|
} | undefined;
|
|
3330
3295
|
} | undefined;
|
|
3296
|
+
enableDate?: boolean | undefined;
|
|
3297
|
+
enableTime?: boolean | undefined;
|
|
3298
|
+
}, {
|
|
3299
|
+
value: string | {
|
|
3300
|
+
path: string;
|
|
3301
|
+
} | {
|
|
3302
|
+
call: string;
|
|
3303
|
+
args: Record<string, any>;
|
|
3304
|
+
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
3305
|
+
};
|
|
3331
3306
|
weight?: number | undefined;
|
|
3307
|
+
label?: string | {
|
|
3308
|
+
path: string;
|
|
3309
|
+
} | {
|
|
3310
|
+
call: string;
|
|
3311
|
+
args: Record<string, any>;
|
|
3312
|
+
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
3313
|
+
} | undefined;
|
|
3332
3314
|
checks?: {
|
|
3333
3315
|
message: string;
|
|
3334
3316
|
condition: boolean | {
|
|
@@ -3353,6 +3335,24 @@ export declare const DateTimeInputApi: {
|
|
|
3353
3335
|
args: Record<string, any>;
|
|
3354
3336
|
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
3355
3337
|
} | undefined;
|
|
3338
|
+
accessibility?: {
|
|
3339
|
+
description?: string | {
|
|
3340
|
+
path: string;
|
|
3341
|
+
} | {
|
|
3342
|
+
call: string;
|
|
3343
|
+
args: Record<string, any>;
|
|
3344
|
+
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
3345
|
+
} | undefined;
|
|
3346
|
+
label?: string | {
|
|
3347
|
+
path: string;
|
|
3348
|
+
} | {
|
|
3349
|
+
call: string;
|
|
3350
|
+
args: Record<string, any>;
|
|
3351
|
+
returnType?: "string" | "number" | "boolean" | "object" | "array" | "void" | "any" | undefined;
|
|
3352
|
+
} | undefined;
|
|
3353
|
+
} | undefined;
|
|
3354
|
+
enableDate?: boolean | undefined;
|
|
3355
|
+
enableTime?: boolean | undefined;
|
|
3356
3356
|
}>;
|
|
3357
3357
|
};
|
|
3358
3358
|
export declare const BASIC_COMPONENTS: ComponentApi[];
|