@webstudio-is/sdk 0.207.0 → 0.209.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +10 -2
- package/lib/types/core-metas.d.ts +115 -115
- package/lib/types/schema/animation-schema.d.ts +43644 -13660
- package/lib/types/schema/assets.d.ts +12 -84
- package/lib/types/schema/breakpoints.d.ts +8 -8
- package/lib/types/schema/component-meta.d.ts +9842 -3202
- package/lib/types/schema/embed-template.d.ts +3885 -881
- package/lib/types/schema/instances.d.ts +9 -0
- package/lib/types/schema/pages.d.ts +125 -125
- package/lib/types/schema/prop-meta.d.ts +46 -46
- package/lib/types/schema/props.d.ts +28880 -8948
- package/lib/types/schema/resources.d.ts +4 -4
- package/lib/types/schema/styles.d.ts +4903 -1239
- package/lib/types/schema/webstudio.d.ts +18062 -5510
- package/package.json +6 -6
|
@@ -19,157 +19,157 @@ export declare const corePropsMetas: {
|
|
|
19
19
|
type: "number";
|
|
20
20
|
required: boolean;
|
|
21
21
|
control: "number";
|
|
22
|
-
defaultValue?: number | undefined;
|
|
23
22
|
label?: string | undefined;
|
|
23
|
+
defaultValue?: number | undefined;
|
|
24
24
|
description?: string | undefined;
|
|
25
25
|
} | {
|
|
26
26
|
type: "number";
|
|
27
27
|
required: boolean;
|
|
28
28
|
control: "range";
|
|
29
|
-
defaultValue?: number | undefined;
|
|
30
29
|
label?: string | undefined;
|
|
30
|
+
defaultValue?: number | undefined;
|
|
31
31
|
description?: string | undefined;
|
|
32
32
|
} | {
|
|
33
33
|
type: "string";
|
|
34
34
|
required: boolean;
|
|
35
35
|
control: "text";
|
|
36
|
-
defaultValue?: string | undefined;
|
|
37
|
-
rows?: number | undefined;
|
|
38
36
|
label?: string | undefined;
|
|
37
|
+
defaultValue?: string | undefined;
|
|
39
38
|
description?: string | undefined;
|
|
39
|
+
rows?: number | undefined;
|
|
40
40
|
} | {
|
|
41
41
|
type: "resource";
|
|
42
42
|
required: boolean;
|
|
43
43
|
control: "resource";
|
|
44
|
-
defaultValue?: string | undefined;
|
|
45
44
|
label?: string | undefined;
|
|
45
|
+
defaultValue?: string | undefined;
|
|
46
46
|
description?: string | undefined;
|
|
47
47
|
} | {
|
|
48
48
|
type: "string";
|
|
49
49
|
required: boolean;
|
|
50
50
|
control: "code";
|
|
51
51
|
language: "html" | "markdown";
|
|
52
|
-
defaultValue?: string | undefined;
|
|
53
52
|
label?: string | undefined;
|
|
53
|
+
defaultValue?: string | undefined;
|
|
54
54
|
description?: string | undefined;
|
|
55
55
|
} | {
|
|
56
56
|
type: "string";
|
|
57
57
|
required: boolean;
|
|
58
58
|
control: "codetext";
|
|
59
|
-
defaultValue?: string | undefined;
|
|
60
59
|
label?: string | undefined;
|
|
60
|
+
defaultValue?: string | undefined;
|
|
61
61
|
description?: string | undefined;
|
|
62
62
|
} | {
|
|
63
63
|
type: "string";
|
|
64
64
|
required: boolean;
|
|
65
65
|
control: "color";
|
|
66
|
-
defaultValue?: string | undefined;
|
|
67
66
|
label?: string | undefined;
|
|
67
|
+
defaultValue?: string | undefined;
|
|
68
68
|
description?: string | undefined;
|
|
69
69
|
} | {
|
|
70
70
|
type: "boolean";
|
|
71
71
|
required: boolean;
|
|
72
72
|
control: "boolean";
|
|
73
|
-
defaultValue?: boolean | undefined;
|
|
74
73
|
label?: string | undefined;
|
|
74
|
+
defaultValue?: boolean | undefined;
|
|
75
75
|
description?: string | undefined;
|
|
76
76
|
} | {
|
|
77
77
|
options: string[];
|
|
78
78
|
type: "string";
|
|
79
79
|
required: boolean;
|
|
80
80
|
control: "radio";
|
|
81
|
-
defaultValue?: string | undefined;
|
|
82
81
|
label?: string | undefined;
|
|
82
|
+
defaultValue?: string | undefined;
|
|
83
83
|
description?: string | undefined;
|
|
84
84
|
} | {
|
|
85
85
|
options: string[];
|
|
86
86
|
type: "string";
|
|
87
87
|
required: boolean;
|
|
88
88
|
control: "inline-radio";
|
|
89
|
-
defaultValue?: string | undefined;
|
|
90
89
|
label?: string | undefined;
|
|
90
|
+
defaultValue?: string | undefined;
|
|
91
91
|
description?: string | undefined;
|
|
92
92
|
} | {
|
|
93
93
|
options: string[];
|
|
94
94
|
type: "string";
|
|
95
95
|
required: boolean;
|
|
96
96
|
control: "select";
|
|
97
|
-
defaultValue?: string | undefined;
|
|
98
97
|
label?: string | undefined;
|
|
98
|
+
defaultValue?: string | undefined;
|
|
99
99
|
description?: string | undefined;
|
|
100
100
|
} | {
|
|
101
101
|
options: string[];
|
|
102
102
|
type: "string[]";
|
|
103
103
|
required: boolean;
|
|
104
104
|
control: "check";
|
|
105
|
-
defaultValue?: string[] | undefined;
|
|
106
105
|
label?: string | undefined;
|
|
106
|
+
defaultValue?: string[] | undefined;
|
|
107
107
|
description?: string | undefined;
|
|
108
108
|
} | {
|
|
109
109
|
options: string[];
|
|
110
110
|
type: "string[]";
|
|
111
111
|
required: boolean;
|
|
112
112
|
control: "inline-check";
|
|
113
|
-
defaultValue?: string[] | undefined;
|
|
114
113
|
label?: string | undefined;
|
|
114
|
+
defaultValue?: string[] | undefined;
|
|
115
115
|
description?: string | undefined;
|
|
116
116
|
} | {
|
|
117
117
|
options: string[];
|
|
118
118
|
type: "string[]";
|
|
119
119
|
required: boolean;
|
|
120
120
|
control: "multi-select";
|
|
121
|
-
defaultValue?: string[] | undefined;
|
|
122
121
|
label?: string | undefined;
|
|
122
|
+
defaultValue?: string[] | undefined;
|
|
123
123
|
description?: string | undefined;
|
|
124
124
|
} | {
|
|
125
125
|
type: "string";
|
|
126
126
|
required: boolean;
|
|
127
127
|
control: "file";
|
|
128
|
-
defaultValue?: string | undefined;
|
|
129
|
-
accept?: string | undefined;
|
|
130
128
|
label?: string | undefined;
|
|
129
|
+
defaultValue?: string | undefined;
|
|
131
130
|
description?: string | undefined;
|
|
131
|
+
accept?: string | undefined;
|
|
132
132
|
} | {
|
|
133
133
|
type: "string";
|
|
134
134
|
required: boolean;
|
|
135
135
|
control: "url";
|
|
136
|
-
defaultValue?: string | undefined;
|
|
137
136
|
label?: string | undefined;
|
|
137
|
+
defaultValue?: string | undefined;
|
|
138
138
|
description?: string | undefined;
|
|
139
139
|
} | {
|
|
140
140
|
type: "json";
|
|
141
141
|
required: boolean;
|
|
142
142
|
control: "json";
|
|
143
|
-
defaultValue?: unknown;
|
|
144
143
|
label?: string | undefined;
|
|
144
|
+
defaultValue?: unknown;
|
|
145
145
|
description?: string | undefined;
|
|
146
146
|
} | {
|
|
147
147
|
type: "string";
|
|
148
148
|
required: boolean;
|
|
149
149
|
control: "date";
|
|
150
|
-
defaultValue?: string | undefined;
|
|
151
150
|
label?: string | undefined;
|
|
151
|
+
defaultValue?: string | undefined;
|
|
152
152
|
description?: string | undefined;
|
|
153
153
|
} | {
|
|
154
154
|
type: "action";
|
|
155
155
|
required: boolean;
|
|
156
156
|
control: "action";
|
|
157
|
-
defaultValue?: undefined;
|
|
158
157
|
label?: string | undefined;
|
|
158
|
+
defaultValue?: undefined;
|
|
159
159
|
description?: string | undefined;
|
|
160
160
|
} | {
|
|
161
161
|
type: "string";
|
|
162
162
|
required: boolean;
|
|
163
163
|
control: "textContent";
|
|
164
|
-
defaultValue?: string | undefined;
|
|
165
164
|
label?: string | undefined;
|
|
165
|
+
defaultValue?: string | undefined;
|
|
166
166
|
description?: string | undefined;
|
|
167
167
|
} | {
|
|
168
168
|
type: "animationAction";
|
|
169
169
|
required: boolean;
|
|
170
170
|
control: "animationAction";
|
|
171
|
-
defaultValue?: undefined;
|
|
172
171
|
label?: string | undefined;
|
|
172
|
+
defaultValue?: undefined;
|
|
173
173
|
description?: string | undefined;
|
|
174
174
|
}>;
|
|
175
175
|
initialProps?: string[] | undefined;
|
|
@@ -179,157 +179,157 @@ export declare const corePropsMetas: {
|
|
|
179
179
|
type: "number";
|
|
180
180
|
required: boolean;
|
|
181
181
|
control: "number";
|
|
182
|
-
defaultValue?: number | undefined;
|
|
183
182
|
label?: string | undefined;
|
|
183
|
+
defaultValue?: number | undefined;
|
|
184
184
|
description?: string | undefined;
|
|
185
185
|
} | {
|
|
186
186
|
type: "number";
|
|
187
187
|
required: boolean;
|
|
188
188
|
control: "range";
|
|
189
|
-
defaultValue?: number | undefined;
|
|
190
189
|
label?: string | undefined;
|
|
190
|
+
defaultValue?: number | undefined;
|
|
191
191
|
description?: string | undefined;
|
|
192
192
|
} | {
|
|
193
193
|
type: "string";
|
|
194
194
|
required: boolean;
|
|
195
195
|
control: "text";
|
|
196
|
-
defaultValue?: string | undefined;
|
|
197
|
-
rows?: number | undefined;
|
|
198
196
|
label?: string | undefined;
|
|
197
|
+
defaultValue?: string | undefined;
|
|
199
198
|
description?: string | undefined;
|
|
199
|
+
rows?: number | undefined;
|
|
200
200
|
} | {
|
|
201
201
|
type: "resource";
|
|
202
202
|
required: boolean;
|
|
203
203
|
control: "resource";
|
|
204
|
-
defaultValue?: string | undefined;
|
|
205
204
|
label?: string | undefined;
|
|
205
|
+
defaultValue?: string | undefined;
|
|
206
206
|
description?: string | undefined;
|
|
207
207
|
} | {
|
|
208
208
|
type: "string";
|
|
209
209
|
required: boolean;
|
|
210
210
|
control: "code";
|
|
211
211
|
language: "html" | "markdown";
|
|
212
|
-
defaultValue?: string | undefined;
|
|
213
212
|
label?: string | undefined;
|
|
213
|
+
defaultValue?: string | undefined;
|
|
214
214
|
description?: string | undefined;
|
|
215
215
|
} | {
|
|
216
216
|
type: "string";
|
|
217
217
|
required: boolean;
|
|
218
218
|
control: "codetext";
|
|
219
|
-
defaultValue?: string | undefined;
|
|
220
219
|
label?: string | undefined;
|
|
220
|
+
defaultValue?: string | undefined;
|
|
221
221
|
description?: string | undefined;
|
|
222
222
|
} | {
|
|
223
223
|
type: "string";
|
|
224
224
|
required: boolean;
|
|
225
225
|
control: "color";
|
|
226
|
-
defaultValue?: string | undefined;
|
|
227
226
|
label?: string | undefined;
|
|
227
|
+
defaultValue?: string | undefined;
|
|
228
228
|
description?: string | undefined;
|
|
229
229
|
} | {
|
|
230
230
|
type: "boolean";
|
|
231
231
|
required: boolean;
|
|
232
232
|
control: "boolean";
|
|
233
|
-
defaultValue?: boolean | undefined;
|
|
234
233
|
label?: string | undefined;
|
|
234
|
+
defaultValue?: boolean | undefined;
|
|
235
235
|
description?: string | undefined;
|
|
236
236
|
} | {
|
|
237
237
|
options: string[];
|
|
238
238
|
type: "string";
|
|
239
239
|
required: boolean;
|
|
240
240
|
control: "radio";
|
|
241
|
-
defaultValue?: string | undefined;
|
|
242
241
|
label?: string | undefined;
|
|
242
|
+
defaultValue?: string | undefined;
|
|
243
243
|
description?: string | undefined;
|
|
244
244
|
} | {
|
|
245
245
|
options: string[];
|
|
246
246
|
type: "string";
|
|
247
247
|
required: boolean;
|
|
248
248
|
control: "inline-radio";
|
|
249
|
-
defaultValue?: string | undefined;
|
|
250
249
|
label?: string | undefined;
|
|
250
|
+
defaultValue?: string | undefined;
|
|
251
251
|
description?: string | undefined;
|
|
252
252
|
} | {
|
|
253
253
|
options: string[];
|
|
254
254
|
type: "string";
|
|
255
255
|
required: boolean;
|
|
256
256
|
control: "select";
|
|
257
|
-
defaultValue?: string | undefined;
|
|
258
257
|
label?: string | undefined;
|
|
258
|
+
defaultValue?: string | undefined;
|
|
259
259
|
description?: string | undefined;
|
|
260
260
|
} | {
|
|
261
261
|
options: string[];
|
|
262
262
|
type: "string[]";
|
|
263
263
|
required: boolean;
|
|
264
264
|
control: "check";
|
|
265
|
-
defaultValue?: string[] | undefined;
|
|
266
265
|
label?: string | undefined;
|
|
266
|
+
defaultValue?: string[] | undefined;
|
|
267
267
|
description?: string | undefined;
|
|
268
268
|
} | {
|
|
269
269
|
options: string[];
|
|
270
270
|
type: "string[]";
|
|
271
271
|
required: boolean;
|
|
272
272
|
control: "inline-check";
|
|
273
|
-
defaultValue?: string[] | undefined;
|
|
274
273
|
label?: string | undefined;
|
|
274
|
+
defaultValue?: string[] | undefined;
|
|
275
275
|
description?: string | undefined;
|
|
276
276
|
} | {
|
|
277
277
|
options: string[];
|
|
278
278
|
type: "string[]";
|
|
279
279
|
required: boolean;
|
|
280
280
|
control: "multi-select";
|
|
281
|
-
defaultValue?: string[] | undefined;
|
|
282
281
|
label?: string | undefined;
|
|
282
|
+
defaultValue?: string[] | undefined;
|
|
283
283
|
description?: string | undefined;
|
|
284
284
|
} | {
|
|
285
285
|
type: "string";
|
|
286
286
|
required: boolean;
|
|
287
287
|
control: "file";
|
|
288
|
-
defaultValue?: string | undefined;
|
|
289
|
-
accept?: string | undefined;
|
|
290
288
|
label?: string | undefined;
|
|
289
|
+
defaultValue?: string | undefined;
|
|
291
290
|
description?: string | undefined;
|
|
291
|
+
accept?: string | undefined;
|
|
292
292
|
} | {
|
|
293
293
|
type: "string";
|
|
294
294
|
required: boolean;
|
|
295
295
|
control: "url";
|
|
296
|
-
defaultValue?: string | undefined;
|
|
297
296
|
label?: string | undefined;
|
|
297
|
+
defaultValue?: string | undefined;
|
|
298
298
|
description?: string | undefined;
|
|
299
299
|
} | {
|
|
300
300
|
type: "json";
|
|
301
301
|
required: boolean;
|
|
302
302
|
control: "json";
|
|
303
|
-
defaultValue?: unknown;
|
|
304
303
|
label?: string | undefined;
|
|
304
|
+
defaultValue?: unknown;
|
|
305
305
|
description?: string | undefined;
|
|
306
306
|
} | {
|
|
307
307
|
type: "string";
|
|
308
308
|
required: boolean;
|
|
309
309
|
control: "date";
|
|
310
|
-
defaultValue?: string | undefined;
|
|
311
310
|
label?: string | undefined;
|
|
311
|
+
defaultValue?: string | undefined;
|
|
312
312
|
description?: string | undefined;
|
|
313
313
|
} | {
|
|
314
314
|
type: "action";
|
|
315
315
|
required: boolean;
|
|
316
316
|
control: "action";
|
|
317
|
-
defaultValue?: undefined;
|
|
318
317
|
label?: string | undefined;
|
|
318
|
+
defaultValue?: undefined;
|
|
319
319
|
description?: string | undefined;
|
|
320
320
|
} | {
|
|
321
321
|
type: "string";
|
|
322
322
|
required: boolean;
|
|
323
323
|
control: "textContent";
|
|
324
|
-
defaultValue?: string | undefined;
|
|
325
324
|
label?: string | undefined;
|
|
325
|
+
defaultValue?: string | undefined;
|
|
326
326
|
description?: string | undefined;
|
|
327
327
|
} | {
|
|
328
328
|
type: "animationAction";
|
|
329
329
|
required: boolean;
|
|
330
330
|
control: "animationAction";
|
|
331
|
-
defaultValue?: undefined;
|
|
332
331
|
label?: string | undefined;
|
|
332
|
+
defaultValue?: undefined;
|
|
333
333
|
description?: string | undefined;
|
|
334
334
|
}>;
|
|
335
335
|
initialProps?: string[] | undefined;
|
|
@@ -339,157 +339,157 @@ export declare const corePropsMetas: {
|
|
|
339
339
|
type: "number";
|
|
340
340
|
required: boolean;
|
|
341
341
|
control: "number";
|
|
342
|
-
defaultValue?: number | undefined;
|
|
343
342
|
label?: string | undefined;
|
|
343
|
+
defaultValue?: number | undefined;
|
|
344
344
|
description?: string | undefined;
|
|
345
345
|
} | {
|
|
346
346
|
type: "number";
|
|
347
347
|
required: boolean;
|
|
348
348
|
control: "range";
|
|
349
|
-
defaultValue?: number | undefined;
|
|
350
349
|
label?: string | undefined;
|
|
350
|
+
defaultValue?: number | undefined;
|
|
351
351
|
description?: string | undefined;
|
|
352
352
|
} | {
|
|
353
353
|
type: "string";
|
|
354
354
|
required: boolean;
|
|
355
355
|
control: "text";
|
|
356
|
-
defaultValue?: string | undefined;
|
|
357
|
-
rows?: number | undefined;
|
|
358
356
|
label?: string | undefined;
|
|
357
|
+
defaultValue?: string | undefined;
|
|
359
358
|
description?: string | undefined;
|
|
359
|
+
rows?: number | undefined;
|
|
360
360
|
} | {
|
|
361
361
|
type: "resource";
|
|
362
362
|
required: boolean;
|
|
363
363
|
control: "resource";
|
|
364
|
-
defaultValue?: string | undefined;
|
|
365
364
|
label?: string | undefined;
|
|
365
|
+
defaultValue?: string | undefined;
|
|
366
366
|
description?: string | undefined;
|
|
367
367
|
} | {
|
|
368
368
|
type: "string";
|
|
369
369
|
required: boolean;
|
|
370
370
|
control: "code";
|
|
371
371
|
language: "html" | "markdown";
|
|
372
|
-
defaultValue?: string | undefined;
|
|
373
372
|
label?: string | undefined;
|
|
373
|
+
defaultValue?: string | undefined;
|
|
374
374
|
description?: string | undefined;
|
|
375
375
|
} | {
|
|
376
376
|
type: "string";
|
|
377
377
|
required: boolean;
|
|
378
378
|
control: "codetext";
|
|
379
|
-
defaultValue?: string | undefined;
|
|
380
379
|
label?: string | undefined;
|
|
380
|
+
defaultValue?: string | undefined;
|
|
381
381
|
description?: string | undefined;
|
|
382
382
|
} | {
|
|
383
383
|
type: "string";
|
|
384
384
|
required: boolean;
|
|
385
385
|
control: "color";
|
|
386
|
-
defaultValue?: string | undefined;
|
|
387
386
|
label?: string | undefined;
|
|
387
|
+
defaultValue?: string | undefined;
|
|
388
388
|
description?: string | undefined;
|
|
389
389
|
} | {
|
|
390
390
|
type: "boolean";
|
|
391
391
|
required: boolean;
|
|
392
392
|
control: "boolean";
|
|
393
|
-
defaultValue?: boolean | undefined;
|
|
394
393
|
label?: string | undefined;
|
|
394
|
+
defaultValue?: boolean | undefined;
|
|
395
395
|
description?: string | undefined;
|
|
396
396
|
} | {
|
|
397
397
|
options: string[];
|
|
398
398
|
type: "string";
|
|
399
399
|
required: boolean;
|
|
400
400
|
control: "radio";
|
|
401
|
-
defaultValue?: string | undefined;
|
|
402
401
|
label?: string | undefined;
|
|
402
|
+
defaultValue?: string | undefined;
|
|
403
403
|
description?: string | undefined;
|
|
404
404
|
} | {
|
|
405
405
|
options: string[];
|
|
406
406
|
type: "string";
|
|
407
407
|
required: boolean;
|
|
408
408
|
control: "inline-radio";
|
|
409
|
-
defaultValue?: string | undefined;
|
|
410
409
|
label?: string | undefined;
|
|
410
|
+
defaultValue?: string | undefined;
|
|
411
411
|
description?: string | undefined;
|
|
412
412
|
} | {
|
|
413
413
|
options: string[];
|
|
414
414
|
type: "string";
|
|
415
415
|
required: boolean;
|
|
416
416
|
control: "select";
|
|
417
|
-
defaultValue?: string | undefined;
|
|
418
417
|
label?: string | undefined;
|
|
418
|
+
defaultValue?: string | undefined;
|
|
419
419
|
description?: string | undefined;
|
|
420
420
|
} | {
|
|
421
421
|
options: string[];
|
|
422
422
|
type: "string[]";
|
|
423
423
|
required: boolean;
|
|
424
424
|
control: "check";
|
|
425
|
-
defaultValue?: string[] | undefined;
|
|
426
425
|
label?: string | undefined;
|
|
426
|
+
defaultValue?: string[] | undefined;
|
|
427
427
|
description?: string | undefined;
|
|
428
428
|
} | {
|
|
429
429
|
options: string[];
|
|
430
430
|
type: "string[]";
|
|
431
431
|
required: boolean;
|
|
432
432
|
control: "inline-check";
|
|
433
|
-
defaultValue?: string[] | undefined;
|
|
434
433
|
label?: string | undefined;
|
|
434
|
+
defaultValue?: string[] | undefined;
|
|
435
435
|
description?: string | undefined;
|
|
436
436
|
} | {
|
|
437
437
|
options: string[];
|
|
438
438
|
type: "string[]";
|
|
439
439
|
required: boolean;
|
|
440
440
|
control: "multi-select";
|
|
441
|
-
defaultValue?: string[] | undefined;
|
|
442
441
|
label?: string | undefined;
|
|
442
|
+
defaultValue?: string[] | undefined;
|
|
443
443
|
description?: string | undefined;
|
|
444
444
|
} | {
|
|
445
445
|
type: "string";
|
|
446
446
|
required: boolean;
|
|
447
447
|
control: "file";
|
|
448
|
-
defaultValue?: string | undefined;
|
|
449
|
-
accept?: string | undefined;
|
|
450
448
|
label?: string | undefined;
|
|
449
|
+
defaultValue?: string | undefined;
|
|
451
450
|
description?: string | undefined;
|
|
451
|
+
accept?: string | undefined;
|
|
452
452
|
} | {
|
|
453
453
|
type: "string";
|
|
454
454
|
required: boolean;
|
|
455
455
|
control: "url";
|
|
456
|
-
defaultValue?: string | undefined;
|
|
457
456
|
label?: string | undefined;
|
|
457
|
+
defaultValue?: string | undefined;
|
|
458
458
|
description?: string | undefined;
|
|
459
459
|
} | {
|
|
460
460
|
type: "json";
|
|
461
461
|
required: boolean;
|
|
462
462
|
control: "json";
|
|
463
|
-
defaultValue?: unknown;
|
|
464
463
|
label?: string | undefined;
|
|
464
|
+
defaultValue?: unknown;
|
|
465
465
|
description?: string | undefined;
|
|
466
466
|
} | {
|
|
467
467
|
type: "string";
|
|
468
468
|
required: boolean;
|
|
469
469
|
control: "date";
|
|
470
|
-
defaultValue?: string | undefined;
|
|
471
470
|
label?: string | undefined;
|
|
471
|
+
defaultValue?: string | undefined;
|
|
472
472
|
description?: string | undefined;
|
|
473
473
|
} | {
|
|
474
474
|
type: "action";
|
|
475
475
|
required: boolean;
|
|
476
476
|
control: "action";
|
|
477
|
-
defaultValue?: undefined;
|
|
478
477
|
label?: string | undefined;
|
|
478
|
+
defaultValue?: undefined;
|
|
479
479
|
description?: string | undefined;
|
|
480
480
|
} | {
|
|
481
481
|
type: "string";
|
|
482
482
|
required: boolean;
|
|
483
483
|
control: "textContent";
|
|
484
|
-
defaultValue?: string | undefined;
|
|
485
484
|
label?: string | undefined;
|
|
485
|
+
defaultValue?: string | undefined;
|
|
486
486
|
description?: string | undefined;
|
|
487
487
|
} | {
|
|
488
488
|
type: "animationAction";
|
|
489
489
|
required: boolean;
|
|
490
490
|
control: "animationAction";
|
|
491
|
-
defaultValue?: undefined;
|
|
492
491
|
label?: string | undefined;
|
|
492
|
+
defaultValue?: undefined;
|
|
493
493
|
description?: string | undefined;
|
|
494
494
|
}>;
|
|
495
495
|
initialProps?: string[] | undefined;
|
|
@@ -499,157 +499,157 @@ export declare const corePropsMetas: {
|
|
|
499
499
|
type: "number";
|
|
500
500
|
required: boolean;
|
|
501
501
|
control: "number";
|
|
502
|
-
defaultValue?: number | undefined;
|
|
503
502
|
label?: string | undefined;
|
|
503
|
+
defaultValue?: number | undefined;
|
|
504
504
|
description?: string | undefined;
|
|
505
505
|
} | {
|
|
506
506
|
type: "number";
|
|
507
507
|
required: boolean;
|
|
508
508
|
control: "range";
|
|
509
|
-
defaultValue?: number | undefined;
|
|
510
509
|
label?: string | undefined;
|
|
510
|
+
defaultValue?: number | undefined;
|
|
511
511
|
description?: string | undefined;
|
|
512
512
|
} | {
|
|
513
513
|
type: "string";
|
|
514
514
|
required: boolean;
|
|
515
515
|
control: "text";
|
|
516
|
-
defaultValue?: string | undefined;
|
|
517
|
-
rows?: number | undefined;
|
|
518
516
|
label?: string | undefined;
|
|
517
|
+
defaultValue?: string | undefined;
|
|
519
518
|
description?: string | undefined;
|
|
519
|
+
rows?: number | undefined;
|
|
520
520
|
} | {
|
|
521
521
|
type: "resource";
|
|
522
522
|
required: boolean;
|
|
523
523
|
control: "resource";
|
|
524
|
-
defaultValue?: string | undefined;
|
|
525
524
|
label?: string | undefined;
|
|
525
|
+
defaultValue?: string | undefined;
|
|
526
526
|
description?: string | undefined;
|
|
527
527
|
} | {
|
|
528
528
|
type: "string";
|
|
529
529
|
required: boolean;
|
|
530
530
|
control: "code";
|
|
531
531
|
language: "html" | "markdown";
|
|
532
|
-
defaultValue?: string | undefined;
|
|
533
532
|
label?: string | undefined;
|
|
533
|
+
defaultValue?: string | undefined;
|
|
534
534
|
description?: string | undefined;
|
|
535
535
|
} | {
|
|
536
536
|
type: "string";
|
|
537
537
|
required: boolean;
|
|
538
538
|
control: "codetext";
|
|
539
|
-
defaultValue?: string | undefined;
|
|
540
539
|
label?: string | undefined;
|
|
540
|
+
defaultValue?: string | undefined;
|
|
541
541
|
description?: string | undefined;
|
|
542
542
|
} | {
|
|
543
543
|
type: "string";
|
|
544
544
|
required: boolean;
|
|
545
545
|
control: "color";
|
|
546
|
-
defaultValue?: string | undefined;
|
|
547
546
|
label?: string | undefined;
|
|
547
|
+
defaultValue?: string | undefined;
|
|
548
548
|
description?: string | undefined;
|
|
549
549
|
} | {
|
|
550
550
|
type: "boolean";
|
|
551
551
|
required: boolean;
|
|
552
552
|
control: "boolean";
|
|
553
|
-
defaultValue?: boolean | undefined;
|
|
554
553
|
label?: string | undefined;
|
|
554
|
+
defaultValue?: boolean | undefined;
|
|
555
555
|
description?: string | undefined;
|
|
556
556
|
} | {
|
|
557
557
|
options: string[];
|
|
558
558
|
type: "string";
|
|
559
559
|
required: boolean;
|
|
560
560
|
control: "radio";
|
|
561
|
-
defaultValue?: string | undefined;
|
|
562
561
|
label?: string | undefined;
|
|
562
|
+
defaultValue?: string | undefined;
|
|
563
563
|
description?: string | undefined;
|
|
564
564
|
} | {
|
|
565
565
|
options: string[];
|
|
566
566
|
type: "string";
|
|
567
567
|
required: boolean;
|
|
568
568
|
control: "inline-radio";
|
|
569
|
-
defaultValue?: string | undefined;
|
|
570
569
|
label?: string | undefined;
|
|
570
|
+
defaultValue?: string | undefined;
|
|
571
571
|
description?: string | undefined;
|
|
572
572
|
} | {
|
|
573
573
|
options: string[];
|
|
574
574
|
type: "string";
|
|
575
575
|
required: boolean;
|
|
576
576
|
control: "select";
|
|
577
|
-
defaultValue?: string | undefined;
|
|
578
577
|
label?: string | undefined;
|
|
578
|
+
defaultValue?: string | undefined;
|
|
579
579
|
description?: string | undefined;
|
|
580
580
|
} | {
|
|
581
581
|
options: string[];
|
|
582
582
|
type: "string[]";
|
|
583
583
|
required: boolean;
|
|
584
584
|
control: "check";
|
|
585
|
-
defaultValue?: string[] | undefined;
|
|
586
585
|
label?: string | undefined;
|
|
586
|
+
defaultValue?: string[] | undefined;
|
|
587
587
|
description?: string | undefined;
|
|
588
588
|
} | {
|
|
589
589
|
options: string[];
|
|
590
590
|
type: "string[]";
|
|
591
591
|
required: boolean;
|
|
592
592
|
control: "inline-check";
|
|
593
|
-
defaultValue?: string[] | undefined;
|
|
594
593
|
label?: string | undefined;
|
|
594
|
+
defaultValue?: string[] | undefined;
|
|
595
595
|
description?: string | undefined;
|
|
596
596
|
} | {
|
|
597
597
|
options: string[];
|
|
598
598
|
type: "string[]";
|
|
599
599
|
required: boolean;
|
|
600
600
|
control: "multi-select";
|
|
601
|
-
defaultValue?: string[] | undefined;
|
|
602
601
|
label?: string | undefined;
|
|
602
|
+
defaultValue?: string[] | undefined;
|
|
603
603
|
description?: string | undefined;
|
|
604
604
|
} | {
|
|
605
605
|
type: "string";
|
|
606
606
|
required: boolean;
|
|
607
607
|
control: "file";
|
|
608
|
-
defaultValue?: string | undefined;
|
|
609
|
-
accept?: string | undefined;
|
|
610
608
|
label?: string | undefined;
|
|
609
|
+
defaultValue?: string | undefined;
|
|
611
610
|
description?: string | undefined;
|
|
611
|
+
accept?: string | undefined;
|
|
612
612
|
} | {
|
|
613
613
|
type: "string";
|
|
614
614
|
required: boolean;
|
|
615
615
|
control: "url";
|
|
616
|
-
defaultValue?: string | undefined;
|
|
617
616
|
label?: string | undefined;
|
|
617
|
+
defaultValue?: string | undefined;
|
|
618
618
|
description?: string | undefined;
|
|
619
619
|
} | {
|
|
620
620
|
type: "json";
|
|
621
621
|
required: boolean;
|
|
622
622
|
control: "json";
|
|
623
|
-
defaultValue?: unknown;
|
|
624
623
|
label?: string | undefined;
|
|
624
|
+
defaultValue?: unknown;
|
|
625
625
|
description?: string | undefined;
|
|
626
626
|
} | {
|
|
627
627
|
type: "string";
|
|
628
628
|
required: boolean;
|
|
629
629
|
control: "date";
|
|
630
|
-
defaultValue?: string | undefined;
|
|
631
630
|
label?: string | undefined;
|
|
631
|
+
defaultValue?: string | undefined;
|
|
632
632
|
description?: string | undefined;
|
|
633
633
|
} | {
|
|
634
634
|
type: "action";
|
|
635
635
|
required: boolean;
|
|
636
636
|
control: "action";
|
|
637
|
-
defaultValue?: undefined;
|
|
638
637
|
label?: string | undefined;
|
|
638
|
+
defaultValue?: undefined;
|
|
639
639
|
description?: string | undefined;
|
|
640
640
|
} | {
|
|
641
641
|
type: "string";
|
|
642
642
|
required: boolean;
|
|
643
643
|
control: "textContent";
|
|
644
|
-
defaultValue?: string | undefined;
|
|
645
644
|
label?: string | undefined;
|
|
645
|
+
defaultValue?: string | undefined;
|
|
646
646
|
description?: string | undefined;
|
|
647
647
|
} | {
|
|
648
648
|
type: "animationAction";
|
|
649
649
|
required: boolean;
|
|
650
650
|
control: "animationAction";
|
|
651
|
-
defaultValue?: undefined;
|
|
652
651
|
label?: string | undefined;
|
|
652
|
+
defaultValue?: undefined;
|
|
653
653
|
description?: string | undefined;
|
|
654
654
|
}>;
|
|
655
655
|
initialProps?: string[] | undefined;
|
|
@@ -659,157 +659,157 @@ export declare const corePropsMetas: {
|
|
|
659
659
|
type: "number";
|
|
660
660
|
required: boolean;
|
|
661
661
|
control: "number";
|
|
662
|
-
defaultValue?: number | undefined;
|
|
663
662
|
label?: string | undefined;
|
|
663
|
+
defaultValue?: number | undefined;
|
|
664
664
|
description?: string | undefined;
|
|
665
665
|
} | {
|
|
666
666
|
type: "number";
|
|
667
667
|
required: boolean;
|
|
668
668
|
control: "range";
|
|
669
|
-
defaultValue?: number | undefined;
|
|
670
669
|
label?: string | undefined;
|
|
670
|
+
defaultValue?: number | undefined;
|
|
671
671
|
description?: string | undefined;
|
|
672
672
|
} | {
|
|
673
673
|
type: "string";
|
|
674
674
|
required: boolean;
|
|
675
675
|
control: "text";
|
|
676
|
-
defaultValue?: string | undefined;
|
|
677
|
-
rows?: number | undefined;
|
|
678
676
|
label?: string | undefined;
|
|
677
|
+
defaultValue?: string | undefined;
|
|
679
678
|
description?: string | undefined;
|
|
679
|
+
rows?: number | undefined;
|
|
680
680
|
} | {
|
|
681
681
|
type: "resource";
|
|
682
682
|
required: boolean;
|
|
683
683
|
control: "resource";
|
|
684
|
-
defaultValue?: string | undefined;
|
|
685
684
|
label?: string | undefined;
|
|
685
|
+
defaultValue?: string | undefined;
|
|
686
686
|
description?: string | undefined;
|
|
687
687
|
} | {
|
|
688
688
|
type: "string";
|
|
689
689
|
required: boolean;
|
|
690
690
|
control: "code";
|
|
691
691
|
language: "html" | "markdown";
|
|
692
|
-
defaultValue?: string | undefined;
|
|
693
692
|
label?: string | undefined;
|
|
693
|
+
defaultValue?: string | undefined;
|
|
694
694
|
description?: string | undefined;
|
|
695
695
|
} | {
|
|
696
696
|
type: "string";
|
|
697
697
|
required: boolean;
|
|
698
698
|
control: "codetext";
|
|
699
|
-
defaultValue?: string | undefined;
|
|
700
699
|
label?: string | undefined;
|
|
700
|
+
defaultValue?: string | undefined;
|
|
701
701
|
description?: string | undefined;
|
|
702
702
|
} | {
|
|
703
703
|
type: "string";
|
|
704
704
|
required: boolean;
|
|
705
705
|
control: "color";
|
|
706
|
-
defaultValue?: string | undefined;
|
|
707
706
|
label?: string | undefined;
|
|
707
|
+
defaultValue?: string | undefined;
|
|
708
708
|
description?: string | undefined;
|
|
709
709
|
} | {
|
|
710
710
|
type: "boolean";
|
|
711
711
|
required: boolean;
|
|
712
712
|
control: "boolean";
|
|
713
|
-
defaultValue?: boolean | undefined;
|
|
714
713
|
label?: string | undefined;
|
|
714
|
+
defaultValue?: boolean | undefined;
|
|
715
715
|
description?: string | undefined;
|
|
716
716
|
} | {
|
|
717
717
|
options: string[];
|
|
718
718
|
type: "string";
|
|
719
719
|
required: boolean;
|
|
720
720
|
control: "radio";
|
|
721
|
-
defaultValue?: string | undefined;
|
|
722
721
|
label?: string | undefined;
|
|
722
|
+
defaultValue?: string | undefined;
|
|
723
723
|
description?: string | undefined;
|
|
724
724
|
} | {
|
|
725
725
|
options: string[];
|
|
726
726
|
type: "string";
|
|
727
727
|
required: boolean;
|
|
728
728
|
control: "inline-radio";
|
|
729
|
-
defaultValue?: string | undefined;
|
|
730
729
|
label?: string | undefined;
|
|
730
|
+
defaultValue?: string | undefined;
|
|
731
731
|
description?: string | undefined;
|
|
732
732
|
} | {
|
|
733
733
|
options: string[];
|
|
734
734
|
type: "string";
|
|
735
735
|
required: boolean;
|
|
736
736
|
control: "select";
|
|
737
|
-
defaultValue?: string | undefined;
|
|
738
737
|
label?: string | undefined;
|
|
738
|
+
defaultValue?: string | undefined;
|
|
739
739
|
description?: string | undefined;
|
|
740
740
|
} | {
|
|
741
741
|
options: string[];
|
|
742
742
|
type: "string[]";
|
|
743
743
|
required: boolean;
|
|
744
744
|
control: "check";
|
|
745
|
-
defaultValue?: string[] | undefined;
|
|
746
745
|
label?: string | undefined;
|
|
746
|
+
defaultValue?: string[] | undefined;
|
|
747
747
|
description?: string | undefined;
|
|
748
748
|
} | {
|
|
749
749
|
options: string[];
|
|
750
750
|
type: "string[]";
|
|
751
751
|
required: boolean;
|
|
752
752
|
control: "inline-check";
|
|
753
|
-
defaultValue?: string[] | undefined;
|
|
754
753
|
label?: string | undefined;
|
|
754
|
+
defaultValue?: string[] | undefined;
|
|
755
755
|
description?: string | undefined;
|
|
756
756
|
} | {
|
|
757
757
|
options: string[];
|
|
758
758
|
type: "string[]";
|
|
759
759
|
required: boolean;
|
|
760
760
|
control: "multi-select";
|
|
761
|
-
defaultValue?: string[] | undefined;
|
|
762
761
|
label?: string | undefined;
|
|
762
|
+
defaultValue?: string[] | undefined;
|
|
763
763
|
description?: string | undefined;
|
|
764
764
|
} | {
|
|
765
765
|
type: "string";
|
|
766
766
|
required: boolean;
|
|
767
767
|
control: "file";
|
|
768
|
-
defaultValue?: string | undefined;
|
|
769
|
-
accept?: string | undefined;
|
|
770
768
|
label?: string | undefined;
|
|
769
|
+
defaultValue?: string | undefined;
|
|
771
770
|
description?: string | undefined;
|
|
771
|
+
accept?: string | undefined;
|
|
772
772
|
} | {
|
|
773
773
|
type: "string";
|
|
774
774
|
required: boolean;
|
|
775
775
|
control: "url";
|
|
776
|
-
defaultValue?: string | undefined;
|
|
777
776
|
label?: string | undefined;
|
|
777
|
+
defaultValue?: string | undefined;
|
|
778
778
|
description?: string | undefined;
|
|
779
779
|
} | {
|
|
780
780
|
type: "json";
|
|
781
781
|
required: boolean;
|
|
782
782
|
control: "json";
|
|
783
|
-
defaultValue?: unknown;
|
|
784
783
|
label?: string | undefined;
|
|
784
|
+
defaultValue?: unknown;
|
|
785
785
|
description?: string | undefined;
|
|
786
786
|
} | {
|
|
787
787
|
type: "string";
|
|
788
788
|
required: boolean;
|
|
789
789
|
control: "date";
|
|
790
|
-
defaultValue?: string | undefined;
|
|
791
790
|
label?: string | undefined;
|
|
791
|
+
defaultValue?: string | undefined;
|
|
792
792
|
description?: string | undefined;
|
|
793
793
|
} | {
|
|
794
794
|
type: "action";
|
|
795
795
|
required: boolean;
|
|
796
796
|
control: "action";
|
|
797
|
-
defaultValue?: undefined;
|
|
798
797
|
label?: string | undefined;
|
|
798
|
+
defaultValue?: undefined;
|
|
799
799
|
description?: string | undefined;
|
|
800
800
|
} | {
|
|
801
801
|
type: "string";
|
|
802
802
|
required: boolean;
|
|
803
803
|
control: "textContent";
|
|
804
|
-
defaultValue?: string | undefined;
|
|
805
804
|
label?: string | undefined;
|
|
805
|
+
defaultValue?: string | undefined;
|
|
806
806
|
description?: string | undefined;
|
|
807
807
|
} | {
|
|
808
808
|
type: "animationAction";
|
|
809
809
|
required: boolean;
|
|
810
810
|
control: "animationAction";
|
|
811
|
-
defaultValue?: undefined;
|
|
812
811
|
label?: string | undefined;
|
|
812
|
+
defaultValue?: undefined;
|
|
813
813
|
description?: string | undefined;
|
|
814
814
|
}>;
|
|
815
815
|
initialProps?: string[] | undefined;
|