@webflow/designer-extension-typings 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +21 -0
- package/elements-generated.d.ts +4424 -0
- package/elements.d.ts +4 -0
- package/index.d.ts +19 -0
- package/package.json +10 -0
- package/styles.d.ts +51 -0
- package/tsconfig.json +9 -0
|
@@ -0,0 +1,4424 @@
|
|
|
1
|
+
// This file was automatically generated. See designer-extensions docs.
|
|
2
|
+
|
|
3
|
+
interface WebflowElement {
|
|
4
|
+
detach(): Promise<undefined>;
|
|
5
|
+
destroy(): undefined;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
interface Configurable {
|
|
9
|
+
readonly configurable: true;
|
|
10
|
+
save(): Promise<undefined>;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
interface NoConfigurable {
|
|
14
|
+
readonly configurable: false;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
interface CustomAttributes {
|
|
18
|
+
readonly customAttributes: true;
|
|
19
|
+
getCustomAttribute(name: string): null | string;
|
|
20
|
+
setCustomAttribute(name: string, value: string): undefined;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
interface NoCustomAttributes {
|
|
24
|
+
readonly customAttributes: false;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
interface DomId {
|
|
28
|
+
readonly domId: true;
|
|
29
|
+
getDomId(): null | string;
|
|
30
|
+
setDomId(id: string): undefined;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
interface NoDomId {
|
|
34
|
+
readonly domId: false;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
interface Styles {
|
|
38
|
+
readonly styles: true;
|
|
39
|
+
getStyles(): Promise<Array<Style>>;
|
|
40
|
+
setStyles(styles: Array<Style>): undefined;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
interface NoStyles {
|
|
44
|
+
readonly styles: false;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
interface TextContent {
|
|
48
|
+
readonly textContent: true;
|
|
49
|
+
setTextContent(content: string): undefined;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
interface NoTextContent {
|
|
53
|
+
readonly textContent: false;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
interface Children {
|
|
57
|
+
readonly children: true;
|
|
58
|
+
getChildren(): Array<AnyElement>;
|
|
59
|
+
setChildren(children: Array<AnyElement>): undefined;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
interface NoChildren {
|
|
63
|
+
readonly children: false;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
interface UnknownElement
|
|
67
|
+
extends WebflowElement,
|
|
68
|
+
NoConfigurable,
|
|
69
|
+
NoCustomAttributes,
|
|
70
|
+
NoDomId,
|
|
71
|
+
NoStyles,
|
|
72
|
+
NoChildren,
|
|
73
|
+
NoTextContent {
|
|
74
|
+
readonly id: ElementId;
|
|
75
|
+
readonly type: '';
|
|
76
|
+
readonly plugin: '';
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
interface DOMElement
|
|
80
|
+
extends WebflowElement,
|
|
81
|
+
Configurable,
|
|
82
|
+
NoCustomAttributes,
|
|
83
|
+
NoDomId,
|
|
84
|
+
Styles,
|
|
85
|
+
Children,
|
|
86
|
+
TextContent {
|
|
87
|
+
readonly id: ElementId;
|
|
88
|
+
readonly type: 'DOM';
|
|
89
|
+
readonly plugin: 'Builtin';
|
|
90
|
+
getAttribute(name: string): null | string;
|
|
91
|
+
setAttribute(name: string, value: string): undefined;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
interface AnimationElement
|
|
95
|
+
extends WebflowElement,
|
|
96
|
+
Configurable,
|
|
97
|
+
CustomAttributes,
|
|
98
|
+
DomId,
|
|
99
|
+
Styles,
|
|
100
|
+
NoChildren,
|
|
101
|
+
NoTextContent {
|
|
102
|
+
readonly id: ElementId;
|
|
103
|
+
readonly type: 'Animation';
|
|
104
|
+
readonly plugin: 'Animation';
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
interface BlockElement
|
|
108
|
+
extends WebflowElement,
|
|
109
|
+
Configurable,
|
|
110
|
+
CustomAttributes,
|
|
111
|
+
DomId,
|
|
112
|
+
Styles,
|
|
113
|
+
Children,
|
|
114
|
+
NoTextContent {
|
|
115
|
+
readonly id: ElementId;
|
|
116
|
+
readonly type: 'Block';
|
|
117
|
+
readonly plugin: 'Basic';
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
interface BlockquoteElement
|
|
121
|
+
extends WebflowElement,
|
|
122
|
+
Configurable,
|
|
123
|
+
CustomAttributes,
|
|
124
|
+
DomId,
|
|
125
|
+
Styles,
|
|
126
|
+
Children,
|
|
127
|
+
TextContent {
|
|
128
|
+
readonly id: ElementId;
|
|
129
|
+
readonly type: 'Blockquote';
|
|
130
|
+
readonly plugin: 'Basic';
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
interface EmphasizedElement
|
|
134
|
+
extends WebflowElement,
|
|
135
|
+
Configurable,
|
|
136
|
+
CustomAttributes,
|
|
137
|
+
DomId,
|
|
138
|
+
Styles,
|
|
139
|
+
Children,
|
|
140
|
+
TextContent {
|
|
141
|
+
readonly id: ElementId;
|
|
142
|
+
readonly type: 'Emphasized';
|
|
143
|
+
readonly plugin: 'Basic';
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
interface FigcaptionElement
|
|
147
|
+
extends WebflowElement,
|
|
148
|
+
Configurable,
|
|
149
|
+
CustomAttributes,
|
|
150
|
+
DomId,
|
|
151
|
+
Styles,
|
|
152
|
+
Children,
|
|
153
|
+
NoTextContent {
|
|
154
|
+
readonly id: ElementId;
|
|
155
|
+
readonly type: 'Figcaption';
|
|
156
|
+
readonly plugin: 'Basic';
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
interface FigureElement
|
|
160
|
+
extends WebflowElement,
|
|
161
|
+
Configurable,
|
|
162
|
+
CustomAttributes,
|
|
163
|
+
DomId,
|
|
164
|
+
Styles,
|
|
165
|
+
Children,
|
|
166
|
+
NoTextContent {
|
|
167
|
+
readonly id: ElementId;
|
|
168
|
+
readonly type: 'Figure';
|
|
169
|
+
readonly plugin: 'Basic';
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
interface HeadingElement
|
|
173
|
+
extends WebflowElement,
|
|
174
|
+
Configurable,
|
|
175
|
+
CustomAttributes,
|
|
176
|
+
DomId,
|
|
177
|
+
Styles,
|
|
178
|
+
Children,
|
|
179
|
+
TextContent {
|
|
180
|
+
readonly id: ElementId;
|
|
181
|
+
readonly type: 'Heading';
|
|
182
|
+
readonly plugin: 'Basic';
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
interface IframeElement
|
|
186
|
+
extends WebflowElement,
|
|
187
|
+
Configurable,
|
|
188
|
+
NoCustomAttributes,
|
|
189
|
+
NoDomId,
|
|
190
|
+
NoStyles,
|
|
191
|
+
NoChildren,
|
|
192
|
+
NoTextContent {
|
|
193
|
+
readonly id: ElementId;
|
|
194
|
+
readonly type: 'Iframe';
|
|
195
|
+
readonly plugin: 'Basic';
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
interface ImageElement
|
|
199
|
+
extends WebflowElement,
|
|
200
|
+
Configurable,
|
|
201
|
+
CustomAttributes,
|
|
202
|
+
NoDomId,
|
|
203
|
+
Styles,
|
|
204
|
+
NoChildren,
|
|
205
|
+
NoTextContent {
|
|
206
|
+
readonly id: ElementId;
|
|
207
|
+
readonly type: 'Image';
|
|
208
|
+
readonly plugin: 'Basic';
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
interface LinkElement
|
|
212
|
+
extends WebflowElement,
|
|
213
|
+
Configurable,
|
|
214
|
+
CustomAttributes,
|
|
215
|
+
DomId,
|
|
216
|
+
Styles,
|
|
217
|
+
Children,
|
|
218
|
+
TextContent {
|
|
219
|
+
readonly id: ElementId;
|
|
220
|
+
readonly type: 'Link';
|
|
221
|
+
readonly plugin: 'Basic';
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
interface ListElement
|
|
225
|
+
extends WebflowElement,
|
|
226
|
+
Configurable,
|
|
227
|
+
CustomAttributes,
|
|
228
|
+
DomId,
|
|
229
|
+
Styles,
|
|
230
|
+
Children,
|
|
231
|
+
NoTextContent {
|
|
232
|
+
readonly id: ElementId;
|
|
233
|
+
readonly type: 'List';
|
|
234
|
+
readonly plugin: 'Basic';
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
interface ListItemElement
|
|
238
|
+
extends WebflowElement,
|
|
239
|
+
Configurable,
|
|
240
|
+
CustomAttributes,
|
|
241
|
+
DomId,
|
|
242
|
+
Styles,
|
|
243
|
+
Children,
|
|
244
|
+
NoTextContent {
|
|
245
|
+
readonly id: ElementId;
|
|
246
|
+
readonly type: 'ListItem';
|
|
247
|
+
readonly plugin: 'Basic';
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
interface ParagraphElement
|
|
251
|
+
extends WebflowElement,
|
|
252
|
+
Configurable,
|
|
253
|
+
CustomAttributes,
|
|
254
|
+
DomId,
|
|
255
|
+
Styles,
|
|
256
|
+
Children,
|
|
257
|
+
TextContent {
|
|
258
|
+
readonly id: ElementId;
|
|
259
|
+
readonly type: 'Paragraph';
|
|
260
|
+
readonly plugin: 'Basic';
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
interface RichTextElement
|
|
264
|
+
extends WebflowElement,
|
|
265
|
+
Configurable,
|
|
266
|
+
CustomAttributes,
|
|
267
|
+
DomId,
|
|
268
|
+
Styles,
|
|
269
|
+
Children,
|
|
270
|
+
NoTextContent {
|
|
271
|
+
readonly id: ElementId;
|
|
272
|
+
readonly type: 'RichText';
|
|
273
|
+
readonly plugin: 'Basic';
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
interface SpanElement
|
|
277
|
+
extends WebflowElement,
|
|
278
|
+
Configurable,
|
|
279
|
+
CustomAttributes,
|
|
280
|
+
DomId,
|
|
281
|
+
Styles,
|
|
282
|
+
Children,
|
|
283
|
+
TextContent {
|
|
284
|
+
readonly id: ElementId;
|
|
285
|
+
readonly type: 'Span';
|
|
286
|
+
readonly plugin: 'Basic';
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
interface StringElement
|
|
290
|
+
extends WebflowElement,
|
|
291
|
+
Configurable,
|
|
292
|
+
NoCustomAttributes,
|
|
293
|
+
NoDomId,
|
|
294
|
+
NoStyles,
|
|
295
|
+
NoChildren,
|
|
296
|
+
NoTextContent {
|
|
297
|
+
readonly id: ElementId;
|
|
298
|
+
readonly type: 'String';
|
|
299
|
+
readonly plugin: 'Basic';
|
|
300
|
+
getText(): string;
|
|
301
|
+
setText(text: string): undefined;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
interface StrongElement
|
|
305
|
+
extends WebflowElement,
|
|
306
|
+
Configurable,
|
|
307
|
+
CustomAttributes,
|
|
308
|
+
DomId,
|
|
309
|
+
Styles,
|
|
310
|
+
Children,
|
|
311
|
+
TextContent {
|
|
312
|
+
readonly id: ElementId;
|
|
313
|
+
readonly type: 'Strong';
|
|
314
|
+
readonly plugin: 'Basic';
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
interface SuperscriptElement
|
|
318
|
+
extends WebflowElement,
|
|
319
|
+
Configurable,
|
|
320
|
+
CustomAttributes,
|
|
321
|
+
DomId,
|
|
322
|
+
Styles,
|
|
323
|
+
Children,
|
|
324
|
+
TextContent {
|
|
325
|
+
readonly id: ElementId;
|
|
326
|
+
readonly type: 'Superscript';
|
|
327
|
+
readonly plugin: 'Basic';
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
interface SubscriptElement
|
|
331
|
+
extends WebflowElement,
|
|
332
|
+
Configurable,
|
|
333
|
+
CustomAttributes,
|
|
334
|
+
DomId,
|
|
335
|
+
Styles,
|
|
336
|
+
Children,
|
|
337
|
+
TextContent {
|
|
338
|
+
readonly id: ElementId;
|
|
339
|
+
readonly type: 'Subscript';
|
|
340
|
+
readonly plugin: 'Basic';
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
interface SearchFormElement
|
|
344
|
+
extends WebflowElement,
|
|
345
|
+
Configurable,
|
|
346
|
+
CustomAttributes,
|
|
347
|
+
NoDomId,
|
|
348
|
+
Styles,
|
|
349
|
+
Children,
|
|
350
|
+
NoTextContent {
|
|
351
|
+
readonly id: ElementId;
|
|
352
|
+
readonly type: 'SearchForm';
|
|
353
|
+
readonly plugin: 'Search';
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
interface SearchInputElement
|
|
357
|
+
extends WebflowElement,
|
|
358
|
+
Configurable,
|
|
359
|
+
CustomAttributes,
|
|
360
|
+
NoDomId,
|
|
361
|
+
Styles,
|
|
362
|
+
NoChildren,
|
|
363
|
+
NoTextContent {
|
|
364
|
+
readonly id: ElementId;
|
|
365
|
+
readonly type: 'SearchInput';
|
|
366
|
+
readonly plugin: 'Search';
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
interface SearchButtonElement
|
|
370
|
+
extends WebflowElement,
|
|
371
|
+
Configurable,
|
|
372
|
+
CustomAttributes,
|
|
373
|
+
NoDomId,
|
|
374
|
+
Styles,
|
|
375
|
+
NoChildren,
|
|
376
|
+
NoTextContent {
|
|
377
|
+
readonly id: ElementId;
|
|
378
|
+
readonly type: 'SearchButton';
|
|
379
|
+
readonly plugin: 'Search';
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
interface SearchResultEmptyElement
|
|
383
|
+
extends WebflowElement,
|
|
384
|
+
Configurable,
|
|
385
|
+
CustomAttributes,
|
|
386
|
+
DomId,
|
|
387
|
+
Styles,
|
|
388
|
+
Children,
|
|
389
|
+
NoTextContent {
|
|
390
|
+
readonly id: ElementId;
|
|
391
|
+
readonly type: 'SearchResultEmpty';
|
|
392
|
+
readonly plugin: 'Search';
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
interface SearchResultWrapperElement
|
|
396
|
+
extends WebflowElement,
|
|
397
|
+
Configurable,
|
|
398
|
+
CustomAttributes,
|
|
399
|
+
DomId,
|
|
400
|
+
Styles,
|
|
401
|
+
Children,
|
|
402
|
+
NoTextContent {
|
|
403
|
+
readonly id: ElementId;
|
|
404
|
+
readonly type: 'SearchResultWrapper';
|
|
405
|
+
readonly plugin: 'Search';
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
interface SearchResultListElement
|
|
409
|
+
extends WebflowElement,
|
|
410
|
+
Configurable,
|
|
411
|
+
CustomAttributes,
|
|
412
|
+
DomId,
|
|
413
|
+
Styles,
|
|
414
|
+
Children,
|
|
415
|
+
NoTextContent {
|
|
416
|
+
readonly id: ElementId;
|
|
417
|
+
readonly type: 'SearchResultList';
|
|
418
|
+
readonly plugin: 'Search';
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
interface SearchResultItemElement
|
|
422
|
+
extends WebflowElement,
|
|
423
|
+
Configurable,
|
|
424
|
+
CustomAttributes,
|
|
425
|
+
DomId,
|
|
426
|
+
Styles,
|
|
427
|
+
Children,
|
|
428
|
+
NoTextContent {
|
|
429
|
+
readonly id: ElementId;
|
|
430
|
+
readonly type: 'SearchResultItem';
|
|
431
|
+
readonly plugin: 'Search';
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
interface BackgroundVideoWrapperElement
|
|
435
|
+
extends WebflowElement,
|
|
436
|
+
Configurable,
|
|
437
|
+
CustomAttributes,
|
|
438
|
+
NoDomId,
|
|
439
|
+
Styles,
|
|
440
|
+
Children,
|
|
441
|
+
NoTextContent {
|
|
442
|
+
readonly id: ElementId;
|
|
443
|
+
readonly type: 'BackgroundVideoWrapper';
|
|
444
|
+
readonly plugin: 'BackgroundVideo';
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
interface BackgroundVideoPlayPauseButtonElement
|
|
448
|
+
extends WebflowElement,
|
|
449
|
+
Configurable,
|
|
450
|
+
CustomAttributes,
|
|
451
|
+
NoDomId,
|
|
452
|
+
Styles,
|
|
453
|
+
Children,
|
|
454
|
+
NoTextContent {
|
|
455
|
+
readonly id: ElementId;
|
|
456
|
+
readonly type: 'BackgroundVideoPlayPauseButton';
|
|
457
|
+
readonly plugin: 'BackgroundVideo';
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
interface BackgroundVideoPlayPauseButtonPlayingElement
|
|
461
|
+
extends WebflowElement,
|
|
462
|
+
Configurable,
|
|
463
|
+
CustomAttributes,
|
|
464
|
+
DomId,
|
|
465
|
+
Styles,
|
|
466
|
+
Children,
|
|
467
|
+
NoTextContent {
|
|
468
|
+
readonly id: ElementId;
|
|
469
|
+
readonly type: 'BackgroundVideoPlayPauseButtonPlaying';
|
|
470
|
+
readonly plugin: 'BackgroundVideo';
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
interface BackgroundVideoPlayPauseButtonPausedElement
|
|
474
|
+
extends WebflowElement,
|
|
475
|
+
Configurable,
|
|
476
|
+
CustomAttributes,
|
|
477
|
+
DomId,
|
|
478
|
+
Styles,
|
|
479
|
+
Children,
|
|
480
|
+
NoTextContent {
|
|
481
|
+
readonly id: ElementId;
|
|
482
|
+
readonly type: 'BackgroundVideoPlayPauseButtonPaused';
|
|
483
|
+
readonly plugin: 'BackgroundVideo';
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
interface BodyElement
|
|
487
|
+
extends WebflowElement,
|
|
488
|
+
Configurable,
|
|
489
|
+
CustomAttributes,
|
|
490
|
+
NoDomId,
|
|
491
|
+
NoStyles,
|
|
492
|
+
Children,
|
|
493
|
+
NoTextContent {
|
|
494
|
+
readonly id: ElementId;
|
|
495
|
+
readonly type: 'Body';
|
|
496
|
+
readonly plugin: 'Body';
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
interface CommerceAddToCartFormElement
|
|
500
|
+
extends WebflowElement,
|
|
501
|
+
Configurable,
|
|
502
|
+
CustomAttributes,
|
|
503
|
+
DomId,
|
|
504
|
+
Styles,
|
|
505
|
+
Children,
|
|
506
|
+
NoTextContent {
|
|
507
|
+
readonly id: ElementId;
|
|
508
|
+
readonly type: 'CommerceAddToCartForm';
|
|
509
|
+
readonly plugin: 'Commerce';
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
interface CommerceAddToCartButtonElement
|
|
513
|
+
extends WebflowElement,
|
|
514
|
+
Configurable,
|
|
515
|
+
CustomAttributes,
|
|
516
|
+
DomId,
|
|
517
|
+
Styles,
|
|
518
|
+
NoChildren,
|
|
519
|
+
NoTextContent {
|
|
520
|
+
readonly id: ElementId;
|
|
521
|
+
readonly type: 'CommerceAddToCartButton';
|
|
522
|
+
readonly plugin: 'Commerce';
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
interface CommerceAddToCartWrapperElement
|
|
526
|
+
extends WebflowElement,
|
|
527
|
+
Configurable,
|
|
528
|
+
CustomAttributes,
|
|
529
|
+
DomId,
|
|
530
|
+
Styles,
|
|
531
|
+
Children,
|
|
532
|
+
NoTextContent {
|
|
533
|
+
readonly id: ElementId;
|
|
534
|
+
readonly type: 'CommerceAddToCartWrapper';
|
|
535
|
+
readonly plugin: 'Commerce';
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
interface CommerceAddToCartQuantityInputElement
|
|
539
|
+
extends WebflowElement,
|
|
540
|
+
Configurable,
|
|
541
|
+
CustomAttributes,
|
|
542
|
+
NoDomId,
|
|
543
|
+
Styles,
|
|
544
|
+
NoChildren,
|
|
545
|
+
NoTextContent {
|
|
546
|
+
readonly id: ElementId;
|
|
547
|
+
readonly type: 'CommerceAddToCartQuantityInput';
|
|
548
|
+
readonly plugin: 'Commerce';
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
interface CommerceAddToCartErrorElement
|
|
552
|
+
extends WebflowElement,
|
|
553
|
+
Configurable,
|
|
554
|
+
CustomAttributes,
|
|
555
|
+
DomId,
|
|
556
|
+
Styles,
|
|
557
|
+
Children,
|
|
558
|
+
NoTextContent {
|
|
559
|
+
readonly id: ElementId;
|
|
560
|
+
readonly type: 'CommerceAddToCartError';
|
|
561
|
+
readonly plugin: 'Commerce';
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
interface CommerceAddToCartOutOfStockElement
|
|
565
|
+
extends WebflowElement,
|
|
566
|
+
Configurable,
|
|
567
|
+
CustomAttributes,
|
|
568
|
+
DomId,
|
|
569
|
+
Styles,
|
|
570
|
+
Children,
|
|
571
|
+
NoTextContent {
|
|
572
|
+
readonly id: ElementId;
|
|
573
|
+
readonly type: 'CommerceAddToCartOutOfStock';
|
|
574
|
+
readonly plugin: 'Commerce';
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
interface CommerceAddToCartOptionListElement
|
|
578
|
+
extends WebflowElement,
|
|
579
|
+
Configurable,
|
|
580
|
+
CustomAttributes,
|
|
581
|
+
DomId,
|
|
582
|
+
Styles,
|
|
583
|
+
Children,
|
|
584
|
+
NoTextContent {
|
|
585
|
+
readonly id: ElementId;
|
|
586
|
+
readonly type: 'CommerceAddToCartOptionList';
|
|
587
|
+
readonly plugin: 'Commerce';
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
interface CommerceAddToCartOptionListWithSelectorTypesElement
|
|
591
|
+
extends WebflowElement,
|
|
592
|
+
Configurable,
|
|
593
|
+
CustomAttributes,
|
|
594
|
+
DomId,
|
|
595
|
+
Styles,
|
|
596
|
+
Children,
|
|
597
|
+
NoTextContent {
|
|
598
|
+
readonly id: ElementId;
|
|
599
|
+
readonly type: 'CommerceAddToCartOptionListWithSelectorTypes';
|
|
600
|
+
readonly plugin: 'Commerce';
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
interface CommerceAddToCartOptionElement
|
|
604
|
+
extends WebflowElement,
|
|
605
|
+
Configurable,
|
|
606
|
+
CustomAttributes,
|
|
607
|
+
DomId,
|
|
608
|
+
Styles,
|
|
609
|
+
Children,
|
|
610
|
+
NoTextContent {
|
|
611
|
+
readonly id: ElementId;
|
|
612
|
+
readonly type: 'CommerceAddToCartOption';
|
|
613
|
+
readonly plugin: 'Commerce';
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
interface CommerceAddToCartOptionLabelElement
|
|
617
|
+
extends WebflowElement,
|
|
618
|
+
Configurable,
|
|
619
|
+
CustomAttributes,
|
|
620
|
+
DomId,
|
|
621
|
+
Styles,
|
|
622
|
+
Children,
|
|
623
|
+
NoTextContent {
|
|
624
|
+
readonly id: ElementId;
|
|
625
|
+
readonly type: 'CommerceAddToCartOptionLabel';
|
|
626
|
+
readonly plugin: 'Commerce';
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
interface CommerceAddToCartOptionSelectElement
|
|
630
|
+
extends WebflowElement,
|
|
631
|
+
Configurable,
|
|
632
|
+
CustomAttributes,
|
|
633
|
+
DomId,
|
|
634
|
+
Styles,
|
|
635
|
+
NoChildren,
|
|
636
|
+
NoTextContent {
|
|
637
|
+
readonly id: ElementId;
|
|
638
|
+
readonly type: 'CommerceAddToCartOptionSelect';
|
|
639
|
+
readonly plugin: 'Commerce';
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
interface CommerceAddToCartOptionPillGroupElement
|
|
643
|
+
extends WebflowElement,
|
|
644
|
+
Configurable,
|
|
645
|
+
CustomAttributes,
|
|
646
|
+
DomId,
|
|
647
|
+
Styles,
|
|
648
|
+
Children,
|
|
649
|
+
NoTextContent {
|
|
650
|
+
readonly id: ElementId;
|
|
651
|
+
readonly type: 'CommerceAddToCartOptionPillGroup';
|
|
652
|
+
readonly plugin: 'Commerce';
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
interface CommerceAddToCartOptionPillElement
|
|
656
|
+
extends WebflowElement,
|
|
657
|
+
Configurable,
|
|
658
|
+
CustomAttributes,
|
|
659
|
+
DomId,
|
|
660
|
+
Styles,
|
|
661
|
+
Children,
|
|
662
|
+
NoTextContent {
|
|
663
|
+
readonly id: ElementId;
|
|
664
|
+
readonly type: 'CommerceAddToCartOptionPill';
|
|
665
|
+
readonly plugin: 'Commerce';
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
interface CommerceBuyNowButtonElement
|
|
669
|
+
extends WebflowElement,
|
|
670
|
+
Configurable,
|
|
671
|
+
CustomAttributes,
|
|
672
|
+
DomId,
|
|
673
|
+
Styles,
|
|
674
|
+
NoChildren,
|
|
675
|
+
TextContent {
|
|
676
|
+
readonly id: ElementId;
|
|
677
|
+
readonly type: 'CommerceBuyNowButton';
|
|
678
|
+
readonly plugin: 'Commerce';
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
interface CommerceCartWrapperElement
|
|
682
|
+
extends WebflowElement,
|
|
683
|
+
Configurable,
|
|
684
|
+
CustomAttributes,
|
|
685
|
+
NoDomId,
|
|
686
|
+
Styles,
|
|
687
|
+
Children,
|
|
688
|
+
NoTextContent {
|
|
689
|
+
readonly id: ElementId;
|
|
690
|
+
readonly type: 'CommerceCartWrapper';
|
|
691
|
+
readonly plugin: 'Commerce';
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
interface CommerceCartOpenLinkElement
|
|
695
|
+
extends WebflowElement,
|
|
696
|
+
Configurable,
|
|
697
|
+
CustomAttributes,
|
|
698
|
+
DomId,
|
|
699
|
+
Styles,
|
|
700
|
+
Children,
|
|
701
|
+
TextContent {
|
|
702
|
+
readonly id: ElementId;
|
|
703
|
+
readonly type: 'CommerceCartOpenLink';
|
|
704
|
+
readonly plugin: 'Commerce';
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
interface CommerceCartOpenLinkCountElement
|
|
708
|
+
extends WebflowElement,
|
|
709
|
+
Configurable,
|
|
710
|
+
CustomAttributes,
|
|
711
|
+
DomId,
|
|
712
|
+
Styles,
|
|
713
|
+
NoChildren,
|
|
714
|
+
NoTextContent {
|
|
715
|
+
readonly id: ElementId;
|
|
716
|
+
readonly type: 'CommerceCartOpenLinkCount';
|
|
717
|
+
readonly plugin: 'Commerce';
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
interface CommerceCartOpenLinkIconElement
|
|
721
|
+
extends WebflowElement,
|
|
722
|
+
Configurable,
|
|
723
|
+
CustomAttributes,
|
|
724
|
+
DomId,
|
|
725
|
+
Styles,
|
|
726
|
+
NoChildren,
|
|
727
|
+
NoTextContent {
|
|
728
|
+
readonly id: ElementId;
|
|
729
|
+
readonly type: 'CommerceCartOpenLinkIcon';
|
|
730
|
+
readonly plugin: 'Commerce';
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
interface CommerceCartContainerWrapperElement
|
|
734
|
+
extends WebflowElement,
|
|
735
|
+
Configurable,
|
|
736
|
+
CustomAttributes,
|
|
737
|
+
DomId,
|
|
738
|
+
Styles,
|
|
739
|
+
Children,
|
|
740
|
+
NoTextContent {
|
|
741
|
+
readonly id: ElementId;
|
|
742
|
+
readonly type: 'CommerceCartContainerWrapper';
|
|
743
|
+
readonly plugin: 'Commerce';
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
interface CommerceCartContainerElement
|
|
747
|
+
extends WebflowElement,
|
|
748
|
+
Configurable,
|
|
749
|
+
CustomAttributes,
|
|
750
|
+
DomId,
|
|
751
|
+
Styles,
|
|
752
|
+
Children,
|
|
753
|
+
NoTextContent {
|
|
754
|
+
readonly id: ElementId;
|
|
755
|
+
readonly type: 'CommerceCartContainer';
|
|
756
|
+
readonly plugin: 'Commerce';
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
interface CommerceCartHeaderElement
|
|
760
|
+
extends WebflowElement,
|
|
761
|
+
Configurable,
|
|
762
|
+
CustomAttributes,
|
|
763
|
+
DomId,
|
|
764
|
+
Styles,
|
|
765
|
+
Children,
|
|
766
|
+
NoTextContent {
|
|
767
|
+
readonly id: ElementId;
|
|
768
|
+
readonly type: 'CommerceCartHeader';
|
|
769
|
+
readonly plugin: 'Commerce';
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
interface CommerceCartHeadingElement
|
|
773
|
+
extends WebflowElement,
|
|
774
|
+
Configurable,
|
|
775
|
+
CustomAttributes,
|
|
776
|
+
DomId,
|
|
777
|
+
Styles,
|
|
778
|
+
Children,
|
|
779
|
+
NoTextContent {
|
|
780
|
+
readonly id: ElementId;
|
|
781
|
+
readonly type: 'CommerceCartHeading';
|
|
782
|
+
readonly plugin: 'Commerce';
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
interface CommerceCartFormWrapperElement
|
|
786
|
+
extends WebflowElement,
|
|
787
|
+
Configurable,
|
|
788
|
+
CustomAttributes,
|
|
789
|
+
DomId,
|
|
790
|
+
Styles,
|
|
791
|
+
Children,
|
|
792
|
+
NoTextContent {
|
|
793
|
+
readonly id: ElementId;
|
|
794
|
+
readonly type: 'CommerceCartFormWrapper';
|
|
795
|
+
readonly plugin: 'Commerce';
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
interface CommerceCartFormElement
|
|
799
|
+
extends WebflowElement,
|
|
800
|
+
Configurable,
|
|
801
|
+
CustomAttributes,
|
|
802
|
+
DomId,
|
|
803
|
+
Styles,
|
|
804
|
+
Children,
|
|
805
|
+
NoTextContent {
|
|
806
|
+
readonly id: ElementId;
|
|
807
|
+
readonly type: 'CommerceCartForm';
|
|
808
|
+
readonly plugin: 'Commerce';
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
interface CommerceCartEmptyStateElement
|
|
812
|
+
extends WebflowElement,
|
|
813
|
+
Configurable,
|
|
814
|
+
CustomAttributes,
|
|
815
|
+
DomId,
|
|
816
|
+
Styles,
|
|
817
|
+
Children,
|
|
818
|
+
NoTextContent {
|
|
819
|
+
readonly id: ElementId;
|
|
820
|
+
readonly type: 'CommerceCartEmptyState';
|
|
821
|
+
readonly plugin: 'Commerce';
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
interface CommerceCartErrorStateElement
|
|
825
|
+
extends WebflowElement,
|
|
826
|
+
Configurable,
|
|
827
|
+
CustomAttributes,
|
|
828
|
+
DomId,
|
|
829
|
+
Styles,
|
|
830
|
+
Children,
|
|
831
|
+
NoTextContent {
|
|
832
|
+
readonly id: ElementId;
|
|
833
|
+
readonly type: 'CommerceCartErrorState';
|
|
834
|
+
readonly plugin: 'Commerce';
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
interface CommerceCartListElement
|
|
838
|
+
extends WebflowElement,
|
|
839
|
+
Configurable,
|
|
840
|
+
CustomAttributes,
|
|
841
|
+
DomId,
|
|
842
|
+
Styles,
|
|
843
|
+
Children,
|
|
844
|
+
NoTextContent {
|
|
845
|
+
readonly id: ElementId;
|
|
846
|
+
readonly type: 'CommerceCartList';
|
|
847
|
+
readonly plugin: 'Commerce';
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
interface CommerceCartFooterElement
|
|
851
|
+
extends WebflowElement,
|
|
852
|
+
Configurable,
|
|
853
|
+
CustomAttributes,
|
|
854
|
+
DomId,
|
|
855
|
+
Styles,
|
|
856
|
+
Children,
|
|
857
|
+
NoTextContent {
|
|
858
|
+
readonly id: ElementId;
|
|
859
|
+
readonly type: 'CommerceCartFooter';
|
|
860
|
+
readonly plugin: 'Commerce';
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
interface CommerceCartLineItemElement
|
|
864
|
+
extends WebflowElement,
|
|
865
|
+
Configurable,
|
|
866
|
+
CustomAttributes,
|
|
867
|
+
DomId,
|
|
868
|
+
Styles,
|
|
869
|
+
Children,
|
|
870
|
+
NoTextContent {
|
|
871
|
+
readonly id: ElementId;
|
|
872
|
+
readonly type: 'CommerceCartLineItem';
|
|
873
|
+
readonly plugin: 'Commerce';
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
interface CommerceCartCheckoutButtonElement
|
|
877
|
+
extends WebflowElement,
|
|
878
|
+
Configurable,
|
|
879
|
+
CustomAttributes,
|
|
880
|
+
NoDomId,
|
|
881
|
+
Styles,
|
|
882
|
+
NoChildren,
|
|
883
|
+
TextContent {
|
|
884
|
+
readonly id: ElementId;
|
|
885
|
+
readonly type: 'CommerceCartCheckoutButton';
|
|
886
|
+
readonly plugin: 'Commerce';
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
interface CommerceCartItemElement
|
|
890
|
+
extends WebflowElement,
|
|
891
|
+
Configurable,
|
|
892
|
+
CustomAttributes,
|
|
893
|
+
DomId,
|
|
894
|
+
Styles,
|
|
895
|
+
Children,
|
|
896
|
+
NoTextContent {
|
|
897
|
+
readonly id: ElementId;
|
|
898
|
+
readonly type: 'CommerceCartItem';
|
|
899
|
+
readonly plugin: 'Commerce';
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
interface CommerceCartItemImageElement
|
|
903
|
+
extends WebflowElement,
|
|
904
|
+
Configurable,
|
|
905
|
+
CustomAttributes,
|
|
906
|
+
DomId,
|
|
907
|
+
Styles,
|
|
908
|
+
NoChildren,
|
|
909
|
+
NoTextContent {
|
|
910
|
+
readonly id: ElementId;
|
|
911
|
+
readonly type: 'CommerceCartItemImage';
|
|
912
|
+
readonly plugin: 'Commerce';
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
interface CommerceCartItemInfoElement
|
|
916
|
+
extends WebflowElement,
|
|
917
|
+
Configurable,
|
|
918
|
+
CustomAttributes,
|
|
919
|
+
DomId,
|
|
920
|
+
Styles,
|
|
921
|
+
Children,
|
|
922
|
+
NoTextContent {
|
|
923
|
+
readonly id: ElementId;
|
|
924
|
+
readonly type: 'CommerceCartItemInfo';
|
|
925
|
+
readonly plugin: 'Commerce';
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
interface CommerceCartProductNameElement
|
|
929
|
+
extends WebflowElement,
|
|
930
|
+
Configurable,
|
|
931
|
+
CustomAttributes,
|
|
932
|
+
DomId,
|
|
933
|
+
Styles,
|
|
934
|
+
Children,
|
|
935
|
+
NoTextContent {
|
|
936
|
+
readonly id: ElementId;
|
|
937
|
+
readonly type: 'CommerceCartProductName';
|
|
938
|
+
readonly plugin: 'Commerce';
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
interface CommerceCartProductPriceElement
|
|
942
|
+
extends WebflowElement,
|
|
943
|
+
Configurable,
|
|
944
|
+
CustomAttributes,
|
|
945
|
+
DomId,
|
|
946
|
+
Styles,
|
|
947
|
+
Children,
|
|
948
|
+
NoTextContent {
|
|
949
|
+
readonly id: ElementId;
|
|
950
|
+
readonly type: 'CommerceCartProductPrice';
|
|
951
|
+
readonly plugin: 'Commerce';
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
interface CommerceCartQuantityElement
|
|
955
|
+
extends WebflowElement,
|
|
956
|
+
Configurable,
|
|
957
|
+
CustomAttributes,
|
|
958
|
+
NoDomId,
|
|
959
|
+
Styles,
|
|
960
|
+
NoChildren,
|
|
961
|
+
NoTextContent {
|
|
962
|
+
readonly id: ElementId;
|
|
963
|
+
readonly type: 'CommerceCartQuantity';
|
|
964
|
+
readonly plugin: 'Commerce';
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
interface CommerceCartCloseLinkElement
|
|
968
|
+
extends WebflowElement,
|
|
969
|
+
Configurable,
|
|
970
|
+
CustomAttributes,
|
|
971
|
+
DomId,
|
|
972
|
+
Styles,
|
|
973
|
+
Children,
|
|
974
|
+
TextContent {
|
|
975
|
+
readonly id: ElementId;
|
|
976
|
+
readonly type: 'CommerceCartCloseLink';
|
|
977
|
+
readonly plugin: 'Commerce';
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
interface CommerceCartCloseLinkIconElement
|
|
981
|
+
extends WebflowElement,
|
|
982
|
+
Configurable,
|
|
983
|
+
CustomAttributes,
|
|
984
|
+
DomId,
|
|
985
|
+
Styles,
|
|
986
|
+
NoChildren,
|
|
987
|
+
NoTextContent {
|
|
988
|
+
readonly id: ElementId;
|
|
989
|
+
readonly type: 'CommerceCartCloseLinkIcon';
|
|
990
|
+
readonly plugin: 'Commerce';
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
interface CommerceCartRemoveLinkElement
|
|
994
|
+
extends WebflowElement,
|
|
995
|
+
Configurable,
|
|
996
|
+
CustomAttributes,
|
|
997
|
+
DomId,
|
|
998
|
+
Styles,
|
|
999
|
+
Children,
|
|
1000
|
+
TextContent {
|
|
1001
|
+
readonly id: ElementId;
|
|
1002
|
+
readonly type: 'CommerceCartRemoveLink';
|
|
1003
|
+
readonly plugin: 'Commerce';
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
interface CommerceCartOrderValueElement
|
|
1007
|
+
extends WebflowElement,
|
|
1008
|
+
Configurable,
|
|
1009
|
+
CustomAttributes,
|
|
1010
|
+
DomId,
|
|
1011
|
+
Styles,
|
|
1012
|
+
Children,
|
|
1013
|
+
NoTextContent {
|
|
1014
|
+
readonly id: ElementId;
|
|
1015
|
+
readonly type: 'CommerceCartOrderValue';
|
|
1016
|
+
readonly plugin: 'Commerce';
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
interface CommerceCartCheckoutActionsElement
|
|
1020
|
+
extends WebflowElement,
|
|
1021
|
+
Configurable,
|
|
1022
|
+
CustomAttributes,
|
|
1023
|
+
DomId,
|
|
1024
|
+
Styles,
|
|
1025
|
+
Children,
|
|
1026
|
+
NoTextContent {
|
|
1027
|
+
readonly id: ElementId;
|
|
1028
|
+
readonly type: 'CommerceCartCheckoutActions';
|
|
1029
|
+
readonly plugin: 'Commerce';
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
interface CommerceCartOptionListElement
|
|
1033
|
+
extends WebflowElement,
|
|
1034
|
+
Configurable,
|
|
1035
|
+
CustomAttributes,
|
|
1036
|
+
DomId,
|
|
1037
|
+
Styles,
|
|
1038
|
+
Children,
|
|
1039
|
+
NoTextContent {
|
|
1040
|
+
readonly id: ElementId;
|
|
1041
|
+
readonly type: 'CommerceCartOptionList';
|
|
1042
|
+
readonly plugin: 'Commerce';
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
interface CommerceCartOptionListItemElement
|
|
1046
|
+
extends WebflowElement,
|
|
1047
|
+
Configurable,
|
|
1048
|
+
CustomAttributes,
|
|
1049
|
+
DomId,
|
|
1050
|
+
Styles,
|
|
1051
|
+
Children,
|
|
1052
|
+
NoTextContent {
|
|
1053
|
+
readonly id: ElementId;
|
|
1054
|
+
readonly type: 'CommerceCartOptionListItem';
|
|
1055
|
+
readonly plugin: 'Commerce';
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
interface CommerceCartOptionListItemLabelElement
|
|
1059
|
+
extends WebflowElement,
|
|
1060
|
+
Configurable,
|
|
1061
|
+
NoCustomAttributes,
|
|
1062
|
+
NoDomId,
|
|
1063
|
+
NoStyles,
|
|
1064
|
+
NoChildren,
|
|
1065
|
+
TextContent {
|
|
1066
|
+
readonly id: ElementId;
|
|
1067
|
+
readonly type: 'CommerceCartOptionListItemLabel';
|
|
1068
|
+
readonly plugin: 'Commerce';
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
interface CommerceCartOptionListItemValueElement
|
|
1072
|
+
extends WebflowElement,
|
|
1073
|
+
Configurable,
|
|
1074
|
+
NoCustomAttributes,
|
|
1075
|
+
NoDomId,
|
|
1076
|
+
NoStyles,
|
|
1077
|
+
NoChildren,
|
|
1078
|
+
TextContent {
|
|
1079
|
+
readonly id: ElementId;
|
|
1080
|
+
readonly type: 'CommerceCartOptionListItemValue';
|
|
1081
|
+
readonly plugin: 'Commerce';
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
interface CommerceCartQuickCheckoutActionsElement
|
|
1085
|
+
extends WebflowElement,
|
|
1086
|
+
Configurable,
|
|
1087
|
+
CustomAttributes,
|
|
1088
|
+
NoDomId,
|
|
1089
|
+
Styles,
|
|
1090
|
+
Children,
|
|
1091
|
+
NoTextContent {
|
|
1092
|
+
readonly id: ElementId;
|
|
1093
|
+
readonly type: 'CommerceCartQuickCheckoutActions';
|
|
1094
|
+
readonly plugin: 'Commerce';
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
interface CommerceCartQuickCheckoutButtonElement
|
|
1098
|
+
extends WebflowElement,
|
|
1099
|
+
Configurable,
|
|
1100
|
+
CustomAttributes,
|
|
1101
|
+
NoDomId,
|
|
1102
|
+
Styles,
|
|
1103
|
+
Children,
|
|
1104
|
+
TextContent {
|
|
1105
|
+
readonly id: ElementId;
|
|
1106
|
+
readonly type: 'CommerceCartQuickCheckoutButton';
|
|
1107
|
+
readonly plugin: 'Commerce';
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
interface CommerceCartApplePayButtonElement
|
|
1111
|
+
extends WebflowElement,
|
|
1112
|
+
Configurable,
|
|
1113
|
+
CustomAttributes,
|
|
1114
|
+
NoDomId,
|
|
1115
|
+
Styles,
|
|
1116
|
+
Children,
|
|
1117
|
+
TextContent {
|
|
1118
|
+
readonly id: ElementId;
|
|
1119
|
+
readonly type: 'CommerceCartApplePayButton';
|
|
1120
|
+
readonly plugin: 'Commerce';
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
interface CommerceCartApplePayIconElement
|
|
1124
|
+
extends WebflowElement,
|
|
1125
|
+
Configurable,
|
|
1126
|
+
CustomAttributes,
|
|
1127
|
+
DomId,
|
|
1128
|
+
Styles,
|
|
1129
|
+
NoChildren,
|
|
1130
|
+
NoTextContent {
|
|
1131
|
+
readonly id: ElementId;
|
|
1132
|
+
readonly type: 'CommerceCartApplePayIcon';
|
|
1133
|
+
readonly plugin: 'Commerce';
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
interface CommerceQuickCheckoutGoogleIconElement
|
|
1137
|
+
extends WebflowElement,
|
|
1138
|
+
Configurable,
|
|
1139
|
+
CustomAttributes,
|
|
1140
|
+
DomId,
|
|
1141
|
+
Styles,
|
|
1142
|
+
NoChildren,
|
|
1143
|
+
NoTextContent {
|
|
1144
|
+
readonly id: ElementId;
|
|
1145
|
+
readonly type: 'CommerceQuickCheckoutGoogleIcon';
|
|
1146
|
+
readonly plugin: 'Commerce';
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
interface CommerceQuickCheckoutMicrosoftIconElement
|
|
1150
|
+
extends WebflowElement,
|
|
1151
|
+
Configurable,
|
|
1152
|
+
CustomAttributes,
|
|
1153
|
+
DomId,
|
|
1154
|
+
Styles,
|
|
1155
|
+
NoChildren,
|
|
1156
|
+
NoTextContent {
|
|
1157
|
+
readonly id: ElementId;
|
|
1158
|
+
readonly type: 'CommerceQuickCheckoutMicrosoftIcon';
|
|
1159
|
+
readonly plugin: 'Commerce';
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
interface CommercePayPalCheckoutButtonElement
|
|
1163
|
+
extends WebflowElement,
|
|
1164
|
+
Configurable,
|
|
1165
|
+
CustomAttributes,
|
|
1166
|
+
DomId,
|
|
1167
|
+
Styles,
|
|
1168
|
+
NoChildren,
|
|
1169
|
+
NoTextContent {
|
|
1170
|
+
readonly id: ElementId;
|
|
1171
|
+
readonly type: 'CommercePayPalCheckoutButton';
|
|
1172
|
+
readonly plugin: 'Commerce';
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
interface CommerceCheckoutBlockContentElement
|
|
1176
|
+
extends WebflowElement,
|
|
1177
|
+
Configurable,
|
|
1178
|
+
CustomAttributes,
|
|
1179
|
+
DomId,
|
|
1180
|
+
Styles,
|
|
1181
|
+
Children,
|
|
1182
|
+
NoTextContent {
|
|
1183
|
+
readonly id: ElementId;
|
|
1184
|
+
readonly type: 'CommerceCheckoutBlockContent';
|
|
1185
|
+
readonly plugin: 'Commerce';
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
interface CommerceCheckoutBlockHeaderElement
|
|
1189
|
+
extends WebflowElement,
|
|
1190
|
+
Configurable,
|
|
1191
|
+
CustomAttributes,
|
|
1192
|
+
DomId,
|
|
1193
|
+
Styles,
|
|
1194
|
+
Children,
|
|
1195
|
+
NoTextContent {
|
|
1196
|
+
readonly id: ElementId;
|
|
1197
|
+
readonly type: 'CommerceCheckoutBlockHeader';
|
|
1198
|
+
readonly plugin: 'Commerce';
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
interface CommerceCheckoutColumnElement
|
|
1202
|
+
extends WebflowElement,
|
|
1203
|
+
Configurable,
|
|
1204
|
+
CustomAttributes,
|
|
1205
|
+
DomId,
|
|
1206
|
+
Styles,
|
|
1207
|
+
Children,
|
|
1208
|
+
NoTextContent {
|
|
1209
|
+
readonly id: ElementId;
|
|
1210
|
+
readonly type: 'CommerceCheckoutColumn';
|
|
1211
|
+
readonly plugin: 'Commerce';
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
interface CommerceCheckoutFormContainerElement
|
|
1215
|
+
extends WebflowElement,
|
|
1216
|
+
Configurable,
|
|
1217
|
+
CustomAttributes,
|
|
1218
|
+
DomId,
|
|
1219
|
+
Styles,
|
|
1220
|
+
Children,
|
|
1221
|
+
NoTextContent {
|
|
1222
|
+
readonly id: ElementId;
|
|
1223
|
+
readonly type: 'CommerceCheckoutFormContainer';
|
|
1224
|
+
readonly plugin: 'Commerce';
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
interface CommerceCheckoutRowElement
|
|
1228
|
+
extends WebflowElement,
|
|
1229
|
+
Configurable,
|
|
1230
|
+
CustomAttributes,
|
|
1231
|
+
DomId,
|
|
1232
|
+
Styles,
|
|
1233
|
+
Children,
|
|
1234
|
+
NoTextContent {
|
|
1235
|
+
readonly id: ElementId;
|
|
1236
|
+
readonly type: 'CommerceCheckoutRow';
|
|
1237
|
+
readonly plugin: 'Commerce';
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
interface CommerceCheckoutLabelElement
|
|
1241
|
+
extends WebflowElement,
|
|
1242
|
+
Configurable,
|
|
1243
|
+
CustomAttributes,
|
|
1244
|
+
DomId,
|
|
1245
|
+
Styles,
|
|
1246
|
+
Children,
|
|
1247
|
+
TextContent {
|
|
1248
|
+
readonly id: ElementId;
|
|
1249
|
+
readonly type: 'CommerceCheckoutLabel';
|
|
1250
|
+
readonly plugin: 'Commerce';
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1253
|
+
interface CommerceLabelElement
|
|
1254
|
+
extends WebflowElement,
|
|
1255
|
+
Configurable,
|
|
1256
|
+
CustomAttributes,
|
|
1257
|
+
DomId,
|
|
1258
|
+
Styles,
|
|
1259
|
+
Children,
|
|
1260
|
+
TextContent {
|
|
1261
|
+
readonly id: ElementId;
|
|
1262
|
+
readonly type: 'CommerceLabel';
|
|
1263
|
+
readonly plugin: 'Commerce';
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
interface CommerceCheckoutCardExpirationDateElement
|
|
1267
|
+
extends WebflowElement,
|
|
1268
|
+
Configurable,
|
|
1269
|
+
CustomAttributes,
|
|
1270
|
+
DomId,
|
|
1271
|
+
Styles,
|
|
1272
|
+
NoChildren,
|
|
1273
|
+
NoTextContent {
|
|
1274
|
+
readonly id: ElementId;
|
|
1275
|
+
readonly type: 'CommerceCheckoutCardExpirationDate';
|
|
1276
|
+
readonly plugin: 'Commerce';
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
interface CommerceCheckoutCardNumberElement
|
|
1280
|
+
extends WebflowElement,
|
|
1281
|
+
Configurable,
|
|
1282
|
+
CustomAttributes,
|
|
1283
|
+
DomId,
|
|
1284
|
+
Styles,
|
|
1285
|
+
NoChildren,
|
|
1286
|
+
NoTextContent {
|
|
1287
|
+
readonly id: ElementId;
|
|
1288
|
+
readonly type: 'CommerceCheckoutCardNumber';
|
|
1289
|
+
readonly plugin: 'Commerce';
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
interface CommerceCheckoutCardSecurityCodeElement
|
|
1293
|
+
extends WebflowElement,
|
|
1294
|
+
Configurable,
|
|
1295
|
+
CustomAttributes,
|
|
1296
|
+
DomId,
|
|
1297
|
+
Styles,
|
|
1298
|
+
NoChildren,
|
|
1299
|
+
NoTextContent {
|
|
1300
|
+
readonly id: ElementId;
|
|
1301
|
+
readonly type: 'CommerceCheckoutCardSecurityCode';
|
|
1302
|
+
readonly plugin: 'Commerce';
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
interface CommerceCheckoutCustomerInfoWrapperElement
|
|
1306
|
+
extends WebflowElement,
|
|
1307
|
+
Configurable,
|
|
1308
|
+
CustomAttributes,
|
|
1309
|
+
DomId,
|
|
1310
|
+
Styles,
|
|
1311
|
+
Children,
|
|
1312
|
+
NoTextContent {
|
|
1313
|
+
readonly id: ElementId;
|
|
1314
|
+
readonly type: 'CommerceCheckoutCustomerInfoWrapper';
|
|
1315
|
+
readonly plugin: 'Commerce';
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
interface CommerceCheckoutErrorStateElement
|
|
1319
|
+
extends WebflowElement,
|
|
1320
|
+
Configurable,
|
|
1321
|
+
CustomAttributes,
|
|
1322
|
+
DomId,
|
|
1323
|
+
Styles,
|
|
1324
|
+
Children,
|
|
1325
|
+
NoTextContent {
|
|
1326
|
+
readonly id: ElementId;
|
|
1327
|
+
readonly type: 'CommerceCheckoutErrorState';
|
|
1328
|
+
readonly plugin: 'Commerce';
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
interface CommerceCheckoutPaymentInfoWrapperElement
|
|
1332
|
+
extends WebflowElement,
|
|
1333
|
+
Configurable,
|
|
1334
|
+
CustomAttributes,
|
|
1335
|
+
DomId,
|
|
1336
|
+
Styles,
|
|
1337
|
+
Children,
|
|
1338
|
+
NoTextContent {
|
|
1339
|
+
readonly id: ElementId;
|
|
1340
|
+
readonly type: 'CommerceCheckoutPaymentInfoWrapper';
|
|
1341
|
+
readonly plugin: 'Commerce';
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
interface CommerceCheckoutPlaceOrderButtonElement
|
|
1345
|
+
extends WebflowElement,
|
|
1346
|
+
Configurable,
|
|
1347
|
+
CustomAttributes,
|
|
1348
|
+
NoDomId,
|
|
1349
|
+
Styles,
|
|
1350
|
+
NoChildren,
|
|
1351
|
+
TextContent {
|
|
1352
|
+
readonly id: ElementId;
|
|
1353
|
+
readonly type: 'CommerceCheckoutPlaceOrderButton';
|
|
1354
|
+
readonly plugin: 'Commerce';
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
interface CommerceCheckoutEmailInputElement
|
|
1358
|
+
extends WebflowElement,
|
|
1359
|
+
Configurable,
|
|
1360
|
+
CustomAttributes,
|
|
1361
|
+
DomId,
|
|
1362
|
+
Styles,
|
|
1363
|
+
NoChildren,
|
|
1364
|
+
NoTextContent {
|
|
1365
|
+
readonly id: ElementId;
|
|
1366
|
+
readonly type: 'CommerceCheckoutEmailInput';
|
|
1367
|
+
readonly plugin: 'Commerce';
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
interface CommerceCheckoutShippingAddressWrapperElement
|
|
1371
|
+
extends WebflowElement,
|
|
1372
|
+
Configurable,
|
|
1373
|
+
CustomAttributes,
|
|
1374
|
+
DomId,
|
|
1375
|
+
Styles,
|
|
1376
|
+
Children,
|
|
1377
|
+
NoTextContent {
|
|
1378
|
+
readonly id: ElementId;
|
|
1379
|
+
readonly type: 'CommerceCheckoutShippingAddressWrapper';
|
|
1380
|
+
readonly plugin: 'Commerce';
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
interface CommerceCheckoutShippingCountrySelectorElement
|
|
1384
|
+
extends WebflowElement,
|
|
1385
|
+
Configurable,
|
|
1386
|
+
CustomAttributes,
|
|
1387
|
+
DomId,
|
|
1388
|
+
Styles,
|
|
1389
|
+
NoChildren,
|
|
1390
|
+
NoTextContent {
|
|
1391
|
+
readonly id: ElementId;
|
|
1392
|
+
readonly type: 'CommerceCheckoutShippingCountrySelector';
|
|
1393
|
+
readonly plugin: 'Commerce';
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
interface CommerceCheckoutShippingFullNameElement
|
|
1397
|
+
extends WebflowElement,
|
|
1398
|
+
Configurable,
|
|
1399
|
+
CustomAttributes,
|
|
1400
|
+
DomId,
|
|
1401
|
+
Styles,
|
|
1402
|
+
NoChildren,
|
|
1403
|
+
NoTextContent {
|
|
1404
|
+
readonly id: ElementId;
|
|
1405
|
+
readonly type: 'CommerceCheckoutShippingFullName';
|
|
1406
|
+
readonly plugin: 'Commerce';
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
interface CommerceCheckoutShippingStreetAddressElement
|
|
1410
|
+
extends WebflowElement,
|
|
1411
|
+
Configurable,
|
|
1412
|
+
CustomAttributes,
|
|
1413
|
+
DomId,
|
|
1414
|
+
Styles,
|
|
1415
|
+
NoChildren,
|
|
1416
|
+
NoTextContent {
|
|
1417
|
+
readonly id: ElementId;
|
|
1418
|
+
readonly type: 'CommerceCheckoutShippingStreetAddress';
|
|
1419
|
+
readonly plugin: 'Commerce';
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
interface CommerceCheckoutShippingStreetAddressOptionalElement
|
|
1423
|
+
extends WebflowElement,
|
|
1424
|
+
Configurable,
|
|
1425
|
+
CustomAttributes,
|
|
1426
|
+
DomId,
|
|
1427
|
+
Styles,
|
|
1428
|
+
NoChildren,
|
|
1429
|
+
NoTextContent {
|
|
1430
|
+
readonly id: ElementId;
|
|
1431
|
+
readonly type: 'CommerceCheckoutShippingStreetAddressOptional';
|
|
1432
|
+
readonly plugin: 'Commerce';
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
interface CommerceCheckoutShippingCityElement
|
|
1436
|
+
extends WebflowElement,
|
|
1437
|
+
Configurable,
|
|
1438
|
+
CustomAttributes,
|
|
1439
|
+
DomId,
|
|
1440
|
+
Styles,
|
|
1441
|
+
NoChildren,
|
|
1442
|
+
NoTextContent {
|
|
1443
|
+
readonly id: ElementId;
|
|
1444
|
+
readonly type: 'CommerceCheckoutShippingCity';
|
|
1445
|
+
readonly plugin: 'Commerce';
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
interface CommerceCheckoutShippingZipPostalCodeElement
|
|
1449
|
+
extends WebflowElement,
|
|
1450
|
+
Configurable,
|
|
1451
|
+
CustomAttributes,
|
|
1452
|
+
DomId,
|
|
1453
|
+
Styles,
|
|
1454
|
+
NoChildren,
|
|
1455
|
+
NoTextContent {
|
|
1456
|
+
readonly id: ElementId;
|
|
1457
|
+
readonly type: 'CommerceCheckoutShippingZipPostalCode';
|
|
1458
|
+
readonly plugin: 'Commerce';
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
interface CommerceCheckoutShippingStateProvinceElement
|
|
1462
|
+
extends WebflowElement,
|
|
1463
|
+
Configurable,
|
|
1464
|
+
CustomAttributes,
|
|
1465
|
+
DomId,
|
|
1466
|
+
Styles,
|
|
1467
|
+
NoChildren,
|
|
1468
|
+
NoTextContent {
|
|
1469
|
+
readonly id: ElementId;
|
|
1470
|
+
readonly type: 'CommerceCheckoutShippingStateProvince';
|
|
1471
|
+
readonly plugin: 'Commerce';
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
interface CommerceOrderConfirmationElement
|
|
1475
|
+
extends WebflowElement,
|
|
1476
|
+
Configurable,
|
|
1477
|
+
CustomAttributes,
|
|
1478
|
+
DomId,
|
|
1479
|
+
Styles,
|
|
1480
|
+
Children,
|
|
1481
|
+
NoTextContent {
|
|
1482
|
+
readonly id: ElementId;
|
|
1483
|
+
readonly type: 'CommerceOrderConfirmation';
|
|
1484
|
+
readonly plugin: 'Commerce';
|
|
1485
|
+
}
|
|
1486
|
+
|
|
1487
|
+
interface CommerceOrderConfirmationContainerElement
|
|
1488
|
+
extends WebflowElement,
|
|
1489
|
+
Configurable,
|
|
1490
|
+
CustomAttributes,
|
|
1491
|
+
DomId,
|
|
1492
|
+
Styles,
|
|
1493
|
+
Children,
|
|
1494
|
+
NoTextContent {
|
|
1495
|
+
readonly id: ElementId;
|
|
1496
|
+
readonly type: 'CommerceOrderConfirmationContainer';
|
|
1497
|
+
readonly plugin: 'Commerce';
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1500
|
+
interface CommerceOrderConfirmationHeaderWrapperElement
|
|
1501
|
+
extends WebflowElement,
|
|
1502
|
+
Configurable,
|
|
1503
|
+
CustomAttributes,
|
|
1504
|
+
DomId,
|
|
1505
|
+
Styles,
|
|
1506
|
+
Children,
|
|
1507
|
+
NoTextContent {
|
|
1508
|
+
readonly id: ElementId;
|
|
1509
|
+
readonly type: 'CommerceOrderConfirmationHeaderWrapper';
|
|
1510
|
+
readonly plugin: 'Commerce';
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
interface CommerceCheckoutBillingAddressWrapperElement
|
|
1514
|
+
extends WebflowElement,
|
|
1515
|
+
Configurable,
|
|
1516
|
+
CustomAttributes,
|
|
1517
|
+
DomId,
|
|
1518
|
+
Styles,
|
|
1519
|
+
Children,
|
|
1520
|
+
NoTextContent {
|
|
1521
|
+
readonly id: ElementId;
|
|
1522
|
+
readonly type: 'CommerceCheckoutBillingAddressWrapper';
|
|
1523
|
+
readonly plugin: 'Commerce';
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
interface CommerceCheckoutBillingCountrySelectorElement
|
|
1527
|
+
extends WebflowElement,
|
|
1528
|
+
Configurable,
|
|
1529
|
+
CustomAttributes,
|
|
1530
|
+
DomId,
|
|
1531
|
+
Styles,
|
|
1532
|
+
NoChildren,
|
|
1533
|
+
NoTextContent {
|
|
1534
|
+
readonly id: ElementId;
|
|
1535
|
+
readonly type: 'CommerceCheckoutBillingCountrySelector';
|
|
1536
|
+
readonly plugin: 'Commerce';
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
interface CommerceCheckoutBillingFullNameElement
|
|
1540
|
+
extends WebflowElement,
|
|
1541
|
+
Configurable,
|
|
1542
|
+
CustomAttributes,
|
|
1543
|
+
DomId,
|
|
1544
|
+
Styles,
|
|
1545
|
+
NoChildren,
|
|
1546
|
+
NoTextContent {
|
|
1547
|
+
readonly id: ElementId;
|
|
1548
|
+
readonly type: 'CommerceCheckoutBillingFullName';
|
|
1549
|
+
readonly plugin: 'Commerce';
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
interface CommerceCheckoutBillingStreetAddressElement
|
|
1553
|
+
extends WebflowElement,
|
|
1554
|
+
Configurable,
|
|
1555
|
+
CustomAttributes,
|
|
1556
|
+
DomId,
|
|
1557
|
+
Styles,
|
|
1558
|
+
NoChildren,
|
|
1559
|
+
NoTextContent {
|
|
1560
|
+
readonly id: ElementId;
|
|
1561
|
+
readonly type: 'CommerceCheckoutBillingStreetAddress';
|
|
1562
|
+
readonly plugin: 'Commerce';
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
interface CommerceCheckoutBillingStreetAddressOptionalElement
|
|
1566
|
+
extends WebflowElement,
|
|
1567
|
+
Configurable,
|
|
1568
|
+
CustomAttributes,
|
|
1569
|
+
DomId,
|
|
1570
|
+
Styles,
|
|
1571
|
+
NoChildren,
|
|
1572
|
+
NoTextContent {
|
|
1573
|
+
readonly id: ElementId;
|
|
1574
|
+
readonly type: 'CommerceCheckoutBillingStreetAddressOptional';
|
|
1575
|
+
readonly plugin: 'Commerce';
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
interface CommerceCheckoutBillingCityElement
|
|
1579
|
+
extends WebflowElement,
|
|
1580
|
+
Configurable,
|
|
1581
|
+
CustomAttributes,
|
|
1582
|
+
DomId,
|
|
1583
|
+
Styles,
|
|
1584
|
+
NoChildren,
|
|
1585
|
+
NoTextContent {
|
|
1586
|
+
readonly id: ElementId;
|
|
1587
|
+
readonly type: 'CommerceCheckoutBillingCity';
|
|
1588
|
+
readonly plugin: 'Commerce';
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
interface CommerceCheckoutBillingZipPostalCodeElement
|
|
1592
|
+
extends WebflowElement,
|
|
1593
|
+
Configurable,
|
|
1594
|
+
CustomAttributes,
|
|
1595
|
+
DomId,
|
|
1596
|
+
Styles,
|
|
1597
|
+
NoChildren,
|
|
1598
|
+
NoTextContent {
|
|
1599
|
+
readonly id: ElementId;
|
|
1600
|
+
readonly type: 'CommerceCheckoutBillingZipPostalCode';
|
|
1601
|
+
readonly plugin: 'Commerce';
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
interface CommerceCheckoutBillingStateProvinceElement
|
|
1605
|
+
extends WebflowElement,
|
|
1606
|
+
Configurable,
|
|
1607
|
+
CustomAttributes,
|
|
1608
|
+
DomId,
|
|
1609
|
+
Styles,
|
|
1610
|
+
NoChildren,
|
|
1611
|
+
NoTextContent {
|
|
1612
|
+
readonly id: ElementId;
|
|
1613
|
+
readonly type: 'CommerceCheckoutBillingStateProvince';
|
|
1614
|
+
readonly plugin: 'Commerce';
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
interface CommerceCheckoutBillingAddressToggleWrapperElement
|
|
1618
|
+
extends WebflowElement,
|
|
1619
|
+
Configurable,
|
|
1620
|
+
CustomAttributes,
|
|
1621
|
+
DomId,
|
|
1622
|
+
Styles,
|
|
1623
|
+
Children,
|
|
1624
|
+
NoTextContent {
|
|
1625
|
+
readonly id: ElementId;
|
|
1626
|
+
readonly type: 'CommerceCheckoutBillingAddressToggleWrapper';
|
|
1627
|
+
readonly plugin: 'Commerce';
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
interface CommerceCheckoutBillingAddressToggleCheckboxElement
|
|
1631
|
+
extends WebflowElement,
|
|
1632
|
+
Configurable,
|
|
1633
|
+
CustomAttributes,
|
|
1634
|
+
DomId,
|
|
1635
|
+
Styles,
|
|
1636
|
+
NoChildren,
|
|
1637
|
+
NoTextContent {
|
|
1638
|
+
readonly id: ElementId;
|
|
1639
|
+
readonly type: 'CommerceCheckoutBillingAddressToggleCheckbox';
|
|
1640
|
+
readonly plugin: 'Commerce';
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
interface CommerceCheckoutBillingAddressToggleLabelElement
|
|
1644
|
+
extends WebflowElement,
|
|
1645
|
+
Configurable,
|
|
1646
|
+
CustomAttributes,
|
|
1647
|
+
DomId,
|
|
1648
|
+
Styles,
|
|
1649
|
+
Children,
|
|
1650
|
+
TextContent {
|
|
1651
|
+
readonly id: ElementId;
|
|
1652
|
+
readonly type: 'CommerceCheckoutBillingAddressToggleLabel';
|
|
1653
|
+
readonly plugin: 'Commerce';
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
interface CommerceCheckoutOrderItemsWrapperElement
|
|
1657
|
+
extends WebflowElement,
|
|
1658
|
+
Configurable,
|
|
1659
|
+
CustomAttributes,
|
|
1660
|
+
DomId,
|
|
1661
|
+
Styles,
|
|
1662
|
+
Children,
|
|
1663
|
+
NoTextContent {
|
|
1664
|
+
readonly id: ElementId;
|
|
1665
|
+
readonly type: 'CommerceCheckoutOrderItemsWrapper';
|
|
1666
|
+
readonly plugin: 'Commerce';
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
interface CommerceCheckoutOrderItemsListElement
|
|
1670
|
+
extends WebflowElement,
|
|
1671
|
+
Configurable,
|
|
1672
|
+
CustomAttributes,
|
|
1673
|
+
DomId,
|
|
1674
|
+
Styles,
|
|
1675
|
+
Children,
|
|
1676
|
+
NoTextContent {
|
|
1677
|
+
readonly id: ElementId;
|
|
1678
|
+
readonly type: 'CommerceCheckoutOrderItemsList';
|
|
1679
|
+
readonly plugin: 'Commerce';
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
interface CommerceCheckoutOrderItemElement
|
|
1683
|
+
extends WebflowElement,
|
|
1684
|
+
Configurable,
|
|
1685
|
+
CustomAttributes,
|
|
1686
|
+
DomId,
|
|
1687
|
+
Styles,
|
|
1688
|
+
Children,
|
|
1689
|
+
NoTextContent {
|
|
1690
|
+
readonly id: ElementId;
|
|
1691
|
+
readonly type: 'CommerceCheckoutOrderItem';
|
|
1692
|
+
readonly plugin: 'Commerce';
|
|
1693
|
+
}
|
|
1694
|
+
|
|
1695
|
+
interface CommerceBoldTextBlockElement
|
|
1696
|
+
extends WebflowElement,
|
|
1697
|
+
Configurable,
|
|
1698
|
+
CustomAttributes,
|
|
1699
|
+
DomId,
|
|
1700
|
+
Styles,
|
|
1701
|
+
Children,
|
|
1702
|
+
NoTextContent {
|
|
1703
|
+
readonly id: ElementId;
|
|
1704
|
+
readonly type: 'CommerceBoldTextBlock';
|
|
1705
|
+
readonly plugin: 'Commerce';
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
interface CommerceCheckoutOrderItemDescriptionWrapperElement
|
|
1709
|
+
extends WebflowElement,
|
|
1710
|
+
Configurable,
|
|
1711
|
+
CustomAttributes,
|
|
1712
|
+
DomId,
|
|
1713
|
+
Styles,
|
|
1714
|
+
Children,
|
|
1715
|
+
NoTextContent {
|
|
1716
|
+
readonly id: ElementId;
|
|
1717
|
+
readonly type: 'CommerceCheckoutOrderItemDescriptionWrapper';
|
|
1718
|
+
readonly plugin: 'Commerce';
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1721
|
+
interface CommerceCheckoutOrderItemQuantityWrapperElement
|
|
1722
|
+
extends WebflowElement,
|
|
1723
|
+
Configurable,
|
|
1724
|
+
CustomAttributes,
|
|
1725
|
+
DomId,
|
|
1726
|
+
Styles,
|
|
1727
|
+
Children,
|
|
1728
|
+
NoTextContent {
|
|
1729
|
+
readonly id: ElementId;
|
|
1730
|
+
readonly type: 'CommerceCheckoutOrderItemQuantityWrapper';
|
|
1731
|
+
readonly plugin: 'Commerce';
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
interface CommerceCheckoutOrderItemOptionListElement
|
|
1735
|
+
extends WebflowElement,
|
|
1736
|
+
Configurable,
|
|
1737
|
+
CustomAttributes,
|
|
1738
|
+
DomId,
|
|
1739
|
+
Styles,
|
|
1740
|
+
Children,
|
|
1741
|
+
NoTextContent {
|
|
1742
|
+
readonly id: ElementId;
|
|
1743
|
+
readonly type: 'CommerceCheckoutOrderItemOptionList';
|
|
1744
|
+
readonly plugin: 'Commerce';
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
interface CommerceCheckoutOrderItemOptionListItemElement
|
|
1748
|
+
extends WebflowElement,
|
|
1749
|
+
Configurable,
|
|
1750
|
+
CustomAttributes,
|
|
1751
|
+
DomId,
|
|
1752
|
+
Styles,
|
|
1753
|
+
Children,
|
|
1754
|
+
NoTextContent {
|
|
1755
|
+
readonly id: ElementId;
|
|
1756
|
+
readonly type: 'CommerceCheckoutOrderItemOptionListItem';
|
|
1757
|
+
readonly plugin: 'Commerce';
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1760
|
+
interface CommerceCheckoutOrderItemOptionListItemLabelElement
|
|
1761
|
+
extends WebflowElement,
|
|
1762
|
+
Configurable,
|
|
1763
|
+
CustomAttributes,
|
|
1764
|
+
DomId,
|
|
1765
|
+
Styles,
|
|
1766
|
+
NoChildren,
|
|
1767
|
+
TextContent {
|
|
1768
|
+
readonly id: ElementId;
|
|
1769
|
+
readonly type: 'CommerceCheckoutOrderItemOptionListItemLabel';
|
|
1770
|
+
readonly plugin: 'Commerce';
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1773
|
+
interface CommerceCheckoutOrderItemOptionListItemValueElement
|
|
1774
|
+
extends WebflowElement,
|
|
1775
|
+
Configurable,
|
|
1776
|
+
CustomAttributes,
|
|
1777
|
+
DomId,
|
|
1778
|
+
Styles,
|
|
1779
|
+
NoChildren,
|
|
1780
|
+
TextContent {
|
|
1781
|
+
readonly id: ElementId;
|
|
1782
|
+
readonly type: 'CommerceCheckoutOrderItemOptionListItemValue';
|
|
1783
|
+
readonly plugin: 'Commerce';
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
interface CommerceCheckoutOrderItemTrialTextWrapperElement
|
|
1787
|
+
extends WebflowElement,
|
|
1788
|
+
Configurable,
|
|
1789
|
+
CustomAttributes,
|
|
1790
|
+
DomId,
|
|
1791
|
+
Styles,
|
|
1792
|
+
Children,
|
|
1793
|
+
NoTextContent {
|
|
1794
|
+
readonly id: ElementId;
|
|
1795
|
+
readonly type: 'CommerceCheckoutOrderItemTrialTextWrapper';
|
|
1796
|
+
readonly plugin: 'Commerce';
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
interface CommerceCheckoutShippingMethodsWrapperElement
|
|
1800
|
+
extends WebflowElement,
|
|
1801
|
+
Configurable,
|
|
1802
|
+
CustomAttributes,
|
|
1803
|
+
DomId,
|
|
1804
|
+
Styles,
|
|
1805
|
+
Children,
|
|
1806
|
+
NoTextContent {
|
|
1807
|
+
readonly id: ElementId;
|
|
1808
|
+
readonly type: 'CommerceCheckoutShippingMethodsWrapper';
|
|
1809
|
+
readonly plugin: 'Commerce';
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
interface CommerceCheckoutShippingMethodsEmptyStateElement
|
|
1813
|
+
extends WebflowElement,
|
|
1814
|
+
Configurable,
|
|
1815
|
+
CustomAttributes,
|
|
1816
|
+
DomId,
|
|
1817
|
+
Styles,
|
|
1818
|
+
Children,
|
|
1819
|
+
NoTextContent {
|
|
1820
|
+
readonly id: ElementId;
|
|
1821
|
+
readonly type: 'CommerceCheckoutShippingMethodsEmptyState';
|
|
1822
|
+
readonly plugin: 'Commerce';
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
interface CommerceCheckoutShippingMethodsListElement
|
|
1826
|
+
extends WebflowElement,
|
|
1827
|
+
Configurable,
|
|
1828
|
+
CustomAttributes,
|
|
1829
|
+
DomId,
|
|
1830
|
+
Styles,
|
|
1831
|
+
Children,
|
|
1832
|
+
NoTextContent {
|
|
1833
|
+
readonly id: ElementId;
|
|
1834
|
+
readonly type: 'CommerceCheckoutShippingMethodsList';
|
|
1835
|
+
readonly plugin: 'Commerce';
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
interface CommerceCheckoutShippingMethodItemElement
|
|
1839
|
+
extends WebflowElement,
|
|
1840
|
+
Configurable,
|
|
1841
|
+
CustomAttributes,
|
|
1842
|
+
DomId,
|
|
1843
|
+
Styles,
|
|
1844
|
+
Children,
|
|
1845
|
+
NoTextContent {
|
|
1846
|
+
readonly id: ElementId;
|
|
1847
|
+
readonly type: 'CommerceCheckoutShippingMethodItem';
|
|
1848
|
+
readonly plugin: 'Commerce';
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
interface CommerceCheckoutShippingMethodRadioButtonElement
|
|
1852
|
+
extends WebflowElement,
|
|
1853
|
+
Configurable,
|
|
1854
|
+
CustomAttributes,
|
|
1855
|
+
DomId,
|
|
1856
|
+
Styles,
|
|
1857
|
+
NoChildren,
|
|
1858
|
+
NoTextContent {
|
|
1859
|
+
readonly id: ElementId;
|
|
1860
|
+
readonly type: 'CommerceCheckoutShippingMethodRadioButton';
|
|
1861
|
+
readonly plugin: 'Commerce';
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
interface CommerceCheckoutShippingMethodDescriptionBlockElement
|
|
1865
|
+
extends WebflowElement,
|
|
1866
|
+
Configurable,
|
|
1867
|
+
CustomAttributes,
|
|
1868
|
+
DomId,
|
|
1869
|
+
Styles,
|
|
1870
|
+
Children,
|
|
1871
|
+
NoTextContent {
|
|
1872
|
+
readonly id: ElementId;
|
|
1873
|
+
readonly type: 'CommerceCheckoutShippingMethodDescriptionBlock';
|
|
1874
|
+
readonly plugin: 'Commerce';
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
interface CommerceCheckoutShippingMethodNameBlockElement
|
|
1878
|
+
extends WebflowElement,
|
|
1879
|
+
Configurable,
|
|
1880
|
+
CustomAttributes,
|
|
1881
|
+
DomId,
|
|
1882
|
+
Styles,
|
|
1883
|
+
NoChildren,
|
|
1884
|
+
NoTextContent {
|
|
1885
|
+
readonly id: ElementId;
|
|
1886
|
+
readonly type: 'CommerceCheckoutShippingMethodNameBlock';
|
|
1887
|
+
readonly plugin: 'Commerce';
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
interface CommerceCheckoutShippingMethodBlockWrapperElement
|
|
1891
|
+
extends WebflowElement,
|
|
1892
|
+
Configurable,
|
|
1893
|
+
CustomAttributes,
|
|
1894
|
+
DomId,
|
|
1895
|
+
Styles,
|
|
1896
|
+
Children,
|
|
1897
|
+
NoTextContent {
|
|
1898
|
+
readonly id: ElementId;
|
|
1899
|
+
readonly type: 'CommerceCheckoutShippingMethodBlockWrapper';
|
|
1900
|
+
readonly plugin: 'Commerce';
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
interface CommerceCheckoutCustomerInfoSummaryWrapperElement
|
|
1904
|
+
extends WebflowElement,
|
|
1905
|
+
Configurable,
|
|
1906
|
+
CustomAttributes,
|
|
1907
|
+
DomId,
|
|
1908
|
+
Styles,
|
|
1909
|
+
Children,
|
|
1910
|
+
NoTextContent {
|
|
1911
|
+
readonly id: ElementId;
|
|
1912
|
+
readonly type: 'CommerceCheckoutCustomerInfoSummaryWrapper';
|
|
1913
|
+
readonly plugin: 'Commerce';
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
interface CommerceCheckoutShippingSummaryWrapperElement
|
|
1917
|
+
extends WebflowElement,
|
|
1918
|
+
Configurable,
|
|
1919
|
+
CustomAttributes,
|
|
1920
|
+
DomId,
|
|
1921
|
+
Styles,
|
|
1922
|
+
Children,
|
|
1923
|
+
NoTextContent {
|
|
1924
|
+
readonly id: ElementId;
|
|
1925
|
+
readonly type: 'CommerceCheckoutShippingSummaryWrapper';
|
|
1926
|
+
readonly plugin: 'Commerce';
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
interface CommerceCheckoutPaymentSummaryWrapperElement
|
|
1930
|
+
extends WebflowElement,
|
|
1931
|
+
Configurable,
|
|
1932
|
+
CustomAttributes,
|
|
1933
|
+
DomId,
|
|
1934
|
+
Styles,
|
|
1935
|
+
Children,
|
|
1936
|
+
NoTextContent {
|
|
1937
|
+
readonly id: ElementId;
|
|
1938
|
+
readonly type: 'CommerceCheckoutPaymentSummaryWrapper';
|
|
1939
|
+
readonly plugin: 'Commerce';
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
interface CommerceCheckoutOrderSummaryWrapperElement
|
|
1943
|
+
extends WebflowElement,
|
|
1944
|
+
Configurable,
|
|
1945
|
+
CustomAttributes,
|
|
1946
|
+
DomId,
|
|
1947
|
+
Styles,
|
|
1948
|
+
Children,
|
|
1949
|
+
NoTextContent {
|
|
1950
|
+
readonly id: ElementId;
|
|
1951
|
+
readonly type: 'CommerceCheckoutOrderSummaryWrapper';
|
|
1952
|
+
readonly plugin: 'Commerce';
|
|
1953
|
+
}
|
|
1954
|
+
|
|
1955
|
+
interface CommerceCheckoutSummaryItemElement
|
|
1956
|
+
extends WebflowElement,
|
|
1957
|
+
Configurable,
|
|
1958
|
+
CustomAttributes,
|
|
1959
|
+
DomId,
|
|
1960
|
+
Styles,
|
|
1961
|
+
Children,
|
|
1962
|
+
NoTextContent {
|
|
1963
|
+
readonly id: ElementId;
|
|
1964
|
+
readonly type: 'CommerceCheckoutSummaryItem';
|
|
1965
|
+
readonly plugin: 'Commerce';
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
interface CommerceCheckoutSummaryLabelElement
|
|
1969
|
+
extends WebflowElement,
|
|
1970
|
+
Configurable,
|
|
1971
|
+
CustomAttributes,
|
|
1972
|
+
DomId,
|
|
1973
|
+
Styles,
|
|
1974
|
+
Children,
|
|
1975
|
+
TextContent {
|
|
1976
|
+
readonly id: ElementId;
|
|
1977
|
+
readonly type: 'CommerceCheckoutSummaryLabel';
|
|
1978
|
+
readonly plugin: 'Commerce';
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1981
|
+
interface CommerceCheckoutSummaryBlockHeaderElement
|
|
1982
|
+
extends WebflowElement,
|
|
1983
|
+
Configurable,
|
|
1984
|
+
CustomAttributes,
|
|
1985
|
+
DomId,
|
|
1986
|
+
Styles,
|
|
1987
|
+
Children,
|
|
1988
|
+
NoTextContent {
|
|
1989
|
+
readonly id: ElementId;
|
|
1990
|
+
readonly type: 'CommerceCheckoutSummaryBlockHeader';
|
|
1991
|
+
readonly plugin: 'Commerce';
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
interface CommerceCheckoutSummaryLineItemElement
|
|
1995
|
+
extends WebflowElement,
|
|
1996
|
+
Configurable,
|
|
1997
|
+
CustomAttributes,
|
|
1998
|
+
DomId,
|
|
1999
|
+
Styles,
|
|
2000
|
+
Children,
|
|
2001
|
+
NoTextContent {
|
|
2002
|
+
readonly id: ElementId;
|
|
2003
|
+
readonly type: 'CommerceCheckoutSummaryLineItem';
|
|
2004
|
+
readonly plugin: 'Commerce';
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
interface CommerceCheckoutSummaryTotalElement
|
|
2008
|
+
extends WebflowElement,
|
|
2009
|
+
Configurable,
|
|
2010
|
+
CustomAttributes,
|
|
2011
|
+
DomId,
|
|
2012
|
+
Styles,
|
|
2013
|
+
Children,
|
|
2014
|
+
NoTextContent {
|
|
2015
|
+
readonly id: ElementId;
|
|
2016
|
+
readonly type: 'CommerceCheckoutSummaryTotal';
|
|
2017
|
+
readonly plugin: 'Commerce';
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
interface CommerceCheckoutSummaryTextSpacingOnDivElement
|
|
2021
|
+
extends WebflowElement,
|
|
2022
|
+
Configurable,
|
|
2023
|
+
CustomAttributes,
|
|
2024
|
+
DomId,
|
|
2025
|
+
Styles,
|
|
2026
|
+
Children,
|
|
2027
|
+
NoTextContent {
|
|
2028
|
+
readonly id: ElementId;
|
|
2029
|
+
readonly type: 'CommerceCheckoutSummaryTextSpacingOnDiv';
|
|
2030
|
+
readonly plugin: 'Commerce';
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
interface CommerceCheckoutSummaryFlexBoxDivElement
|
|
2034
|
+
extends WebflowElement,
|
|
2035
|
+
Configurable,
|
|
2036
|
+
CustomAttributes,
|
|
2037
|
+
DomId,
|
|
2038
|
+
Styles,
|
|
2039
|
+
Children,
|
|
2040
|
+
NoTextContent {
|
|
2041
|
+
readonly id: ElementId;
|
|
2042
|
+
readonly type: 'CommerceCheckoutSummaryFlexBoxDiv';
|
|
2043
|
+
readonly plugin: 'Commerce';
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
interface CommerceCheckoutOrderItemDescriptionPriceElement
|
|
2047
|
+
extends WebflowElement,
|
|
2048
|
+
Configurable,
|
|
2049
|
+
CustomAttributes,
|
|
2050
|
+
DomId,
|
|
2051
|
+
Styles,
|
|
2052
|
+
Children,
|
|
2053
|
+
NoTextContent {
|
|
2054
|
+
readonly id: ElementId;
|
|
2055
|
+
readonly type: 'CommerceCheckoutOrderItemDescriptionPrice';
|
|
2056
|
+
readonly plugin: 'Commerce';
|
|
2057
|
+
}
|
|
2058
|
+
|
|
2059
|
+
interface CommerceCheckoutOrderSummaryExtraItemsListElement
|
|
2060
|
+
extends WebflowElement,
|
|
2061
|
+
Configurable,
|
|
2062
|
+
CustomAttributes,
|
|
2063
|
+
DomId,
|
|
2064
|
+
Styles,
|
|
2065
|
+
Children,
|
|
2066
|
+
NoTextContent {
|
|
2067
|
+
readonly id: ElementId;
|
|
2068
|
+
readonly type: 'CommerceCheckoutOrderSummaryExtraItemsList';
|
|
2069
|
+
readonly plugin: 'Commerce';
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
interface CommerceCheckoutOrderSummaryExtraItemsListItemElement
|
|
2073
|
+
extends WebflowElement,
|
|
2074
|
+
Configurable,
|
|
2075
|
+
CustomAttributes,
|
|
2076
|
+
DomId,
|
|
2077
|
+
Styles,
|
|
2078
|
+
Children,
|
|
2079
|
+
NoTextContent {
|
|
2080
|
+
readonly id: ElementId;
|
|
2081
|
+
readonly type: 'CommerceCheckoutOrderSummaryExtraItemsListItem';
|
|
2082
|
+
readonly plugin: 'Commerce';
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
interface CommerceCheckoutErrorMsgElement
|
|
2086
|
+
extends WebflowElement,
|
|
2087
|
+
Configurable,
|
|
2088
|
+
CustomAttributes,
|
|
2089
|
+
DomId,
|
|
2090
|
+
Styles,
|
|
2091
|
+
NoChildren,
|
|
2092
|
+
NoTextContent {
|
|
2093
|
+
readonly id: ElementId;
|
|
2094
|
+
readonly type: 'CommerceCheckoutErrorMsg';
|
|
2095
|
+
readonly plugin: 'Commerce';
|
|
2096
|
+
}
|
|
2097
|
+
|
|
2098
|
+
interface CommerceCartErrorMsgElement
|
|
2099
|
+
extends WebflowElement,
|
|
2100
|
+
Configurable,
|
|
2101
|
+
CustomAttributes,
|
|
2102
|
+
DomId,
|
|
2103
|
+
Styles,
|
|
2104
|
+
NoChildren,
|
|
2105
|
+
NoTextContent {
|
|
2106
|
+
readonly id: ElementId;
|
|
2107
|
+
readonly type: 'CommerceCartErrorMsg';
|
|
2108
|
+
readonly plugin: 'Commerce';
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2111
|
+
interface CommerceAddToCartErrorMsgElement
|
|
2112
|
+
extends WebflowElement,
|
|
2113
|
+
Configurable,
|
|
2114
|
+
CustomAttributes,
|
|
2115
|
+
DomId,
|
|
2116
|
+
Styles,
|
|
2117
|
+
NoChildren,
|
|
2118
|
+
NoTextContent {
|
|
2119
|
+
readonly id: ElementId;
|
|
2120
|
+
readonly type: 'CommerceAddToCartErrorMsg';
|
|
2121
|
+
readonly plugin: 'Commerce';
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
interface CommerceLayoutMainElement
|
|
2125
|
+
extends WebflowElement,
|
|
2126
|
+
Configurable,
|
|
2127
|
+
CustomAttributes,
|
|
2128
|
+
DomId,
|
|
2129
|
+
Styles,
|
|
2130
|
+
Children,
|
|
2131
|
+
NoTextContent {
|
|
2132
|
+
readonly id: ElementId;
|
|
2133
|
+
readonly type: 'CommerceLayoutMain';
|
|
2134
|
+
readonly plugin: 'Commerce';
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2137
|
+
interface CommerceLayoutSidebarElement
|
|
2138
|
+
extends WebflowElement,
|
|
2139
|
+
Configurable,
|
|
2140
|
+
CustomAttributes,
|
|
2141
|
+
DomId,
|
|
2142
|
+
Styles,
|
|
2143
|
+
Children,
|
|
2144
|
+
NoTextContent {
|
|
2145
|
+
readonly id: ElementId;
|
|
2146
|
+
readonly type: 'CommerceLayoutSidebar';
|
|
2147
|
+
readonly plugin: 'Commerce';
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
interface CommerceLayoutContainerElement
|
|
2151
|
+
extends WebflowElement,
|
|
2152
|
+
Configurable,
|
|
2153
|
+
CustomAttributes,
|
|
2154
|
+
DomId,
|
|
2155
|
+
Styles,
|
|
2156
|
+
Children,
|
|
2157
|
+
NoTextContent {
|
|
2158
|
+
readonly id: ElementId;
|
|
2159
|
+
readonly type: 'CommerceLayoutContainer';
|
|
2160
|
+
readonly plugin: 'Commerce';
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
interface CommercePaypalCheckoutFormContainerElement
|
|
2164
|
+
extends WebflowElement,
|
|
2165
|
+
Configurable,
|
|
2166
|
+
CustomAttributes,
|
|
2167
|
+
DomId,
|
|
2168
|
+
Styles,
|
|
2169
|
+
Children,
|
|
2170
|
+
NoTextContent {
|
|
2171
|
+
readonly id: ElementId;
|
|
2172
|
+
readonly type: 'CommercePaypalCheckoutFormContainer';
|
|
2173
|
+
readonly plugin: 'Commerce';
|
|
2174
|
+
}
|
|
2175
|
+
|
|
2176
|
+
interface CommercePaypalCheckoutErrorStateElement
|
|
2177
|
+
extends WebflowElement,
|
|
2178
|
+
Configurable,
|
|
2179
|
+
CustomAttributes,
|
|
2180
|
+
DomId,
|
|
2181
|
+
Styles,
|
|
2182
|
+
Children,
|
|
2183
|
+
NoTextContent {
|
|
2184
|
+
readonly id: ElementId;
|
|
2185
|
+
readonly type: 'CommercePaypalCheckoutErrorState';
|
|
2186
|
+
readonly plugin: 'Commerce';
|
|
2187
|
+
}
|
|
2188
|
+
|
|
2189
|
+
interface CommercePaypalCheckoutErrorMessageElement
|
|
2190
|
+
extends WebflowElement,
|
|
2191
|
+
Configurable,
|
|
2192
|
+
CustomAttributes,
|
|
2193
|
+
DomId,
|
|
2194
|
+
Styles,
|
|
2195
|
+
NoChildren,
|
|
2196
|
+
NoTextContent {
|
|
2197
|
+
readonly id: ElementId;
|
|
2198
|
+
readonly type: 'CommercePaypalCheckoutErrorMessage';
|
|
2199
|
+
readonly plugin: 'Commerce';
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
interface CommerceCheckoutAdditionalInputsContainerElement
|
|
2203
|
+
extends WebflowElement,
|
|
2204
|
+
Configurable,
|
|
2205
|
+
CustomAttributes,
|
|
2206
|
+
DomId,
|
|
2207
|
+
Styles,
|
|
2208
|
+
Children,
|
|
2209
|
+
NoTextContent {
|
|
2210
|
+
readonly id: ElementId;
|
|
2211
|
+
readonly type: 'CommerceCheckoutAdditionalInputsContainer';
|
|
2212
|
+
readonly plugin: 'Commerce';
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
interface CommerceCheckoutAdditionalInfoSummaryWrapperElement
|
|
2216
|
+
extends WebflowElement,
|
|
2217
|
+
Configurable,
|
|
2218
|
+
CustomAttributes,
|
|
2219
|
+
DomId,
|
|
2220
|
+
Styles,
|
|
2221
|
+
Children,
|
|
2222
|
+
NoTextContent {
|
|
2223
|
+
readonly id: ElementId;
|
|
2224
|
+
readonly type: 'CommerceCheckoutAdditionalInfoSummaryWrapper';
|
|
2225
|
+
readonly plugin: 'Commerce';
|
|
2226
|
+
}
|
|
2227
|
+
|
|
2228
|
+
interface CommerceCheckoutAdditionalTextAreaElement
|
|
2229
|
+
extends WebflowElement,
|
|
2230
|
+
Configurable,
|
|
2231
|
+
CustomAttributes,
|
|
2232
|
+
DomId,
|
|
2233
|
+
Styles,
|
|
2234
|
+
NoChildren,
|
|
2235
|
+
NoTextContent {
|
|
2236
|
+
readonly id: ElementId;
|
|
2237
|
+
readonly type: 'CommerceCheckoutAdditionalTextArea';
|
|
2238
|
+
readonly plugin: 'Commerce';
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2241
|
+
interface CommerceCheckoutAdditionalTextInputElement
|
|
2242
|
+
extends WebflowElement,
|
|
2243
|
+
Configurable,
|
|
2244
|
+
CustomAttributes,
|
|
2245
|
+
DomId,
|
|
2246
|
+
Styles,
|
|
2247
|
+
NoChildren,
|
|
2248
|
+
NoTextContent {
|
|
2249
|
+
readonly id: ElementId;
|
|
2250
|
+
readonly type: 'CommerceCheckoutAdditionalTextInput';
|
|
2251
|
+
readonly plugin: 'Commerce';
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2254
|
+
interface CommerceCheckoutAdditionalCheckboxElement
|
|
2255
|
+
extends WebflowElement,
|
|
2256
|
+
Configurable,
|
|
2257
|
+
CustomAttributes,
|
|
2258
|
+
DomId,
|
|
2259
|
+
Styles,
|
|
2260
|
+
NoChildren,
|
|
2261
|
+
NoTextContent {
|
|
2262
|
+
readonly id: ElementId;
|
|
2263
|
+
readonly type: 'CommerceCheckoutAdditionalCheckbox';
|
|
2264
|
+
readonly plugin: 'Commerce';
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2267
|
+
interface CommerceCheckoutAdditionalCheckboxWrapperElement
|
|
2268
|
+
extends WebflowElement,
|
|
2269
|
+
Configurable,
|
|
2270
|
+
CustomAttributes,
|
|
2271
|
+
DomId,
|
|
2272
|
+
Styles,
|
|
2273
|
+
Children,
|
|
2274
|
+
NoTextContent {
|
|
2275
|
+
readonly id: ElementId;
|
|
2276
|
+
readonly type: 'CommerceCheckoutAdditionalCheckboxWrapper';
|
|
2277
|
+
readonly plugin: 'Commerce';
|
|
2278
|
+
}
|
|
2279
|
+
|
|
2280
|
+
interface CommerceCheckoutDiscountsElement
|
|
2281
|
+
extends WebflowElement,
|
|
2282
|
+
Configurable,
|
|
2283
|
+
CustomAttributes,
|
|
2284
|
+
DomId,
|
|
2285
|
+
Styles,
|
|
2286
|
+
Children,
|
|
2287
|
+
NoTextContent {
|
|
2288
|
+
readonly id: ElementId;
|
|
2289
|
+
readonly type: 'CommerceCheckoutDiscounts';
|
|
2290
|
+
readonly plugin: 'Commerce';
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
interface CommerceCheckoutDiscountsButtonElement
|
|
2294
|
+
extends WebflowElement,
|
|
2295
|
+
Configurable,
|
|
2296
|
+
CustomAttributes,
|
|
2297
|
+
DomId,
|
|
2298
|
+
Styles,
|
|
2299
|
+
NoChildren,
|
|
2300
|
+
TextContent {
|
|
2301
|
+
readonly id: ElementId;
|
|
2302
|
+
readonly type: 'CommerceCheckoutDiscountsButton';
|
|
2303
|
+
readonly plugin: 'Commerce';
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
interface CommerceCheckoutDiscountsInputElement
|
|
2307
|
+
extends WebflowElement,
|
|
2308
|
+
Configurable,
|
|
2309
|
+
CustomAttributes,
|
|
2310
|
+
NoDomId,
|
|
2311
|
+
Styles,
|
|
2312
|
+
NoChildren,
|
|
2313
|
+
NoTextContent {
|
|
2314
|
+
readonly id: ElementId;
|
|
2315
|
+
readonly type: 'CommerceCheckoutDiscountsInput';
|
|
2316
|
+
readonly plugin: 'Commerce';
|
|
2317
|
+
}
|
|
2318
|
+
|
|
2319
|
+
interface CommerceCheckoutDiscountsLabelElement
|
|
2320
|
+
extends WebflowElement,
|
|
2321
|
+
Configurable,
|
|
2322
|
+
CustomAttributes,
|
|
2323
|
+
DomId,
|
|
2324
|
+
Styles,
|
|
2325
|
+
Children,
|
|
2326
|
+
TextContent {
|
|
2327
|
+
readonly id: ElementId;
|
|
2328
|
+
readonly type: 'CommerceCheckoutDiscountsLabel';
|
|
2329
|
+
readonly plugin: 'Commerce';
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2332
|
+
interface CommerceDownloadsWrapperElement
|
|
2333
|
+
extends WebflowElement,
|
|
2334
|
+
Configurable,
|
|
2335
|
+
CustomAttributes,
|
|
2336
|
+
DomId,
|
|
2337
|
+
Styles,
|
|
2338
|
+
Children,
|
|
2339
|
+
NoTextContent {
|
|
2340
|
+
readonly id: ElementId;
|
|
2341
|
+
readonly type: 'CommerceDownloadsWrapper';
|
|
2342
|
+
readonly plugin: 'Commerce';
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2345
|
+
interface CommerceDownloadsListElement
|
|
2346
|
+
extends WebflowElement,
|
|
2347
|
+
Configurable,
|
|
2348
|
+
CustomAttributes,
|
|
2349
|
+
DomId,
|
|
2350
|
+
Styles,
|
|
2351
|
+
Children,
|
|
2352
|
+
NoTextContent {
|
|
2353
|
+
readonly id: ElementId;
|
|
2354
|
+
readonly type: 'CommerceDownloadsList';
|
|
2355
|
+
readonly plugin: 'Commerce';
|
|
2356
|
+
}
|
|
2357
|
+
|
|
2358
|
+
interface CommerceDownloadsItemElement
|
|
2359
|
+
extends WebflowElement,
|
|
2360
|
+
Configurable,
|
|
2361
|
+
CustomAttributes,
|
|
2362
|
+
DomId,
|
|
2363
|
+
Styles,
|
|
2364
|
+
Children,
|
|
2365
|
+
NoTextContent {
|
|
2366
|
+
readonly id: ElementId;
|
|
2367
|
+
readonly type: 'CommerceDownloadsItem';
|
|
2368
|
+
readonly plugin: 'Commerce';
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
interface DropdownLinkElement
|
|
2372
|
+
extends WebflowElement,
|
|
2373
|
+
Configurable,
|
|
2374
|
+
CustomAttributes,
|
|
2375
|
+
DomId,
|
|
2376
|
+
Styles,
|
|
2377
|
+
Children,
|
|
2378
|
+
TextContent {
|
|
2379
|
+
readonly id: ElementId;
|
|
2380
|
+
readonly type: 'DropdownLink';
|
|
2381
|
+
readonly plugin: 'Dropdown';
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
interface DropdownListElement
|
|
2385
|
+
extends WebflowElement,
|
|
2386
|
+
Configurable,
|
|
2387
|
+
CustomAttributes,
|
|
2388
|
+
DomId,
|
|
2389
|
+
Styles,
|
|
2390
|
+
Children,
|
|
2391
|
+
NoTextContent {
|
|
2392
|
+
readonly id: ElementId;
|
|
2393
|
+
readonly type: 'DropdownList';
|
|
2394
|
+
readonly plugin: 'Dropdown';
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2397
|
+
interface DropdownToggleElement
|
|
2398
|
+
extends WebflowElement,
|
|
2399
|
+
Configurable,
|
|
2400
|
+
CustomAttributes,
|
|
2401
|
+
DomId,
|
|
2402
|
+
Styles,
|
|
2403
|
+
Children,
|
|
2404
|
+
NoTextContent {
|
|
2405
|
+
readonly id: ElementId;
|
|
2406
|
+
readonly type: 'DropdownToggle';
|
|
2407
|
+
readonly plugin: 'Dropdown';
|
|
2408
|
+
}
|
|
2409
|
+
|
|
2410
|
+
interface DropdownWrapperElement
|
|
2411
|
+
extends WebflowElement,
|
|
2412
|
+
Configurable,
|
|
2413
|
+
CustomAttributes,
|
|
2414
|
+
NoDomId,
|
|
2415
|
+
Styles,
|
|
2416
|
+
Children,
|
|
2417
|
+
NoTextContent {
|
|
2418
|
+
readonly id: ElementId;
|
|
2419
|
+
readonly type: 'DropdownWrapper';
|
|
2420
|
+
readonly plugin: 'Dropdown';
|
|
2421
|
+
}
|
|
2422
|
+
|
|
2423
|
+
interface DynamoWrapperElement
|
|
2424
|
+
extends WebflowElement,
|
|
2425
|
+
Configurable,
|
|
2426
|
+
CustomAttributes,
|
|
2427
|
+
DomId,
|
|
2428
|
+
Styles,
|
|
2429
|
+
Children,
|
|
2430
|
+
NoTextContent {
|
|
2431
|
+
readonly id: ElementId;
|
|
2432
|
+
readonly type: 'DynamoWrapper';
|
|
2433
|
+
readonly plugin: 'Dynamo';
|
|
2434
|
+
}
|
|
2435
|
+
|
|
2436
|
+
interface DynamoListElement
|
|
2437
|
+
extends WebflowElement,
|
|
2438
|
+
Configurable,
|
|
2439
|
+
CustomAttributes,
|
|
2440
|
+
DomId,
|
|
2441
|
+
Styles,
|
|
2442
|
+
Children,
|
|
2443
|
+
NoTextContent {
|
|
2444
|
+
readonly id: ElementId;
|
|
2445
|
+
readonly type: 'DynamoList';
|
|
2446
|
+
readonly plugin: 'Dynamo';
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2449
|
+
interface DynamoItemElement
|
|
2450
|
+
extends WebflowElement,
|
|
2451
|
+
Configurable,
|
|
2452
|
+
CustomAttributes,
|
|
2453
|
+
DomId,
|
|
2454
|
+
Styles,
|
|
2455
|
+
Children,
|
|
2456
|
+
NoTextContent {
|
|
2457
|
+
readonly id: ElementId;
|
|
2458
|
+
readonly type: 'DynamoItem';
|
|
2459
|
+
readonly plugin: 'Dynamo';
|
|
2460
|
+
}
|
|
2461
|
+
|
|
2462
|
+
interface DynamoEmptyElement
|
|
2463
|
+
extends WebflowElement,
|
|
2464
|
+
Configurable,
|
|
2465
|
+
CustomAttributes,
|
|
2466
|
+
DomId,
|
|
2467
|
+
Styles,
|
|
2468
|
+
Children,
|
|
2469
|
+
NoTextContent {
|
|
2470
|
+
readonly id: ElementId;
|
|
2471
|
+
readonly type: 'DynamoEmpty';
|
|
2472
|
+
readonly plugin: 'Dynamo';
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2475
|
+
interface HtmlEmbedElement
|
|
2476
|
+
extends WebflowElement,
|
|
2477
|
+
Configurable,
|
|
2478
|
+
CustomAttributes,
|
|
2479
|
+
DomId,
|
|
2480
|
+
Styles,
|
|
2481
|
+
NoChildren,
|
|
2482
|
+
NoTextContent {
|
|
2483
|
+
readonly id: ElementId;
|
|
2484
|
+
readonly type: 'HtmlEmbed';
|
|
2485
|
+
readonly plugin: 'Embed';
|
|
2486
|
+
}
|
|
2487
|
+
|
|
2488
|
+
interface VideoElement
|
|
2489
|
+
extends WebflowElement,
|
|
2490
|
+
Configurable,
|
|
2491
|
+
CustomAttributes,
|
|
2492
|
+
DomId,
|
|
2493
|
+
Styles,
|
|
2494
|
+
NoChildren,
|
|
2495
|
+
NoTextContent {
|
|
2496
|
+
readonly id: ElementId;
|
|
2497
|
+
readonly type: 'Video';
|
|
2498
|
+
readonly plugin: 'Embed';
|
|
2499
|
+
}
|
|
2500
|
+
|
|
2501
|
+
interface YouTubeVideoElement
|
|
2502
|
+
extends WebflowElement,
|
|
2503
|
+
Configurable,
|
|
2504
|
+
CustomAttributes,
|
|
2505
|
+
DomId,
|
|
2506
|
+
Styles,
|
|
2507
|
+
NoChildren,
|
|
2508
|
+
NoTextContent {
|
|
2509
|
+
readonly id: ElementId;
|
|
2510
|
+
readonly type: 'YouTubeVideo';
|
|
2511
|
+
readonly plugin: 'Embed';
|
|
2512
|
+
}
|
|
2513
|
+
|
|
2514
|
+
interface FormBlockLabelElement
|
|
2515
|
+
extends WebflowElement,
|
|
2516
|
+
Configurable,
|
|
2517
|
+
CustomAttributes,
|
|
2518
|
+
DomId,
|
|
2519
|
+
Styles,
|
|
2520
|
+
Children,
|
|
2521
|
+
TextContent {
|
|
2522
|
+
readonly id: ElementId;
|
|
2523
|
+
readonly type: 'FormBlockLabel';
|
|
2524
|
+
readonly plugin: 'Form';
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2527
|
+
interface FormButtonElement
|
|
2528
|
+
extends WebflowElement,
|
|
2529
|
+
Configurable,
|
|
2530
|
+
CustomAttributes,
|
|
2531
|
+
NoDomId,
|
|
2532
|
+
Styles,
|
|
2533
|
+
NoChildren,
|
|
2534
|
+
NoTextContent {
|
|
2535
|
+
readonly id: ElementId;
|
|
2536
|
+
readonly type: 'FormButton';
|
|
2537
|
+
readonly plugin: 'Form';
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
interface FormCheckboxInputElement
|
|
2541
|
+
extends WebflowElement,
|
|
2542
|
+
Configurable,
|
|
2543
|
+
CustomAttributes,
|
|
2544
|
+
NoDomId,
|
|
2545
|
+
Styles,
|
|
2546
|
+
NoChildren,
|
|
2547
|
+
NoTextContent {
|
|
2548
|
+
readonly id: ElementId;
|
|
2549
|
+
readonly type: 'FormCheckboxInput';
|
|
2550
|
+
readonly plugin: 'Form';
|
|
2551
|
+
}
|
|
2552
|
+
|
|
2553
|
+
interface FormCheckboxWrapperElement
|
|
2554
|
+
extends WebflowElement,
|
|
2555
|
+
Configurable,
|
|
2556
|
+
CustomAttributes,
|
|
2557
|
+
DomId,
|
|
2558
|
+
Styles,
|
|
2559
|
+
Children,
|
|
2560
|
+
NoTextContent {
|
|
2561
|
+
readonly id: ElementId;
|
|
2562
|
+
readonly type: 'FormCheckboxWrapper';
|
|
2563
|
+
readonly plugin: 'Form';
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
interface FormErrorMessageElement
|
|
2567
|
+
extends WebflowElement,
|
|
2568
|
+
Configurable,
|
|
2569
|
+
CustomAttributes,
|
|
2570
|
+
DomId,
|
|
2571
|
+
Styles,
|
|
2572
|
+
Children,
|
|
2573
|
+
NoTextContent {
|
|
2574
|
+
readonly id: ElementId;
|
|
2575
|
+
readonly type: 'FormErrorMessage';
|
|
2576
|
+
readonly plugin: 'Form';
|
|
2577
|
+
}
|
|
2578
|
+
|
|
2579
|
+
interface FormFormElement
|
|
2580
|
+
extends WebflowElement,
|
|
2581
|
+
Configurable,
|
|
2582
|
+
CustomAttributes,
|
|
2583
|
+
NoDomId,
|
|
2584
|
+
Styles,
|
|
2585
|
+
Children,
|
|
2586
|
+
NoTextContent {
|
|
2587
|
+
readonly id: ElementId;
|
|
2588
|
+
readonly type: 'FormForm';
|
|
2589
|
+
readonly plugin: 'Form';
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2592
|
+
interface FormInlineLabelElement
|
|
2593
|
+
extends WebflowElement,
|
|
2594
|
+
Configurable,
|
|
2595
|
+
CustomAttributes,
|
|
2596
|
+
DomId,
|
|
2597
|
+
Styles,
|
|
2598
|
+
Children,
|
|
2599
|
+
TextContent {
|
|
2600
|
+
readonly id: ElementId;
|
|
2601
|
+
readonly type: 'FormInlineLabel';
|
|
2602
|
+
readonly plugin: 'Form';
|
|
2603
|
+
}
|
|
2604
|
+
|
|
2605
|
+
interface FormRadioInputElement
|
|
2606
|
+
extends WebflowElement,
|
|
2607
|
+
Configurable,
|
|
2608
|
+
CustomAttributes,
|
|
2609
|
+
NoDomId,
|
|
2610
|
+
Styles,
|
|
2611
|
+
NoChildren,
|
|
2612
|
+
NoTextContent {
|
|
2613
|
+
readonly id: ElementId;
|
|
2614
|
+
readonly type: 'FormRadioInput';
|
|
2615
|
+
readonly plugin: 'Form';
|
|
2616
|
+
}
|
|
2617
|
+
|
|
2618
|
+
interface FormRadioWrapperElement
|
|
2619
|
+
extends WebflowElement,
|
|
2620
|
+
Configurable,
|
|
2621
|
+
CustomAttributes,
|
|
2622
|
+
DomId,
|
|
2623
|
+
Styles,
|
|
2624
|
+
Children,
|
|
2625
|
+
NoTextContent {
|
|
2626
|
+
readonly id: ElementId;
|
|
2627
|
+
readonly type: 'FormRadioWrapper';
|
|
2628
|
+
readonly plugin: 'Form';
|
|
2629
|
+
}
|
|
2630
|
+
|
|
2631
|
+
interface FormSelectElement
|
|
2632
|
+
extends WebflowElement,
|
|
2633
|
+
Configurable,
|
|
2634
|
+
CustomAttributes,
|
|
2635
|
+
NoDomId,
|
|
2636
|
+
Styles,
|
|
2637
|
+
NoChildren,
|
|
2638
|
+
NoTextContent {
|
|
2639
|
+
readonly id: ElementId;
|
|
2640
|
+
readonly type: 'FormSelect';
|
|
2641
|
+
readonly plugin: 'Form';
|
|
2642
|
+
}
|
|
2643
|
+
|
|
2644
|
+
interface FormSuccessMessageElement
|
|
2645
|
+
extends WebflowElement,
|
|
2646
|
+
Configurable,
|
|
2647
|
+
CustomAttributes,
|
|
2648
|
+
DomId,
|
|
2649
|
+
Styles,
|
|
2650
|
+
Children,
|
|
2651
|
+
NoTextContent {
|
|
2652
|
+
readonly id: ElementId;
|
|
2653
|
+
readonly type: 'FormSuccessMessage';
|
|
2654
|
+
readonly plugin: 'Form';
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
interface FormTextareaElement
|
|
2658
|
+
extends WebflowElement,
|
|
2659
|
+
Configurable,
|
|
2660
|
+
CustomAttributes,
|
|
2661
|
+
NoDomId,
|
|
2662
|
+
Styles,
|
|
2663
|
+
NoChildren,
|
|
2664
|
+
NoTextContent {
|
|
2665
|
+
readonly id: ElementId;
|
|
2666
|
+
readonly type: 'FormTextarea';
|
|
2667
|
+
readonly plugin: 'Form';
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2670
|
+
interface FormTextInputElement
|
|
2671
|
+
extends WebflowElement,
|
|
2672
|
+
Configurable,
|
|
2673
|
+
CustomAttributes,
|
|
2674
|
+
NoDomId,
|
|
2675
|
+
Styles,
|
|
2676
|
+
NoChildren,
|
|
2677
|
+
NoTextContent {
|
|
2678
|
+
readonly id: ElementId;
|
|
2679
|
+
readonly type: 'FormTextInput';
|
|
2680
|
+
readonly plugin: 'Form';
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
interface FormWrapperElement
|
|
2684
|
+
extends WebflowElement,
|
|
2685
|
+
Configurable,
|
|
2686
|
+
CustomAttributes,
|
|
2687
|
+
DomId,
|
|
2688
|
+
Styles,
|
|
2689
|
+
Children,
|
|
2690
|
+
NoTextContent {
|
|
2691
|
+
readonly id: ElementId;
|
|
2692
|
+
readonly type: 'FormWrapper';
|
|
2693
|
+
readonly plugin: 'Form';
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
interface FormReCaptchaElement
|
|
2697
|
+
extends WebflowElement,
|
|
2698
|
+
Configurable,
|
|
2699
|
+
CustomAttributes,
|
|
2700
|
+
DomId,
|
|
2701
|
+
Styles,
|
|
2702
|
+
NoChildren,
|
|
2703
|
+
NoTextContent {
|
|
2704
|
+
readonly id: ElementId;
|
|
2705
|
+
readonly type: 'FormReCaptcha';
|
|
2706
|
+
readonly plugin: 'Form';
|
|
2707
|
+
}
|
|
2708
|
+
|
|
2709
|
+
interface FormFileUploadWrapperElement
|
|
2710
|
+
extends WebflowElement,
|
|
2711
|
+
Configurable,
|
|
2712
|
+
CustomAttributes,
|
|
2713
|
+
DomId,
|
|
2714
|
+
Styles,
|
|
2715
|
+
Children,
|
|
2716
|
+
NoTextContent {
|
|
2717
|
+
readonly id: ElementId;
|
|
2718
|
+
readonly type: 'FormFileUploadWrapper';
|
|
2719
|
+
readonly plugin: 'Form';
|
|
2720
|
+
}
|
|
2721
|
+
|
|
2722
|
+
interface FormFileUploadDefaultElement
|
|
2723
|
+
extends WebflowElement,
|
|
2724
|
+
Configurable,
|
|
2725
|
+
CustomAttributes,
|
|
2726
|
+
DomId,
|
|
2727
|
+
Styles,
|
|
2728
|
+
Children,
|
|
2729
|
+
NoTextContent {
|
|
2730
|
+
readonly id: ElementId;
|
|
2731
|
+
readonly type: 'FormFileUploadDefault';
|
|
2732
|
+
readonly plugin: 'Form';
|
|
2733
|
+
}
|
|
2734
|
+
|
|
2735
|
+
interface FormFileUploadUploadingElement
|
|
2736
|
+
extends WebflowElement,
|
|
2737
|
+
Configurable,
|
|
2738
|
+
CustomAttributes,
|
|
2739
|
+
NoDomId,
|
|
2740
|
+
Styles,
|
|
2741
|
+
Children,
|
|
2742
|
+
NoTextContent {
|
|
2743
|
+
readonly id: ElementId;
|
|
2744
|
+
readonly type: 'FormFileUploadUploading';
|
|
2745
|
+
readonly plugin: 'Form';
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2748
|
+
interface FormFileUploadUploadingBtnElement
|
|
2749
|
+
extends WebflowElement,
|
|
2750
|
+
Configurable,
|
|
2751
|
+
CustomAttributes,
|
|
2752
|
+
DomId,
|
|
2753
|
+
Styles,
|
|
2754
|
+
Children,
|
|
2755
|
+
NoTextContent {
|
|
2756
|
+
readonly id: ElementId;
|
|
2757
|
+
readonly type: 'FormFileUploadUploadingBtn';
|
|
2758
|
+
readonly plugin: 'Form';
|
|
2759
|
+
}
|
|
2760
|
+
|
|
2761
|
+
interface FormFileUploadUploadingIconElement
|
|
2762
|
+
extends WebflowElement,
|
|
2763
|
+
Configurable,
|
|
2764
|
+
CustomAttributes,
|
|
2765
|
+
DomId,
|
|
2766
|
+
Styles,
|
|
2767
|
+
NoChildren,
|
|
2768
|
+
NoTextContent {
|
|
2769
|
+
readonly id: ElementId;
|
|
2770
|
+
readonly type: 'FormFileUploadUploadingIcon';
|
|
2771
|
+
readonly plugin: 'Form';
|
|
2772
|
+
}
|
|
2773
|
+
|
|
2774
|
+
interface FormFileUploadSuccessElement
|
|
2775
|
+
extends WebflowElement,
|
|
2776
|
+
Configurable,
|
|
2777
|
+
CustomAttributes,
|
|
2778
|
+
NoDomId,
|
|
2779
|
+
Styles,
|
|
2780
|
+
Children,
|
|
2781
|
+
NoTextContent {
|
|
2782
|
+
readonly id: ElementId;
|
|
2783
|
+
readonly type: 'FormFileUploadSuccess';
|
|
2784
|
+
readonly plugin: 'Form';
|
|
2785
|
+
}
|
|
2786
|
+
|
|
2787
|
+
interface FormFileUploadFileElement
|
|
2788
|
+
extends WebflowElement,
|
|
2789
|
+
Configurable,
|
|
2790
|
+
CustomAttributes,
|
|
2791
|
+
DomId,
|
|
2792
|
+
Styles,
|
|
2793
|
+
Children,
|
|
2794
|
+
NoTextContent {
|
|
2795
|
+
readonly id: ElementId;
|
|
2796
|
+
readonly type: 'FormFileUploadFile';
|
|
2797
|
+
readonly plugin: 'Form';
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2800
|
+
interface FormFileUploadFileNameElement
|
|
2801
|
+
extends WebflowElement,
|
|
2802
|
+
Configurable,
|
|
2803
|
+
CustomAttributes,
|
|
2804
|
+
DomId,
|
|
2805
|
+
Styles,
|
|
2806
|
+
NoChildren,
|
|
2807
|
+
NoTextContent {
|
|
2808
|
+
readonly id: ElementId;
|
|
2809
|
+
readonly type: 'FormFileUploadFileName';
|
|
2810
|
+
readonly plugin: 'Form';
|
|
2811
|
+
}
|
|
2812
|
+
|
|
2813
|
+
interface FormFileUploadRemoveLinkElement
|
|
2814
|
+
extends WebflowElement,
|
|
2815
|
+
Configurable,
|
|
2816
|
+
CustomAttributes,
|
|
2817
|
+
NoDomId,
|
|
2818
|
+
Styles,
|
|
2819
|
+
Children,
|
|
2820
|
+
NoTextContent {
|
|
2821
|
+
readonly id: ElementId;
|
|
2822
|
+
readonly type: 'FormFileUploadRemoveLink';
|
|
2823
|
+
readonly plugin: 'Form';
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
interface FormFileUploadErrorElement
|
|
2827
|
+
extends WebflowElement,
|
|
2828
|
+
Configurable,
|
|
2829
|
+
CustomAttributes,
|
|
2830
|
+
NoDomId,
|
|
2831
|
+
Styles,
|
|
2832
|
+
Children,
|
|
2833
|
+
NoTextContent {
|
|
2834
|
+
readonly id: ElementId;
|
|
2835
|
+
readonly type: 'FormFileUploadError';
|
|
2836
|
+
readonly plugin: 'Form';
|
|
2837
|
+
}
|
|
2838
|
+
|
|
2839
|
+
interface FormFileUploadErrorMsgElement
|
|
2840
|
+
extends WebflowElement,
|
|
2841
|
+
Configurable,
|
|
2842
|
+
CustomAttributes,
|
|
2843
|
+
DomId,
|
|
2844
|
+
Styles,
|
|
2845
|
+
NoChildren,
|
|
2846
|
+
NoTextContent {
|
|
2847
|
+
readonly id: ElementId;
|
|
2848
|
+
readonly type: 'FormFileUploadErrorMsg';
|
|
2849
|
+
readonly plugin: 'Form';
|
|
2850
|
+
}
|
|
2851
|
+
|
|
2852
|
+
interface UserFormUploadErrorMsgElement
|
|
2853
|
+
extends WebflowElement,
|
|
2854
|
+
Configurable,
|
|
2855
|
+
CustomAttributes,
|
|
2856
|
+
DomId,
|
|
2857
|
+
Styles,
|
|
2858
|
+
NoChildren,
|
|
2859
|
+
NoTextContent {
|
|
2860
|
+
readonly id: ElementId;
|
|
2861
|
+
readonly type: 'UserFormUploadErrorMsg';
|
|
2862
|
+
readonly plugin: 'Form';
|
|
2863
|
+
}
|
|
2864
|
+
|
|
2865
|
+
interface FormFileUploadInputElement
|
|
2866
|
+
extends WebflowElement,
|
|
2867
|
+
Configurable,
|
|
2868
|
+
CustomAttributes,
|
|
2869
|
+
NoDomId,
|
|
2870
|
+
Styles,
|
|
2871
|
+
NoChildren,
|
|
2872
|
+
NoTextContent {
|
|
2873
|
+
readonly id: ElementId;
|
|
2874
|
+
readonly type: 'FormFileUploadInput';
|
|
2875
|
+
readonly plugin: 'Form';
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2878
|
+
interface FormFileUploadLabelElement
|
|
2879
|
+
extends WebflowElement,
|
|
2880
|
+
Configurable,
|
|
2881
|
+
CustomAttributes,
|
|
2882
|
+
NoDomId,
|
|
2883
|
+
Styles,
|
|
2884
|
+
Children,
|
|
2885
|
+
NoTextContent {
|
|
2886
|
+
readonly id: ElementId;
|
|
2887
|
+
readonly type: 'FormFileUploadLabel';
|
|
2888
|
+
readonly plugin: 'Form';
|
|
2889
|
+
}
|
|
2890
|
+
|
|
2891
|
+
interface FormFileUploadInfoElement
|
|
2892
|
+
extends WebflowElement,
|
|
2893
|
+
Configurable,
|
|
2894
|
+
CustomAttributes,
|
|
2895
|
+
DomId,
|
|
2896
|
+
Styles,
|
|
2897
|
+
Children,
|
|
2898
|
+
NoTextContent {
|
|
2899
|
+
readonly id: ElementId;
|
|
2900
|
+
readonly type: 'FormFileUploadInfo';
|
|
2901
|
+
readonly plugin: 'Form';
|
|
2902
|
+
}
|
|
2903
|
+
|
|
2904
|
+
interface FormFileUploadTextElement
|
|
2905
|
+
extends WebflowElement,
|
|
2906
|
+
Configurable,
|
|
2907
|
+
CustomAttributes,
|
|
2908
|
+
DomId,
|
|
2909
|
+
Styles,
|
|
2910
|
+
Children,
|
|
2911
|
+
NoTextContent {
|
|
2912
|
+
readonly id: ElementId;
|
|
2913
|
+
readonly type: 'FormFileUploadText';
|
|
2914
|
+
readonly plugin: 'Form';
|
|
2915
|
+
}
|
|
2916
|
+
|
|
2917
|
+
interface IconElement
|
|
2918
|
+
extends WebflowElement,
|
|
2919
|
+
Configurable,
|
|
2920
|
+
CustomAttributes,
|
|
2921
|
+
DomId,
|
|
2922
|
+
Styles,
|
|
2923
|
+
Children,
|
|
2924
|
+
NoTextContent {
|
|
2925
|
+
readonly id: ElementId;
|
|
2926
|
+
readonly type: 'Icon';
|
|
2927
|
+
readonly plugin: 'Icon';
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
interface ContainerElement
|
|
2931
|
+
extends WebflowElement,
|
|
2932
|
+
Configurable,
|
|
2933
|
+
CustomAttributes,
|
|
2934
|
+
DomId,
|
|
2935
|
+
Styles,
|
|
2936
|
+
Children,
|
|
2937
|
+
NoTextContent {
|
|
2938
|
+
readonly id: ElementId;
|
|
2939
|
+
readonly type: 'Container';
|
|
2940
|
+
readonly plugin: 'Layout';
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
interface RowElement
|
|
2944
|
+
extends WebflowElement,
|
|
2945
|
+
Configurable,
|
|
2946
|
+
CustomAttributes,
|
|
2947
|
+
DomId,
|
|
2948
|
+
Styles,
|
|
2949
|
+
Children,
|
|
2950
|
+
NoTextContent {
|
|
2951
|
+
readonly id: ElementId;
|
|
2952
|
+
readonly type: 'Row';
|
|
2953
|
+
readonly plugin: 'Layout';
|
|
2954
|
+
}
|
|
2955
|
+
|
|
2956
|
+
interface ColumnElement
|
|
2957
|
+
extends WebflowElement,
|
|
2958
|
+
Configurable,
|
|
2959
|
+
CustomAttributes,
|
|
2960
|
+
DomId,
|
|
2961
|
+
Styles,
|
|
2962
|
+
Children,
|
|
2963
|
+
NoTextContent {
|
|
2964
|
+
readonly id: ElementId;
|
|
2965
|
+
readonly type: 'Column';
|
|
2966
|
+
readonly plugin: 'Layout';
|
|
2967
|
+
}
|
|
2968
|
+
|
|
2969
|
+
interface SectionElement
|
|
2970
|
+
extends WebflowElement,
|
|
2971
|
+
Configurable,
|
|
2972
|
+
CustomAttributes,
|
|
2973
|
+
DomId,
|
|
2974
|
+
Styles,
|
|
2975
|
+
Children,
|
|
2976
|
+
NoTextContent {
|
|
2977
|
+
readonly id: ElementId;
|
|
2978
|
+
readonly type: 'Section';
|
|
2979
|
+
readonly plugin: 'Layout';
|
|
2980
|
+
}
|
|
2981
|
+
|
|
2982
|
+
interface GridElement
|
|
2983
|
+
extends WebflowElement,
|
|
2984
|
+
Configurable,
|
|
2985
|
+
CustomAttributes,
|
|
2986
|
+
DomId,
|
|
2987
|
+
Styles,
|
|
2988
|
+
Children,
|
|
2989
|
+
NoTextContent {
|
|
2990
|
+
readonly id: ElementId;
|
|
2991
|
+
readonly type: 'Grid';
|
|
2992
|
+
readonly plugin: 'Layout';
|
|
2993
|
+
}
|
|
2994
|
+
|
|
2995
|
+
interface LayoutElement
|
|
2996
|
+
extends WebflowElement,
|
|
2997
|
+
Configurable,
|
|
2998
|
+
CustomAttributes,
|
|
2999
|
+
DomId,
|
|
3000
|
+
Styles,
|
|
3001
|
+
Children,
|
|
3002
|
+
NoTextContent {
|
|
3003
|
+
readonly id: ElementId;
|
|
3004
|
+
readonly type: 'Layout';
|
|
3005
|
+
readonly plugin: 'Layout';
|
|
3006
|
+
}
|
|
3007
|
+
|
|
3008
|
+
interface CellElement
|
|
3009
|
+
extends WebflowElement,
|
|
3010
|
+
Configurable,
|
|
3011
|
+
CustomAttributes,
|
|
3012
|
+
DomId,
|
|
3013
|
+
Styles,
|
|
3014
|
+
Children,
|
|
3015
|
+
NoTextContent {
|
|
3016
|
+
readonly id: ElementId;
|
|
3017
|
+
readonly type: 'Cell';
|
|
3018
|
+
readonly plugin: 'Layout';
|
|
3019
|
+
}
|
|
3020
|
+
|
|
3021
|
+
interface LightboxWrapperElement
|
|
3022
|
+
extends WebflowElement,
|
|
3023
|
+
Configurable,
|
|
3024
|
+
CustomAttributes,
|
|
3025
|
+
NoDomId,
|
|
3026
|
+
Styles,
|
|
3027
|
+
Children,
|
|
3028
|
+
TextContent {
|
|
3029
|
+
readonly id: ElementId;
|
|
3030
|
+
readonly type: 'LightboxWrapper';
|
|
3031
|
+
readonly plugin: 'Lightbox';
|
|
3032
|
+
}
|
|
3033
|
+
|
|
3034
|
+
interface NavbarBrandElement
|
|
3035
|
+
extends WebflowElement,
|
|
3036
|
+
Configurable,
|
|
3037
|
+
CustomAttributes,
|
|
3038
|
+
DomId,
|
|
3039
|
+
Styles,
|
|
3040
|
+
Children,
|
|
3041
|
+
NoTextContent {
|
|
3042
|
+
readonly id: ElementId;
|
|
3043
|
+
readonly type: 'NavbarBrand';
|
|
3044
|
+
readonly plugin: 'Navbar';
|
|
3045
|
+
}
|
|
3046
|
+
|
|
3047
|
+
interface NavbarButtonElement
|
|
3048
|
+
extends WebflowElement,
|
|
3049
|
+
Configurable,
|
|
3050
|
+
CustomAttributes,
|
|
3051
|
+
DomId,
|
|
3052
|
+
Styles,
|
|
3053
|
+
Children,
|
|
3054
|
+
NoTextContent {
|
|
3055
|
+
readonly id: ElementId;
|
|
3056
|
+
readonly type: 'NavbarButton';
|
|
3057
|
+
readonly plugin: 'Navbar';
|
|
3058
|
+
}
|
|
3059
|
+
|
|
3060
|
+
interface NavbarContainerElement
|
|
3061
|
+
extends WebflowElement,
|
|
3062
|
+
Configurable,
|
|
3063
|
+
CustomAttributes,
|
|
3064
|
+
DomId,
|
|
3065
|
+
Styles,
|
|
3066
|
+
Children,
|
|
3067
|
+
NoTextContent {
|
|
3068
|
+
readonly id: ElementId;
|
|
3069
|
+
readonly type: 'NavbarContainer';
|
|
3070
|
+
readonly plugin: 'Navbar';
|
|
3071
|
+
}
|
|
3072
|
+
|
|
3073
|
+
interface NavbarLinkElement
|
|
3074
|
+
extends WebflowElement,
|
|
3075
|
+
Configurable,
|
|
3076
|
+
CustomAttributes,
|
|
3077
|
+
DomId,
|
|
3078
|
+
Styles,
|
|
3079
|
+
Children,
|
|
3080
|
+
TextContent {
|
|
3081
|
+
readonly id: ElementId;
|
|
3082
|
+
readonly type: 'NavbarLink';
|
|
3083
|
+
readonly plugin: 'Navbar';
|
|
3084
|
+
}
|
|
3085
|
+
|
|
3086
|
+
interface NavbarMenuElement
|
|
3087
|
+
extends WebflowElement,
|
|
3088
|
+
Configurable,
|
|
3089
|
+
CustomAttributes,
|
|
3090
|
+
DomId,
|
|
3091
|
+
Styles,
|
|
3092
|
+
Children,
|
|
3093
|
+
NoTextContent {
|
|
3094
|
+
readonly id: ElementId;
|
|
3095
|
+
readonly type: 'NavbarMenu';
|
|
3096
|
+
readonly plugin: 'Navbar';
|
|
3097
|
+
}
|
|
3098
|
+
|
|
3099
|
+
interface NavbarWrapperElement
|
|
3100
|
+
extends WebflowElement,
|
|
3101
|
+
Configurable,
|
|
3102
|
+
CustomAttributes,
|
|
3103
|
+
DomId,
|
|
3104
|
+
Styles,
|
|
3105
|
+
Children,
|
|
3106
|
+
NoTextContent {
|
|
3107
|
+
readonly id: ElementId;
|
|
3108
|
+
readonly type: 'NavbarWrapper';
|
|
3109
|
+
readonly plugin: 'Navbar';
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
interface PaginationElement
|
|
3113
|
+
extends WebflowElement,
|
|
3114
|
+
Configurable,
|
|
3115
|
+
CustomAttributes,
|
|
3116
|
+
DomId,
|
|
3117
|
+
Styles,
|
|
3118
|
+
Children,
|
|
3119
|
+
NoTextContent {
|
|
3120
|
+
readonly id: ElementId;
|
|
3121
|
+
readonly type: 'Pagination';
|
|
3122
|
+
readonly plugin: 'Pagination';
|
|
3123
|
+
}
|
|
3124
|
+
|
|
3125
|
+
interface PaginationPreviousElement
|
|
3126
|
+
extends WebflowElement,
|
|
3127
|
+
Configurable,
|
|
3128
|
+
CustomAttributes,
|
|
3129
|
+
DomId,
|
|
3130
|
+
Styles,
|
|
3131
|
+
Children,
|
|
3132
|
+
NoTextContent {
|
|
3133
|
+
readonly id: ElementId;
|
|
3134
|
+
readonly type: 'PaginationPrevious';
|
|
3135
|
+
readonly plugin: 'Pagination';
|
|
3136
|
+
}
|
|
3137
|
+
|
|
3138
|
+
interface PaginationNextElement
|
|
3139
|
+
extends WebflowElement,
|
|
3140
|
+
Configurable,
|
|
3141
|
+
CustomAttributes,
|
|
3142
|
+
DomId,
|
|
3143
|
+
Styles,
|
|
3144
|
+
Children,
|
|
3145
|
+
NoTextContent {
|
|
3146
|
+
readonly id: ElementId;
|
|
3147
|
+
readonly type: 'PaginationNext';
|
|
3148
|
+
readonly plugin: 'Pagination';
|
|
3149
|
+
}
|
|
3150
|
+
|
|
3151
|
+
interface PaginationPreviousIconElement
|
|
3152
|
+
extends WebflowElement,
|
|
3153
|
+
Configurable,
|
|
3154
|
+
CustomAttributes,
|
|
3155
|
+
DomId,
|
|
3156
|
+
Styles,
|
|
3157
|
+
NoChildren,
|
|
3158
|
+
NoTextContent {
|
|
3159
|
+
readonly id: ElementId;
|
|
3160
|
+
readonly type: 'PaginationPreviousIcon';
|
|
3161
|
+
readonly plugin: 'Pagination';
|
|
3162
|
+
}
|
|
3163
|
+
|
|
3164
|
+
interface PaginationNextIconElement
|
|
3165
|
+
extends WebflowElement,
|
|
3166
|
+
Configurable,
|
|
3167
|
+
CustomAttributes,
|
|
3168
|
+
DomId,
|
|
3169
|
+
Styles,
|
|
3170
|
+
NoChildren,
|
|
3171
|
+
NoTextContent {
|
|
3172
|
+
readonly id: ElementId;
|
|
3173
|
+
readonly type: 'PaginationNextIcon';
|
|
3174
|
+
readonly plugin: 'Pagination';
|
|
3175
|
+
}
|
|
3176
|
+
|
|
3177
|
+
interface PaginationCountElement
|
|
3178
|
+
extends WebflowElement,
|
|
3179
|
+
Configurable,
|
|
3180
|
+
CustomAttributes,
|
|
3181
|
+
DomId,
|
|
3182
|
+
Styles,
|
|
3183
|
+
NoChildren,
|
|
3184
|
+
NoTextContent {
|
|
3185
|
+
readonly id: ElementId;
|
|
3186
|
+
readonly type: 'PaginationCount';
|
|
3187
|
+
readonly plugin: 'Pagination';
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3190
|
+
interface SliderArrowElement
|
|
3191
|
+
extends WebflowElement,
|
|
3192
|
+
Configurable,
|
|
3193
|
+
CustomAttributes,
|
|
3194
|
+
DomId,
|
|
3195
|
+
Styles,
|
|
3196
|
+
Children,
|
|
3197
|
+
NoTextContent {
|
|
3198
|
+
readonly id: ElementId;
|
|
3199
|
+
readonly type: 'SliderArrow';
|
|
3200
|
+
readonly plugin: 'Slider';
|
|
3201
|
+
}
|
|
3202
|
+
|
|
3203
|
+
interface SliderMaskElement
|
|
3204
|
+
extends WebflowElement,
|
|
3205
|
+
Configurable,
|
|
3206
|
+
CustomAttributes,
|
|
3207
|
+
DomId,
|
|
3208
|
+
Styles,
|
|
3209
|
+
Children,
|
|
3210
|
+
NoTextContent {
|
|
3211
|
+
readonly id: ElementId;
|
|
3212
|
+
readonly type: 'SliderMask';
|
|
3213
|
+
readonly plugin: 'Slider';
|
|
3214
|
+
}
|
|
3215
|
+
|
|
3216
|
+
interface SliderNavElement
|
|
3217
|
+
extends WebflowElement,
|
|
3218
|
+
Configurable,
|
|
3219
|
+
CustomAttributes,
|
|
3220
|
+
DomId,
|
|
3221
|
+
Styles,
|
|
3222
|
+
Children,
|
|
3223
|
+
NoTextContent {
|
|
3224
|
+
readonly id: ElementId;
|
|
3225
|
+
readonly type: 'SliderNav';
|
|
3226
|
+
readonly plugin: 'Slider';
|
|
3227
|
+
}
|
|
3228
|
+
|
|
3229
|
+
interface SliderSlideElement
|
|
3230
|
+
extends WebflowElement,
|
|
3231
|
+
Configurable,
|
|
3232
|
+
CustomAttributes,
|
|
3233
|
+
DomId,
|
|
3234
|
+
Styles,
|
|
3235
|
+
Children,
|
|
3236
|
+
NoTextContent {
|
|
3237
|
+
readonly id: ElementId;
|
|
3238
|
+
readonly type: 'SliderSlide';
|
|
3239
|
+
readonly plugin: 'Slider';
|
|
3240
|
+
}
|
|
3241
|
+
|
|
3242
|
+
interface SliderWrapperElement
|
|
3243
|
+
extends WebflowElement,
|
|
3244
|
+
Configurable,
|
|
3245
|
+
CustomAttributes,
|
|
3246
|
+
DomId,
|
|
3247
|
+
Styles,
|
|
3248
|
+
Children,
|
|
3249
|
+
NoTextContent {
|
|
3250
|
+
readonly id: ElementId;
|
|
3251
|
+
readonly type: 'SliderWrapper';
|
|
3252
|
+
readonly plugin: 'Slider';
|
|
3253
|
+
}
|
|
3254
|
+
|
|
3255
|
+
interface MetaElement
|
|
3256
|
+
extends WebflowElement,
|
|
3257
|
+
Configurable,
|
|
3258
|
+
NoCustomAttributes,
|
|
3259
|
+
NoDomId,
|
|
3260
|
+
NoStyles,
|
|
3261
|
+
NoChildren,
|
|
3262
|
+
NoTextContent {
|
|
3263
|
+
readonly id: ElementId;
|
|
3264
|
+
readonly type: 'Meta';
|
|
3265
|
+
readonly plugin: 'Ssr';
|
|
3266
|
+
}
|
|
3267
|
+
|
|
3268
|
+
interface TitleElement
|
|
3269
|
+
extends WebflowElement,
|
|
3270
|
+
Configurable,
|
|
3271
|
+
NoCustomAttributes,
|
|
3272
|
+
NoDomId,
|
|
3273
|
+
NoStyles,
|
|
3274
|
+
NoChildren,
|
|
3275
|
+
NoTextContent {
|
|
3276
|
+
readonly id: ElementId;
|
|
3277
|
+
readonly type: 'Title';
|
|
3278
|
+
readonly plugin: 'Ssr';
|
|
3279
|
+
}
|
|
3280
|
+
|
|
3281
|
+
interface CustomCodeElement
|
|
3282
|
+
extends WebflowElement,
|
|
3283
|
+
Configurable,
|
|
3284
|
+
NoCustomAttributes,
|
|
3285
|
+
NoDomId,
|
|
3286
|
+
NoStyles,
|
|
3287
|
+
NoChildren,
|
|
3288
|
+
NoTextContent {
|
|
3289
|
+
readonly id: ElementId;
|
|
3290
|
+
readonly type: 'CustomCode';
|
|
3291
|
+
readonly plugin: 'Ssr';
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3294
|
+
interface CommentElement
|
|
3295
|
+
extends WebflowElement,
|
|
3296
|
+
Configurable,
|
|
3297
|
+
CustomAttributes,
|
|
3298
|
+
DomId,
|
|
3299
|
+
Styles,
|
|
3300
|
+
NoChildren,
|
|
3301
|
+
NoTextContent {
|
|
3302
|
+
readonly id: ElementId;
|
|
3303
|
+
readonly type: 'Comment';
|
|
3304
|
+
readonly plugin: 'Ssr';
|
|
3305
|
+
}
|
|
3306
|
+
|
|
3307
|
+
interface FacebookPixelElement
|
|
3308
|
+
extends WebflowElement,
|
|
3309
|
+
Configurable,
|
|
3310
|
+
CustomAttributes,
|
|
3311
|
+
DomId,
|
|
3312
|
+
Styles,
|
|
3313
|
+
NoChildren,
|
|
3314
|
+
NoTextContent {
|
|
3315
|
+
readonly id: ElementId;
|
|
3316
|
+
readonly type: 'FacebookPixel';
|
|
3317
|
+
readonly plugin: 'Ssr';
|
|
3318
|
+
}
|
|
3319
|
+
|
|
3320
|
+
interface GoogleAnalyticsElement
|
|
3321
|
+
extends WebflowElement,
|
|
3322
|
+
Configurable,
|
|
3323
|
+
CustomAttributes,
|
|
3324
|
+
DomId,
|
|
3325
|
+
Styles,
|
|
3326
|
+
NoChildren,
|
|
3327
|
+
NoTextContent {
|
|
3328
|
+
readonly id: ElementId;
|
|
3329
|
+
readonly type: 'GoogleAnalytics';
|
|
3330
|
+
readonly plugin: 'Ssr';
|
|
3331
|
+
}
|
|
3332
|
+
|
|
3333
|
+
interface SymbolElement
|
|
3334
|
+
extends WebflowElement,
|
|
3335
|
+
Configurable,
|
|
3336
|
+
CustomAttributes,
|
|
3337
|
+
DomId,
|
|
3338
|
+
Styles,
|
|
3339
|
+
Children,
|
|
3340
|
+
NoTextContent {
|
|
3341
|
+
readonly id: ElementId;
|
|
3342
|
+
readonly type: 'Symbol';
|
|
3343
|
+
readonly plugin: 'Symbol';
|
|
3344
|
+
}
|
|
3345
|
+
|
|
3346
|
+
interface TabsContentElement
|
|
3347
|
+
extends WebflowElement,
|
|
3348
|
+
Configurable,
|
|
3349
|
+
CustomAttributes,
|
|
3350
|
+
DomId,
|
|
3351
|
+
Styles,
|
|
3352
|
+
Children,
|
|
3353
|
+
NoTextContent {
|
|
3354
|
+
readonly id: ElementId;
|
|
3355
|
+
readonly type: 'TabsContent';
|
|
3356
|
+
readonly plugin: 'Tabs';
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3359
|
+
interface TabsLinkElement
|
|
3360
|
+
extends WebflowElement,
|
|
3361
|
+
Configurable,
|
|
3362
|
+
CustomAttributes,
|
|
3363
|
+
DomId,
|
|
3364
|
+
Styles,
|
|
3365
|
+
Children,
|
|
3366
|
+
TextContent {
|
|
3367
|
+
readonly id: ElementId;
|
|
3368
|
+
readonly type: 'TabsLink';
|
|
3369
|
+
readonly plugin: 'Tabs';
|
|
3370
|
+
}
|
|
3371
|
+
|
|
3372
|
+
interface TabsMenuElement
|
|
3373
|
+
extends WebflowElement,
|
|
3374
|
+
Configurable,
|
|
3375
|
+
CustomAttributes,
|
|
3376
|
+
DomId,
|
|
3377
|
+
Styles,
|
|
3378
|
+
Children,
|
|
3379
|
+
NoTextContent {
|
|
3380
|
+
readonly id: ElementId;
|
|
3381
|
+
readonly type: 'TabsMenu';
|
|
3382
|
+
readonly plugin: 'Tabs';
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3385
|
+
interface TabsPaneElement
|
|
3386
|
+
extends WebflowElement,
|
|
3387
|
+
Configurable,
|
|
3388
|
+
CustomAttributes,
|
|
3389
|
+
DomId,
|
|
3390
|
+
Styles,
|
|
3391
|
+
Children,
|
|
3392
|
+
NoTextContent {
|
|
3393
|
+
readonly id: ElementId;
|
|
3394
|
+
readonly type: 'TabsPane';
|
|
3395
|
+
readonly plugin: 'Tabs';
|
|
3396
|
+
}
|
|
3397
|
+
|
|
3398
|
+
interface TabsWrapperElement
|
|
3399
|
+
extends WebflowElement,
|
|
3400
|
+
Configurable,
|
|
3401
|
+
CustomAttributes,
|
|
3402
|
+
DomId,
|
|
3403
|
+
Styles,
|
|
3404
|
+
Children,
|
|
3405
|
+
NoTextContent {
|
|
3406
|
+
readonly id: ElementId;
|
|
3407
|
+
readonly type: 'TabsWrapper';
|
|
3408
|
+
readonly plugin: 'Tabs';
|
|
3409
|
+
}
|
|
3410
|
+
|
|
3411
|
+
interface FacebookElement
|
|
3412
|
+
extends WebflowElement,
|
|
3413
|
+
Configurable,
|
|
3414
|
+
CustomAttributes,
|
|
3415
|
+
DomId,
|
|
3416
|
+
Styles,
|
|
3417
|
+
NoChildren,
|
|
3418
|
+
NoTextContent {
|
|
3419
|
+
readonly id: ElementId;
|
|
3420
|
+
readonly type: 'Facebook';
|
|
3421
|
+
readonly plugin: 'Widget';
|
|
3422
|
+
}
|
|
3423
|
+
|
|
3424
|
+
interface MapWidgetElement
|
|
3425
|
+
extends WebflowElement,
|
|
3426
|
+
Configurable,
|
|
3427
|
+
CustomAttributes,
|
|
3428
|
+
NoDomId,
|
|
3429
|
+
Styles,
|
|
3430
|
+
NoChildren,
|
|
3431
|
+
NoTextContent {
|
|
3432
|
+
readonly id: ElementId;
|
|
3433
|
+
readonly type: 'MapWidget';
|
|
3434
|
+
readonly plugin: 'Widget';
|
|
3435
|
+
}
|
|
3436
|
+
|
|
3437
|
+
interface TwitterElement
|
|
3438
|
+
extends WebflowElement,
|
|
3439
|
+
Configurable,
|
|
3440
|
+
CustomAttributes,
|
|
3441
|
+
DomId,
|
|
3442
|
+
Styles,
|
|
3443
|
+
NoChildren,
|
|
3444
|
+
NoTextContent {
|
|
3445
|
+
readonly id: ElementId;
|
|
3446
|
+
readonly type: 'Twitter';
|
|
3447
|
+
readonly plugin: 'Widget';
|
|
3448
|
+
}
|
|
3449
|
+
|
|
3450
|
+
interface GooglePlusElement
|
|
3451
|
+
extends WebflowElement,
|
|
3452
|
+
Configurable,
|
|
3453
|
+
NoCustomAttributes,
|
|
3454
|
+
NoDomId,
|
|
3455
|
+
NoStyles,
|
|
3456
|
+
NoChildren,
|
|
3457
|
+
NoTextContent {
|
|
3458
|
+
readonly id: ElementId;
|
|
3459
|
+
readonly type: 'GooglePlus';
|
|
3460
|
+
readonly plugin: 'Widget';
|
|
3461
|
+
}
|
|
3462
|
+
|
|
3463
|
+
interface UserAccountWrapperElement
|
|
3464
|
+
extends WebflowElement,
|
|
3465
|
+
Configurable,
|
|
3466
|
+
CustomAttributes,
|
|
3467
|
+
DomId,
|
|
3468
|
+
Styles,
|
|
3469
|
+
Children,
|
|
3470
|
+
NoTextContent {
|
|
3471
|
+
readonly id: ElementId;
|
|
3472
|
+
readonly type: 'UserAccountWrapper';
|
|
3473
|
+
readonly plugin: 'Users';
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3476
|
+
interface UserAccountFormWrapperElement
|
|
3477
|
+
extends WebflowElement,
|
|
3478
|
+
Configurable,
|
|
3479
|
+
CustomAttributes,
|
|
3480
|
+
DomId,
|
|
3481
|
+
Styles,
|
|
3482
|
+
Children,
|
|
3483
|
+
NoTextContent {
|
|
3484
|
+
readonly id: ElementId;
|
|
3485
|
+
readonly type: 'UserAccountFormWrapper';
|
|
3486
|
+
readonly plugin: 'Users';
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3489
|
+
interface UserAccountFormElement
|
|
3490
|
+
extends WebflowElement,
|
|
3491
|
+
Configurable,
|
|
3492
|
+
CustomAttributes,
|
|
3493
|
+
DomId,
|
|
3494
|
+
Styles,
|
|
3495
|
+
Children,
|
|
3496
|
+
NoTextContent {
|
|
3497
|
+
readonly id: ElementId;
|
|
3498
|
+
readonly type: 'UserAccountForm';
|
|
3499
|
+
readonly plugin: 'Users';
|
|
3500
|
+
}
|
|
3501
|
+
|
|
3502
|
+
interface UserAccountFormSaveButtonElement
|
|
3503
|
+
extends WebflowElement,
|
|
3504
|
+
Configurable,
|
|
3505
|
+
CustomAttributes,
|
|
3506
|
+
NoDomId,
|
|
3507
|
+
Styles,
|
|
3508
|
+
NoChildren,
|
|
3509
|
+
NoTextContent {
|
|
3510
|
+
readonly id: ElementId;
|
|
3511
|
+
readonly type: 'UserAccountFormSaveButton';
|
|
3512
|
+
readonly plugin: 'Users';
|
|
3513
|
+
}
|
|
3514
|
+
|
|
3515
|
+
interface UserAccountFormCancelButtonElement
|
|
3516
|
+
extends WebflowElement,
|
|
3517
|
+
Configurable,
|
|
3518
|
+
CustomAttributes,
|
|
3519
|
+
NoDomId,
|
|
3520
|
+
Styles,
|
|
3521
|
+
NoChildren,
|
|
3522
|
+
NoTextContent {
|
|
3523
|
+
readonly id: ElementId;
|
|
3524
|
+
readonly type: 'UserAccountFormCancelButton';
|
|
3525
|
+
readonly plugin: 'Users';
|
|
3526
|
+
}
|
|
3527
|
+
|
|
3528
|
+
interface UserAccountSubscriptionListWrapperElement
|
|
3529
|
+
extends WebflowElement,
|
|
3530
|
+
Configurable,
|
|
3531
|
+
CustomAttributes,
|
|
3532
|
+
DomId,
|
|
3533
|
+
Styles,
|
|
3534
|
+
Children,
|
|
3535
|
+
NoTextContent {
|
|
3536
|
+
readonly id: ElementId;
|
|
3537
|
+
readonly type: 'UserAccountSubscriptionListWrapper';
|
|
3538
|
+
readonly plugin: 'Users';
|
|
3539
|
+
}
|
|
3540
|
+
|
|
3541
|
+
interface UserAccountSubscriptionListEmptyElement
|
|
3542
|
+
extends WebflowElement,
|
|
3543
|
+
Configurable,
|
|
3544
|
+
CustomAttributes,
|
|
3545
|
+
DomId,
|
|
3546
|
+
Styles,
|
|
3547
|
+
Children,
|
|
3548
|
+
NoTextContent {
|
|
3549
|
+
readonly id: ElementId;
|
|
3550
|
+
readonly type: 'UserAccountSubscriptionListEmpty';
|
|
3551
|
+
readonly plugin: 'Users';
|
|
3552
|
+
}
|
|
3553
|
+
|
|
3554
|
+
interface UserAccountSubscriptionListElement
|
|
3555
|
+
extends WebflowElement,
|
|
3556
|
+
Configurable,
|
|
3557
|
+
CustomAttributes,
|
|
3558
|
+
DomId,
|
|
3559
|
+
Styles,
|
|
3560
|
+
Children,
|
|
3561
|
+
NoTextContent {
|
|
3562
|
+
readonly id: ElementId;
|
|
3563
|
+
readonly type: 'UserAccountSubscriptionList';
|
|
3564
|
+
readonly plugin: 'Users';
|
|
3565
|
+
}
|
|
3566
|
+
|
|
3567
|
+
interface UserAccountSubscriptionListItemElement
|
|
3568
|
+
extends WebflowElement,
|
|
3569
|
+
Configurable,
|
|
3570
|
+
CustomAttributes,
|
|
3571
|
+
DomId,
|
|
3572
|
+
Styles,
|
|
3573
|
+
Children,
|
|
3574
|
+
NoTextContent {
|
|
3575
|
+
readonly id: ElementId;
|
|
3576
|
+
readonly type: 'UserAccountSubscriptionListItem';
|
|
3577
|
+
readonly plugin: 'Users';
|
|
3578
|
+
}
|
|
3579
|
+
|
|
3580
|
+
interface UserAccountSubscriptionListItemInfoElement
|
|
3581
|
+
extends WebflowElement,
|
|
3582
|
+
Configurable,
|
|
3583
|
+
CustomAttributes,
|
|
3584
|
+
DomId,
|
|
3585
|
+
Styles,
|
|
3586
|
+
Children,
|
|
3587
|
+
NoTextContent {
|
|
3588
|
+
readonly id: ElementId;
|
|
3589
|
+
readonly type: 'UserAccountSubscriptionListItemInfo';
|
|
3590
|
+
readonly plugin: 'Users';
|
|
3591
|
+
}
|
|
3592
|
+
|
|
3593
|
+
interface UserAccountSubscriptionCancelButtonElement
|
|
3594
|
+
extends WebflowElement,
|
|
3595
|
+
Configurable,
|
|
3596
|
+
CustomAttributes,
|
|
3597
|
+
DomId,
|
|
3598
|
+
Styles,
|
|
3599
|
+
NoChildren,
|
|
3600
|
+
NoTextContent {
|
|
3601
|
+
readonly id: ElementId;
|
|
3602
|
+
readonly type: 'UserAccountSubscriptionCancelButton';
|
|
3603
|
+
readonly plugin: 'Users';
|
|
3604
|
+
}
|
|
3605
|
+
|
|
3606
|
+
interface UserSignUpFormWrapperElement
|
|
3607
|
+
extends WebflowElement,
|
|
3608
|
+
Configurable,
|
|
3609
|
+
CustomAttributes,
|
|
3610
|
+
DomId,
|
|
3611
|
+
Styles,
|
|
3612
|
+
Children,
|
|
3613
|
+
NoTextContent {
|
|
3614
|
+
readonly id: ElementId;
|
|
3615
|
+
readonly type: 'UserSignUpFormWrapper';
|
|
3616
|
+
readonly plugin: 'Users';
|
|
3617
|
+
}
|
|
3618
|
+
|
|
3619
|
+
interface UserSignUpFormElement
|
|
3620
|
+
extends WebflowElement,
|
|
3621
|
+
Configurable,
|
|
3622
|
+
CustomAttributes,
|
|
3623
|
+
DomId,
|
|
3624
|
+
Styles,
|
|
3625
|
+
Children,
|
|
3626
|
+
NoTextContent {
|
|
3627
|
+
readonly id: ElementId;
|
|
3628
|
+
readonly type: 'UserSignUpForm';
|
|
3629
|
+
readonly plugin: 'Users';
|
|
3630
|
+
}
|
|
3631
|
+
|
|
3632
|
+
interface UserSignUpVerificationMessageElement
|
|
3633
|
+
extends WebflowElement,
|
|
3634
|
+
Configurable,
|
|
3635
|
+
CustomAttributes,
|
|
3636
|
+
NoDomId,
|
|
3637
|
+
Styles,
|
|
3638
|
+
Children,
|
|
3639
|
+
NoTextContent {
|
|
3640
|
+
readonly id: ElementId;
|
|
3641
|
+
readonly type: 'UserSignUpVerificationMessage';
|
|
3642
|
+
readonly plugin: 'Users';
|
|
3643
|
+
}
|
|
3644
|
+
|
|
3645
|
+
interface UserSignUpRedirectWrapperElement
|
|
3646
|
+
extends WebflowElement,
|
|
3647
|
+
Configurable,
|
|
3648
|
+
CustomAttributes,
|
|
3649
|
+
NoDomId,
|
|
3650
|
+
Styles,
|
|
3651
|
+
Children,
|
|
3652
|
+
NoTextContent {
|
|
3653
|
+
readonly id: ElementId;
|
|
3654
|
+
readonly type: 'UserSignUpRedirectWrapper';
|
|
3655
|
+
readonly plugin: 'Users';
|
|
3656
|
+
}
|
|
3657
|
+
|
|
3658
|
+
interface UserSignUpTermsOfServiceWrapperElement
|
|
3659
|
+
extends WebflowElement,
|
|
3660
|
+
Configurable,
|
|
3661
|
+
CustomAttributes,
|
|
3662
|
+
DomId,
|
|
3663
|
+
Styles,
|
|
3664
|
+
Children,
|
|
3665
|
+
NoTextContent {
|
|
3666
|
+
readonly id: ElementId;
|
|
3667
|
+
readonly type: 'UserSignUpTermsOfServiceWrapper';
|
|
3668
|
+
readonly plugin: 'Users';
|
|
3669
|
+
}
|
|
3670
|
+
|
|
3671
|
+
interface UserSignUpTermsOfServiceCheckboxInputElement
|
|
3672
|
+
extends WebflowElement,
|
|
3673
|
+
Configurable,
|
|
3674
|
+
CustomAttributes,
|
|
3675
|
+
DomId,
|
|
3676
|
+
Styles,
|
|
3677
|
+
NoChildren,
|
|
3678
|
+
NoTextContent {
|
|
3679
|
+
readonly id: ElementId;
|
|
3680
|
+
readonly type: 'UserSignUpTermsOfServiceCheckboxInput';
|
|
3681
|
+
readonly plugin: 'Users';
|
|
3682
|
+
}
|
|
3683
|
+
|
|
3684
|
+
interface UserLogInFormWrapperElement
|
|
3685
|
+
extends WebflowElement,
|
|
3686
|
+
Configurable,
|
|
3687
|
+
CustomAttributes,
|
|
3688
|
+
DomId,
|
|
3689
|
+
Styles,
|
|
3690
|
+
Children,
|
|
3691
|
+
NoTextContent {
|
|
3692
|
+
readonly id: ElementId;
|
|
3693
|
+
readonly type: 'UserLogInFormWrapper';
|
|
3694
|
+
readonly plugin: 'Users';
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
interface UserLogInFormElement
|
|
3698
|
+
extends WebflowElement,
|
|
3699
|
+
Configurable,
|
|
3700
|
+
CustomAttributes,
|
|
3701
|
+
DomId,
|
|
3702
|
+
Styles,
|
|
3703
|
+
Children,
|
|
3704
|
+
NoTextContent {
|
|
3705
|
+
readonly id: ElementId;
|
|
3706
|
+
readonly type: 'UserLogInForm';
|
|
3707
|
+
readonly plugin: 'Users';
|
|
3708
|
+
}
|
|
3709
|
+
|
|
3710
|
+
interface UserUpdatePasswordFormWrapperElement
|
|
3711
|
+
extends WebflowElement,
|
|
3712
|
+
Configurable,
|
|
3713
|
+
CustomAttributes,
|
|
3714
|
+
DomId,
|
|
3715
|
+
Styles,
|
|
3716
|
+
Children,
|
|
3717
|
+
NoTextContent {
|
|
3718
|
+
readonly id: ElementId;
|
|
3719
|
+
readonly type: 'UserUpdatePasswordFormWrapper';
|
|
3720
|
+
readonly plugin: 'Users';
|
|
3721
|
+
}
|
|
3722
|
+
|
|
3723
|
+
interface UserUpdatePasswordFormElement
|
|
3724
|
+
extends WebflowElement,
|
|
3725
|
+
Configurable,
|
|
3726
|
+
CustomAttributes,
|
|
3727
|
+
DomId,
|
|
3728
|
+
Styles,
|
|
3729
|
+
Children,
|
|
3730
|
+
NoTextContent {
|
|
3731
|
+
readonly id: ElementId;
|
|
3732
|
+
readonly type: 'UserUpdatePasswordForm';
|
|
3733
|
+
readonly plugin: 'Users';
|
|
3734
|
+
}
|
|
3735
|
+
|
|
3736
|
+
interface UserResetPasswordFormWrapperElement
|
|
3737
|
+
extends WebflowElement,
|
|
3738
|
+
Configurable,
|
|
3739
|
+
CustomAttributes,
|
|
3740
|
+
DomId,
|
|
3741
|
+
Styles,
|
|
3742
|
+
Children,
|
|
3743
|
+
NoTextContent {
|
|
3744
|
+
readonly id: ElementId;
|
|
3745
|
+
readonly type: 'UserResetPasswordFormWrapper';
|
|
3746
|
+
readonly plugin: 'Users';
|
|
3747
|
+
}
|
|
3748
|
+
|
|
3749
|
+
interface UserResetPasswordFormElement
|
|
3750
|
+
extends WebflowElement,
|
|
3751
|
+
Configurable,
|
|
3752
|
+
CustomAttributes,
|
|
3753
|
+
DomId,
|
|
3754
|
+
Styles,
|
|
3755
|
+
Children,
|
|
3756
|
+
NoTextContent {
|
|
3757
|
+
readonly id: ElementId;
|
|
3758
|
+
readonly type: 'UserResetPasswordForm';
|
|
3759
|
+
readonly plugin: 'Users';
|
|
3760
|
+
}
|
|
3761
|
+
|
|
3762
|
+
interface UserLogOutLogInElement
|
|
3763
|
+
extends WebflowElement,
|
|
3764
|
+
Configurable,
|
|
3765
|
+
CustomAttributes,
|
|
3766
|
+
DomId,
|
|
3767
|
+
Styles,
|
|
3768
|
+
NoChildren,
|
|
3769
|
+
NoTextContent {
|
|
3770
|
+
readonly id: ElementId;
|
|
3771
|
+
readonly type: 'UserLogOutLogIn';
|
|
3772
|
+
readonly plugin: 'Users';
|
|
3773
|
+
}
|
|
3774
|
+
|
|
3775
|
+
interface UserFormBlockLabelElement
|
|
3776
|
+
extends WebflowElement,
|
|
3777
|
+
Configurable,
|
|
3778
|
+
CustomAttributes,
|
|
3779
|
+
DomId,
|
|
3780
|
+
Styles,
|
|
3781
|
+
Children,
|
|
3782
|
+
TextContent {
|
|
3783
|
+
readonly id: ElementId;
|
|
3784
|
+
readonly type: 'UserFormBlockLabel';
|
|
3785
|
+
readonly plugin: 'Users';
|
|
3786
|
+
}
|
|
3787
|
+
|
|
3788
|
+
interface UserFormButtonElement
|
|
3789
|
+
extends WebflowElement,
|
|
3790
|
+
Configurable,
|
|
3791
|
+
CustomAttributes,
|
|
3792
|
+
NoDomId,
|
|
3793
|
+
Styles,
|
|
3794
|
+
NoChildren,
|
|
3795
|
+
NoTextContent {
|
|
3796
|
+
readonly id: ElementId;
|
|
3797
|
+
readonly type: 'UserFormButton';
|
|
3798
|
+
readonly plugin: 'Users';
|
|
3799
|
+
}
|
|
3800
|
+
|
|
3801
|
+
interface UserFormCheckboxInputElement
|
|
3802
|
+
extends WebflowElement,
|
|
3803
|
+
Configurable,
|
|
3804
|
+
CustomAttributes,
|
|
3805
|
+
NoDomId,
|
|
3806
|
+
Styles,
|
|
3807
|
+
NoChildren,
|
|
3808
|
+
NoTextContent {
|
|
3809
|
+
readonly id: ElementId;
|
|
3810
|
+
readonly type: 'UserFormCheckboxInput';
|
|
3811
|
+
readonly plugin: 'Users';
|
|
3812
|
+
}
|
|
3813
|
+
|
|
3814
|
+
interface UserFormTextInputElement
|
|
3815
|
+
extends WebflowElement,
|
|
3816
|
+
Configurable,
|
|
3817
|
+
CustomAttributes,
|
|
3818
|
+
NoDomId,
|
|
3819
|
+
Styles,
|
|
3820
|
+
NoChildren,
|
|
3821
|
+
NoTextContent {
|
|
3822
|
+
readonly id: ElementId;
|
|
3823
|
+
readonly type: 'UserFormTextInput';
|
|
3824
|
+
readonly plugin: 'Users';
|
|
3825
|
+
}
|
|
3826
|
+
|
|
3827
|
+
interface UserFormEmailInputElement
|
|
3828
|
+
extends WebflowElement,
|
|
3829
|
+
Configurable,
|
|
3830
|
+
CustomAttributes,
|
|
3831
|
+
NoDomId,
|
|
3832
|
+
Styles,
|
|
3833
|
+
NoChildren,
|
|
3834
|
+
NoTextContent {
|
|
3835
|
+
readonly id: ElementId;
|
|
3836
|
+
readonly type: 'UserFormEmailInput';
|
|
3837
|
+
readonly plugin: 'Users';
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3840
|
+
interface UserFormNameInputElement
|
|
3841
|
+
extends WebflowElement,
|
|
3842
|
+
Configurable,
|
|
3843
|
+
CustomAttributes,
|
|
3844
|
+
NoDomId,
|
|
3845
|
+
Styles,
|
|
3846
|
+
NoChildren,
|
|
3847
|
+
NoTextContent {
|
|
3848
|
+
readonly id: ElementId;
|
|
3849
|
+
readonly type: 'UserFormNameInput';
|
|
3850
|
+
readonly plugin: 'Users';
|
|
3851
|
+
}
|
|
3852
|
+
|
|
3853
|
+
interface UserFormPasswordInputElement
|
|
3854
|
+
extends WebflowElement,
|
|
3855
|
+
Configurable,
|
|
3856
|
+
CustomAttributes,
|
|
3857
|
+
NoDomId,
|
|
3858
|
+
Styles,
|
|
3859
|
+
NoChildren,
|
|
3860
|
+
NoTextContent {
|
|
3861
|
+
readonly id: ElementId;
|
|
3862
|
+
readonly type: 'UserFormPasswordInput';
|
|
3863
|
+
readonly plugin: 'Users';
|
|
3864
|
+
}
|
|
3865
|
+
|
|
3866
|
+
interface UserFormSelectElement
|
|
3867
|
+
extends WebflowElement,
|
|
3868
|
+
Configurable,
|
|
3869
|
+
CustomAttributes,
|
|
3870
|
+
NoDomId,
|
|
3871
|
+
Styles,
|
|
3872
|
+
NoChildren,
|
|
3873
|
+
NoTextContent {
|
|
3874
|
+
readonly id: ElementId;
|
|
3875
|
+
readonly type: 'UserFormSelect';
|
|
3876
|
+
readonly plugin: 'Users';
|
|
3877
|
+
}
|
|
3878
|
+
|
|
3879
|
+
interface UserFormNumberInputElement
|
|
3880
|
+
extends WebflowElement,
|
|
3881
|
+
Configurable,
|
|
3882
|
+
CustomAttributes,
|
|
3883
|
+
NoDomId,
|
|
3884
|
+
Styles,
|
|
3885
|
+
NoChildren,
|
|
3886
|
+
NoTextContent {
|
|
3887
|
+
readonly id: ElementId;
|
|
3888
|
+
readonly type: 'UserFormNumberInput';
|
|
3889
|
+
readonly plugin: 'Users';
|
|
3890
|
+
}
|
|
3891
|
+
|
|
3892
|
+
interface UserFormFileUploadInputElement
|
|
3893
|
+
extends WebflowElement,
|
|
3894
|
+
Configurable,
|
|
3895
|
+
CustomAttributes,
|
|
3896
|
+
NoDomId,
|
|
3897
|
+
Styles,
|
|
3898
|
+
NoChildren,
|
|
3899
|
+
NoTextContent {
|
|
3900
|
+
readonly id: ElementId;
|
|
3901
|
+
readonly type: 'UserFormFileUploadInput';
|
|
3902
|
+
readonly plugin: 'Users';
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3905
|
+
interface UserFormUploadNameElement
|
|
3906
|
+
extends WebflowElement,
|
|
3907
|
+
Configurable,
|
|
3908
|
+
CustomAttributes,
|
|
3909
|
+
DomId,
|
|
3910
|
+
Styles,
|
|
3911
|
+
Children,
|
|
3912
|
+
NoTextContent {
|
|
3913
|
+
readonly id: ElementId;
|
|
3914
|
+
readonly type: 'UserFormUploadName';
|
|
3915
|
+
readonly plugin: 'Users';
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
interface UserFormHeaderElement
|
|
3919
|
+
extends WebflowElement,
|
|
3920
|
+
Configurable,
|
|
3921
|
+
CustomAttributes,
|
|
3922
|
+
DomId,
|
|
3923
|
+
Styles,
|
|
3924
|
+
Children,
|
|
3925
|
+
NoTextContent {
|
|
3926
|
+
readonly id: ElementId;
|
|
3927
|
+
readonly type: 'UserFormHeader';
|
|
3928
|
+
readonly plugin: 'Users';
|
|
3929
|
+
}
|
|
3930
|
+
|
|
3931
|
+
interface UserFormFooterElement
|
|
3932
|
+
extends WebflowElement,
|
|
3933
|
+
Configurable,
|
|
3934
|
+
CustomAttributes,
|
|
3935
|
+
DomId,
|
|
3936
|
+
Styles,
|
|
3937
|
+
Children,
|
|
3938
|
+
NoTextContent {
|
|
3939
|
+
readonly id: ElementId;
|
|
3940
|
+
readonly type: 'UserFormFooter';
|
|
3941
|
+
readonly plugin: 'Users';
|
|
3942
|
+
}
|
|
3943
|
+
|
|
3944
|
+
interface UserFormPageWrapElement
|
|
3945
|
+
extends WebflowElement,
|
|
3946
|
+
Configurable,
|
|
3947
|
+
CustomAttributes,
|
|
3948
|
+
DomId,
|
|
3949
|
+
Styles,
|
|
3950
|
+
Children,
|
|
3951
|
+
NoTextContent {
|
|
3952
|
+
readonly id: ElementId;
|
|
3953
|
+
readonly type: 'UserFormPageWrap';
|
|
3954
|
+
readonly plugin: 'Users';
|
|
3955
|
+
}
|
|
3956
|
+
|
|
3957
|
+
interface BlockContentElement
|
|
3958
|
+
extends WebflowElement,
|
|
3959
|
+
Configurable,
|
|
3960
|
+
CustomAttributes,
|
|
3961
|
+
DomId,
|
|
3962
|
+
Styles,
|
|
3963
|
+
Children,
|
|
3964
|
+
NoTextContent {
|
|
3965
|
+
readonly id: ElementId;
|
|
3966
|
+
readonly type: 'BlockContent';
|
|
3967
|
+
readonly plugin: 'Users';
|
|
3968
|
+
}
|
|
3969
|
+
|
|
3970
|
+
interface BlockHeaderElement
|
|
3971
|
+
extends WebflowElement,
|
|
3972
|
+
Configurable,
|
|
3973
|
+
CustomAttributes,
|
|
3974
|
+
DomId,
|
|
3975
|
+
Styles,
|
|
3976
|
+
Children,
|
|
3977
|
+
NoTextContent {
|
|
3978
|
+
readonly id: ElementId;
|
|
3979
|
+
readonly type: 'BlockHeader';
|
|
3980
|
+
readonly plugin: 'Users';
|
|
3981
|
+
}
|
|
3982
|
+
|
|
3983
|
+
interface FlexColumnElement
|
|
3984
|
+
extends WebflowElement,
|
|
3985
|
+
Configurable,
|
|
3986
|
+
CustomAttributes,
|
|
3987
|
+
DomId,
|
|
3988
|
+
Styles,
|
|
3989
|
+
Children,
|
|
3990
|
+
NoTextContent {
|
|
3991
|
+
readonly id: ElementId;
|
|
3992
|
+
readonly type: 'FlexColumn';
|
|
3993
|
+
readonly plugin: 'Users';
|
|
3994
|
+
}
|
|
3995
|
+
|
|
3996
|
+
interface GridRowElement
|
|
3997
|
+
extends WebflowElement,
|
|
3998
|
+
Configurable,
|
|
3999
|
+
CustomAttributes,
|
|
4000
|
+
DomId,
|
|
4001
|
+
Styles,
|
|
4002
|
+
Children,
|
|
4003
|
+
NoTextContent {
|
|
4004
|
+
readonly id: ElementId;
|
|
4005
|
+
readonly type: 'GridRow';
|
|
4006
|
+
readonly plugin: 'Users';
|
|
4007
|
+
}
|
|
4008
|
+
|
|
4009
|
+
interface UserFormSuccessStateElement
|
|
4010
|
+
extends WebflowElement,
|
|
4011
|
+
Configurable,
|
|
4012
|
+
CustomAttributes,
|
|
4013
|
+
NoDomId,
|
|
4014
|
+
Styles,
|
|
4015
|
+
Children,
|
|
4016
|
+
NoTextContent {
|
|
4017
|
+
readonly id: ElementId;
|
|
4018
|
+
readonly type: 'UserFormSuccessState';
|
|
4019
|
+
readonly plugin: 'Users';
|
|
4020
|
+
}
|
|
4021
|
+
|
|
4022
|
+
interface UserFormErrorStateElement
|
|
4023
|
+
extends WebflowElement,
|
|
4024
|
+
Configurable,
|
|
4025
|
+
CustomAttributes,
|
|
4026
|
+
DomId,
|
|
4027
|
+
Styles,
|
|
4028
|
+
Children,
|
|
4029
|
+
NoTextContent {
|
|
4030
|
+
readonly id: ElementId;
|
|
4031
|
+
readonly type: 'UserFormErrorState';
|
|
4032
|
+
readonly plugin: 'Users';
|
|
4033
|
+
}
|
|
4034
|
+
|
|
4035
|
+
interface UserFormErrorStateStyleVariant1Element
|
|
4036
|
+
extends WebflowElement,
|
|
4037
|
+
Configurable,
|
|
4038
|
+
CustomAttributes,
|
|
4039
|
+
DomId,
|
|
4040
|
+
Styles,
|
|
4041
|
+
Children,
|
|
4042
|
+
NoTextContent {
|
|
4043
|
+
readonly id: ElementId;
|
|
4044
|
+
readonly type: 'UserFormErrorStateStyleVariant1';
|
|
4045
|
+
readonly plugin: 'Users';
|
|
4046
|
+
}
|
|
4047
|
+
|
|
4048
|
+
interface UserLogInErrorMsgElement
|
|
4049
|
+
extends WebflowElement,
|
|
4050
|
+
Configurable,
|
|
4051
|
+
NoCustomAttributes,
|
|
4052
|
+
NoDomId,
|
|
4053
|
+
NoStyles,
|
|
4054
|
+
NoChildren,
|
|
4055
|
+
NoTextContent {
|
|
4056
|
+
readonly id: ElementId;
|
|
4057
|
+
readonly type: 'UserLogInErrorMsg';
|
|
4058
|
+
readonly plugin: 'Users';
|
|
4059
|
+
}
|
|
4060
|
+
|
|
4061
|
+
interface UserSignUpErrorMsgElement
|
|
4062
|
+
extends WebflowElement,
|
|
4063
|
+
Configurable,
|
|
4064
|
+
NoCustomAttributes,
|
|
4065
|
+
NoDomId,
|
|
4066
|
+
NoStyles,
|
|
4067
|
+
NoChildren,
|
|
4068
|
+
NoTextContent {
|
|
4069
|
+
readonly id: ElementId;
|
|
4070
|
+
readonly type: 'UserSignUpErrorMsg';
|
|
4071
|
+
readonly plugin: 'Users';
|
|
4072
|
+
}
|
|
4073
|
+
|
|
4074
|
+
interface UserResetPasswordErrorMsgElement
|
|
4075
|
+
extends WebflowElement,
|
|
4076
|
+
Configurable,
|
|
4077
|
+
NoCustomAttributes,
|
|
4078
|
+
NoDomId,
|
|
4079
|
+
NoStyles,
|
|
4080
|
+
NoChildren,
|
|
4081
|
+
NoTextContent {
|
|
4082
|
+
readonly id: ElementId;
|
|
4083
|
+
readonly type: 'UserResetPasswordErrorMsg';
|
|
4084
|
+
readonly plugin: 'Users';
|
|
4085
|
+
}
|
|
4086
|
+
|
|
4087
|
+
interface UserUpdatePasswordErrorMsgElement
|
|
4088
|
+
extends WebflowElement,
|
|
4089
|
+
Configurable,
|
|
4090
|
+
NoCustomAttributes,
|
|
4091
|
+
NoDomId,
|
|
4092
|
+
NoStyles,
|
|
4093
|
+
NoChildren,
|
|
4094
|
+
NoTextContent {
|
|
4095
|
+
readonly id: ElementId;
|
|
4096
|
+
readonly type: 'UserUpdatePasswordErrorMsg';
|
|
4097
|
+
readonly plugin: 'Users';
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4100
|
+
interface UserErrorMsgElement
|
|
4101
|
+
extends WebflowElement,
|
|
4102
|
+
Configurable,
|
|
4103
|
+
CustomAttributes,
|
|
4104
|
+
DomId,
|
|
4105
|
+
Styles,
|
|
4106
|
+
NoChildren,
|
|
4107
|
+
NoTextContent {
|
|
4108
|
+
readonly id: ElementId;
|
|
4109
|
+
readonly type: 'UserErrorMsg';
|
|
4110
|
+
readonly plugin: 'Users';
|
|
4111
|
+
}
|
|
4112
|
+
|
|
4113
|
+
declare type AnyElement =
|
|
4114
|
+
| UnknownElement
|
|
4115
|
+
| DOMElement
|
|
4116
|
+
| AnimationElement
|
|
4117
|
+
| BlockElement
|
|
4118
|
+
| BlockquoteElement
|
|
4119
|
+
| EmphasizedElement
|
|
4120
|
+
| FigcaptionElement
|
|
4121
|
+
| FigureElement
|
|
4122
|
+
| HeadingElement
|
|
4123
|
+
| IframeElement
|
|
4124
|
+
| ImageElement
|
|
4125
|
+
| LinkElement
|
|
4126
|
+
| ListElement
|
|
4127
|
+
| ListItemElement
|
|
4128
|
+
| ParagraphElement
|
|
4129
|
+
| RichTextElement
|
|
4130
|
+
| SpanElement
|
|
4131
|
+
| StringElement
|
|
4132
|
+
| StrongElement
|
|
4133
|
+
| SuperscriptElement
|
|
4134
|
+
| SubscriptElement
|
|
4135
|
+
| SearchFormElement
|
|
4136
|
+
| SearchInputElement
|
|
4137
|
+
| SearchButtonElement
|
|
4138
|
+
| SearchResultEmptyElement
|
|
4139
|
+
| SearchResultWrapperElement
|
|
4140
|
+
| SearchResultListElement
|
|
4141
|
+
| SearchResultItemElement
|
|
4142
|
+
| BackgroundVideoWrapperElement
|
|
4143
|
+
| BackgroundVideoPlayPauseButtonElement
|
|
4144
|
+
| BackgroundVideoPlayPauseButtonPlayingElement
|
|
4145
|
+
| BackgroundVideoPlayPauseButtonPausedElement
|
|
4146
|
+
| BodyElement
|
|
4147
|
+
| CommerceAddToCartFormElement
|
|
4148
|
+
| CommerceAddToCartButtonElement
|
|
4149
|
+
| CommerceAddToCartWrapperElement
|
|
4150
|
+
| CommerceAddToCartQuantityInputElement
|
|
4151
|
+
| CommerceAddToCartErrorElement
|
|
4152
|
+
| CommerceAddToCartOutOfStockElement
|
|
4153
|
+
| CommerceAddToCartOptionListElement
|
|
4154
|
+
| CommerceAddToCartOptionListWithSelectorTypesElement
|
|
4155
|
+
| CommerceAddToCartOptionElement
|
|
4156
|
+
| CommerceAddToCartOptionLabelElement
|
|
4157
|
+
| CommerceAddToCartOptionSelectElement
|
|
4158
|
+
| CommerceAddToCartOptionPillGroupElement
|
|
4159
|
+
| CommerceAddToCartOptionPillElement
|
|
4160
|
+
| CommerceBuyNowButtonElement
|
|
4161
|
+
| CommerceCartWrapperElement
|
|
4162
|
+
| CommerceCartOpenLinkElement
|
|
4163
|
+
| CommerceCartOpenLinkCountElement
|
|
4164
|
+
| CommerceCartOpenLinkIconElement
|
|
4165
|
+
| CommerceCartContainerWrapperElement
|
|
4166
|
+
| CommerceCartContainerElement
|
|
4167
|
+
| CommerceCartHeaderElement
|
|
4168
|
+
| CommerceCartHeadingElement
|
|
4169
|
+
| CommerceCartFormWrapperElement
|
|
4170
|
+
| CommerceCartFormElement
|
|
4171
|
+
| CommerceCartEmptyStateElement
|
|
4172
|
+
| CommerceCartErrorStateElement
|
|
4173
|
+
| CommerceCartListElement
|
|
4174
|
+
| CommerceCartFooterElement
|
|
4175
|
+
| CommerceCartLineItemElement
|
|
4176
|
+
| CommerceCartCheckoutButtonElement
|
|
4177
|
+
| CommerceCartItemElement
|
|
4178
|
+
| CommerceCartItemImageElement
|
|
4179
|
+
| CommerceCartItemInfoElement
|
|
4180
|
+
| CommerceCartProductNameElement
|
|
4181
|
+
| CommerceCartProductPriceElement
|
|
4182
|
+
| CommerceCartQuantityElement
|
|
4183
|
+
| CommerceCartCloseLinkElement
|
|
4184
|
+
| CommerceCartCloseLinkIconElement
|
|
4185
|
+
| CommerceCartRemoveLinkElement
|
|
4186
|
+
| CommerceCartOrderValueElement
|
|
4187
|
+
| CommerceCartCheckoutActionsElement
|
|
4188
|
+
| CommerceCartOptionListElement
|
|
4189
|
+
| CommerceCartOptionListItemElement
|
|
4190
|
+
| CommerceCartOptionListItemLabelElement
|
|
4191
|
+
| CommerceCartOptionListItemValueElement
|
|
4192
|
+
| CommerceCartQuickCheckoutActionsElement
|
|
4193
|
+
| CommerceCartQuickCheckoutButtonElement
|
|
4194
|
+
| CommerceCartApplePayButtonElement
|
|
4195
|
+
| CommerceCartApplePayIconElement
|
|
4196
|
+
| CommerceQuickCheckoutGoogleIconElement
|
|
4197
|
+
| CommerceQuickCheckoutMicrosoftIconElement
|
|
4198
|
+
| CommercePayPalCheckoutButtonElement
|
|
4199
|
+
| CommerceCheckoutBlockContentElement
|
|
4200
|
+
| CommerceCheckoutBlockHeaderElement
|
|
4201
|
+
| CommerceCheckoutColumnElement
|
|
4202
|
+
| CommerceCheckoutFormContainerElement
|
|
4203
|
+
| CommerceCheckoutRowElement
|
|
4204
|
+
| CommerceCheckoutLabelElement
|
|
4205
|
+
| CommerceLabelElement
|
|
4206
|
+
| CommerceCheckoutCardExpirationDateElement
|
|
4207
|
+
| CommerceCheckoutCardNumberElement
|
|
4208
|
+
| CommerceCheckoutCardSecurityCodeElement
|
|
4209
|
+
| CommerceCheckoutCustomerInfoWrapperElement
|
|
4210
|
+
| CommerceCheckoutErrorStateElement
|
|
4211
|
+
| CommerceCheckoutPaymentInfoWrapperElement
|
|
4212
|
+
| CommerceCheckoutPlaceOrderButtonElement
|
|
4213
|
+
| CommerceCheckoutEmailInputElement
|
|
4214
|
+
| CommerceCheckoutShippingAddressWrapperElement
|
|
4215
|
+
| CommerceCheckoutShippingCountrySelectorElement
|
|
4216
|
+
| CommerceCheckoutShippingFullNameElement
|
|
4217
|
+
| CommerceCheckoutShippingStreetAddressElement
|
|
4218
|
+
| CommerceCheckoutShippingStreetAddressOptionalElement
|
|
4219
|
+
| CommerceCheckoutShippingCityElement
|
|
4220
|
+
| CommerceCheckoutShippingZipPostalCodeElement
|
|
4221
|
+
| CommerceCheckoutShippingStateProvinceElement
|
|
4222
|
+
| CommerceOrderConfirmationElement
|
|
4223
|
+
| CommerceOrderConfirmationContainerElement
|
|
4224
|
+
| CommerceOrderConfirmationHeaderWrapperElement
|
|
4225
|
+
| CommerceCheckoutBillingAddressWrapperElement
|
|
4226
|
+
| CommerceCheckoutBillingCountrySelectorElement
|
|
4227
|
+
| CommerceCheckoutBillingFullNameElement
|
|
4228
|
+
| CommerceCheckoutBillingStreetAddressElement
|
|
4229
|
+
| CommerceCheckoutBillingStreetAddressOptionalElement
|
|
4230
|
+
| CommerceCheckoutBillingCityElement
|
|
4231
|
+
| CommerceCheckoutBillingZipPostalCodeElement
|
|
4232
|
+
| CommerceCheckoutBillingStateProvinceElement
|
|
4233
|
+
| CommerceCheckoutBillingAddressToggleWrapperElement
|
|
4234
|
+
| CommerceCheckoutBillingAddressToggleCheckboxElement
|
|
4235
|
+
| CommerceCheckoutBillingAddressToggleLabelElement
|
|
4236
|
+
| CommerceCheckoutOrderItemsWrapperElement
|
|
4237
|
+
| CommerceCheckoutOrderItemsListElement
|
|
4238
|
+
| CommerceCheckoutOrderItemElement
|
|
4239
|
+
| CommerceBoldTextBlockElement
|
|
4240
|
+
| CommerceCheckoutOrderItemDescriptionWrapperElement
|
|
4241
|
+
| CommerceCheckoutOrderItemQuantityWrapperElement
|
|
4242
|
+
| CommerceCheckoutOrderItemOptionListElement
|
|
4243
|
+
| CommerceCheckoutOrderItemOptionListItemElement
|
|
4244
|
+
| CommerceCheckoutOrderItemOptionListItemLabelElement
|
|
4245
|
+
| CommerceCheckoutOrderItemOptionListItemValueElement
|
|
4246
|
+
| CommerceCheckoutOrderItemTrialTextWrapperElement
|
|
4247
|
+
| CommerceCheckoutShippingMethodsWrapperElement
|
|
4248
|
+
| CommerceCheckoutShippingMethodsEmptyStateElement
|
|
4249
|
+
| CommerceCheckoutShippingMethodsListElement
|
|
4250
|
+
| CommerceCheckoutShippingMethodItemElement
|
|
4251
|
+
| CommerceCheckoutShippingMethodRadioButtonElement
|
|
4252
|
+
| CommerceCheckoutShippingMethodDescriptionBlockElement
|
|
4253
|
+
| CommerceCheckoutShippingMethodNameBlockElement
|
|
4254
|
+
| CommerceCheckoutShippingMethodBlockWrapperElement
|
|
4255
|
+
| CommerceCheckoutCustomerInfoSummaryWrapperElement
|
|
4256
|
+
| CommerceCheckoutShippingSummaryWrapperElement
|
|
4257
|
+
| CommerceCheckoutPaymentSummaryWrapperElement
|
|
4258
|
+
| CommerceCheckoutOrderSummaryWrapperElement
|
|
4259
|
+
| CommerceCheckoutSummaryItemElement
|
|
4260
|
+
| CommerceCheckoutSummaryLabelElement
|
|
4261
|
+
| CommerceCheckoutSummaryBlockHeaderElement
|
|
4262
|
+
| CommerceCheckoutSummaryLineItemElement
|
|
4263
|
+
| CommerceCheckoutSummaryTotalElement
|
|
4264
|
+
| CommerceCheckoutSummaryTextSpacingOnDivElement
|
|
4265
|
+
| CommerceCheckoutSummaryFlexBoxDivElement
|
|
4266
|
+
| CommerceCheckoutOrderItemDescriptionPriceElement
|
|
4267
|
+
| CommerceCheckoutOrderSummaryExtraItemsListElement
|
|
4268
|
+
| CommerceCheckoutOrderSummaryExtraItemsListItemElement
|
|
4269
|
+
| CommerceCheckoutErrorMsgElement
|
|
4270
|
+
| CommerceCartErrorMsgElement
|
|
4271
|
+
| CommerceAddToCartErrorMsgElement
|
|
4272
|
+
| CommerceLayoutMainElement
|
|
4273
|
+
| CommerceLayoutSidebarElement
|
|
4274
|
+
| CommerceLayoutContainerElement
|
|
4275
|
+
| CommercePaypalCheckoutFormContainerElement
|
|
4276
|
+
| CommercePaypalCheckoutErrorStateElement
|
|
4277
|
+
| CommercePaypalCheckoutErrorMessageElement
|
|
4278
|
+
| CommerceCheckoutAdditionalInputsContainerElement
|
|
4279
|
+
| CommerceCheckoutAdditionalInfoSummaryWrapperElement
|
|
4280
|
+
| CommerceCheckoutAdditionalTextAreaElement
|
|
4281
|
+
| CommerceCheckoutAdditionalTextInputElement
|
|
4282
|
+
| CommerceCheckoutAdditionalCheckboxElement
|
|
4283
|
+
| CommerceCheckoutAdditionalCheckboxWrapperElement
|
|
4284
|
+
| CommerceCheckoutDiscountsElement
|
|
4285
|
+
| CommerceCheckoutDiscountsButtonElement
|
|
4286
|
+
| CommerceCheckoutDiscountsInputElement
|
|
4287
|
+
| CommerceCheckoutDiscountsLabelElement
|
|
4288
|
+
| CommerceDownloadsWrapperElement
|
|
4289
|
+
| CommerceDownloadsListElement
|
|
4290
|
+
| CommerceDownloadsItemElement
|
|
4291
|
+
| DropdownLinkElement
|
|
4292
|
+
| DropdownListElement
|
|
4293
|
+
| DropdownToggleElement
|
|
4294
|
+
| DropdownWrapperElement
|
|
4295
|
+
| DynamoWrapperElement
|
|
4296
|
+
| DynamoListElement
|
|
4297
|
+
| DynamoItemElement
|
|
4298
|
+
| DynamoEmptyElement
|
|
4299
|
+
| HtmlEmbedElement
|
|
4300
|
+
| VideoElement
|
|
4301
|
+
| YouTubeVideoElement
|
|
4302
|
+
| FormBlockLabelElement
|
|
4303
|
+
| FormButtonElement
|
|
4304
|
+
| FormCheckboxInputElement
|
|
4305
|
+
| FormCheckboxWrapperElement
|
|
4306
|
+
| FormErrorMessageElement
|
|
4307
|
+
| FormFormElement
|
|
4308
|
+
| FormInlineLabelElement
|
|
4309
|
+
| FormRadioInputElement
|
|
4310
|
+
| FormRadioWrapperElement
|
|
4311
|
+
| FormSelectElement
|
|
4312
|
+
| FormSuccessMessageElement
|
|
4313
|
+
| FormTextareaElement
|
|
4314
|
+
| FormTextInputElement
|
|
4315
|
+
| FormWrapperElement
|
|
4316
|
+
| FormReCaptchaElement
|
|
4317
|
+
| FormFileUploadWrapperElement
|
|
4318
|
+
| FormFileUploadDefaultElement
|
|
4319
|
+
| FormFileUploadUploadingElement
|
|
4320
|
+
| FormFileUploadUploadingBtnElement
|
|
4321
|
+
| FormFileUploadUploadingIconElement
|
|
4322
|
+
| FormFileUploadSuccessElement
|
|
4323
|
+
| FormFileUploadFileElement
|
|
4324
|
+
| FormFileUploadFileNameElement
|
|
4325
|
+
| FormFileUploadRemoveLinkElement
|
|
4326
|
+
| FormFileUploadErrorElement
|
|
4327
|
+
| FormFileUploadErrorMsgElement
|
|
4328
|
+
| UserFormUploadErrorMsgElement
|
|
4329
|
+
| FormFileUploadInputElement
|
|
4330
|
+
| FormFileUploadLabelElement
|
|
4331
|
+
| FormFileUploadInfoElement
|
|
4332
|
+
| FormFileUploadTextElement
|
|
4333
|
+
| IconElement
|
|
4334
|
+
| ContainerElement
|
|
4335
|
+
| RowElement
|
|
4336
|
+
| ColumnElement
|
|
4337
|
+
| SectionElement
|
|
4338
|
+
| GridElement
|
|
4339
|
+
| LayoutElement
|
|
4340
|
+
| CellElement
|
|
4341
|
+
| LightboxWrapperElement
|
|
4342
|
+
| NavbarBrandElement
|
|
4343
|
+
| NavbarButtonElement
|
|
4344
|
+
| NavbarContainerElement
|
|
4345
|
+
| NavbarLinkElement
|
|
4346
|
+
| NavbarMenuElement
|
|
4347
|
+
| NavbarWrapperElement
|
|
4348
|
+
| PaginationElement
|
|
4349
|
+
| PaginationPreviousElement
|
|
4350
|
+
| PaginationNextElement
|
|
4351
|
+
| PaginationPreviousIconElement
|
|
4352
|
+
| PaginationNextIconElement
|
|
4353
|
+
| PaginationCountElement
|
|
4354
|
+
| SliderArrowElement
|
|
4355
|
+
| SliderMaskElement
|
|
4356
|
+
| SliderNavElement
|
|
4357
|
+
| SliderSlideElement
|
|
4358
|
+
| SliderWrapperElement
|
|
4359
|
+
| MetaElement
|
|
4360
|
+
| TitleElement
|
|
4361
|
+
| CustomCodeElement
|
|
4362
|
+
| CommentElement
|
|
4363
|
+
| FacebookPixelElement
|
|
4364
|
+
| GoogleAnalyticsElement
|
|
4365
|
+
| SymbolElement
|
|
4366
|
+
| TabsContentElement
|
|
4367
|
+
| TabsLinkElement
|
|
4368
|
+
| TabsMenuElement
|
|
4369
|
+
| TabsPaneElement
|
|
4370
|
+
| TabsWrapperElement
|
|
4371
|
+
| FacebookElement
|
|
4372
|
+
| MapWidgetElement
|
|
4373
|
+
| TwitterElement
|
|
4374
|
+
| GooglePlusElement
|
|
4375
|
+
| UserAccountWrapperElement
|
|
4376
|
+
| UserAccountFormWrapperElement
|
|
4377
|
+
| UserAccountFormElement
|
|
4378
|
+
| UserAccountFormSaveButtonElement
|
|
4379
|
+
| UserAccountFormCancelButtonElement
|
|
4380
|
+
| UserAccountSubscriptionListWrapperElement
|
|
4381
|
+
| UserAccountSubscriptionListEmptyElement
|
|
4382
|
+
| UserAccountSubscriptionListElement
|
|
4383
|
+
| UserAccountSubscriptionListItemElement
|
|
4384
|
+
| UserAccountSubscriptionListItemInfoElement
|
|
4385
|
+
| UserAccountSubscriptionCancelButtonElement
|
|
4386
|
+
| UserSignUpFormWrapperElement
|
|
4387
|
+
| UserSignUpFormElement
|
|
4388
|
+
| UserSignUpVerificationMessageElement
|
|
4389
|
+
| UserSignUpRedirectWrapperElement
|
|
4390
|
+
| UserSignUpTermsOfServiceWrapperElement
|
|
4391
|
+
| UserSignUpTermsOfServiceCheckboxInputElement
|
|
4392
|
+
| UserLogInFormWrapperElement
|
|
4393
|
+
| UserLogInFormElement
|
|
4394
|
+
| UserUpdatePasswordFormWrapperElement
|
|
4395
|
+
| UserUpdatePasswordFormElement
|
|
4396
|
+
| UserResetPasswordFormWrapperElement
|
|
4397
|
+
| UserResetPasswordFormElement
|
|
4398
|
+
| UserLogOutLogInElement
|
|
4399
|
+
| UserFormBlockLabelElement
|
|
4400
|
+
| UserFormButtonElement
|
|
4401
|
+
| UserFormCheckboxInputElement
|
|
4402
|
+
| UserFormTextInputElement
|
|
4403
|
+
| UserFormEmailInputElement
|
|
4404
|
+
| UserFormNameInputElement
|
|
4405
|
+
| UserFormPasswordInputElement
|
|
4406
|
+
| UserFormSelectElement
|
|
4407
|
+
| UserFormNumberInputElement
|
|
4408
|
+
| UserFormFileUploadInputElement
|
|
4409
|
+
| UserFormUploadNameElement
|
|
4410
|
+
| UserFormHeaderElement
|
|
4411
|
+
| UserFormFooterElement
|
|
4412
|
+
| UserFormPageWrapElement
|
|
4413
|
+
| BlockContentElement
|
|
4414
|
+
| BlockHeaderElement
|
|
4415
|
+
| FlexColumnElement
|
|
4416
|
+
| GridRowElement
|
|
4417
|
+
| UserFormSuccessStateElement
|
|
4418
|
+
| UserFormErrorStateElement
|
|
4419
|
+
| UserFormErrorStateStyleVariant1Element
|
|
4420
|
+
| UserLogInErrorMsgElement
|
|
4421
|
+
| UserSignUpErrorMsgElement
|
|
4422
|
+
| UserResetPasswordErrorMsgElement
|
|
4423
|
+
| UserUpdatePasswordErrorMsgElement
|
|
4424
|
+
| UserErrorMsgElement;
|