@webstudio-is/sdk 0.219.0 → 0.221.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,1015 +16,5 @@ export declare const coreMetas: {
16
16
  "ws:block": WsComponentMeta;
17
17
  "ws:block-template": WsComponentMeta;
18
18
  };
19
- export declare const corePropsMetas: {
20
- "ws:root": {
21
- props: Record<string, {
22
- options: string[];
23
- type: "string";
24
- required: boolean;
25
- control: "tag";
26
- label?: string | undefined;
27
- defaultValue?: undefined;
28
- description?: string | undefined;
29
- } | {
30
- type: "number";
31
- required: boolean;
32
- control: "number";
33
- label?: string | undefined;
34
- defaultValue?: number | undefined;
35
- description?: string | undefined;
36
- } | {
37
- type: "number";
38
- required: boolean;
39
- control: "range";
40
- label?: string | undefined;
41
- defaultValue?: number | undefined;
42
- description?: string | undefined;
43
- } | {
44
- type: "string";
45
- required: boolean;
46
- control: "text";
47
- label?: string | undefined;
48
- defaultValue?: string | undefined;
49
- description?: string | undefined;
50
- rows?: number | undefined;
51
- } | {
52
- type: "resource";
53
- required: boolean;
54
- control: "resource";
55
- label?: string | undefined;
56
- defaultValue?: string | undefined;
57
- description?: string | undefined;
58
- } | {
59
- type: "string";
60
- required: boolean;
61
- control: "code";
62
- language: "html" | "markdown";
63
- label?: string | undefined;
64
- defaultValue?: string | undefined;
65
- description?: string | undefined;
66
- } | {
67
- type: "string";
68
- required: boolean;
69
- control: "codetext";
70
- label?: string | undefined;
71
- defaultValue?: string | undefined;
72
- description?: string | undefined;
73
- } | {
74
- type: "string";
75
- required: boolean;
76
- control: "color";
77
- label?: string | undefined;
78
- defaultValue?: string | undefined;
79
- description?: string | undefined;
80
- } | {
81
- type: "boolean";
82
- required: boolean;
83
- control: "boolean";
84
- label?: string | undefined;
85
- defaultValue?: boolean | undefined;
86
- description?: string | undefined;
87
- } | {
88
- options: string[];
89
- type: "string";
90
- required: boolean;
91
- control: "radio";
92
- label?: string | undefined;
93
- defaultValue?: string | undefined;
94
- description?: string | undefined;
95
- } | {
96
- options: string[];
97
- type: "string";
98
- required: boolean;
99
- control: "inline-radio";
100
- label?: string | undefined;
101
- defaultValue?: string | undefined;
102
- description?: string | undefined;
103
- } | {
104
- options: string[];
105
- type: "string";
106
- required: boolean;
107
- control: "select";
108
- label?: string | undefined;
109
- defaultValue?: string | undefined;
110
- description?: string | undefined;
111
- } | {
112
- options: string[];
113
- type: "string[]";
114
- required: boolean;
115
- control: "check";
116
- label?: string | undefined;
117
- defaultValue?: string[] | undefined;
118
- description?: string | undefined;
119
- } | {
120
- options: string[];
121
- type: "string[]";
122
- required: boolean;
123
- control: "inline-check";
124
- label?: string | undefined;
125
- defaultValue?: string[] | undefined;
126
- description?: string | undefined;
127
- } | {
128
- options: string[];
129
- type: "string[]";
130
- required: boolean;
131
- control: "multi-select";
132
- label?: string | undefined;
133
- defaultValue?: string[] | undefined;
134
- description?: string | undefined;
135
- } | {
136
- type: "string";
137
- required: boolean;
138
- control: "file";
139
- label?: string | undefined;
140
- defaultValue?: string | undefined;
141
- description?: string | undefined;
142
- accept?: string | undefined;
143
- } | {
144
- type: "string";
145
- required: boolean;
146
- control: "url";
147
- label?: string | undefined;
148
- defaultValue?: string | undefined;
149
- description?: string | undefined;
150
- } | {
151
- type: "json";
152
- required: boolean;
153
- control: "json";
154
- label?: string | undefined;
155
- defaultValue?: unknown;
156
- description?: string | undefined;
157
- } | {
158
- type: "string";
159
- required: boolean;
160
- control: "date";
161
- label?: string | undefined;
162
- defaultValue?: string | undefined;
163
- description?: string | undefined;
164
- } | {
165
- type: "action";
166
- required: boolean;
167
- control: "action";
168
- label?: string | undefined;
169
- defaultValue?: undefined;
170
- description?: string | undefined;
171
- } | {
172
- type: "string";
173
- required: boolean;
174
- control: "textContent";
175
- label?: string | undefined;
176
- defaultValue?: string | undefined;
177
- description?: string | undefined;
178
- } | {
179
- type: "animationAction";
180
- required: boolean;
181
- control: "animationAction";
182
- label?: string | undefined;
183
- defaultValue?: undefined;
184
- description?: string | undefined;
185
- }>;
186
- initialProps?: string[] | undefined;
187
- };
188
- "ws:element": {
189
- props: Record<string, {
190
- options: string[];
191
- type: "string";
192
- required: boolean;
193
- control: "tag";
194
- label?: string | undefined;
195
- defaultValue?: undefined;
196
- description?: string | undefined;
197
- } | {
198
- type: "number";
199
- required: boolean;
200
- control: "number";
201
- label?: string | undefined;
202
- defaultValue?: number | undefined;
203
- description?: string | undefined;
204
- } | {
205
- type: "number";
206
- required: boolean;
207
- control: "range";
208
- label?: string | undefined;
209
- defaultValue?: number | undefined;
210
- description?: string | undefined;
211
- } | {
212
- type: "string";
213
- required: boolean;
214
- control: "text";
215
- label?: string | undefined;
216
- defaultValue?: string | undefined;
217
- description?: string | undefined;
218
- rows?: number | undefined;
219
- } | {
220
- type: "resource";
221
- required: boolean;
222
- control: "resource";
223
- label?: string | undefined;
224
- defaultValue?: string | undefined;
225
- description?: string | undefined;
226
- } | {
227
- type: "string";
228
- required: boolean;
229
- control: "code";
230
- language: "html" | "markdown";
231
- label?: string | undefined;
232
- defaultValue?: string | undefined;
233
- description?: string | undefined;
234
- } | {
235
- type: "string";
236
- required: boolean;
237
- control: "codetext";
238
- label?: string | undefined;
239
- defaultValue?: string | undefined;
240
- description?: string | undefined;
241
- } | {
242
- type: "string";
243
- required: boolean;
244
- control: "color";
245
- label?: string | undefined;
246
- defaultValue?: string | undefined;
247
- description?: string | undefined;
248
- } | {
249
- type: "boolean";
250
- required: boolean;
251
- control: "boolean";
252
- label?: string | undefined;
253
- defaultValue?: boolean | undefined;
254
- description?: string | undefined;
255
- } | {
256
- options: string[];
257
- type: "string";
258
- required: boolean;
259
- control: "radio";
260
- label?: string | undefined;
261
- defaultValue?: string | undefined;
262
- description?: string | undefined;
263
- } | {
264
- options: string[];
265
- type: "string";
266
- required: boolean;
267
- control: "inline-radio";
268
- label?: string | undefined;
269
- defaultValue?: string | undefined;
270
- description?: string | undefined;
271
- } | {
272
- options: string[];
273
- type: "string";
274
- required: boolean;
275
- control: "select";
276
- label?: string | undefined;
277
- defaultValue?: string | undefined;
278
- description?: string | undefined;
279
- } | {
280
- options: string[];
281
- type: "string[]";
282
- required: boolean;
283
- control: "check";
284
- label?: string | undefined;
285
- defaultValue?: string[] | undefined;
286
- description?: string | undefined;
287
- } | {
288
- options: string[];
289
- type: "string[]";
290
- required: boolean;
291
- control: "inline-check";
292
- label?: string | undefined;
293
- defaultValue?: string[] | undefined;
294
- description?: string | undefined;
295
- } | {
296
- options: string[];
297
- type: "string[]";
298
- required: boolean;
299
- control: "multi-select";
300
- label?: string | undefined;
301
- defaultValue?: string[] | undefined;
302
- description?: string | undefined;
303
- } | {
304
- type: "string";
305
- required: boolean;
306
- control: "file";
307
- label?: string | undefined;
308
- defaultValue?: string | undefined;
309
- description?: string | undefined;
310
- accept?: string | undefined;
311
- } | {
312
- type: "string";
313
- required: boolean;
314
- control: "url";
315
- label?: string | undefined;
316
- defaultValue?: string | undefined;
317
- description?: string | undefined;
318
- } | {
319
- type: "json";
320
- required: boolean;
321
- control: "json";
322
- label?: string | undefined;
323
- defaultValue?: unknown;
324
- description?: string | undefined;
325
- } | {
326
- type: "string";
327
- required: boolean;
328
- control: "date";
329
- label?: string | undefined;
330
- defaultValue?: string | undefined;
331
- description?: string | undefined;
332
- } | {
333
- type: "action";
334
- required: boolean;
335
- control: "action";
336
- label?: string | undefined;
337
- defaultValue?: undefined;
338
- description?: string | undefined;
339
- } | {
340
- type: "string";
341
- required: boolean;
342
- control: "textContent";
343
- label?: string | undefined;
344
- defaultValue?: string | undefined;
345
- description?: string | undefined;
346
- } | {
347
- type: "animationAction";
348
- required: boolean;
349
- control: "animationAction";
350
- label?: string | undefined;
351
- defaultValue?: undefined;
352
- description?: string | undefined;
353
- }>;
354
- initialProps?: string[] | undefined;
355
- };
356
- "ws:collection": {
357
- props: Record<string, {
358
- options: string[];
359
- type: "string";
360
- required: boolean;
361
- control: "tag";
362
- label?: string | undefined;
363
- defaultValue?: undefined;
364
- description?: string | undefined;
365
- } | {
366
- type: "number";
367
- required: boolean;
368
- control: "number";
369
- label?: string | undefined;
370
- defaultValue?: number | undefined;
371
- description?: string | undefined;
372
- } | {
373
- type: "number";
374
- required: boolean;
375
- control: "range";
376
- label?: string | undefined;
377
- defaultValue?: number | undefined;
378
- description?: string | undefined;
379
- } | {
380
- type: "string";
381
- required: boolean;
382
- control: "text";
383
- label?: string | undefined;
384
- defaultValue?: string | undefined;
385
- description?: string | undefined;
386
- rows?: number | undefined;
387
- } | {
388
- type: "resource";
389
- required: boolean;
390
- control: "resource";
391
- label?: string | undefined;
392
- defaultValue?: string | undefined;
393
- description?: string | undefined;
394
- } | {
395
- type: "string";
396
- required: boolean;
397
- control: "code";
398
- language: "html" | "markdown";
399
- label?: string | undefined;
400
- defaultValue?: string | undefined;
401
- description?: string | undefined;
402
- } | {
403
- type: "string";
404
- required: boolean;
405
- control: "codetext";
406
- label?: string | undefined;
407
- defaultValue?: string | undefined;
408
- description?: string | undefined;
409
- } | {
410
- type: "string";
411
- required: boolean;
412
- control: "color";
413
- label?: string | undefined;
414
- defaultValue?: string | undefined;
415
- description?: string | undefined;
416
- } | {
417
- type: "boolean";
418
- required: boolean;
419
- control: "boolean";
420
- label?: string | undefined;
421
- defaultValue?: boolean | undefined;
422
- description?: string | undefined;
423
- } | {
424
- options: string[];
425
- type: "string";
426
- required: boolean;
427
- control: "radio";
428
- label?: string | undefined;
429
- defaultValue?: string | undefined;
430
- description?: string | undefined;
431
- } | {
432
- options: string[];
433
- type: "string";
434
- required: boolean;
435
- control: "inline-radio";
436
- label?: string | undefined;
437
- defaultValue?: string | undefined;
438
- description?: string | undefined;
439
- } | {
440
- options: string[];
441
- type: "string";
442
- required: boolean;
443
- control: "select";
444
- label?: string | undefined;
445
- defaultValue?: string | undefined;
446
- description?: string | undefined;
447
- } | {
448
- options: string[];
449
- type: "string[]";
450
- required: boolean;
451
- control: "check";
452
- label?: string | undefined;
453
- defaultValue?: string[] | undefined;
454
- description?: string | undefined;
455
- } | {
456
- options: string[];
457
- type: "string[]";
458
- required: boolean;
459
- control: "inline-check";
460
- label?: string | undefined;
461
- defaultValue?: string[] | undefined;
462
- description?: string | undefined;
463
- } | {
464
- options: string[];
465
- type: "string[]";
466
- required: boolean;
467
- control: "multi-select";
468
- label?: string | undefined;
469
- defaultValue?: string[] | undefined;
470
- description?: string | undefined;
471
- } | {
472
- type: "string";
473
- required: boolean;
474
- control: "file";
475
- label?: string | undefined;
476
- defaultValue?: string | undefined;
477
- description?: string | undefined;
478
- accept?: string | undefined;
479
- } | {
480
- type: "string";
481
- required: boolean;
482
- control: "url";
483
- label?: string | undefined;
484
- defaultValue?: string | undefined;
485
- description?: string | undefined;
486
- } | {
487
- type: "json";
488
- required: boolean;
489
- control: "json";
490
- label?: string | undefined;
491
- defaultValue?: unknown;
492
- description?: string | undefined;
493
- } | {
494
- type: "string";
495
- required: boolean;
496
- control: "date";
497
- label?: string | undefined;
498
- defaultValue?: string | undefined;
499
- description?: string | undefined;
500
- } | {
501
- type: "action";
502
- required: boolean;
503
- control: "action";
504
- label?: string | undefined;
505
- defaultValue?: undefined;
506
- description?: string | undefined;
507
- } | {
508
- type: "string";
509
- required: boolean;
510
- control: "textContent";
511
- label?: string | undefined;
512
- defaultValue?: string | undefined;
513
- description?: string | undefined;
514
- } | {
515
- type: "animationAction";
516
- required: boolean;
517
- control: "animationAction";
518
- label?: string | undefined;
519
- defaultValue?: undefined;
520
- description?: string | undefined;
521
- }>;
522
- initialProps?: string[] | undefined;
523
- };
524
- "ws:descendant": {
525
- props: Record<string, {
526
- options: string[];
527
- type: "string";
528
- required: boolean;
529
- control: "tag";
530
- label?: string | undefined;
531
- defaultValue?: undefined;
532
- description?: string | undefined;
533
- } | {
534
- type: "number";
535
- required: boolean;
536
- control: "number";
537
- label?: string | undefined;
538
- defaultValue?: number | undefined;
539
- description?: string | undefined;
540
- } | {
541
- type: "number";
542
- required: boolean;
543
- control: "range";
544
- label?: string | undefined;
545
- defaultValue?: number | undefined;
546
- description?: string | undefined;
547
- } | {
548
- type: "string";
549
- required: boolean;
550
- control: "text";
551
- label?: string | undefined;
552
- defaultValue?: string | undefined;
553
- description?: string | undefined;
554
- rows?: number | undefined;
555
- } | {
556
- type: "resource";
557
- required: boolean;
558
- control: "resource";
559
- label?: string | undefined;
560
- defaultValue?: string | undefined;
561
- description?: string | undefined;
562
- } | {
563
- type: "string";
564
- required: boolean;
565
- control: "code";
566
- language: "html" | "markdown";
567
- label?: string | undefined;
568
- defaultValue?: string | undefined;
569
- description?: string | undefined;
570
- } | {
571
- type: "string";
572
- required: boolean;
573
- control: "codetext";
574
- label?: string | undefined;
575
- defaultValue?: string | undefined;
576
- description?: string | undefined;
577
- } | {
578
- type: "string";
579
- required: boolean;
580
- control: "color";
581
- label?: string | undefined;
582
- defaultValue?: string | undefined;
583
- description?: string | undefined;
584
- } | {
585
- type: "boolean";
586
- required: boolean;
587
- control: "boolean";
588
- label?: string | undefined;
589
- defaultValue?: boolean | undefined;
590
- description?: string | undefined;
591
- } | {
592
- options: string[];
593
- type: "string";
594
- required: boolean;
595
- control: "radio";
596
- label?: string | undefined;
597
- defaultValue?: string | undefined;
598
- description?: string | undefined;
599
- } | {
600
- options: string[];
601
- type: "string";
602
- required: boolean;
603
- control: "inline-radio";
604
- label?: string | undefined;
605
- defaultValue?: string | undefined;
606
- description?: string | undefined;
607
- } | {
608
- options: string[];
609
- type: "string";
610
- required: boolean;
611
- control: "select";
612
- label?: string | undefined;
613
- defaultValue?: string | undefined;
614
- description?: string | undefined;
615
- } | {
616
- options: string[];
617
- type: "string[]";
618
- required: boolean;
619
- control: "check";
620
- label?: string | undefined;
621
- defaultValue?: string[] | undefined;
622
- description?: string | undefined;
623
- } | {
624
- options: string[];
625
- type: "string[]";
626
- required: boolean;
627
- control: "inline-check";
628
- label?: string | undefined;
629
- defaultValue?: string[] | undefined;
630
- description?: string | undefined;
631
- } | {
632
- options: string[];
633
- type: "string[]";
634
- required: boolean;
635
- control: "multi-select";
636
- label?: string | undefined;
637
- defaultValue?: string[] | undefined;
638
- description?: string | undefined;
639
- } | {
640
- type: "string";
641
- required: boolean;
642
- control: "file";
643
- label?: string | undefined;
644
- defaultValue?: string | undefined;
645
- description?: string | undefined;
646
- accept?: string | undefined;
647
- } | {
648
- type: "string";
649
- required: boolean;
650
- control: "url";
651
- label?: string | undefined;
652
- defaultValue?: string | undefined;
653
- description?: string | undefined;
654
- } | {
655
- type: "json";
656
- required: boolean;
657
- control: "json";
658
- label?: string | undefined;
659
- defaultValue?: unknown;
660
- description?: string | undefined;
661
- } | {
662
- type: "string";
663
- required: boolean;
664
- control: "date";
665
- label?: string | undefined;
666
- defaultValue?: string | undefined;
667
- description?: string | undefined;
668
- } | {
669
- type: "action";
670
- required: boolean;
671
- control: "action";
672
- label?: string | undefined;
673
- defaultValue?: undefined;
674
- description?: string | undefined;
675
- } | {
676
- type: "string";
677
- required: boolean;
678
- control: "textContent";
679
- label?: string | undefined;
680
- defaultValue?: string | undefined;
681
- description?: string | undefined;
682
- } | {
683
- type: "animationAction";
684
- required: boolean;
685
- control: "animationAction";
686
- label?: string | undefined;
687
- defaultValue?: undefined;
688
- description?: string | undefined;
689
- }>;
690
- initialProps?: string[] | undefined;
691
- };
692
- "ws:block": {
693
- props: Record<string, {
694
- options: string[];
695
- type: "string";
696
- required: boolean;
697
- control: "tag";
698
- label?: string | undefined;
699
- defaultValue?: undefined;
700
- description?: string | undefined;
701
- } | {
702
- type: "number";
703
- required: boolean;
704
- control: "number";
705
- label?: string | undefined;
706
- defaultValue?: number | undefined;
707
- description?: string | undefined;
708
- } | {
709
- type: "number";
710
- required: boolean;
711
- control: "range";
712
- label?: string | undefined;
713
- defaultValue?: number | undefined;
714
- description?: string | undefined;
715
- } | {
716
- type: "string";
717
- required: boolean;
718
- control: "text";
719
- label?: string | undefined;
720
- defaultValue?: string | undefined;
721
- description?: string | undefined;
722
- rows?: number | undefined;
723
- } | {
724
- type: "resource";
725
- required: boolean;
726
- control: "resource";
727
- label?: string | undefined;
728
- defaultValue?: string | undefined;
729
- description?: string | undefined;
730
- } | {
731
- type: "string";
732
- required: boolean;
733
- control: "code";
734
- language: "html" | "markdown";
735
- label?: string | undefined;
736
- defaultValue?: string | undefined;
737
- description?: string | undefined;
738
- } | {
739
- type: "string";
740
- required: boolean;
741
- control: "codetext";
742
- label?: string | undefined;
743
- defaultValue?: string | undefined;
744
- description?: string | undefined;
745
- } | {
746
- type: "string";
747
- required: boolean;
748
- control: "color";
749
- label?: string | undefined;
750
- defaultValue?: string | undefined;
751
- description?: string | undefined;
752
- } | {
753
- type: "boolean";
754
- required: boolean;
755
- control: "boolean";
756
- label?: string | undefined;
757
- defaultValue?: boolean | undefined;
758
- description?: string | undefined;
759
- } | {
760
- options: string[];
761
- type: "string";
762
- required: boolean;
763
- control: "radio";
764
- label?: string | undefined;
765
- defaultValue?: string | undefined;
766
- description?: string | undefined;
767
- } | {
768
- options: string[];
769
- type: "string";
770
- required: boolean;
771
- control: "inline-radio";
772
- label?: string | undefined;
773
- defaultValue?: string | undefined;
774
- description?: string | undefined;
775
- } | {
776
- options: string[];
777
- type: "string";
778
- required: boolean;
779
- control: "select";
780
- label?: string | undefined;
781
- defaultValue?: string | undefined;
782
- description?: string | undefined;
783
- } | {
784
- options: string[];
785
- type: "string[]";
786
- required: boolean;
787
- control: "check";
788
- label?: string | undefined;
789
- defaultValue?: string[] | undefined;
790
- description?: string | undefined;
791
- } | {
792
- options: string[];
793
- type: "string[]";
794
- required: boolean;
795
- control: "inline-check";
796
- label?: string | undefined;
797
- defaultValue?: string[] | undefined;
798
- description?: string | undefined;
799
- } | {
800
- options: string[];
801
- type: "string[]";
802
- required: boolean;
803
- control: "multi-select";
804
- label?: string | undefined;
805
- defaultValue?: string[] | undefined;
806
- description?: string | undefined;
807
- } | {
808
- type: "string";
809
- required: boolean;
810
- control: "file";
811
- label?: string | undefined;
812
- defaultValue?: string | undefined;
813
- description?: string | undefined;
814
- accept?: string | undefined;
815
- } | {
816
- type: "string";
817
- required: boolean;
818
- control: "url";
819
- label?: string | undefined;
820
- defaultValue?: string | undefined;
821
- description?: string | undefined;
822
- } | {
823
- type: "json";
824
- required: boolean;
825
- control: "json";
826
- label?: string | undefined;
827
- defaultValue?: unknown;
828
- description?: string | undefined;
829
- } | {
830
- type: "string";
831
- required: boolean;
832
- control: "date";
833
- label?: string | undefined;
834
- defaultValue?: string | undefined;
835
- description?: string | undefined;
836
- } | {
837
- type: "action";
838
- required: boolean;
839
- control: "action";
840
- label?: string | undefined;
841
- defaultValue?: undefined;
842
- description?: string | undefined;
843
- } | {
844
- type: "string";
845
- required: boolean;
846
- control: "textContent";
847
- label?: string | undefined;
848
- defaultValue?: string | undefined;
849
- description?: string | undefined;
850
- } | {
851
- type: "animationAction";
852
- required: boolean;
853
- control: "animationAction";
854
- label?: string | undefined;
855
- defaultValue?: undefined;
856
- description?: string | undefined;
857
- }>;
858
- initialProps?: string[] | undefined;
859
- };
860
- "ws:block-template": {
861
- props: Record<string, {
862
- options: string[];
863
- type: "string";
864
- required: boolean;
865
- control: "tag";
866
- label?: string | undefined;
867
- defaultValue?: undefined;
868
- description?: string | undefined;
869
- } | {
870
- type: "number";
871
- required: boolean;
872
- control: "number";
873
- label?: string | undefined;
874
- defaultValue?: number | undefined;
875
- description?: string | undefined;
876
- } | {
877
- type: "number";
878
- required: boolean;
879
- control: "range";
880
- label?: string | undefined;
881
- defaultValue?: number | undefined;
882
- description?: string | undefined;
883
- } | {
884
- type: "string";
885
- required: boolean;
886
- control: "text";
887
- label?: string | undefined;
888
- defaultValue?: string | undefined;
889
- description?: string | undefined;
890
- rows?: number | undefined;
891
- } | {
892
- type: "resource";
893
- required: boolean;
894
- control: "resource";
895
- label?: string | undefined;
896
- defaultValue?: string | undefined;
897
- description?: string | undefined;
898
- } | {
899
- type: "string";
900
- required: boolean;
901
- control: "code";
902
- language: "html" | "markdown";
903
- label?: string | undefined;
904
- defaultValue?: string | undefined;
905
- description?: string | undefined;
906
- } | {
907
- type: "string";
908
- required: boolean;
909
- control: "codetext";
910
- label?: string | undefined;
911
- defaultValue?: string | undefined;
912
- description?: string | undefined;
913
- } | {
914
- type: "string";
915
- required: boolean;
916
- control: "color";
917
- label?: string | undefined;
918
- defaultValue?: string | undefined;
919
- description?: string | undefined;
920
- } | {
921
- type: "boolean";
922
- required: boolean;
923
- control: "boolean";
924
- label?: string | undefined;
925
- defaultValue?: boolean | undefined;
926
- description?: string | undefined;
927
- } | {
928
- options: string[];
929
- type: "string";
930
- required: boolean;
931
- control: "radio";
932
- label?: string | undefined;
933
- defaultValue?: string | undefined;
934
- description?: string | undefined;
935
- } | {
936
- options: string[];
937
- type: "string";
938
- required: boolean;
939
- control: "inline-radio";
940
- label?: string | undefined;
941
- defaultValue?: string | undefined;
942
- description?: string | undefined;
943
- } | {
944
- options: string[];
945
- type: "string";
946
- required: boolean;
947
- control: "select";
948
- label?: string | undefined;
949
- defaultValue?: string | undefined;
950
- description?: string | undefined;
951
- } | {
952
- options: string[];
953
- type: "string[]";
954
- required: boolean;
955
- control: "check";
956
- label?: string | undefined;
957
- defaultValue?: string[] | undefined;
958
- description?: string | undefined;
959
- } | {
960
- options: string[];
961
- type: "string[]";
962
- required: boolean;
963
- control: "inline-check";
964
- label?: string | undefined;
965
- defaultValue?: string[] | undefined;
966
- description?: string | undefined;
967
- } | {
968
- options: string[];
969
- type: "string[]";
970
- required: boolean;
971
- control: "multi-select";
972
- label?: string | undefined;
973
- defaultValue?: string[] | undefined;
974
- description?: string | undefined;
975
- } | {
976
- type: "string";
977
- required: boolean;
978
- control: "file";
979
- label?: string | undefined;
980
- defaultValue?: string | undefined;
981
- description?: string | undefined;
982
- accept?: string | undefined;
983
- } | {
984
- type: "string";
985
- required: boolean;
986
- control: "url";
987
- label?: string | undefined;
988
- defaultValue?: string | undefined;
989
- description?: string | undefined;
990
- } | {
991
- type: "json";
992
- required: boolean;
993
- control: "json";
994
- label?: string | undefined;
995
- defaultValue?: unknown;
996
- description?: string | undefined;
997
- } | {
998
- type: "string";
999
- required: boolean;
1000
- control: "date";
1001
- label?: string | undefined;
1002
- defaultValue?: string | undefined;
1003
- description?: string | undefined;
1004
- } | {
1005
- type: "action";
1006
- required: boolean;
1007
- control: "action";
1008
- label?: string | undefined;
1009
- defaultValue?: undefined;
1010
- description?: string | undefined;
1011
- } | {
1012
- type: "string";
1013
- required: boolean;
1014
- control: "textContent";
1015
- label?: string | undefined;
1016
- defaultValue?: string | undefined;
1017
- description?: string | undefined;
1018
- } | {
1019
- type: "animationAction";
1020
- required: boolean;
1021
- control: "animationAction";
1022
- label?: string | undefined;
1023
- defaultValue?: undefined;
1024
- description?: string | undefined;
1025
- }>;
1026
- initialProps?: string[] | undefined;
1027
- };
1028
- };
1029
19
  export declare const isCoreComponent: (component: Instance["component"]) => component is "ws:root" | "ws:element" | "ws:collection" | "ws:descendant" | "ws:block" | "ws:block-template";
1030
20
  export declare const isComponentDetachable: (component: Instance["component"]) => boolean;