convex-cms 0.0.10 → 0.0.11-alpha.2
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/README.md +25 -5
- package/dist/client/admin/contentTypes.d.ts +102 -0
- package/dist/client/admin/contentTypes.d.ts.map +1 -1
- package/dist/client/admin/index.d.ts +204 -0
- package/dist/client/admin/index.d.ts.map +1 -1
- package/dist/client/admin/media.d.ts.map +1 -1
- package/dist/client/admin/taxonomies.d.ts.map +1 -1
- package/dist/client/admin/trash.d.ts.map +1 -1
- package/dist/client/admin/validators.d.ts +570 -94
- package/dist/client/admin/validators.d.ts.map +1 -1
- package/dist/component/_generated/component.d.ts +102 -0
- package/dist/component/_generated/component.d.ts.map +1 -1
- package/dist/component/contentTypeMutations.d.ts +68 -0
- package/dist/component/contentTypeMutations.d.ts.map +1 -1
- package/dist/component/contentTypes.d.ts +34 -0
- package/dist/component/contentTypes.d.ts.map +1 -1
- package/dist/component/ragContentIndexer.d.ts +17 -0
- package/dist/component/ragContentIndexer.d.ts.map +1 -1
- package/dist/component/schema.d.ts +399 -76
- package/dist/component/schema.d.ts.map +1 -1
- package/dist/component/schema.js +17 -0
- package/dist/component/schema.js.map +1 -1
- package/dist/component/taxonomies.d.ts +5 -5
- package/dist/component/validators.d.ts +362 -56
- package/dist/component/validators.d.ts.map +1 -1
- package/dist/test.d.ts +122 -20
- package/dist/test.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -133,6 +133,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
133
133
|
minLength?: number | undefined;
|
|
134
134
|
maxLength?: number | undefined;
|
|
135
135
|
pattern?: string | undefined;
|
|
136
|
+
patternMessage?: string | undefined;
|
|
137
|
+
placeholder?: string | undefined;
|
|
138
|
+
multiline?: boolean | undefined;
|
|
136
139
|
} | undefined;
|
|
137
140
|
searchable?: boolean | undefined;
|
|
138
141
|
localized?: boolean | undefined;
|
|
@@ -148,6 +151,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
148
151
|
max?: number | undefined;
|
|
149
152
|
step?: number | undefined;
|
|
150
153
|
precision?: number | undefined;
|
|
154
|
+
prefix?: string | undefined;
|
|
155
|
+
suffix?: string | undefined;
|
|
151
156
|
} | undefined;
|
|
152
157
|
searchable?: boolean | undefined;
|
|
153
158
|
localized?: boolean | undefined;
|
|
@@ -172,6 +177,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
172
177
|
label: string;
|
|
173
178
|
} | {
|
|
174
179
|
options?: {
|
|
180
|
+
maxLength?: number | undefined;
|
|
181
|
+
placeholder?: string | undefined;
|
|
175
182
|
allowedBlocks?: string[] | undefined;
|
|
176
183
|
allowedMarks?: string[] | undefined;
|
|
177
184
|
} | undefined;
|
|
@@ -189,6 +196,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
189
196
|
allowedMimeTypes?: string[] | undefined;
|
|
190
197
|
maxFileSize?: number | undefined;
|
|
191
198
|
multiple?: boolean | undefined;
|
|
199
|
+
maxItems?: number | undefined;
|
|
192
200
|
} | undefined;
|
|
193
201
|
searchable?: boolean | undefined;
|
|
194
202
|
localized?: boolean | undefined;
|
|
@@ -216,6 +224,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
216
224
|
} | {
|
|
217
225
|
options?: {
|
|
218
226
|
allowMultiple?: boolean | undefined;
|
|
227
|
+
taxonomyName?: string | undefined;
|
|
228
|
+
maxSelections?: number | undefined;
|
|
229
|
+
depth?: number | undefined;
|
|
219
230
|
} | undefined;
|
|
220
231
|
searchable?: boolean | undefined;
|
|
221
232
|
localized?: boolean | undefined;
|
|
@@ -240,6 +251,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
240
251
|
} | {
|
|
241
252
|
options?: {
|
|
242
253
|
multiple?: boolean | undefined;
|
|
254
|
+
maxItems?: number | undefined;
|
|
243
255
|
allowedContentTypes?: string[] | undefined;
|
|
244
256
|
minItems?: number | undefined;
|
|
245
257
|
} | undefined;
|
|
@@ -257,6 +269,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
257
269
|
label: string;
|
|
258
270
|
value: string;
|
|
259
271
|
}[] | undefined;
|
|
272
|
+
maxSelections?: number | undefined;
|
|
273
|
+
minSelections?: number | undefined;
|
|
260
274
|
} | undefined;
|
|
261
275
|
searchable?: boolean | undefined;
|
|
262
276
|
localized?: boolean | undefined;
|
|
@@ -268,6 +282,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
268
282
|
label: string;
|
|
269
283
|
} | {
|
|
270
284
|
options?: {
|
|
285
|
+
format?: string | undefined;
|
|
271
286
|
min?: number | undefined;
|
|
272
287
|
max?: number | undefined;
|
|
273
288
|
} | undefined;
|
|
@@ -281,8 +296,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
281
296
|
label: string;
|
|
282
297
|
} | {
|
|
283
298
|
options?: {
|
|
299
|
+
format?: string | undefined;
|
|
284
300
|
min?: number | undefined;
|
|
285
301
|
max?: number | undefined;
|
|
302
|
+
timezone?: string | undefined;
|
|
286
303
|
} | undefined;
|
|
287
304
|
searchable?: boolean | undefined;
|
|
288
305
|
localized?: boolean | undefined;
|
|
@@ -336,6 +353,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
336
353
|
minLength?: number | undefined;
|
|
337
354
|
maxLength?: number | undefined;
|
|
338
355
|
pattern?: string | undefined;
|
|
356
|
+
patternMessage?: string | undefined;
|
|
357
|
+
placeholder?: string | undefined;
|
|
358
|
+
multiline?: boolean | undefined;
|
|
339
359
|
} | undefined;
|
|
340
360
|
searchable?: boolean | undefined;
|
|
341
361
|
localized?: boolean | undefined;
|
|
@@ -351,6 +371,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
351
371
|
max?: number | undefined;
|
|
352
372
|
step?: number | undefined;
|
|
353
373
|
precision?: number | undefined;
|
|
374
|
+
prefix?: string | undefined;
|
|
375
|
+
suffix?: string | undefined;
|
|
354
376
|
} | undefined;
|
|
355
377
|
searchable?: boolean | undefined;
|
|
356
378
|
localized?: boolean | undefined;
|
|
@@ -375,6 +397,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
375
397
|
label: string;
|
|
376
398
|
} | {
|
|
377
399
|
options?: {
|
|
400
|
+
maxLength?: number | undefined;
|
|
401
|
+
placeholder?: string | undefined;
|
|
378
402
|
allowedBlocks?: string[] | undefined;
|
|
379
403
|
allowedMarks?: string[] | undefined;
|
|
380
404
|
} | undefined;
|
|
@@ -392,6 +416,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
392
416
|
allowedMimeTypes?: string[] | undefined;
|
|
393
417
|
maxFileSize?: number | undefined;
|
|
394
418
|
multiple?: boolean | undefined;
|
|
419
|
+
maxItems?: number | undefined;
|
|
395
420
|
} | undefined;
|
|
396
421
|
searchable?: boolean | undefined;
|
|
397
422
|
localized?: boolean | undefined;
|
|
@@ -419,6 +444,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
419
444
|
} | {
|
|
420
445
|
options?: {
|
|
421
446
|
allowMultiple?: boolean | undefined;
|
|
447
|
+
taxonomyName?: string | undefined;
|
|
448
|
+
maxSelections?: number | undefined;
|
|
449
|
+
depth?: number | undefined;
|
|
422
450
|
} | undefined;
|
|
423
451
|
searchable?: boolean | undefined;
|
|
424
452
|
localized?: boolean | undefined;
|
|
@@ -443,6 +471,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
443
471
|
} | {
|
|
444
472
|
options?: {
|
|
445
473
|
multiple?: boolean | undefined;
|
|
474
|
+
maxItems?: number | undefined;
|
|
446
475
|
allowedContentTypes?: string[] | undefined;
|
|
447
476
|
minItems?: number | undefined;
|
|
448
477
|
} | undefined;
|
|
@@ -460,6 +489,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
460
489
|
label: string;
|
|
461
490
|
value: string;
|
|
462
491
|
}[] | undefined;
|
|
492
|
+
maxSelections?: number | undefined;
|
|
493
|
+
minSelections?: number | undefined;
|
|
463
494
|
} | undefined;
|
|
464
495
|
searchable?: boolean | undefined;
|
|
465
496
|
localized?: boolean | undefined;
|
|
@@ -471,6 +502,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
471
502
|
label: string;
|
|
472
503
|
} | {
|
|
473
504
|
options?: {
|
|
505
|
+
format?: string | undefined;
|
|
474
506
|
min?: number | undefined;
|
|
475
507
|
max?: number | undefined;
|
|
476
508
|
} | undefined;
|
|
@@ -484,8 +516,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
484
516
|
label: string;
|
|
485
517
|
} | {
|
|
486
518
|
options?: {
|
|
519
|
+
format?: string | undefined;
|
|
487
520
|
min?: number | undefined;
|
|
488
521
|
max?: number | undefined;
|
|
522
|
+
timezone?: string | undefined;
|
|
489
523
|
} | undefined;
|
|
490
524
|
searchable?: boolean | undefined;
|
|
491
525
|
localized?: boolean | undefined;
|
|
@@ -532,6 +566,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
532
566
|
minLength?: number | undefined;
|
|
533
567
|
maxLength?: number | undefined;
|
|
534
568
|
pattern?: string | undefined;
|
|
569
|
+
patternMessage?: string | undefined;
|
|
570
|
+
placeholder?: string | undefined;
|
|
571
|
+
multiline?: boolean | undefined;
|
|
535
572
|
} | undefined;
|
|
536
573
|
searchable?: boolean | undefined;
|
|
537
574
|
localized?: boolean | undefined;
|
|
@@ -547,6 +584,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
547
584
|
max?: number | undefined;
|
|
548
585
|
step?: number | undefined;
|
|
549
586
|
precision?: number | undefined;
|
|
587
|
+
prefix?: string | undefined;
|
|
588
|
+
suffix?: string | undefined;
|
|
550
589
|
} | undefined;
|
|
551
590
|
searchable?: boolean | undefined;
|
|
552
591
|
localized?: boolean | undefined;
|
|
@@ -571,6 +610,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
571
610
|
label: string;
|
|
572
611
|
} | {
|
|
573
612
|
options?: {
|
|
613
|
+
maxLength?: number | undefined;
|
|
614
|
+
placeholder?: string | undefined;
|
|
574
615
|
allowedBlocks?: string[] | undefined;
|
|
575
616
|
allowedMarks?: string[] | undefined;
|
|
576
617
|
} | undefined;
|
|
@@ -588,6 +629,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
588
629
|
allowedMimeTypes?: string[] | undefined;
|
|
589
630
|
maxFileSize?: number | undefined;
|
|
590
631
|
multiple?: boolean | undefined;
|
|
632
|
+
maxItems?: number | undefined;
|
|
591
633
|
} | undefined;
|
|
592
634
|
searchable?: boolean | undefined;
|
|
593
635
|
localized?: boolean | undefined;
|
|
@@ -615,6 +657,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
615
657
|
} | {
|
|
616
658
|
options?: {
|
|
617
659
|
allowMultiple?: boolean | undefined;
|
|
660
|
+
taxonomyName?: string | undefined;
|
|
661
|
+
maxSelections?: number | undefined;
|
|
662
|
+
depth?: number | undefined;
|
|
618
663
|
} | undefined;
|
|
619
664
|
searchable?: boolean | undefined;
|
|
620
665
|
localized?: boolean | undefined;
|
|
@@ -639,6 +684,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
639
684
|
} | {
|
|
640
685
|
options?: {
|
|
641
686
|
multiple?: boolean | undefined;
|
|
687
|
+
maxItems?: number | undefined;
|
|
642
688
|
allowedContentTypes?: string[] | undefined;
|
|
643
689
|
minItems?: number | undefined;
|
|
644
690
|
} | undefined;
|
|
@@ -656,6 +702,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
656
702
|
label: string;
|
|
657
703
|
value: string;
|
|
658
704
|
}[] | undefined;
|
|
705
|
+
maxSelections?: number | undefined;
|
|
706
|
+
minSelections?: number | undefined;
|
|
659
707
|
} | undefined;
|
|
660
708
|
searchable?: boolean | undefined;
|
|
661
709
|
localized?: boolean | undefined;
|
|
@@ -667,6 +715,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
667
715
|
label: string;
|
|
668
716
|
} | {
|
|
669
717
|
options?: {
|
|
718
|
+
format?: string | undefined;
|
|
670
719
|
min?: number | undefined;
|
|
671
720
|
max?: number | undefined;
|
|
672
721
|
} | undefined;
|
|
@@ -680,8 +729,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
680
729
|
label: string;
|
|
681
730
|
} | {
|
|
682
731
|
options?: {
|
|
732
|
+
format?: string | undefined;
|
|
683
733
|
min?: number | undefined;
|
|
684
734
|
max?: number | undefined;
|
|
735
|
+
timezone?: string | undefined;
|
|
685
736
|
} | undefined;
|
|
686
737
|
searchable?: boolean | undefined;
|
|
687
738
|
localized?: boolean | undefined;
|
|
@@ -725,7 +776,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
725
776
|
options?: {
|
|
726
777
|
maxLength?: number;
|
|
727
778
|
minLength?: number;
|
|
779
|
+
multiline?: boolean;
|
|
728
780
|
pattern?: string;
|
|
781
|
+
patternMessage?: string;
|
|
782
|
+
placeholder?: string;
|
|
729
783
|
};
|
|
730
784
|
required: boolean;
|
|
731
785
|
searchable?: boolean;
|
|
@@ -740,7 +794,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
740
794
|
max?: number;
|
|
741
795
|
min?: number;
|
|
742
796
|
precision?: number;
|
|
797
|
+
prefix?: string;
|
|
743
798
|
step?: number;
|
|
799
|
+
suffix?: string;
|
|
744
800
|
};
|
|
745
801
|
required: boolean;
|
|
746
802
|
searchable?: boolean;
|
|
@@ -767,6 +823,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
767
823
|
options?: {
|
|
768
824
|
allowedBlocks?: Array<string>;
|
|
769
825
|
allowedMarks?: Array<string>;
|
|
826
|
+
maxLength?: number;
|
|
827
|
+
placeholder?: string;
|
|
770
828
|
};
|
|
771
829
|
required: boolean;
|
|
772
830
|
searchable?: boolean;
|
|
@@ -780,6 +838,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
780
838
|
options?: {
|
|
781
839
|
allowedMimeTypes?: Array<string>;
|
|
782
840
|
maxFileSize?: number;
|
|
841
|
+
maxItems?: number;
|
|
783
842
|
mediaType?: "image" | "video" | "audio" | "document" | "other";
|
|
784
843
|
multiple?: boolean;
|
|
785
844
|
};
|
|
@@ -808,6 +867,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
808
867
|
localized?: boolean;
|
|
809
868
|
name: string;
|
|
810
869
|
options?: {
|
|
870
|
+
maxSelections?: number;
|
|
871
|
+
minSelections?: number;
|
|
811
872
|
options?: Array<{
|
|
812
873
|
label: string;
|
|
813
874
|
value: string;
|
|
@@ -839,6 +900,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
839
900
|
name: string;
|
|
840
901
|
options?: {
|
|
841
902
|
allowMultiple?: boolean;
|
|
903
|
+
depth?: number;
|
|
904
|
+
maxSelections?: number;
|
|
905
|
+
taxonomyName?: string;
|
|
842
906
|
};
|
|
843
907
|
required: boolean;
|
|
844
908
|
searchable?: boolean;
|
|
@@ -862,6 +926,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
862
926
|
localized?: boolean;
|
|
863
927
|
name: string;
|
|
864
928
|
options?: {
|
|
929
|
+
format?: string;
|
|
865
930
|
max?: number;
|
|
866
931
|
min?: number;
|
|
867
932
|
};
|
|
@@ -875,8 +940,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
875
940
|
localized?: boolean;
|
|
876
941
|
name: string;
|
|
877
942
|
options?: {
|
|
943
|
+
format?: string;
|
|
878
944
|
max?: number;
|
|
879
945
|
min?: number;
|
|
946
|
+
timezone?: string;
|
|
880
947
|
};
|
|
881
948
|
required: boolean;
|
|
882
949
|
searchable?: boolean;
|
|
@@ -889,6 +956,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
889
956
|
name: string;
|
|
890
957
|
options?: {
|
|
891
958
|
allowedContentTypes?: Array<string>;
|
|
959
|
+
maxItems?: number;
|
|
892
960
|
minItems?: number;
|
|
893
961
|
multiple?: boolean;
|
|
894
962
|
};
|
|
@@ -911,6 +979,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
911
979
|
minLength?: number | undefined;
|
|
912
980
|
maxLength?: number | undefined;
|
|
913
981
|
pattern?: string | undefined;
|
|
982
|
+
patternMessage?: string | undefined;
|
|
983
|
+
placeholder?: string | undefined;
|
|
984
|
+
multiline?: boolean | undefined;
|
|
914
985
|
} | undefined;
|
|
915
986
|
searchable?: boolean | undefined;
|
|
916
987
|
localized?: boolean | undefined;
|
|
@@ -926,6 +997,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
926
997
|
max?: number | undefined;
|
|
927
998
|
step?: number | undefined;
|
|
928
999
|
precision?: number | undefined;
|
|
1000
|
+
prefix?: string | undefined;
|
|
1001
|
+
suffix?: string | undefined;
|
|
929
1002
|
} | undefined;
|
|
930
1003
|
searchable?: boolean | undefined;
|
|
931
1004
|
localized?: boolean | undefined;
|
|
@@ -950,6 +1023,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
950
1023
|
label: string;
|
|
951
1024
|
} | {
|
|
952
1025
|
options?: {
|
|
1026
|
+
maxLength?: number | undefined;
|
|
1027
|
+
placeholder?: string | undefined;
|
|
953
1028
|
allowedBlocks?: string[] | undefined;
|
|
954
1029
|
allowedMarks?: string[] | undefined;
|
|
955
1030
|
} | undefined;
|
|
@@ -967,6 +1042,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
967
1042
|
allowedMimeTypes?: string[] | undefined;
|
|
968
1043
|
maxFileSize?: number | undefined;
|
|
969
1044
|
multiple?: boolean | undefined;
|
|
1045
|
+
maxItems?: number | undefined;
|
|
970
1046
|
} | undefined;
|
|
971
1047
|
searchable?: boolean | undefined;
|
|
972
1048
|
localized?: boolean | undefined;
|
|
@@ -994,6 +1070,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
994
1070
|
} | {
|
|
995
1071
|
options?: {
|
|
996
1072
|
allowMultiple?: boolean | undefined;
|
|
1073
|
+
taxonomyName?: string | undefined;
|
|
1074
|
+
maxSelections?: number | undefined;
|
|
1075
|
+
depth?: number | undefined;
|
|
997
1076
|
} | undefined;
|
|
998
1077
|
searchable?: boolean | undefined;
|
|
999
1078
|
localized?: boolean | undefined;
|
|
@@ -1018,6 +1097,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1018
1097
|
} | {
|
|
1019
1098
|
options?: {
|
|
1020
1099
|
multiple?: boolean | undefined;
|
|
1100
|
+
maxItems?: number | undefined;
|
|
1021
1101
|
allowedContentTypes?: string[] | undefined;
|
|
1022
1102
|
minItems?: number | undefined;
|
|
1023
1103
|
} | undefined;
|
|
@@ -1035,6 +1115,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1035
1115
|
label: string;
|
|
1036
1116
|
value: string;
|
|
1037
1117
|
}[] | undefined;
|
|
1118
|
+
maxSelections?: number | undefined;
|
|
1119
|
+
minSelections?: number | undefined;
|
|
1038
1120
|
} | undefined;
|
|
1039
1121
|
searchable?: boolean | undefined;
|
|
1040
1122
|
localized?: boolean | undefined;
|
|
@@ -1046,6 +1128,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1046
1128
|
label: string;
|
|
1047
1129
|
} | {
|
|
1048
1130
|
options?: {
|
|
1131
|
+
format?: string | undefined;
|
|
1049
1132
|
min?: number | undefined;
|
|
1050
1133
|
max?: number | undefined;
|
|
1051
1134
|
} | undefined;
|
|
@@ -1059,8 +1142,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1059
1142
|
label: string;
|
|
1060
1143
|
} | {
|
|
1061
1144
|
options?: {
|
|
1145
|
+
format?: string | undefined;
|
|
1062
1146
|
min?: number | undefined;
|
|
1063
1147
|
max?: number | undefined;
|
|
1148
|
+
timezone?: string | undefined;
|
|
1064
1149
|
} | undefined;
|
|
1065
1150
|
searchable?: boolean | undefined;
|
|
1066
1151
|
localized?: boolean | undefined;
|
|
@@ -1119,7 +1204,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1119
1204
|
options?: {
|
|
1120
1205
|
maxLength?: number;
|
|
1121
1206
|
minLength?: number;
|
|
1207
|
+
multiline?: boolean;
|
|
1122
1208
|
pattern?: string;
|
|
1209
|
+
patternMessage?: string;
|
|
1210
|
+
placeholder?: string;
|
|
1123
1211
|
};
|
|
1124
1212
|
required: boolean;
|
|
1125
1213
|
searchable?: boolean;
|
|
@@ -1134,7 +1222,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1134
1222
|
max?: number;
|
|
1135
1223
|
min?: number;
|
|
1136
1224
|
precision?: number;
|
|
1225
|
+
prefix?: string;
|
|
1137
1226
|
step?: number;
|
|
1227
|
+
suffix?: string;
|
|
1138
1228
|
};
|
|
1139
1229
|
required: boolean;
|
|
1140
1230
|
searchable?: boolean;
|
|
@@ -1161,6 +1251,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1161
1251
|
options?: {
|
|
1162
1252
|
allowedBlocks?: Array<string>;
|
|
1163
1253
|
allowedMarks?: Array<string>;
|
|
1254
|
+
maxLength?: number;
|
|
1255
|
+
placeholder?: string;
|
|
1164
1256
|
};
|
|
1165
1257
|
required: boolean;
|
|
1166
1258
|
searchable?: boolean;
|
|
@@ -1174,6 +1266,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1174
1266
|
options?: {
|
|
1175
1267
|
allowedMimeTypes?: Array<string>;
|
|
1176
1268
|
maxFileSize?: number;
|
|
1269
|
+
maxItems?: number;
|
|
1177
1270
|
mediaType?: "image" | "video" | "audio" | "document" | "other";
|
|
1178
1271
|
multiple?: boolean;
|
|
1179
1272
|
};
|
|
@@ -1202,6 +1295,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1202
1295
|
localized?: boolean;
|
|
1203
1296
|
name: string;
|
|
1204
1297
|
options?: {
|
|
1298
|
+
maxSelections?: number;
|
|
1299
|
+
minSelections?: number;
|
|
1205
1300
|
options?: Array<{
|
|
1206
1301
|
label: string;
|
|
1207
1302
|
value: string;
|
|
@@ -1233,6 +1328,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1233
1328
|
name: string;
|
|
1234
1329
|
options?: {
|
|
1235
1330
|
allowMultiple?: boolean;
|
|
1331
|
+
depth?: number;
|
|
1332
|
+
maxSelections?: number;
|
|
1333
|
+
taxonomyName?: string;
|
|
1236
1334
|
};
|
|
1237
1335
|
required: boolean;
|
|
1238
1336
|
searchable?: boolean;
|
|
@@ -1256,6 +1354,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1256
1354
|
localized?: boolean;
|
|
1257
1355
|
name: string;
|
|
1258
1356
|
options?: {
|
|
1357
|
+
format?: string;
|
|
1259
1358
|
max?: number;
|
|
1260
1359
|
min?: number;
|
|
1261
1360
|
};
|
|
@@ -1269,8 +1368,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1269
1368
|
localized?: boolean;
|
|
1270
1369
|
name: string;
|
|
1271
1370
|
options?: {
|
|
1371
|
+
format?: string;
|
|
1272
1372
|
max?: number;
|
|
1273
1373
|
min?: number;
|
|
1374
|
+
timezone?: string;
|
|
1274
1375
|
};
|
|
1275
1376
|
required: boolean;
|
|
1276
1377
|
searchable?: boolean;
|
|
@@ -1283,6 +1384,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
1283
1384
|
name: string;
|
|
1284
1385
|
options?: {
|
|
1285
1386
|
allowedContentTypes?: Array<string>;
|
|
1387
|
+
maxItems?: number;
|
|
1286
1388
|
minItems?: number;
|
|
1287
1389
|
multiple?: boolean;
|
|
1288
1390
|
};
|
|
@@ -3429,6 +3531,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3429
3531
|
minLength?: number | undefined;
|
|
3430
3532
|
maxLength?: number | undefined;
|
|
3431
3533
|
pattern?: string | undefined;
|
|
3534
|
+
patternMessage?: string | undefined;
|
|
3535
|
+
placeholder?: string | undefined;
|
|
3536
|
+
multiline?: boolean | undefined;
|
|
3432
3537
|
} | undefined;
|
|
3433
3538
|
searchable?: boolean | undefined;
|
|
3434
3539
|
localized?: boolean | undefined;
|
|
@@ -3444,6 +3549,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3444
3549
|
max?: number | undefined;
|
|
3445
3550
|
step?: number | undefined;
|
|
3446
3551
|
precision?: number | undefined;
|
|
3552
|
+
prefix?: string | undefined;
|
|
3553
|
+
suffix?: string | undefined;
|
|
3447
3554
|
} | undefined;
|
|
3448
3555
|
searchable?: boolean | undefined;
|
|
3449
3556
|
localized?: boolean | undefined;
|
|
@@ -3468,6 +3575,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3468
3575
|
label: string;
|
|
3469
3576
|
} | {
|
|
3470
3577
|
options?: {
|
|
3578
|
+
maxLength?: number | undefined;
|
|
3579
|
+
placeholder?: string | undefined;
|
|
3471
3580
|
allowedBlocks?: string[] | undefined;
|
|
3472
3581
|
allowedMarks?: string[] | undefined;
|
|
3473
3582
|
} | undefined;
|
|
@@ -3485,6 +3594,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3485
3594
|
allowedMimeTypes?: string[] | undefined;
|
|
3486
3595
|
maxFileSize?: number | undefined;
|
|
3487
3596
|
multiple?: boolean | undefined;
|
|
3597
|
+
maxItems?: number | undefined;
|
|
3488
3598
|
} | undefined;
|
|
3489
3599
|
searchable?: boolean | undefined;
|
|
3490
3600
|
localized?: boolean | undefined;
|
|
@@ -3512,6 +3622,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3512
3622
|
} | {
|
|
3513
3623
|
options?: {
|
|
3514
3624
|
allowMultiple?: boolean | undefined;
|
|
3625
|
+
taxonomyName?: string | undefined;
|
|
3626
|
+
maxSelections?: number | undefined;
|
|
3627
|
+
depth?: number | undefined;
|
|
3515
3628
|
} | undefined;
|
|
3516
3629
|
searchable?: boolean | undefined;
|
|
3517
3630
|
localized?: boolean | undefined;
|
|
@@ -3536,6 +3649,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3536
3649
|
} | {
|
|
3537
3650
|
options?: {
|
|
3538
3651
|
multiple?: boolean | undefined;
|
|
3652
|
+
maxItems?: number | undefined;
|
|
3539
3653
|
allowedContentTypes?: string[] | undefined;
|
|
3540
3654
|
minItems?: number | undefined;
|
|
3541
3655
|
} | undefined;
|
|
@@ -3553,6 +3667,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3553
3667
|
label: string;
|
|
3554
3668
|
value: string;
|
|
3555
3669
|
}[] | undefined;
|
|
3670
|
+
maxSelections?: number | undefined;
|
|
3671
|
+
minSelections?: number | undefined;
|
|
3556
3672
|
} | undefined;
|
|
3557
3673
|
searchable?: boolean | undefined;
|
|
3558
3674
|
localized?: boolean | undefined;
|
|
@@ -3564,6 +3680,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3564
3680
|
label: string;
|
|
3565
3681
|
} | {
|
|
3566
3682
|
options?: {
|
|
3683
|
+
format?: string | undefined;
|
|
3567
3684
|
min?: number | undefined;
|
|
3568
3685
|
max?: number | undefined;
|
|
3569
3686
|
} | undefined;
|
|
@@ -3577,8 +3694,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3577
3694
|
label: string;
|
|
3578
3695
|
} | {
|
|
3579
3696
|
options?: {
|
|
3697
|
+
format?: string | undefined;
|
|
3580
3698
|
min?: number | undefined;
|
|
3581
3699
|
max?: number | undefined;
|
|
3700
|
+
timezone?: string | undefined;
|
|
3582
3701
|
} | undefined;
|
|
3583
3702
|
searchable?: boolean | undefined;
|
|
3584
3703
|
localized?: boolean | undefined;
|
|
@@ -3632,6 +3751,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3632
3751
|
minLength?: number | undefined;
|
|
3633
3752
|
maxLength?: number | undefined;
|
|
3634
3753
|
pattern?: string | undefined;
|
|
3754
|
+
patternMessage?: string | undefined;
|
|
3755
|
+
placeholder?: string | undefined;
|
|
3756
|
+
multiline?: boolean | undefined;
|
|
3635
3757
|
} | undefined;
|
|
3636
3758
|
searchable?: boolean | undefined;
|
|
3637
3759
|
localized?: boolean | undefined;
|
|
@@ -3647,6 +3769,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3647
3769
|
max?: number | undefined;
|
|
3648
3770
|
step?: number | undefined;
|
|
3649
3771
|
precision?: number | undefined;
|
|
3772
|
+
prefix?: string | undefined;
|
|
3773
|
+
suffix?: string | undefined;
|
|
3650
3774
|
} | undefined;
|
|
3651
3775
|
searchable?: boolean | undefined;
|
|
3652
3776
|
localized?: boolean | undefined;
|
|
@@ -3671,6 +3795,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3671
3795
|
label: string;
|
|
3672
3796
|
} | {
|
|
3673
3797
|
options?: {
|
|
3798
|
+
maxLength?: number | undefined;
|
|
3799
|
+
placeholder?: string | undefined;
|
|
3674
3800
|
allowedBlocks?: string[] | undefined;
|
|
3675
3801
|
allowedMarks?: string[] | undefined;
|
|
3676
3802
|
} | undefined;
|
|
@@ -3688,6 +3814,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3688
3814
|
allowedMimeTypes?: string[] | undefined;
|
|
3689
3815
|
maxFileSize?: number | undefined;
|
|
3690
3816
|
multiple?: boolean | undefined;
|
|
3817
|
+
maxItems?: number | undefined;
|
|
3691
3818
|
} | undefined;
|
|
3692
3819
|
searchable?: boolean | undefined;
|
|
3693
3820
|
localized?: boolean | undefined;
|
|
@@ -3715,6 +3842,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3715
3842
|
} | {
|
|
3716
3843
|
options?: {
|
|
3717
3844
|
allowMultiple?: boolean | undefined;
|
|
3845
|
+
taxonomyName?: string | undefined;
|
|
3846
|
+
maxSelections?: number | undefined;
|
|
3847
|
+
depth?: number | undefined;
|
|
3718
3848
|
} | undefined;
|
|
3719
3849
|
searchable?: boolean | undefined;
|
|
3720
3850
|
localized?: boolean | undefined;
|
|
@@ -3739,6 +3869,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3739
3869
|
} | {
|
|
3740
3870
|
options?: {
|
|
3741
3871
|
multiple?: boolean | undefined;
|
|
3872
|
+
maxItems?: number | undefined;
|
|
3742
3873
|
allowedContentTypes?: string[] | undefined;
|
|
3743
3874
|
minItems?: number | undefined;
|
|
3744
3875
|
} | undefined;
|
|
@@ -3756,6 +3887,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3756
3887
|
label: string;
|
|
3757
3888
|
value: string;
|
|
3758
3889
|
}[] | undefined;
|
|
3890
|
+
maxSelections?: number | undefined;
|
|
3891
|
+
minSelections?: number | undefined;
|
|
3759
3892
|
} | undefined;
|
|
3760
3893
|
searchable?: boolean | undefined;
|
|
3761
3894
|
localized?: boolean | undefined;
|
|
@@ -3767,6 +3900,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3767
3900
|
label: string;
|
|
3768
3901
|
} | {
|
|
3769
3902
|
options?: {
|
|
3903
|
+
format?: string | undefined;
|
|
3770
3904
|
min?: number | undefined;
|
|
3771
3905
|
max?: number | undefined;
|
|
3772
3906
|
} | undefined;
|
|
@@ -3780,8 +3914,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3780
3914
|
label: string;
|
|
3781
3915
|
} | {
|
|
3782
3916
|
options?: {
|
|
3917
|
+
format?: string | undefined;
|
|
3783
3918
|
min?: number | undefined;
|
|
3784
3919
|
max?: number | undefined;
|
|
3920
|
+
timezone?: string | undefined;
|
|
3785
3921
|
} | undefined;
|
|
3786
3922
|
searchable?: boolean | undefined;
|
|
3787
3923
|
localized?: boolean | undefined;
|
|
@@ -3828,6 +3964,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3828
3964
|
minLength?: number | undefined;
|
|
3829
3965
|
maxLength?: number | undefined;
|
|
3830
3966
|
pattern?: string | undefined;
|
|
3967
|
+
patternMessage?: string | undefined;
|
|
3968
|
+
placeholder?: string | undefined;
|
|
3969
|
+
multiline?: boolean | undefined;
|
|
3831
3970
|
} | undefined;
|
|
3832
3971
|
searchable?: boolean | undefined;
|
|
3833
3972
|
localized?: boolean | undefined;
|
|
@@ -3843,6 +3982,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3843
3982
|
max?: number | undefined;
|
|
3844
3983
|
step?: number | undefined;
|
|
3845
3984
|
precision?: number | undefined;
|
|
3985
|
+
prefix?: string | undefined;
|
|
3986
|
+
suffix?: string | undefined;
|
|
3846
3987
|
} | undefined;
|
|
3847
3988
|
searchable?: boolean | undefined;
|
|
3848
3989
|
localized?: boolean | undefined;
|
|
@@ -3867,6 +4008,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3867
4008
|
label: string;
|
|
3868
4009
|
} | {
|
|
3869
4010
|
options?: {
|
|
4011
|
+
maxLength?: number | undefined;
|
|
4012
|
+
placeholder?: string | undefined;
|
|
3870
4013
|
allowedBlocks?: string[] | undefined;
|
|
3871
4014
|
allowedMarks?: string[] | undefined;
|
|
3872
4015
|
} | undefined;
|
|
@@ -3884,6 +4027,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3884
4027
|
allowedMimeTypes?: string[] | undefined;
|
|
3885
4028
|
maxFileSize?: number | undefined;
|
|
3886
4029
|
multiple?: boolean | undefined;
|
|
4030
|
+
maxItems?: number | undefined;
|
|
3887
4031
|
} | undefined;
|
|
3888
4032
|
searchable?: boolean | undefined;
|
|
3889
4033
|
localized?: boolean | undefined;
|
|
@@ -3911,6 +4055,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3911
4055
|
} | {
|
|
3912
4056
|
options?: {
|
|
3913
4057
|
allowMultiple?: boolean | undefined;
|
|
4058
|
+
taxonomyName?: string | undefined;
|
|
4059
|
+
maxSelections?: number | undefined;
|
|
4060
|
+
depth?: number | undefined;
|
|
3914
4061
|
} | undefined;
|
|
3915
4062
|
searchable?: boolean | undefined;
|
|
3916
4063
|
localized?: boolean | undefined;
|
|
@@ -3935,6 +4082,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3935
4082
|
} | {
|
|
3936
4083
|
options?: {
|
|
3937
4084
|
multiple?: boolean | undefined;
|
|
4085
|
+
maxItems?: number | undefined;
|
|
3938
4086
|
allowedContentTypes?: string[] | undefined;
|
|
3939
4087
|
minItems?: number | undefined;
|
|
3940
4088
|
} | undefined;
|
|
@@ -3952,6 +4100,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3952
4100
|
label: string;
|
|
3953
4101
|
value: string;
|
|
3954
4102
|
}[] | undefined;
|
|
4103
|
+
maxSelections?: number | undefined;
|
|
4104
|
+
minSelections?: number | undefined;
|
|
3955
4105
|
} | undefined;
|
|
3956
4106
|
searchable?: boolean | undefined;
|
|
3957
4107
|
localized?: boolean | undefined;
|
|
@@ -3963,6 +4113,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3963
4113
|
label: string;
|
|
3964
4114
|
} | {
|
|
3965
4115
|
options?: {
|
|
4116
|
+
format?: string | undefined;
|
|
3966
4117
|
min?: number | undefined;
|
|
3967
4118
|
max?: number | undefined;
|
|
3968
4119
|
} | undefined;
|
|
@@ -3976,8 +4127,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
3976
4127
|
label: string;
|
|
3977
4128
|
} | {
|
|
3978
4129
|
options?: {
|
|
4130
|
+
format?: string | undefined;
|
|
3979
4131
|
min?: number | undefined;
|
|
3980
4132
|
max?: number | undefined;
|
|
4133
|
+
timezone?: string | undefined;
|
|
3981
4134
|
} | undefined;
|
|
3982
4135
|
searchable?: boolean | undefined;
|
|
3983
4136
|
localized?: boolean | undefined;
|
|
@@ -4021,7 +4174,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4021
4174
|
options?: {
|
|
4022
4175
|
maxLength?: number;
|
|
4023
4176
|
minLength?: number;
|
|
4177
|
+
multiline?: boolean;
|
|
4024
4178
|
pattern?: string;
|
|
4179
|
+
patternMessage?: string;
|
|
4180
|
+
placeholder?: string;
|
|
4025
4181
|
};
|
|
4026
4182
|
required: boolean;
|
|
4027
4183
|
searchable?: boolean;
|
|
@@ -4036,7 +4192,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4036
4192
|
max?: number;
|
|
4037
4193
|
min?: number;
|
|
4038
4194
|
precision?: number;
|
|
4195
|
+
prefix?: string;
|
|
4039
4196
|
step?: number;
|
|
4197
|
+
suffix?: string;
|
|
4040
4198
|
};
|
|
4041
4199
|
required: boolean;
|
|
4042
4200
|
searchable?: boolean;
|
|
@@ -4063,6 +4221,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4063
4221
|
options?: {
|
|
4064
4222
|
allowedBlocks?: Array<string>;
|
|
4065
4223
|
allowedMarks?: Array<string>;
|
|
4224
|
+
maxLength?: number;
|
|
4225
|
+
placeholder?: string;
|
|
4066
4226
|
};
|
|
4067
4227
|
required: boolean;
|
|
4068
4228
|
searchable?: boolean;
|
|
@@ -4076,6 +4236,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4076
4236
|
options?: {
|
|
4077
4237
|
allowedMimeTypes?: Array<string>;
|
|
4078
4238
|
maxFileSize?: number;
|
|
4239
|
+
maxItems?: number;
|
|
4079
4240
|
mediaType?: "image" | "video" | "audio" | "document" | "other";
|
|
4080
4241
|
multiple?: boolean;
|
|
4081
4242
|
};
|
|
@@ -4104,6 +4265,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4104
4265
|
localized?: boolean;
|
|
4105
4266
|
name: string;
|
|
4106
4267
|
options?: {
|
|
4268
|
+
maxSelections?: number;
|
|
4269
|
+
minSelections?: number;
|
|
4107
4270
|
options?: Array<{
|
|
4108
4271
|
label: string;
|
|
4109
4272
|
value: string;
|
|
@@ -4135,6 +4298,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4135
4298
|
name: string;
|
|
4136
4299
|
options?: {
|
|
4137
4300
|
allowMultiple?: boolean;
|
|
4301
|
+
depth?: number;
|
|
4302
|
+
maxSelections?: number;
|
|
4303
|
+
taxonomyName?: string;
|
|
4138
4304
|
};
|
|
4139
4305
|
required: boolean;
|
|
4140
4306
|
searchable?: boolean;
|
|
@@ -4158,6 +4324,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4158
4324
|
localized?: boolean;
|
|
4159
4325
|
name: string;
|
|
4160
4326
|
options?: {
|
|
4327
|
+
format?: string;
|
|
4161
4328
|
max?: number;
|
|
4162
4329
|
min?: number;
|
|
4163
4330
|
};
|
|
@@ -4171,8 +4338,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4171
4338
|
localized?: boolean;
|
|
4172
4339
|
name: string;
|
|
4173
4340
|
options?: {
|
|
4341
|
+
format?: string;
|
|
4174
4342
|
max?: number;
|
|
4175
4343
|
min?: number;
|
|
4344
|
+
timezone?: string;
|
|
4176
4345
|
};
|
|
4177
4346
|
required: boolean;
|
|
4178
4347
|
searchable?: boolean;
|
|
@@ -4185,6 +4354,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4185
4354
|
name: string;
|
|
4186
4355
|
options?: {
|
|
4187
4356
|
allowedContentTypes?: Array<string>;
|
|
4357
|
+
maxItems?: number;
|
|
4188
4358
|
minItems?: number;
|
|
4189
4359
|
multiple?: boolean;
|
|
4190
4360
|
};
|
|
@@ -4207,6 +4377,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4207
4377
|
minLength?: number | undefined;
|
|
4208
4378
|
maxLength?: number | undefined;
|
|
4209
4379
|
pattern?: string | undefined;
|
|
4380
|
+
patternMessage?: string | undefined;
|
|
4381
|
+
placeholder?: string | undefined;
|
|
4382
|
+
multiline?: boolean | undefined;
|
|
4210
4383
|
} | undefined;
|
|
4211
4384
|
searchable?: boolean | undefined;
|
|
4212
4385
|
localized?: boolean | undefined;
|
|
@@ -4222,6 +4395,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4222
4395
|
max?: number | undefined;
|
|
4223
4396
|
step?: number | undefined;
|
|
4224
4397
|
precision?: number | undefined;
|
|
4398
|
+
prefix?: string | undefined;
|
|
4399
|
+
suffix?: string | undefined;
|
|
4225
4400
|
} | undefined;
|
|
4226
4401
|
searchable?: boolean | undefined;
|
|
4227
4402
|
localized?: boolean | undefined;
|
|
@@ -4246,6 +4421,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4246
4421
|
label: string;
|
|
4247
4422
|
} | {
|
|
4248
4423
|
options?: {
|
|
4424
|
+
maxLength?: number | undefined;
|
|
4425
|
+
placeholder?: string | undefined;
|
|
4249
4426
|
allowedBlocks?: string[] | undefined;
|
|
4250
4427
|
allowedMarks?: string[] | undefined;
|
|
4251
4428
|
} | undefined;
|
|
@@ -4263,6 +4440,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4263
4440
|
allowedMimeTypes?: string[] | undefined;
|
|
4264
4441
|
maxFileSize?: number | undefined;
|
|
4265
4442
|
multiple?: boolean | undefined;
|
|
4443
|
+
maxItems?: number | undefined;
|
|
4266
4444
|
} | undefined;
|
|
4267
4445
|
searchable?: boolean | undefined;
|
|
4268
4446
|
localized?: boolean | undefined;
|
|
@@ -4290,6 +4468,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4290
4468
|
} | {
|
|
4291
4469
|
options?: {
|
|
4292
4470
|
allowMultiple?: boolean | undefined;
|
|
4471
|
+
taxonomyName?: string | undefined;
|
|
4472
|
+
maxSelections?: number | undefined;
|
|
4473
|
+
depth?: number | undefined;
|
|
4293
4474
|
} | undefined;
|
|
4294
4475
|
searchable?: boolean | undefined;
|
|
4295
4476
|
localized?: boolean | undefined;
|
|
@@ -4314,6 +4495,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4314
4495
|
} | {
|
|
4315
4496
|
options?: {
|
|
4316
4497
|
multiple?: boolean | undefined;
|
|
4498
|
+
maxItems?: number | undefined;
|
|
4317
4499
|
allowedContentTypes?: string[] | undefined;
|
|
4318
4500
|
minItems?: number | undefined;
|
|
4319
4501
|
} | undefined;
|
|
@@ -4331,6 +4513,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4331
4513
|
label: string;
|
|
4332
4514
|
value: string;
|
|
4333
4515
|
}[] | undefined;
|
|
4516
|
+
maxSelections?: number | undefined;
|
|
4517
|
+
minSelections?: number | undefined;
|
|
4334
4518
|
} | undefined;
|
|
4335
4519
|
searchable?: boolean | undefined;
|
|
4336
4520
|
localized?: boolean | undefined;
|
|
@@ -4342,6 +4526,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4342
4526
|
label: string;
|
|
4343
4527
|
} | {
|
|
4344
4528
|
options?: {
|
|
4529
|
+
format?: string | undefined;
|
|
4345
4530
|
min?: number | undefined;
|
|
4346
4531
|
max?: number | undefined;
|
|
4347
4532
|
} | undefined;
|
|
@@ -4355,8 +4540,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4355
4540
|
label: string;
|
|
4356
4541
|
} | {
|
|
4357
4542
|
options?: {
|
|
4543
|
+
format?: string | undefined;
|
|
4358
4544
|
min?: number | undefined;
|
|
4359
4545
|
max?: number | undefined;
|
|
4546
|
+
timezone?: string | undefined;
|
|
4360
4547
|
} | undefined;
|
|
4361
4548
|
searchable?: boolean | undefined;
|
|
4362
4549
|
localized?: boolean | undefined;
|
|
@@ -4415,7 +4602,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4415
4602
|
options?: {
|
|
4416
4603
|
maxLength?: number;
|
|
4417
4604
|
minLength?: number;
|
|
4605
|
+
multiline?: boolean;
|
|
4418
4606
|
pattern?: string;
|
|
4607
|
+
patternMessage?: string;
|
|
4608
|
+
placeholder?: string;
|
|
4419
4609
|
};
|
|
4420
4610
|
required: boolean;
|
|
4421
4611
|
searchable?: boolean;
|
|
@@ -4430,7 +4620,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4430
4620
|
max?: number;
|
|
4431
4621
|
min?: number;
|
|
4432
4622
|
precision?: number;
|
|
4623
|
+
prefix?: string;
|
|
4433
4624
|
step?: number;
|
|
4625
|
+
suffix?: string;
|
|
4434
4626
|
};
|
|
4435
4627
|
required: boolean;
|
|
4436
4628
|
searchable?: boolean;
|
|
@@ -4457,6 +4649,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4457
4649
|
options?: {
|
|
4458
4650
|
allowedBlocks?: Array<string>;
|
|
4459
4651
|
allowedMarks?: Array<string>;
|
|
4652
|
+
maxLength?: number;
|
|
4653
|
+
placeholder?: string;
|
|
4460
4654
|
};
|
|
4461
4655
|
required: boolean;
|
|
4462
4656
|
searchable?: boolean;
|
|
@@ -4470,6 +4664,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4470
4664
|
options?: {
|
|
4471
4665
|
allowedMimeTypes?: Array<string>;
|
|
4472
4666
|
maxFileSize?: number;
|
|
4667
|
+
maxItems?: number;
|
|
4473
4668
|
mediaType?: "image" | "video" | "audio" | "document" | "other";
|
|
4474
4669
|
multiple?: boolean;
|
|
4475
4670
|
};
|
|
@@ -4498,6 +4693,8 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4498
4693
|
localized?: boolean;
|
|
4499
4694
|
name: string;
|
|
4500
4695
|
options?: {
|
|
4696
|
+
maxSelections?: number;
|
|
4697
|
+
minSelections?: number;
|
|
4501
4698
|
options?: Array<{
|
|
4502
4699
|
label: string;
|
|
4503
4700
|
value: string;
|
|
@@ -4529,6 +4726,9 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4529
4726
|
name: string;
|
|
4530
4727
|
options?: {
|
|
4531
4728
|
allowMultiple?: boolean;
|
|
4729
|
+
depth?: number;
|
|
4730
|
+
maxSelections?: number;
|
|
4731
|
+
taxonomyName?: string;
|
|
4532
4732
|
};
|
|
4533
4733
|
required: boolean;
|
|
4534
4734
|
searchable?: boolean;
|
|
@@ -4552,6 +4752,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4552
4752
|
localized?: boolean;
|
|
4553
4753
|
name: string;
|
|
4554
4754
|
options?: {
|
|
4755
|
+
format?: string;
|
|
4555
4756
|
max?: number;
|
|
4556
4757
|
min?: number;
|
|
4557
4758
|
};
|
|
@@ -4565,8 +4766,10 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4565
4766
|
localized?: boolean;
|
|
4566
4767
|
name: string;
|
|
4567
4768
|
options?: {
|
|
4769
|
+
format?: string;
|
|
4568
4770
|
max?: number;
|
|
4569
4771
|
min?: number;
|
|
4772
|
+
timezone?: string;
|
|
4570
4773
|
};
|
|
4571
4774
|
required: boolean;
|
|
4572
4775
|
searchable?: boolean;
|
|
@@ -4579,6 +4782,7 @@ declare function createAdminAPIImpl(component: ComponentApi, options?: AdminApiO
|
|
|
4579
4782
|
name: string;
|
|
4580
4783
|
options?: {
|
|
4581
4784
|
allowedContentTypes?: Array<string>;
|
|
4785
|
+
maxItems?: number;
|
|
4582
4786
|
minItems?: number;
|
|
4583
4787
|
multiple?: boolean;
|
|
4584
4788
|
};
|