@webflow/designer-extension-typings 2.0.33 → 2.0.34
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/api.d.ts +7 -1
- package/components.d.ts +37 -0
- package/element-settings.d.ts +55 -21
- package/elements-generated.d.ts +966 -337
- package/package.json +1 -1
- package/styles.d.ts +112 -28
package/elements-generated.d.ts
CHANGED
|
@@ -12,6 +12,11 @@ type BlockElementTag =
|
|
|
12
12
|
| 'address'
|
|
13
13
|
| 'figure';
|
|
14
14
|
|
|
15
|
+
type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
|
|
16
|
+
type HeadingTag = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
17
|
+
|
|
18
|
+
type ListTag = 'ul' | 'ol';
|
|
19
|
+
|
|
15
20
|
type TagToElement = {
|
|
16
21
|
div: BlockElement;
|
|
17
22
|
header: BlockElement;
|
|
@@ -50,7 +55,8 @@ type InsertOrMoveElement = <
|
|
|
50
55
|
target extends el | ElementPreset<el> | Component | BuilderElement | string,
|
|
51
56
|
>(
|
|
52
57
|
this: {id: FullElementId},
|
|
53
|
-
that: target
|
|
58
|
+
that: target,
|
|
59
|
+
settings?: SetSettingsInput
|
|
54
60
|
) => Promise<
|
|
55
61
|
target extends AnyElement
|
|
56
62
|
? target
|
|
@@ -95,10 +101,27 @@ interface NoCustomAttributes {
|
|
|
95
101
|
readonly customAttributes: false;
|
|
96
102
|
}
|
|
97
103
|
|
|
104
|
+
interface Attributes {
|
|
105
|
+
readonly attributes: true;
|
|
106
|
+
getAttributes(this: {id: FullElementId}): Promise<Array<ElementAttribute>>;
|
|
107
|
+
getResolvedAttributes(this: {
|
|
108
|
+
id: FullElementId;
|
|
109
|
+
}): Promise<Array<ResolvedElementAttribute>>;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
interface NoAttributes {
|
|
113
|
+
readonly attributes: false;
|
|
114
|
+
}
|
|
115
|
+
|
|
98
116
|
interface DomId {
|
|
99
117
|
readonly domId: true;
|
|
100
118
|
getDomId(this: {id: FullElementId}): Promise<null | string>;
|
|
119
|
+
getDomId(
|
|
120
|
+
this: {id: FullElementId},
|
|
121
|
+
options: {bindings: true}
|
|
122
|
+
): Promise<string | BindingValue | null>;
|
|
101
123
|
setDomId(this: {id: FullElementId}, domId: string): Promise<null>;
|
|
124
|
+
setDomId(this: {id: FullElementId}, binding: BindingInput): Promise<null>;
|
|
102
125
|
}
|
|
103
126
|
|
|
104
127
|
interface NoDomId {
|
|
@@ -183,10 +206,29 @@ interface NoElementSettings {
|
|
|
183
206
|
readonly elementSettings: false;
|
|
184
207
|
}
|
|
185
208
|
|
|
209
|
+
interface Visibility {
|
|
210
|
+
readonly visibility: true;
|
|
211
|
+
getVisibility(this: {id: FullElementId}): Promise<boolean>;
|
|
212
|
+
getVisibility(
|
|
213
|
+
this: {id: FullElementId},
|
|
214
|
+
options: {bindings: true}
|
|
215
|
+
): Promise<boolean | BindingValue | null>;
|
|
216
|
+
setVisibility(this: {id: FullElementId}, visibility: boolean): Promise<null>;
|
|
217
|
+
setVisibility(
|
|
218
|
+
this: {id: FullElementId},
|
|
219
|
+
binding: BindingInput
|
|
220
|
+
): Promise<null>;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
interface NoVisibility {
|
|
224
|
+
readonly visibility: false;
|
|
225
|
+
}
|
|
226
|
+
|
|
186
227
|
interface ComponentElement
|
|
187
228
|
extends
|
|
188
229
|
WebflowElement,
|
|
189
230
|
NoCustomAttributes,
|
|
231
|
+
NoAttributes,
|
|
190
232
|
NoDomId,
|
|
191
233
|
DisplayName,
|
|
192
234
|
NoStyles,
|
|
@@ -194,7 +236,8 @@ interface ComponentElement
|
|
|
194
236
|
NoTextContent,
|
|
195
237
|
NoAppConnections,
|
|
196
238
|
BindableSourceSearch,
|
|
197
|
-
NoElementSettings
|
|
239
|
+
NoElementSettings,
|
|
240
|
+
NoVisibility {
|
|
198
241
|
readonly id: FullElementId;
|
|
199
242
|
readonly type: 'ComponentInstance';
|
|
200
243
|
readonly plugin: '';
|
|
@@ -215,13 +258,15 @@ interface UnknownElement
|
|
|
215
258
|
extends
|
|
216
259
|
WebflowElement,
|
|
217
260
|
NoCustomAttributes,
|
|
218
|
-
|
|
261
|
+
Attributes,
|
|
262
|
+
DomId,
|
|
219
263
|
NoStyles,
|
|
220
264
|
NoChildren,
|
|
221
265
|
NoTextContent,
|
|
222
266
|
NoAppConnections,
|
|
223
267
|
BindableSourceSearch,
|
|
224
|
-
ElementSettings
|
|
268
|
+
ElementSettings,
|
|
269
|
+
Visibility {
|
|
225
270
|
readonly id: FullElementId;
|
|
226
271
|
readonly type: '';
|
|
227
272
|
readonly plugin: '';
|
|
@@ -231,19 +276,23 @@ interface DOMElement
|
|
|
231
276
|
extends
|
|
232
277
|
WebflowElement,
|
|
233
278
|
NoCustomAttributes,
|
|
234
|
-
|
|
279
|
+
Attributes,
|
|
280
|
+
DomId,
|
|
235
281
|
Styles,
|
|
236
282
|
Children,
|
|
237
283
|
TextContent,
|
|
238
284
|
AppConnections,
|
|
239
285
|
DisplayName,
|
|
240
286
|
BindableSourceSearch,
|
|
241
|
-
ElementSettings
|
|
287
|
+
ElementSettings,
|
|
288
|
+
Visibility {
|
|
242
289
|
readonly id: FullElementId;
|
|
243
290
|
readonly type: 'DOM';
|
|
244
291
|
readonly plugin: 'Builtin';
|
|
245
292
|
getTag(): Promise<null | string>;
|
|
293
|
+
getTag(options: {bindings: true}): Promise<string | BindingValue | null>;
|
|
246
294
|
setTag(tag: string): Promise<null>;
|
|
295
|
+
setTag(binding: BindingInput): Promise<null>;
|
|
247
296
|
getAttribute(name: string): Promise<null | string>;
|
|
248
297
|
setAttribute(name: string, value: string): Promise<null>;
|
|
249
298
|
getAllAttributes(): Promise<Array<NamedValue> | null>;
|
|
@@ -254,14 +303,16 @@ interface SearchFormElement
|
|
|
254
303
|
extends
|
|
255
304
|
WebflowElement,
|
|
256
305
|
CustomAttributes,
|
|
257
|
-
|
|
306
|
+
Attributes,
|
|
307
|
+
DomId,
|
|
258
308
|
Styles,
|
|
259
309
|
Children,
|
|
260
310
|
NoTextContent,
|
|
261
311
|
NoAppConnections,
|
|
262
312
|
DisplayName,
|
|
263
313
|
BindableSourceSearch,
|
|
264
|
-
ElementSettings
|
|
314
|
+
ElementSettings,
|
|
315
|
+
Visibility {
|
|
265
316
|
readonly id: FullElementId;
|
|
266
317
|
readonly type: 'SearchForm';
|
|
267
318
|
readonly plugin: 'Search';
|
|
@@ -271,14 +322,16 @@ interface SearchInputElement
|
|
|
271
322
|
extends
|
|
272
323
|
WebflowElement,
|
|
273
324
|
CustomAttributes,
|
|
274
|
-
|
|
325
|
+
Attributes,
|
|
326
|
+
DomId,
|
|
275
327
|
Styles,
|
|
276
328
|
NoChildren,
|
|
277
329
|
NoTextContent,
|
|
278
330
|
NoAppConnections,
|
|
279
331
|
DisplayName,
|
|
280
332
|
BindableSourceSearch,
|
|
281
|
-
ElementSettings
|
|
333
|
+
ElementSettings,
|
|
334
|
+
Visibility {
|
|
282
335
|
readonly id: FullElementId;
|
|
283
336
|
readonly type: 'SearchInput';
|
|
284
337
|
readonly plugin: 'Search';
|
|
@@ -288,14 +341,16 @@ interface SearchButtonElement
|
|
|
288
341
|
extends
|
|
289
342
|
WebflowElement,
|
|
290
343
|
CustomAttributes,
|
|
291
|
-
|
|
344
|
+
Attributes,
|
|
345
|
+
DomId,
|
|
292
346
|
Styles,
|
|
293
347
|
NoChildren,
|
|
294
348
|
NoTextContent,
|
|
295
349
|
NoAppConnections,
|
|
296
350
|
DisplayName,
|
|
297
351
|
BindableSourceSearch,
|
|
298
|
-
ElementSettings
|
|
352
|
+
ElementSettings,
|
|
353
|
+
Visibility {
|
|
299
354
|
readonly id: FullElementId;
|
|
300
355
|
readonly type: 'SearchButton';
|
|
301
356
|
readonly plugin: 'Search';
|
|
@@ -305,6 +360,7 @@ interface SearchResultEmptyElement
|
|
|
305
360
|
extends
|
|
306
361
|
WebflowElement,
|
|
307
362
|
CustomAttributes,
|
|
363
|
+
Attributes,
|
|
308
364
|
DomId,
|
|
309
365
|
Styles,
|
|
310
366
|
Children,
|
|
@@ -312,7 +368,8 @@ interface SearchResultEmptyElement
|
|
|
312
368
|
NoAppConnections,
|
|
313
369
|
DisplayName,
|
|
314
370
|
BindableSourceSearch,
|
|
315
|
-
ElementSettings
|
|
371
|
+
ElementSettings,
|
|
372
|
+
Visibility {
|
|
316
373
|
readonly id: FullElementId;
|
|
317
374
|
readonly type: 'SearchResultEmpty';
|
|
318
375
|
readonly plugin: 'Search';
|
|
@@ -322,6 +379,7 @@ interface SearchResultWrapperElement
|
|
|
322
379
|
extends
|
|
323
380
|
WebflowElement,
|
|
324
381
|
CustomAttributes,
|
|
382
|
+
Attributes,
|
|
325
383
|
DomId,
|
|
326
384
|
Styles,
|
|
327
385
|
Children,
|
|
@@ -329,7 +387,8 @@ interface SearchResultWrapperElement
|
|
|
329
387
|
NoAppConnections,
|
|
330
388
|
DisplayName,
|
|
331
389
|
BindableSourceSearch,
|
|
332
|
-
ElementSettings
|
|
390
|
+
ElementSettings,
|
|
391
|
+
Visibility {
|
|
333
392
|
readonly id: FullElementId;
|
|
334
393
|
readonly type: 'SearchResultWrapper';
|
|
335
394
|
readonly plugin: 'Search';
|
|
@@ -339,6 +398,7 @@ interface SearchResultListElement
|
|
|
339
398
|
extends
|
|
340
399
|
WebflowElement,
|
|
341
400
|
CustomAttributes,
|
|
401
|
+
Attributes,
|
|
342
402
|
DomId,
|
|
343
403
|
Styles,
|
|
344
404
|
Children,
|
|
@@ -346,7 +406,8 @@ interface SearchResultListElement
|
|
|
346
406
|
NoAppConnections,
|
|
347
407
|
DisplayName,
|
|
348
408
|
BindableSourceSearch,
|
|
349
|
-
ElementSettings
|
|
409
|
+
ElementSettings,
|
|
410
|
+
Visibility {
|
|
350
411
|
readonly id: FullElementId;
|
|
351
412
|
readonly type: 'SearchResultList';
|
|
352
413
|
readonly plugin: 'Search';
|
|
@@ -356,6 +417,7 @@ interface SearchResultItemElement
|
|
|
356
417
|
extends
|
|
357
418
|
WebflowElement,
|
|
358
419
|
CustomAttributes,
|
|
420
|
+
Attributes,
|
|
359
421
|
DomId,
|
|
360
422
|
Styles,
|
|
361
423
|
Children,
|
|
@@ -363,7 +425,8 @@ interface SearchResultItemElement
|
|
|
363
425
|
NoAppConnections,
|
|
364
426
|
DisplayName,
|
|
365
427
|
BindableSourceSearch,
|
|
366
|
-
ElementSettings
|
|
428
|
+
ElementSettings,
|
|
429
|
+
Visibility {
|
|
367
430
|
readonly id: FullElementId;
|
|
368
431
|
readonly type: 'SearchResultItem';
|
|
369
432
|
readonly plugin: 'Search';
|
|
@@ -373,6 +436,7 @@ interface BlockElement
|
|
|
373
436
|
extends
|
|
374
437
|
WebflowElement,
|
|
375
438
|
CustomAttributes,
|
|
439
|
+
Attributes,
|
|
376
440
|
DomId,
|
|
377
441
|
Styles,
|
|
378
442
|
Children,
|
|
@@ -380,7 +444,8 @@ interface BlockElement
|
|
|
380
444
|
NoAppConnections,
|
|
381
445
|
DisplayName,
|
|
382
446
|
BindableSourceSearch,
|
|
383
|
-
ElementSettings
|
|
447
|
+
ElementSettings,
|
|
448
|
+
Visibility {
|
|
384
449
|
readonly id: FullElementId;
|
|
385
450
|
readonly type: 'Block';
|
|
386
451
|
readonly plugin: 'Basic';
|
|
@@ -392,6 +457,7 @@ interface BlockquoteElement
|
|
|
392
457
|
extends
|
|
393
458
|
WebflowElement,
|
|
394
459
|
CustomAttributes,
|
|
460
|
+
Attributes,
|
|
395
461
|
DomId,
|
|
396
462
|
Styles,
|
|
397
463
|
Children,
|
|
@@ -399,7 +465,8 @@ interface BlockquoteElement
|
|
|
399
465
|
NoAppConnections,
|
|
400
466
|
DisplayName,
|
|
401
467
|
BindableSourceSearch,
|
|
402
|
-
ElementSettings
|
|
468
|
+
ElementSettings,
|
|
469
|
+
Visibility {
|
|
403
470
|
readonly id: FullElementId;
|
|
404
471
|
readonly type: 'Blockquote';
|
|
405
472
|
readonly plugin: 'Basic';
|
|
@@ -409,6 +476,7 @@ interface CodeBlockElement
|
|
|
409
476
|
extends
|
|
410
477
|
WebflowElement,
|
|
411
478
|
CustomAttributes,
|
|
479
|
+
Attributes,
|
|
412
480
|
DomId,
|
|
413
481
|
Styles,
|
|
414
482
|
NoChildren,
|
|
@@ -416,7 +484,8 @@ interface CodeBlockElement
|
|
|
416
484
|
NoAppConnections,
|
|
417
485
|
DisplayName,
|
|
418
486
|
BindableSourceSearch,
|
|
419
|
-
ElementSettings
|
|
487
|
+
ElementSettings,
|
|
488
|
+
Visibility {
|
|
420
489
|
readonly id: FullElementId;
|
|
421
490
|
readonly type: 'CodeBlock';
|
|
422
491
|
readonly plugin: 'Basic';
|
|
@@ -426,6 +495,7 @@ interface EmphasizedElement
|
|
|
426
495
|
extends
|
|
427
496
|
WebflowElement,
|
|
428
497
|
CustomAttributes,
|
|
498
|
+
Attributes,
|
|
429
499
|
DomId,
|
|
430
500
|
Styles,
|
|
431
501
|
Children,
|
|
@@ -433,7 +503,8 @@ interface EmphasizedElement
|
|
|
433
503
|
NoAppConnections,
|
|
434
504
|
DisplayName,
|
|
435
505
|
BindableSourceSearch,
|
|
436
|
-
ElementSettings
|
|
506
|
+
ElementSettings,
|
|
507
|
+
Visibility {
|
|
437
508
|
readonly id: FullElementId;
|
|
438
509
|
readonly type: 'Emphasized';
|
|
439
510
|
readonly plugin: 'Basic';
|
|
@@ -443,6 +514,7 @@ interface FigcaptionElement
|
|
|
443
514
|
extends
|
|
444
515
|
WebflowElement,
|
|
445
516
|
CustomAttributes,
|
|
517
|
+
Attributes,
|
|
446
518
|
DomId,
|
|
447
519
|
Styles,
|
|
448
520
|
Children,
|
|
@@ -450,7 +522,8 @@ interface FigcaptionElement
|
|
|
450
522
|
NoAppConnections,
|
|
451
523
|
DisplayName,
|
|
452
524
|
BindableSourceSearch,
|
|
453
|
-
ElementSettings
|
|
525
|
+
ElementSettings,
|
|
526
|
+
Visibility {
|
|
454
527
|
readonly id: FullElementId;
|
|
455
528
|
readonly type: 'Figcaption';
|
|
456
529
|
readonly plugin: 'Basic';
|
|
@@ -460,6 +533,7 @@ interface FigureElement
|
|
|
460
533
|
extends
|
|
461
534
|
WebflowElement,
|
|
462
535
|
CustomAttributes,
|
|
536
|
+
Attributes,
|
|
463
537
|
DomId,
|
|
464
538
|
Styles,
|
|
465
539
|
Children,
|
|
@@ -467,7 +541,8 @@ interface FigureElement
|
|
|
467
541
|
NoAppConnections,
|
|
468
542
|
DisplayName,
|
|
469
543
|
BindableSourceSearch,
|
|
470
|
-
ElementSettings
|
|
544
|
+
ElementSettings,
|
|
545
|
+
Visibility {
|
|
471
546
|
readonly id: FullElementId;
|
|
472
547
|
readonly type: 'Figure';
|
|
473
548
|
readonly plugin: 'Basic';
|
|
@@ -477,6 +552,7 @@ interface HeadingElement
|
|
|
477
552
|
extends
|
|
478
553
|
WebflowElement,
|
|
479
554
|
CustomAttributes,
|
|
555
|
+
Attributes,
|
|
480
556
|
DomId,
|
|
481
557
|
Styles,
|
|
482
558
|
Children,
|
|
@@ -484,26 +560,33 @@ interface HeadingElement
|
|
|
484
560
|
NoAppConnections,
|
|
485
561
|
DisplayName,
|
|
486
562
|
BindableSourceSearch,
|
|
487
|
-
ElementSettings
|
|
563
|
+
ElementSettings,
|
|
564
|
+
Visibility {
|
|
488
565
|
readonly id: FullElementId;
|
|
489
566
|
readonly type: 'Heading';
|
|
490
567
|
readonly plugin: 'Basic';
|
|
491
|
-
getHeadingLevel(): Promise<null |
|
|
492
|
-
setHeadingLevel(level:
|
|
568
|
+
getHeadingLevel(): Promise<null | HeadingLevel>;
|
|
569
|
+
setHeadingLevel(level: HeadingLevel): Promise<null>;
|
|
570
|
+
getTag(): Promise<null | HeadingTag>;
|
|
571
|
+
getTag(options: {bindings: true}): Promise<HeadingTag | BindingValue | null>;
|
|
572
|
+
setTag(tag: HeadingTag): Promise<null>;
|
|
573
|
+
setTag(binding: BindingInput): Promise<null>;
|
|
493
574
|
}
|
|
494
575
|
|
|
495
576
|
interface IframeElement
|
|
496
577
|
extends
|
|
497
578
|
WebflowElement,
|
|
498
579
|
NoCustomAttributes,
|
|
499
|
-
|
|
580
|
+
NoAttributes,
|
|
581
|
+
DomId,
|
|
500
582
|
NoStyles,
|
|
501
583
|
NoChildren,
|
|
502
584
|
NoTextContent,
|
|
503
585
|
NoAppConnections,
|
|
504
586
|
DisplayName,
|
|
505
587
|
BindableSourceSearch,
|
|
506
|
-
ElementSettings
|
|
588
|
+
ElementSettings,
|
|
589
|
+
NoVisibility {
|
|
507
590
|
readonly id: FullElementId;
|
|
508
591
|
readonly type: 'Iframe';
|
|
509
592
|
readonly plugin: 'Basic';
|
|
@@ -513,14 +596,16 @@ interface ImageElement
|
|
|
513
596
|
extends
|
|
514
597
|
WebflowElement,
|
|
515
598
|
CustomAttributes,
|
|
516
|
-
|
|
599
|
+
Attributes,
|
|
600
|
+
DomId,
|
|
517
601
|
Styles,
|
|
518
602
|
NoChildren,
|
|
519
603
|
NoTextContent,
|
|
520
604
|
AppConnections,
|
|
521
605
|
DisplayName,
|
|
522
606
|
BindableSourceSearch,
|
|
523
|
-
ElementSettings
|
|
607
|
+
ElementSettings,
|
|
608
|
+
Visibility {
|
|
524
609
|
readonly id: FullElementId;
|
|
525
610
|
readonly type: 'Image';
|
|
526
611
|
readonly plugin: 'Basic';
|
|
@@ -534,6 +619,7 @@ interface LinkElement
|
|
|
534
619
|
extends
|
|
535
620
|
WebflowElement,
|
|
536
621
|
CustomAttributes,
|
|
622
|
+
Attributes,
|
|
537
623
|
DomId,
|
|
538
624
|
Styles,
|
|
539
625
|
Children,
|
|
@@ -541,7 +627,8 @@ interface LinkElement
|
|
|
541
627
|
NoAppConnections,
|
|
542
628
|
DisplayName,
|
|
543
629
|
BindableSourceSearch,
|
|
544
|
-
ElementSettings
|
|
630
|
+
ElementSettings,
|
|
631
|
+
Visibility {
|
|
545
632
|
readonly id: FullElementId;
|
|
546
633
|
readonly type: 'Link';
|
|
547
634
|
readonly plugin: 'Basic';
|
|
@@ -561,6 +648,7 @@ interface ListElement
|
|
|
561
648
|
extends
|
|
562
649
|
WebflowElement,
|
|
563
650
|
CustomAttributes,
|
|
651
|
+
Attributes,
|
|
564
652
|
DomId,
|
|
565
653
|
Styles,
|
|
566
654
|
Children,
|
|
@@ -568,16 +656,20 @@ interface ListElement
|
|
|
568
656
|
NoAppConnections,
|
|
569
657
|
DisplayName,
|
|
570
658
|
BindableSourceSearch,
|
|
571
|
-
ElementSettings
|
|
659
|
+
ElementSettings,
|
|
660
|
+
Visibility {
|
|
572
661
|
readonly id: FullElementId;
|
|
573
662
|
readonly type: 'List';
|
|
574
663
|
readonly plugin: 'Basic';
|
|
664
|
+
getTag(): Promise<null | ListTag>;
|
|
665
|
+
setTag(tag: ListTag): Promise<null>;
|
|
575
666
|
}
|
|
576
667
|
|
|
577
668
|
interface ListItemElement
|
|
578
669
|
extends
|
|
579
670
|
WebflowElement,
|
|
580
671
|
CustomAttributes,
|
|
672
|
+
Attributes,
|
|
581
673
|
DomId,
|
|
582
674
|
Styles,
|
|
583
675
|
Children,
|
|
@@ -585,7 +677,8 @@ interface ListItemElement
|
|
|
585
677
|
NoAppConnections,
|
|
586
678
|
DisplayName,
|
|
587
679
|
BindableSourceSearch,
|
|
588
|
-
ElementSettings
|
|
680
|
+
ElementSettings,
|
|
681
|
+
Visibility {
|
|
589
682
|
readonly id: FullElementId;
|
|
590
683
|
readonly type: 'ListItem';
|
|
591
684
|
readonly plugin: 'Basic';
|
|
@@ -595,6 +688,7 @@ interface ParagraphElement
|
|
|
595
688
|
extends
|
|
596
689
|
WebflowElement,
|
|
597
690
|
CustomAttributes,
|
|
691
|
+
Attributes,
|
|
598
692
|
DomId,
|
|
599
693
|
Styles,
|
|
600
694
|
Children,
|
|
@@ -602,7 +696,8 @@ interface ParagraphElement
|
|
|
602
696
|
NoAppConnections,
|
|
603
697
|
DisplayName,
|
|
604
698
|
BindableSourceSearch,
|
|
605
|
-
ElementSettings
|
|
699
|
+
ElementSettings,
|
|
700
|
+
Visibility {
|
|
606
701
|
readonly id: FullElementId;
|
|
607
702
|
readonly type: 'Paragraph';
|
|
608
703
|
readonly plugin: 'Basic';
|
|
@@ -612,6 +707,7 @@ interface RichTextElement
|
|
|
612
707
|
extends
|
|
613
708
|
WebflowElement,
|
|
614
709
|
CustomAttributes,
|
|
710
|
+
Attributes,
|
|
615
711
|
DomId,
|
|
616
712
|
Styles,
|
|
617
713
|
Children,
|
|
@@ -619,16 +715,20 @@ interface RichTextElement
|
|
|
619
715
|
NoAppConnections,
|
|
620
716
|
DisplayName,
|
|
621
717
|
BindableSourceSearch,
|
|
622
|
-
ElementSettings
|
|
718
|
+
ElementSettings,
|
|
719
|
+
Visibility {
|
|
623
720
|
readonly id: FullElementId;
|
|
624
721
|
readonly type: 'RichText';
|
|
625
722
|
readonly plugin: 'Basic';
|
|
723
|
+
getTag(): Promise<null | BlockElementTag>;
|
|
724
|
+
setTag(tag: BlockElementTag): Promise<null>;
|
|
626
725
|
}
|
|
627
726
|
|
|
628
727
|
interface SpanElement
|
|
629
728
|
extends
|
|
630
729
|
WebflowElement,
|
|
631
730
|
CustomAttributes,
|
|
731
|
+
Attributes,
|
|
632
732
|
DomId,
|
|
633
733
|
Styles,
|
|
634
734
|
Children,
|
|
@@ -636,7 +736,8 @@ interface SpanElement
|
|
|
636
736
|
NoAppConnections,
|
|
637
737
|
DisplayName,
|
|
638
738
|
BindableSourceSearch,
|
|
639
|
-
ElementSettings
|
|
739
|
+
ElementSettings,
|
|
740
|
+
Visibility {
|
|
640
741
|
readonly id: FullElementId;
|
|
641
742
|
readonly type: 'Span';
|
|
642
743
|
readonly plugin: 'Basic';
|
|
@@ -646,14 +747,16 @@ interface StringElement
|
|
|
646
747
|
extends
|
|
647
748
|
WebflowElement,
|
|
648
749
|
NoCustomAttributes,
|
|
649
|
-
|
|
750
|
+
NoAttributes,
|
|
751
|
+
DomId,
|
|
650
752
|
NoStyles,
|
|
651
753
|
NoChildren,
|
|
652
754
|
NoTextContent,
|
|
653
755
|
NoAppConnections,
|
|
654
756
|
NoDisplayName,
|
|
655
757
|
BindableSourceSearch,
|
|
656
|
-
ElementSettings
|
|
758
|
+
ElementSettings,
|
|
759
|
+
NoVisibility {
|
|
657
760
|
readonly id: FullElementId;
|
|
658
761
|
readonly type: 'String';
|
|
659
762
|
readonly plugin: 'Basic';
|
|
@@ -665,6 +768,7 @@ interface StrongElement
|
|
|
665
768
|
extends
|
|
666
769
|
WebflowElement,
|
|
667
770
|
CustomAttributes,
|
|
771
|
+
Attributes,
|
|
668
772
|
DomId,
|
|
669
773
|
Styles,
|
|
670
774
|
Children,
|
|
@@ -672,7 +776,8 @@ interface StrongElement
|
|
|
672
776
|
NoAppConnections,
|
|
673
777
|
DisplayName,
|
|
674
778
|
BindableSourceSearch,
|
|
675
|
-
ElementSettings
|
|
779
|
+
ElementSettings,
|
|
780
|
+
Visibility {
|
|
676
781
|
readonly id: FullElementId;
|
|
677
782
|
readonly type: 'Strong';
|
|
678
783
|
readonly plugin: 'Basic';
|
|
@@ -682,6 +787,7 @@ interface SuperscriptElement
|
|
|
682
787
|
extends
|
|
683
788
|
WebflowElement,
|
|
684
789
|
CustomAttributes,
|
|
790
|
+
Attributes,
|
|
685
791
|
DomId,
|
|
686
792
|
Styles,
|
|
687
793
|
Children,
|
|
@@ -689,7 +795,8 @@ interface SuperscriptElement
|
|
|
689
795
|
NoAppConnections,
|
|
690
796
|
DisplayName,
|
|
691
797
|
BindableSourceSearch,
|
|
692
|
-
ElementSettings
|
|
798
|
+
ElementSettings,
|
|
799
|
+
Visibility {
|
|
693
800
|
readonly id: FullElementId;
|
|
694
801
|
readonly type: 'Superscript';
|
|
695
802
|
readonly plugin: 'Basic';
|
|
@@ -699,6 +806,7 @@ interface SubscriptElement
|
|
|
699
806
|
extends
|
|
700
807
|
WebflowElement,
|
|
701
808
|
CustomAttributes,
|
|
809
|
+
Attributes,
|
|
702
810
|
DomId,
|
|
703
811
|
Styles,
|
|
704
812
|
Children,
|
|
@@ -706,7 +814,8 @@ interface SubscriptElement
|
|
|
706
814
|
NoAppConnections,
|
|
707
815
|
DisplayName,
|
|
708
816
|
BindableSourceSearch,
|
|
709
|
-
ElementSettings
|
|
817
|
+
ElementSettings,
|
|
818
|
+
Visibility {
|
|
710
819
|
readonly id: FullElementId;
|
|
711
820
|
readonly type: 'Subscript';
|
|
712
821
|
readonly plugin: 'Basic';
|
|
@@ -716,6 +825,7 @@ interface InlineCodeElement
|
|
|
716
825
|
extends
|
|
717
826
|
WebflowElement,
|
|
718
827
|
CustomAttributes,
|
|
828
|
+
Attributes,
|
|
719
829
|
DomId,
|
|
720
830
|
Styles,
|
|
721
831
|
Children,
|
|
@@ -723,7 +833,8 @@ interface InlineCodeElement
|
|
|
723
833
|
NoAppConnections,
|
|
724
834
|
DisplayName,
|
|
725
835
|
BindableSourceSearch,
|
|
726
|
-
ElementSettings
|
|
836
|
+
ElementSettings,
|
|
837
|
+
Visibility {
|
|
727
838
|
readonly id: FullElementId;
|
|
728
839
|
readonly type: 'InlineCode';
|
|
729
840
|
readonly plugin: 'Basic';
|
|
@@ -733,6 +844,7 @@ interface AnimationElement
|
|
|
733
844
|
extends
|
|
734
845
|
WebflowElement,
|
|
735
846
|
CustomAttributes,
|
|
847
|
+
Attributes,
|
|
736
848
|
DomId,
|
|
737
849
|
Styles,
|
|
738
850
|
NoChildren,
|
|
@@ -740,7 +852,8 @@ interface AnimationElement
|
|
|
740
852
|
NoAppConnections,
|
|
741
853
|
DisplayName,
|
|
742
854
|
BindableSourceSearch,
|
|
743
|
-
ElementSettings
|
|
855
|
+
ElementSettings,
|
|
856
|
+
Visibility {
|
|
744
857
|
readonly id: FullElementId;
|
|
745
858
|
readonly type: 'Animation';
|
|
746
859
|
readonly plugin: 'Animation';
|
|
@@ -750,6 +863,7 @@ interface SplineElement
|
|
|
750
863
|
extends
|
|
751
864
|
WebflowElement,
|
|
752
865
|
CustomAttributes,
|
|
866
|
+
Attributes,
|
|
753
867
|
DomId,
|
|
754
868
|
Styles,
|
|
755
869
|
NoChildren,
|
|
@@ -757,7 +871,8 @@ interface SplineElement
|
|
|
757
871
|
NoAppConnections,
|
|
758
872
|
DisplayName,
|
|
759
873
|
BindableSourceSearch,
|
|
760
|
-
ElementSettings
|
|
874
|
+
ElementSettings,
|
|
875
|
+
Visibility {
|
|
761
876
|
readonly id: FullElementId;
|
|
762
877
|
readonly type: 'Spline';
|
|
763
878
|
readonly plugin: 'Animation';
|
|
@@ -767,6 +882,7 @@ interface RiveElement
|
|
|
767
882
|
extends
|
|
768
883
|
WebflowElement,
|
|
769
884
|
CustomAttributes,
|
|
885
|
+
Attributes,
|
|
770
886
|
DomId,
|
|
771
887
|
Styles,
|
|
772
888
|
NoChildren,
|
|
@@ -774,7 +890,8 @@ interface RiveElement
|
|
|
774
890
|
NoAppConnections,
|
|
775
891
|
DisplayName,
|
|
776
892
|
BindableSourceSearch,
|
|
777
|
-
ElementSettings
|
|
893
|
+
ElementSettings,
|
|
894
|
+
Visibility {
|
|
778
895
|
readonly id: FullElementId;
|
|
779
896
|
readonly type: 'Rive';
|
|
780
897
|
readonly plugin: 'Animation';
|
|
@@ -784,14 +901,16 @@ interface BackgroundVideoWrapperElement
|
|
|
784
901
|
extends
|
|
785
902
|
WebflowElement,
|
|
786
903
|
CustomAttributes,
|
|
787
|
-
|
|
904
|
+
Attributes,
|
|
905
|
+
DomId,
|
|
788
906
|
Styles,
|
|
789
907
|
Children,
|
|
790
908
|
NoTextContent,
|
|
791
909
|
NoAppConnections,
|
|
792
910
|
DisplayName,
|
|
793
911
|
BindableSourceSearch,
|
|
794
|
-
ElementSettings
|
|
912
|
+
ElementSettings,
|
|
913
|
+
Visibility {
|
|
795
914
|
readonly id: FullElementId;
|
|
796
915
|
readonly type: 'BackgroundVideoWrapper';
|
|
797
916
|
readonly plugin: 'BackgroundVideo';
|
|
@@ -801,14 +920,16 @@ interface BackgroundVideoPlayPauseButtonElement
|
|
|
801
920
|
extends
|
|
802
921
|
WebflowElement,
|
|
803
922
|
CustomAttributes,
|
|
804
|
-
|
|
923
|
+
Attributes,
|
|
924
|
+
DomId,
|
|
805
925
|
Styles,
|
|
806
926
|
Children,
|
|
807
927
|
NoTextContent,
|
|
808
928
|
NoAppConnections,
|
|
809
929
|
DisplayName,
|
|
810
930
|
BindableSourceSearch,
|
|
811
|
-
ElementSettings
|
|
931
|
+
ElementSettings,
|
|
932
|
+
Visibility {
|
|
812
933
|
readonly id: FullElementId;
|
|
813
934
|
readonly type: 'BackgroundVideoPlayPauseButton';
|
|
814
935
|
readonly plugin: 'BackgroundVideo';
|
|
@@ -818,6 +939,7 @@ interface BackgroundVideoPlayPauseButtonPlayingElement
|
|
|
818
939
|
extends
|
|
819
940
|
WebflowElement,
|
|
820
941
|
CustomAttributes,
|
|
942
|
+
Attributes,
|
|
821
943
|
DomId,
|
|
822
944
|
Styles,
|
|
823
945
|
Children,
|
|
@@ -825,7 +947,8 @@ interface BackgroundVideoPlayPauseButtonPlayingElement
|
|
|
825
947
|
NoAppConnections,
|
|
826
948
|
DisplayName,
|
|
827
949
|
BindableSourceSearch,
|
|
828
|
-
ElementSettings
|
|
950
|
+
ElementSettings,
|
|
951
|
+
Visibility {
|
|
829
952
|
readonly id: FullElementId;
|
|
830
953
|
readonly type: 'BackgroundVideoPlayPauseButtonPlaying';
|
|
831
954
|
readonly plugin: 'BackgroundVideo';
|
|
@@ -835,6 +958,7 @@ interface BackgroundVideoPlayPauseButtonPausedElement
|
|
|
835
958
|
extends
|
|
836
959
|
WebflowElement,
|
|
837
960
|
CustomAttributes,
|
|
961
|
+
Attributes,
|
|
838
962
|
DomId,
|
|
839
963
|
Styles,
|
|
840
964
|
Children,
|
|
@@ -842,7 +966,8 @@ interface BackgroundVideoPlayPauseButtonPausedElement
|
|
|
842
966
|
NoAppConnections,
|
|
843
967
|
DisplayName,
|
|
844
968
|
BindableSourceSearch,
|
|
845
|
-
ElementSettings
|
|
969
|
+
ElementSettings,
|
|
970
|
+
Visibility {
|
|
846
971
|
readonly id: FullElementId;
|
|
847
972
|
readonly type: 'BackgroundVideoPlayPauseButtonPaused';
|
|
848
973
|
readonly plugin: 'BackgroundVideo';
|
|
@@ -852,14 +977,16 @@ interface BodyElement
|
|
|
852
977
|
extends
|
|
853
978
|
WebflowElement,
|
|
854
979
|
CustomAttributes,
|
|
855
|
-
|
|
980
|
+
Attributes,
|
|
981
|
+
DomId,
|
|
856
982
|
NoStyles,
|
|
857
983
|
Children,
|
|
858
984
|
NoTextContent,
|
|
859
985
|
NoAppConnections,
|
|
860
986
|
DisplayName,
|
|
861
987
|
BindableSourceSearch,
|
|
862
|
-
ElementSettings
|
|
988
|
+
ElementSettings,
|
|
989
|
+
NoVisibility {
|
|
863
990
|
readonly id: FullElementId;
|
|
864
991
|
readonly type: 'Body';
|
|
865
992
|
readonly plugin: 'Body';
|
|
@@ -869,6 +996,7 @@ interface CommerceAddToCartFormElement
|
|
|
869
996
|
extends
|
|
870
997
|
WebflowElement,
|
|
871
998
|
CustomAttributes,
|
|
999
|
+
Attributes,
|
|
872
1000
|
DomId,
|
|
873
1001
|
Styles,
|
|
874
1002
|
Children,
|
|
@@ -876,7 +1004,8 @@ interface CommerceAddToCartFormElement
|
|
|
876
1004
|
NoAppConnections,
|
|
877
1005
|
DisplayName,
|
|
878
1006
|
BindableSourceSearch,
|
|
879
|
-
ElementSettings
|
|
1007
|
+
ElementSettings,
|
|
1008
|
+
Visibility {
|
|
880
1009
|
readonly id: FullElementId;
|
|
881
1010
|
readonly type: 'CommerceAddToCartForm';
|
|
882
1011
|
readonly plugin: 'Commerce';
|
|
@@ -886,14 +1015,16 @@ interface CommerceAddToCartButtonElement
|
|
|
886
1015
|
extends
|
|
887
1016
|
WebflowElement,
|
|
888
1017
|
CustomAttributes,
|
|
889
|
-
|
|
1018
|
+
Attributes,
|
|
1019
|
+
DomId,
|
|
890
1020
|
Styles,
|
|
891
1021
|
NoChildren,
|
|
892
1022
|
NoTextContent,
|
|
893
1023
|
NoAppConnections,
|
|
894
1024
|
DisplayName,
|
|
895
1025
|
BindableSourceSearch,
|
|
896
|
-
ElementSettings
|
|
1026
|
+
ElementSettings,
|
|
1027
|
+
Visibility {
|
|
897
1028
|
readonly id: FullElementId;
|
|
898
1029
|
readonly type: 'CommerceAddToCartButton';
|
|
899
1030
|
readonly plugin: 'Commerce';
|
|
@@ -903,6 +1034,7 @@ interface CommerceAddToCartWrapperElement
|
|
|
903
1034
|
extends
|
|
904
1035
|
WebflowElement,
|
|
905
1036
|
CustomAttributes,
|
|
1037
|
+
Attributes,
|
|
906
1038
|
DomId,
|
|
907
1039
|
Styles,
|
|
908
1040
|
Children,
|
|
@@ -910,7 +1042,8 @@ interface CommerceAddToCartWrapperElement
|
|
|
910
1042
|
NoAppConnections,
|
|
911
1043
|
DisplayName,
|
|
912
1044
|
BindableSourceSearch,
|
|
913
|
-
ElementSettings
|
|
1045
|
+
ElementSettings,
|
|
1046
|
+
Visibility {
|
|
914
1047
|
readonly id: FullElementId;
|
|
915
1048
|
readonly type: 'CommerceAddToCartWrapper';
|
|
916
1049
|
readonly plugin: 'Commerce';
|
|
@@ -920,14 +1053,16 @@ interface CommerceAddToCartQuantityInputElement
|
|
|
920
1053
|
extends
|
|
921
1054
|
WebflowElement,
|
|
922
1055
|
CustomAttributes,
|
|
923
|
-
|
|
1056
|
+
Attributes,
|
|
1057
|
+
DomId,
|
|
924
1058
|
Styles,
|
|
925
1059
|
NoChildren,
|
|
926
1060
|
NoTextContent,
|
|
927
1061
|
NoAppConnections,
|
|
928
1062
|
DisplayName,
|
|
929
1063
|
BindableSourceSearch,
|
|
930
|
-
ElementSettings
|
|
1064
|
+
ElementSettings,
|
|
1065
|
+
Visibility {
|
|
931
1066
|
readonly id: FullElementId;
|
|
932
1067
|
readonly type: 'CommerceAddToCartQuantityInput';
|
|
933
1068
|
readonly plugin: 'Commerce';
|
|
@@ -937,14 +1072,16 @@ interface CommerceAddToCartErrorElement
|
|
|
937
1072
|
extends
|
|
938
1073
|
WebflowElement,
|
|
939
1074
|
CustomAttributes,
|
|
940
|
-
|
|
1075
|
+
Attributes,
|
|
1076
|
+
DomId,
|
|
941
1077
|
Styles,
|
|
942
1078
|
Children,
|
|
943
1079
|
NoTextContent,
|
|
944
1080
|
NoAppConnections,
|
|
945
1081
|
DisplayName,
|
|
946
1082
|
BindableSourceSearch,
|
|
947
|
-
ElementSettings
|
|
1083
|
+
ElementSettings,
|
|
1084
|
+
Visibility {
|
|
948
1085
|
readonly id: FullElementId;
|
|
949
1086
|
readonly type: 'CommerceAddToCartError';
|
|
950
1087
|
readonly plugin: 'Commerce';
|
|
@@ -954,6 +1091,7 @@ interface CommerceAddToCartOutOfStockElement
|
|
|
954
1091
|
extends
|
|
955
1092
|
WebflowElement,
|
|
956
1093
|
CustomAttributes,
|
|
1094
|
+
Attributes,
|
|
957
1095
|
DomId,
|
|
958
1096
|
Styles,
|
|
959
1097
|
Children,
|
|
@@ -961,7 +1099,8 @@ interface CommerceAddToCartOutOfStockElement
|
|
|
961
1099
|
NoAppConnections,
|
|
962
1100
|
DisplayName,
|
|
963
1101
|
BindableSourceSearch,
|
|
964
|
-
ElementSettings
|
|
1102
|
+
ElementSettings,
|
|
1103
|
+
Visibility {
|
|
965
1104
|
readonly id: FullElementId;
|
|
966
1105
|
readonly type: 'CommerceAddToCartOutOfStock';
|
|
967
1106
|
readonly plugin: 'Commerce';
|
|
@@ -971,6 +1110,7 @@ interface CommerceAddToCartOptionListElement
|
|
|
971
1110
|
extends
|
|
972
1111
|
WebflowElement,
|
|
973
1112
|
CustomAttributes,
|
|
1113
|
+
Attributes,
|
|
974
1114
|
DomId,
|
|
975
1115
|
Styles,
|
|
976
1116
|
Children,
|
|
@@ -978,7 +1118,8 @@ interface CommerceAddToCartOptionListElement
|
|
|
978
1118
|
NoAppConnections,
|
|
979
1119
|
DisplayName,
|
|
980
1120
|
BindableSourceSearch,
|
|
981
|
-
ElementSettings
|
|
1121
|
+
ElementSettings,
|
|
1122
|
+
Visibility {
|
|
982
1123
|
readonly id: FullElementId;
|
|
983
1124
|
readonly type: 'CommerceAddToCartOptionList';
|
|
984
1125
|
readonly plugin: 'Commerce';
|
|
@@ -988,6 +1129,7 @@ interface CommerceAddToCartOptionListWithSelectorTypesElement
|
|
|
988
1129
|
extends
|
|
989
1130
|
WebflowElement,
|
|
990
1131
|
CustomAttributes,
|
|
1132
|
+
Attributes,
|
|
991
1133
|
DomId,
|
|
992
1134
|
Styles,
|
|
993
1135
|
Children,
|
|
@@ -995,7 +1137,8 @@ interface CommerceAddToCartOptionListWithSelectorTypesElement
|
|
|
995
1137
|
NoAppConnections,
|
|
996
1138
|
DisplayName,
|
|
997
1139
|
BindableSourceSearch,
|
|
998
|
-
ElementSettings
|
|
1140
|
+
ElementSettings,
|
|
1141
|
+
Visibility {
|
|
999
1142
|
readonly id: FullElementId;
|
|
1000
1143
|
readonly type: 'CommerceAddToCartOptionListWithSelectorTypes';
|
|
1001
1144
|
readonly plugin: 'Commerce';
|
|
@@ -1005,6 +1148,7 @@ interface CommerceAddToCartOptionElement
|
|
|
1005
1148
|
extends
|
|
1006
1149
|
WebflowElement,
|
|
1007
1150
|
CustomAttributes,
|
|
1151
|
+
Attributes,
|
|
1008
1152
|
DomId,
|
|
1009
1153
|
Styles,
|
|
1010
1154
|
Children,
|
|
@@ -1012,7 +1156,8 @@ interface CommerceAddToCartOptionElement
|
|
|
1012
1156
|
NoAppConnections,
|
|
1013
1157
|
DisplayName,
|
|
1014
1158
|
BindableSourceSearch,
|
|
1015
|
-
ElementSettings
|
|
1159
|
+
ElementSettings,
|
|
1160
|
+
Visibility {
|
|
1016
1161
|
readonly id: FullElementId;
|
|
1017
1162
|
readonly type: 'CommerceAddToCartOption';
|
|
1018
1163
|
readonly plugin: 'Commerce';
|
|
@@ -1022,6 +1167,7 @@ interface CommerceAddToCartOptionLabelElement
|
|
|
1022
1167
|
extends
|
|
1023
1168
|
WebflowElement,
|
|
1024
1169
|
CustomAttributes,
|
|
1170
|
+
Attributes,
|
|
1025
1171
|
DomId,
|
|
1026
1172
|
Styles,
|
|
1027
1173
|
Children,
|
|
@@ -1029,7 +1175,8 @@ interface CommerceAddToCartOptionLabelElement
|
|
|
1029
1175
|
NoAppConnections,
|
|
1030
1176
|
DisplayName,
|
|
1031
1177
|
BindableSourceSearch,
|
|
1032
|
-
ElementSettings
|
|
1178
|
+
ElementSettings,
|
|
1179
|
+
Visibility {
|
|
1033
1180
|
readonly id: FullElementId;
|
|
1034
1181
|
readonly type: 'CommerceAddToCartOptionLabel';
|
|
1035
1182
|
readonly plugin: 'Commerce';
|
|
@@ -1039,6 +1186,7 @@ interface CommerceAddToCartOptionSelectElement
|
|
|
1039
1186
|
extends
|
|
1040
1187
|
WebflowElement,
|
|
1041
1188
|
CustomAttributes,
|
|
1189
|
+
Attributes,
|
|
1042
1190
|
DomId,
|
|
1043
1191
|
Styles,
|
|
1044
1192
|
NoChildren,
|
|
@@ -1046,7 +1194,8 @@ interface CommerceAddToCartOptionSelectElement
|
|
|
1046
1194
|
NoAppConnections,
|
|
1047
1195
|
DisplayName,
|
|
1048
1196
|
BindableSourceSearch,
|
|
1049
|
-
ElementSettings
|
|
1197
|
+
ElementSettings,
|
|
1198
|
+
Visibility {
|
|
1050
1199
|
readonly id: FullElementId;
|
|
1051
1200
|
readonly type: 'CommerceAddToCartOptionSelect';
|
|
1052
1201
|
readonly plugin: 'Commerce';
|
|
@@ -1056,6 +1205,7 @@ interface CommerceAddToCartOptionPillGroupElement
|
|
|
1056
1205
|
extends
|
|
1057
1206
|
WebflowElement,
|
|
1058
1207
|
CustomAttributes,
|
|
1208
|
+
Attributes,
|
|
1059
1209
|
DomId,
|
|
1060
1210
|
Styles,
|
|
1061
1211
|
Children,
|
|
@@ -1063,7 +1213,8 @@ interface CommerceAddToCartOptionPillGroupElement
|
|
|
1063
1213
|
NoAppConnections,
|
|
1064
1214
|
DisplayName,
|
|
1065
1215
|
BindableSourceSearch,
|
|
1066
|
-
ElementSettings
|
|
1216
|
+
ElementSettings,
|
|
1217
|
+
Visibility {
|
|
1067
1218
|
readonly id: FullElementId;
|
|
1068
1219
|
readonly type: 'CommerceAddToCartOptionPillGroup';
|
|
1069
1220
|
readonly plugin: 'Commerce';
|
|
@@ -1073,6 +1224,7 @@ interface CommerceAddToCartOptionPillElement
|
|
|
1073
1224
|
extends
|
|
1074
1225
|
WebflowElement,
|
|
1075
1226
|
CustomAttributes,
|
|
1227
|
+
Attributes,
|
|
1076
1228
|
DomId,
|
|
1077
1229
|
Styles,
|
|
1078
1230
|
Children,
|
|
@@ -1080,7 +1232,8 @@ interface CommerceAddToCartOptionPillElement
|
|
|
1080
1232
|
NoAppConnections,
|
|
1081
1233
|
DisplayName,
|
|
1082
1234
|
BindableSourceSearch,
|
|
1083
|
-
ElementSettings
|
|
1235
|
+
ElementSettings,
|
|
1236
|
+
Visibility {
|
|
1084
1237
|
readonly id: FullElementId;
|
|
1085
1238
|
readonly type: 'CommerceAddToCartOptionPill';
|
|
1086
1239
|
readonly plugin: 'Commerce';
|
|
@@ -1090,6 +1243,7 @@ interface CommerceBuyNowButtonElement
|
|
|
1090
1243
|
extends
|
|
1091
1244
|
WebflowElement,
|
|
1092
1245
|
CustomAttributes,
|
|
1246
|
+
Attributes,
|
|
1093
1247
|
DomId,
|
|
1094
1248
|
Styles,
|
|
1095
1249
|
NoChildren,
|
|
@@ -1097,7 +1251,8 @@ interface CommerceBuyNowButtonElement
|
|
|
1097
1251
|
NoAppConnections,
|
|
1098
1252
|
DisplayName,
|
|
1099
1253
|
BindableSourceSearch,
|
|
1100
|
-
ElementSettings
|
|
1254
|
+
ElementSettings,
|
|
1255
|
+
Visibility {
|
|
1101
1256
|
readonly id: FullElementId;
|
|
1102
1257
|
readonly type: 'CommerceBuyNowButton';
|
|
1103
1258
|
readonly plugin: 'Commerce';
|
|
@@ -1107,6 +1262,7 @@ interface CommerceCartWrapperElement
|
|
|
1107
1262
|
extends
|
|
1108
1263
|
WebflowElement,
|
|
1109
1264
|
CustomAttributes,
|
|
1265
|
+
Attributes,
|
|
1110
1266
|
DomId,
|
|
1111
1267
|
Styles,
|
|
1112
1268
|
Children,
|
|
@@ -1114,7 +1270,8 @@ interface CommerceCartWrapperElement
|
|
|
1114
1270
|
NoAppConnections,
|
|
1115
1271
|
DisplayName,
|
|
1116
1272
|
BindableSourceSearch,
|
|
1117
|
-
ElementSettings
|
|
1273
|
+
ElementSettings,
|
|
1274
|
+
Visibility {
|
|
1118
1275
|
readonly id: FullElementId;
|
|
1119
1276
|
readonly type: 'CommerceCartWrapper';
|
|
1120
1277
|
readonly plugin: 'Commerce';
|
|
@@ -1124,6 +1281,7 @@ interface CommerceCartOpenLinkElement
|
|
|
1124
1281
|
extends
|
|
1125
1282
|
WebflowElement,
|
|
1126
1283
|
CustomAttributes,
|
|
1284
|
+
Attributes,
|
|
1127
1285
|
DomId,
|
|
1128
1286
|
Styles,
|
|
1129
1287
|
Children,
|
|
@@ -1131,7 +1289,8 @@ interface CommerceCartOpenLinkElement
|
|
|
1131
1289
|
NoAppConnections,
|
|
1132
1290
|
DisplayName,
|
|
1133
1291
|
BindableSourceSearch,
|
|
1134
|
-
ElementSettings
|
|
1292
|
+
ElementSettings,
|
|
1293
|
+
Visibility {
|
|
1135
1294
|
readonly id: FullElementId;
|
|
1136
1295
|
readonly type: 'CommerceCartOpenLink';
|
|
1137
1296
|
readonly plugin: 'Commerce';
|
|
@@ -1141,6 +1300,7 @@ interface CommerceCartOpenLinkCountElement
|
|
|
1141
1300
|
extends
|
|
1142
1301
|
WebflowElement,
|
|
1143
1302
|
CustomAttributes,
|
|
1303
|
+
Attributes,
|
|
1144
1304
|
DomId,
|
|
1145
1305
|
Styles,
|
|
1146
1306
|
NoChildren,
|
|
@@ -1148,7 +1308,8 @@ interface CommerceCartOpenLinkCountElement
|
|
|
1148
1308
|
NoAppConnections,
|
|
1149
1309
|
DisplayName,
|
|
1150
1310
|
BindableSourceSearch,
|
|
1151
|
-
ElementSettings
|
|
1311
|
+
ElementSettings,
|
|
1312
|
+
Visibility {
|
|
1152
1313
|
readonly id: FullElementId;
|
|
1153
1314
|
readonly type: 'CommerceCartOpenLinkCount';
|
|
1154
1315
|
readonly plugin: 'Commerce';
|
|
@@ -1158,6 +1319,7 @@ interface CommerceCartOpenLinkIconElement
|
|
|
1158
1319
|
extends
|
|
1159
1320
|
WebflowElement,
|
|
1160
1321
|
CustomAttributes,
|
|
1322
|
+
Attributes,
|
|
1161
1323
|
DomId,
|
|
1162
1324
|
Styles,
|
|
1163
1325
|
NoChildren,
|
|
@@ -1165,7 +1327,8 @@ interface CommerceCartOpenLinkIconElement
|
|
|
1165
1327
|
NoAppConnections,
|
|
1166
1328
|
DisplayName,
|
|
1167
1329
|
BindableSourceSearch,
|
|
1168
|
-
ElementSettings
|
|
1330
|
+
ElementSettings,
|
|
1331
|
+
Visibility {
|
|
1169
1332
|
readonly id: FullElementId;
|
|
1170
1333
|
readonly type: 'CommerceCartOpenLinkIcon';
|
|
1171
1334
|
readonly plugin: 'Commerce';
|
|
@@ -1175,6 +1338,7 @@ interface CommerceCartContainerWrapperElement
|
|
|
1175
1338
|
extends
|
|
1176
1339
|
WebflowElement,
|
|
1177
1340
|
CustomAttributes,
|
|
1341
|
+
Attributes,
|
|
1178
1342
|
DomId,
|
|
1179
1343
|
Styles,
|
|
1180
1344
|
Children,
|
|
@@ -1182,7 +1346,8 @@ interface CommerceCartContainerWrapperElement
|
|
|
1182
1346
|
NoAppConnections,
|
|
1183
1347
|
DisplayName,
|
|
1184
1348
|
BindableSourceSearch,
|
|
1185
|
-
ElementSettings
|
|
1349
|
+
ElementSettings,
|
|
1350
|
+
Visibility {
|
|
1186
1351
|
readonly id: FullElementId;
|
|
1187
1352
|
readonly type: 'CommerceCartContainerWrapper';
|
|
1188
1353
|
readonly plugin: 'Commerce';
|
|
@@ -1192,6 +1357,7 @@ interface CommerceCartContainerElement
|
|
|
1192
1357
|
extends
|
|
1193
1358
|
WebflowElement,
|
|
1194
1359
|
CustomAttributes,
|
|
1360
|
+
Attributes,
|
|
1195
1361
|
DomId,
|
|
1196
1362
|
Styles,
|
|
1197
1363
|
Children,
|
|
@@ -1199,7 +1365,8 @@ interface CommerceCartContainerElement
|
|
|
1199
1365
|
NoAppConnections,
|
|
1200
1366
|
DisplayName,
|
|
1201
1367
|
BindableSourceSearch,
|
|
1202
|
-
ElementSettings
|
|
1368
|
+
ElementSettings,
|
|
1369
|
+
Visibility {
|
|
1203
1370
|
readonly id: FullElementId;
|
|
1204
1371
|
readonly type: 'CommerceCartContainer';
|
|
1205
1372
|
readonly plugin: 'Commerce';
|
|
@@ -1209,6 +1376,7 @@ interface CommerceCartHeaderElement
|
|
|
1209
1376
|
extends
|
|
1210
1377
|
WebflowElement,
|
|
1211
1378
|
CustomAttributes,
|
|
1379
|
+
Attributes,
|
|
1212
1380
|
DomId,
|
|
1213
1381
|
Styles,
|
|
1214
1382
|
Children,
|
|
@@ -1216,7 +1384,8 @@ interface CommerceCartHeaderElement
|
|
|
1216
1384
|
NoAppConnections,
|
|
1217
1385
|
DisplayName,
|
|
1218
1386
|
BindableSourceSearch,
|
|
1219
|
-
ElementSettings
|
|
1387
|
+
ElementSettings,
|
|
1388
|
+
Visibility {
|
|
1220
1389
|
readonly id: FullElementId;
|
|
1221
1390
|
readonly type: 'CommerceCartHeader';
|
|
1222
1391
|
readonly plugin: 'Commerce';
|
|
@@ -1226,6 +1395,7 @@ interface CommerceCartHeadingElement
|
|
|
1226
1395
|
extends
|
|
1227
1396
|
WebflowElement,
|
|
1228
1397
|
CustomAttributes,
|
|
1398
|
+
Attributes,
|
|
1229
1399
|
DomId,
|
|
1230
1400
|
Styles,
|
|
1231
1401
|
Children,
|
|
@@ -1233,7 +1403,8 @@ interface CommerceCartHeadingElement
|
|
|
1233
1403
|
NoAppConnections,
|
|
1234
1404
|
DisplayName,
|
|
1235
1405
|
BindableSourceSearch,
|
|
1236
|
-
ElementSettings
|
|
1406
|
+
ElementSettings,
|
|
1407
|
+
Visibility {
|
|
1237
1408
|
readonly id: FullElementId;
|
|
1238
1409
|
readonly type: 'CommerceCartHeading';
|
|
1239
1410
|
readonly plugin: 'Commerce';
|
|
@@ -1243,6 +1414,7 @@ interface CommerceCartFormWrapperElement
|
|
|
1243
1414
|
extends
|
|
1244
1415
|
WebflowElement,
|
|
1245
1416
|
CustomAttributes,
|
|
1417
|
+
Attributes,
|
|
1246
1418
|
DomId,
|
|
1247
1419
|
Styles,
|
|
1248
1420
|
Children,
|
|
@@ -1250,7 +1422,8 @@ interface CommerceCartFormWrapperElement
|
|
|
1250
1422
|
NoAppConnections,
|
|
1251
1423
|
DisplayName,
|
|
1252
1424
|
BindableSourceSearch,
|
|
1253
|
-
ElementSettings
|
|
1425
|
+
ElementSettings,
|
|
1426
|
+
Visibility {
|
|
1254
1427
|
readonly id: FullElementId;
|
|
1255
1428
|
readonly type: 'CommerceCartFormWrapper';
|
|
1256
1429
|
readonly plugin: 'Commerce';
|
|
@@ -1260,6 +1433,7 @@ interface CommerceCartFormElement
|
|
|
1260
1433
|
extends
|
|
1261
1434
|
WebflowElement,
|
|
1262
1435
|
CustomAttributes,
|
|
1436
|
+
Attributes,
|
|
1263
1437
|
DomId,
|
|
1264
1438
|
Styles,
|
|
1265
1439
|
Children,
|
|
@@ -1267,7 +1441,8 @@ interface CommerceCartFormElement
|
|
|
1267
1441
|
NoAppConnections,
|
|
1268
1442
|
DisplayName,
|
|
1269
1443
|
BindableSourceSearch,
|
|
1270
|
-
ElementSettings
|
|
1444
|
+
ElementSettings,
|
|
1445
|
+
Visibility {
|
|
1271
1446
|
readonly id: FullElementId;
|
|
1272
1447
|
readonly type: 'CommerceCartForm';
|
|
1273
1448
|
readonly plugin: 'Commerce';
|
|
@@ -1277,6 +1452,7 @@ interface CommerceCartEmptyStateElement
|
|
|
1277
1452
|
extends
|
|
1278
1453
|
WebflowElement,
|
|
1279
1454
|
CustomAttributes,
|
|
1455
|
+
Attributes,
|
|
1280
1456
|
DomId,
|
|
1281
1457
|
Styles,
|
|
1282
1458
|
Children,
|
|
@@ -1284,7 +1460,8 @@ interface CommerceCartEmptyStateElement
|
|
|
1284
1460
|
NoAppConnections,
|
|
1285
1461
|
DisplayName,
|
|
1286
1462
|
BindableSourceSearch,
|
|
1287
|
-
ElementSettings
|
|
1463
|
+
ElementSettings,
|
|
1464
|
+
Visibility {
|
|
1288
1465
|
readonly id: FullElementId;
|
|
1289
1466
|
readonly type: 'CommerceCartEmptyState';
|
|
1290
1467
|
readonly plugin: 'Commerce';
|
|
@@ -1294,14 +1471,16 @@ interface CommerceCartErrorStateElement
|
|
|
1294
1471
|
extends
|
|
1295
1472
|
WebflowElement,
|
|
1296
1473
|
CustomAttributes,
|
|
1297
|
-
|
|
1474
|
+
Attributes,
|
|
1475
|
+
DomId,
|
|
1298
1476
|
Styles,
|
|
1299
1477
|
Children,
|
|
1300
1478
|
NoTextContent,
|
|
1301
1479
|
NoAppConnections,
|
|
1302
1480
|
DisplayName,
|
|
1303
1481
|
BindableSourceSearch,
|
|
1304
|
-
ElementSettings
|
|
1482
|
+
ElementSettings,
|
|
1483
|
+
Visibility {
|
|
1305
1484
|
readonly id: FullElementId;
|
|
1306
1485
|
readonly type: 'CommerceCartErrorState';
|
|
1307
1486
|
readonly plugin: 'Commerce';
|
|
@@ -1311,6 +1490,7 @@ interface CommerceCartListElement
|
|
|
1311
1490
|
extends
|
|
1312
1491
|
WebflowElement,
|
|
1313
1492
|
CustomAttributes,
|
|
1493
|
+
Attributes,
|
|
1314
1494
|
DomId,
|
|
1315
1495
|
Styles,
|
|
1316
1496
|
Children,
|
|
@@ -1318,7 +1498,8 @@ interface CommerceCartListElement
|
|
|
1318
1498
|
NoAppConnections,
|
|
1319
1499
|
DisplayName,
|
|
1320
1500
|
BindableSourceSearch,
|
|
1321
|
-
ElementSettings
|
|
1501
|
+
ElementSettings,
|
|
1502
|
+
Visibility {
|
|
1322
1503
|
readonly id: FullElementId;
|
|
1323
1504
|
readonly type: 'CommerceCartList';
|
|
1324
1505
|
readonly plugin: 'Commerce';
|
|
@@ -1328,6 +1509,7 @@ interface CommerceCartFooterElement
|
|
|
1328
1509
|
extends
|
|
1329
1510
|
WebflowElement,
|
|
1330
1511
|
CustomAttributes,
|
|
1512
|
+
Attributes,
|
|
1331
1513
|
DomId,
|
|
1332
1514
|
Styles,
|
|
1333
1515
|
Children,
|
|
@@ -1335,7 +1517,8 @@ interface CommerceCartFooterElement
|
|
|
1335
1517
|
NoAppConnections,
|
|
1336
1518
|
DisplayName,
|
|
1337
1519
|
BindableSourceSearch,
|
|
1338
|
-
ElementSettings
|
|
1520
|
+
ElementSettings,
|
|
1521
|
+
Visibility {
|
|
1339
1522
|
readonly id: FullElementId;
|
|
1340
1523
|
readonly type: 'CommerceCartFooter';
|
|
1341
1524
|
readonly plugin: 'Commerce';
|
|
@@ -1345,14 +1528,16 @@ interface CommerceCartLineItemElement
|
|
|
1345
1528
|
extends
|
|
1346
1529
|
WebflowElement,
|
|
1347
1530
|
CustomAttributes,
|
|
1348
|
-
|
|
1531
|
+
Attributes,
|
|
1532
|
+
DomId,
|
|
1349
1533
|
Styles,
|
|
1350
1534
|
Children,
|
|
1351
1535
|
NoTextContent,
|
|
1352
1536
|
NoAppConnections,
|
|
1353
1537
|
DisplayName,
|
|
1354
1538
|
BindableSourceSearch,
|
|
1355
|
-
ElementSettings
|
|
1539
|
+
ElementSettings,
|
|
1540
|
+
Visibility {
|
|
1356
1541
|
readonly id: FullElementId;
|
|
1357
1542
|
readonly type: 'CommerceCartLineItem';
|
|
1358
1543
|
readonly plugin: 'Commerce';
|
|
@@ -1362,14 +1547,16 @@ interface CommerceCartCheckoutButtonElement
|
|
|
1362
1547
|
extends
|
|
1363
1548
|
WebflowElement,
|
|
1364
1549
|
CustomAttributes,
|
|
1365
|
-
|
|
1550
|
+
Attributes,
|
|
1551
|
+
DomId,
|
|
1366
1552
|
Styles,
|
|
1367
1553
|
NoChildren,
|
|
1368
1554
|
TextContent,
|
|
1369
1555
|
NoAppConnections,
|
|
1370
1556
|
DisplayName,
|
|
1371
1557
|
BindableSourceSearch,
|
|
1372
|
-
ElementSettings
|
|
1558
|
+
ElementSettings,
|
|
1559
|
+
Visibility {
|
|
1373
1560
|
readonly id: FullElementId;
|
|
1374
1561
|
readonly type: 'CommerceCartCheckoutButton';
|
|
1375
1562
|
readonly plugin: 'Commerce';
|
|
@@ -1379,6 +1566,7 @@ interface CommerceCartItemElement
|
|
|
1379
1566
|
extends
|
|
1380
1567
|
WebflowElement,
|
|
1381
1568
|
CustomAttributes,
|
|
1569
|
+
Attributes,
|
|
1382
1570
|
DomId,
|
|
1383
1571
|
Styles,
|
|
1384
1572
|
Children,
|
|
@@ -1386,7 +1574,8 @@ interface CommerceCartItemElement
|
|
|
1386
1574
|
NoAppConnections,
|
|
1387
1575
|
DisplayName,
|
|
1388
1576
|
BindableSourceSearch,
|
|
1389
|
-
ElementSettings
|
|
1577
|
+
ElementSettings,
|
|
1578
|
+
Visibility {
|
|
1390
1579
|
readonly id: FullElementId;
|
|
1391
1580
|
readonly type: 'CommerceCartItem';
|
|
1392
1581
|
readonly plugin: 'Commerce';
|
|
@@ -1396,6 +1585,7 @@ interface CommerceCartItemImageElement
|
|
|
1396
1585
|
extends
|
|
1397
1586
|
WebflowElement,
|
|
1398
1587
|
CustomAttributes,
|
|
1588
|
+
Attributes,
|
|
1399
1589
|
DomId,
|
|
1400
1590
|
Styles,
|
|
1401
1591
|
NoChildren,
|
|
@@ -1403,7 +1593,8 @@ interface CommerceCartItemImageElement
|
|
|
1403
1593
|
NoAppConnections,
|
|
1404
1594
|
DisplayName,
|
|
1405
1595
|
BindableSourceSearch,
|
|
1406
|
-
ElementSettings
|
|
1596
|
+
ElementSettings,
|
|
1597
|
+
Visibility {
|
|
1407
1598
|
readonly id: FullElementId;
|
|
1408
1599
|
readonly type: 'CommerceCartItemImage';
|
|
1409
1600
|
readonly plugin: 'Commerce';
|
|
@@ -1413,6 +1604,7 @@ interface CommerceCartItemInfoElement
|
|
|
1413
1604
|
extends
|
|
1414
1605
|
WebflowElement,
|
|
1415
1606
|
CustomAttributes,
|
|
1607
|
+
Attributes,
|
|
1416
1608
|
DomId,
|
|
1417
1609
|
Styles,
|
|
1418
1610
|
Children,
|
|
@@ -1420,7 +1612,8 @@ interface CommerceCartItemInfoElement
|
|
|
1420
1612
|
NoAppConnections,
|
|
1421
1613
|
DisplayName,
|
|
1422
1614
|
BindableSourceSearch,
|
|
1423
|
-
ElementSettings
|
|
1615
|
+
ElementSettings,
|
|
1616
|
+
Visibility {
|
|
1424
1617
|
readonly id: FullElementId;
|
|
1425
1618
|
readonly type: 'CommerceCartItemInfo';
|
|
1426
1619
|
readonly plugin: 'Commerce';
|
|
@@ -1430,6 +1623,7 @@ interface CommerceCartProductNameElement
|
|
|
1430
1623
|
extends
|
|
1431
1624
|
WebflowElement,
|
|
1432
1625
|
CustomAttributes,
|
|
1626
|
+
Attributes,
|
|
1433
1627
|
DomId,
|
|
1434
1628
|
Styles,
|
|
1435
1629
|
Children,
|
|
@@ -1437,7 +1631,8 @@ interface CommerceCartProductNameElement
|
|
|
1437
1631
|
NoAppConnections,
|
|
1438
1632
|
DisplayName,
|
|
1439
1633
|
BindableSourceSearch,
|
|
1440
|
-
ElementSettings
|
|
1634
|
+
ElementSettings,
|
|
1635
|
+
Visibility {
|
|
1441
1636
|
readonly id: FullElementId;
|
|
1442
1637
|
readonly type: 'CommerceCartProductName';
|
|
1443
1638
|
readonly plugin: 'Commerce';
|
|
@@ -1447,6 +1642,7 @@ interface CommerceCartProductPriceElement
|
|
|
1447
1642
|
extends
|
|
1448
1643
|
WebflowElement,
|
|
1449
1644
|
CustomAttributes,
|
|
1645
|
+
Attributes,
|
|
1450
1646
|
DomId,
|
|
1451
1647
|
Styles,
|
|
1452
1648
|
Children,
|
|
@@ -1454,7 +1650,8 @@ interface CommerceCartProductPriceElement
|
|
|
1454
1650
|
NoAppConnections,
|
|
1455
1651
|
DisplayName,
|
|
1456
1652
|
BindableSourceSearch,
|
|
1457
|
-
ElementSettings
|
|
1653
|
+
ElementSettings,
|
|
1654
|
+
Visibility {
|
|
1458
1655
|
readonly id: FullElementId;
|
|
1459
1656
|
readonly type: 'CommerceCartProductPrice';
|
|
1460
1657
|
readonly plugin: 'Commerce';
|
|
@@ -1464,14 +1661,16 @@ interface CommerceCartQuantityElement
|
|
|
1464
1661
|
extends
|
|
1465
1662
|
WebflowElement,
|
|
1466
1663
|
CustomAttributes,
|
|
1467
|
-
|
|
1664
|
+
Attributes,
|
|
1665
|
+
DomId,
|
|
1468
1666
|
Styles,
|
|
1469
1667
|
NoChildren,
|
|
1470
1668
|
NoTextContent,
|
|
1471
1669
|
NoAppConnections,
|
|
1472
1670
|
DisplayName,
|
|
1473
1671
|
BindableSourceSearch,
|
|
1474
|
-
ElementSettings
|
|
1672
|
+
ElementSettings,
|
|
1673
|
+
Visibility {
|
|
1475
1674
|
readonly id: FullElementId;
|
|
1476
1675
|
readonly type: 'CommerceCartQuantity';
|
|
1477
1676
|
readonly plugin: 'Commerce';
|
|
@@ -1481,6 +1680,7 @@ interface CommerceCartCloseLinkElement
|
|
|
1481
1680
|
extends
|
|
1482
1681
|
WebflowElement,
|
|
1483
1682
|
CustomAttributes,
|
|
1683
|
+
Attributes,
|
|
1484
1684
|
DomId,
|
|
1485
1685
|
Styles,
|
|
1486
1686
|
Children,
|
|
@@ -1488,7 +1688,8 @@ interface CommerceCartCloseLinkElement
|
|
|
1488
1688
|
NoAppConnections,
|
|
1489
1689
|
DisplayName,
|
|
1490
1690
|
BindableSourceSearch,
|
|
1491
|
-
ElementSettings
|
|
1691
|
+
ElementSettings,
|
|
1692
|
+
Visibility {
|
|
1492
1693
|
readonly id: FullElementId;
|
|
1493
1694
|
readonly type: 'CommerceCartCloseLink';
|
|
1494
1695
|
readonly plugin: 'Commerce';
|
|
@@ -1498,6 +1699,7 @@ interface CommerceCartCloseLinkIconElement
|
|
|
1498
1699
|
extends
|
|
1499
1700
|
WebflowElement,
|
|
1500
1701
|
CustomAttributes,
|
|
1702
|
+
Attributes,
|
|
1501
1703
|
DomId,
|
|
1502
1704
|
Styles,
|
|
1503
1705
|
NoChildren,
|
|
@@ -1505,7 +1707,8 @@ interface CommerceCartCloseLinkIconElement
|
|
|
1505
1707
|
NoAppConnections,
|
|
1506
1708
|
DisplayName,
|
|
1507
1709
|
BindableSourceSearch,
|
|
1508
|
-
ElementSettings
|
|
1710
|
+
ElementSettings,
|
|
1711
|
+
Visibility {
|
|
1509
1712
|
readonly id: FullElementId;
|
|
1510
1713
|
readonly type: 'CommerceCartCloseLinkIcon';
|
|
1511
1714
|
readonly plugin: 'Commerce';
|
|
@@ -1515,14 +1718,16 @@ interface CommerceCartRemoveLinkElement
|
|
|
1515
1718
|
extends
|
|
1516
1719
|
WebflowElement,
|
|
1517
1720
|
CustomAttributes,
|
|
1518
|
-
|
|
1721
|
+
Attributes,
|
|
1722
|
+
DomId,
|
|
1519
1723
|
Styles,
|
|
1520
1724
|
Children,
|
|
1521
1725
|
TextContent,
|
|
1522
1726
|
NoAppConnections,
|
|
1523
1727
|
DisplayName,
|
|
1524
1728
|
BindableSourceSearch,
|
|
1525
|
-
ElementSettings
|
|
1729
|
+
ElementSettings,
|
|
1730
|
+
Visibility {
|
|
1526
1731
|
readonly id: FullElementId;
|
|
1527
1732
|
readonly type: 'CommerceCartRemoveLink';
|
|
1528
1733
|
readonly plugin: 'Commerce';
|
|
@@ -1532,6 +1737,7 @@ interface CommerceCartOrderValueElement
|
|
|
1532
1737
|
extends
|
|
1533
1738
|
WebflowElement,
|
|
1534
1739
|
CustomAttributes,
|
|
1740
|
+
Attributes,
|
|
1535
1741
|
DomId,
|
|
1536
1742
|
Styles,
|
|
1537
1743
|
Children,
|
|
@@ -1539,7 +1745,8 @@ interface CommerceCartOrderValueElement
|
|
|
1539
1745
|
NoAppConnections,
|
|
1540
1746
|
DisplayName,
|
|
1541
1747
|
BindableSourceSearch,
|
|
1542
|
-
ElementSettings
|
|
1748
|
+
ElementSettings,
|
|
1749
|
+
Visibility {
|
|
1543
1750
|
readonly id: FullElementId;
|
|
1544
1751
|
readonly type: 'CommerceCartOrderValue';
|
|
1545
1752
|
readonly plugin: 'Commerce';
|
|
@@ -1549,6 +1756,7 @@ interface CommerceCartCheckoutActionsElement
|
|
|
1549
1756
|
extends
|
|
1550
1757
|
WebflowElement,
|
|
1551
1758
|
CustomAttributes,
|
|
1759
|
+
Attributes,
|
|
1552
1760
|
DomId,
|
|
1553
1761
|
Styles,
|
|
1554
1762
|
Children,
|
|
@@ -1556,7 +1764,8 @@ interface CommerceCartCheckoutActionsElement
|
|
|
1556
1764
|
NoAppConnections,
|
|
1557
1765
|
DisplayName,
|
|
1558
1766
|
BindableSourceSearch,
|
|
1559
|
-
ElementSettings
|
|
1767
|
+
ElementSettings,
|
|
1768
|
+
Visibility {
|
|
1560
1769
|
readonly id: FullElementId;
|
|
1561
1770
|
readonly type: 'CommerceCartCheckoutActions';
|
|
1562
1771
|
readonly plugin: 'Commerce';
|
|
@@ -1566,6 +1775,7 @@ interface CommerceCartOptionListElement
|
|
|
1566
1775
|
extends
|
|
1567
1776
|
WebflowElement,
|
|
1568
1777
|
CustomAttributes,
|
|
1778
|
+
Attributes,
|
|
1569
1779
|
DomId,
|
|
1570
1780
|
Styles,
|
|
1571
1781
|
Children,
|
|
@@ -1573,7 +1783,8 @@ interface CommerceCartOptionListElement
|
|
|
1573
1783
|
NoAppConnections,
|
|
1574
1784
|
DisplayName,
|
|
1575
1785
|
BindableSourceSearch,
|
|
1576
|
-
ElementSettings
|
|
1786
|
+
ElementSettings,
|
|
1787
|
+
Visibility {
|
|
1577
1788
|
readonly id: FullElementId;
|
|
1578
1789
|
readonly type: 'CommerceCartOptionList';
|
|
1579
1790
|
readonly plugin: 'Commerce';
|
|
@@ -1583,6 +1794,7 @@ interface CommerceCartOptionListItemElement
|
|
|
1583
1794
|
extends
|
|
1584
1795
|
WebflowElement,
|
|
1585
1796
|
CustomAttributes,
|
|
1797
|
+
Attributes,
|
|
1586
1798
|
DomId,
|
|
1587
1799
|
Styles,
|
|
1588
1800
|
Children,
|
|
@@ -1590,7 +1802,8 @@ interface CommerceCartOptionListItemElement
|
|
|
1590
1802
|
NoAppConnections,
|
|
1591
1803
|
DisplayName,
|
|
1592
1804
|
BindableSourceSearch,
|
|
1593
|
-
ElementSettings
|
|
1805
|
+
ElementSettings,
|
|
1806
|
+
Visibility {
|
|
1594
1807
|
readonly id: FullElementId;
|
|
1595
1808
|
readonly type: 'CommerceCartOptionListItem';
|
|
1596
1809
|
readonly plugin: 'Commerce';
|
|
@@ -1600,6 +1813,7 @@ interface CommerceCartOptionListItemLabelElement
|
|
|
1600
1813
|
extends
|
|
1601
1814
|
WebflowElement,
|
|
1602
1815
|
CustomAttributes,
|
|
1816
|
+
Attributes,
|
|
1603
1817
|
DomId,
|
|
1604
1818
|
Styles,
|
|
1605
1819
|
Children,
|
|
@@ -1607,7 +1821,8 @@ interface CommerceCartOptionListItemLabelElement
|
|
|
1607
1821
|
NoAppConnections,
|
|
1608
1822
|
DisplayName,
|
|
1609
1823
|
BindableSourceSearch,
|
|
1610
|
-
ElementSettings
|
|
1824
|
+
ElementSettings,
|
|
1825
|
+
Visibility {
|
|
1611
1826
|
readonly id: FullElementId;
|
|
1612
1827
|
readonly type: 'CommerceCartOptionListItemLabel';
|
|
1613
1828
|
readonly plugin: 'Commerce';
|
|
@@ -1617,6 +1832,7 @@ interface CommerceCartOptionListItemValueElement
|
|
|
1617
1832
|
extends
|
|
1618
1833
|
WebflowElement,
|
|
1619
1834
|
CustomAttributes,
|
|
1835
|
+
Attributes,
|
|
1620
1836
|
DomId,
|
|
1621
1837
|
Styles,
|
|
1622
1838
|
Children,
|
|
@@ -1624,7 +1840,8 @@ interface CommerceCartOptionListItemValueElement
|
|
|
1624
1840
|
NoAppConnections,
|
|
1625
1841
|
DisplayName,
|
|
1626
1842
|
BindableSourceSearch,
|
|
1627
|
-
ElementSettings
|
|
1843
|
+
ElementSettings,
|
|
1844
|
+
Visibility {
|
|
1628
1845
|
readonly id: FullElementId;
|
|
1629
1846
|
readonly type: 'CommerceCartOptionListItemValue';
|
|
1630
1847
|
readonly plugin: 'Commerce';
|
|
@@ -1634,14 +1851,16 @@ interface CommerceCartQuickCheckoutActionsElement
|
|
|
1634
1851
|
extends
|
|
1635
1852
|
WebflowElement,
|
|
1636
1853
|
CustomAttributes,
|
|
1637
|
-
|
|
1854
|
+
Attributes,
|
|
1855
|
+
DomId,
|
|
1638
1856
|
Styles,
|
|
1639
1857
|
Children,
|
|
1640
1858
|
NoTextContent,
|
|
1641
1859
|
NoAppConnections,
|
|
1642
1860
|
DisplayName,
|
|
1643
1861
|
BindableSourceSearch,
|
|
1644
|
-
ElementSettings
|
|
1862
|
+
ElementSettings,
|
|
1863
|
+
Visibility {
|
|
1645
1864
|
readonly id: FullElementId;
|
|
1646
1865
|
readonly type: 'CommerceCartQuickCheckoutActions';
|
|
1647
1866
|
readonly plugin: 'Commerce';
|
|
@@ -1651,14 +1870,16 @@ interface CommerceCartQuickCheckoutButtonElement
|
|
|
1651
1870
|
extends
|
|
1652
1871
|
WebflowElement,
|
|
1653
1872
|
CustomAttributes,
|
|
1654
|
-
|
|
1873
|
+
Attributes,
|
|
1874
|
+
DomId,
|
|
1655
1875
|
Styles,
|
|
1656
1876
|
Children,
|
|
1657
1877
|
TextContent,
|
|
1658
1878
|
NoAppConnections,
|
|
1659
1879
|
DisplayName,
|
|
1660
1880
|
BindableSourceSearch,
|
|
1661
|
-
ElementSettings
|
|
1881
|
+
ElementSettings,
|
|
1882
|
+
Visibility {
|
|
1662
1883
|
readonly id: FullElementId;
|
|
1663
1884
|
readonly type: 'CommerceCartQuickCheckoutButton';
|
|
1664
1885
|
readonly plugin: 'Commerce';
|
|
@@ -1668,14 +1889,16 @@ interface CommerceCartApplePayButtonElement
|
|
|
1668
1889
|
extends
|
|
1669
1890
|
WebflowElement,
|
|
1670
1891
|
CustomAttributes,
|
|
1671
|
-
|
|
1892
|
+
Attributes,
|
|
1893
|
+
DomId,
|
|
1672
1894
|
Styles,
|
|
1673
1895
|
Children,
|
|
1674
1896
|
TextContent,
|
|
1675
1897
|
NoAppConnections,
|
|
1676
1898
|
DisplayName,
|
|
1677
1899
|
BindableSourceSearch,
|
|
1678
|
-
ElementSettings
|
|
1900
|
+
ElementSettings,
|
|
1901
|
+
Visibility {
|
|
1679
1902
|
readonly id: FullElementId;
|
|
1680
1903
|
readonly type: 'CommerceCartApplePayButton';
|
|
1681
1904
|
readonly plugin: 'Commerce';
|
|
@@ -1685,6 +1908,7 @@ interface CommerceCartApplePayIconElement
|
|
|
1685
1908
|
extends
|
|
1686
1909
|
WebflowElement,
|
|
1687
1910
|
CustomAttributes,
|
|
1911
|
+
Attributes,
|
|
1688
1912
|
DomId,
|
|
1689
1913
|
Styles,
|
|
1690
1914
|
NoChildren,
|
|
@@ -1692,7 +1916,8 @@ interface CommerceCartApplePayIconElement
|
|
|
1692
1916
|
NoAppConnections,
|
|
1693
1917
|
DisplayName,
|
|
1694
1918
|
BindableSourceSearch,
|
|
1695
|
-
ElementSettings
|
|
1919
|
+
ElementSettings,
|
|
1920
|
+
Visibility {
|
|
1696
1921
|
readonly id: FullElementId;
|
|
1697
1922
|
readonly type: 'CommerceCartApplePayIcon';
|
|
1698
1923
|
readonly plugin: 'Commerce';
|
|
@@ -1702,6 +1927,7 @@ interface CommerceQuickCheckoutGoogleIconElement
|
|
|
1702
1927
|
extends
|
|
1703
1928
|
WebflowElement,
|
|
1704
1929
|
CustomAttributes,
|
|
1930
|
+
Attributes,
|
|
1705
1931
|
DomId,
|
|
1706
1932
|
Styles,
|
|
1707
1933
|
NoChildren,
|
|
@@ -1709,7 +1935,8 @@ interface CommerceQuickCheckoutGoogleIconElement
|
|
|
1709
1935
|
NoAppConnections,
|
|
1710
1936
|
DisplayName,
|
|
1711
1937
|
BindableSourceSearch,
|
|
1712
|
-
ElementSettings
|
|
1938
|
+
ElementSettings,
|
|
1939
|
+
Visibility {
|
|
1713
1940
|
readonly id: FullElementId;
|
|
1714
1941
|
readonly type: 'CommerceQuickCheckoutGoogleIcon';
|
|
1715
1942
|
readonly plugin: 'Commerce';
|
|
@@ -1719,6 +1946,7 @@ interface CommerceQuickCheckoutMicrosoftIconElement
|
|
|
1719
1946
|
extends
|
|
1720
1947
|
WebflowElement,
|
|
1721
1948
|
CustomAttributes,
|
|
1949
|
+
Attributes,
|
|
1722
1950
|
DomId,
|
|
1723
1951
|
Styles,
|
|
1724
1952
|
NoChildren,
|
|
@@ -1726,7 +1954,8 @@ interface CommerceQuickCheckoutMicrosoftIconElement
|
|
|
1726
1954
|
NoAppConnections,
|
|
1727
1955
|
DisplayName,
|
|
1728
1956
|
BindableSourceSearch,
|
|
1729
|
-
ElementSettings
|
|
1957
|
+
ElementSettings,
|
|
1958
|
+
Visibility {
|
|
1730
1959
|
readonly id: FullElementId;
|
|
1731
1960
|
readonly type: 'CommerceQuickCheckoutMicrosoftIcon';
|
|
1732
1961
|
readonly plugin: 'Commerce';
|
|
@@ -1736,6 +1965,7 @@ interface CommercePayPalCheckoutButtonElement
|
|
|
1736
1965
|
extends
|
|
1737
1966
|
WebflowElement,
|
|
1738
1967
|
CustomAttributes,
|
|
1968
|
+
Attributes,
|
|
1739
1969
|
DomId,
|
|
1740
1970
|
Styles,
|
|
1741
1971
|
NoChildren,
|
|
@@ -1743,7 +1973,8 @@ interface CommercePayPalCheckoutButtonElement
|
|
|
1743
1973
|
NoAppConnections,
|
|
1744
1974
|
DisplayName,
|
|
1745
1975
|
BindableSourceSearch,
|
|
1746
|
-
ElementSettings
|
|
1976
|
+
ElementSettings,
|
|
1977
|
+
Visibility {
|
|
1747
1978
|
readonly id: FullElementId;
|
|
1748
1979
|
readonly type: 'CommercePayPalCheckoutButton';
|
|
1749
1980
|
readonly plugin: 'Commerce';
|
|
@@ -1753,6 +1984,7 @@ interface CommerceCheckoutBlockContentElement
|
|
|
1753
1984
|
extends
|
|
1754
1985
|
WebflowElement,
|
|
1755
1986
|
CustomAttributes,
|
|
1987
|
+
Attributes,
|
|
1756
1988
|
DomId,
|
|
1757
1989
|
Styles,
|
|
1758
1990
|
Children,
|
|
@@ -1760,7 +1992,8 @@ interface CommerceCheckoutBlockContentElement
|
|
|
1760
1992
|
NoAppConnections,
|
|
1761
1993
|
DisplayName,
|
|
1762
1994
|
BindableSourceSearch,
|
|
1763
|
-
ElementSettings
|
|
1995
|
+
ElementSettings,
|
|
1996
|
+
Visibility {
|
|
1764
1997
|
readonly id: FullElementId;
|
|
1765
1998
|
readonly type: 'CommerceCheckoutBlockContent';
|
|
1766
1999
|
readonly plugin: 'Commerce';
|
|
@@ -1770,6 +2003,7 @@ interface CommerceCheckoutBlockHeaderElement
|
|
|
1770
2003
|
extends
|
|
1771
2004
|
WebflowElement,
|
|
1772
2005
|
CustomAttributes,
|
|
2006
|
+
Attributes,
|
|
1773
2007
|
DomId,
|
|
1774
2008
|
Styles,
|
|
1775
2009
|
Children,
|
|
@@ -1777,7 +2011,8 @@ interface CommerceCheckoutBlockHeaderElement
|
|
|
1777
2011
|
NoAppConnections,
|
|
1778
2012
|
DisplayName,
|
|
1779
2013
|
BindableSourceSearch,
|
|
1780
|
-
ElementSettings
|
|
2014
|
+
ElementSettings,
|
|
2015
|
+
Visibility {
|
|
1781
2016
|
readonly id: FullElementId;
|
|
1782
2017
|
readonly type: 'CommerceCheckoutBlockHeader';
|
|
1783
2018
|
readonly plugin: 'Commerce';
|
|
@@ -1787,6 +2022,7 @@ interface CommerceCheckoutColumnElement
|
|
|
1787
2022
|
extends
|
|
1788
2023
|
WebflowElement,
|
|
1789
2024
|
CustomAttributes,
|
|
2025
|
+
Attributes,
|
|
1790
2026
|
DomId,
|
|
1791
2027
|
Styles,
|
|
1792
2028
|
Children,
|
|
@@ -1794,7 +2030,8 @@ interface CommerceCheckoutColumnElement
|
|
|
1794
2030
|
NoAppConnections,
|
|
1795
2031
|
DisplayName,
|
|
1796
2032
|
BindableSourceSearch,
|
|
1797
|
-
ElementSettings
|
|
2033
|
+
ElementSettings,
|
|
2034
|
+
Visibility {
|
|
1798
2035
|
readonly id: FullElementId;
|
|
1799
2036
|
readonly type: 'CommerceCheckoutColumn';
|
|
1800
2037
|
readonly plugin: 'Commerce';
|
|
@@ -1804,6 +2041,7 @@ interface CommerceCheckoutFormContainerElement
|
|
|
1804
2041
|
extends
|
|
1805
2042
|
WebflowElement,
|
|
1806
2043
|
CustomAttributes,
|
|
2044
|
+
Attributes,
|
|
1807
2045
|
DomId,
|
|
1808
2046
|
Styles,
|
|
1809
2047
|
Children,
|
|
@@ -1811,7 +2049,8 @@ interface CommerceCheckoutFormContainerElement
|
|
|
1811
2049
|
NoAppConnections,
|
|
1812
2050
|
DisplayName,
|
|
1813
2051
|
BindableSourceSearch,
|
|
1814
|
-
ElementSettings
|
|
2052
|
+
ElementSettings,
|
|
2053
|
+
Visibility {
|
|
1815
2054
|
readonly id: FullElementId;
|
|
1816
2055
|
readonly type: 'CommerceCheckoutFormContainer';
|
|
1817
2056
|
readonly plugin: 'Commerce';
|
|
@@ -1821,6 +2060,7 @@ interface CommerceCheckoutRowElement
|
|
|
1821
2060
|
extends
|
|
1822
2061
|
WebflowElement,
|
|
1823
2062
|
CustomAttributes,
|
|
2063
|
+
Attributes,
|
|
1824
2064
|
DomId,
|
|
1825
2065
|
Styles,
|
|
1826
2066
|
Children,
|
|
@@ -1828,7 +2068,8 @@ interface CommerceCheckoutRowElement
|
|
|
1828
2068
|
NoAppConnections,
|
|
1829
2069
|
DisplayName,
|
|
1830
2070
|
BindableSourceSearch,
|
|
1831
|
-
ElementSettings
|
|
2071
|
+
ElementSettings,
|
|
2072
|
+
Visibility {
|
|
1832
2073
|
readonly id: FullElementId;
|
|
1833
2074
|
readonly type: 'CommerceCheckoutRow';
|
|
1834
2075
|
readonly plugin: 'Commerce';
|
|
@@ -1838,14 +2079,16 @@ interface CommerceCheckoutLabelElement
|
|
|
1838
2079
|
extends
|
|
1839
2080
|
WebflowElement,
|
|
1840
2081
|
CustomAttributes,
|
|
1841
|
-
|
|
2082
|
+
Attributes,
|
|
2083
|
+
DomId,
|
|
1842
2084
|
Styles,
|
|
1843
2085
|
Children,
|
|
1844
2086
|
TextContent,
|
|
1845
2087
|
NoAppConnections,
|
|
1846
2088
|
DisplayName,
|
|
1847
2089
|
BindableSourceSearch,
|
|
1848
|
-
ElementSettings
|
|
2090
|
+
ElementSettings,
|
|
2091
|
+
Visibility {
|
|
1849
2092
|
readonly id: FullElementId;
|
|
1850
2093
|
readonly type: 'CommerceCheckoutLabel';
|
|
1851
2094
|
readonly plugin: 'Commerce';
|
|
@@ -1855,6 +2098,7 @@ interface CommerceLabelElement
|
|
|
1855
2098
|
extends
|
|
1856
2099
|
WebflowElement,
|
|
1857
2100
|
CustomAttributes,
|
|
2101
|
+
Attributes,
|
|
1858
2102
|
DomId,
|
|
1859
2103
|
Styles,
|
|
1860
2104
|
Children,
|
|
@@ -1862,7 +2106,8 @@ interface CommerceLabelElement
|
|
|
1862
2106
|
NoAppConnections,
|
|
1863
2107
|
DisplayName,
|
|
1864
2108
|
BindableSourceSearch,
|
|
1865
|
-
ElementSettings
|
|
2109
|
+
ElementSettings,
|
|
2110
|
+
Visibility {
|
|
1866
2111
|
readonly id: FullElementId;
|
|
1867
2112
|
readonly type: 'CommerceLabel';
|
|
1868
2113
|
readonly plugin: 'Commerce';
|
|
@@ -1872,6 +2117,7 @@ interface CommerceCheckoutCardExpirationDateElement
|
|
|
1872
2117
|
extends
|
|
1873
2118
|
WebflowElement,
|
|
1874
2119
|
CustomAttributes,
|
|
2120
|
+
Attributes,
|
|
1875
2121
|
DomId,
|
|
1876
2122
|
Styles,
|
|
1877
2123
|
NoChildren,
|
|
@@ -1879,7 +2125,8 @@ interface CommerceCheckoutCardExpirationDateElement
|
|
|
1879
2125
|
NoAppConnections,
|
|
1880
2126
|
DisplayName,
|
|
1881
2127
|
BindableSourceSearch,
|
|
1882
|
-
ElementSettings
|
|
2128
|
+
ElementSettings,
|
|
2129
|
+
Visibility {
|
|
1883
2130
|
readonly id: FullElementId;
|
|
1884
2131
|
readonly type: 'CommerceCheckoutCardExpirationDate';
|
|
1885
2132
|
readonly plugin: 'Commerce';
|
|
@@ -1889,6 +2136,7 @@ interface CommerceCheckoutCardNumberElement
|
|
|
1889
2136
|
extends
|
|
1890
2137
|
WebflowElement,
|
|
1891
2138
|
CustomAttributes,
|
|
2139
|
+
Attributes,
|
|
1892
2140
|
DomId,
|
|
1893
2141
|
Styles,
|
|
1894
2142
|
NoChildren,
|
|
@@ -1896,7 +2144,8 @@ interface CommerceCheckoutCardNumberElement
|
|
|
1896
2144
|
NoAppConnections,
|
|
1897
2145
|
DisplayName,
|
|
1898
2146
|
BindableSourceSearch,
|
|
1899
|
-
ElementSettings
|
|
2147
|
+
ElementSettings,
|
|
2148
|
+
Visibility {
|
|
1900
2149
|
readonly id: FullElementId;
|
|
1901
2150
|
readonly type: 'CommerceCheckoutCardNumber';
|
|
1902
2151
|
readonly plugin: 'Commerce';
|
|
@@ -1906,6 +2155,7 @@ interface CommerceCheckoutCardSecurityCodeElement
|
|
|
1906
2155
|
extends
|
|
1907
2156
|
WebflowElement,
|
|
1908
2157
|
CustomAttributes,
|
|
2158
|
+
Attributes,
|
|
1909
2159
|
DomId,
|
|
1910
2160
|
Styles,
|
|
1911
2161
|
NoChildren,
|
|
@@ -1913,7 +2163,8 @@ interface CommerceCheckoutCardSecurityCodeElement
|
|
|
1913
2163
|
NoAppConnections,
|
|
1914
2164
|
DisplayName,
|
|
1915
2165
|
BindableSourceSearch,
|
|
1916
|
-
ElementSettings
|
|
2166
|
+
ElementSettings,
|
|
2167
|
+
Visibility {
|
|
1917
2168
|
readonly id: FullElementId;
|
|
1918
2169
|
readonly type: 'CommerceCheckoutCardSecurityCode';
|
|
1919
2170
|
readonly plugin: 'Commerce';
|
|
@@ -1923,6 +2174,7 @@ interface CommerceCheckoutCustomerInfoWrapperElement
|
|
|
1923
2174
|
extends
|
|
1924
2175
|
WebflowElement,
|
|
1925
2176
|
CustomAttributes,
|
|
2177
|
+
Attributes,
|
|
1926
2178
|
DomId,
|
|
1927
2179
|
Styles,
|
|
1928
2180
|
Children,
|
|
@@ -1930,7 +2182,8 @@ interface CommerceCheckoutCustomerInfoWrapperElement
|
|
|
1930
2182
|
NoAppConnections,
|
|
1931
2183
|
DisplayName,
|
|
1932
2184
|
BindableSourceSearch,
|
|
1933
|
-
ElementSettings
|
|
2185
|
+
ElementSettings,
|
|
2186
|
+
Visibility {
|
|
1934
2187
|
readonly id: FullElementId;
|
|
1935
2188
|
readonly type: 'CommerceCheckoutCustomerInfoWrapper';
|
|
1936
2189
|
readonly plugin: 'Commerce';
|
|
@@ -1940,6 +2193,7 @@ interface CommerceCheckoutErrorStateElement
|
|
|
1940
2193
|
extends
|
|
1941
2194
|
WebflowElement,
|
|
1942
2195
|
CustomAttributes,
|
|
2196
|
+
Attributes,
|
|
1943
2197
|
DomId,
|
|
1944
2198
|
Styles,
|
|
1945
2199
|
Children,
|
|
@@ -1947,7 +2201,8 @@ interface CommerceCheckoutErrorStateElement
|
|
|
1947
2201
|
NoAppConnections,
|
|
1948
2202
|
DisplayName,
|
|
1949
2203
|
BindableSourceSearch,
|
|
1950
|
-
ElementSettings
|
|
2204
|
+
ElementSettings,
|
|
2205
|
+
Visibility {
|
|
1951
2206
|
readonly id: FullElementId;
|
|
1952
2207
|
readonly type: 'CommerceCheckoutErrorState';
|
|
1953
2208
|
readonly plugin: 'Commerce';
|
|
@@ -1957,6 +2212,7 @@ interface CommerceCheckoutPaymentInfoWrapperElement
|
|
|
1957
2212
|
extends
|
|
1958
2213
|
WebflowElement,
|
|
1959
2214
|
CustomAttributes,
|
|
2215
|
+
Attributes,
|
|
1960
2216
|
DomId,
|
|
1961
2217
|
Styles,
|
|
1962
2218
|
Children,
|
|
@@ -1964,7 +2220,8 @@ interface CommerceCheckoutPaymentInfoWrapperElement
|
|
|
1964
2220
|
NoAppConnections,
|
|
1965
2221
|
DisplayName,
|
|
1966
2222
|
BindableSourceSearch,
|
|
1967
|
-
ElementSettings
|
|
2223
|
+
ElementSettings,
|
|
2224
|
+
Visibility {
|
|
1968
2225
|
readonly id: FullElementId;
|
|
1969
2226
|
readonly type: 'CommerceCheckoutPaymentInfoWrapper';
|
|
1970
2227
|
readonly plugin: 'Commerce';
|
|
@@ -1974,14 +2231,16 @@ interface CommerceCheckoutPlaceOrderButtonElement
|
|
|
1974
2231
|
extends
|
|
1975
2232
|
WebflowElement,
|
|
1976
2233
|
CustomAttributes,
|
|
1977
|
-
|
|
2234
|
+
Attributes,
|
|
2235
|
+
DomId,
|
|
1978
2236
|
Styles,
|
|
1979
2237
|
NoChildren,
|
|
1980
2238
|
TextContent,
|
|
1981
2239
|
NoAppConnections,
|
|
1982
2240
|
DisplayName,
|
|
1983
2241
|
BindableSourceSearch,
|
|
1984
|
-
ElementSettings
|
|
2242
|
+
ElementSettings,
|
|
2243
|
+
Visibility {
|
|
1985
2244
|
readonly id: FullElementId;
|
|
1986
2245
|
readonly type: 'CommerceCheckoutPlaceOrderButton';
|
|
1987
2246
|
readonly plugin: 'Commerce';
|
|
@@ -1991,6 +2250,7 @@ interface CommerceCheckoutEmailInputElement
|
|
|
1991
2250
|
extends
|
|
1992
2251
|
WebflowElement,
|
|
1993
2252
|
CustomAttributes,
|
|
2253
|
+
Attributes,
|
|
1994
2254
|
DomId,
|
|
1995
2255
|
Styles,
|
|
1996
2256
|
NoChildren,
|
|
@@ -1998,7 +2258,8 @@ interface CommerceCheckoutEmailInputElement
|
|
|
1998
2258
|
NoAppConnections,
|
|
1999
2259
|
DisplayName,
|
|
2000
2260
|
BindableSourceSearch,
|
|
2001
|
-
ElementSettings
|
|
2261
|
+
ElementSettings,
|
|
2262
|
+
Visibility {
|
|
2002
2263
|
readonly id: FullElementId;
|
|
2003
2264
|
readonly type: 'CommerceCheckoutEmailInput';
|
|
2004
2265
|
readonly plugin: 'Commerce';
|
|
@@ -2008,6 +2269,7 @@ interface CommerceCheckoutShippingAddressWrapperElement
|
|
|
2008
2269
|
extends
|
|
2009
2270
|
WebflowElement,
|
|
2010
2271
|
CustomAttributes,
|
|
2272
|
+
Attributes,
|
|
2011
2273
|
DomId,
|
|
2012
2274
|
Styles,
|
|
2013
2275
|
Children,
|
|
@@ -2015,7 +2277,8 @@ interface CommerceCheckoutShippingAddressWrapperElement
|
|
|
2015
2277
|
NoAppConnections,
|
|
2016
2278
|
DisplayName,
|
|
2017
2279
|
BindableSourceSearch,
|
|
2018
|
-
ElementSettings
|
|
2280
|
+
ElementSettings,
|
|
2281
|
+
Visibility {
|
|
2019
2282
|
readonly id: FullElementId;
|
|
2020
2283
|
readonly type: 'CommerceCheckoutShippingAddressWrapper';
|
|
2021
2284
|
readonly plugin: 'Commerce';
|
|
@@ -2025,6 +2288,7 @@ interface CommerceCheckoutShippingCountrySelectorElement
|
|
|
2025
2288
|
extends
|
|
2026
2289
|
WebflowElement,
|
|
2027
2290
|
CustomAttributes,
|
|
2291
|
+
Attributes,
|
|
2028
2292
|
DomId,
|
|
2029
2293
|
Styles,
|
|
2030
2294
|
NoChildren,
|
|
@@ -2032,7 +2296,8 @@ interface CommerceCheckoutShippingCountrySelectorElement
|
|
|
2032
2296
|
NoAppConnections,
|
|
2033
2297
|
DisplayName,
|
|
2034
2298
|
BindableSourceSearch,
|
|
2035
|
-
ElementSettings
|
|
2299
|
+
ElementSettings,
|
|
2300
|
+
Visibility {
|
|
2036
2301
|
readonly id: FullElementId;
|
|
2037
2302
|
readonly type: 'CommerceCheckoutShippingCountrySelector';
|
|
2038
2303
|
readonly plugin: 'Commerce';
|
|
@@ -2042,6 +2307,7 @@ interface CommerceCheckoutShippingFullNameElement
|
|
|
2042
2307
|
extends
|
|
2043
2308
|
WebflowElement,
|
|
2044
2309
|
CustomAttributes,
|
|
2310
|
+
Attributes,
|
|
2045
2311
|
DomId,
|
|
2046
2312
|
Styles,
|
|
2047
2313
|
NoChildren,
|
|
@@ -2049,7 +2315,8 @@ interface CommerceCheckoutShippingFullNameElement
|
|
|
2049
2315
|
NoAppConnections,
|
|
2050
2316
|
DisplayName,
|
|
2051
2317
|
BindableSourceSearch,
|
|
2052
|
-
ElementSettings
|
|
2318
|
+
ElementSettings,
|
|
2319
|
+
Visibility {
|
|
2053
2320
|
readonly id: FullElementId;
|
|
2054
2321
|
readonly type: 'CommerceCheckoutShippingFullName';
|
|
2055
2322
|
readonly plugin: 'Commerce';
|
|
@@ -2059,6 +2326,7 @@ interface CommerceCheckoutShippingStreetAddressElement
|
|
|
2059
2326
|
extends
|
|
2060
2327
|
WebflowElement,
|
|
2061
2328
|
CustomAttributes,
|
|
2329
|
+
Attributes,
|
|
2062
2330
|
DomId,
|
|
2063
2331
|
Styles,
|
|
2064
2332
|
NoChildren,
|
|
@@ -2066,7 +2334,8 @@ interface CommerceCheckoutShippingStreetAddressElement
|
|
|
2066
2334
|
NoAppConnections,
|
|
2067
2335
|
DisplayName,
|
|
2068
2336
|
BindableSourceSearch,
|
|
2069
|
-
ElementSettings
|
|
2337
|
+
ElementSettings,
|
|
2338
|
+
Visibility {
|
|
2070
2339
|
readonly id: FullElementId;
|
|
2071
2340
|
readonly type: 'CommerceCheckoutShippingStreetAddress';
|
|
2072
2341
|
readonly plugin: 'Commerce';
|
|
@@ -2076,14 +2345,16 @@ interface CommerceCheckoutShippingStreetAddressOptionalElement
|
|
|
2076
2345
|
extends
|
|
2077
2346
|
WebflowElement,
|
|
2078
2347
|
CustomAttributes,
|
|
2079
|
-
|
|
2348
|
+
Attributes,
|
|
2349
|
+
DomId,
|
|
2080
2350
|
Styles,
|
|
2081
2351
|
NoChildren,
|
|
2082
2352
|
NoTextContent,
|
|
2083
2353
|
NoAppConnections,
|
|
2084
2354
|
DisplayName,
|
|
2085
2355
|
BindableSourceSearch,
|
|
2086
|
-
ElementSettings
|
|
2356
|
+
ElementSettings,
|
|
2357
|
+
Visibility {
|
|
2087
2358
|
readonly id: FullElementId;
|
|
2088
2359
|
readonly type: 'CommerceCheckoutShippingStreetAddressOptional';
|
|
2089
2360
|
readonly plugin: 'Commerce';
|
|
@@ -2093,6 +2364,7 @@ interface CommerceCheckoutShippingCityElement
|
|
|
2093
2364
|
extends
|
|
2094
2365
|
WebflowElement,
|
|
2095
2366
|
CustomAttributes,
|
|
2367
|
+
Attributes,
|
|
2096
2368
|
DomId,
|
|
2097
2369
|
Styles,
|
|
2098
2370
|
NoChildren,
|
|
@@ -2100,7 +2372,8 @@ interface CommerceCheckoutShippingCityElement
|
|
|
2100
2372
|
NoAppConnections,
|
|
2101
2373
|
DisplayName,
|
|
2102
2374
|
BindableSourceSearch,
|
|
2103
|
-
ElementSettings
|
|
2375
|
+
ElementSettings,
|
|
2376
|
+
Visibility {
|
|
2104
2377
|
readonly id: FullElementId;
|
|
2105
2378
|
readonly type: 'CommerceCheckoutShippingCity';
|
|
2106
2379
|
readonly plugin: 'Commerce';
|
|
@@ -2110,6 +2383,7 @@ interface CommerceCheckoutShippingZipPostalCodeElement
|
|
|
2110
2383
|
extends
|
|
2111
2384
|
WebflowElement,
|
|
2112
2385
|
CustomAttributes,
|
|
2386
|
+
Attributes,
|
|
2113
2387
|
DomId,
|
|
2114
2388
|
Styles,
|
|
2115
2389
|
NoChildren,
|
|
@@ -2117,7 +2391,8 @@ interface CommerceCheckoutShippingZipPostalCodeElement
|
|
|
2117
2391
|
NoAppConnections,
|
|
2118
2392
|
DisplayName,
|
|
2119
2393
|
BindableSourceSearch,
|
|
2120
|
-
ElementSettings
|
|
2394
|
+
ElementSettings,
|
|
2395
|
+
Visibility {
|
|
2121
2396
|
readonly id: FullElementId;
|
|
2122
2397
|
readonly type: 'CommerceCheckoutShippingZipPostalCode';
|
|
2123
2398
|
readonly plugin: 'Commerce';
|
|
@@ -2127,6 +2402,7 @@ interface CommerceCheckoutShippingStateProvinceElement
|
|
|
2127
2402
|
extends
|
|
2128
2403
|
WebflowElement,
|
|
2129
2404
|
CustomAttributes,
|
|
2405
|
+
Attributes,
|
|
2130
2406
|
DomId,
|
|
2131
2407
|
Styles,
|
|
2132
2408
|
NoChildren,
|
|
@@ -2134,7 +2410,8 @@ interface CommerceCheckoutShippingStateProvinceElement
|
|
|
2134
2410
|
NoAppConnections,
|
|
2135
2411
|
DisplayName,
|
|
2136
2412
|
BindableSourceSearch,
|
|
2137
|
-
ElementSettings
|
|
2413
|
+
ElementSettings,
|
|
2414
|
+
Visibility {
|
|
2138
2415
|
readonly id: FullElementId;
|
|
2139
2416
|
readonly type: 'CommerceCheckoutShippingStateProvince';
|
|
2140
2417
|
readonly plugin: 'Commerce';
|
|
@@ -2144,6 +2421,7 @@ interface CommerceOrderConfirmationElement
|
|
|
2144
2421
|
extends
|
|
2145
2422
|
WebflowElement,
|
|
2146
2423
|
CustomAttributes,
|
|
2424
|
+
Attributes,
|
|
2147
2425
|
DomId,
|
|
2148
2426
|
Styles,
|
|
2149
2427
|
Children,
|
|
@@ -2151,7 +2429,8 @@ interface CommerceOrderConfirmationElement
|
|
|
2151
2429
|
NoAppConnections,
|
|
2152
2430
|
DisplayName,
|
|
2153
2431
|
BindableSourceSearch,
|
|
2154
|
-
ElementSettings
|
|
2432
|
+
ElementSettings,
|
|
2433
|
+
Visibility {
|
|
2155
2434
|
readonly id: FullElementId;
|
|
2156
2435
|
readonly type: 'CommerceOrderConfirmation';
|
|
2157
2436
|
readonly plugin: 'Commerce';
|
|
@@ -2161,6 +2440,7 @@ interface CommerceOrderConfirmationContainerElement
|
|
|
2161
2440
|
extends
|
|
2162
2441
|
WebflowElement,
|
|
2163
2442
|
CustomAttributes,
|
|
2443
|
+
Attributes,
|
|
2164
2444
|
DomId,
|
|
2165
2445
|
Styles,
|
|
2166
2446
|
Children,
|
|
@@ -2168,7 +2448,8 @@ interface CommerceOrderConfirmationContainerElement
|
|
|
2168
2448
|
NoAppConnections,
|
|
2169
2449
|
DisplayName,
|
|
2170
2450
|
BindableSourceSearch,
|
|
2171
|
-
ElementSettings
|
|
2451
|
+
ElementSettings,
|
|
2452
|
+
Visibility {
|
|
2172
2453
|
readonly id: FullElementId;
|
|
2173
2454
|
readonly type: 'CommerceOrderConfirmationContainer';
|
|
2174
2455
|
readonly plugin: 'Commerce';
|
|
@@ -2178,6 +2459,7 @@ interface CommerceOrderConfirmationHeaderWrapperElement
|
|
|
2178
2459
|
extends
|
|
2179
2460
|
WebflowElement,
|
|
2180
2461
|
CustomAttributes,
|
|
2462
|
+
Attributes,
|
|
2181
2463
|
DomId,
|
|
2182
2464
|
Styles,
|
|
2183
2465
|
Children,
|
|
@@ -2185,7 +2467,8 @@ interface CommerceOrderConfirmationHeaderWrapperElement
|
|
|
2185
2467
|
NoAppConnections,
|
|
2186
2468
|
DisplayName,
|
|
2187
2469
|
BindableSourceSearch,
|
|
2188
|
-
ElementSettings
|
|
2470
|
+
ElementSettings,
|
|
2471
|
+
Visibility {
|
|
2189
2472
|
readonly id: FullElementId;
|
|
2190
2473
|
readonly type: 'CommerceOrderConfirmationHeaderWrapper';
|
|
2191
2474
|
readonly plugin: 'Commerce';
|
|
@@ -2195,6 +2478,7 @@ interface CommerceCheckoutBillingAddressWrapperElement
|
|
|
2195
2478
|
extends
|
|
2196
2479
|
WebflowElement,
|
|
2197
2480
|
CustomAttributes,
|
|
2481
|
+
Attributes,
|
|
2198
2482
|
DomId,
|
|
2199
2483
|
Styles,
|
|
2200
2484
|
Children,
|
|
@@ -2202,7 +2486,8 @@ interface CommerceCheckoutBillingAddressWrapperElement
|
|
|
2202
2486
|
NoAppConnections,
|
|
2203
2487
|
DisplayName,
|
|
2204
2488
|
BindableSourceSearch,
|
|
2205
|
-
ElementSettings
|
|
2489
|
+
ElementSettings,
|
|
2490
|
+
Visibility {
|
|
2206
2491
|
readonly id: FullElementId;
|
|
2207
2492
|
readonly type: 'CommerceCheckoutBillingAddressWrapper';
|
|
2208
2493
|
readonly plugin: 'Commerce';
|
|
@@ -2212,6 +2497,7 @@ interface CommerceCheckoutBillingCountrySelectorElement
|
|
|
2212
2497
|
extends
|
|
2213
2498
|
WebflowElement,
|
|
2214
2499
|
CustomAttributes,
|
|
2500
|
+
Attributes,
|
|
2215
2501
|
DomId,
|
|
2216
2502
|
Styles,
|
|
2217
2503
|
NoChildren,
|
|
@@ -2219,7 +2505,8 @@ interface CommerceCheckoutBillingCountrySelectorElement
|
|
|
2219
2505
|
NoAppConnections,
|
|
2220
2506
|
DisplayName,
|
|
2221
2507
|
BindableSourceSearch,
|
|
2222
|
-
ElementSettings
|
|
2508
|
+
ElementSettings,
|
|
2509
|
+
Visibility {
|
|
2223
2510
|
readonly id: FullElementId;
|
|
2224
2511
|
readonly type: 'CommerceCheckoutBillingCountrySelector';
|
|
2225
2512
|
readonly plugin: 'Commerce';
|
|
@@ -2229,6 +2516,7 @@ interface CommerceCheckoutBillingFullNameElement
|
|
|
2229
2516
|
extends
|
|
2230
2517
|
WebflowElement,
|
|
2231
2518
|
CustomAttributes,
|
|
2519
|
+
Attributes,
|
|
2232
2520
|
DomId,
|
|
2233
2521
|
Styles,
|
|
2234
2522
|
NoChildren,
|
|
@@ -2236,7 +2524,8 @@ interface CommerceCheckoutBillingFullNameElement
|
|
|
2236
2524
|
NoAppConnections,
|
|
2237
2525
|
DisplayName,
|
|
2238
2526
|
BindableSourceSearch,
|
|
2239
|
-
ElementSettings
|
|
2527
|
+
ElementSettings,
|
|
2528
|
+
Visibility {
|
|
2240
2529
|
readonly id: FullElementId;
|
|
2241
2530
|
readonly type: 'CommerceCheckoutBillingFullName';
|
|
2242
2531
|
readonly plugin: 'Commerce';
|
|
@@ -2246,6 +2535,7 @@ interface CommerceCheckoutBillingStreetAddressElement
|
|
|
2246
2535
|
extends
|
|
2247
2536
|
WebflowElement,
|
|
2248
2537
|
CustomAttributes,
|
|
2538
|
+
Attributes,
|
|
2249
2539
|
DomId,
|
|
2250
2540
|
Styles,
|
|
2251
2541
|
NoChildren,
|
|
@@ -2253,7 +2543,8 @@ interface CommerceCheckoutBillingStreetAddressElement
|
|
|
2253
2543
|
NoAppConnections,
|
|
2254
2544
|
DisplayName,
|
|
2255
2545
|
BindableSourceSearch,
|
|
2256
|
-
ElementSettings
|
|
2546
|
+
ElementSettings,
|
|
2547
|
+
Visibility {
|
|
2257
2548
|
readonly id: FullElementId;
|
|
2258
2549
|
readonly type: 'CommerceCheckoutBillingStreetAddress';
|
|
2259
2550
|
readonly plugin: 'Commerce';
|
|
@@ -2263,14 +2554,16 @@ interface CommerceCheckoutBillingStreetAddressOptionalElement
|
|
|
2263
2554
|
extends
|
|
2264
2555
|
WebflowElement,
|
|
2265
2556
|
CustomAttributes,
|
|
2266
|
-
|
|
2557
|
+
Attributes,
|
|
2558
|
+
DomId,
|
|
2267
2559
|
Styles,
|
|
2268
2560
|
NoChildren,
|
|
2269
2561
|
NoTextContent,
|
|
2270
2562
|
NoAppConnections,
|
|
2271
2563
|
DisplayName,
|
|
2272
2564
|
BindableSourceSearch,
|
|
2273
|
-
ElementSettings
|
|
2565
|
+
ElementSettings,
|
|
2566
|
+
Visibility {
|
|
2274
2567
|
readonly id: FullElementId;
|
|
2275
2568
|
readonly type: 'CommerceCheckoutBillingStreetAddressOptional';
|
|
2276
2569
|
readonly plugin: 'Commerce';
|
|
@@ -2280,6 +2573,7 @@ interface CommerceCheckoutBillingCityElement
|
|
|
2280
2573
|
extends
|
|
2281
2574
|
WebflowElement,
|
|
2282
2575
|
CustomAttributes,
|
|
2576
|
+
Attributes,
|
|
2283
2577
|
DomId,
|
|
2284
2578
|
Styles,
|
|
2285
2579
|
NoChildren,
|
|
@@ -2287,7 +2581,8 @@ interface CommerceCheckoutBillingCityElement
|
|
|
2287
2581
|
NoAppConnections,
|
|
2288
2582
|
DisplayName,
|
|
2289
2583
|
BindableSourceSearch,
|
|
2290
|
-
ElementSettings
|
|
2584
|
+
ElementSettings,
|
|
2585
|
+
Visibility {
|
|
2291
2586
|
readonly id: FullElementId;
|
|
2292
2587
|
readonly type: 'CommerceCheckoutBillingCity';
|
|
2293
2588
|
readonly plugin: 'Commerce';
|
|
@@ -2297,6 +2592,7 @@ interface CommerceCheckoutBillingZipPostalCodeElement
|
|
|
2297
2592
|
extends
|
|
2298
2593
|
WebflowElement,
|
|
2299
2594
|
CustomAttributes,
|
|
2595
|
+
Attributes,
|
|
2300
2596
|
DomId,
|
|
2301
2597
|
Styles,
|
|
2302
2598
|
NoChildren,
|
|
@@ -2304,7 +2600,8 @@ interface CommerceCheckoutBillingZipPostalCodeElement
|
|
|
2304
2600
|
NoAppConnections,
|
|
2305
2601
|
DisplayName,
|
|
2306
2602
|
BindableSourceSearch,
|
|
2307
|
-
ElementSettings
|
|
2603
|
+
ElementSettings,
|
|
2604
|
+
Visibility {
|
|
2308
2605
|
readonly id: FullElementId;
|
|
2309
2606
|
readonly type: 'CommerceCheckoutBillingZipPostalCode';
|
|
2310
2607
|
readonly plugin: 'Commerce';
|
|
@@ -2314,6 +2611,7 @@ interface CommerceCheckoutBillingStateProvinceElement
|
|
|
2314
2611
|
extends
|
|
2315
2612
|
WebflowElement,
|
|
2316
2613
|
CustomAttributes,
|
|
2614
|
+
Attributes,
|
|
2317
2615
|
DomId,
|
|
2318
2616
|
Styles,
|
|
2319
2617
|
NoChildren,
|
|
@@ -2321,7 +2619,8 @@ interface CommerceCheckoutBillingStateProvinceElement
|
|
|
2321
2619
|
NoAppConnections,
|
|
2322
2620
|
DisplayName,
|
|
2323
2621
|
BindableSourceSearch,
|
|
2324
|
-
ElementSettings
|
|
2622
|
+
ElementSettings,
|
|
2623
|
+
Visibility {
|
|
2325
2624
|
readonly id: FullElementId;
|
|
2326
2625
|
readonly type: 'CommerceCheckoutBillingStateProvince';
|
|
2327
2626
|
readonly plugin: 'Commerce';
|
|
@@ -2331,6 +2630,7 @@ interface CommerceCheckoutBillingAddressToggleWrapperElement
|
|
|
2331
2630
|
extends
|
|
2332
2631
|
WebflowElement,
|
|
2333
2632
|
CustomAttributes,
|
|
2633
|
+
Attributes,
|
|
2334
2634
|
DomId,
|
|
2335
2635
|
Styles,
|
|
2336
2636
|
Children,
|
|
@@ -2338,7 +2638,8 @@ interface CommerceCheckoutBillingAddressToggleWrapperElement
|
|
|
2338
2638
|
NoAppConnections,
|
|
2339
2639
|
DisplayName,
|
|
2340
2640
|
BindableSourceSearch,
|
|
2341
|
-
ElementSettings
|
|
2641
|
+
ElementSettings,
|
|
2642
|
+
Visibility {
|
|
2342
2643
|
readonly id: FullElementId;
|
|
2343
2644
|
readonly type: 'CommerceCheckoutBillingAddressToggleWrapper';
|
|
2344
2645
|
readonly plugin: 'Commerce';
|
|
@@ -2348,6 +2649,7 @@ interface CommerceCheckoutBillingAddressToggleCheckboxElement
|
|
|
2348
2649
|
extends
|
|
2349
2650
|
WebflowElement,
|
|
2350
2651
|
CustomAttributes,
|
|
2652
|
+
Attributes,
|
|
2351
2653
|
DomId,
|
|
2352
2654
|
Styles,
|
|
2353
2655
|
NoChildren,
|
|
@@ -2355,7 +2657,8 @@ interface CommerceCheckoutBillingAddressToggleCheckboxElement
|
|
|
2355
2657
|
NoAppConnections,
|
|
2356
2658
|
DisplayName,
|
|
2357
2659
|
BindableSourceSearch,
|
|
2358
|
-
ElementSettings
|
|
2660
|
+
ElementSettings,
|
|
2661
|
+
Visibility {
|
|
2359
2662
|
readonly id: FullElementId;
|
|
2360
2663
|
readonly type: 'CommerceCheckoutBillingAddressToggleCheckbox';
|
|
2361
2664
|
readonly plugin: 'Commerce';
|
|
@@ -2365,14 +2668,16 @@ interface CommerceCheckoutBillingAddressToggleLabelElement
|
|
|
2365
2668
|
extends
|
|
2366
2669
|
WebflowElement,
|
|
2367
2670
|
CustomAttributes,
|
|
2368
|
-
|
|
2671
|
+
Attributes,
|
|
2672
|
+
DomId,
|
|
2369
2673
|
Styles,
|
|
2370
2674
|
Children,
|
|
2371
2675
|
TextContent,
|
|
2372
2676
|
NoAppConnections,
|
|
2373
2677
|
DisplayName,
|
|
2374
2678
|
BindableSourceSearch,
|
|
2375
|
-
ElementSettings
|
|
2679
|
+
ElementSettings,
|
|
2680
|
+
Visibility {
|
|
2376
2681
|
readonly id: FullElementId;
|
|
2377
2682
|
readonly type: 'CommerceCheckoutBillingAddressToggleLabel';
|
|
2378
2683
|
readonly plugin: 'Commerce';
|
|
@@ -2382,6 +2687,7 @@ interface CommerceCheckoutOrderItemsWrapperElement
|
|
|
2382
2687
|
extends
|
|
2383
2688
|
WebflowElement,
|
|
2384
2689
|
CustomAttributes,
|
|
2690
|
+
Attributes,
|
|
2385
2691
|
DomId,
|
|
2386
2692
|
Styles,
|
|
2387
2693
|
Children,
|
|
@@ -2389,7 +2695,8 @@ interface CommerceCheckoutOrderItemsWrapperElement
|
|
|
2389
2695
|
NoAppConnections,
|
|
2390
2696
|
DisplayName,
|
|
2391
2697
|
BindableSourceSearch,
|
|
2392
|
-
ElementSettings
|
|
2698
|
+
ElementSettings,
|
|
2699
|
+
Visibility {
|
|
2393
2700
|
readonly id: FullElementId;
|
|
2394
2701
|
readonly type: 'CommerceCheckoutOrderItemsWrapper';
|
|
2395
2702
|
readonly plugin: 'Commerce';
|
|
@@ -2399,6 +2706,7 @@ interface CommerceCheckoutOrderItemsListElement
|
|
|
2399
2706
|
extends
|
|
2400
2707
|
WebflowElement,
|
|
2401
2708
|
CustomAttributes,
|
|
2709
|
+
Attributes,
|
|
2402
2710
|
DomId,
|
|
2403
2711
|
Styles,
|
|
2404
2712
|
Children,
|
|
@@ -2406,7 +2714,8 @@ interface CommerceCheckoutOrderItemsListElement
|
|
|
2406
2714
|
NoAppConnections,
|
|
2407
2715
|
DisplayName,
|
|
2408
2716
|
BindableSourceSearch,
|
|
2409
|
-
ElementSettings
|
|
2717
|
+
ElementSettings,
|
|
2718
|
+
Visibility {
|
|
2410
2719
|
readonly id: FullElementId;
|
|
2411
2720
|
readonly type: 'CommerceCheckoutOrderItemsList';
|
|
2412
2721
|
readonly plugin: 'Commerce';
|
|
@@ -2416,6 +2725,7 @@ interface CommerceCheckoutOrderItemElement
|
|
|
2416
2725
|
extends
|
|
2417
2726
|
WebflowElement,
|
|
2418
2727
|
CustomAttributes,
|
|
2728
|
+
Attributes,
|
|
2419
2729
|
DomId,
|
|
2420
2730
|
Styles,
|
|
2421
2731
|
Children,
|
|
@@ -2423,7 +2733,8 @@ interface CommerceCheckoutOrderItemElement
|
|
|
2423
2733
|
NoAppConnections,
|
|
2424
2734
|
DisplayName,
|
|
2425
2735
|
BindableSourceSearch,
|
|
2426
|
-
ElementSettings
|
|
2736
|
+
ElementSettings,
|
|
2737
|
+
Visibility {
|
|
2427
2738
|
readonly id: FullElementId;
|
|
2428
2739
|
readonly type: 'CommerceCheckoutOrderItem';
|
|
2429
2740
|
readonly plugin: 'Commerce';
|
|
@@ -2433,6 +2744,7 @@ interface CommerceBoldTextBlockElement
|
|
|
2433
2744
|
extends
|
|
2434
2745
|
WebflowElement,
|
|
2435
2746
|
CustomAttributes,
|
|
2747
|
+
Attributes,
|
|
2436
2748
|
DomId,
|
|
2437
2749
|
Styles,
|
|
2438
2750
|
Children,
|
|
@@ -2440,7 +2752,8 @@ interface CommerceBoldTextBlockElement
|
|
|
2440
2752
|
NoAppConnections,
|
|
2441
2753
|
DisplayName,
|
|
2442
2754
|
BindableSourceSearch,
|
|
2443
|
-
ElementSettings
|
|
2755
|
+
ElementSettings,
|
|
2756
|
+
Visibility {
|
|
2444
2757
|
readonly id: FullElementId;
|
|
2445
2758
|
readonly type: 'CommerceBoldTextBlock';
|
|
2446
2759
|
readonly plugin: 'Commerce';
|
|
@@ -2450,6 +2763,7 @@ interface CommerceCheckoutOrderItemDescriptionWrapperElement
|
|
|
2450
2763
|
extends
|
|
2451
2764
|
WebflowElement,
|
|
2452
2765
|
CustomAttributes,
|
|
2766
|
+
Attributes,
|
|
2453
2767
|
DomId,
|
|
2454
2768
|
Styles,
|
|
2455
2769
|
Children,
|
|
@@ -2457,7 +2771,8 @@ interface CommerceCheckoutOrderItemDescriptionWrapperElement
|
|
|
2457
2771
|
NoAppConnections,
|
|
2458
2772
|
DisplayName,
|
|
2459
2773
|
BindableSourceSearch,
|
|
2460
|
-
ElementSettings
|
|
2774
|
+
ElementSettings,
|
|
2775
|
+
Visibility {
|
|
2461
2776
|
readonly id: FullElementId;
|
|
2462
2777
|
readonly type: 'CommerceCheckoutOrderItemDescriptionWrapper';
|
|
2463
2778
|
readonly plugin: 'Commerce';
|
|
@@ -2467,6 +2782,7 @@ interface CommerceCheckoutOrderItemQuantityWrapperElement
|
|
|
2467
2782
|
extends
|
|
2468
2783
|
WebflowElement,
|
|
2469
2784
|
CustomAttributes,
|
|
2785
|
+
Attributes,
|
|
2470
2786
|
DomId,
|
|
2471
2787
|
Styles,
|
|
2472
2788
|
Children,
|
|
@@ -2474,7 +2790,8 @@ interface CommerceCheckoutOrderItemQuantityWrapperElement
|
|
|
2474
2790
|
NoAppConnections,
|
|
2475
2791
|
DisplayName,
|
|
2476
2792
|
BindableSourceSearch,
|
|
2477
|
-
ElementSettings
|
|
2793
|
+
ElementSettings,
|
|
2794
|
+
Visibility {
|
|
2478
2795
|
readonly id: FullElementId;
|
|
2479
2796
|
readonly type: 'CommerceCheckoutOrderItemQuantityWrapper';
|
|
2480
2797
|
readonly plugin: 'Commerce';
|
|
@@ -2484,6 +2801,7 @@ interface CommerceCheckoutOrderItemOptionListElement
|
|
|
2484
2801
|
extends
|
|
2485
2802
|
WebflowElement,
|
|
2486
2803
|
CustomAttributes,
|
|
2804
|
+
Attributes,
|
|
2487
2805
|
DomId,
|
|
2488
2806
|
Styles,
|
|
2489
2807
|
Children,
|
|
@@ -2491,7 +2809,8 @@ interface CommerceCheckoutOrderItemOptionListElement
|
|
|
2491
2809
|
NoAppConnections,
|
|
2492
2810
|
DisplayName,
|
|
2493
2811
|
BindableSourceSearch,
|
|
2494
|
-
ElementSettings
|
|
2812
|
+
ElementSettings,
|
|
2813
|
+
Visibility {
|
|
2495
2814
|
readonly id: FullElementId;
|
|
2496
2815
|
readonly type: 'CommerceCheckoutOrderItemOptionList';
|
|
2497
2816
|
readonly plugin: 'Commerce';
|
|
@@ -2501,6 +2820,7 @@ interface CommerceCheckoutOrderItemOptionListItemElement
|
|
|
2501
2820
|
extends
|
|
2502
2821
|
WebflowElement,
|
|
2503
2822
|
CustomAttributes,
|
|
2823
|
+
Attributes,
|
|
2504
2824
|
DomId,
|
|
2505
2825
|
Styles,
|
|
2506
2826
|
Children,
|
|
@@ -2508,7 +2828,8 @@ interface CommerceCheckoutOrderItemOptionListItemElement
|
|
|
2508
2828
|
NoAppConnections,
|
|
2509
2829
|
DisplayName,
|
|
2510
2830
|
BindableSourceSearch,
|
|
2511
|
-
ElementSettings
|
|
2831
|
+
ElementSettings,
|
|
2832
|
+
Visibility {
|
|
2512
2833
|
readonly id: FullElementId;
|
|
2513
2834
|
readonly type: 'CommerceCheckoutOrderItemOptionListItem';
|
|
2514
2835
|
readonly plugin: 'Commerce';
|
|
@@ -2518,6 +2839,7 @@ interface CommerceCheckoutOrderItemOptionListItemLabelElement
|
|
|
2518
2839
|
extends
|
|
2519
2840
|
WebflowElement,
|
|
2520
2841
|
CustomAttributes,
|
|
2842
|
+
Attributes,
|
|
2521
2843
|
DomId,
|
|
2522
2844
|
Styles,
|
|
2523
2845
|
NoChildren,
|
|
@@ -2525,7 +2847,8 @@ interface CommerceCheckoutOrderItemOptionListItemLabelElement
|
|
|
2525
2847
|
NoAppConnections,
|
|
2526
2848
|
DisplayName,
|
|
2527
2849
|
BindableSourceSearch,
|
|
2528
|
-
ElementSettings
|
|
2850
|
+
ElementSettings,
|
|
2851
|
+
Visibility {
|
|
2529
2852
|
readonly id: FullElementId;
|
|
2530
2853
|
readonly type: 'CommerceCheckoutOrderItemOptionListItemLabel';
|
|
2531
2854
|
readonly plugin: 'Commerce';
|
|
@@ -2535,6 +2858,7 @@ interface CommerceCheckoutOrderItemOptionListItemValueElement
|
|
|
2535
2858
|
extends
|
|
2536
2859
|
WebflowElement,
|
|
2537
2860
|
CustomAttributes,
|
|
2861
|
+
Attributes,
|
|
2538
2862
|
DomId,
|
|
2539
2863
|
Styles,
|
|
2540
2864
|
NoChildren,
|
|
@@ -2542,7 +2866,8 @@ interface CommerceCheckoutOrderItemOptionListItemValueElement
|
|
|
2542
2866
|
NoAppConnections,
|
|
2543
2867
|
DisplayName,
|
|
2544
2868
|
BindableSourceSearch,
|
|
2545
|
-
ElementSettings
|
|
2869
|
+
ElementSettings,
|
|
2870
|
+
Visibility {
|
|
2546
2871
|
readonly id: FullElementId;
|
|
2547
2872
|
readonly type: 'CommerceCheckoutOrderItemOptionListItemValue';
|
|
2548
2873
|
readonly plugin: 'Commerce';
|
|
@@ -2552,6 +2877,7 @@ interface CommerceCheckoutOrderItemTrialTextWrapperElement
|
|
|
2552
2877
|
extends
|
|
2553
2878
|
WebflowElement,
|
|
2554
2879
|
CustomAttributes,
|
|
2880
|
+
Attributes,
|
|
2555
2881
|
DomId,
|
|
2556
2882
|
Styles,
|
|
2557
2883
|
Children,
|
|
@@ -2559,7 +2885,8 @@ interface CommerceCheckoutOrderItemTrialTextWrapperElement
|
|
|
2559
2885
|
NoAppConnections,
|
|
2560
2886
|
DisplayName,
|
|
2561
2887
|
BindableSourceSearch,
|
|
2562
|
-
ElementSettings
|
|
2888
|
+
ElementSettings,
|
|
2889
|
+
Visibility {
|
|
2563
2890
|
readonly id: FullElementId;
|
|
2564
2891
|
readonly type: 'CommerceCheckoutOrderItemTrialTextWrapper';
|
|
2565
2892
|
readonly plugin: 'Commerce';
|
|
@@ -2569,6 +2896,7 @@ interface CommerceCheckoutShippingMethodsWrapperElement
|
|
|
2569
2896
|
extends
|
|
2570
2897
|
WebflowElement,
|
|
2571
2898
|
CustomAttributes,
|
|
2899
|
+
Attributes,
|
|
2572
2900
|
DomId,
|
|
2573
2901
|
Styles,
|
|
2574
2902
|
Children,
|
|
@@ -2576,7 +2904,8 @@ interface CommerceCheckoutShippingMethodsWrapperElement
|
|
|
2576
2904
|
NoAppConnections,
|
|
2577
2905
|
DisplayName,
|
|
2578
2906
|
BindableSourceSearch,
|
|
2579
|
-
ElementSettings
|
|
2907
|
+
ElementSettings,
|
|
2908
|
+
Visibility {
|
|
2580
2909
|
readonly id: FullElementId;
|
|
2581
2910
|
readonly type: 'CommerceCheckoutShippingMethodsWrapper';
|
|
2582
2911
|
readonly plugin: 'Commerce';
|
|
@@ -2586,6 +2915,7 @@ interface CommerceCheckoutShippingMethodsEmptyStateElement
|
|
|
2586
2915
|
extends
|
|
2587
2916
|
WebflowElement,
|
|
2588
2917
|
CustomAttributes,
|
|
2918
|
+
Attributes,
|
|
2589
2919
|
DomId,
|
|
2590
2920
|
Styles,
|
|
2591
2921
|
Children,
|
|
@@ -2593,7 +2923,8 @@ interface CommerceCheckoutShippingMethodsEmptyStateElement
|
|
|
2593
2923
|
NoAppConnections,
|
|
2594
2924
|
DisplayName,
|
|
2595
2925
|
BindableSourceSearch,
|
|
2596
|
-
ElementSettings
|
|
2926
|
+
ElementSettings,
|
|
2927
|
+
Visibility {
|
|
2597
2928
|
readonly id: FullElementId;
|
|
2598
2929
|
readonly type: 'CommerceCheckoutShippingMethodsEmptyState';
|
|
2599
2930
|
readonly plugin: 'Commerce';
|
|
@@ -2603,6 +2934,7 @@ interface CommerceCheckoutShippingMethodsListElement
|
|
|
2603
2934
|
extends
|
|
2604
2935
|
WebflowElement,
|
|
2605
2936
|
CustomAttributes,
|
|
2937
|
+
Attributes,
|
|
2606
2938
|
DomId,
|
|
2607
2939
|
Styles,
|
|
2608
2940
|
Children,
|
|
@@ -2610,7 +2942,8 @@ interface CommerceCheckoutShippingMethodsListElement
|
|
|
2610
2942
|
NoAppConnections,
|
|
2611
2943
|
DisplayName,
|
|
2612
2944
|
BindableSourceSearch,
|
|
2613
|
-
ElementSettings
|
|
2945
|
+
ElementSettings,
|
|
2946
|
+
Visibility {
|
|
2614
2947
|
readonly id: FullElementId;
|
|
2615
2948
|
readonly type: 'CommerceCheckoutShippingMethodsList';
|
|
2616
2949
|
readonly plugin: 'Commerce';
|
|
@@ -2620,6 +2953,7 @@ interface CommerceCheckoutShippingMethodItemElement
|
|
|
2620
2953
|
extends
|
|
2621
2954
|
WebflowElement,
|
|
2622
2955
|
CustomAttributes,
|
|
2956
|
+
Attributes,
|
|
2623
2957
|
DomId,
|
|
2624
2958
|
Styles,
|
|
2625
2959
|
Children,
|
|
@@ -2627,7 +2961,8 @@ interface CommerceCheckoutShippingMethodItemElement
|
|
|
2627
2961
|
NoAppConnections,
|
|
2628
2962
|
DisplayName,
|
|
2629
2963
|
BindableSourceSearch,
|
|
2630
|
-
ElementSettings
|
|
2964
|
+
ElementSettings,
|
|
2965
|
+
Visibility {
|
|
2631
2966
|
readonly id: FullElementId;
|
|
2632
2967
|
readonly type: 'CommerceCheckoutShippingMethodItem';
|
|
2633
2968
|
readonly plugin: 'Commerce';
|
|
@@ -2637,14 +2972,16 @@ interface CommerceCheckoutShippingMethodRadioButtonElement
|
|
|
2637
2972
|
extends
|
|
2638
2973
|
WebflowElement,
|
|
2639
2974
|
CustomAttributes,
|
|
2640
|
-
|
|
2975
|
+
Attributes,
|
|
2976
|
+
DomId,
|
|
2641
2977
|
Styles,
|
|
2642
2978
|
NoChildren,
|
|
2643
2979
|
NoTextContent,
|
|
2644
2980
|
NoAppConnections,
|
|
2645
2981
|
DisplayName,
|
|
2646
2982
|
BindableSourceSearch,
|
|
2647
|
-
ElementSettings
|
|
2983
|
+
ElementSettings,
|
|
2984
|
+
Visibility {
|
|
2648
2985
|
readonly id: FullElementId;
|
|
2649
2986
|
readonly type: 'CommerceCheckoutShippingMethodRadioButton';
|
|
2650
2987
|
readonly plugin: 'Commerce';
|
|
@@ -2654,6 +2991,7 @@ interface CommerceCheckoutShippingMethodDescriptionBlockElement
|
|
|
2654
2991
|
extends
|
|
2655
2992
|
WebflowElement,
|
|
2656
2993
|
CustomAttributes,
|
|
2994
|
+
Attributes,
|
|
2657
2995
|
DomId,
|
|
2658
2996
|
Styles,
|
|
2659
2997
|
Children,
|
|
@@ -2661,7 +2999,8 @@ interface CommerceCheckoutShippingMethodDescriptionBlockElement
|
|
|
2661
2999
|
NoAppConnections,
|
|
2662
3000
|
DisplayName,
|
|
2663
3001
|
BindableSourceSearch,
|
|
2664
|
-
ElementSettings
|
|
3002
|
+
ElementSettings,
|
|
3003
|
+
Visibility {
|
|
2665
3004
|
readonly id: FullElementId;
|
|
2666
3005
|
readonly type: 'CommerceCheckoutShippingMethodDescriptionBlock';
|
|
2667
3006
|
readonly plugin: 'Commerce';
|
|
@@ -2671,6 +3010,7 @@ interface CommerceCheckoutShippingMethodNameBlockElement
|
|
|
2671
3010
|
extends
|
|
2672
3011
|
WebflowElement,
|
|
2673
3012
|
CustomAttributes,
|
|
3013
|
+
Attributes,
|
|
2674
3014
|
DomId,
|
|
2675
3015
|
Styles,
|
|
2676
3016
|
NoChildren,
|
|
@@ -2678,7 +3018,8 @@ interface CommerceCheckoutShippingMethodNameBlockElement
|
|
|
2678
3018
|
NoAppConnections,
|
|
2679
3019
|
DisplayName,
|
|
2680
3020
|
BindableSourceSearch,
|
|
2681
|
-
ElementSettings
|
|
3021
|
+
ElementSettings,
|
|
3022
|
+
Visibility {
|
|
2682
3023
|
readonly id: FullElementId;
|
|
2683
3024
|
readonly type: 'CommerceCheckoutShippingMethodNameBlock';
|
|
2684
3025
|
readonly plugin: 'Commerce';
|
|
@@ -2688,6 +3029,7 @@ interface CommerceCheckoutShippingMethodBlockWrapperElement
|
|
|
2688
3029
|
extends
|
|
2689
3030
|
WebflowElement,
|
|
2690
3031
|
CustomAttributes,
|
|
3032
|
+
Attributes,
|
|
2691
3033
|
DomId,
|
|
2692
3034
|
Styles,
|
|
2693
3035
|
Children,
|
|
@@ -2695,7 +3037,8 @@ interface CommerceCheckoutShippingMethodBlockWrapperElement
|
|
|
2695
3037
|
NoAppConnections,
|
|
2696
3038
|
DisplayName,
|
|
2697
3039
|
BindableSourceSearch,
|
|
2698
|
-
ElementSettings
|
|
3040
|
+
ElementSettings,
|
|
3041
|
+
Visibility {
|
|
2699
3042
|
readonly id: FullElementId;
|
|
2700
3043
|
readonly type: 'CommerceCheckoutShippingMethodBlockWrapper';
|
|
2701
3044
|
readonly plugin: 'Commerce';
|
|
@@ -2705,6 +3048,7 @@ interface CommerceCheckoutCustomerInfoSummaryWrapperElement
|
|
|
2705
3048
|
extends
|
|
2706
3049
|
WebflowElement,
|
|
2707
3050
|
CustomAttributes,
|
|
3051
|
+
Attributes,
|
|
2708
3052
|
DomId,
|
|
2709
3053
|
Styles,
|
|
2710
3054
|
Children,
|
|
@@ -2712,7 +3056,8 @@ interface CommerceCheckoutCustomerInfoSummaryWrapperElement
|
|
|
2712
3056
|
NoAppConnections,
|
|
2713
3057
|
DisplayName,
|
|
2714
3058
|
BindableSourceSearch,
|
|
2715
|
-
ElementSettings
|
|
3059
|
+
ElementSettings,
|
|
3060
|
+
Visibility {
|
|
2716
3061
|
readonly id: FullElementId;
|
|
2717
3062
|
readonly type: 'CommerceCheckoutCustomerInfoSummaryWrapper';
|
|
2718
3063
|
readonly plugin: 'Commerce';
|
|
@@ -2722,6 +3067,7 @@ interface CommerceCheckoutShippingSummaryWrapperElement
|
|
|
2722
3067
|
extends
|
|
2723
3068
|
WebflowElement,
|
|
2724
3069
|
CustomAttributes,
|
|
3070
|
+
Attributes,
|
|
2725
3071
|
DomId,
|
|
2726
3072
|
Styles,
|
|
2727
3073
|
Children,
|
|
@@ -2729,7 +3075,8 @@ interface CommerceCheckoutShippingSummaryWrapperElement
|
|
|
2729
3075
|
NoAppConnections,
|
|
2730
3076
|
DisplayName,
|
|
2731
3077
|
BindableSourceSearch,
|
|
2732
|
-
ElementSettings
|
|
3078
|
+
ElementSettings,
|
|
3079
|
+
Visibility {
|
|
2733
3080
|
readonly id: FullElementId;
|
|
2734
3081
|
readonly type: 'CommerceCheckoutShippingSummaryWrapper';
|
|
2735
3082
|
readonly plugin: 'Commerce';
|
|
@@ -2739,6 +3086,7 @@ interface CommerceCheckoutPaymentSummaryWrapperElement
|
|
|
2739
3086
|
extends
|
|
2740
3087
|
WebflowElement,
|
|
2741
3088
|
CustomAttributes,
|
|
3089
|
+
Attributes,
|
|
2742
3090
|
DomId,
|
|
2743
3091
|
Styles,
|
|
2744
3092
|
Children,
|
|
@@ -2746,7 +3094,8 @@ interface CommerceCheckoutPaymentSummaryWrapperElement
|
|
|
2746
3094
|
NoAppConnections,
|
|
2747
3095
|
DisplayName,
|
|
2748
3096
|
BindableSourceSearch,
|
|
2749
|
-
ElementSettings
|
|
3097
|
+
ElementSettings,
|
|
3098
|
+
Visibility {
|
|
2750
3099
|
readonly id: FullElementId;
|
|
2751
3100
|
readonly type: 'CommerceCheckoutPaymentSummaryWrapper';
|
|
2752
3101
|
readonly plugin: 'Commerce';
|
|
@@ -2756,6 +3105,7 @@ interface CommerceCheckoutOrderSummaryWrapperElement
|
|
|
2756
3105
|
extends
|
|
2757
3106
|
WebflowElement,
|
|
2758
3107
|
CustomAttributes,
|
|
3108
|
+
Attributes,
|
|
2759
3109
|
DomId,
|
|
2760
3110
|
Styles,
|
|
2761
3111
|
Children,
|
|
@@ -2763,7 +3113,8 @@ interface CommerceCheckoutOrderSummaryWrapperElement
|
|
|
2763
3113
|
NoAppConnections,
|
|
2764
3114
|
DisplayName,
|
|
2765
3115
|
BindableSourceSearch,
|
|
2766
|
-
ElementSettings
|
|
3116
|
+
ElementSettings,
|
|
3117
|
+
Visibility {
|
|
2767
3118
|
readonly id: FullElementId;
|
|
2768
3119
|
readonly type: 'CommerceCheckoutOrderSummaryWrapper';
|
|
2769
3120
|
readonly plugin: 'Commerce';
|
|
@@ -2773,6 +3124,7 @@ interface CommerceCheckoutSummaryItemElement
|
|
|
2773
3124
|
extends
|
|
2774
3125
|
WebflowElement,
|
|
2775
3126
|
CustomAttributes,
|
|
3127
|
+
Attributes,
|
|
2776
3128
|
DomId,
|
|
2777
3129
|
Styles,
|
|
2778
3130
|
Children,
|
|
@@ -2780,7 +3132,8 @@ interface CommerceCheckoutSummaryItemElement
|
|
|
2780
3132
|
NoAppConnections,
|
|
2781
3133
|
DisplayName,
|
|
2782
3134
|
BindableSourceSearch,
|
|
2783
|
-
ElementSettings
|
|
3135
|
+
ElementSettings,
|
|
3136
|
+
Visibility {
|
|
2784
3137
|
readonly id: FullElementId;
|
|
2785
3138
|
readonly type: 'CommerceCheckoutSummaryItem';
|
|
2786
3139
|
readonly plugin: 'Commerce';
|
|
@@ -2790,6 +3143,7 @@ interface CommerceCheckoutSummaryLabelElement
|
|
|
2790
3143
|
extends
|
|
2791
3144
|
WebflowElement,
|
|
2792
3145
|
CustomAttributes,
|
|
3146
|
+
Attributes,
|
|
2793
3147
|
DomId,
|
|
2794
3148
|
Styles,
|
|
2795
3149
|
Children,
|
|
@@ -2797,7 +3151,8 @@ interface CommerceCheckoutSummaryLabelElement
|
|
|
2797
3151
|
NoAppConnections,
|
|
2798
3152
|
DisplayName,
|
|
2799
3153
|
BindableSourceSearch,
|
|
2800
|
-
ElementSettings
|
|
3154
|
+
ElementSettings,
|
|
3155
|
+
Visibility {
|
|
2801
3156
|
readonly id: FullElementId;
|
|
2802
3157
|
readonly type: 'CommerceCheckoutSummaryLabel';
|
|
2803
3158
|
readonly plugin: 'Commerce';
|
|
@@ -2807,6 +3162,7 @@ interface CommerceCheckoutSummaryBlockHeaderElement
|
|
|
2807
3162
|
extends
|
|
2808
3163
|
WebflowElement,
|
|
2809
3164
|
CustomAttributes,
|
|
3165
|
+
Attributes,
|
|
2810
3166
|
DomId,
|
|
2811
3167
|
Styles,
|
|
2812
3168
|
Children,
|
|
@@ -2814,7 +3170,8 @@ interface CommerceCheckoutSummaryBlockHeaderElement
|
|
|
2814
3170
|
NoAppConnections,
|
|
2815
3171
|
DisplayName,
|
|
2816
3172
|
BindableSourceSearch,
|
|
2817
|
-
ElementSettings
|
|
3173
|
+
ElementSettings,
|
|
3174
|
+
Visibility {
|
|
2818
3175
|
readonly id: FullElementId;
|
|
2819
3176
|
readonly type: 'CommerceCheckoutSummaryBlockHeader';
|
|
2820
3177
|
readonly plugin: 'Commerce';
|
|
@@ -2824,6 +3181,7 @@ interface CommerceCheckoutSummaryLineItemElement
|
|
|
2824
3181
|
extends
|
|
2825
3182
|
WebflowElement,
|
|
2826
3183
|
CustomAttributes,
|
|
3184
|
+
Attributes,
|
|
2827
3185
|
DomId,
|
|
2828
3186
|
Styles,
|
|
2829
3187
|
Children,
|
|
@@ -2831,7 +3189,8 @@ interface CommerceCheckoutSummaryLineItemElement
|
|
|
2831
3189
|
NoAppConnections,
|
|
2832
3190
|
DisplayName,
|
|
2833
3191
|
BindableSourceSearch,
|
|
2834
|
-
ElementSettings
|
|
3192
|
+
ElementSettings,
|
|
3193
|
+
Visibility {
|
|
2835
3194
|
readonly id: FullElementId;
|
|
2836
3195
|
readonly type: 'CommerceCheckoutSummaryLineItem';
|
|
2837
3196
|
readonly plugin: 'Commerce';
|
|
@@ -2841,6 +3200,7 @@ interface CommerceCheckoutSummaryTotalElement
|
|
|
2841
3200
|
extends
|
|
2842
3201
|
WebflowElement,
|
|
2843
3202
|
CustomAttributes,
|
|
3203
|
+
Attributes,
|
|
2844
3204
|
DomId,
|
|
2845
3205
|
Styles,
|
|
2846
3206
|
Children,
|
|
@@ -2848,7 +3208,8 @@ interface CommerceCheckoutSummaryTotalElement
|
|
|
2848
3208
|
NoAppConnections,
|
|
2849
3209
|
DisplayName,
|
|
2850
3210
|
BindableSourceSearch,
|
|
2851
|
-
ElementSettings
|
|
3211
|
+
ElementSettings,
|
|
3212
|
+
Visibility {
|
|
2852
3213
|
readonly id: FullElementId;
|
|
2853
3214
|
readonly type: 'CommerceCheckoutSummaryTotal';
|
|
2854
3215
|
readonly plugin: 'Commerce';
|
|
@@ -2858,6 +3219,7 @@ interface CommerceCheckoutSummaryTextSpacingOnDivElement
|
|
|
2858
3219
|
extends
|
|
2859
3220
|
WebflowElement,
|
|
2860
3221
|
CustomAttributes,
|
|
3222
|
+
Attributes,
|
|
2861
3223
|
DomId,
|
|
2862
3224
|
Styles,
|
|
2863
3225
|
Children,
|
|
@@ -2865,7 +3227,8 @@ interface CommerceCheckoutSummaryTextSpacingOnDivElement
|
|
|
2865
3227
|
NoAppConnections,
|
|
2866
3228
|
DisplayName,
|
|
2867
3229
|
BindableSourceSearch,
|
|
2868
|
-
ElementSettings
|
|
3230
|
+
ElementSettings,
|
|
3231
|
+
Visibility {
|
|
2869
3232
|
readonly id: FullElementId;
|
|
2870
3233
|
readonly type: 'CommerceCheckoutSummaryTextSpacingOnDiv';
|
|
2871
3234
|
readonly plugin: 'Commerce';
|
|
@@ -2875,6 +3238,7 @@ interface CommerceCheckoutSummaryFlexBoxDivElement
|
|
|
2875
3238
|
extends
|
|
2876
3239
|
WebflowElement,
|
|
2877
3240
|
CustomAttributes,
|
|
3241
|
+
Attributes,
|
|
2878
3242
|
DomId,
|
|
2879
3243
|
Styles,
|
|
2880
3244
|
Children,
|
|
@@ -2882,7 +3246,8 @@ interface CommerceCheckoutSummaryFlexBoxDivElement
|
|
|
2882
3246
|
NoAppConnections,
|
|
2883
3247
|
DisplayName,
|
|
2884
3248
|
BindableSourceSearch,
|
|
2885
|
-
ElementSettings
|
|
3249
|
+
ElementSettings,
|
|
3250
|
+
Visibility {
|
|
2886
3251
|
readonly id: FullElementId;
|
|
2887
3252
|
readonly type: 'CommerceCheckoutSummaryFlexBoxDiv';
|
|
2888
3253
|
readonly plugin: 'Commerce';
|
|
@@ -2892,6 +3257,7 @@ interface CommerceCheckoutOrderItemDescriptionPriceElement
|
|
|
2892
3257
|
extends
|
|
2893
3258
|
WebflowElement,
|
|
2894
3259
|
CustomAttributes,
|
|
3260
|
+
Attributes,
|
|
2895
3261
|
DomId,
|
|
2896
3262
|
Styles,
|
|
2897
3263
|
Children,
|
|
@@ -2899,7 +3265,8 @@ interface CommerceCheckoutOrderItemDescriptionPriceElement
|
|
|
2899
3265
|
NoAppConnections,
|
|
2900
3266
|
DisplayName,
|
|
2901
3267
|
BindableSourceSearch,
|
|
2902
|
-
ElementSettings
|
|
3268
|
+
ElementSettings,
|
|
3269
|
+
Visibility {
|
|
2903
3270
|
readonly id: FullElementId;
|
|
2904
3271
|
readonly type: 'CommerceCheckoutOrderItemDescriptionPrice';
|
|
2905
3272
|
readonly plugin: 'Commerce';
|
|
@@ -2909,6 +3276,7 @@ interface CommerceCheckoutOrderSummaryExtraItemsListElement
|
|
|
2909
3276
|
extends
|
|
2910
3277
|
WebflowElement,
|
|
2911
3278
|
CustomAttributes,
|
|
3279
|
+
Attributes,
|
|
2912
3280
|
DomId,
|
|
2913
3281
|
Styles,
|
|
2914
3282
|
Children,
|
|
@@ -2916,7 +3284,8 @@ interface CommerceCheckoutOrderSummaryExtraItemsListElement
|
|
|
2916
3284
|
NoAppConnections,
|
|
2917
3285
|
DisplayName,
|
|
2918
3286
|
BindableSourceSearch,
|
|
2919
|
-
ElementSettings
|
|
3287
|
+
ElementSettings,
|
|
3288
|
+
Visibility {
|
|
2920
3289
|
readonly id: FullElementId;
|
|
2921
3290
|
readonly type: 'CommerceCheckoutOrderSummaryExtraItemsList';
|
|
2922
3291
|
readonly plugin: 'Commerce';
|
|
@@ -2926,6 +3295,7 @@ interface CommerceCheckoutOrderSummaryExtraItemsListItemElement
|
|
|
2926
3295
|
extends
|
|
2927
3296
|
WebflowElement,
|
|
2928
3297
|
CustomAttributes,
|
|
3298
|
+
Attributes,
|
|
2929
3299
|
DomId,
|
|
2930
3300
|
Styles,
|
|
2931
3301
|
Children,
|
|
@@ -2933,7 +3303,8 @@ interface CommerceCheckoutOrderSummaryExtraItemsListItemElement
|
|
|
2933
3303
|
NoAppConnections,
|
|
2934
3304
|
DisplayName,
|
|
2935
3305
|
BindableSourceSearch,
|
|
2936
|
-
ElementSettings
|
|
3306
|
+
ElementSettings,
|
|
3307
|
+
Visibility {
|
|
2937
3308
|
readonly id: FullElementId;
|
|
2938
3309
|
readonly type: 'CommerceCheckoutOrderSummaryExtraItemsListItem';
|
|
2939
3310
|
readonly plugin: 'Commerce';
|
|
@@ -2943,6 +3314,7 @@ interface CommerceCheckoutErrorMsgElement
|
|
|
2943
3314
|
extends
|
|
2944
3315
|
WebflowElement,
|
|
2945
3316
|
CustomAttributes,
|
|
3317
|
+
Attributes,
|
|
2946
3318
|
DomId,
|
|
2947
3319
|
Styles,
|
|
2948
3320
|
NoChildren,
|
|
@@ -2950,7 +3322,8 @@ interface CommerceCheckoutErrorMsgElement
|
|
|
2950
3322
|
NoAppConnections,
|
|
2951
3323
|
DisplayName,
|
|
2952
3324
|
BindableSourceSearch,
|
|
2953
|
-
ElementSettings
|
|
3325
|
+
ElementSettings,
|
|
3326
|
+
Visibility {
|
|
2954
3327
|
readonly id: FullElementId;
|
|
2955
3328
|
readonly type: 'CommerceCheckoutErrorMsg';
|
|
2956
3329
|
readonly plugin: 'Commerce';
|
|
@@ -2960,6 +3333,7 @@ interface CommerceCartErrorMsgElement
|
|
|
2960
3333
|
extends
|
|
2961
3334
|
WebflowElement,
|
|
2962
3335
|
CustomAttributes,
|
|
3336
|
+
Attributes,
|
|
2963
3337
|
DomId,
|
|
2964
3338
|
Styles,
|
|
2965
3339
|
NoChildren,
|
|
@@ -2967,7 +3341,8 @@ interface CommerceCartErrorMsgElement
|
|
|
2967
3341
|
NoAppConnections,
|
|
2968
3342
|
DisplayName,
|
|
2969
3343
|
BindableSourceSearch,
|
|
2970
|
-
ElementSettings
|
|
3344
|
+
ElementSettings,
|
|
3345
|
+
Visibility {
|
|
2971
3346
|
readonly id: FullElementId;
|
|
2972
3347
|
readonly type: 'CommerceCartErrorMsg';
|
|
2973
3348
|
readonly plugin: 'Commerce';
|
|
@@ -2977,6 +3352,7 @@ interface CommerceAddToCartErrorMsgElement
|
|
|
2977
3352
|
extends
|
|
2978
3353
|
WebflowElement,
|
|
2979
3354
|
CustomAttributes,
|
|
3355
|
+
Attributes,
|
|
2980
3356
|
DomId,
|
|
2981
3357
|
Styles,
|
|
2982
3358
|
NoChildren,
|
|
@@ -2984,7 +3360,8 @@ interface CommerceAddToCartErrorMsgElement
|
|
|
2984
3360
|
NoAppConnections,
|
|
2985
3361
|
DisplayName,
|
|
2986
3362
|
BindableSourceSearch,
|
|
2987
|
-
ElementSettings
|
|
3363
|
+
ElementSettings,
|
|
3364
|
+
Visibility {
|
|
2988
3365
|
readonly id: FullElementId;
|
|
2989
3366
|
readonly type: 'CommerceAddToCartErrorMsg';
|
|
2990
3367
|
readonly plugin: 'Commerce';
|
|
@@ -2994,6 +3371,7 @@ interface CommerceLayoutMainElement
|
|
|
2994
3371
|
extends
|
|
2995
3372
|
WebflowElement,
|
|
2996
3373
|
CustomAttributes,
|
|
3374
|
+
Attributes,
|
|
2997
3375
|
DomId,
|
|
2998
3376
|
Styles,
|
|
2999
3377
|
Children,
|
|
@@ -3001,7 +3379,8 @@ interface CommerceLayoutMainElement
|
|
|
3001
3379
|
NoAppConnections,
|
|
3002
3380
|
DisplayName,
|
|
3003
3381
|
BindableSourceSearch,
|
|
3004
|
-
ElementSettings
|
|
3382
|
+
ElementSettings,
|
|
3383
|
+
Visibility {
|
|
3005
3384
|
readonly id: FullElementId;
|
|
3006
3385
|
readonly type: 'CommerceLayoutMain';
|
|
3007
3386
|
readonly plugin: 'Commerce';
|
|
@@ -3011,6 +3390,7 @@ interface CommerceLayoutSidebarElement
|
|
|
3011
3390
|
extends
|
|
3012
3391
|
WebflowElement,
|
|
3013
3392
|
CustomAttributes,
|
|
3393
|
+
Attributes,
|
|
3014
3394
|
DomId,
|
|
3015
3395
|
Styles,
|
|
3016
3396
|
Children,
|
|
@@ -3018,7 +3398,8 @@ interface CommerceLayoutSidebarElement
|
|
|
3018
3398
|
NoAppConnections,
|
|
3019
3399
|
DisplayName,
|
|
3020
3400
|
BindableSourceSearch,
|
|
3021
|
-
ElementSettings
|
|
3401
|
+
ElementSettings,
|
|
3402
|
+
Visibility {
|
|
3022
3403
|
readonly id: FullElementId;
|
|
3023
3404
|
readonly type: 'CommerceLayoutSidebar';
|
|
3024
3405
|
readonly plugin: 'Commerce';
|
|
@@ -3028,6 +3409,7 @@ interface CommerceLayoutContainerElement
|
|
|
3028
3409
|
extends
|
|
3029
3410
|
WebflowElement,
|
|
3030
3411
|
CustomAttributes,
|
|
3412
|
+
Attributes,
|
|
3031
3413
|
DomId,
|
|
3032
3414
|
Styles,
|
|
3033
3415
|
Children,
|
|
@@ -3035,7 +3417,8 @@ interface CommerceLayoutContainerElement
|
|
|
3035
3417
|
NoAppConnections,
|
|
3036
3418
|
DisplayName,
|
|
3037
3419
|
BindableSourceSearch,
|
|
3038
|
-
ElementSettings
|
|
3420
|
+
ElementSettings,
|
|
3421
|
+
Visibility {
|
|
3039
3422
|
readonly id: FullElementId;
|
|
3040
3423
|
readonly type: 'CommerceLayoutContainer';
|
|
3041
3424
|
readonly plugin: 'Commerce';
|
|
@@ -3045,6 +3428,7 @@ interface CommercePaypalCheckoutFormContainerElement
|
|
|
3045
3428
|
extends
|
|
3046
3429
|
WebflowElement,
|
|
3047
3430
|
CustomAttributes,
|
|
3431
|
+
Attributes,
|
|
3048
3432
|
DomId,
|
|
3049
3433
|
Styles,
|
|
3050
3434
|
Children,
|
|
@@ -3052,7 +3436,8 @@ interface CommercePaypalCheckoutFormContainerElement
|
|
|
3052
3436
|
NoAppConnections,
|
|
3053
3437
|
DisplayName,
|
|
3054
3438
|
BindableSourceSearch,
|
|
3055
|
-
ElementSettings
|
|
3439
|
+
ElementSettings,
|
|
3440
|
+
Visibility {
|
|
3056
3441
|
readonly id: FullElementId;
|
|
3057
3442
|
readonly type: 'CommercePaypalCheckoutFormContainer';
|
|
3058
3443
|
readonly plugin: 'Commerce';
|
|
@@ -3062,6 +3447,7 @@ interface CommercePaypalCheckoutErrorStateElement
|
|
|
3062
3447
|
extends
|
|
3063
3448
|
WebflowElement,
|
|
3064
3449
|
CustomAttributes,
|
|
3450
|
+
Attributes,
|
|
3065
3451
|
DomId,
|
|
3066
3452
|
Styles,
|
|
3067
3453
|
Children,
|
|
@@ -3069,7 +3455,8 @@ interface CommercePaypalCheckoutErrorStateElement
|
|
|
3069
3455
|
NoAppConnections,
|
|
3070
3456
|
DisplayName,
|
|
3071
3457
|
BindableSourceSearch,
|
|
3072
|
-
ElementSettings
|
|
3458
|
+
ElementSettings,
|
|
3459
|
+
Visibility {
|
|
3073
3460
|
readonly id: FullElementId;
|
|
3074
3461
|
readonly type: 'CommercePaypalCheckoutErrorState';
|
|
3075
3462
|
readonly plugin: 'Commerce';
|
|
@@ -3079,6 +3466,7 @@ interface CommercePaypalCheckoutErrorMessageElement
|
|
|
3079
3466
|
extends
|
|
3080
3467
|
WebflowElement,
|
|
3081
3468
|
CustomAttributes,
|
|
3469
|
+
Attributes,
|
|
3082
3470
|
DomId,
|
|
3083
3471
|
Styles,
|
|
3084
3472
|
NoChildren,
|
|
@@ -3086,7 +3474,8 @@ interface CommercePaypalCheckoutErrorMessageElement
|
|
|
3086
3474
|
NoAppConnections,
|
|
3087
3475
|
DisplayName,
|
|
3088
3476
|
BindableSourceSearch,
|
|
3089
|
-
ElementSettings
|
|
3477
|
+
ElementSettings,
|
|
3478
|
+
Visibility {
|
|
3090
3479
|
readonly id: FullElementId;
|
|
3091
3480
|
readonly type: 'CommercePaypalCheckoutErrorMessage';
|
|
3092
3481
|
readonly plugin: 'Commerce';
|
|
@@ -3096,6 +3485,7 @@ interface CommerceCheckoutAdditionalInputsContainerElement
|
|
|
3096
3485
|
extends
|
|
3097
3486
|
WebflowElement,
|
|
3098
3487
|
CustomAttributes,
|
|
3488
|
+
Attributes,
|
|
3099
3489
|
DomId,
|
|
3100
3490
|
Styles,
|
|
3101
3491
|
Children,
|
|
@@ -3103,7 +3493,8 @@ interface CommerceCheckoutAdditionalInputsContainerElement
|
|
|
3103
3493
|
NoAppConnections,
|
|
3104
3494
|
DisplayName,
|
|
3105
3495
|
BindableSourceSearch,
|
|
3106
|
-
ElementSettings
|
|
3496
|
+
ElementSettings,
|
|
3497
|
+
Visibility {
|
|
3107
3498
|
readonly id: FullElementId;
|
|
3108
3499
|
readonly type: 'CommerceCheckoutAdditionalInputsContainer';
|
|
3109
3500
|
readonly plugin: 'Commerce';
|
|
@@ -3113,6 +3504,7 @@ interface CommerceCheckoutAdditionalInfoSummaryWrapperElement
|
|
|
3113
3504
|
extends
|
|
3114
3505
|
WebflowElement,
|
|
3115
3506
|
CustomAttributes,
|
|
3507
|
+
Attributes,
|
|
3116
3508
|
DomId,
|
|
3117
3509
|
Styles,
|
|
3118
3510
|
Children,
|
|
@@ -3120,7 +3512,8 @@ interface CommerceCheckoutAdditionalInfoSummaryWrapperElement
|
|
|
3120
3512
|
NoAppConnections,
|
|
3121
3513
|
DisplayName,
|
|
3122
3514
|
BindableSourceSearch,
|
|
3123
|
-
ElementSettings
|
|
3515
|
+
ElementSettings,
|
|
3516
|
+
Visibility {
|
|
3124
3517
|
readonly id: FullElementId;
|
|
3125
3518
|
readonly type: 'CommerceCheckoutAdditionalInfoSummaryWrapper';
|
|
3126
3519
|
readonly plugin: 'Commerce';
|
|
@@ -3130,6 +3523,7 @@ interface CommerceCheckoutAdditionalTextAreaElement
|
|
|
3130
3523
|
extends
|
|
3131
3524
|
WebflowElement,
|
|
3132
3525
|
CustomAttributes,
|
|
3526
|
+
Attributes,
|
|
3133
3527
|
DomId,
|
|
3134
3528
|
Styles,
|
|
3135
3529
|
NoChildren,
|
|
@@ -3137,7 +3531,8 @@ interface CommerceCheckoutAdditionalTextAreaElement
|
|
|
3137
3531
|
NoAppConnections,
|
|
3138
3532
|
DisplayName,
|
|
3139
3533
|
BindableSourceSearch,
|
|
3140
|
-
ElementSettings
|
|
3534
|
+
ElementSettings,
|
|
3535
|
+
Visibility {
|
|
3141
3536
|
readonly id: FullElementId;
|
|
3142
3537
|
readonly type: 'CommerceCheckoutAdditionalTextArea';
|
|
3143
3538
|
readonly plugin: 'Commerce';
|
|
@@ -3147,6 +3542,7 @@ interface CommerceCheckoutAdditionalTextInputElement
|
|
|
3147
3542
|
extends
|
|
3148
3543
|
WebflowElement,
|
|
3149
3544
|
CustomAttributes,
|
|
3545
|
+
Attributes,
|
|
3150
3546
|
DomId,
|
|
3151
3547
|
Styles,
|
|
3152
3548
|
NoChildren,
|
|
@@ -3154,7 +3550,8 @@ interface CommerceCheckoutAdditionalTextInputElement
|
|
|
3154
3550
|
NoAppConnections,
|
|
3155
3551
|
DisplayName,
|
|
3156
3552
|
BindableSourceSearch,
|
|
3157
|
-
ElementSettings
|
|
3553
|
+
ElementSettings,
|
|
3554
|
+
Visibility {
|
|
3158
3555
|
readonly id: FullElementId;
|
|
3159
3556
|
readonly type: 'CommerceCheckoutAdditionalTextInput';
|
|
3160
3557
|
readonly plugin: 'Commerce';
|
|
@@ -3164,14 +3561,16 @@ interface CommerceCheckoutAdditionalCheckboxElement
|
|
|
3164
3561
|
extends
|
|
3165
3562
|
WebflowElement,
|
|
3166
3563
|
CustomAttributes,
|
|
3167
|
-
|
|
3564
|
+
Attributes,
|
|
3565
|
+
DomId,
|
|
3168
3566
|
Styles,
|
|
3169
3567
|
NoChildren,
|
|
3170
3568
|
NoTextContent,
|
|
3171
3569
|
NoAppConnections,
|
|
3172
3570
|
DisplayName,
|
|
3173
3571
|
BindableSourceSearch,
|
|
3174
|
-
ElementSettings
|
|
3572
|
+
ElementSettings,
|
|
3573
|
+
Visibility {
|
|
3175
3574
|
readonly id: FullElementId;
|
|
3176
3575
|
readonly type: 'CommerceCheckoutAdditionalCheckbox';
|
|
3177
3576
|
readonly plugin: 'Commerce';
|
|
@@ -3181,6 +3580,7 @@ interface CommerceCheckoutAdditionalCheckboxWrapperElement
|
|
|
3181
3580
|
extends
|
|
3182
3581
|
WebflowElement,
|
|
3183
3582
|
CustomAttributes,
|
|
3583
|
+
Attributes,
|
|
3184
3584
|
DomId,
|
|
3185
3585
|
Styles,
|
|
3186
3586
|
Children,
|
|
@@ -3188,7 +3588,8 @@ interface CommerceCheckoutAdditionalCheckboxWrapperElement
|
|
|
3188
3588
|
NoAppConnections,
|
|
3189
3589
|
DisplayName,
|
|
3190
3590
|
BindableSourceSearch,
|
|
3191
|
-
ElementSettings
|
|
3591
|
+
ElementSettings,
|
|
3592
|
+
Visibility {
|
|
3192
3593
|
readonly id: FullElementId;
|
|
3193
3594
|
readonly type: 'CommerceCheckoutAdditionalCheckboxWrapper';
|
|
3194
3595
|
readonly plugin: 'Commerce';
|
|
@@ -3198,6 +3599,7 @@ interface CommerceCheckoutDiscountsElement
|
|
|
3198
3599
|
extends
|
|
3199
3600
|
WebflowElement,
|
|
3200
3601
|
CustomAttributes,
|
|
3602
|
+
Attributes,
|
|
3201
3603
|
DomId,
|
|
3202
3604
|
Styles,
|
|
3203
3605
|
Children,
|
|
@@ -3205,7 +3607,8 @@ interface CommerceCheckoutDiscountsElement
|
|
|
3205
3607
|
NoAppConnections,
|
|
3206
3608
|
DisplayName,
|
|
3207
3609
|
BindableSourceSearch,
|
|
3208
|
-
ElementSettings
|
|
3610
|
+
ElementSettings,
|
|
3611
|
+
Visibility {
|
|
3209
3612
|
readonly id: FullElementId;
|
|
3210
3613
|
readonly type: 'CommerceCheckoutDiscounts';
|
|
3211
3614
|
readonly plugin: 'Commerce';
|
|
@@ -3215,6 +3618,7 @@ interface CommerceCheckoutDiscountsButtonElement
|
|
|
3215
3618
|
extends
|
|
3216
3619
|
WebflowElement,
|
|
3217
3620
|
CustomAttributes,
|
|
3621
|
+
Attributes,
|
|
3218
3622
|
DomId,
|
|
3219
3623
|
Styles,
|
|
3220
3624
|
NoChildren,
|
|
@@ -3222,7 +3626,8 @@ interface CommerceCheckoutDiscountsButtonElement
|
|
|
3222
3626
|
NoAppConnections,
|
|
3223
3627
|
DisplayName,
|
|
3224
3628
|
BindableSourceSearch,
|
|
3225
|
-
ElementSettings
|
|
3629
|
+
ElementSettings,
|
|
3630
|
+
Visibility {
|
|
3226
3631
|
readonly id: FullElementId;
|
|
3227
3632
|
readonly type: 'CommerceCheckoutDiscountsButton';
|
|
3228
3633
|
readonly plugin: 'Commerce';
|
|
@@ -3232,14 +3637,16 @@ interface CommerceCheckoutDiscountsInputElement
|
|
|
3232
3637
|
extends
|
|
3233
3638
|
WebflowElement,
|
|
3234
3639
|
CustomAttributes,
|
|
3235
|
-
|
|
3640
|
+
Attributes,
|
|
3641
|
+
DomId,
|
|
3236
3642
|
Styles,
|
|
3237
3643
|
NoChildren,
|
|
3238
3644
|
NoTextContent,
|
|
3239
3645
|
NoAppConnections,
|
|
3240
3646
|
DisplayName,
|
|
3241
3647
|
BindableSourceSearch,
|
|
3242
|
-
ElementSettings
|
|
3648
|
+
ElementSettings,
|
|
3649
|
+
Visibility {
|
|
3243
3650
|
readonly id: FullElementId;
|
|
3244
3651
|
readonly type: 'CommerceCheckoutDiscountsInput';
|
|
3245
3652
|
readonly plugin: 'Commerce';
|
|
@@ -3249,14 +3656,16 @@ interface CommerceCheckoutDiscountsLabelElement
|
|
|
3249
3656
|
extends
|
|
3250
3657
|
WebflowElement,
|
|
3251
3658
|
CustomAttributes,
|
|
3252
|
-
|
|
3659
|
+
Attributes,
|
|
3660
|
+
DomId,
|
|
3253
3661
|
Styles,
|
|
3254
3662
|
Children,
|
|
3255
3663
|
TextContent,
|
|
3256
3664
|
NoAppConnections,
|
|
3257
3665
|
DisplayName,
|
|
3258
3666
|
BindableSourceSearch,
|
|
3259
|
-
ElementSettings
|
|
3667
|
+
ElementSettings,
|
|
3668
|
+
Visibility {
|
|
3260
3669
|
readonly id: FullElementId;
|
|
3261
3670
|
readonly type: 'CommerceCheckoutDiscountsLabel';
|
|
3262
3671
|
readonly plugin: 'Commerce';
|
|
@@ -3266,6 +3675,7 @@ interface CommerceDownloadsWrapperElement
|
|
|
3266
3675
|
extends
|
|
3267
3676
|
WebflowElement,
|
|
3268
3677
|
CustomAttributes,
|
|
3678
|
+
Attributes,
|
|
3269
3679
|
DomId,
|
|
3270
3680
|
Styles,
|
|
3271
3681
|
Children,
|
|
@@ -3273,7 +3683,8 @@ interface CommerceDownloadsWrapperElement
|
|
|
3273
3683
|
NoAppConnections,
|
|
3274
3684
|
DisplayName,
|
|
3275
3685
|
BindableSourceSearch,
|
|
3276
|
-
ElementSettings
|
|
3686
|
+
ElementSettings,
|
|
3687
|
+
Visibility {
|
|
3277
3688
|
readonly id: FullElementId;
|
|
3278
3689
|
readonly type: 'CommerceDownloadsWrapper';
|
|
3279
3690
|
readonly plugin: 'Commerce';
|
|
@@ -3283,6 +3694,7 @@ interface CommerceDownloadsListElement
|
|
|
3283
3694
|
extends
|
|
3284
3695
|
WebflowElement,
|
|
3285
3696
|
CustomAttributes,
|
|
3697
|
+
Attributes,
|
|
3286
3698
|
DomId,
|
|
3287
3699
|
Styles,
|
|
3288
3700
|
Children,
|
|
@@ -3290,7 +3702,8 @@ interface CommerceDownloadsListElement
|
|
|
3290
3702
|
NoAppConnections,
|
|
3291
3703
|
DisplayName,
|
|
3292
3704
|
BindableSourceSearch,
|
|
3293
|
-
ElementSettings
|
|
3705
|
+
ElementSettings,
|
|
3706
|
+
Visibility {
|
|
3294
3707
|
readonly id: FullElementId;
|
|
3295
3708
|
readonly type: 'CommerceDownloadsList';
|
|
3296
3709
|
readonly plugin: 'Commerce';
|
|
@@ -3300,6 +3713,7 @@ interface CommerceDownloadsItemElement
|
|
|
3300
3713
|
extends
|
|
3301
3714
|
WebflowElement,
|
|
3302
3715
|
CustomAttributes,
|
|
3716
|
+
Attributes,
|
|
3303
3717
|
DomId,
|
|
3304
3718
|
Styles,
|
|
3305
3719
|
Children,
|
|
@@ -3307,7 +3721,8 @@ interface CommerceDownloadsItemElement
|
|
|
3307
3721
|
NoAppConnections,
|
|
3308
3722
|
DisplayName,
|
|
3309
3723
|
BindableSourceSearch,
|
|
3310
|
-
ElementSettings
|
|
3724
|
+
ElementSettings,
|
|
3725
|
+
Visibility {
|
|
3311
3726
|
readonly id: FullElementId;
|
|
3312
3727
|
readonly type: 'CommerceDownloadsItem';
|
|
3313
3728
|
readonly plugin: 'Commerce';
|
|
@@ -3317,6 +3732,7 @@ interface DropdownLinkElement
|
|
|
3317
3732
|
extends
|
|
3318
3733
|
WebflowElement,
|
|
3319
3734
|
CustomAttributes,
|
|
3735
|
+
Attributes,
|
|
3320
3736
|
DomId,
|
|
3321
3737
|
Styles,
|
|
3322
3738
|
Children,
|
|
@@ -3324,7 +3740,8 @@ interface DropdownLinkElement
|
|
|
3324
3740
|
NoAppConnections,
|
|
3325
3741
|
DisplayName,
|
|
3326
3742
|
BindableSourceSearch,
|
|
3327
|
-
ElementSettings
|
|
3743
|
+
ElementSettings,
|
|
3744
|
+
Visibility {
|
|
3328
3745
|
readonly id: FullElementId;
|
|
3329
3746
|
readonly type: 'DropdownLink';
|
|
3330
3747
|
readonly plugin: 'Dropdown';
|
|
@@ -3334,6 +3751,7 @@ interface DropdownListElement
|
|
|
3334
3751
|
extends
|
|
3335
3752
|
WebflowElement,
|
|
3336
3753
|
CustomAttributes,
|
|
3754
|
+
Attributes,
|
|
3337
3755
|
DomId,
|
|
3338
3756
|
Styles,
|
|
3339
3757
|
Children,
|
|
@@ -3341,7 +3759,8 @@ interface DropdownListElement
|
|
|
3341
3759
|
NoAppConnections,
|
|
3342
3760
|
DisplayName,
|
|
3343
3761
|
BindableSourceSearch,
|
|
3344
|
-
ElementSettings
|
|
3762
|
+
ElementSettings,
|
|
3763
|
+
Visibility {
|
|
3345
3764
|
readonly id: FullElementId;
|
|
3346
3765
|
readonly type: 'DropdownList';
|
|
3347
3766
|
readonly plugin: 'Dropdown';
|
|
@@ -3351,6 +3770,7 @@ interface DropdownToggleElement
|
|
|
3351
3770
|
extends
|
|
3352
3771
|
WebflowElement,
|
|
3353
3772
|
CustomAttributes,
|
|
3773
|
+
Attributes,
|
|
3354
3774
|
DomId,
|
|
3355
3775
|
Styles,
|
|
3356
3776
|
Children,
|
|
@@ -3358,7 +3778,8 @@ interface DropdownToggleElement
|
|
|
3358
3778
|
NoAppConnections,
|
|
3359
3779
|
DisplayName,
|
|
3360
3780
|
BindableSourceSearch,
|
|
3361
|
-
ElementSettings
|
|
3781
|
+
ElementSettings,
|
|
3782
|
+
Visibility {
|
|
3362
3783
|
readonly id: FullElementId;
|
|
3363
3784
|
readonly type: 'DropdownToggle';
|
|
3364
3785
|
readonly plugin: 'Dropdown';
|
|
@@ -3368,14 +3789,16 @@ interface DropdownWrapperElement
|
|
|
3368
3789
|
extends
|
|
3369
3790
|
WebflowElement,
|
|
3370
3791
|
CustomAttributes,
|
|
3371
|
-
|
|
3792
|
+
Attributes,
|
|
3793
|
+
DomId,
|
|
3372
3794
|
Styles,
|
|
3373
3795
|
Children,
|
|
3374
3796
|
NoTextContent,
|
|
3375
3797
|
NoAppConnections,
|
|
3376
3798
|
DisplayName,
|
|
3377
3799
|
BindableSourceSearch,
|
|
3378
|
-
ElementSettings
|
|
3800
|
+
ElementSettings,
|
|
3801
|
+
Visibility {
|
|
3379
3802
|
readonly id: FullElementId;
|
|
3380
3803
|
readonly type: 'DropdownWrapper';
|
|
3381
3804
|
readonly plugin: 'Dropdown';
|
|
@@ -3385,6 +3808,7 @@ interface DropTargetElement
|
|
|
3385
3808
|
extends
|
|
3386
3809
|
WebflowElement,
|
|
3387
3810
|
CustomAttributes,
|
|
3811
|
+
Attributes,
|
|
3388
3812
|
DomId,
|
|
3389
3813
|
Styles,
|
|
3390
3814
|
Children,
|
|
@@ -3392,7 +3816,8 @@ interface DropTargetElement
|
|
|
3392
3816
|
NoAppConnections,
|
|
3393
3817
|
DisplayName,
|
|
3394
3818
|
BindableSourceSearch,
|
|
3395
|
-
ElementSettings
|
|
3819
|
+
ElementSettings,
|
|
3820
|
+
Visibility {
|
|
3396
3821
|
readonly id: FullElementId;
|
|
3397
3822
|
readonly type: 'DropTarget';
|
|
3398
3823
|
readonly plugin: 'PageBuilding';
|
|
@@ -3402,6 +3827,7 @@ interface DynamoWrapperElement
|
|
|
3402
3827
|
extends
|
|
3403
3828
|
WebflowElement,
|
|
3404
3829
|
CustomAttributes,
|
|
3830
|
+
Attributes,
|
|
3405
3831
|
DomId,
|
|
3406
3832
|
Styles,
|
|
3407
3833
|
Children,
|
|
@@ -3409,7 +3835,8 @@ interface DynamoWrapperElement
|
|
|
3409
3835
|
NoAppConnections,
|
|
3410
3836
|
DisplayName,
|
|
3411
3837
|
BindableSourceSearch,
|
|
3412
|
-
ElementSettings
|
|
3838
|
+
ElementSettings,
|
|
3839
|
+
Visibility {
|
|
3413
3840
|
readonly id: FullElementId;
|
|
3414
3841
|
readonly type: 'DynamoWrapper';
|
|
3415
3842
|
readonly plugin: 'Dynamo';
|
|
@@ -3419,6 +3846,7 @@ interface DynamoListElement
|
|
|
3419
3846
|
extends
|
|
3420
3847
|
WebflowElement,
|
|
3421
3848
|
CustomAttributes,
|
|
3849
|
+
Attributes,
|
|
3422
3850
|
DomId,
|
|
3423
3851
|
Styles,
|
|
3424
3852
|
Children,
|
|
@@ -3426,7 +3854,8 @@ interface DynamoListElement
|
|
|
3426
3854
|
NoAppConnections,
|
|
3427
3855
|
DisplayName,
|
|
3428
3856
|
BindableSourceSearch,
|
|
3429
|
-
ElementSettings
|
|
3857
|
+
ElementSettings,
|
|
3858
|
+
Visibility {
|
|
3430
3859
|
readonly id: FullElementId;
|
|
3431
3860
|
readonly type: 'DynamoList';
|
|
3432
3861
|
readonly plugin: 'Dynamo';
|
|
@@ -3436,6 +3865,7 @@ interface DynamoItemElement
|
|
|
3436
3865
|
extends
|
|
3437
3866
|
WebflowElement,
|
|
3438
3867
|
CustomAttributes,
|
|
3868
|
+
Attributes,
|
|
3439
3869
|
DomId,
|
|
3440
3870
|
Styles,
|
|
3441
3871
|
Children,
|
|
@@ -3443,7 +3873,8 @@ interface DynamoItemElement
|
|
|
3443
3873
|
NoAppConnections,
|
|
3444
3874
|
DisplayName,
|
|
3445
3875
|
BindableSourceSearch,
|
|
3446
|
-
ElementSettings
|
|
3876
|
+
ElementSettings,
|
|
3877
|
+
Visibility {
|
|
3447
3878
|
readonly id: FullElementId;
|
|
3448
3879
|
readonly type: 'DynamoItem';
|
|
3449
3880
|
readonly plugin: 'Dynamo';
|
|
@@ -3453,6 +3884,7 @@ interface DynamoEmptyElement
|
|
|
3453
3884
|
extends
|
|
3454
3885
|
WebflowElement,
|
|
3455
3886
|
CustomAttributes,
|
|
3887
|
+
Attributes,
|
|
3456
3888
|
DomId,
|
|
3457
3889
|
Styles,
|
|
3458
3890
|
Children,
|
|
@@ -3460,7 +3892,8 @@ interface DynamoEmptyElement
|
|
|
3460
3892
|
NoAppConnections,
|
|
3461
3893
|
DisplayName,
|
|
3462
3894
|
BindableSourceSearch,
|
|
3463
|
-
ElementSettings
|
|
3895
|
+
ElementSettings,
|
|
3896
|
+
Visibility {
|
|
3464
3897
|
readonly id: FullElementId;
|
|
3465
3898
|
readonly type: 'DynamoEmpty';
|
|
3466
3899
|
readonly plugin: 'Dynamo';
|
|
@@ -3470,6 +3903,7 @@ interface HtmlEmbedElement
|
|
|
3470
3903
|
extends
|
|
3471
3904
|
WebflowElement,
|
|
3472
3905
|
CustomAttributes,
|
|
3906
|
+
Attributes,
|
|
3473
3907
|
DomId,
|
|
3474
3908
|
Styles,
|
|
3475
3909
|
NoChildren,
|
|
@@ -3477,7 +3911,8 @@ interface HtmlEmbedElement
|
|
|
3477
3911
|
NoAppConnections,
|
|
3478
3912
|
DisplayName,
|
|
3479
3913
|
BindableSourceSearch,
|
|
3480
|
-
ElementSettings
|
|
3914
|
+
ElementSettings,
|
|
3915
|
+
Visibility {
|
|
3481
3916
|
readonly id: FullElementId;
|
|
3482
3917
|
readonly type: 'HtmlEmbed';
|
|
3483
3918
|
readonly plugin: 'Embed';
|
|
@@ -3487,6 +3922,7 @@ interface VideoElement
|
|
|
3487
3922
|
extends
|
|
3488
3923
|
WebflowElement,
|
|
3489
3924
|
CustomAttributes,
|
|
3925
|
+
Attributes,
|
|
3490
3926
|
DomId,
|
|
3491
3927
|
Styles,
|
|
3492
3928
|
NoChildren,
|
|
@@ -3494,7 +3930,8 @@ interface VideoElement
|
|
|
3494
3930
|
NoAppConnections,
|
|
3495
3931
|
DisplayName,
|
|
3496
3932
|
BindableSourceSearch,
|
|
3497
|
-
ElementSettings
|
|
3933
|
+
ElementSettings,
|
|
3934
|
+
Visibility {
|
|
3498
3935
|
readonly id: FullElementId;
|
|
3499
3936
|
readonly type: 'Video';
|
|
3500
3937
|
readonly plugin: 'Embed';
|
|
@@ -3504,6 +3941,7 @@ interface YouTubeVideoElement
|
|
|
3504
3941
|
extends
|
|
3505
3942
|
WebflowElement,
|
|
3506
3943
|
CustomAttributes,
|
|
3944
|
+
Attributes,
|
|
3507
3945
|
DomId,
|
|
3508
3946
|
Styles,
|
|
3509
3947
|
NoChildren,
|
|
@@ -3511,7 +3949,8 @@ interface YouTubeVideoElement
|
|
|
3511
3949
|
NoAppConnections,
|
|
3512
3950
|
DisplayName,
|
|
3513
3951
|
BindableSourceSearch,
|
|
3514
|
-
ElementSettings
|
|
3952
|
+
ElementSettings,
|
|
3953
|
+
Visibility {
|
|
3515
3954
|
readonly id: FullElementId;
|
|
3516
3955
|
readonly type: 'YouTubeVideo';
|
|
3517
3956
|
readonly plugin: 'Embed';
|
|
@@ -3521,14 +3960,16 @@ interface LightboxWrapperElement
|
|
|
3521
3960
|
extends
|
|
3522
3961
|
WebflowElement,
|
|
3523
3962
|
CustomAttributes,
|
|
3524
|
-
|
|
3963
|
+
Attributes,
|
|
3964
|
+
DomId,
|
|
3525
3965
|
Styles,
|
|
3526
3966
|
Children,
|
|
3527
3967
|
TextContent,
|
|
3528
3968
|
NoAppConnections,
|
|
3529
3969
|
DisplayName,
|
|
3530
3970
|
BindableSourceSearch,
|
|
3531
|
-
ElementSettings
|
|
3971
|
+
ElementSettings,
|
|
3972
|
+
Visibility {
|
|
3532
3973
|
readonly id: FullElementId;
|
|
3533
3974
|
readonly type: 'LightboxWrapper';
|
|
3534
3975
|
readonly plugin: 'Lightbox';
|
|
@@ -3538,14 +3979,16 @@ interface FormBlockLabelElement
|
|
|
3538
3979
|
extends
|
|
3539
3980
|
WebflowElement,
|
|
3540
3981
|
CustomAttributes,
|
|
3541
|
-
|
|
3982
|
+
Attributes,
|
|
3983
|
+
DomId,
|
|
3542
3984
|
Styles,
|
|
3543
3985
|
Children,
|
|
3544
3986
|
TextContent,
|
|
3545
3987
|
NoAppConnections,
|
|
3546
3988
|
DisplayName,
|
|
3547
3989
|
BindableSourceSearch,
|
|
3548
|
-
ElementSettings
|
|
3990
|
+
ElementSettings,
|
|
3991
|
+
Visibility {
|
|
3549
3992
|
readonly id: FullElementId;
|
|
3550
3993
|
readonly type: 'FormBlockLabel';
|
|
3551
3994
|
readonly plugin: 'Form';
|
|
@@ -3555,14 +3998,16 @@ interface FormButtonElement
|
|
|
3555
3998
|
extends
|
|
3556
3999
|
WebflowElement,
|
|
3557
4000
|
CustomAttributes,
|
|
3558
|
-
|
|
4001
|
+
Attributes,
|
|
4002
|
+
DomId,
|
|
3559
4003
|
Styles,
|
|
3560
4004
|
NoChildren,
|
|
3561
4005
|
NoTextContent,
|
|
3562
4006
|
NoAppConnections,
|
|
3563
4007
|
DisplayName,
|
|
3564
4008
|
BindableSourceSearch,
|
|
3565
|
-
ElementSettings
|
|
4009
|
+
ElementSettings,
|
|
4010
|
+
Visibility {
|
|
3566
4011
|
readonly id: FullElementId;
|
|
3567
4012
|
readonly type: 'FormButton';
|
|
3568
4013
|
readonly plugin: 'Form';
|
|
@@ -3572,14 +4017,16 @@ interface FormCheckboxInputElement
|
|
|
3572
4017
|
extends
|
|
3573
4018
|
WebflowElement,
|
|
3574
4019
|
CustomAttributes,
|
|
3575
|
-
|
|
4020
|
+
Attributes,
|
|
4021
|
+
DomId,
|
|
3576
4022
|
Styles,
|
|
3577
4023
|
NoChildren,
|
|
3578
4024
|
NoTextContent,
|
|
3579
4025
|
NoAppConnections,
|
|
3580
4026
|
DisplayName,
|
|
3581
4027
|
BindableSourceSearch,
|
|
3582
|
-
ElementSettings
|
|
4028
|
+
ElementSettings,
|
|
4029
|
+
Visibility {
|
|
3583
4030
|
readonly id: FullElementId;
|
|
3584
4031
|
readonly type: 'FormCheckboxInput';
|
|
3585
4032
|
readonly plugin: 'Form';
|
|
@@ -3593,6 +4040,7 @@ interface FormCheckboxWrapperElement
|
|
|
3593
4040
|
extends
|
|
3594
4041
|
WebflowElement,
|
|
3595
4042
|
CustomAttributes,
|
|
4043
|
+
Attributes,
|
|
3596
4044
|
DomId,
|
|
3597
4045
|
Styles,
|
|
3598
4046
|
Children,
|
|
@@ -3600,7 +4048,8 @@ interface FormCheckboxWrapperElement
|
|
|
3600
4048
|
NoAppConnections,
|
|
3601
4049
|
DisplayName,
|
|
3602
4050
|
BindableSourceSearch,
|
|
3603
|
-
ElementSettings
|
|
4051
|
+
ElementSettings,
|
|
4052
|
+
Visibility {
|
|
3604
4053
|
readonly id: FullElementId;
|
|
3605
4054
|
readonly type: 'FormCheckboxWrapper';
|
|
3606
4055
|
readonly plugin: 'Form';
|
|
@@ -3610,6 +4059,7 @@ interface FormErrorMessageElement
|
|
|
3610
4059
|
extends
|
|
3611
4060
|
WebflowElement,
|
|
3612
4061
|
CustomAttributes,
|
|
4062
|
+
Attributes,
|
|
3613
4063
|
DomId,
|
|
3614
4064
|
Styles,
|
|
3615
4065
|
Children,
|
|
@@ -3617,7 +4067,8 @@ interface FormErrorMessageElement
|
|
|
3617
4067
|
NoAppConnections,
|
|
3618
4068
|
DisplayName,
|
|
3619
4069
|
BindableSourceSearch,
|
|
3620
|
-
ElementSettings
|
|
4070
|
+
ElementSettings,
|
|
4071
|
+
Visibility {
|
|
3621
4072
|
readonly id: FullElementId;
|
|
3622
4073
|
readonly type: 'FormErrorMessage';
|
|
3623
4074
|
readonly plugin: 'Form';
|
|
@@ -3627,14 +4078,16 @@ interface FormFormElement
|
|
|
3627
4078
|
extends
|
|
3628
4079
|
WebflowElement,
|
|
3629
4080
|
CustomAttributes,
|
|
3630
|
-
|
|
4081
|
+
Attributes,
|
|
4082
|
+
DomId,
|
|
3631
4083
|
Styles,
|
|
3632
4084
|
Children,
|
|
3633
4085
|
NoTextContent,
|
|
3634
4086
|
AppConnections,
|
|
3635
4087
|
DisplayName,
|
|
3636
4088
|
BindableSourceSearch,
|
|
3637
|
-
ElementSettings
|
|
4089
|
+
ElementSettings,
|
|
4090
|
+
Visibility {
|
|
3638
4091
|
readonly id: FullElementId;
|
|
3639
4092
|
readonly type: 'FormForm';
|
|
3640
4093
|
readonly plugin: 'Form';
|
|
@@ -3652,6 +4105,7 @@ interface FormInlineLabelElement
|
|
|
3652
4105
|
extends
|
|
3653
4106
|
WebflowElement,
|
|
3654
4107
|
CustomAttributes,
|
|
4108
|
+
Attributes,
|
|
3655
4109
|
DomId,
|
|
3656
4110
|
Styles,
|
|
3657
4111
|
Children,
|
|
@@ -3659,7 +4113,8 @@ interface FormInlineLabelElement
|
|
|
3659
4113
|
NoAppConnections,
|
|
3660
4114
|
DisplayName,
|
|
3661
4115
|
BindableSourceSearch,
|
|
3662
|
-
ElementSettings
|
|
4116
|
+
ElementSettings,
|
|
4117
|
+
Visibility {
|
|
3663
4118
|
readonly id: FullElementId;
|
|
3664
4119
|
readonly type: 'FormInlineLabel';
|
|
3665
4120
|
readonly plugin: 'Form';
|
|
@@ -3669,14 +4124,16 @@ interface FormRadioInputElement
|
|
|
3669
4124
|
extends
|
|
3670
4125
|
WebflowElement,
|
|
3671
4126
|
CustomAttributes,
|
|
3672
|
-
|
|
4127
|
+
Attributes,
|
|
4128
|
+
DomId,
|
|
3673
4129
|
Styles,
|
|
3674
4130
|
NoChildren,
|
|
3675
4131
|
NoTextContent,
|
|
3676
4132
|
NoAppConnections,
|
|
3677
4133
|
DisplayName,
|
|
3678
4134
|
BindableSourceSearch,
|
|
3679
|
-
ElementSettings
|
|
4135
|
+
ElementSettings,
|
|
4136
|
+
Visibility {
|
|
3680
4137
|
readonly id: FullElementId;
|
|
3681
4138
|
readonly type: 'FormRadioInput';
|
|
3682
4139
|
readonly plugin: 'Form';
|
|
@@ -3690,6 +4147,7 @@ interface FormRadioWrapperElement
|
|
|
3690
4147
|
extends
|
|
3691
4148
|
WebflowElement,
|
|
3692
4149
|
CustomAttributes,
|
|
4150
|
+
Attributes,
|
|
3693
4151
|
DomId,
|
|
3694
4152
|
Styles,
|
|
3695
4153
|
Children,
|
|
@@ -3697,7 +4155,8 @@ interface FormRadioWrapperElement
|
|
|
3697
4155
|
NoAppConnections,
|
|
3698
4156
|
DisplayName,
|
|
3699
4157
|
BindableSourceSearch,
|
|
3700
|
-
ElementSettings
|
|
4158
|
+
ElementSettings,
|
|
4159
|
+
Visibility {
|
|
3701
4160
|
readonly id: FullElementId;
|
|
3702
4161
|
readonly type: 'FormRadioWrapper';
|
|
3703
4162
|
readonly plugin: 'Form';
|
|
@@ -3707,14 +4166,16 @@ interface FormSelectElement
|
|
|
3707
4166
|
extends
|
|
3708
4167
|
WebflowElement,
|
|
3709
4168
|
CustomAttributes,
|
|
3710
|
-
|
|
4169
|
+
Attributes,
|
|
4170
|
+
DomId,
|
|
3711
4171
|
Styles,
|
|
3712
4172
|
NoChildren,
|
|
3713
4173
|
NoTextContent,
|
|
3714
4174
|
NoAppConnections,
|
|
3715
4175
|
DisplayName,
|
|
3716
4176
|
BindableSourceSearch,
|
|
3717
|
-
ElementSettings
|
|
4177
|
+
ElementSettings,
|
|
4178
|
+
Visibility {
|
|
3718
4179
|
readonly id: FullElementId;
|
|
3719
4180
|
readonly type: 'FormSelect';
|
|
3720
4181
|
readonly plugin: 'Form';
|
|
@@ -3728,6 +4189,7 @@ interface FormSuccessMessageElement
|
|
|
3728
4189
|
extends
|
|
3729
4190
|
WebflowElement,
|
|
3730
4191
|
CustomAttributes,
|
|
4192
|
+
Attributes,
|
|
3731
4193
|
DomId,
|
|
3732
4194
|
Styles,
|
|
3733
4195
|
Children,
|
|
@@ -3735,7 +4197,8 @@ interface FormSuccessMessageElement
|
|
|
3735
4197
|
NoAppConnections,
|
|
3736
4198
|
DisplayName,
|
|
3737
4199
|
BindableSourceSearch,
|
|
3738
|
-
ElementSettings
|
|
4200
|
+
ElementSettings,
|
|
4201
|
+
Visibility {
|
|
3739
4202
|
readonly id: FullElementId;
|
|
3740
4203
|
readonly type: 'FormSuccessMessage';
|
|
3741
4204
|
readonly plugin: 'Form';
|
|
@@ -3745,14 +4208,16 @@ interface FormTextareaElement
|
|
|
3745
4208
|
extends
|
|
3746
4209
|
WebflowElement,
|
|
3747
4210
|
CustomAttributes,
|
|
3748
|
-
|
|
4211
|
+
Attributes,
|
|
4212
|
+
DomId,
|
|
3749
4213
|
Styles,
|
|
3750
4214
|
NoChildren,
|
|
3751
4215
|
NoTextContent,
|
|
3752
4216
|
NoAppConnections,
|
|
3753
4217
|
DisplayName,
|
|
3754
4218
|
BindableSourceSearch,
|
|
3755
|
-
ElementSettings
|
|
4219
|
+
ElementSettings,
|
|
4220
|
+
Visibility {
|
|
3756
4221
|
readonly id: FullElementId;
|
|
3757
4222
|
readonly type: 'FormTextarea';
|
|
3758
4223
|
readonly plugin: 'Form';
|
|
@@ -3766,14 +4231,16 @@ interface FormTextInputElement
|
|
|
3766
4231
|
extends
|
|
3767
4232
|
WebflowElement,
|
|
3768
4233
|
CustomAttributes,
|
|
3769
|
-
|
|
4234
|
+
Attributes,
|
|
4235
|
+
DomId,
|
|
3770
4236
|
Styles,
|
|
3771
4237
|
NoChildren,
|
|
3772
4238
|
NoTextContent,
|
|
3773
4239
|
NoAppConnections,
|
|
3774
4240
|
DisplayName,
|
|
3775
4241
|
BindableSourceSearch,
|
|
3776
|
-
ElementSettings
|
|
4242
|
+
ElementSettings,
|
|
4243
|
+
Visibility {
|
|
3777
4244
|
readonly id: FullElementId;
|
|
3778
4245
|
readonly type: 'FormTextInput';
|
|
3779
4246
|
readonly plugin: 'Form';
|
|
@@ -3793,6 +4260,7 @@ interface FormWrapperElement
|
|
|
3793
4260
|
extends
|
|
3794
4261
|
WebflowElement,
|
|
3795
4262
|
CustomAttributes,
|
|
4263
|
+
Attributes,
|
|
3796
4264
|
DomId,
|
|
3797
4265
|
Styles,
|
|
3798
4266
|
Children,
|
|
@@ -3800,7 +4268,8 @@ interface FormWrapperElement
|
|
|
3800
4268
|
AppConnections,
|
|
3801
4269
|
DisplayName,
|
|
3802
4270
|
BindableSourceSearch,
|
|
3803
|
-
ElementSettings
|
|
4271
|
+
ElementSettings,
|
|
4272
|
+
Visibility {
|
|
3804
4273
|
readonly id: FullElementId;
|
|
3805
4274
|
readonly type: 'FormWrapper';
|
|
3806
4275
|
readonly plugin: 'Form';
|
|
@@ -3818,6 +4287,7 @@ interface FormReCaptchaElement
|
|
|
3818
4287
|
extends
|
|
3819
4288
|
WebflowElement,
|
|
3820
4289
|
CustomAttributes,
|
|
4290
|
+
Attributes,
|
|
3821
4291
|
DomId,
|
|
3822
4292
|
Styles,
|
|
3823
4293
|
NoChildren,
|
|
@@ -3825,7 +4295,8 @@ interface FormReCaptchaElement
|
|
|
3825
4295
|
NoAppConnections,
|
|
3826
4296
|
DisplayName,
|
|
3827
4297
|
BindableSourceSearch,
|
|
3828
|
-
ElementSettings
|
|
4298
|
+
ElementSettings,
|
|
4299
|
+
Visibility {
|
|
3829
4300
|
readonly id: FullElementId;
|
|
3830
4301
|
readonly type: 'FormReCaptcha';
|
|
3831
4302
|
readonly plugin: 'Form';
|
|
@@ -3835,6 +4306,7 @@ interface FormFileUploadWrapperElement
|
|
|
3835
4306
|
extends
|
|
3836
4307
|
WebflowElement,
|
|
3837
4308
|
CustomAttributes,
|
|
4309
|
+
Attributes,
|
|
3838
4310
|
DomId,
|
|
3839
4311
|
Styles,
|
|
3840
4312
|
Children,
|
|
@@ -3842,7 +4314,8 @@ interface FormFileUploadWrapperElement
|
|
|
3842
4314
|
NoAppConnections,
|
|
3843
4315
|
DisplayName,
|
|
3844
4316
|
BindableSourceSearch,
|
|
3845
|
-
ElementSettings
|
|
4317
|
+
ElementSettings,
|
|
4318
|
+
Visibility {
|
|
3846
4319
|
readonly id: FullElementId;
|
|
3847
4320
|
readonly type: 'FormFileUploadWrapper';
|
|
3848
4321
|
readonly plugin: 'Form';
|
|
@@ -3856,6 +4329,7 @@ interface FormFileUploadDefaultElement
|
|
|
3856
4329
|
extends
|
|
3857
4330
|
WebflowElement,
|
|
3858
4331
|
CustomAttributes,
|
|
4332
|
+
Attributes,
|
|
3859
4333
|
DomId,
|
|
3860
4334
|
Styles,
|
|
3861
4335
|
Children,
|
|
@@ -3863,7 +4337,8 @@ interface FormFileUploadDefaultElement
|
|
|
3863
4337
|
NoAppConnections,
|
|
3864
4338
|
DisplayName,
|
|
3865
4339
|
BindableSourceSearch,
|
|
3866
|
-
ElementSettings
|
|
4340
|
+
ElementSettings,
|
|
4341
|
+
Visibility {
|
|
3867
4342
|
readonly id: FullElementId;
|
|
3868
4343
|
readonly type: 'FormFileUploadDefault';
|
|
3869
4344
|
readonly plugin: 'Form';
|
|
@@ -3873,14 +4348,16 @@ interface FormFileUploadUploadingElement
|
|
|
3873
4348
|
extends
|
|
3874
4349
|
WebflowElement,
|
|
3875
4350
|
CustomAttributes,
|
|
3876
|
-
|
|
4351
|
+
Attributes,
|
|
4352
|
+
DomId,
|
|
3877
4353
|
Styles,
|
|
3878
4354
|
Children,
|
|
3879
4355
|
NoTextContent,
|
|
3880
4356
|
NoAppConnections,
|
|
3881
4357
|
DisplayName,
|
|
3882
4358
|
BindableSourceSearch,
|
|
3883
|
-
ElementSettings
|
|
4359
|
+
ElementSettings,
|
|
4360
|
+
Visibility {
|
|
3884
4361
|
readonly id: FullElementId;
|
|
3885
4362
|
readonly type: 'FormFileUploadUploading';
|
|
3886
4363
|
readonly plugin: 'Form';
|
|
@@ -3890,6 +4367,7 @@ interface FormFileUploadUploadingBtnElement
|
|
|
3890
4367
|
extends
|
|
3891
4368
|
WebflowElement,
|
|
3892
4369
|
CustomAttributes,
|
|
4370
|
+
Attributes,
|
|
3893
4371
|
DomId,
|
|
3894
4372
|
Styles,
|
|
3895
4373
|
Children,
|
|
@@ -3897,7 +4375,8 @@ interface FormFileUploadUploadingBtnElement
|
|
|
3897
4375
|
NoAppConnections,
|
|
3898
4376
|
DisplayName,
|
|
3899
4377
|
BindableSourceSearch,
|
|
3900
|
-
ElementSettings
|
|
4378
|
+
ElementSettings,
|
|
4379
|
+
Visibility {
|
|
3901
4380
|
readonly id: FullElementId;
|
|
3902
4381
|
readonly type: 'FormFileUploadUploadingBtn';
|
|
3903
4382
|
readonly plugin: 'Form';
|
|
@@ -3907,6 +4386,7 @@ interface FormFileUploadUploadingIconElement
|
|
|
3907
4386
|
extends
|
|
3908
4387
|
WebflowElement,
|
|
3909
4388
|
CustomAttributes,
|
|
4389
|
+
Attributes,
|
|
3910
4390
|
DomId,
|
|
3911
4391
|
Styles,
|
|
3912
4392
|
NoChildren,
|
|
@@ -3914,7 +4394,8 @@ interface FormFileUploadUploadingIconElement
|
|
|
3914
4394
|
NoAppConnections,
|
|
3915
4395
|
DisplayName,
|
|
3916
4396
|
BindableSourceSearch,
|
|
3917
|
-
ElementSettings
|
|
4397
|
+
ElementSettings,
|
|
4398
|
+
Visibility {
|
|
3918
4399
|
readonly id: FullElementId;
|
|
3919
4400
|
readonly type: 'FormFileUploadUploadingIcon';
|
|
3920
4401
|
readonly plugin: 'Form';
|
|
@@ -3924,14 +4405,16 @@ interface FormFileUploadSuccessElement
|
|
|
3924
4405
|
extends
|
|
3925
4406
|
WebflowElement,
|
|
3926
4407
|
CustomAttributes,
|
|
3927
|
-
|
|
4408
|
+
Attributes,
|
|
4409
|
+
DomId,
|
|
3928
4410
|
Styles,
|
|
3929
4411
|
Children,
|
|
3930
4412
|
NoTextContent,
|
|
3931
4413
|
NoAppConnections,
|
|
3932
4414
|
DisplayName,
|
|
3933
4415
|
BindableSourceSearch,
|
|
3934
|
-
ElementSettings
|
|
4416
|
+
ElementSettings,
|
|
4417
|
+
Visibility {
|
|
3935
4418
|
readonly id: FullElementId;
|
|
3936
4419
|
readonly type: 'FormFileUploadSuccess';
|
|
3937
4420
|
readonly plugin: 'Form';
|
|
@@ -3941,6 +4424,7 @@ interface FormFileUploadFileElement
|
|
|
3941
4424
|
extends
|
|
3942
4425
|
WebflowElement,
|
|
3943
4426
|
CustomAttributes,
|
|
4427
|
+
Attributes,
|
|
3944
4428
|
DomId,
|
|
3945
4429
|
Styles,
|
|
3946
4430
|
Children,
|
|
@@ -3948,7 +4432,8 @@ interface FormFileUploadFileElement
|
|
|
3948
4432
|
NoAppConnections,
|
|
3949
4433
|
DisplayName,
|
|
3950
4434
|
BindableSourceSearch,
|
|
3951
|
-
ElementSettings
|
|
4435
|
+
ElementSettings,
|
|
4436
|
+
Visibility {
|
|
3952
4437
|
readonly id: FullElementId;
|
|
3953
4438
|
readonly type: 'FormFileUploadFile';
|
|
3954
4439
|
readonly plugin: 'Form';
|
|
@@ -3958,6 +4443,7 @@ interface FormFileUploadFileNameElement
|
|
|
3958
4443
|
extends
|
|
3959
4444
|
WebflowElement,
|
|
3960
4445
|
CustomAttributes,
|
|
4446
|
+
Attributes,
|
|
3961
4447
|
DomId,
|
|
3962
4448
|
Styles,
|
|
3963
4449
|
NoChildren,
|
|
@@ -3965,7 +4451,8 @@ interface FormFileUploadFileNameElement
|
|
|
3965
4451
|
NoAppConnections,
|
|
3966
4452
|
DisplayName,
|
|
3967
4453
|
BindableSourceSearch,
|
|
3968
|
-
ElementSettings
|
|
4454
|
+
ElementSettings,
|
|
4455
|
+
Visibility {
|
|
3969
4456
|
readonly id: FullElementId;
|
|
3970
4457
|
readonly type: 'FormFileUploadFileName';
|
|
3971
4458
|
readonly plugin: 'Form';
|
|
@@ -3975,14 +4462,16 @@ interface FormFileUploadRemoveLinkElement
|
|
|
3975
4462
|
extends
|
|
3976
4463
|
WebflowElement,
|
|
3977
4464
|
CustomAttributes,
|
|
3978
|
-
|
|
4465
|
+
Attributes,
|
|
4466
|
+
DomId,
|
|
3979
4467
|
Styles,
|
|
3980
4468
|
Children,
|
|
3981
4469
|
NoTextContent,
|
|
3982
4470
|
NoAppConnections,
|
|
3983
4471
|
DisplayName,
|
|
3984
4472
|
BindableSourceSearch,
|
|
3985
|
-
ElementSettings
|
|
4473
|
+
ElementSettings,
|
|
4474
|
+
Visibility {
|
|
3986
4475
|
readonly id: FullElementId;
|
|
3987
4476
|
readonly type: 'FormFileUploadRemoveLink';
|
|
3988
4477
|
readonly plugin: 'Form';
|
|
@@ -3992,14 +4481,16 @@ interface FormFileUploadErrorElement
|
|
|
3992
4481
|
extends
|
|
3993
4482
|
WebflowElement,
|
|
3994
4483
|
CustomAttributes,
|
|
3995
|
-
|
|
4484
|
+
Attributes,
|
|
4485
|
+
DomId,
|
|
3996
4486
|
Styles,
|
|
3997
4487
|
Children,
|
|
3998
4488
|
NoTextContent,
|
|
3999
4489
|
NoAppConnections,
|
|
4000
4490
|
DisplayName,
|
|
4001
4491
|
BindableSourceSearch,
|
|
4002
|
-
ElementSettings
|
|
4492
|
+
ElementSettings,
|
|
4493
|
+
Visibility {
|
|
4003
4494
|
readonly id: FullElementId;
|
|
4004
4495
|
readonly type: 'FormFileUploadError';
|
|
4005
4496
|
readonly plugin: 'Form';
|
|
@@ -4009,6 +4500,7 @@ interface FormFileUploadErrorMsgElement
|
|
|
4009
4500
|
extends
|
|
4010
4501
|
WebflowElement,
|
|
4011
4502
|
CustomAttributes,
|
|
4503
|
+
Attributes,
|
|
4012
4504
|
DomId,
|
|
4013
4505
|
Styles,
|
|
4014
4506
|
NoChildren,
|
|
@@ -4016,7 +4508,8 @@ interface FormFileUploadErrorMsgElement
|
|
|
4016
4508
|
NoAppConnections,
|
|
4017
4509
|
DisplayName,
|
|
4018
4510
|
BindableSourceSearch,
|
|
4019
|
-
ElementSettings
|
|
4511
|
+
ElementSettings,
|
|
4512
|
+
Visibility {
|
|
4020
4513
|
readonly id: FullElementId;
|
|
4021
4514
|
readonly type: 'FormFileUploadErrorMsg';
|
|
4022
4515
|
readonly plugin: 'Form';
|
|
@@ -4026,14 +4519,16 @@ interface FormFileUploadInputElement
|
|
|
4026
4519
|
extends
|
|
4027
4520
|
WebflowElement,
|
|
4028
4521
|
CustomAttributes,
|
|
4029
|
-
|
|
4522
|
+
Attributes,
|
|
4523
|
+
DomId,
|
|
4030
4524
|
Styles,
|
|
4031
4525
|
NoChildren,
|
|
4032
4526
|
NoTextContent,
|
|
4033
4527
|
NoAppConnections,
|
|
4034
4528
|
DisplayName,
|
|
4035
4529
|
BindableSourceSearch,
|
|
4036
|
-
ElementSettings
|
|
4530
|
+
ElementSettings,
|
|
4531
|
+
Visibility {
|
|
4037
4532
|
readonly id: FullElementId;
|
|
4038
4533
|
readonly type: 'FormFileUploadInput';
|
|
4039
4534
|
readonly plugin: 'Form';
|
|
@@ -4043,14 +4538,16 @@ interface FormFileUploadLabelElement
|
|
|
4043
4538
|
extends
|
|
4044
4539
|
WebflowElement,
|
|
4045
4540
|
CustomAttributes,
|
|
4046
|
-
|
|
4541
|
+
Attributes,
|
|
4542
|
+
DomId,
|
|
4047
4543
|
Styles,
|
|
4048
4544
|
Children,
|
|
4049
4545
|
NoTextContent,
|
|
4050
4546
|
NoAppConnections,
|
|
4051
4547
|
DisplayName,
|
|
4052
4548
|
BindableSourceSearch,
|
|
4053
|
-
ElementSettings
|
|
4549
|
+
ElementSettings,
|
|
4550
|
+
Visibility {
|
|
4054
4551
|
readonly id: FullElementId;
|
|
4055
4552
|
readonly type: 'FormFileUploadLabel';
|
|
4056
4553
|
readonly plugin: 'Form';
|
|
@@ -4060,6 +4557,7 @@ interface FormFileUploadInfoElement
|
|
|
4060
4557
|
extends
|
|
4061
4558
|
WebflowElement,
|
|
4062
4559
|
CustomAttributes,
|
|
4560
|
+
Attributes,
|
|
4063
4561
|
DomId,
|
|
4064
4562
|
Styles,
|
|
4065
4563
|
Children,
|
|
@@ -4067,7 +4565,8 @@ interface FormFileUploadInfoElement
|
|
|
4067
4565
|
NoAppConnections,
|
|
4068
4566
|
DisplayName,
|
|
4069
4567
|
BindableSourceSearch,
|
|
4070
|
-
ElementSettings
|
|
4568
|
+
ElementSettings,
|
|
4569
|
+
Visibility {
|
|
4071
4570
|
readonly id: FullElementId;
|
|
4072
4571
|
readonly type: 'FormFileUploadInfo';
|
|
4073
4572
|
readonly plugin: 'Form';
|
|
@@ -4077,6 +4576,7 @@ interface FormFileUploadTextElement
|
|
|
4077
4576
|
extends
|
|
4078
4577
|
WebflowElement,
|
|
4079
4578
|
CustomAttributes,
|
|
4579
|
+
Attributes,
|
|
4080
4580
|
DomId,
|
|
4081
4581
|
Styles,
|
|
4082
4582
|
Children,
|
|
@@ -4084,7 +4584,8 @@ interface FormFileUploadTextElement
|
|
|
4084
4584
|
NoAppConnections,
|
|
4085
4585
|
DisplayName,
|
|
4086
4586
|
BindableSourceSearch,
|
|
4087
|
-
ElementSettings
|
|
4587
|
+
ElementSettings,
|
|
4588
|
+
Visibility {
|
|
4088
4589
|
readonly id: FullElementId;
|
|
4089
4590
|
readonly type: 'FormFileUploadText';
|
|
4090
4591
|
readonly plugin: 'Form';
|
|
@@ -4094,6 +4595,7 @@ interface IconElement
|
|
|
4094
4595
|
extends
|
|
4095
4596
|
WebflowElement,
|
|
4096
4597
|
CustomAttributes,
|
|
4598
|
+
Attributes,
|
|
4097
4599
|
DomId,
|
|
4098
4600
|
Styles,
|
|
4099
4601
|
Children,
|
|
@@ -4101,7 +4603,8 @@ interface IconElement
|
|
|
4101
4603
|
NoAppConnections,
|
|
4102
4604
|
DisplayName,
|
|
4103
4605
|
BindableSourceSearch,
|
|
4104
|
-
ElementSettings
|
|
4606
|
+
ElementSettings,
|
|
4607
|
+
Visibility {
|
|
4105
4608
|
readonly id: FullElementId;
|
|
4106
4609
|
readonly type: 'Icon';
|
|
4107
4610
|
readonly plugin: 'Icon';
|
|
@@ -4111,6 +4614,7 @@ interface HreflangsElement
|
|
|
4111
4614
|
extends
|
|
4112
4615
|
WebflowElement,
|
|
4113
4616
|
CustomAttributes,
|
|
4617
|
+
Attributes,
|
|
4114
4618
|
DomId,
|
|
4115
4619
|
Styles,
|
|
4116
4620
|
NoChildren,
|
|
@@ -4118,7 +4622,8 @@ interface HreflangsElement
|
|
|
4118
4622
|
NoAppConnections,
|
|
4119
4623
|
DisplayName,
|
|
4120
4624
|
BindableSourceSearch,
|
|
4121
|
-
ElementSettings
|
|
4625
|
+
ElementSettings,
|
|
4626
|
+
Visibility {
|
|
4122
4627
|
readonly id: FullElementId;
|
|
4123
4628
|
readonly type: 'Hreflangs';
|
|
4124
4629
|
readonly plugin: 'Localization';
|
|
@@ -4128,6 +4633,7 @@ interface LocalesWrapperElement
|
|
|
4128
4633
|
extends
|
|
4129
4634
|
WebflowElement,
|
|
4130
4635
|
CustomAttributes,
|
|
4636
|
+
Attributes,
|
|
4131
4637
|
DomId,
|
|
4132
4638
|
Styles,
|
|
4133
4639
|
Children,
|
|
@@ -4135,7 +4641,8 @@ interface LocalesWrapperElement
|
|
|
4135
4641
|
NoAppConnections,
|
|
4136
4642
|
DisplayName,
|
|
4137
4643
|
BindableSourceSearch,
|
|
4138
|
-
ElementSettings
|
|
4644
|
+
ElementSettings,
|
|
4645
|
+
Visibility {
|
|
4139
4646
|
readonly id: FullElementId;
|
|
4140
4647
|
readonly type: 'LocalesWrapper';
|
|
4141
4648
|
readonly plugin: 'Localization';
|
|
@@ -4145,6 +4652,7 @@ interface LocalesEmptyElement
|
|
|
4145
4652
|
extends
|
|
4146
4653
|
WebflowElement,
|
|
4147
4654
|
CustomAttributes,
|
|
4655
|
+
Attributes,
|
|
4148
4656
|
DomId,
|
|
4149
4657
|
Styles,
|
|
4150
4658
|
Children,
|
|
@@ -4152,7 +4660,8 @@ interface LocalesEmptyElement
|
|
|
4152
4660
|
NoAppConnections,
|
|
4153
4661
|
DisplayName,
|
|
4154
4662
|
BindableSourceSearch,
|
|
4155
|
-
ElementSettings
|
|
4663
|
+
ElementSettings,
|
|
4664
|
+
Visibility {
|
|
4156
4665
|
readonly id: FullElementId;
|
|
4157
4666
|
readonly type: 'LocalesEmpty';
|
|
4158
4667
|
readonly plugin: 'Localization';
|
|
@@ -4162,6 +4671,7 @@ interface LocalesListElement
|
|
|
4162
4671
|
extends
|
|
4163
4672
|
WebflowElement,
|
|
4164
4673
|
CustomAttributes,
|
|
4674
|
+
Attributes,
|
|
4165
4675
|
DomId,
|
|
4166
4676
|
Styles,
|
|
4167
4677
|
Children,
|
|
@@ -4169,7 +4679,8 @@ interface LocalesListElement
|
|
|
4169
4679
|
NoAppConnections,
|
|
4170
4680
|
DisplayName,
|
|
4171
4681
|
BindableSourceSearch,
|
|
4172
|
-
ElementSettings
|
|
4682
|
+
ElementSettings,
|
|
4683
|
+
Visibility {
|
|
4173
4684
|
readonly id: FullElementId;
|
|
4174
4685
|
readonly type: 'LocalesList';
|
|
4175
4686
|
readonly plugin: 'Localization';
|
|
@@ -4179,6 +4690,7 @@ interface LocalesItemElement
|
|
|
4179
4690
|
extends
|
|
4180
4691
|
WebflowElement,
|
|
4181
4692
|
CustomAttributes,
|
|
4693
|
+
Attributes,
|
|
4182
4694
|
DomId,
|
|
4183
4695
|
Styles,
|
|
4184
4696
|
Children,
|
|
@@ -4186,7 +4698,8 @@ interface LocalesItemElement
|
|
|
4186
4698
|
NoAppConnections,
|
|
4187
4699
|
DisplayName,
|
|
4188
4700
|
BindableSourceSearch,
|
|
4189
|
-
ElementSettings
|
|
4701
|
+
ElementSettings,
|
|
4702
|
+
Visibility {
|
|
4190
4703
|
readonly id: FullElementId;
|
|
4191
4704
|
readonly type: 'LocalesItem';
|
|
4192
4705
|
readonly plugin: 'Localization';
|
|
@@ -4196,6 +4709,7 @@ interface ContainerElement
|
|
|
4196
4709
|
extends
|
|
4197
4710
|
WebflowElement,
|
|
4198
4711
|
CustomAttributes,
|
|
4712
|
+
Attributes,
|
|
4199
4713
|
DomId,
|
|
4200
4714
|
Styles,
|
|
4201
4715
|
Children,
|
|
@@ -4203,16 +4717,20 @@ interface ContainerElement
|
|
|
4203
4717
|
NoAppConnections,
|
|
4204
4718
|
DisplayName,
|
|
4205
4719
|
BindableSourceSearch,
|
|
4206
|
-
ElementSettings
|
|
4720
|
+
ElementSettings,
|
|
4721
|
+
Visibility {
|
|
4207
4722
|
readonly id: FullElementId;
|
|
4208
4723
|
readonly type: 'Container';
|
|
4209
4724
|
readonly plugin: 'Layout';
|
|
4725
|
+
getTag(): Promise<null | BlockElementTag>;
|
|
4726
|
+
setTag(tag: BlockElementTag): Promise<null>;
|
|
4210
4727
|
}
|
|
4211
4728
|
|
|
4212
4729
|
interface RowElement
|
|
4213
4730
|
extends
|
|
4214
4731
|
WebflowElement,
|
|
4215
4732
|
CustomAttributes,
|
|
4733
|
+
Attributes,
|
|
4216
4734
|
DomId,
|
|
4217
4735
|
Styles,
|
|
4218
4736
|
Children,
|
|
@@ -4220,16 +4738,20 @@ interface RowElement
|
|
|
4220
4738
|
NoAppConnections,
|
|
4221
4739
|
DisplayName,
|
|
4222
4740
|
BindableSourceSearch,
|
|
4223
|
-
ElementSettings
|
|
4741
|
+
ElementSettings,
|
|
4742
|
+
Visibility {
|
|
4224
4743
|
readonly id: FullElementId;
|
|
4225
4744
|
readonly type: 'Row';
|
|
4226
4745
|
readonly plugin: 'Layout';
|
|
4746
|
+
getTag(): Promise<null | BlockElementTag>;
|
|
4747
|
+
setTag(tag: BlockElementTag): Promise<null>;
|
|
4227
4748
|
}
|
|
4228
4749
|
|
|
4229
4750
|
interface ColumnElement
|
|
4230
4751
|
extends
|
|
4231
4752
|
WebflowElement,
|
|
4232
4753
|
CustomAttributes,
|
|
4754
|
+
Attributes,
|
|
4233
4755
|
DomId,
|
|
4234
4756
|
Styles,
|
|
4235
4757
|
Children,
|
|
@@ -4237,16 +4759,20 @@ interface ColumnElement
|
|
|
4237
4759
|
NoAppConnections,
|
|
4238
4760
|
DisplayName,
|
|
4239
4761
|
BindableSourceSearch,
|
|
4240
|
-
ElementSettings
|
|
4762
|
+
ElementSettings,
|
|
4763
|
+
Visibility {
|
|
4241
4764
|
readonly id: FullElementId;
|
|
4242
4765
|
readonly type: 'Column';
|
|
4243
4766
|
readonly plugin: 'Layout';
|
|
4767
|
+
getTag(): Promise<null | BlockElementTag>;
|
|
4768
|
+
setTag(tag: BlockElementTag): Promise<null>;
|
|
4244
4769
|
}
|
|
4245
4770
|
|
|
4246
4771
|
interface SectionElement
|
|
4247
4772
|
extends
|
|
4248
4773
|
WebflowElement,
|
|
4249
4774
|
CustomAttributes,
|
|
4775
|
+
Attributes,
|
|
4250
4776
|
DomId,
|
|
4251
4777
|
Styles,
|
|
4252
4778
|
Children,
|
|
@@ -4254,16 +4780,20 @@ interface SectionElement
|
|
|
4254
4780
|
NoAppConnections,
|
|
4255
4781
|
DisplayName,
|
|
4256
4782
|
BindableSourceSearch,
|
|
4257
|
-
ElementSettings
|
|
4783
|
+
ElementSettings,
|
|
4784
|
+
Visibility {
|
|
4258
4785
|
readonly id: FullElementId;
|
|
4259
4786
|
readonly type: 'Section';
|
|
4260
4787
|
readonly plugin: 'Layout';
|
|
4788
|
+
getTag(): Promise<null | BlockElementTag>;
|
|
4789
|
+
setTag(tag: BlockElementTag): Promise<null>;
|
|
4261
4790
|
}
|
|
4262
4791
|
|
|
4263
4792
|
interface GridElement
|
|
4264
4793
|
extends
|
|
4265
4794
|
WebflowElement,
|
|
4266
4795
|
CustomAttributes,
|
|
4796
|
+
Attributes,
|
|
4267
4797
|
DomId,
|
|
4268
4798
|
Styles,
|
|
4269
4799
|
Children,
|
|
@@ -4271,7 +4801,8 @@ interface GridElement
|
|
|
4271
4801
|
NoAppConnections,
|
|
4272
4802
|
DisplayName,
|
|
4273
4803
|
BindableSourceSearch,
|
|
4274
|
-
ElementSettings
|
|
4804
|
+
ElementSettings,
|
|
4805
|
+
Visibility {
|
|
4275
4806
|
readonly id: FullElementId;
|
|
4276
4807
|
readonly type: 'Grid';
|
|
4277
4808
|
readonly plugin: 'Layout';
|
|
@@ -4281,6 +4812,7 @@ interface LayoutElement
|
|
|
4281
4812
|
extends
|
|
4282
4813
|
WebflowElement,
|
|
4283
4814
|
CustomAttributes,
|
|
4815
|
+
Attributes,
|
|
4284
4816
|
DomId,
|
|
4285
4817
|
Styles,
|
|
4286
4818
|
Children,
|
|
@@ -4288,7 +4820,8 @@ interface LayoutElement
|
|
|
4288
4820
|
NoAppConnections,
|
|
4289
4821
|
DisplayName,
|
|
4290
4822
|
BindableSourceSearch,
|
|
4291
|
-
ElementSettings
|
|
4823
|
+
ElementSettings,
|
|
4824
|
+
Visibility {
|
|
4292
4825
|
readonly id: FullElementId;
|
|
4293
4826
|
readonly type: 'Layout';
|
|
4294
4827
|
readonly plugin: 'Layout';
|
|
@@ -4298,6 +4831,7 @@ interface CellElement
|
|
|
4298
4831
|
extends
|
|
4299
4832
|
WebflowElement,
|
|
4300
4833
|
CustomAttributes,
|
|
4834
|
+
Attributes,
|
|
4301
4835
|
DomId,
|
|
4302
4836
|
Styles,
|
|
4303
4837
|
Children,
|
|
@@ -4305,7 +4839,8 @@ interface CellElement
|
|
|
4305
4839
|
NoAppConnections,
|
|
4306
4840
|
DisplayName,
|
|
4307
4841
|
BindableSourceSearch,
|
|
4308
|
-
ElementSettings
|
|
4842
|
+
ElementSettings,
|
|
4843
|
+
Visibility {
|
|
4309
4844
|
readonly id: FullElementId;
|
|
4310
4845
|
readonly type: 'Cell';
|
|
4311
4846
|
readonly plugin: 'Layout';
|
|
@@ -4315,6 +4850,7 @@ interface BlockContainerElement
|
|
|
4315
4850
|
extends
|
|
4316
4851
|
WebflowElement,
|
|
4317
4852
|
CustomAttributes,
|
|
4853
|
+
Attributes,
|
|
4318
4854
|
DomId,
|
|
4319
4855
|
Styles,
|
|
4320
4856
|
Children,
|
|
@@ -4322,16 +4858,20 @@ interface BlockContainerElement
|
|
|
4322
4858
|
NoAppConnections,
|
|
4323
4859
|
DisplayName,
|
|
4324
4860
|
BindableSourceSearch,
|
|
4325
|
-
ElementSettings
|
|
4861
|
+
ElementSettings,
|
|
4862
|
+
Visibility {
|
|
4326
4863
|
readonly id: FullElementId;
|
|
4327
4864
|
readonly type: 'BlockContainer';
|
|
4328
4865
|
readonly plugin: 'Layout';
|
|
4866
|
+
getTag(): Promise<null | BlockElementTag>;
|
|
4867
|
+
setTag(tag: BlockElementTag): Promise<null>;
|
|
4329
4868
|
}
|
|
4330
4869
|
|
|
4331
4870
|
interface VFlexElement
|
|
4332
4871
|
extends
|
|
4333
4872
|
WebflowElement,
|
|
4334
4873
|
CustomAttributes,
|
|
4874
|
+
Attributes,
|
|
4335
4875
|
DomId,
|
|
4336
4876
|
Styles,
|
|
4337
4877
|
Children,
|
|
@@ -4339,16 +4879,20 @@ interface VFlexElement
|
|
|
4339
4879
|
NoAppConnections,
|
|
4340
4880
|
DisplayName,
|
|
4341
4881
|
BindableSourceSearch,
|
|
4342
|
-
ElementSettings
|
|
4882
|
+
ElementSettings,
|
|
4883
|
+
Visibility {
|
|
4343
4884
|
readonly id: FullElementId;
|
|
4344
4885
|
readonly type: 'VFlex';
|
|
4345
4886
|
readonly plugin: 'Layout';
|
|
4887
|
+
getTag(): Promise<null | BlockElementTag>;
|
|
4888
|
+
setTag(tag: BlockElementTag): Promise<null>;
|
|
4346
4889
|
}
|
|
4347
4890
|
|
|
4348
4891
|
interface HFlexElement
|
|
4349
4892
|
extends
|
|
4350
4893
|
WebflowElement,
|
|
4351
4894
|
CustomAttributes,
|
|
4895
|
+
Attributes,
|
|
4352
4896
|
DomId,
|
|
4353
4897
|
Styles,
|
|
4354
4898
|
Children,
|
|
@@ -4356,16 +4900,20 @@ interface HFlexElement
|
|
|
4356
4900
|
NoAppConnections,
|
|
4357
4901
|
DisplayName,
|
|
4358
4902
|
BindableSourceSearch,
|
|
4359
|
-
ElementSettings
|
|
4903
|
+
ElementSettings,
|
|
4904
|
+
Visibility {
|
|
4360
4905
|
readonly id: FullElementId;
|
|
4361
4906
|
readonly type: 'HFlex';
|
|
4362
4907
|
readonly plugin: 'Layout';
|
|
4908
|
+
getTag(): Promise<null | BlockElementTag>;
|
|
4909
|
+
setTag(tag: BlockElementTag): Promise<null>;
|
|
4363
4910
|
}
|
|
4364
4911
|
|
|
4365
4912
|
interface NavbarBrandElement
|
|
4366
4913
|
extends
|
|
4367
4914
|
WebflowElement,
|
|
4368
4915
|
CustomAttributes,
|
|
4916
|
+
Attributes,
|
|
4369
4917
|
DomId,
|
|
4370
4918
|
Styles,
|
|
4371
4919
|
Children,
|
|
@@ -4373,7 +4921,8 @@ interface NavbarBrandElement
|
|
|
4373
4921
|
NoAppConnections,
|
|
4374
4922
|
DisplayName,
|
|
4375
4923
|
BindableSourceSearch,
|
|
4376
|
-
ElementSettings
|
|
4924
|
+
ElementSettings,
|
|
4925
|
+
Visibility {
|
|
4377
4926
|
readonly id: FullElementId;
|
|
4378
4927
|
readonly type: 'NavbarBrand';
|
|
4379
4928
|
readonly plugin: 'Navbar';
|
|
@@ -4383,6 +4932,7 @@ interface NavbarButtonElement
|
|
|
4383
4932
|
extends
|
|
4384
4933
|
WebflowElement,
|
|
4385
4934
|
CustomAttributes,
|
|
4935
|
+
Attributes,
|
|
4386
4936
|
DomId,
|
|
4387
4937
|
Styles,
|
|
4388
4938
|
Children,
|
|
@@ -4390,7 +4940,8 @@ interface NavbarButtonElement
|
|
|
4390
4940
|
NoAppConnections,
|
|
4391
4941
|
DisplayName,
|
|
4392
4942
|
BindableSourceSearch,
|
|
4393
|
-
ElementSettings
|
|
4943
|
+
ElementSettings,
|
|
4944
|
+
Visibility {
|
|
4394
4945
|
readonly id: FullElementId;
|
|
4395
4946
|
readonly type: 'NavbarButton';
|
|
4396
4947
|
readonly plugin: 'Navbar';
|
|
@@ -4400,6 +4951,7 @@ interface NavbarContainerElement
|
|
|
4400
4951
|
extends
|
|
4401
4952
|
WebflowElement,
|
|
4402
4953
|
CustomAttributes,
|
|
4954
|
+
Attributes,
|
|
4403
4955
|
DomId,
|
|
4404
4956
|
Styles,
|
|
4405
4957
|
Children,
|
|
@@ -4407,16 +4959,20 @@ interface NavbarContainerElement
|
|
|
4407
4959
|
NoAppConnections,
|
|
4408
4960
|
DisplayName,
|
|
4409
4961
|
BindableSourceSearch,
|
|
4410
|
-
ElementSettings
|
|
4962
|
+
ElementSettings,
|
|
4963
|
+
Visibility {
|
|
4411
4964
|
readonly id: FullElementId;
|
|
4412
4965
|
readonly type: 'NavbarContainer';
|
|
4413
4966
|
readonly plugin: 'Navbar';
|
|
4967
|
+
getTag(): Promise<null | BlockElementTag>;
|
|
4968
|
+
setTag(tag: BlockElementTag): Promise<null>;
|
|
4414
4969
|
}
|
|
4415
4970
|
|
|
4416
4971
|
interface NavbarLinkElement
|
|
4417
4972
|
extends
|
|
4418
4973
|
WebflowElement,
|
|
4419
4974
|
CustomAttributes,
|
|
4975
|
+
Attributes,
|
|
4420
4976
|
DomId,
|
|
4421
4977
|
Styles,
|
|
4422
4978
|
Children,
|
|
@@ -4424,7 +4980,8 @@ interface NavbarLinkElement
|
|
|
4424
4980
|
NoAppConnections,
|
|
4425
4981
|
DisplayName,
|
|
4426
4982
|
BindableSourceSearch,
|
|
4427
|
-
ElementSettings
|
|
4983
|
+
ElementSettings,
|
|
4984
|
+
Visibility {
|
|
4428
4985
|
readonly id: FullElementId;
|
|
4429
4986
|
readonly type: 'NavbarLink';
|
|
4430
4987
|
readonly plugin: 'Navbar';
|
|
@@ -4434,14 +4991,16 @@ interface NavbarMenuElement
|
|
|
4434
4991
|
extends
|
|
4435
4992
|
WebflowElement,
|
|
4436
4993
|
CustomAttributes,
|
|
4437
|
-
|
|
4994
|
+
Attributes,
|
|
4995
|
+
DomId,
|
|
4438
4996
|
Styles,
|
|
4439
4997
|
Children,
|
|
4440
4998
|
NoTextContent,
|
|
4441
4999
|
NoAppConnections,
|
|
4442
5000
|
DisplayName,
|
|
4443
5001
|
BindableSourceSearch,
|
|
4444
|
-
ElementSettings
|
|
5002
|
+
ElementSettings,
|
|
5003
|
+
Visibility {
|
|
4445
5004
|
readonly id: FullElementId;
|
|
4446
5005
|
readonly type: 'NavbarMenu';
|
|
4447
5006
|
readonly plugin: 'Navbar';
|
|
@@ -4451,6 +5010,7 @@ interface NavbarWrapperElement
|
|
|
4451
5010
|
extends
|
|
4452
5011
|
WebflowElement,
|
|
4453
5012
|
CustomAttributes,
|
|
5013
|
+
Attributes,
|
|
4454
5014
|
DomId,
|
|
4455
5015
|
Styles,
|
|
4456
5016
|
Children,
|
|
@@ -4458,7 +5018,8 @@ interface NavbarWrapperElement
|
|
|
4458
5018
|
NoAppConnections,
|
|
4459
5019
|
DisplayName,
|
|
4460
5020
|
BindableSourceSearch,
|
|
4461
|
-
ElementSettings
|
|
5021
|
+
ElementSettings,
|
|
5022
|
+
Visibility {
|
|
4462
5023
|
readonly id: FullElementId;
|
|
4463
5024
|
readonly type: 'NavbarWrapper';
|
|
4464
5025
|
readonly plugin: 'Navbar';
|
|
@@ -4468,6 +5029,7 @@ interface PaginationElement
|
|
|
4468
5029
|
extends
|
|
4469
5030
|
WebflowElement,
|
|
4470
5031
|
CustomAttributes,
|
|
5032
|
+
Attributes,
|
|
4471
5033
|
DomId,
|
|
4472
5034
|
Styles,
|
|
4473
5035
|
Children,
|
|
@@ -4475,7 +5037,8 @@ interface PaginationElement
|
|
|
4475
5037
|
NoAppConnections,
|
|
4476
5038
|
DisplayName,
|
|
4477
5039
|
BindableSourceSearch,
|
|
4478
|
-
ElementSettings
|
|
5040
|
+
ElementSettings,
|
|
5041
|
+
Visibility {
|
|
4479
5042
|
readonly id: FullElementId;
|
|
4480
5043
|
readonly type: 'Pagination';
|
|
4481
5044
|
readonly plugin: 'Pagination';
|
|
@@ -4485,6 +5048,7 @@ interface PaginationPreviousElement
|
|
|
4485
5048
|
extends
|
|
4486
5049
|
WebflowElement,
|
|
4487
5050
|
CustomAttributes,
|
|
5051
|
+
Attributes,
|
|
4488
5052
|
DomId,
|
|
4489
5053
|
Styles,
|
|
4490
5054
|
Children,
|
|
@@ -4492,7 +5056,8 @@ interface PaginationPreviousElement
|
|
|
4492
5056
|
NoAppConnections,
|
|
4493
5057
|
DisplayName,
|
|
4494
5058
|
BindableSourceSearch,
|
|
4495
|
-
ElementSettings
|
|
5059
|
+
ElementSettings,
|
|
5060
|
+
Visibility {
|
|
4496
5061
|
readonly id: FullElementId;
|
|
4497
5062
|
readonly type: 'PaginationPrevious';
|
|
4498
5063
|
readonly plugin: 'Pagination';
|
|
@@ -4502,6 +5067,7 @@ interface PaginationNextElement
|
|
|
4502
5067
|
extends
|
|
4503
5068
|
WebflowElement,
|
|
4504
5069
|
CustomAttributes,
|
|
5070
|
+
Attributes,
|
|
4505
5071
|
DomId,
|
|
4506
5072
|
Styles,
|
|
4507
5073
|
Children,
|
|
@@ -4509,7 +5075,8 @@ interface PaginationNextElement
|
|
|
4509
5075
|
NoAppConnections,
|
|
4510
5076
|
DisplayName,
|
|
4511
5077
|
BindableSourceSearch,
|
|
4512
|
-
ElementSettings
|
|
5078
|
+
ElementSettings,
|
|
5079
|
+
Visibility {
|
|
4513
5080
|
readonly id: FullElementId;
|
|
4514
5081
|
readonly type: 'PaginationNext';
|
|
4515
5082
|
readonly plugin: 'Pagination';
|
|
@@ -4519,6 +5086,7 @@ interface PaginationPreviousIconElement
|
|
|
4519
5086
|
extends
|
|
4520
5087
|
WebflowElement,
|
|
4521
5088
|
CustomAttributes,
|
|
5089
|
+
Attributes,
|
|
4522
5090
|
DomId,
|
|
4523
5091
|
Styles,
|
|
4524
5092
|
NoChildren,
|
|
@@ -4526,7 +5094,8 @@ interface PaginationPreviousIconElement
|
|
|
4526
5094
|
NoAppConnections,
|
|
4527
5095
|
DisplayName,
|
|
4528
5096
|
BindableSourceSearch,
|
|
4529
|
-
ElementSettings
|
|
5097
|
+
ElementSettings,
|
|
5098
|
+
Visibility {
|
|
4530
5099
|
readonly id: FullElementId;
|
|
4531
5100
|
readonly type: 'PaginationPreviousIcon';
|
|
4532
5101
|
readonly plugin: 'Pagination';
|
|
@@ -4536,6 +5105,7 @@ interface PaginationNextIconElement
|
|
|
4536
5105
|
extends
|
|
4537
5106
|
WebflowElement,
|
|
4538
5107
|
CustomAttributes,
|
|
5108
|
+
Attributes,
|
|
4539
5109
|
DomId,
|
|
4540
5110
|
Styles,
|
|
4541
5111
|
NoChildren,
|
|
@@ -4543,7 +5113,8 @@ interface PaginationNextIconElement
|
|
|
4543
5113
|
NoAppConnections,
|
|
4544
5114
|
DisplayName,
|
|
4545
5115
|
BindableSourceSearch,
|
|
4546
|
-
ElementSettings
|
|
5116
|
+
ElementSettings,
|
|
5117
|
+
Visibility {
|
|
4547
5118
|
readonly id: FullElementId;
|
|
4548
5119
|
readonly type: 'PaginationNextIcon';
|
|
4549
5120
|
readonly plugin: 'Pagination';
|
|
@@ -4553,6 +5124,7 @@ interface PaginationCountElement
|
|
|
4553
5124
|
extends
|
|
4554
5125
|
WebflowElement,
|
|
4555
5126
|
CustomAttributes,
|
|
5127
|
+
Attributes,
|
|
4556
5128
|
DomId,
|
|
4557
5129
|
Styles,
|
|
4558
5130
|
NoChildren,
|
|
@@ -4560,7 +5132,8 @@ interface PaginationCountElement
|
|
|
4560
5132
|
NoAppConnections,
|
|
4561
5133
|
DisplayName,
|
|
4562
5134
|
BindableSourceSearch,
|
|
4563
|
-
ElementSettings
|
|
5135
|
+
ElementSettings,
|
|
5136
|
+
Visibility {
|
|
4564
5137
|
readonly id: FullElementId;
|
|
4565
5138
|
readonly type: 'PaginationCount';
|
|
4566
5139
|
readonly plugin: 'Pagination';
|
|
@@ -4570,6 +5143,7 @@ interface SliderArrowElement
|
|
|
4570
5143
|
extends
|
|
4571
5144
|
WebflowElement,
|
|
4572
5145
|
CustomAttributes,
|
|
5146
|
+
Attributes,
|
|
4573
5147
|
DomId,
|
|
4574
5148
|
Styles,
|
|
4575
5149
|
Children,
|
|
@@ -4577,7 +5151,8 @@ interface SliderArrowElement
|
|
|
4577
5151
|
NoAppConnections,
|
|
4578
5152
|
DisplayName,
|
|
4579
5153
|
BindableSourceSearch,
|
|
4580
|
-
ElementSettings
|
|
5154
|
+
ElementSettings,
|
|
5155
|
+
Visibility {
|
|
4581
5156
|
readonly id: FullElementId;
|
|
4582
5157
|
readonly type: 'SliderArrow';
|
|
4583
5158
|
readonly plugin: 'Slider';
|
|
@@ -4587,6 +5162,7 @@ interface SliderMaskElement
|
|
|
4587
5162
|
extends
|
|
4588
5163
|
WebflowElement,
|
|
4589
5164
|
CustomAttributes,
|
|
5165
|
+
Attributes,
|
|
4590
5166
|
DomId,
|
|
4591
5167
|
Styles,
|
|
4592
5168
|
Children,
|
|
@@ -4594,7 +5170,8 @@ interface SliderMaskElement
|
|
|
4594
5170
|
NoAppConnections,
|
|
4595
5171
|
DisplayName,
|
|
4596
5172
|
BindableSourceSearch,
|
|
4597
|
-
ElementSettings
|
|
5173
|
+
ElementSettings,
|
|
5174
|
+
Visibility {
|
|
4598
5175
|
readonly id: FullElementId;
|
|
4599
5176
|
readonly type: 'SliderMask';
|
|
4600
5177
|
readonly plugin: 'Slider';
|
|
@@ -4604,6 +5181,7 @@ interface SliderNavElement
|
|
|
4604
5181
|
extends
|
|
4605
5182
|
WebflowElement,
|
|
4606
5183
|
CustomAttributes,
|
|
5184
|
+
Attributes,
|
|
4607
5185
|
DomId,
|
|
4608
5186
|
Styles,
|
|
4609
5187
|
Children,
|
|
@@ -4611,7 +5189,8 @@ interface SliderNavElement
|
|
|
4611
5189
|
NoAppConnections,
|
|
4612
5190
|
DisplayName,
|
|
4613
5191
|
BindableSourceSearch,
|
|
4614
|
-
ElementSettings
|
|
5192
|
+
ElementSettings,
|
|
5193
|
+
Visibility {
|
|
4615
5194
|
readonly id: FullElementId;
|
|
4616
5195
|
readonly type: 'SliderNav';
|
|
4617
5196
|
readonly plugin: 'Slider';
|
|
@@ -4621,6 +5200,7 @@ interface SliderSlideElement
|
|
|
4621
5200
|
extends
|
|
4622
5201
|
WebflowElement,
|
|
4623
5202
|
CustomAttributes,
|
|
5203
|
+
Attributes,
|
|
4624
5204
|
DomId,
|
|
4625
5205
|
Styles,
|
|
4626
5206
|
Children,
|
|
@@ -4628,7 +5208,8 @@ interface SliderSlideElement
|
|
|
4628
5208
|
NoAppConnections,
|
|
4629
5209
|
DisplayName,
|
|
4630
5210
|
BindableSourceSearch,
|
|
4631
|
-
ElementSettings
|
|
5211
|
+
ElementSettings,
|
|
5212
|
+
Visibility {
|
|
4632
5213
|
readonly id: FullElementId;
|
|
4633
5214
|
readonly type: 'SliderSlide';
|
|
4634
5215
|
readonly plugin: 'Slider';
|
|
@@ -4638,6 +5219,7 @@ interface SliderWrapperElement
|
|
|
4638
5219
|
extends
|
|
4639
5220
|
WebflowElement,
|
|
4640
5221
|
CustomAttributes,
|
|
5222
|
+
Attributes,
|
|
4641
5223
|
DomId,
|
|
4642
5224
|
Styles,
|
|
4643
5225
|
Children,
|
|
@@ -4645,7 +5227,8 @@ interface SliderWrapperElement
|
|
|
4645
5227
|
NoAppConnections,
|
|
4646
5228
|
DisplayName,
|
|
4647
5229
|
BindableSourceSearch,
|
|
4648
|
-
ElementSettings
|
|
5230
|
+
ElementSettings,
|
|
5231
|
+
Visibility {
|
|
4649
5232
|
readonly id: FullElementId;
|
|
4650
5233
|
readonly type: 'SliderWrapper';
|
|
4651
5234
|
readonly plugin: 'Slider';
|
|
@@ -4655,14 +5238,16 @@ interface MetaElement
|
|
|
4655
5238
|
extends
|
|
4656
5239
|
WebflowElement,
|
|
4657
5240
|
NoCustomAttributes,
|
|
4658
|
-
|
|
5241
|
+
NoAttributes,
|
|
5242
|
+
DomId,
|
|
4659
5243
|
NoStyles,
|
|
4660
5244
|
NoChildren,
|
|
4661
5245
|
NoTextContent,
|
|
4662
5246
|
NoAppConnections,
|
|
4663
5247
|
DisplayName,
|
|
4664
5248
|
BindableSourceSearch,
|
|
4665
|
-
ElementSettings
|
|
5249
|
+
ElementSettings,
|
|
5250
|
+
NoVisibility {
|
|
4666
5251
|
readonly id: FullElementId;
|
|
4667
5252
|
readonly type: 'Meta';
|
|
4668
5253
|
readonly plugin: 'Ssr';
|
|
@@ -4672,14 +5257,16 @@ interface TitleElement
|
|
|
4672
5257
|
extends
|
|
4673
5258
|
WebflowElement,
|
|
4674
5259
|
NoCustomAttributes,
|
|
4675
|
-
|
|
5260
|
+
NoAttributes,
|
|
5261
|
+
DomId,
|
|
4676
5262
|
NoStyles,
|
|
4677
5263
|
NoChildren,
|
|
4678
5264
|
NoTextContent,
|
|
4679
5265
|
NoAppConnections,
|
|
4680
5266
|
DisplayName,
|
|
4681
5267
|
BindableSourceSearch,
|
|
4682
|
-
ElementSettings
|
|
5268
|
+
ElementSettings,
|
|
5269
|
+
NoVisibility {
|
|
4683
5270
|
readonly id: FullElementId;
|
|
4684
5271
|
readonly type: 'Title';
|
|
4685
5272
|
readonly plugin: 'Ssr';
|
|
@@ -4689,14 +5276,16 @@ interface CustomCodeElement
|
|
|
4689
5276
|
extends
|
|
4690
5277
|
WebflowElement,
|
|
4691
5278
|
NoCustomAttributes,
|
|
4692
|
-
|
|
5279
|
+
NoAttributes,
|
|
5280
|
+
DomId,
|
|
4693
5281
|
NoStyles,
|
|
4694
5282
|
NoChildren,
|
|
4695
5283
|
NoTextContent,
|
|
4696
5284
|
NoAppConnections,
|
|
4697
5285
|
DisplayName,
|
|
4698
5286
|
BindableSourceSearch,
|
|
4699
|
-
ElementSettings
|
|
5287
|
+
ElementSettings,
|
|
5288
|
+
NoVisibility {
|
|
4700
5289
|
readonly id: FullElementId;
|
|
4701
5290
|
readonly type: 'CustomCode';
|
|
4702
5291
|
readonly plugin: 'Ssr';
|
|
@@ -4706,6 +5295,7 @@ interface CommentElement
|
|
|
4706
5295
|
extends
|
|
4707
5296
|
WebflowElement,
|
|
4708
5297
|
CustomAttributes,
|
|
5298
|
+
Attributes,
|
|
4709
5299
|
DomId,
|
|
4710
5300
|
Styles,
|
|
4711
5301
|
NoChildren,
|
|
@@ -4713,7 +5303,8 @@ interface CommentElement
|
|
|
4713
5303
|
NoAppConnections,
|
|
4714
5304
|
DisplayName,
|
|
4715
5305
|
BindableSourceSearch,
|
|
4716
|
-
ElementSettings
|
|
5306
|
+
ElementSettings,
|
|
5307
|
+
Visibility {
|
|
4717
5308
|
readonly id: FullElementId;
|
|
4718
5309
|
readonly type: 'Comment';
|
|
4719
5310
|
readonly plugin: 'Ssr';
|
|
@@ -4723,6 +5314,7 @@ interface FacebookPixelElement
|
|
|
4723
5314
|
extends
|
|
4724
5315
|
WebflowElement,
|
|
4725
5316
|
CustomAttributes,
|
|
5317
|
+
Attributes,
|
|
4726
5318
|
DomId,
|
|
4727
5319
|
Styles,
|
|
4728
5320
|
NoChildren,
|
|
@@ -4730,7 +5322,8 @@ interface FacebookPixelElement
|
|
|
4730
5322
|
NoAppConnections,
|
|
4731
5323
|
DisplayName,
|
|
4732
5324
|
BindableSourceSearch,
|
|
4733
|
-
ElementSettings
|
|
5325
|
+
ElementSettings,
|
|
5326
|
+
Visibility {
|
|
4734
5327
|
readonly id: FullElementId;
|
|
4735
5328
|
readonly type: 'FacebookPixel';
|
|
4736
5329
|
readonly plugin: 'Ssr';
|
|
@@ -4740,6 +5333,7 @@ interface GoogleAnalyticsElement
|
|
|
4740
5333
|
extends
|
|
4741
5334
|
WebflowElement,
|
|
4742
5335
|
CustomAttributes,
|
|
5336
|
+
Attributes,
|
|
4743
5337
|
DomId,
|
|
4744
5338
|
Styles,
|
|
4745
5339
|
NoChildren,
|
|
@@ -4747,7 +5341,8 @@ interface GoogleAnalyticsElement
|
|
|
4747
5341
|
NoAppConnections,
|
|
4748
5342
|
DisplayName,
|
|
4749
5343
|
BindableSourceSearch,
|
|
4750
|
-
ElementSettings
|
|
5344
|
+
ElementSettings,
|
|
5345
|
+
Visibility {
|
|
4751
5346
|
readonly id: FullElementId;
|
|
4752
5347
|
readonly type: 'GoogleAnalytics';
|
|
4753
5348
|
readonly plugin: 'Ssr';
|
|
@@ -4757,6 +5352,7 @@ interface TabsContentElement
|
|
|
4757
5352
|
extends
|
|
4758
5353
|
WebflowElement,
|
|
4759
5354
|
CustomAttributes,
|
|
5355
|
+
Attributes,
|
|
4760
5356
|
DomId,
|
|
4761
5357
|
Styles,
|
|
4762
5358
|
Children,
|
|
@@ -4764,24 +5360,29 @@ interface TabsContentElement
|
|
|
4764
5360
|
NoAppConnections,
|
|
4765
5361
|
DisplayName,
|
|
4766
5362
|
BindableSourceSearch,
|
|
4767
|
-
ElementSettings
|
|
5363
|
+
ElementSettings,
|
|
5364
|
+
Visibility {
|
|
4768
5365
|
readonly id: FullElementId;
|
|
4769
5366
|
readonly type: 'TabsContent';
|
|
4770
5367
|
readonly plugin: 'Tabs';
|
|
5368
|
+
getTag(): Promise<null | BlockElementTag>;
|
|
5369
|
+
setTag(tag: BlockElementTag): Promise<null>;
|
|
4771
5370
|
}
|
|
4772
5371
|
|
|
4773
5372
|
interface TabsLinkElement
|
|
4774
5373
|
extends
|
|
4775
5374
|
WebflowElement,
|
|
4776
5375
|
CustomAttributes,
|
|
4777
|
-
|
|
5376
|
+
Attributes,
|
|
5377
|
+
DomId,
|
|
4778
5378
|
Styles,
|
|
4779
5379
|
Children,
|
|
4780
5380
|
TextContent,
|
|
4781
5381
|
NoAppConnections,
|
|
4782
5382
|
DisplayName,
|
|
4783
5383
|
BindableSourceSearch,
|
|
4784
|
-
ElementSettings
|
|
5384
|
+
ElementSettings,
|
|
5385
|
+
Visibility {
|
|
4785
5386
|
readonly id: FullElementId;
|
|
4786
5387
|
readonly type: 'TabsLink';
|
|
4787
5388
|
readonly plugin: 'Tabs';
|
|
@@ -4791,6 +5392,7 @@ interface TabsMenuElement
|
|
|
4791
5392
|
extends
|
|
4792
5393
|
WebflowElement,
|
|
4793
5394
|
CustomAttributes,
|
|
5395
|
+
Attributes,
|
|
4794
5396
|
DomId,
|
|
4795
5397
|
Styles,
|
|
4796
5398
|
Children,
|
|
@@ -4798,7 +5400,8 @@ interface TabsMenuElement
|
|
|
4798
5400
|
NoAppConnections,
|
|
4799
5401
|
DisplayName,
|
|
4800
5402
|
BindableSourceSearch,
|
|
4801
|
-
ElementSettings
|
|
5403
|
+
ElementSettings,
|
|
5404
|
+
Visibility {
|
|
4802
5405
|
readonly id: FullElementId;
|
|
4803
5406
|
readonly type: 'TabsMenu';
|
|
4804
5407
|
readonly plugin: 'Tabs';
|
|
@@ -4808,14 +5411,16 @@ interface TabsPaneElement
|
|
|
4808
5411
|
extends
|
|
4809
5412
|
WebflowElement,
|
|
4810
5413
|
CustomAttributes,
|
|
4811
|
-
|
|
5414
|
+
Attributes,
|
|
5415
|
+
DomId,
|
|
4812
5416
|
Styles,
|
|
4813
5417
|
Children,
|
|
4814
5418
|
NoTextContent,
|
|
4815
5419
|
NoAppConnections,
|
|
4816
5420
|
DisplayName,
|
|
4817
5421
|
BindableSourceSearch,
|
|
4818
|
-
ElementSettings
|
|
5422
|
+
ElementSettings,
|
|
5423
|
+
Visibility {
|
|
4819
5424
|
readonly id: FullElementId;
|
|
4820
5425
|
readonly type: 'TabsPane';
|
|
4821
5426
|
readonly plugin: 'Tabs';
|
|
@@ -4825,6 +5430,7 @@ interface TabsWrapperElement
|
|
|
4825
5430
|
extends
|
|
4826
5431
|
WebflowElement,
|
|
4827
5432
|
CustomAttributes,
|
|
5433
|
+
Attributes,
|
|
4828
5434
|
DomId,
|
|
4829
5435
|
Styles,
|
|
4830
5436
|
Children,
|
|
@@ -4832,7 +5438,8 @@ interface TabsWrapperElement
|
|
|
4832
5438
|
NoAppConnections,
|
|
4833
5439
|
DisplayName,
|
|
4834
5440
|
BindableSourceSearch,
|
|
4835
|
-
ElementSettings
|
|
5441
|
+
ElementSettings,
|
|
5442
|
+
Visibility {
|
|
4836
5443
|
readonly id: FullElementId;
|
|
4837
5444
|
readonly type: 'TabsWrapper';
|
|
4838
5445
|
readonly plugin: 'Tabs';
|
|
@@ -4842,6 +5449,7 @@ interface FacebookElement
|
|
|
4842
5449
|
extends
|
|
4843
5450
|
WebflowElement,
|
|
4844
5451
|
CustomAttributes,
|
|
5452
|
+
Attributes,
|
|
4845
5453
|
DomId,
|
|
4846
5454
|
Styles,
|
|
4847
5455
|
NoChildren,
|
|
@@ -4849,7 +5457,8 @@ interface FacebookElement
|
|
|
4849
5457
|
NoAppConnections,
|
|
4850
5458
|
DisplayName,
|
|
4851
5459
|
BindableSourceSearch,
|
|
4852
|
-
ElementSettings
|
|
5460
|
+
ElementSettings,
|
|
5461
|
+
Visibility {
|
|
4853
5462
|
readonly id: FullElementId;
|
|
4854
5463
|
readonly type: 'Facebook';
|
|
4855
5464
|
readonly plugin: 'Widget';
|
|
@@ -4859,14 +5468,16 @@ interface MapWidgetElement
|
|
|
4859
5468
|
extends
|
|
4860
5469
|
WebflowElement,
|
|
4861
5470
|
CustomAttributes,
|
|
4862
|
-
|
|
5471
|
+
Attributes,
|
|
5472
|
+
DomId,
|
|
4863
5473
|
Styles,
|
|
4864
5474
|
NoChildren,
|
|
4865
5475
|
NoTextContent,
|
|
4866
5476
|
NoAppConnections,
|
|
4867
5477
|
DisplayName,
|
|
4868
5478
|
BindableSourceSearch,
|
|
4869
|
-
ElementSettings
|
|
5479
|
+
ElementSettings,
|
|
5480
|
+
Visibility {
|
|
4870
5481
|
readonly id: FullElementId;
|
|
4871
5482
|
readonly type: 'MapWidget';
|
|
4872
5483
|
readonly plugin: 'Widget';
|
|
@@ -4876,6 +5487,7 @@ interface TwitterElement
|
|
|
4876
5487
|
extends
|
|
4877
5488
|
WebflowElement,
|
|
4878
5489
|
CustomAttributes,
|
|
5490
|
+
Attributes,
|
|
4879
5491
|
DomId,
|
|
4880
5492
|
Styles,
|
|
4881
5493
|
NoChildren,
|
|
@@ -4883,7 +5495,8 @@ interface TwitterElement
|
|
|
4883
5495
|
NoAppConnections,
|
|
4884
5496
|
DisplayName,
|
|
4885
5497
|
BindableSourceSearch,
|
|
4886
|
-
ElementSettings
|
|
5498
|
+
ElementSettings,
|
|
5499
|
+
Visibility {
|
|
4887
5500
|
readonly id: FullElementId;
|
|
4888
5501
|
readonly type: 'Twitter';
|
|
4889
5502
|
readonly plugin: 'Widget';
|
|
@@ -4893,14 +5506,16 @@ interface GooglePlusElement
|
|
|
4893
5506
|
extends
|
|
4894
5507
|
WebflowElement,
|
|
4895
5508
|
NoCustomAttributes,
|
|
4896
|
-
|
|
5509
|
+
NoAttributes,
|
|
5510
|
+
DomId,
|
|
4897
5511
|
NoStyles,
|
|
4898
5512
|
NoChildren,
|
|
4899
5513
|
NoTextContent,
|
|
4900
5514
|
NoAppConnections,
|
|
4901
5515
|
DisplayName,
|
|
4902
5516
|
BindableSourceSearch,
|
|
4903
|
-
ElementSettings
|
|
5517
|
+
ElementSettings,
|
|
5518
|
+
NoVisibility {
|
|
4904
5519
|
readonly id: FullElementId;
|
|
4905
5520
|
readonly type: 'GooglePlus';
|
|
4906
5521
|
readonly plugin: 'Widget';
|
|
@@ -4910,6 +5525,7 @@ interface BlockContentElement
|
|
|
4910
5525
|
extends
|
|
4911
5526
|
WebflowElement,
|
|
4912
5527
|
CustomAttributes,
|
|
5528
|
+
Attributes,
|
|
4913
5529
|
DomId,
|
|
4914
5530
|
Styles,
|
|
4915
5531
|
Children,
|
|
@@ -4917,7 +5533,8 @@ interface BlockContentElement
|
|
|
4917
5533
|
NoAppConnections,
|
|
4918
5534
|
DisplayName,
|
|
4919
5535
|
BindableSourceSearch,
|
|
4920
|
-
ElementSettings
|
|
5536
|
+
ElementSettings,
|
|
5537
|
+
Visibility {
|
|
4921
5538
|
readonly id: FullElementId;
|
|
4922
5539
|
readonly type: 'BlockContent';
|
|
4923
5540
|
readonly plugin: 'Users';
|
|
@@ -4927,6 +5544,7 @@ interface BlockHeaderElement
|
|
|
4927
5544
|
extends
|
|
4928
5545
|
WebflowElement,
|
|
4929
5546
|
CustomAttributes,
|
|
5547
|
+
Attributes,
|
|
4930
5548
|
DomId,
|
|
4931
5549
|
Styles,
|
|
4932
5550
|
Children,
|
|
@@ -4934,7 +5552,8 @@ interface BlockHeaderElement
|
|
|
4934
5552
|
NoAppConnections,
|
|
4935
5553
|
DisplayName,
|
|
4936
5554
|
BindableSourceSearch,
|
|
4937
|
-
ElementSettings
|
|
5555
|
+
ElementSettings,
|
|
5556
|
+
Visibility {
|
|
4938
5557
|
readonly id: FullElementId;
|
|
4939
5558
|
readonly type: 'BlockHeader';
|
|
4940
5559
|
readonly plugin: 'Users';
|
|
@@ -4944,6 +5563,7 @@ interface FlexColumnElement
|
|
|
4944
5563
|
extends
|
|
4945
5564
|
WebflowElement,
|
|
4946
5565
|
CustomAttributes,
|
|
5566
|
+
Attributes,
|
|
4947
5567
|
DomId,
|
|
4948
5568
|
Styles,
|
|
4949
5569
|
Children,
|
|
@@ -4951,7 +5571,8 @@ interface FlexColumnElement
|
|
|
4951
5571
|
NoAppConnections,
|
|
4952
5572
|
DisplayName,
|
|
4953
5573
|
BindableSourceSearch,
|
|
4954
|
-
ElementSettings
|
|
5574
|
+
ElementSettings,
|
|
5575
|
+
Visibility {
|
|
4955
5576
|
readonly id: FullElementId;
|
|
4956
5577
|
readonly type: 'FlexColumn';
|
|
4957
5578
|
readonly plugin: 'Users';
|
|
@@ -4961,6 +5582,7 @@ interface GridRowElement
|
|
|
4961
5582
|
extends
|
|
4962
5583
|
WebflowElement,
|
|
4963
5584
|
CustomAttributes,
|
|
5585
|
+
Attributes,
|
|
4964
5586
|
DomId,
|
|
4965
5587
|
Styles,
|
|
4966
5588
|
Children,
|
|
@@ -4968,7 +5590,8 @@ interface GridRowElement
|
|
|
4968
5590
|
NoAppConnections,
|
|
4969
5591
|
DisplayName,
|
|
4970
5592
|
BindableSourceSearch,
|
|
4971
|
-
ElementSettings
|
|
5593
|
+
ElementSettings,
|
|
5594
|
+
Visibility {
|
|
4972
5595
|
readonly id: FullElementId;
|
|
4973
5596
|
readonly type: 'GridRow';
|
|
4974
5597
|
readonly plugin: 'Users';
|
|
@@ -4978,6 +5601,7 @@ interface SlotElement
|
|
|
4978
5601
|
extends
|
|
4979
5602
|
WebflowElement,
|
|
4980
5603
|
CustomAttributes,
|
|
5604
|
+
Attributes,
|
|
4981
5605
|
DomId,
|
|
4982
5606
|
Styles,
|
|
4983
5607
|
Children,
|
|
@@ -4985,16 +5609,20 @@ interface SlotElement
|
|
|
4985
5609
|
NoAppConnections,
|
|
4986
5610
|
DisplayName,
|
|
4987
5611
|
BindableSourceSearch,
|
|
4988
|
-
ElementSettings
|
|
5612
|
+
ElementSettings,
|
|
5613
|
+
Visibility {
|
|
4989
5614
|
readonly id: FullElementId;
|
|
4990
5615
|
readonly type: 'Slot';
|
|
4991
5616
|
readonly plugin: 'Slots';
|
|
5617
|
+
getTag(): Promise<null | BlockElementTag>;
|
|
5618
|
+
setTag(tag: BlockElementTag): Promise<null>;
|
|
4992
5619
|
}
|
|
4993
5620
|
|
|
4994
5621
|
interface FrameElement
|
|
4995
5622
|
extends
|
|
4996
5623
|
WebflowElement,
|
|
4997
5624
|
CustomAttributes,
|
|
5625
|
+
Attributes,
|
|
4998
5626
|
DomId,
|
|
4999
5627
|
Styles,
|
|
5000
5628
|
Children,
|
|
@@ -5002,7 +5630,8 @@ interface FrameElement
|
|
|
5002
5630
|
NoAppConnections,
|
|
5003
5631
|
DisplayName,
|
|
5004
5632
|
BindableSourceSearch,
|
|
5005
|
-
ElementSettings
|
|
5633
|
+
ElementSettings,
|
|
5634
|
+
Visibility {
|
|
5006
5635
|
readonly id: FullElementId;
|
|
5007
5636
|
readonly type: 'Frame';
|
|
5008
5637
|
readonly plugin: 'Frame';
|