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