@webflow/designer-extension-typings 2.0.30 → 2.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.d.ts +25 -0
- package/components.d.ts +337 -0
- package/element-presets-generated.d.ts +2 -0
- package/element-settings-generated.d.ts +24 -2
- package/element-settings.d.ts +89 -1
- package/elements-generated.d.ts +357 -2
- package/elements.d.ts +5 -0
- package/instance-props.d.ts +192 -0
- package/package.json +1 -1
package/elements-generated.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ interface WebflowElement {
|
|
|
71
71
|
remove(this: {id: FullElementId}): Promise<null>;
|
|
72
72
|
readonly before: InsertOrMoveElement;
|
|
73
73
|
readonly after: InsertOrMoveElement;
|
|
74
|
+
getParentComponent(this: {id: FullElementId}): Promise<Component | null>;
|
|
74
75
|
}
|
|
75
76
|
|
|
76
77
|
interface CustomAttributes {
|
|
@@ -155,13 +156,33 @@ interface NoAppConnections {
|
|
|
155
156
|
readonly appConnections: false;
|
|
156
157
|
}
|
|
157
158
|
|
|
158
|
-
interface
|
|
159
|
+
interface BindableSourceSearch {
|
|
159
160
|
searchBindableSources(
|
|
160
161
|
this: {id: FullElementId},
|
|
161
162
|
options?: SearchBindableSourcesOptions
|
|
162
163
|
): Promise<Array<BindableSource>>;
|
|
163
164
|
}
|
|
164
165
|
|
|
166
|
+
interface ElementSettings {
|
|
167
|
+
readonly elementSettings: true;
|
|
168
|
+
searchSettings(
|
|
169
|
+
this: {id: FullElementId},
|
|
170
|
+
options?: SearchSettingsOptions
|
|
171
|
+
): Promise<Record<string, ElementSetting>>;
|
|
172
|
+
getSettings(this: {id: FullElementId}): Promise<ElementSettingSummaries>;
|
|
173
|
+
getResolvedSettings(this: {
|
|
174
|
+
id: FullElementId;
|
|
175
|
+
}): Promise<ResolvedElementSettings>;
|
|
176
|
+
setSettings(
|
|
177
|
+
this: {id: FullElementId},
|
|
178
|
+
settings: SetSettingsInput
|
|
179
|
+
): Promise<null>;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
interface NoElementSettings {
|
|
183
|
+
readonly elementSettings: false;
|
|
184
|
+
}
|
|
185
|
+
|
|
165
186
|
interface ComponentElement
|
|
166
187
|
extends
|
|
167
188
|
WebflowElement,
|
|
@@ -172,12 +193,22 @@ interface ComponentElement
|
|
|
172
193
|
NoChildren,
|
|
173
194
|
NoTextContent,
|
|
174
195
|
NoAppConnections,
|
|
175
|
-
|
|
196
|
+
BindableSourceSearch,
|
|
197
|
+
NoElementSettings {
|
|
176
198
|
readonly id: FullElementId;
|
|
177
199
|
readonly type: 'ComponentInstance';
|
|
178
200
|
readonly plugin: '';
|
|
179
201
|
getComponent(): Promise<Component>;
|
|
180
202
|
getSlots(): Promise<Array<SlotInstanceElement>>;
|
|
203
|
+
getProps(): Promise<Array<InstancePropSummary>>;
|
|
204
|
+
getResolvedProps(): Promise<Array<ResolvedInstanceProp>>;
|
|
205
|
+
searchProps(
|
|
206
|
+
options?: SearchInstancePropsOptions
|
|
207
|
+
): Promise<Array<InstanceProp>>;
|
|
208
|
+
setProps(
|
|
209
|
+
props: Array<SetInstancePropEntry>
|
|
210
|
+
): Promise<Array<SetInstancePropEntry>>;
|
|
211
|
+
resetAllProps(): Promise<null>;
|
|
181
212
|
}
|
|
182
213
|
|
|
183
214
|
interface UnknownElement
|
|
@@ -189,6 +220,7 @@ interface UnknownElement
|
|
|
189
220
|
NoChildren,
|
|
190
221
|
NoTextContent,
|
|
191
222
|
NoAppConnections,
|
|
223
|
+
BindableSourceSearch,
|
|
192
224
|
ElementSettings {
|
|
193
225
|
readonly id: FullElementId;
|
|
194
226
|
readonly type: '';
|
|
@@ -205,6 +237,7 @@ interface DOMElement
|
|
|
205
237
|
TextContent,
|
|
206
238
|
AppConnections,
|
|
207
239
|
DisplayName,
|
|
240
|
+
BindableSourceSearch,
|
|
208
241
|
ElementSettings {
|
|
209
242
|
readonly id: FullElementId;
|
|
210
243
|
readonly type: 'DOM';
|
|
@@ -227,6 +260,7 @@ interface SearchFormElement
|
|
|
227
260
|
NoTextContent,
|
|
228
261
|
NoAppConnections,
|
|
229
262
|
DisplayName,
|
|
263
|
+
BindableSourceSearch,
|
|
230
264
|
ElementSettings {
|
|
231
265
|
readonly id: FullElementId;
|
|
232
266
|
readonly type: 'SearchForm';
|
|
@@ -243,6 +277,7 @@ interface SearchInputElement
|
|
|
243
277
|
NoTextContent,
|
|
244
278
|
NoAppConnections,
|
|
245
279
|
DisplayName,
|
|
280
|
+
BindableSourceSearch,
|
|
246
281
|
ElementSettings {
|
|
247
282
|
readonly id: FullElementId;
|
|
248
283
|
readonly type: 'SearchInput';
|
|
@@ -259,6 +294,7 @@ interface SearchButtonElement
|
|
|
259
294
|
NoTextContent,
|
|
260
295
|
NoAppConnections,
|
|
261
296
|
DisplayName,
|
|
297
|
+
BindableSourceSearch,
|
|
262
298
|
ElementSettings {
|
|
263
299
|
readonly id: FullElementId;
|
|
264
300
|
readonly type: 'SearchButton';
|
|
@@ -275,6 +311,7 @@ interface SearchResultEmptyElement
|
|
|
275
311
|
NoTextContent,
|
|
276
312
|
NoAppConnections,
|
|
277
313
|
DisplayName,
|
|
314
|
+
BindableSourceSearch,
|
|
278
315
|
ElementSettings {
|
|
279
316
|
readonly id: FullElementId;
|
|
280
317
|
readonly type: 'SearchResultEmpty';
|
|
@@ -291,6 +328,7 @@ interface SearchResultWrapperElement
|
|
|
291
328
|
NoTextContent,
|
|
292
329
|
NoAppConnections,
|
|
293
330
|
DisplayName,
|
|
331
|
+
BindableSourceSearch,
|
|
294
332
|
ElementSettings {
|
|
295
333
|
readonly id: FullElementId;
|
|
296
334
|
readonly type: 'SearchResultWrapper';
|
|
@@ -307,6 +345,7 @@ interface SearchResultListElement
|
|
|
307
345
|
NoTextContent,
|
|
308
346
|
NoAppConnections,
|
|
309
347
|
DisplayName,
|
|
348
|
+
BindableSourceSearch,
|
|
310
349
|
ElementSettings {
|
|
311
350
|
readonly id: FullElementId;
|
|
312
351
|
readonly type: 'SearchResultList';
|
|
@@ -323,6 +362,7 @@ interface SearchResultItemElement
|
|
|
323
362
|
NoTextContent,
|
|
324
363
|
NoAppConnections,
|
|
325
364
|
DisplayName,
|
|
365
|
+
BindableSourceSearch,
|
|
326
366
|
ElementSettings {
|
|
327
367
|
readonly id: FullElementId;
|
|
328
368
|
readonly type: 'SearchResultItem';
|
|
@@ -339,6 +379,7 @@ interface BlockElement
|
|
|
339
379
|
NoTextContent,
|
|
340
380
|
NoAppConnections,
|
|
341
381
|
DisplayName,
|
|
382
|
+
BindableSourceSearch,
|
|
342
383
|
ElementSettings {
|
|
343
384
|
readonly id: FullElementId;
|
|
344
385
|
readonly type: 'Block';
|
|
@@ -357,6 +398,7 @@ interface BlockquoteElement
|
|
|
357
398
|
TextContent,
|
|
358
399
|
NoAppConnections,
|
|
359
400
|
DisplayName,
|
|
401
|
+
BindableSourceSearch,
|
|
360
402
|
ElementSettings {
|
|
361
403
|
readonly id: FullElementId;
|
|
362
404
|
readonly type: 'Blockquote';
|
|
@@ -373,6 +415,7 @@ interface CodeBlockElement
|
|
|
373
415
|
NoTextContent,
|
|
374
416
|
NoAppConnections,
|
|
375
417
|
DisplayName,
|
|
418
|
+
BindableSourceSearch,
|
|
376
419
|
ElementSettings {
|
|
377
420
|
readonly id: FullElementId;
|
|
378
421
|
readonly type: 'CodeBlock';
|
|
@@ -389,6 +432,7 @@ interface EmphasizedElement
|
|
|
389
432
|
TextContent,
|
|
390
433
|
NoAppConnections,
|
|
391
434
|
DisplayName,
|
|
435
|
+
BindableSourceSearch,
|
|
392
436
|
ElementSettings {
|
|
393
437
|
readonly id: FullElementId;
|
|
394
438
|
readonly type: 'Emphasized';
|
|
@@ -405,6 +449,7 @@ interface FigcaptionElement
|
|
|
405
449
|
NoTextContent,
|
|
406
450
|
NoAppConnections,
|
|
407
451
|
DisplayName,
|
|
452
|
+
BindableSourceSearch,
|
|
408
453
|
ElementSettings {
|
|
409
454
|
readonly id: FullElementId;
|
|
410
455
|
readonly type: 'Figcaption';
|
|
@@ -421,6 +466,7 @@ interface FigureElement
|
|
|
421
466
|
NoTextContent,
|
|
422
467
|
NoAppConnections,
|
|
423
468
|
DisplayName,
|
|
469
|
+
BindableSourceSearch,
|
|
424
470
|
ElementSettings {
|
|
425
471
|
readonly id: FullElementId;
|
|
426
472
|
readonly type: 'Figure';
|
|
@@ -437,6 +483,7 @@ interface HeadingElement
|
|
|
437
483
|
TextContent,
|
|
438
484
|
NoAppConnections,
|
|
439
485
|
DisplayName,
|
|
486
|
+
BindableSourceSearch,
|
|
440
487
|
ElementSettings {
|
|
441
488
|
readonly id: FullElementId;
|
|
442
489
|
readonly type: 'Heading';
|
|
@@ -455,6 +502,7 @@ interface IframeElement
|
|
|
455
502
|
NoTextContent,
|
|
456
503
|
NoAppConnections,
|
|
457
504
|
DisplayName,
|
|
505
|
+
BindableSourceSearch,
|
|
458
506
|
ElementSettings {
|
|
459
507
|
readonly id: FullElementId;
|
|
460
508
|
readonly type: 'Iframe';
|
|
@@ -471,6 +519,7 @@ interface ImageElement
|
|
|
471
519
|
NoTextContent,
|
|
472
520
|
AppConnections,
|
|
473
521
|
DisplayName,
|
|
522
|
+
BindableSourceSearch,
|
|
474
523
|
ElementSettings {
|
|
475
524
|
readonly id: FullElementId;
|
|
476
525
|
readonly type: 'Image';
|
|
@@ -491,6 +540,7 @@ interface LinkElement
|
|
|
491
540
|
TextContent,
|
|
492
541
|
NoAppConnections,
|
|
493
542
|
DisplayName,
|
|
543
|
+
BindableSourceSearch,
|
|
494
544
|
ElementSettings {
|
|
495
545
|
readonly id: FullElementId;
|
|
496
546
|
readonly type: 'Link';
|
|
@@ -500,6 +550,10 @@ interface LinkElement
|
|
|
500
550
|
target: string | Page | AnyElement | Asset,
|
|
501
551
|
metadata?: {openInNewTab?: boolean; subject?: string}
|
|
502
552
|
): Promise<null>;
|
|
553
|
+
setSettings(
|
|
554
|
+
this: {id: FullElementId},
|
|
555
|
+
settings: SetSettingsInput
|
|
556
|
+
): Promise<null>;
|
|
503
557
|
getTarget(): Promise<null | string | Page | AnyElement | Asset>;
|
|
504
558
|
}
|
|
505
559
|
|
|
@@ -513,6 +567,7 @@ interface ListElement
|
|
|
513
567
|
NoTextContent,
|
|
514
568
|
NoAppConnections,
|
|
515
569
|
DisplayName,
|
|
570
|
+
BindableSourceSearch,
|
|
516
571
|
ElementSettings {
|
|
517
572
|
readonly id: FullElementId;
|
|
518
573
|
readonly type: 'List';
|
|
@@ -529,6 +584,7 @@ interface ListItemElement
|
|
|
529
584
|
NoTextContent,
|
|
530
585
|
NoAppConnections,
|
|
531
586
|
DisplayName,
|
|
587
|
+
BindableSourceSearch,
|
|
532
588
|
ElementSettings {
|
|
533
589
|
readonly id: FullElementId;
|
|
534
590
|
readonly type: 'ListItem';
|
|
@@ -545,6 +601,7 @@ interface ParagraphElement
|
|
|
545
601
|
TextContent,
|
|
546
602
|
NoAppConnections,
|
|
547
603
|
DisplayName,
|
|
604
|
+
BindableSourceSearch,
|
|
548
605
|
ElementSettings {
|
|
549
606
|
readonly id: FullElementId;
|
|
550
607
|
readonly type: 'Paragraph';
|
|
@@ -561,6 +618,7 @@ interface RichTextElement
|
|
|
561
618
|
NoTextContent,
|
|
562
619
|
NoAppConnections,
|
|
563
620
|
DisplayName,
|
|
621
|
+
BindableSourceSearch,
|
|
564
622
|
ElementSettings {
|
|
565
623
|
readonly id: FullElementId;
|
|
566
624
|
readonly type: 'RichText';
|
|
@@ -577,6 +635,7 @@ interface SpanElement
|
|
|
577
635
|
TextContent,
|
|
578
636
|
NoAppConnections,
|
|
579
637
|
DisplayName,
|
|
638
|
+
BindableSourceSearch,
|
|
580
639
|
ElementSettings {
|
|
581
640
|
readonly id: FullElementId;
|
|
582
641
|
readonly type: 'Span';
|
|
@@ -593,6 +652,7 @@ interface StringElement
|
|
|
593
652
|
NoTextContent,
|
|
594
653
|
NoAppConnections,
|
|
595
654
|
NoDisplayName,
|
|
655
|
+
BindableSourceSearch,
|
|
596
656
|
ElementSettings {
|
|
597
657
|
readonly id: FullElementId;
|
|
598
658
|
readonly type: 'String';
|
|
@@ -611,6 +671,7 @@ interface StrongElement
|
|
|
611
671
|
TextContent,
|
|
612
672
|
NoAppConnections,
|
|
613
673
|
DisplayName,
|
|
674
|
+
BindableSourceSearch,
|
|
614
675
|
ElementSettings {
|
|
615
676
|
readonly id: FullElementId;
|
|
616
677
|
readonly type: 'Strong';
|
|
@@ -627,6 +688,7 @@ interface SuperscriptElement
|
|
|
627
688
|
TextContent,
|
|
628
689
|
NoAppConnections,
|
|
629
690
|
DisplayName,
|
|
691
|
+
BindableSourceSearch,
|
|
630
692
|
ElementSettings {
|
|
631
693
|
readonly id: FullElementId;
|
|
632
694
|
readonly type: 'Superscript';
|
|
@@ -643,6 +705,7 @@ interface SubscriptElement
|
|
|
643
705
|
TextContent,
|
|
644
706
|
NoAppConnections,
|
|
645
707
|
DisplayName,
|
|
708
|
+
BindableSourceSearch,
|
|
646
709
|
ElementSettings {
|
|
647
710
|
readonly id: FullElementId;
|
|
648
711
|
readonly type: 'Subscript';
|
|
@@ -659,6 +722,7 @@ interface InlineCodeElement
|
|
|
659
722
|
TextContent,
|
|
660
723
|
NoAppConnections,
|
|
661
724
|
DisplayName,
|
|
725
|
+
BindableSourceSearch,
|
|
662
726
|
ElementSettings {
|
|
663
727
|
readonly id: FullElementId;
|
|
664
728
|
readonly type: 'InlineCode';
|
|
@@ -675,6 +739,7 @@ interface AnimationElement
|
|
|
675
739
|
NoTextContent,
|
|
676
740
|
NoAppConnections,
|
|
677
741
|
DisplayName,
|
|
742
|
+
BindableSourceSearch,
|
|
678
743
|
ElementSettings {
|
|
679
744
|
readonly id: FullElementId;
|
|
680
745
|
readonly type: 'Animation';
|
|
@@ -691,6 +756,7 @@ interface SplineElement
|
|
|
691
756
|
NoTextContent,
|
|
692
757
|
NoAppConnections,
|
|
693
758
|
DisplayName,
|
|
759
|
+
BindableSourceSearch,
|
|
694
760
|
ElementSettings {
|
|
695
761
|
readonly id: FullElementId;
|
|
696
762
|
readonly type: 'Spline';
|
|
@@ -707,6 +773,7 @@ interface RiveElement
|
|
|
707
773
|
NoTextContent,
|
|
708
774
|
NoAppConnections,
|
|
709
775
|
DisplayName,
|
|
776
|
+
BindableSourceSearch,
|
|
710
777
|
ElementSettings {
|
|
711
778
|
readonly id: FullElementId;
|
|
712
779
|
readonly type: 'Rive';
|
|
@@ -723,6 +790,7 @@ interface BackgroundVideoWrapperElement
|
|
|
723
790
|
NoTextContent,
|
|
724
791
|
NoAppConnections,
|
|
725
792
|
DisplayName,
|
|
793
|
+
BindableSourceSearch,
|
|
726
794
|
ElementSettings {
|
|
727
795
|
readonly id: FullElementId;
|
|
728
796
|
readonly type: 'BackgroundVideoWrapper';
|
|
@@ -739,6 +807,7 @@ interface BackgroundVideoPlayPauseButtonElement
|
|
|
739
807
|
NoTextContent,
|
|
740
808
|
NoAppConnections,
|
|
741
809
|
DisplayName,
|
|
810
|
+
BindableSourceSearch,
|
|
742
811
|
ElementSettings {
|
|
743
812
|
readonly id: FullElementId;
|
|
744
813
|
readonly type: 'BackgroundVideoPlayPauseButton';
|
|
@@ -755,6 +824,7 @@ interface BackgroundVideoPlayPauseButtonPlayingElement
|
|
|
755
824
|
NoTextContent,
|
|
756
825
|
NoAppConnections,
|
|
757
826
|
DisplayName,
|
|
827
|
+
BindableSourceSearch,
|
|
758
828
|
ElementSettings {
|
|
759
829
|
readonly id: FullElementId;
|
|
760
830
|
readonly type: 'BackgroundVideoPlayPauseButtonPlaying';
|
|
@@ -771,6 +841,7 @@ interface BackgroundVideoPlayPauseButtonPausedElement
|
|
|
771
841
|
NoTextContent,
|
|
772
842
|
NoAppConnections,
|
|
773
843
|
DisplayName,
|
|
844
|
+
BindableSourceSearch,
|
|
774
845
|
ElementSettings {
|
|
775
846
|
readonly id: FullElementId;
|
|
776
847
|
readonly type: 'BackgroundVideoPlayPauseButtonPaused';
|
|
@@ -787,6 +858,7 @@ interface BodyElement
|
|
|
787
858
|
NoTextContent,
|
|
788
859
|
NoAppConnections,
|
|
789
860
|
DisplayName,
|
|
861
|
+
BindableSourceSearch,
|
|
790
862
|
ElementSettings {
|
|
791
863
|
readonly id: FullElementId;
|
|
792
864
|
readonly type: 'Body';
|
|
@@ -803,6 +875,7 @@ interface CommerceAddToCartFormElement
|
|
|
803
875
|
NoTextContent,
|
|
804
876
|
NoAppConnections,
|
|
805
877
|
DisplayName,
|
|
878
|
+
BindableSourceSearch,
|
|
806
879
|
ElementSettings {
|
|
807
880
|
readonly id: FullElementId;
|
|
808
881
|
readonly type: 'CommerceAddToCartForm';
|
|
@@ -819,6 +892,7 @@ interface CommerceAddToCartButtonElement
|
|
|
819
892
|
NoTextContent,
|
|
820
893
|
NoAppConnections,
|
|
821
894
|
DisplayName,
|
|
895
|
+
BindableSourceSearch,
|
|
822
896
|
ElementSettings {
|
|
823
897
|
readonly id: FullElementId;
|
|
824
898
|
readonly type: 'CommerceAddToCartButton';
|
|
@@ -835,6 +909,7 @@ interface CommerceAddToCartWrapperElement
|
|
|
835
909
|
NoTextContent,
|
|
836
910
|
NoAppConnections,
|
|
837
911
|
DisplayName,
|
|
912
|
+
BindableSourceSearch,
|
|
838
913
|
ElementSettings {
|
|
839
914
|
readonly id: FullElementId;
|
|
840
915
|
readonly type: 'CommerceAddToCartWrapper';
|
|
@@ -851,6 +926,7 @@ interface CommerceAddToCartQuantityInputElement
|
|
|
851
926
|
NoTextContent,
|
|
852
927
|
NoAppConnections,
|
|
853
928
|
DisplayName,
|
|
929
|
+
BindableSourceSearch,
|
|
854
930
|
ElementSettings {
|
|
855
931
|
readonly id: FullElementId;
|
|
856
932
|
readonly type: 'CommerceAddToCartQuantityInput';
|
|
@@ -867,6 +943,7 @@ interface CommerceAddToCartErrorElement
|
|
|
867
943
|
NoTextContent,
|
|
868
944
|
NoAppConnections,
|
|
869
945
|
DisplayName,
|
|
946
|
+
BindableSourceSearch,
|
|
870
947
|
ElementSettings {
|
|
871
948
|
readonly id: FullElementId;
|
|
872
949
|
readonly type: 'CommerceAddToCartError';
|
|
@@ -883,6 +960,7 @@ interface CommerceAddToCartOutOfStockElement
|
|
|
883
960
|
NoTextContent,
|
|
884
961
|
NoAppConnections,
|
|
885
962
|
DisplayName,
|
|
963
|
+
BindableSourceSearch,
|
|
886
964
|
ElementSettings {
|
|
887
965
|
readonly id: FullElementId;
|
|
888
966
|
readonly type: 'CommerceAddToCartOutOfStock';
|
|
@@ -899,6 +977,7 @@ interface CommerceAddToCartOptionListElement
|
|
|
899
977
|
NoTextContent,
|
|
900
978
|
NoAppConnections,
|
|
901
979
|
DisplayName,
|
|
980
|
+
BindableSourceSearch,
|
|
902
981
|
ElementSettings {
|
|
903
982
|
readonly id: FullElementId;
|
|
904
983
|
readonly type: 'CommerceAddToCartOptionList';
|
|
@@ -915,6 +994,7 @@ interface CommerceAddToCartOptionListWithSelectorTypesElement
|
|
|
915
994
|
NoTextContent,
|
|
916
995
|
NoAppConnections,
|
|
917
996
|
DisplayName,
|
|
997
|
+
BindableSourceSearch,
|
|
918
998
|
ElementSettings {
|
|
919
999
|
readonly id: FullElementId;
|
|
920
1000
|
readonly type: 'CommerceAddToCartOptionListWithSelectorTypes';
|
|
@@ -931,6 +1011,7 @@ interface CommerceAddToCartOptionElement
|
|
|
931
1011
|
NoTextContent,
|
|
932
1012
|
NoAppConnections,
|
|
933
1013
|
DisplayName,
|
|
1014
|
+
BindableSourceSearch,
|
|
934
1015
|
ElementSettings {
|
|
935
1016
|
readonly id: FullElementId;
|
|
936
1017
|
readonly type: 'CommerceAddToCartOption';
|
|
@@ -947,6 +1028,7 @@ interface CommerceAddToCartOptionLabelElement
|
|
|
947
1028
|
NoTextContent,
|
|
948
1029
|
NoAppConnections,
|
|
949
1030
|
DisplayName,
|
|
1031
|
+
BindableSourceSearch,
|
|
950
1032
|
ElementSettings {
|
|
951
1033
|
readonly id: FullElementId;
|
|
952
1034
|
readonly type: 'CommerceAddToCartOptionLabel';
|
|
@@ -963,6 +1045,7 @@ interface CommerceAddToCartOptionSelectElement
|
|
|
963
1045
|
NoTextContent,
|
|
964
1046
|
NoAppConnections,
|
|
965
1047
|
DisplayName,
|
|
1048
|
+
BindableSourceSearch,
|
|
966
1049
|
ElementSettings {
|
|
967
1050
|
readonly id: FullElementId;
|
|
968
1051
|
readonly type: 'CommerceAddToCartOptionSelect';
|
|
@@ -979,6 +1062,7 @@ interface CommerceAddToCartOptionPillGroupElement
|
|
|
979
1062
|
NoTextContent,
|
|
980
1063
|
NoAppConnections,
|
|
981
1064
|
DisplayName,
|
|
1065
|
+
BindableSourceSearch,
|
|
982
1066
|
ElementSettings {
|
|
983
1067
|
readonly id: FullElementId;
|
|
984
1068
|
readonly type: 'CommerceAddToCartOptionPillGroup';
|
|
@@ -995,6 +1079,7 @@ interface CommerceAddToCartOptionPillElement
|
|
|
995
1079
|
NoTextContent,
|
|
996
1080
|
NoAppConnections,
|
|
997
1081
|
DisplayName,
|
|
1082
|
+
BindableSourceSearch,
|
|
998
1083
|
ElementSettings {
|
|
999
1084
|
readonly id: FullElementId;
|
|
1000
1085
|
readonly type: 'CommerceAddToCartOptionPill';
|
|
@@ -1011,6 +1096,7 @@ interface CommerceBuyNowButtonElement
|
|
|
1011
1096
|
TextContent,
|
|
1012
1097
|
NoAppConnections,
|
|
1013
1098
|
DisplayName,
|
|
1099
|
+
BindableSourceSearch,
|
|
1014
1100
|
ElementSettings {
|
|
1015
1101
|
readonly id: FullElementId;
|
|
1016
1102
|
readonly type: 'CommerceBuyNowButton';
|
|
@@ -1027,6 +1113,7 @@ interface CommerceCartWrapperElement
|
|
|
1027
1113
|
NoTextContent,
|
|
1028
1114
|
NoAppConnections,
|
|
1029
1115
|
DisplayName,
|
|
1116
|
+
BindableSourceSearch,
|
|
1030
1117
|
ElementSettings {
|
|
1031
1118
|
readonly id: FullElementId;
|
|
1032
1119
|
readonly type: 'CommerceCartWrapper';
|
|
@@ -1043,6 +1130,7 @@ interface CommerceCartOpenLinkElement
|
|
|
1043
1130
|
TextContent,
|
|
1044
1131
|
NoAppConnections,
|
|
1045
1132
|
DisplayName,
|
|
1133
|
+
BindableSourceSearch,
|
|
1046
1134
|
ElementSettings {
|
|
1047
1135
|
readonly id: FullElementId;
|
|
1048
1136
|
readonly type: 'CommerceCartOpenLink';
|
|
@@ -1059,6 +1147,7 @@ interface CommerceCartOpenLinkCountElement
|
|
|
1059
1147
|
NoTextContent,
|
|
1060
1148
|
NoAppConnections,
|
|
1061
1149
|
DisplayName,
|
|
1150
|
+
BindableSourceSearch,
|
|
1062
1151
|
ElementSettings {
|
|
1063
1152
|
readonly id: FullElementId;
|
|
1064
1153
|
readonly type: 'CommerceCartOpenLinkCount';
|
|
@@ -1075,6 +1164,7 @@ interface CommerceCartOpenLinkIconElement
|
|
|
1075
1164
|
NoTextContent,
|
|
1076
1165
|
NoAppConnections,
|
|
1077
1166
|
DisplayName,
|
|
1167
|
+
BindableSourceSearch,
|
|
1078
1168
|
ElementSettings {
|
|
1079
1169
|
readonly id: FullElementId;
|
|
1080
1170
|
readonly type: 'CommerceCartOpenLinkIcon';
|
|
@@ -1091,6 +1181,7 @@ interface CommerceCartContainerWrapperElement
|
|
|
1091
1181
|
NoTextContent,
|
|
1092
1182
|
NoAppConnections,
|
|
1093
1183
|
DisplayName,
|
|
1184
|
+
BindableSourceSearch,
|
|
1094
1185
|
ElementSettings {
|
|
1095
1186
|
readonly id: FullElementId;
|
|
1096
1187
|
readonly type: 'CommerceCartContainerWrapper';
|
|
@@ -1107,6 +1198,7 @@ interface CommerceCartContainerElement
|
|
|
1107
1198
|
NoTextContent,
|
|
1108
1199
|
NoAppConnections,
|
|
1109
1200
|
DisplayName,
|
|
1201
|
+
BindableSourceSearch,
|
|
1110
1202
|
ElementSettings {
|
|
1111
1203
|
readonly id: FullElementId;
|
|
1112
1204
|
readonly type: 'CommerceCartContainer';
|
|
@@ -1123,6 +1215,7 @@ interface CommerceCartHeaderElement
|
|
|
1123
1215
|
NoTextContent,
|
|
1124
1216
|
NoAppConnections,
|
|
1125
1217
|
DisplayName,
|
|
1218
|
+
BindableSourceSearch,
|
|
1126
1219
|
ElementSettings {
|
|
1127
1220
|
readonly id: FullElementId;
|
|
1128
1221
|
readonly type: 'CommerceCartHeader';
|
|
@@ -1139,6 +1232,7 @@ interface CommerceCartHeadingElement
|
|
|
1139
1232
|
NoTextContent,
|
|
1140
1233
|
NoAppConnections,
|
|
1141
1234
|
DisplayName,
|
|
1235
|
+
BindableSourceSearch,
|
|
1142
1236
|
ElementSettings {
|
|
1143
1237
|
readonly id: FullElementId;
|
|
1144
1238
|
readonly type: 'CommerceCartHeading';
|
|
@@ -1155,6 +1249,7 @@ interface CommerceCartFormWrapperElement
|
|
|
1155
1249
|
NoTextContent,
|
|
1156
1250
|
NoAppConnections,
|
|
1157
1251
|
DisplayName,
|
|
1252
|
+
BindableSourceSearch,
|
|
1158
1253
|
ElementSettings {
|
|
1159
1254
|
readonly id: FullElementId;
|
|
1160
1255
|
readonly type: 'CommerceCartFormWrapper';
|
|
@@ -1171,6 +1266,7 @@ interface CommerceCartFormElement
|
|
|
1171
1266
|
NoTextContent,
|
|
1172
1267
|
NoAppConnections,
|
|
1173
1268
|
DisplayName,
|
|
1269
|
+
BindableSourceSearch,
|
|
1174
1270
|
ElementSettings {
|
|
1175
1271
|
readonly id: FullElementId;
|
|
1176
1272
|
readonly type: 'CommerceCartForm';
|
|
@@ -1187,6 +1283,7 @@ interface CommerceCartEmptyStateElement
|
|
|
1187
1283
|
NoTextContent,
|
|
1188
1284
|
NoAppConnections,
|
|
1189
1285
|
DisplayName,
|
|
1286
|
+
BindableSourceSearch,
|
|
1190
1287
|
ElementSettings {
|
|
1191
1288
|
readonly id: FullElementId;
|
|
1192
1289
|
readonly type: 'CommerceCartEmptyState';
|
|
@@ -1203,6 +1300,7 @@ interface CommerceCartErrorStateElement
|
|
|
1203
1300
|
NoTextContent,
|
|
1204
1301
|
NoAppConnections,
|
|
1205
1302
|
DisplayName,
|
|
1303
|
+
BindableSourceSearch,
|
|
1206
1304
|
ElementSettings {
|
|
1207
1305
|
readonly id: FullElementId;
|
|
1208
1306
|
readonly type: 'CommerceCartErrorState';
|
|
@@ -1219,6 +1317,7 @@ interface CommerceCartListElement
|
|
|
1219
1317
|
NoTextContent,
|
|
1220
1318
|
NoAppConnections,
|
|
1221
1319
|
DisplayName,
|
|
1320
|
+
BindableSourceSearch,
|
|
1222
1321
|
ElementSettings {
|
|
1223
1322
|
readonly id: FullElementId;
|
|
1224
1323
|
readonly type: 'CommerceCartList';
|
|
@@ -1235,6 +1334,7 @@ interface CommerceCartFooterElement
|
|
|
1235
1334
|
NoTextContent,
|
|
1236
1335
|
NoAppConnections,
|
|
1237
1336
|
DisplayName,
|
|
1337
|
+
BindableSourceSearch,
|
|
1238
1338
|
ElementSettings {
|
|
1239
1339
|
readonly id: FullElementId;
|
|
1240
1340
|
readonly type: 'CommerceCartFooter';
|
|
@@ -1251,6 +1351,7 @@ interface CommerceCartLineItemElement
|
|
|
1251
1351
|
NoTextContent,
|
|
1252
1352
|
NoAppConnections,
|
|
1253
1353
|
DisplayName,
|
|
1354
|
+
BindableSourceSearch,
|
|
1254
1355
|
ElementSettings {
|
|
1255
1356
|
readonly id: FullElementId;
|
|
1256
1357
|
readonly type: 'CommerceCartLineItem';
|
|
@@ -1267,6 +1368,7 @@ interface CommerceCartCheckoutButtonElement
|
|
|
1267
1368
|
TextContent,
|
|
1268
1369
|
NoAppConnections,
|
|
1269
1370
|
DisplayName,
|
|
1371
|
+
BindableSourceSearch,
|
|
1270
1372
|
ElementSettings {
|
|
1271
1373
|
readonly id: FullElementId;
|
|
1272
1374
|
readonly type: 'CommerceCartCheckoutButton';
|
|
@@ -1283,6 +1385,7 @@ interface CommerceCartItemElement
|
|
|
1283
1385
|
NoTextContent,
|
|
1284
1386
|
NoAppConnections,
|
|
1285
1387
|
DisplayName,
|
|
1388
|
+
BindableSourceSearch,
|
|
1286
1389
|
ElementSettings {
|
|
1287
1390
|
readonly id: FullElementId;
|
|
1288
1391
|
readonly type: 'CommerceCartItem';
|
|
@@ -1299,6 +1402,7 @@ interface CommerceCartItemImageElement
|
|
|
1299
1402
|
NoTextContent,
|
|
1300
1403
|
NoAppConnections,
|
|
1301
1404
|
DisplayName,
|
|
1405
|
+
BindableSourceSearch,
|
|
1302
1406
|
ElementSettings {
|
|
1303
1407
|
readonly id: FullElementId;
|
|
1304
1408
|
readonly type: 'CommerceCartItemImage';
|
|
@@ -1315,6 +1419,7 @@ interface CommerceCartItemInfoElement
|
|
|
1315
1419
|
NoTextContent,
|
|
1316
1420
|
NoAppConnections,
|
|
1317
1421
|
DisplayName,
|
|
1422
|
+
BindableSourceSearch,
|
|
1318
1423
|
ElementSettings {
|
|
1319
1424
|
readonly id: FullElementId;
|
|
1320
1425
|
readonly type: 'CommerceCartItemInfo';
|
|
@@ -1331,6 +1436,7 @@ interface CommerceCartProductNameElement
|
|
|
1331
1436
|
NoTextContent,
|
|
1332
1437
|
NoAppConnections,
|
|
1333
1438
|
DisplayName,
|
|
1439
|
+
BindableSourceSearch,
|
|
1334
1440
|
ElementSettings {
|
|
1335
1441
|
readonly id: FullElementId;
|
|
1336
1442
|
readonly type: 'CommerceCartProductName';
|
|
@@ -1347,6 +1453,7 @@ interface CommerceCartProductPriceElement
|
|
|
1347
1453
|
NoTextContent,
|
|
1348
1454
|
NoAppConnections,
|
|
1349
1455
|
DisplayName,
|
|
1456
|
+
BindableSourceSearch,
|
|
1350
1457
|
ElementSettings {
|
|
1351
1458
|
readonly id: FullElementId;
|
|
1352
1459
|
readonly type: 'CommerceCartProductPrice';
|
|
@@ -1363,6 +1470,7 @@ interface CommerceCartQuantityElement
|
|
|
1363
1470
|
NoTextContent,
|
|
1364
1471
|
NoAppConnections,
|
|
1365
1472
|
DisplayName,
|
|
1473
|
+
BindableSourceSearch,
|
|
1366
1474
|
ElementSettings {
|
|
1367
1475
|
readonly id: FullElementId;
|
|
1368
1476
|
readonly type: 'CommerceCartQuantity';
|
|
@@ -1379,6 +1487,7 @@ interface CommerceCartCloseLinkElement
|
|
|
1379
1487
|
TextContent,
|
|
1380
1488
|
NoAppConnections,
|
|
1381
1489
|
DisplayName,
|
|
1490
|
+
BindableSourceSearch,
|
|
1382
1491
|
ElementSettings {
|
|
1383
1492
|
readonly id: FullElementId;
|
|
1384
1493
|
readonly type: 'CommerceCartCloseLink';
|
|
@@ -1395,6 +1504,7 @@ interface CommerceCartCloseLinkIconElement
|
|
|
1395
1504
|
NoTextContent,
|
|
1396
1505
|
NoAppConnections,
|
|
1397
1506
|
DisplayName,
|
|
1507
|
+
BindableSourceSearch,
|
|
1398
1508
|
ElementSettings {
|
|
1399
1509
|
readonly id: FullElementId;
|
|
1400
1510
|
readonly type: 'CommerceCartCloseLinkIcon';
|
|
@@ -1411,6 +1521,7 @@ interface CommerceCartRemoveLinkElement
|
|
|
1411
1521
|
TextContent,
|
|
1412
1522
|
NoAppConnections,
|
|
1413
1523
|
DisplayName,
|
|
1524
|
+
BindableSourceSearch,
|
|
1414
1525
|
ElementSettings {
|
|
1415
1526
|
readonly id: FullElementId;
|
|
1416
1527
|
readonly type: 'CommerceCartRemoveLink';
|
|
@@ -1427,6 +1538,7 @@ interface CommerceCartOrderValueElement
|
|
|
1427
1538
|
NoTextContent,
|
|
1428
1539
|
NoAppConnections,
|
|
1429
1540
|
DisplayName,
|
|
1541
|
+
BindableSourceSearch,
|
|
1430
1542
|
ElementSettings {
|
|
1431
1543
|
readonly id: FullElementId;
|
|
1432
1544
|
readonly type: 'CommerceCartOrderValue';
|
|
@@ -1443,6 +1555,7 @@ interface CommerceCartCheckoutActionsElement
|
|
|
1443
1555
|
NoTextContent,
|
|
1444
1556
|
NoAppConnections,
|
|
1445
1557
|
DisplayName,
|
|
1558
|
+
BindableSourceSearch,
|
|
1446
1559
|
ElementSettings {
|
|
1447
1560
|
readonly id: FullElementId;
|
|
1448
1561
|
readonly type: 'CommerceCartCheckoutActions';
|
|
@@ -1459,6 +1572,7 @@ interface CommerceCartOptionListElement
|
|
|
1459
1572
|
NoTextContent,
|
|
1460
1573
|
NoAppConnections,
|
|
1461
1574
|
DisplayName,
|
|
1575
|
+
BindableSourceSearch,
|
|
1462
1576
|
ElementSettings {
|
|
1463
1577
|
readonly id: FullElementId;
|
|
1464
1578
|
readonly type: 'CommerceCartOptionList';
|
|
@@ -1475,6 +1589,7 @@ interface CommerceCartOptionListItemElement
|
|
|
1475
1589
|
NoTextContent,
|
|
1476
1590
|
NoAppConnections,
|
|
1477
1591
|
DisplayName,
|
|
1592
|
+
BindableSourceSearch,
|
|
1478
1593
|
ElementSettings {
|
|
1479
1594
|
readonly id: FullElementId;
|
|
1480
1595
|
readonly type: 'CommerceCartOptionListItem';
|
|
@@ -1491,6 +1606,7 @@ interface CommerceCartOptionListItemLabelElement
|
|
|
1491
1606
|
TextContent,
|
|
1492
1607
|
NoAppConnections,
|
|
1493
1608
|
DisplayName,
|
|
1609
|
+
BindableSourceSearch,
|
|
1494
1610
|
ElementSettings {
|
|
1495
1611
|
readonly id: FullElementId;
|
|
1496
1612
|
readonly type: 'CommerceCartOptionListItemLabel';
|
|
@@ -1507,6 +1623,7 @@ interface CommerceCartOptionListItemValueElement
|
|
|
1507
1623
|
TextContent,
|
|
1508
1624
|
NoAppConnections,
|
|
1509
1625
|
DisplayName,
|
|
1626
|
+
BindableSourceSearch,
|
|
1510
1627
|
ElementSettings {
|
|
1511
1628
|
readonly id: FullElementId;
|
|
1512
1629
|
readonly type: 'CommerceCartOptionListItemValue';
|
|
@@ -1523,6 +1640,7 @@ interface CommerceCartQuickCheckoutActionsElement
|
|
|
1523
1640
|
NoTextContent,
|
|
1524
1641
|
NoAppConnections,
|
|
1525
1642
|
DisplayName,
|
|
1643
|
+
BindableSourceSearch,
|
|
1526
1644
|
ElementSettings {
|
|
1527
1645
|
readonly id: FullElementId;
|
|
1528
1646
|
readonly type: 'CommerceCartQuickCheckoutActions';
|
|
@@ -1539,6 +1657,7 @@ interface CommerceCartQuickCheckoutButtonElement
|
|
|
1539
1657
|
TextContent,
|
|
1540
1658
|
NoAppConnections,
|
|
1541
1659
|
DisplayName,
|
|
1660
|
+
BindableSourceSearch,
|
|
1542
1661
|
ElementSettings {
|
|
1543
1662
|
readonly id: FullElementId;
|
|
1544
1663
|
readonly type: 'CommerceCartQuickCheckoutButton';
|
|
@@ -1555,6 +1674,7 @@ interface CommerceCartApplePayButtonElement
|
|
|
1555
1674
|
TextContent,
|
|
1556
1675
|
NoAppConnections,
|
|
1557
1676
|
DisplayName,
|
|
1677
|
+
BindableSourceSearch,
|
|
1558
1678
|
ElementSettings {
|
|
1559
1679
|
readonly id: FullElementId;
|
|
1560
1680
|
readonly type: 'CommerceCartApplePayButton';
|
|
@@ -1571,6 +1691,7 @@ interface CommerceCartApplePayIconElement
|
|
|
1571
1691
|
NoTextContent,
|
|
1572
1692
|
NoAppConnections,
|
|
1573
1693
|
DisplayName,
|
|
1694
|
+
BindableSourceSearch,
|
|
1574
1695
|
ElementSettings {
|
|
1575
1696
|
readonly id: FullElementId;
|
|
1576
1697
|
readonly type: 'CommerceCartApplePayIcon';
|
|
@@ -1587,6 +1708,7 @@ interface CommerceQuickCheckoutGoogleIconElement
|
|
|
1587
1708
|
NoTextContent,
|
|
1588
1709
|
NoAppConnections,
|
|
1589
1710
|
DisplayName,
|
|
1711
|
+
BindableSourceSearch,
|
|
1590
1712
|
ElementSettings {
|
|
1591
1713
|
readonly id: FullElementId;
|
|
1592
1714
|
readonly type: 'CommerceQuickCheckoutGoogleIcon';
|
|
@@ -1603,6 +1725,7 @@ interface CommerceQuickCheckoutMicrosoftIconElement
|
|
|
1603
1725
|
NoTextContent,
|
|
1604
1726
|
NoAppConnections,
|
|
1605
1727
|
DisplayName,
|
|
1728
|
+
BindableSourceSearch,
|
|
1606
1729
|
ElementSettings {
|
|
1607
1730
|
readonly id: FullElementId;
|
|
1608
1731
|
readonly type: 'CommerceQuickCheckoutMicrosoftIcon';
|
|
@@ -1619,6 +1742,7 @@ interface CommercePayPalCheckoutButtonElement
|
|
|
1619
1742
|
NoTextContent,
|
|
1620
1743
|
NoAppConnections,
|
|
1621
1744
|
DisplayName,
|
|
1745
|
+
BindableSourceSearch,
|
|
1622
1746
|
ElementSettings {
|
|
1623
1747
|
readonly id: FullElementId;
|
|
1624
1748
|
readonly type: 'CommercePayPalCheckoutButton';
|
|
@@ -1635,6 +1759,7 @@ interface CommerceCheckoutBlockContentElement
|
|
|
1635
1759
|
NoTextContent,
|
|
1636
1760
|
NoAppConnections,
|
|
1637
1761
|
DisplayName,
|
|
1762
|
+
BindableSourceSearch,
|
|
1638
1763
|
ElementSettings {
|
|
1639
1764
|
readonly id: FullElementId;
|
|
1640
1765
|
readonly type: 'CommerceCheckoutBlockContent';
|
|
@@ -1651,6 +1776,7 @@ interface CommerceCheckoutBlockHeaderElement
|
|
|
1651
1776
|
NoTextContent,
|
|
1652
1777
|
NoAppConnections,
|
|
1653
1778
|
DisplayName,
|
|
1779
|
+
BindableSourceSearch,
|
|
1654
1780
|
ElementSettings {
|
|
1655
1781
|
readonly id: FullElementId;
|
|
1656
1782
|
readonly type: 'CommerceCheckoutBlockHeader';
|
|
@@ -1667,6 +1793,7 @@ interface CommerceCheckoutColumnElement
|
|
|
1667
1793
|
NoTextContent,
|
|
1668
1794
|
NoAppConnections,
|
|
1669
1795
|
DisplayName,
|
|
1796
|
+
BindableSourceSearch,
|
|
1670
1797
|
ElementSettings {
|
|
1671
1798
|
readonly id: FullElementId;
|
|
1672
1799
|
readonly type: 'CommerceCheckoutColumn';
|
|
@@ -1683,6 +1810,7 @@ interface CommerceCheckoutFormContainerElement
|
|
|
1683
1810
|
NoTextContent,
|
|
1684
1811
|
NoAppConnections,
|
|
1685
1812
|
DisplayName,
|
|
1813
|
+
BindableSourceSearch,
|
|
1686
1814
|
ElementSettings {
|
|
1687
1815
|
readonly id: FullElementId;
|
|
1688
1816
|
readonly type: 'CommerceCheckoutFormContainer';
|
|
@@ -1699,6 +1827,7 @@ interface CommerceCheckoutRowElement
|
|
|
1699
1827
|
NoTextContent,
|
|
1700
1828
|
NoAppConnections,
|
|
1701
1829
|
DisplayName,
|
|
1830
|
+
BindableSourceSearch,
|
|
1702
1831
|
ElementSettings {
|
|
1703
1832
|
readonly id: FullElementId;
|
|
1704
1833
|
readonly type: 'CommerceCheckoutRow';
|
|
@@ -1715,6 +1844,7 @@ interface CommerceCheckoutLabelElement
|
|
|
1715
1844
|
TextContent,
|
|
1716
1845
|
NoAppConnections,
|
|
1717
1846
|
DisplayName,
|
|
1847
|
+
BindableSourceSearch,
|
|
1718
1848
|
ElementSettings {
|
|
1719
1849
|
readonly id: FullElementId;
|
|
1720
1850
|
readonly type: 'CommerceCheckoutLabel';
|
|
@@ -1731,6 +1861,7 @@ interface CommerceLabelElement
|
|
|
1731
1861
|
TextContent,
|
|
1732
1862
|
NoAppConnections,
|
|
1733
1863
|
DisplayName,
|
|
1864
|
+
BindableSourceSearch,
|
|
1734
1865
|
ElementSettings {
|
|
1735
1866
|
readonly id: FullElementId;
|
|
1736
1867
|
readonly type: 'CommerceLabel';
|
|
@@ -1747,6 +1878,7 @@ interface CommerceCheckoutCardExpirationDateElement
|
|
|
1747
1878
|
NoTextContent,
|
|
1748
1879
|
NoAppConnections,
|
|
1749
1880
|
DisplayName,
|
|
1881
|
+
BindableSourceSearch,
|
|
1750
1882
|
ElementSettings {
|
|
1751
1883
|
readonly id: FullElementId;
|
|
1752
1884
|
readonly type: 'CommerceCheckoutCardExpirationDate';
|
|
@@ -1763,6 +1895,7 @@ interface CommerceCheckoutCardNumberElement
|
|
|
1763
1895
|
NoTextContent,
|
|
1764
1896
|
NoAppConnections,
|
|
1765
1897
|
DisplayName,
|
|
1898
|
+
BindableSourceSearch,
|
|
1766
1899
|
ElementSettings {
|
|
1767
1900
|
readonly id: FullElementId;
|
|
1768
1901
|
readonly type: 'CommerceCheckoutCardNumber';
|
|
@@ -1779,6 +1912,7 @@ interface CommerceCheckoutCardSecurityCodeElement
|
|
|
1779
1912
|
NoTextContent,
|
|
1780
1913
|
NoAppConnections,
|
|
1781
1914
|
DisplayName,
|
|
1915
|
+
BindableSourceSearch,
|
|
1782
1916
|
ElementSettings {
|
|
1783
1917
|
readonly id: FullElementId;
|
|
1784
1918
|
readonly type: 'CommerceCheckoutCardSecurityCode';
|
|
@@ -1795,6 +1929,7 @@ interface CommerceCheckoutCustomerInfoWrapperElement
|
|
|
1795
1929
|
NoTextContent,
|
|
1796
1930
|
NoAppConnections,
|
|
1797
1931
|
DisplayName,
|
|
1932
|
+
BindableSourceSearch,
|
|
1798
1933
|
ElementSettings {
|
|
1799
1934
|
readonly id: FullElementId;
|
|
1800
1935
|
readonly type: 'CommerceCheckoutCustomerInfoWrapper';
|
|
@@ -1811,6 +1946,7 @@ interface CommerceCheckoutErrorStateElement
|
|
|
1811
1946
|
NoTextContent,
|
|
1812
1947
|
NoAppConnections,
|
|
1813
1948
|
DisplayName,
|
|
1949
|
+
BindableSourceSearch,
|
|
1814
1950
|
ElementSettings {
|
|
1815
1951
|
readonly id: FullElementId;
|
|
1816
1952
|
readonly type: 'CommerceCheckoutErrorState';
|
|
@@ -1827,6 +1963,7 @@ interface CommerceCheckoutPaymentInfoWrapperElement
|
|
|
1827
1963
|
NoTextContent,
|
|
1828
1964
|
NoAppConnections,
|
|
1829
1965
|
DisplayName,
|
|
1966
|
+
BindableSourceSearch,
|
|
1830
1967
|
ElementSettings {
|
|
1831
1968
|
readonly id: FullElementId;
|
|
1832
1969
|
readonly type: 'CommerceCheckoutPaymentInfoWrapper';
|
|
@@ -1843,6 +1980,7 @@ interface CommerceCheckoutPlaceOrderButtonElement
|
|
|
1843
1980
|
TextContent,
|
|
1844
1981
|
NoAppConnections,
|
|
1845
1982
|
DisplayName,
|
|
1983
|
+
BindableSourceSearch,
|
|
1846
1984
|
ElementSettings {
|
|
1847
1985
|
readonly id: FullElementId;
|
|
1848
1986
|
readonly type: 'CommerceCheckoutPlaceOrderButton';
|
|
@@ -1859,6 +1997,7 @@ interface CommerceCheckoutEmailInputElement
|
|
|
1859
1997
|
NoTextContent,
|
|
1860
1998
|
NoAppConnections,
|
|
1861
1999
|
DisplayName,
|
|
2000
|
+
BindableSourceSearch,
|
|
1862
2001
|
ElementSettings {
|
|
1863
2002
|
readonly id: FullElementId;
|
|
1864
2003
|
readonly type: 'CommerceCheckoutEmailInput';
|
|
@@ -1875,6 +2014,7 @@ interface CommerceCheckoutShippingAddressWrapperElement
|
|
|
1875
2014
|
NoTextContent,
|
|
1876
2015
|
NoAppConnections,
|
|
1877
2016
|
DisplayName,
|
|
2017
|
+
BindableSourceSearch,
|
|
1878
2018
|
ElementSettings {
|
|
1879
2019
|
readonly id: FullElementId;
|
|
1880
2020
|
readonly type: 'CommerceCheckoutShippingAddressWrapper';
|
|
@@ -1891,6 +2031,7 @@ interface CommerceCheckoutShippingCountrySelectorElement
|
|
|
1891
2031
|
NoTextContent,
|
|
1892
2032
|
NoAppConnections,
|
|
1893
2033
|
DisplayName,
|
|
2034
|
+
BindableSourceSearch,
|
|
1894
2035
|
ElementSettings {
|
|
1895
2036
|
readonly id: FullElementId;
|
|
1896
2037
|
readonly type: 'CommerceCheckoutShippingCountrySelector';
|
|
@@ -1907,6 +2048,7 @@ interface CommerceCheckoutShippingFullNameElement
|
|
|
1907
2048
|
NoTextContent,
|
|
1908
2049
|
NoAppConnections,
|
|
1909
2050
|
DisplayName,
|
|
2051
|
+
BindableSourceSearch,
|
|
1910
2052
|
ElementSettings {
|
|
1911
2053
|
readonly id: FullElementId;
|
|
1912
2054
|
readonly type: 'CommerceCheckoutShippingFullName';
|
|
@@ -1923,6 +2065,7 @@ interface CommerceCheckoutShippingStreetAddressElement
|
|
|
1923
2065
|
NoTextContent,
|
|
1924
2066
|
NoAppConnections,
|
|
1925
2067
|
DisplayName,
|
|
2068
|
+
BindableSourceSearch,
|
|
1926
2069
|
ElementSettings {
|
|
1927
2070
|
readonly id: FullElementId;
|
|
1928
2071
|
readonly type: 'CommerceCheckoutShippingStreetAddress';
|
|
@@ -1939,6 +2082,7 @@ interface CommerceCheckoutShippingStreetAddressOptionalElement
|
|
|
1939
2082
|
NoTextContent,
|
|
1940
2083
|
NoAppConnections,
|
|
1941
2084
|
DisplayName,
|
|
2085
|
+
BindableSourceSearch,
|
|
1942
2086
|
ElementSettings {
|
|
1943
2087
|
readonly id: FullElementId;
|
|
1944
2088
|
readonly type: 'CommerceCheckoutShippingStreetAddressOptional';
|
|
@@ -1955,6 +2099,7 @@ interface CommerceCheckoutShippingCityElement
|
|
|
1955
2099
|
NoTextContent,
|
|
1956
2100
|
NoAppConnections,
|
|
1957
2101
|
DisplayName,
|
|
2102
|
+
BindableSourceSearch,
|
|
1958
2103
|
ElementSettings {
|
|
1959
2104
|
readonly id: FullElementId;
|
|
1960
2105
|
readonly type: 'CommerceCheckoutShippingCity';
|
|
@@ -1971,6 +2116,7 @@ interface CommerceCheckoutShippingZipPostalCodeElement
|
|
|
1971
2116
|
NoTextContent,
|
|
1972
2117
|
NoAppConnections,
|
|
1973
2118
|
DisplayName,
|
|
2119
|
+
BindableSourceSearch,
|
|
1974
2120
|
ElementSettings {
|
|
1975
2121
|
readonly id: FullElementId;
|
|
1976
2122
|
readonly type: 'CommerceCheckoutShippingZipPostalCode';
|
|
@@ -1987,6 +2133,7 @@ interface CommerceCheckoutShippingStateProvinceElement
|
|
|
1987
2133
|
NoTextContent,
|
|
1988
2134
|
NoAppConnections,
|
|
1989
2135
|
DisplayName,
|
|
2136
|
+
BindableSourceSearch,
|
|
1990
2137
|
ElementSettings {
|
|
1991
2138
|
readonly id: FullElementId;
|
|
1992
2139
|
readonly type: 'CommerceCheckoutShippingStateProvince';
|
|
@@ -2003,6 +2150,7 @@ interface CommerceOrderConfirmationElement
|
|
|
2003
2150
|
NoTextContent,
|
|
2004
2151
|
NoAppConnections,
|
|
2005
2152
|
DisplayName,
|
|
2153
|
+
BindableSourceSearch,
|
|
2006
2154
|
ElementSettings {
|
|
2007
2155
|
readonly id: FullElementId;
|
|
2008
2156
|
readonly type: 'CommerceOrderConfirmation';
|
|
@@ -2019,6 +2167,7 @@ interface CommerceOrderConfirmationContainerElement
|
|
|
2019
2167
|
NoTextContent,
|
|
2020
2168
|
NoAppConnections,
|
|
2021
2169
|
DisplayName,
|
|
2170
|
+
BindableSourceSearch,
|
|
2022
2171
|
ElementSettings {
|
|
2023
2172
|
readonly id: FullElementId;
|
|
2024
2173
|
readonly type: 'CommerceOrderConfirmationContainer';
|
|
@@ -2035,6 +2184,7 @@ interface CommerceOrderConfirmationHeaderWrapperElement
|
|
|
2035
2184
|
NoTextContent,
|
|
2036
2185
|
NoAppConnections,
|
|
2037
2186
|
DisplayName,
|
|
2187
|
+
BindableSourceSearch,
|
|
2038
2188
|
ElementSettings {
|
|
2039
2189
|
readonly id: FullElementId;
|
|
2040
2190
|
readonly type: 'CommerceOrderConfirmationHeaderWrapper';
|
|
@@ -2051,6 +2201,7 @@ interface CommerceCheckoutBillingAddressWrapperElement
|
|
|
2051
2201
|
NoTextContent,
|
|
2052
2202
|
NoAppConnections,
|
|
2053
2203
|
DisplayName,
|
|
2204
|
+
BindableSourceSearch,
|
|
2054
2205
|
ElementSettings {
|
|
2055
2206
|
readonly id: FullElementId;
|
|
2056
2207
|
readonly type: 'CommerceCheckoutBillingAddressWrapper';
|
|
@@ -2067,6 +2218,7 @@ interface CommerceCheckoutBillingCountrySelectorElement
|
|
|
2067
2218
|
NoTextContent,
|
|
2068
2219
|
NoAppConnections,
|
|
2069
2220
|
DisplayName,
|
|
2221
|
+
BindableSourceSearch,
|
|
2070
2222
|
ElementSettings {
|
|
2071
2223
|
readonly id: FullElementId;
|
|
2072
2224
|
readonly type: 'CommerceCheckoutBillingCountrySelector';
|
|
@@ -2083,6 +2235,7 @@ interface CommerceCheckoutBillingFullNameElement
|
|
|
2083
2235
|
NoTextContent,
|
|
2084
2236
|
NoAppConnections,
|
|
2085
2237
|
DisplayName,
|
|
2238
|
+
BindableSourceSearch,
|
|
2086
2239
|
ElementSettings {
|
|
2087
2240
|
readonly id: FullElementId;
|
|
2088
2241
|
readonly type: 'CommerceCheckoutBillingFullName';
|
|
@@ -2099,6 +2252,7 @@ interface CommerceCheckoutBillingStreetAddressElement
|
|
|
2099
2252
|
NoTextContent,
|
|
2100
2253
|
NoAppConnections,
|
|
2101
2254
|
DisplayName,
|
|
2255
|
+
BindableSourceSearch,
|
|
2102
2256
|
ElementSettings {
|
|
2103
2257
|
readonly id: FullElementId;
|
|
2104
2258
|
readonly type: 'CommerceCheckoutBillingStreetAddress';
|
|
@@ -2115,6 +2269,7 @@ interface CommerceCheckoutBillingStreetAddressOptionalElement
|
|
|
2115
2269
|
NoTextContent,
|
|
2116
2270
|
NoAppConnections,
|
|
2117
2271
|
DisplayName,
|
|
2272
|
+
BindableSourceSearch,
|
|
2118
2273
|
ElementSettings {
|
|
2119
2274
|
readonly id: FullElementId;
|
|
2120
2275
|
readonly type: 'CommerceCheckoutBillingStreetAddressOptional';
|
|
@@ -2131,6 +2286,7 @@ interface CommerceCheckoutBillingCityElement
|
|
|
2131
2286
|
NoTextContent,
|
|
2132
2287
|
NoAppConnections,
|
|
2133
2288
|
DisplayName,
|
|
2289
|
+
BindableSourceSearch,
|
|
2134
2290
|
ElementSettings {
|
|
2135
2291
|
readonly id: FullElementId;
|
|
2136
2292
|
readonly type: 'CommerceCheckoutBillingCity';
|
|
@@ -2147,6 +2303,7 @@ interface CommerceCheckoutBillingZipPostalCodeElement
|
|
|
2147
2303
|
NoTextContent,
|
|
2148
2304
|
NoAppConnections,
|
|
2149
2305
|
DisplayName,
|
|
2306
|
+
BindableSourceSearch,
|
|
2150
2307
|
ElementSettings {
|
|
2151
2308
|
readonly id: FullElementId;
|
|
2152
2309
|
readonly type: 'CommerceCheckoutBillingZipPostalCode';
|
|
@@ -2163,6 +2320,7 @@ interface CommerceCheckoutBillingStateProvinceElement
|
|
|
2163
2320
|
NoTextContent,
|
|
2164
2321
|
NoAppConnections,
|
|
2165
2322
|
DisplayName,
|
|
2323
|
+
BindableSourceSearch,
|
|
2166
2324
|
ElementSettings {
|
|
2167
2325
|
readonly id: FullElementId;
|
|
2168
2326
|
readonly type: 'CommerceCheckoutBillingStateProvince';
|
|
@@ -2179,6 +2337,7 @@ interface CommerceCheckoutBillingAddressToggleWrapperElement
|
|
|
2179
2337
|
NoTextContent,
|
|
2180
2338
|
NoAppConnections,
|
|
2181
2339
|
DisplayName,
|
|
2340
|
+
BindableSourceSearch,
|
|
2182
2341
|
ElementSettings {
|
|
2183
2342
|
readonly id: FullElementId;
|
|
2184
2343
|
readonly type: 'CommerceCheckoutBillingAddressToggleWrapper';
|
|
@@ -2195,6 +2354,7 @@ interface CommerceCheckoutBillingAddressToggleCheckboxElement
|
|
|
2195
2354
|
NoTextContent,
|
|
2196
2355
|
NoAppConnections,
|
|
2197
2356
|
DisplayName,
|
|
2357
|
+
BindableSourceSearch,
|
|
2198
2358
|
ElementSettings {
|
|
2199
2359
|
readonly id: FullElementId;
|
|
2200
2360
|
readonly type: 'CommerceCheckoutBillingAddressToggleCheckbox';
|
|
@@ -2211,6 +2371,7 @@ interface CommerceCheckoutBillingAddressToggleLabelElement
|
|
|
2211
2371
|
TextContent,
|
|
2212
2372
|
NoAppConnections,
|
|
2213
2373
|
DisplayName,
|
|
2374
|
+
BindableSourceSearch,
|
|
2214
2375
|
ElementSettings {
|
|
2215
2376
|
readonly id: FullElementId;
|
|
2216
2377
|
readonly type: 'CommerceCheckoutBillingAddressToggleLabel';
|
|
@@ -2227,6 +2388,7 @@ interface CommerceCheckoutOrderItemsWrapperElement
|
|
|
2227
2388
|
NoTextContent,
|
|
2228
2389
|
NoAppConnections,
|
|
2229
2390
|
DisplayName,
|
|
2391
|
+
BindableSourceSearch,
|
|
2230
2392
|
ElementSettings {
|
|
2231
2393
|
readonly id: FullElementId;
|
|
2232
2394
|
readonly type: 'CommerceCheckoutOrderItemsWrapper';
|
|
@@ -2243,6 +2405,7 @@ interface CommerceCheckoutOrderItemsListElement
|
|
|
2243
2405
|
NoTextContent,
|
|
2244
2406
|
NoAppConnections,
|
|
2245
2407
|
DisplayName,
|
|
2408
|
+
BindableSourceSearch,
|
|
2246
2409
|
ElementSettings {
|
|
2247
2410
|
readonly id: FullElementId;
|
|
2248
2411
|
readonly type: 'CommerceCheckoutOrderItemsList';
|
|
@@ -2259,6 +2422,7 @@ interface CommerceCheckoutOrderItemElement
|
|
|
2259
2422
|
NoTextContent,
|
|
2260
2423
|
NoAppConnections,
|
|
2261
2424
|
DisplayName,
|
|
2425
|
+
BindableSourceSearch,
|
|
2262
2426
|
ElementSettings {
|
|
2263
2427
|
readonly id: FullElementId;
|
|
2264
2428
|
readonly type: 'CommerceCheckoutOrderItem';
|
|
@@ -2275,6 +2439,7 @@ interface CommerceBoldTextBlockElement
|
|
|
2275
2439
|
NoTextContent,
|
|
2276
2440
|
NoAppConnections,
|
|
2277
2441
|
DisplayName,
|
|
2442
|
+
BindableSourceSearch,
|
|
2278
2443
|
ElementSettings {
|
|
2279
2444
|
readonly id: FullElementId;
|
|
2280
2445
|
readonly type: 'CommerceBoldTextBlock';
|
|
@@ -2291,6 +2456,7 @@ interface CommerceCheckoutOrderItemDescriptionWrapperElement
|
|
|
2291
2456
|
NoTextContent,
|
|
2292
2457
|
NoAppConnections,
|
|
2293
2458
|
DisplayName,
|
|
2459
|
+
BindableSourceSearch,
|
|
2294
2460
|
ElementSettings {
|
|
2295
2461
|
readonly id: FullElementId;
|
|
2296
2462
|
readonly type: 'CommerceCheckoutOrderItemDescriptionWrapper';
|
|
@@ -2307,6 +2473,7 @@ interface CommerceCheckoutOrderItemQuantityWrapperElement
|
|
|
2307
2473
|
NoTextContent,
|
|
2308
2474
|
NoAppConnections,
|
|
2309
2475
|
DisplayName,
|
|
2476
|
+
BindableSourceSearch,
|
|
2310
2477
|
ElementSettings {
|
|
2311
2478
|
readonly id: FullElementId;
|
|
2312
2479
|
readonly type: 'CommerceCheckoutOrderItemQuantityWrapper';
|
|
@@ -2323,6 +2490,7 @@ interface CommerceCheckoutOrderItemOptionListElement
|
|
|
2323
2490
|
NoTextContent,
|
|
2324
2491
|
NoAppConnections,
|
|
2325
2492
|
DisplayName,
|
|
2493
|
+
BindableSourceSearch,
|
|
2326
2494
|
ElementSettings {
|
|
2327
2495
|
readonly id: FullElementId;
|
|
2328
2496
|
readonly type: 'CommerceCheckoutOrderItemOptionList';
|
|
@@ -2339,6 +2507,7 @@ interface CommerceCheckoutOrderItemOptionListItemElement
|
|
|
2339
2507
|
NoTextContent,
|
|
2340
2508
|
NoAppConnections,
|
|
2341
2509
|
DisplayName,
|
|
2510
|
+
BindableSourceSearch,
|
|
2342
2511
|
ElementSettings {
|
|
2343
2512
|
readonly id: FullElementId;
|
|
2344
2513
|
readonly type: 'CommerceCheckoutOrderItemOptionListItem';
|
|
@@ -2355,6 +2524,7 @@ interface CommerceCheckoutOrderItemOptionListItemLabelElement
|
|
|
2355
2524
|
TextContent,
|
|
2356
2525
|
NoAppConnections,
|
|
2357
2526
|
DisplayName,
|
|
2527
|
+
BindableSourceSearch,
|
|
2358
2528
|
ElementSettings {
|
|
2359
2529
|
readonly id: FullElementId;
|
|
2360
2530
|
readonly type: 'CommerceCheckoutOrderItemOptionListItemLabel';
|
|
@@ -2371,6 +2541,7 @@ interface CommerceCheckoutOrderItemOptionListItemValueElement
|
|
|
2371
2541
|
TextContent,
|
|
2372
2542
|
NoAppConnections,
|
|
2373
2543
|
DisplayName,
|
|
2544
|
+
BindableSourceSearch,
|
|
2374
2545
|
ElementSettings {
|
|
2375
2546
|
readonly id: FullElementId;
|
|
2376
2547
|
readonly type: 'CommerceCheckoutOrderItemOptionListItemValue';
|
|
@@ -2387,6 +2558,7 @@ interface CommerceCheckoutOrderItemTrialTextWrapperElement
|
|
|
2387
2558
|
NoTextContent,
|
|
2388
2559
|
NoAppConnections,
|
|
2389
2560
|
DisplayName,
|
|
2561
|
+
BindableSourceSearch,
|
|
2390
2562
|
ElementSettings {
|
|
2391
2563
|
readonly id: FullElementId;
|
|
2392
2564
|
readonly type: 'CommerceCheckoutOrderItemTrialTextWrapper';
|
|
@@ -2403,6 +2575,7 @@ interface CommerceCheckoutShippingMethodsWrapperElement
|
|
|
2403
2575
|
NoTextContent,
|
|
2404
2576
|
NoAppConnections,
|
|
2405
2577
|
DisplayName,
|
|
2578
|
+
BindableSourceSearch,
|
|
2406
2579
|
ElementSettings {
|
|
2407
2580
|
readonly id: FullElementId;
|
|
2408
2581
|
readonly type: 'CommerceCheckoutShippingMethodsWrapper';
|
|
@@ -2419,6 +2592,7 @@ interface CommerceCheckoutShippingMethodsEmptyStateElement
|
|
|
2419
2592
|
NoTextContent,
|
|
2420
2593
|
NoAppConnections,
|
|
2421
2594
|
DisplayName,
|
|
2595
|
+
BindableSourceSearch,
|
|
2422
2596
|
ElementSettings {
|
|
2423
2597
|
readonly id: FullElementId;
|
|
2424
2598
|
readonly type: 'CommerceCheckoutShippingMethodsEmptyState';
|
|
@@ -2435,6 +2609,7 @@ interface CommerceCheckoutShippingMethodsListElement
|
|
|
2435
2609
|
NoTextContent,
|
|
2436
2610
|
NoAppConnections,
|
|
2437
2611
|
DisplayName,
|
|
2612
|
+
BindableSourceSearch,
|
|
2438
2613
|
ElementSettings {
|
|
2439
2614
|
readonly id: FullElementId;
|
|
2440
2615
|
readonly type: 'CommerceCheckoutShippingMethodsList';
|
|
@@ -2451,6 +2626,7 @@ interface CommerceCheckoutShippingMethodItemElement
|
|
|
2451
2626
|
NoTextContent,
|
|
2452
2627
|
NoAppConnections,
|
|
2453
2628
|
DisplayName,
|
|
2629
|
+
BindableSourceSearch,
|
|
2454
2630
|
ElementSettings {
|
|
2455
2631
|
readonly id: FullElementId;
|
|
2456
2632
|
readonly type: 'CommerceCheckoutShippingMethodItem';
|
|
@@ -2467,6 +2643,7 @@ interface CommerceCheckoutShippingMethodRadioButtonElement
|
|
|
2467
2643
|
NoTextContent,
|
|
2468
2644
|
NoAppConnections,
|
|
2469
2645
|
DisplayName,
|
|
2646
|
+
BindableSourceSearch,
|
|
2470
2647
|
ElementSettings {
|
|
2471
2648
|
readonly id: FullElementId;
|
|
2472
2649
|
readonly type: 'CommerceCheckoutShippingMethodRadioButton';
|
|
@@ -2483,6 +2660,7 @@ interface CommerceCheckoutShippingMethodDescriptionBlockElement
|
|
|
2483
2660
|
NoTextContent,
|
|
2484
2661
|
NoAppConnections,
|
|
2485
2662
|
DisplayName,
|
|
2663
|
+
BindableSourceSearch,
|
|
2486
2664
|
ElementSettings {
|
|
2487
2665
|
readonly id: FullElementId;
|
|
2488
2666
|
readonly type: 'CommerceCheckoutShippingMethodDescriptionBlock';
|
|
@@ -2499,6 +2677,7 @@ interface CommerceCheckoutShippingMethodNameBlockElement
|
|
|
2499
2677
|
NoTextContent,
|
|
2500
2678
|
NoAppConnections,
|
|
2501
2679
|
DisplayName,
|
|
2680
|
+
BindableSourceSearch,
|
|
2502
2681
|
ElementSettings {
|
|
2503
2682
|
readonly id: FullElementId;
|
|
2504
2683
|
readonly type: 'CommerceCheckoutShippingMethodNameBlock';
|
|
@@ -2515,6 +2694,7 @@ interface CommerceCheckoutShippingMethodBlockWrapperElement
|
|
|
2515
2694
|
NoTextContent,
|
|
2516
2695
|
NoAppConnections,
|
|
2517
2696
|
DisplayName,
|
|
2697
|
+
BindableSourceSearch,
|
|
2518
2698
|
ElementSettings {
|
|
2519
2699
|
readonly id: FullElementId;
|
|
2520
2700
|
readonly type: 'CommerceCheckoutShippingMethodBlockWrapper';
|
|
@@ -2531,6 +2711,7 @@ interface CommerceCheckoutCustomerInfoSummaryWrapperElement
|
|
|
2531
2711
|
NoTextContent,
|
|
2532
2712
|
NoAppConnections,
|
|
2533
2713
|
DisplayName,
|
|
2714
|
+
BindableSourceSearch,
|
|
2534
2715
|
ElementSettings {
|
|
2535
2716
|
readonly id: FullElementId;
|
|
2536
2717
|
readonly type: 'CommerceCheckoutCustomerInfoSummaryWrapper';
|
|
@@ -2547,6 +2728,7 @@ interface CommerceCheckoutShippingSummaryWrapperElement
|
|
|
2547
2728
|
NoTextContent,
|
|
2548
2729
|
NoAppConnections,
|
|
2549
2730
|
DisplayName,
|
|
2731
|
+
BindableSourceSearch,
|
|
2550
2732
|
ElementSettings {
|
|
2551
2733
|
readonly id: FullElementId;
|
|
2552
2734
|
readonly type: 'CommerceCheckoutShippingSummaryWrapper';
|
|
@@ -2563,6 +2745,7 @@ interface CommerceCheckoutPaymentSummaryWrapperElement
|
|
|
2563
2745
|
NoTextContent,
|
|
2564
2746
|
NoAppConnections,
|
|
2565
2747
|
DisplayName,
|
|
2748
|
+
BindableSourceSearch,
|
|
2566
2749
|
ElementSettings {
|
|
2567
2750
|
readonly id: FullElementId;
|
|
2568
2751
|
readonly type: 'CommerceCheckoutPaymentSummaryWrapper';
|
|
@@ -2579,6 +2762,7 @@ interface CommerceCheckoutOrderSummaryWrapperElement
|
|
|
2579
2762
|
NoTextContent,
|
|
2580
2763
|
NoAppConnections,
|
|
2581
2764
|
DisplayName,
|
|
2765
|
+
BindableSourceSearch,
|
|
2582
2766
|
ElementSettings {
|
|
2583
2767
|
readonly id: FullElementId;
|
|
2584
2768
|
readonly type: 'CommerceCheckoutOrderSummaryWrapper';
|
|
@@ -2595,6 +2779,7 @@ interface CommerceCheckoutSummaryItemElement
|
|
|
2595
2779
|
NoTextContent,
|
|
2596
2780
|
NoAppConnections,
|
|
2597
2781
|
DisplayName,
|
|
2782
|
+
BindableSourceSearch,
|
|
2598
2783
|
ElementSettings {
|
|
2599
2784
|
readonly id: FullElementId;
|
|
2600
2785
|
readonly type: 'CommerceCheckoutSummaryItem';
|
|
@@ -2611,6 +2796,7 @@ interface CommerceCheckoutSummaryLabelElement
|
|
|
2611
2796
|
TextContent,
|
|
2612
2797
|
NoAppConnections,
|
|
2613
2798
|
DisplayName,
|
|
2799
|
+
BindableSourceSearch,
|
|
2614
2800
|
ElementSettings {
|
|
2615
2801
|
readonly id: FullElementId;
|
|
2616
2802
|
readonly type: 'CommerceCheckoutSummaryLabel';
|
|
@@ -2627,6 +2813,7 @@ interface CommerceCheckoutSummaryBlockHeaderElement
|
|
|
2627
2813
|
NoTextContent,
|
|
2628
2814
|
NoAppConnections,
|
|
2629
2815
|
DisplayName,
|
|
2816
|
+
BindableSourceSearch,
|
|
2630
2817
|
ElementSettings {
|
|
2631
2818
|
readonly id: FullElementId;
|
|
2632
2819
|
readonly type: 'CommerceCheckoutSummaryBlockHeader';
|
|
@@ -2643,6 +2830,7 @@ interface CommerceCheckoutSummaryLineItemElement
|
|
|
2643
2830
|
NoTextContent,
|
|
2644
2831
|
NoAppConnections,
|
|
2645
2832
|
DisplayName,
|
|
2833
|
+
BindableSourceSearch,
|
|
2646
2834
|
ElementSettings {
|
|
2647
2835
|
readonly id: FullElementId;
|
|
2648
2836
|
readonly type: 'CommerceCheckoutSummaryLineItem';
|
|
@@ -2659,6 +2847,7 @@ interface CommerceCheckoutSummaryTotalElement
|
|
|
2659
2847
|
NoTextContent,
|
|
2660
2848
|
NoAppConnections,
|
|
2661
2849
|
DisplayName,
|
|
2850
|
+
BindableSourceSearch,
|
|
2662
2851
|
ElementSettings {
|
|
2663
2852
|
readonly id: FullElementId;
|
|
2664
2853
|
readonly type: 'CommerceCheckoutSummaryTotal';
|
|
@@ -2675,6 +2864,7 @@ interface CommerceCheckoutSummaryTextSpacingOnDivElement
|
|
|
2675
2864
|
NoTextContent,
|
|
2676
2865
|
NoAppConnections,
|
|
2677
2866
|
DisplayName,
|
|
2867
|
+
BindableSourceSearch,
|
|
2678
2868
|
ElementSettings {
|
|
2679
2869
|
readonly id: FullElementId;
|
|
2680
2870
|
readonly type: 'CommerceCheckoutSummaryTextSpacingOnDiv';
|
|
@@ -2691,6 +2881,7 @@ interface CommerceCheckoutSummaryFlexBoxDivElement
|
|
|
2691
2881
|
NoTextContent,
|
|
2692
2882
|
NoAppConnections,
|
|
2693
2883
|
DisplayName,
|
|
2884
|
+
BindableSourceSearch,
|
|
2694
2885
|
ElementSettings {
|
|
2695
2886
|
readonly id: FullElementId;
|
|
2696
2887
|
readonly type: 'CommerceCheckoutSummaryFlexBoxDiv';
|
|
@@ -2707,6 +2898,7 @@ interface CommerceCheckoutOrderItemDescriptionPriceElement
|
|
|
2707
2898
|
NoTextContent,
|
|
2708
2899
|
NoAppConnections,
|
|
2709
2900
|
DisplayName,
|
|
2901
|
+
BindableSourceSearch,
|
|
2710
2902
|
ElementSettings {
|
|
2711
2903
|
readonly id: FullElementId;
|
|
2712
2904
|
readonly type: 'CommerceCheckoutOrderItemDescriptionPrice';
|
|
@@ -2723,6 +2915,7 @@ interface CommerceCheckoutOrderSummaryExtraItemsListElement
|
|
|
2723
2915
|
NoTextContent,
|
|
2724
2916
|
NoAppConnections,
|
|
2725
2917
|
DisplayName,
|
|
2918
|
+
BindableSourceSearch,
|
|
2726
2919
|
ElementSettings {
|
|
2727
2920
|
readonly id: FullElementId;
|
|
2728
2921
|
readonly type: 'CommerceCheckoutOrderSummaryExtraItemsList';
|
|
@@ -2739,6 +2932,7 @@ interface CommerceCheckoutOrderSummaryExtraItemsListItemElement
|
|
|
2739
2932
|
NoTextContent,
|
|
2740
2933
|
NoAppConnections,
|
|
2741
2934
|
DisplayName,
|
|
2935
|
+
BindableSourceSearch,
|
|
2742
2936
|
ElementSettings {
|
|
2743
2937
|
readonly id: FullElementId;
|
|
2744
2938
|
readonly type: 'CommerceCheckoutOrderSummaryExtraItemsListItem';
|
|
@@ -2755,6 +2949,7 @@ interface CommerceCheckoutErrorMsgElement
|
|
|
2755
2949
|
NoTextContent,
|
|
2756
2950
|
NoAppConnections,
|
|
2757
2951
|
DisplayName,
|
|
2952
|
+
BindableSourceSearch,
|
|
2758
2953
|
ElementSettings {
|
|
2759
2954
|
readonly id: FullElementId;
|
|
2760
2955
|
readonly type: 'CommerceCheckoutErrorMsg';
|
|
@@ -2771,6 +2966,7 @@ interface CommerceCartErrorMsgElement
|
|
|
2771
2966
|
NoTextContent,
|
|
2772
2967
|
NoAppConnections,
|
|
2773
2968
|
DisplayName,
|
|
2969
|
+
BindableSourceSearch,
|
|
2774
2970
|
ElementSettings {
|
|
2775
2971
|
readonly id: FullElementId;
|
|
2776
2972
|
readonly type: 'CommerceCartErrorMsg';
|
|
@@ -2787,6 +2983,7 @@ interface CommerceAddToCartErrorMsgElement
|
|
|
2787
2983
|
NoTextContent,
|
|
2788
2984
|
NoAppConnections,
|
|
2789
2985
|
DisplayName,
|
|
2986
|
+
BindableSourceSearch,
|
|
2790
2987
|
ElementSettings {
|
|
2791
2988
|
readonly id: FullElementId;
|
|
2792
2989
|
readonly type: 'CommerceAddToCartErrorMsg';
|
|
@@ -2803,6 +3000,7 @@ interface CommerceLayoutMainElement
|
|
|
2803
3000
|
NoTextContent,
|
|
2804
3001
|
NoAppConnections,
|
|
2805
3002
|
DisplayName,
|
|
3003
|
+
BindableSourceSearch,
|
|
2806
3004
|
ElementSettings {
|
|
2807
3005
|
readonly id: FullElementId;
|
|
2808
3006
|
readonly type: 'CommerceLayoutMain';
|
|
@@ -2819,6 +3017,7 @@ interface CommerceLayoutSidebarElement
|
|
|
2819
3017
|
NoTextContent,
|
|
2820
3018
|
NoAppConnections,
|
|
2821
3019
|
DisplayName,
|
|
3020
|
+
BindableSourceSearch,
|
|
2822
3021
|
ElementSettings {
|
|
2823
3022
|
readonly id: FullElementId;
|
|
2824
3023
|
readonly type: 'CommerceLayoutSidebar';
|
|
@@ -2835,6 +3034,7 @@ interface CommerceLayoutContainerElement
|
|
|
2835
3034
|
NoTextContent,
|
|
2836
3035
|
NoAppConnections,
|
|
2837
3036
|
DisplayName,
|
|
3037
|
+
BindableSourceSearch,
|
|
2838
3038
|
ElementSettings {
|
|
2839
3039
|
readonly id: FullElementId;
|
|
2840
3040
|
readonly type: 'CommerceLayoutContainer';
|
|
@@ -2851,6 +3051,7 @@ interface CommercePaypalCheckoutFormContainerElement
|
|
|
2851
3051
|
NoTextContent,
|
|
2852
3052
|
NoAppConnections,
|
|
2853
3053
|
DisplayName,
|
|
3054
|
+
BindableSourceSearch,
|
|
2854
3055
|
ElementSettings {
|
|
2855
3056
|
readonly id: FullElementId;
|
|
2856
3057
|
readonly type: 'CommercePaypalCheckoutFormContainer';
|
|
@@ -2867,6 +3068,7 @@ interface CommercePaypalCheckoutErrorStateElement
|
|
|
2867
3068
|
NoTextContent,
|
|
2868
3069
|
NoAppConnections,
|
|
2869
3070
|
DisplayName,
|
|
3071
|
+
BindableSourceSearch,
|
|
2870
3072
|
ElementSettings {
|
|
2871
3073
|
readonly id: FullElementId;
|
|
2872
3074
|
readonly type: 'CommercePaypalCheckoutErrorState';
|
|
@@ -2883,6 +3085,7 @@ interface CommercePaypalCheckoutErrorMessageElement
|
|
|
2883
3085
|
NoTextContent,
|
|
2884
3086
|
NoAppConnections,
|
|
2885
3087
|
DisplayName,
|
|
3088
|
+
BindableSourceSearch,
|
|
2886
3089
|
ElementSettings {
|
|
2887
3090
|
readonly id: FullElementId;
|
|
2888
3091
|
readonly type: 'CommercePaypalCheckoutErrorMessage';
|
|
@@ -2899,6 +3102,7 @@ interface CommerceCheckoutAdditionalInputsContainerElement
|
|
|
2899
3102
|
NoTextContent,
|
|
2900
3103
|
NoAppConnections,
|
|
2901
3104
|
DisplayName,
|
|
3105
|
+
BindableSourceSearch,
|
|
2902
3106
|
ElementSettings {
|
|
2903
3107
|
readonly id: FullElementId;
|
|
2904
3108
|
readonly type: 'CommerceCheckoutAdditionalInputsContainer';
|
|
@@ -2915,6 +3119,7 @@ interface CommerceCheckoutAdditionalInfoSummaryWrapperElement
|
|
|
2915
3119
|
NoTextContent,
|
|
2916
3120
|
NoAppConnections,
|
|
2917
3121
|
DisplayName,
|
|
3122
|
+
BindableSourceSearch,
|
|
2918
3123
|
ElementSettings {
|
|
2919
3124
|
readonly id: FullElementId;
|
|
2920
3125
|
readonly type: 'CommerceCheckoutAdditionalInfoSummaryWrapper';
|
|
@@ -2931,6 +3136,7 @@ interface CommerceCheckoutAdditionalTextAreaElement
|
|
|
2931
3136
|
NoTextContent,
|
|
2932
3137
|
NoAppConnections,
|
|
2933
3138
|
DisplayName,
|
|
3139
|
+
BindableSourceSearch,
|
|
2934
3140
|
ElementSettings {
|
|
2935
3141
|
readonly id: FullElementId;
|
|
2936
3142
|
readonly type: 'CommerceCheckoutAdditionalTextArea';
|
|
@@ -2947,6 +3153,7 @@ interface CommerceCheckoutAdditionalTextInputElement
|
|
|
2947
3153
|
NoTextContent,
|
|
2948
3154
|
NoAppConnections,
|
|
2949
3155
|
DisplayName,
|
|
3156
|
+
BindableSourceSearch,
|
|
2950
3157
|
ElementSettings {
|
|
2951
3158
|
readonly id: FullElementId;
|
|
2952
3159
|
readonly type: 'CommerceCheckoutAdditionalTextInput';
|
|
@@ -2963,6 +3170,7 @@ interface CommerceCheckoutAdditionalCheckboxElement
|
|
|
2963
3170
|
NoTextContent,
|
|
2964
3171
|
NoAppConnections,
|
|
2965
3172
|
DisplayName,
|
|
3173
|
+
BindableSourceSearch,
|
|
2966
3174
|
ElementSettings {
|
|
2967
3175
|
readonly id: FullElementId;
|
|
2968
3176
|
readonly type: 'CommerceCheckoutAdditionalCheckbox';
|
|
@@ -2979,6 +3187,7 @@ interface CommerceCheckoutAdditionalCheckboxWrapperElement
|
|
|
2979
3187
|
NoTextContent,
|
|
2980
3188
|
NoAppConnections,
|
|
2981
3189
|
DisplayName,
|
|
3190
|
+
BindableSourceSearch,
|
|
2982
3191
|
ElementSettings {
|
|
2983
3192
|
readonly id: FullElementId;
|
|
2984
3193
|
readonly type: 'CommerceCheckoutAdditionalCheckboxWrapper';
|
|
@@ -2995,6 +3204,7 @@ interface CommerceCheckoutDiscountsElement
|
|
|
2995
3204
|
NoTextContent,
|
|
2996
3205
|
NoAppConnections,
|
|
2997
3206
|
DisplayName,
|
|
3207
|
+
BindableSourceSearch,
|
|
2998
3208
|
ElementSettings {
|
|
2999
3209
|
readonly id: FullElementId;
|
|
3000
3210
|
readonly type: 'CommerceCheckoutDiscounts';
|
|
@@ -3011,6 +3221,7 @@ interface CommerceCheckoutDiscountsButtonElement
|
|
|
3011
3221
|
TextContent,
|
|
3012
3222
|
NoAppConnections,
|
|
3013
3223
|
DisplayName,
|
|
3224
|
+
BindableSourceSearch,
|
|
3014
3225
|
ElementSettings {
|
|
3015
3226
|
readonly id: FullElementId;
|
|
3016
3227
|
readonly type: 'CommerceCheckoutDiscountsButton';
|
|
@@ -3027,6 +3238,7 @@ interface CommerceCheckoutDiscountsInputElement
|
|
|
3027
3238
|
NoTextContent,
|
|
3028
3239
|
NoAppConnections,
|
|
3029
3240
|
DisplayName,
|
|
3241
|
+
BindableSourceSearch,
|
|
3030
3242
|
ElementSettings {
|
|
3031
3243
|
readonly id: FullElementId;
|
|
3032
3244
|
readonly type: 'CommerceCheckoutDiscountsInput';
|
|
@@ -3043,6 +3255,7 @@ interface CommerceCheckoutDiscountsLabelElement
|
|
|
3043
3255
|
TextContent,
|
|
3044
3256
|
NoAppConnections,
|
|
3045
3257
|
DisplayName,
|
|
3258
|
+
BindableSourceSearch,
|
|
3046
3259
|
ElementSettings {
|
|
3047
3260
|
readonly id: FullElementId;
|
|
3048
3261
|
readonly type: 'CommerceCheckoutDiscountsLabel';
|
|
@@ -3059,6 +3272,7 @@ interface CommerceDownloadsWrapperElement
|
|
|
3059
3272
|
NoTextContent,
|
|
3060
3273
|
NoAppConnections,
|
|
3061
3274
|
DisplayName,
|
|
3275
|
+
BindableSourceSearch,
|
|
3062
3276
|
ElementSettings {
|
|
3063
3277
|
readonly id: FullElementId;
|
|
3064
3278
|
readonly type: 'CommerceDownloadsWrapper';
|
|
@@ -3075,6 +3289,7 @@ interface CommerceDownloadsListElement
|
|
|
3075
3289
|
NoTextContent,
|
|
3076
3290
|
NoAppConnections,
|
|
3077
3291
|
DisplayName,
|
|
3292
|
+
BindableSourceSearch,
|
|
3078
3293
|
ElementSettings {
|
|
3079
3294
|
readonly id: FullElementId;
|
|
3080
3295
|
readonly type: 'CommerceDownloadsList';
|
|
@@ -3091,6 +3306,7 @@ interface CommerceDownloadsItemElement
|
|
|
3091
3306
|
NoTextContent,
|
|
3092
3307
|
NoAppConnections,
|
|
3093
3308
|
DisplayName,
|
|
3309
|
+
BindableSourceSearch,
|
|
3094
3310
|
ElementSettings {
|
|
3095
3311
|
readonly id: FullElementId;
|
|
3096
3312
|
readonly type: 'CommerceDownloadsItem';
|
|
@@ -3107,6 +3323,7 @@ interface DropdownLinkElement
|
|
|
3107
3323
|
TextContent,
|
|
3108
3324
|
NoAppConnections,
|
|
3109
3325
|
DisplayName,
|
|
3326
|
+
BindableSourceSearch,
|
|
3110
3327
|
ElementSettings {
|
|
3111
3328
|
readonly id: FullElementId;
|
|
3112
3329
|
readonly type: 'DropdownLink';
|
|
@@ -3123,6 +3340,7 @@ interface DropdownListElement
|
|
|
3123
3340
|
NoTextContent,
|
|
3124
3341
|
NoAppConnections,
|
|
3125
3342
|
DisplayName,
|
|
3343
|
+
BindableSourceSearch,
|
|
3126
3344
|
ElementSettings {
|
|
3127
3345
|
readonly id: FullElementId;
|
|
3128
3346
|
readonly type: 'DropdownList';
|
|
@@ -3139,6 +3357,7 @@ interface DropdownToggleElement
|
|
|
3139
3357
|
NoTextContent,
|
|
3140
3358
|
NoAppConnections,
|
|
3141
3359
|
DisplayName,
|
|
3360
|
+
BindableSourceSearch,
|
|
3142
3361
|
ElementSettings {
|
|
3143
3362
|
readonly id: FullElementId;
|
|
3144
3363
|
readonly type: 'DropdownToggle';
|
|
@@ -3155,12 +3374,30 @@ interface DropdownWrapperElement
|
|
|
3155
3374
|
NoTextContent,
|
|
3156
3375
|
NoAppConnections,
|
|
3157
3376
|
DisplayName,
|
|
3377
|
+
BindableSourceSearch,
|
|
3158
3378
|
ElementSettings {
|
|
3159
3379
|
readonly id: FullElementId;
|
|
3160
3380
|
readonly type: 'DropdownWrapper';
|
|
3161
3381
|
readonly plugin: 'Dropdown';
|
|
3162
3382
|
}
|
|
3163
3383
|
|
|
3384
|
+
interface DropTargetElement
|
|
3385
|
+
extends
|
|
3386
|
+
WebflowElement,
|
|
3387
|
+
CustomAttributes,
|
|
3388
|
+
DomId,
|
|
3389
|
+
Styles,
|
|
3390
|
+
Children,
|
|
3391
|
+
NoTextContent,
|
|
3392
|
+
NoAppConnections,
|
|
3393
|
+
DisplayName,
|
|
3394
|
+
BindableSourceSearch,
|
|
3395
|
+
ElementSettings {
|
|
3396
|
+
readonly id: FullElementId;
|
|
3397
|
+
readonly type: 'DropTarget';
|
|
3398
|
+
readonly plugin: 'PageBuilding';
|
|
3399
|
+
}
|
|
3400
|
+
|
|
3164
3401
|
interface DynamoWrapperElement
|
|
3165
3402
|
extends
|
|
3166
3403
|
WebflowElement,
|
|
@@ -3171,6 +3408,7 @@ interface DynamoWrapperElement
|
|
|
3171
3408
|
NoTextContent,
|
|
3172
3409
|
NoAppConnections,
|
|
3173
3410
|
DisplayName,
|
|
3411
|
+
BindableSourceSearch,
|
|
3174
3412
|
ElementSettings {
|
|
3175
3413
|
readonly id: FullElementId;
|
|
3176
3414
|
readonly type: 'DynamoWrapper';
|
|
@@ -3187,6 +3425,7 @@ interface DynamoListElement
|
|
|
3187
3425
|
NoTextContent,
|
|
3188
3426
|
NoAppConnections,
|
|
3189
3427
|
DisplayName,
|
|
3428
|
+
BindableSourceSearch,
|
|
3190
3429
|
ElementSettings {
|
|
3191
3430
|
readonly id: FullElementId;
|
|
3192
3431
|
readonly type: 'DynamoList';
|
|
@@ -3203,6 +3442,7 @@ interface DynamoItemElement
|
|
|
3203
3442
|
NoTextContent,
|
|
3204
3443
|
NoAppConnections,
|
|
3205
3444
|
DisplayName,
|
|
3445
|
+
BindableSourceSearch,
|
|
3206
3446
|
ElementSettings {
|
|
3207
3447
|
readonly id: FullElementId;
|
|
3208
3448
|
readonly type: 'DynamoItem';
|
|
@@ -3219,6 +3459,7 @@ interface DynamoEmptyElement
|
|
|
3219
3459
|
NoTextContent,
|
|
3220
3460
|
NoAppConnections,
|
|
3221
3461
|
DisplayName,
|
|
3462
|
+
BindableSourceSearch,
|
|
3222
3463
|
ElementSettings {
|
|
3223
3464
|
readonly id: FullElementId;
|
|
3224
3465
|
readonly type: 'DynamoEmpty';
|
|
@@ -3235,6 +3476,7 @@ interface HtmlEmbedElement
|
|
|
3235
3476
|
NoTextContent,
|
|
3236
3477
|
NoAppConnections,
|
|
3237
3478
|
DisplayName,
|
|
3479
|
+
BindableSourceSearch,
|
|
3238
3480
|
ElementSettings {
|
|
3239
3481
|
readonly id: FullElementId;
|
|
3240
3482
|
readonly type: 'HtmlEmbed';
|
|
@@ -3251,6 +3493,7 @@ interface VideoElement
|
|
|
3251
3493
|
NoTextContent,
|
|
3252
3494
|
NoAppConnections,
|
|
3253
3495
|
DisplayName,
|
|
3496
|
+
BindableSourceSearch,
|
|
3254
3497
|
ElementSettings {
|
|
3255
3498
|
readonly id: FullElementId;
|
|
3256
3499
|
readonly type: 'Video';
|
|
@@ -3267,6 +3510,7 @@ interface YouTubeVideoElement
|
|
|
3267
3510
|
NoTextContent,
|
|
3268
3511
|
NoAppConnections,
|
|
3269
3512
|
DisplayName,
|
|
3513
|
+
BindableSourceSearch,
|
|
3270
3514
|
ElementSettings {
|
|
3271
3515
|
readonly id: FullElementId;
|
|
3272
3516
|
readonly type: 'YouTubeVideo';
|
|
@@ -3283,6 +3527,7 @@ interface LightboxWrapperElement
|
|
|
3283
3527
|
TextContent,
|
|
3284
3528
|
NoAppConnections,
|
|
3285
3529
|
DisplayName,
|
|
3530
|
+
BindableSourceSearch,
|
|
3286
3531
|
ElementSettings {
|
|
3287
3532
|
readonly id: FullElementId;
|
|
3288
3533
|
readonly type: 'LightboxWrapper';
|
|
@@ -3299,6 +3544,7 @@ interface FormBlockLabelElement
|
|
|
3299
3544
|
TextContent,
|
|
3300
3545
|
NoAppConnections,
|
|
3301
3546
|
DisplayName,
|
|
3547
|
+
BindableSourceSearch,
|
|
3302
3548
|
ElementSettings {
|
|
3303
3549
|
readonly id: FullElementId;
|
|
3304
3550
|
readonly type: 'FormBlockLabel';
|
|
@@ -3315,6 +3561,7 @@ interface FormButtonElement
|
|
|
3315
3561
|
NoTextContent,
|
|
3316
3562
|
NoAppConnections,
|
|
3317
3563
|
DisplayName,
|
|
3564
|
+
BindableSourceSearch,
|
|
3318
3565
|
ElementSettings {
|
|
3319
3566
|
readonly id: FullElementId;
|
|
3320
3567
|
readonly type: 'FormButton';
|
|
@@ -3331,6 +3578,7 @@ interface FormCheckboxInputElement
|
|
|
3331
3578
|
NoTextContent,
|
|
3332
3579
|
NoAppConnections,
|
|
3333
3580
|
DisplayName,
|
|
3581
|
+
BindableSourceSearch,
|
|
3334
3582
|
ElementSettings {
|
|
3335
3583
|
readonly id: FullElementId;
|
|
3336
3584
|
readonly type: 'FormCheckboxInput';
|
|
@@ -3351,6 +3599,7 @@ interface FormCheckboxWrapperElement
|
|
|
3351
3599
|
NoTextContent,
|
|
3352
3600
|
NoAppConnections,
|
|
3353
3601
|
DisplayName,
|
|
3602
|
+
BindableSourceSearch,
|
|
3354
3603
|
ElementSettings {
|
|
3355
3604
|
readonly id: FullElementId;
|
|
3356
3605
|
readonly type: 'FormCheckboxWrapper';
|
|
@@ -3367,6 +3616,7 @@ interface FormErrorMessageElement
|
|
|
3367
3616
|
NoTextContent,
|
|
3368
3617
|
NoAppConnections,
|
|
3369
3618
|
DisplayName,
|
|
3619
|
+
BindableSourceSearch,
|
|
3370
3620
|
ElementSettings {
|
|
3371
3621
|
readonly id: FullElementId;
|
|
3372
3622
|
readonly type: 'FormErrorMessage';
|
|
@@ -3383,6 +3633,7 @@ interface FormFormElement
|
|
|
3383
3633
|
NoTextContent,
|
|
3384
3634
|
AppConnections,
|
|
3385
3635
|
DisplayName,
|
|
3636
|
+
BindableSourceSearch,
|
|
3386
3637
|
ElementSettings {
|
|
3387
3638
|
readonly id: FullElementId;
|
|
3388
3639
|
readonly type: 'FormForm';
|
|
@@ -3391,6 +3642,10 @@ interface FormFormElement
|
|
|
3391
3642
|
setName(name: string): Promise<null>;
|
|
3392
3643
|
getSettings(): Promise<FormSettings>;
|
|
3393
3644
|
setSettings(settings: Partial<FormSettings>): Promise<null>;
|
|
3645
|
+
setSettings(
|
|
3646
|
+
this: {id: FullElementId},
|
|
3647
|
+
settings: SetSettingsInput
|
|
3648
|
+
): Promise<null>;
|
|
3394
3649
|
}
|
|
3395
3650
|
|
|
3396
3651
|
interface FormInlineLabelElement
|
|
@@ -3403,6 +3658,7 @@ interface FormInlineLabelElement
|
|
|
3403
3658
|
TextContent,
|
|
3404
3659
|
NoAppConnections,
|
|
3405
3660
|
DisplayName,
|
|
3661
|
+
BindableSourceSearch,
|
|
3406
3662
|
ElementSettings {
|
|
3407
3663
|
readonly id: FullElementId;
|
|
3408
3664
|
readonly type: 'FormInlineLabel';
|
|
@@ -3419,6 +3675,7 @@ interface FormRadioInputElement
|
|
|
3419
3675
|
NoTextContent,
|
|
3420
3676
|
NoAppConnections,
|
|
3421
3677
|
DisplayName,
|
|
3678
|
+
BindableSourceSearch,
|
|
3422
3679
|
ElementSettings {
|
|
3423
3680
|
readonly id: FullElementId;
|
|
3424
3681
|
readonly type: 'FormRadioInput';
|
|
@@ -3439,6 +3696,7 @@ interface FormRadioWrapperElement
|
|
|
3439
3696
|
NoTextContent,
|
|
3440
3697
|
NoAppConnections,
|
|
3441
3698
|
DisplayName,
|
|
3699
|
+
BindableSourceSearch,
|
|
3442
3700
|
ElementSettings {
|
|
3443
3701
|
readonly id: FullElementId;
|
|
3444
3702
|
readonly type: 'FormRadioWrapper';
|
|
@@ -3455,6 +3713,7 @@ interface FormSelectElement
|
|
|
3455
3713
|
NoTextContent,
|
|
3456
3714
|
NoAppConnections,
|
|
3457
3715
|
DisplayName,
|
|
3716
|
+
BindableSourceSearch,
|
|
3458
3717
|
ElementSettings {
|
|
3459
3718
|
readonly id: FullElementId;
|
|
3460
3719
|
readonly type: 'FormSelect';
|
|
@@ -3475,6 +3734,7 @@ interface FormSuccessMessageElement
|
|
|
3475
3734
|
NoTextContent,
|
|
3476
3735
|
NoAppConnections,
|
|
3477
3736
|
DisplayName,
|
|
3737
|
+
BindableSourceSearch,
|
|
3478
3738
|
ElementSettings {
|
|
3479
3739
|
readonly id: FullElementId;
|
|
3480
3740
|
readonly type: 'FormSuccessMessage';
|
|
@@ -3491,6 +3751,7 @@ interface FormTextareaElement
|
|
|
3491
3751
|
NoTextContent,
|
|
3492
3752
|
NoAppConnections,
|
|
3493
3753
|
DisplayName,
|
|
3754
|
+
BindableSourceSearch,
|
|
3494
3755
|
ElementSettings {
|
|
3495
3756
|
readonly id: FullElementId;
|
|
3496
3757
|
readonly type: 'FormTextarea';
|
|
@@ -3511,6 +3772,7 @@ interface FormTextInputElement
|
|
|
3511
3772
|
NoTextContent,
|
|
3512
3773
|
NoAppConnections,
|
|
3513
3774
|
DisplayName,
|
|
3775
|
+
BindableSourceSearch,
|
|
3514
3776
|
ElementSettings {
|
|
3515
3777
|
readonly id: FullElementId;
|
|
3516
3778
|
readonly type: 'FormTextInput';
|
|
@@ -3537,6 +3799,7 @@ interface FormWrapperElement
|
|
|
3537
3799
|
NoTextContent,
|
|
3538
3800
|
AppConnections,
|
|
3539
3801
|
DisplayName,
|
|
3802
|
+
BindableSourceSearch,
|
|
3540
3803
|
ElementSettings {
|
|
3541
3804
|
readonly id: FullElementId;
|
|
3542
3805
|
readonly type: 'FormWrapper';
|
|
@@ -3545,6 +3808,10 @@ interface FormWrapperElement
|
|
|
3545
3808
|
setName(name: string): Promise<null>;
|
|
3546
3809
|
getSettings(): Promise<FormSettings>;
|
|
3547
3810
|
setSettings(settings: Partial<FormSettings>): Promise<null>;
|
|
3811
|
+
setSettings(
|
|
3812
|
+
this: {id: FullElementId},
|
|
3813
|
+
settings: SetSettingsInput
|
|
3814
|
+
): Promise<null>;
|
|
3548
3815
|
}
|
|
3549
3816
|
|
|
3550
3817
|
interface FormReCaptchaElement
|
|
@@ -3557,6 +3824,7 @@ interface FormReCaptchaElement
|
|
|
3557
3824
|
NoTextContent,
|
|
3558
3825
|
NoAppConnections,
|
|
3559
3826
|
DisplayName,
|
|
3827
|
+
BindableSourceSearch,
|
|
3560
3828
|
ElementSettings {
|
|
3561
3829
|
readonly id: FullElementId;
|
|
3562
3830
|
readonly type: 'FormReCaptcha';
|
|
@@ -3573,6 +3841,7 @@ interface FormFileUploadWrapperElement
|
|
|
3573
3841
|
NoTextContent,
|
|
3574
3842
|
NoAppConnections,
|
|
3575
3843
|
DisplayName,
|
|
3844
|
+
BindableSourceSearch,
|
|
3576
3845
|
ElementSettings {
|
|
3577
3846
|
readonly id: FullElementId;
|
|
3578
3847
|
readonly type: 'FormFileUploadWrapper';
|
|
@@ -3593,6 +3862,7 @@ interface FormFileUploadDefaultElement
|
|
|
3593
3862
|
NoTextContent,
|
|
3594
3863
|
NoAppConnections,
|
|
3595
3864
|
DisplayName,
|
|
3865
|
+
BindableSourceSearch,
|
|
3596
3866
|
ElementSettings {
|
|
3597
3867
|
readonly id: FullElementId;
|
|
3598
3868
|
readonly type: 'FormFileUploadDefault';
|
|
@@ -3609,6 +3879,7 @@ interface FormFileUploadUploadingElement
|
|
|
3609
3879
|
NoTextContent,
|
|
3610
3880
|
NoAppConnections,
|
|
3611
3881
|
DisplayName,
|
|
3882
|
+
BindableSourceSearch,
|
|
3612
3883
|
ElementSettings {
|
|
3613
3884
|
readonly id: FullElementId;
|
|
3614
3885
|
readonly type: 'FormFileUploadUploading';
|
|
@@ -3625,6 +3896,7 @@ interface FormFileUploadUploadingBtnElement
|
|
|
3625
3896
|
NoTextContent,
|
|
3626
3897
|
NoAppConnections,
|
|
3627
3898
|
DisplayName,
|
|
3899
|
+
BindableSourceSearch,
|
|
3628
3900
|
ElementSettings {
|
|
3629
3901
|
readonly id: FullElementId;
|
|
3630
3902
|
readonly type: 'FormFileUploadUploadingBtn';
|
|
@@ -3641,6 +3913,7 @@ interface FormFileUploadUploadingIconElement
|
|
|
3641
3913
|
NoTextContent,
|
|
3642
3914
|
NoAppConnections,
|
|
3643
3915
|
DisplayName,
|
|
3916
|
+
BindableSourceSearch,
|
|
3644
3917
|
ElementSettings {
|
|
3645
3918
|
readonly id: FullElementId;
|
|
3646
3919
|
readonly type: 'FormFileUploadUploadingIcon';
|
|
@@ -3657,6 +3930,7 @@ interface FormFileUploadSuccessElement
|
|
|
3657
3930
|
NoTextContent,
|
|
3658
3931
|
NoAppConnections,
|
|
3659
3932
|
DisplayName,
|
|
3933
|
+
BindableSourceSearch,
|
|
3660
3934
|
ElementSettings {
|
|
3661
3935
|
readonly id: FullElementId;
|
|
3662
3936
|
readonly type: 'FormFileUploadSuccess';
|
|
@@ -3673,6 +3947,7 @@ interface FormFileUploadFileElement
|
|
|
3673
3947
|
NoTextContent,
|
|
3674
3948
|
NoAppConnections,
|
|
3675
3949
|
DisplayName,
|
|
3950
|
+
BindableSourceSearch,
|
|
3676
3951
|
ElementSettings {
|
|
3677
3952
|
readonly id: FullElementId;
|
|
3678
3953
|
readonly type: 'FormFileUploadFile';
|
|
@@ -3689,6 +3964,7 @@ interface FormFileUploadFileNameElement
|
|
|
3689
3964
|
NoTextContent,
|
|
3690
3965
|
NoAppConnections,
|
|
3691
3966
|
DisplayName,
|
|
3967
|
+
BindableSourceSearch,
|
|
3692
3968
|
ElementSettings {
|
|
3693
3969
|
readonly id: FullElementId;
|
|
3694
3970
|
readonly type: 'FormFileUploadFileName';
|
|
@@ -3705,6 +3981,7 @@ interface FormFileUploadRemoveLinkElement
|
|
|
3705
3981
|
NoTextContent,
|
|
3706
3982
|
NoAppConnections,
|
|
3707
3983
|
DisplayName,
|
|
3984
|
+
BindableSourceSearch,
|
|
3708
3985
|
ElementSettings {
|
|
3709
3986
|
readonly id: FullElementId;
|
|
3710
3987
|
readonly type: 'FormFileUploadRemoveLink';
|
|
@@ -3721,6 +3998,7 @@ interface FormFileUploadErrorElement
|
|
|
3721
3998
|
NoTextContent,
|
|
3722
3999
|
NoAppConnections,
|
|
3723
4000
|
DisplayName,
|
|
4001
|
+
BindableSourceSearch,
|
|
3724
4002
|
ElementSettings {
|
|
3725
4003
|
readonly id: FullElementId;
|
|
3726
4004
|
readonly type: 'FormFileUploadError';
|
|
@@ -3737,6 +4015,7 @@ interface FormFileUploadErrorMsgElement
|
|
|
3737
4015
|
NoTextContent,
|
|
3738
4016
|
NoAppConnections,
|
|
3739
4017
|
DisplayName,
|
|
4018
|
+
BindableSourceSearch,
|
|
3740
4019
|
ElementSettings {
|
|
3741
4020
|
readonly id: FullElementId;
|
|
3742
4021
|
readonly type: 'FormFileUploadErrorMsg';
|
|
@@ -3753,6 +4032,7 @@ interface FormFileUploadInputElement
|
|
|
3753
4032
|
NoTextContent,
|
|
3754
4033
|
NoAppConnections,
|
|
3755
4034
|
DisplayName,
|
|
4035
|
+
BindableSourceSearch,
|
|
3756
4036
|
ElementSettings {
|
|
3757
4037
|
readonly id: FullElementId;
|
|
3758
4038
|
readonly type: 'FormFileUploadInput';
|
|
@@ -3769,6 +4049,7 @@ interface FormFileUploadLabelElement
|
|
|
3769
4049
|
NoTextContent,
|
|
3770
4050
|
NoAppConnections,
|
|
3771
4051
|
DisplayName,
|
|
4052
|
+
BindableSourceSearch,
|
|
3772
4053
|
ElementSettings {
|
|
3773
4054
|
readonly id: FullElementId;
|
|
3774
4055
|
readonly type: 'FormFileUploadLabel';
|
|
@@ -3785,6 +4066,7 @@ interface FormFileUploadInfoElement
|
|
|
3785
4066
|
NoTextContent,
|
|
3786
4067
|
NoAppConnections,
|
|
3787
4068
|
DisplayName,
|
|
4069
|
+
BindableSourceSearch,
|
|
3788
4070
|
ElementSettings {
|
|
3789
4071
|
readonly id: FullElementId;
|
|
3790
4072
|
readonly type: 'FormFileUploadInfo';
|
|
@@ -3801,6 +4083,7 @@ interface FormFileUploadTextElement
|
|
|
3801
4083
|
NoTextContent,
|
|
3802
4084
|
NoAppConnections,
|
|
3803
4085
|
DisplayName,
|
|
4086
|
+
BindableSourceSearch,
|
|
3804
4087
|
ElementSettings {
|
|
3805
4088
|
readonly id: FullElementId;
|
|
3806
4089
|
readonly type: 'FormFileUploadText';
|
|
@@ -3817,6 +4100,7 @@ interface IconElement
|
|
|
3817
4100
|
NoTextContent,
|
|
3818
4101
|
NoAppConnections,
|
|
3819
4102
|
DisplayName,
|
|
4103
|
+
BindableSourceSearch,
|
|
3820
4104
|
ElementSettings {
|
|
3821
4105
|
readonly id: FullElementId;
|
|
3822
4106
|
readonly type: 'Icon';
|
|
@@ -3833,6 +4117,7 @@ interface HreflangsElement
|
|
|
3833
4117
|
NoTextContent,
|
|
3834
4118
|
NoAppConnections,
|
|
3835
4119
|
DisplayName,
|
|
4120
|
+
BindableSourceSearch,
|
|
3836
4121
|
ElementSettings {
|
|
3837
4122
|
readonly id: FullElementId;
|
|
3838
4123
|
readonly type: 'Hreflangs';
|
|
@@ -3849,6 +4134,7 @@ interface LocalesWrapperElement
|
|
|
3849
4134
|
NoTextContent,
|
|
3850
4135
|
NoAppConnections,
|
|
3851
4136
|
DisplayName,
|
|
4137
|
+
BindableSourceSearch,
|
|
3852
4138
|
ElementSettings {
|
|
3853
4139
|
readonly id: FullElementId;
|
|
3854
4140
|
readonly type: 'LocalesWrapper';
|
|
@@ -3865,6 +4151,7 @@ interface LocalesEmptyElement
|
|
|
3865
4151
|
NoTextContent,
|
|
3866
4152
|
NoAppConnections,
|
|
3867
4153
|
DisplayName,
|
|
4154
|
+
BindableSourceSearch,
|
|
3868
4155
|
ElementSettings {
|
|
3869
4156
|
readonly id: FullElementId;
|
|
3870
4157
|
readonly type: 'LocalesEmpty';
|
|
@@ -3881,6 +4168,7 @@ interface LocalesListElement
|
|
|
3881
4168
|
NoTextContent,
|
|
3882
4169
|
NoAppConnections,
|
|
3883
4170
|
DisplayName,
|
|
4171
|
+
BindableSourceSearch,
|
|
3884
4172
|
ElementSettings {
|
|
3885
4173
|
readonly id: FullElementId;
|
|
3886
4174
|
readonly type: 'LocalesList';
|
|
@@ -3897,6 +4185,7 @@ interface LocalesItemElement
|
|
|
3897
4185
|
NoTextContent,
|
|
3898
4186
|
NoAppConnections,
|
|
3899
4187
|
DisplayName,
|
|
4188
|
+
BindableSourceSearch,
|
|
3900
4189
|
ElementSettings {
|
|
3901
4190
|
readonly id: FullElementId;
|
|
3902
4191
|
readonly type: 'LocalesItem';
|
|
@@ -3913,6 +4202,7 @@ interface ContainerElement
|
|
|
3913
4202
|
NoTextContent,
|
|
3914
4203
|
NoAppConnections,
|
|
3915
4204
|
DisplayName,
|
|
4205
|
+
BindableSourceSearch,
|
|
3916
4206
|
ElementSettings {
|
|
3917
4207
|
readonly id: FullElementId;
|
|
3918
4208
|
readonly type: 'Container';
|
|
@@ -3929,6 +4219,7 @@ interface RowElement
|
|
|
3929
4219
|
NoTextContent,
|
|
3930
4220
|
NoAppConnections,
|
|
3931
4221
|
DisplayName,
|
|
4222
|
+
BindableSourceSearch,
|
|
3932
4223
|
ElementSettings {
|
|
3933
4224
|
readonly id: FullElementId;
|
|
3934
4225
|
readonly type: 'Row';
|
|
@@ -3945,6 +4236,7 @@ interface ColumnElement
|
|
|
3945
4236
|
NoTextContent,
|
|
3946
4237
|
NoAppConnections,
|
|
3947
4238
|
DisplayName,
|
|
4239
|
+
BindableSourceSearch,
|
|
3948
4240
|
ElementSettings {
|
|
3949
4241
|
readonly id: FullElementId;
|
|
3950
4242
|
readonly type: 'Column';
|
|
@@ -3961,6 +4253,7 @@ interface SectionElement
|
|
|
3961
4253
|
NoTextContent,
|
|
3962
4254
|
NoAppConnections,
|
|
3963
4255
|
DisplayName,
|
|
4256
|
+
BindableSourceSearch,
|
|
3964
4257
|
ElementSettings {
|
|
3965
4258
|
readonly id: FullElementId;
|
|
3966
4259
|
readonly type: 'Section';
|
|
@@ -3977,6 +4270,7 @@ interface GridElement
|
|
|
3977
4270
|
NoTextContent,
|
|
3978
4271
|
NoAppConnections,
|
|
3979
4272
|
DisplayName,
|
|
4273
|
+
BindableSourceSearch,
|
|
3980
4274
|
ElementSettings {
|
|
3981
4275
|
readonly id: FullElementId;
|
|
3982
4276
|
readonly type: 'Grid';
|
|
@@ -3993,6 +4287,7 @@ interface LayoutElement
|
|
|
3993
4287
|
NoTextContent,
|
|
3994
4288
|
NoAppConnections,
|
|
3995
4289
|
DisplayName,
|
|
4290
|
+
BindableSourceSearch,
|
|
3996
4291
|
ElementSettings {
|
|
3997
4292
|
readonly id: FullElementId;
|
|
3998
4293
|
readonly type: 'Layout';
|
|
@@ -4009,6 +4304,7 @@ interface CellElement
|
|
|
4009
4304
|
NoTextContent,
|
|
4010
4305
|
NoAppConnections,
|
|
4011
4306
|
DisplayName,
|
|
4307
|
+
BindableSourceSearch,
|
|
4012
4308
|
ElementSettings {
|
|
4013
4309
|
readonly id: FullElementId;
|
|
4014
4310
|
readonly type: 'Cell';
|
|
@@ -4025,6 +4321,7 @@ interface BlockContainerElement
|
|
|
4025
4321
|
NoTextContent,
|
|
4026
4322
|
NoAppConnections,
|
|
4027
4323
|
DisplayName,
|
|
4324
|
+
BindableSourceSearch,
|
|
4028
4325
|
ElementSettings {
|
|
4029
4326
|
readonly id: FullElementId;
|
|
4030
4327
|
readonly type: 'BlockContainer';
|
|
@@ -4041,6 +4338,7 @@ interface VFlexElement
|
|
|
4041
4338
|
NoTextContent,
|
|
4042
4339
|
NoAppConnections,
|
|
4043
4340
|
DisplayName,
|
|
4341
|
+
BindableSourceSearch,
|
|
4044
4342
|
ElementSettings {
|
|
4045
4343
|
readonly id: FullElementId;
|
|
4046
4344
|
readonly type: 'VFlex';
|
|
@@ -4057,6 +4355,7 @@ interface HFlexElement
|
|
|
4057
4355
|
NoTextContent,
|
|
4058
4356
|
NoAppConnections,
|
|
4059
4357
|
DisplayName,
|
|
4358
|
+
BindableSourceSearch,
|
|
4060
4359
|
ElementSettings {
|
|
4061
4360
|
readonly id: FullElementId;
|
|
4062
4361
|
readonly type: 'HFlex';
|
|
@@ -4073,6 +4372,7 @@ interface NavbarBrandElement
|
|
|
4073
4372
|
NoTextContent,
|
|
4074
4373
|
NoAppConnections,
|
|
4075
4374
|
DisplayName,
|
|
4375
|
+
BindableSourceSearch,
|
|
4076
4376
|
ElementSettings {
|
|
4077
4377
|
readonly id: FullElementId;
|
|
4078
4378
|
readonly type: 'NavbarBrand';
|
|
@@ -4089,6 +4389,7 @@ interface NavbarButtonElement
|
|
|
4089
4389
|
NoTextContent,
|
|
4090
4390
|
NoAppConnections,
|
|
4091
4391
|
DisplayName,
|
|
4392
|
+
BindableSourceSearch,
|
|
4092
4393
|
ElementSettings {
|
|
4093
4394
|
readonly id: FullElementId;
|
|
4094
4395
|
readonly type: 'NavbarButton';
|
|
@@ -4105,6 +4406,7 @@ interface NavbarContainerElement
|
|
|
4105
4406
|
NoTextContent,
|
|
4106
4407
|
NoAppConnections,
|
|
4107
4408
|
DisplayName,
|
|
4409
|
+
BindableSourceSearch,
|
|
4108
4410
|
ElementSettings {
|
|
4109
4411
|
readonly id: FullElementId;
|
|
4110
4412
|
readonly type: 'NavbarContainer';
|
|
@@ -4121,6 +4423,7 @@ interface NavbarLinkElement
|
|
|
4121
4423
|
TextContent,
|
|
4122
4424
|
NoAppConnections,
|
|
4123
4425
|
DisplayName,
|
|
4426
|
+
BindableSourceSearch,
|
|
4124
4427
|
ElementSettings {
|
|
4125
4428
|
readonly id: FullElementId;
|
|
4126
4429
|
readonly type: 'NavbarLink';
|
|
@@ -4137,6 +4440,7 @@ interface NavbarMenuElement
|
|
|
4137
4440
|
NoTextContent,
|
|
4138
4441
|
NoAppConnections,
|
|
4139
4442
|
DisplayName,
|
|
4443
|
+
BindableSourceSearch,
|
|
4140
4444
|
ElementSettings {
|
|
4141
4445
|
readonly id: FullElementId;
|
|
4142
4446
|
readonly type: 'NavbarMenu';
|
|
@@ -4153,6 +4457,7 @@ interface NavbarWrapperElement
|
|
|
4153
4457
|
NoTextContent,
|
|
4154
4458
|
NoAppConnections,
|
|
4155
4459
|
DisplayName,
|
|
4460
|
+
BindableSourceSearch,
|
|
4156
4461
|
ElementSettings {
|
|
4157
4462
|
readonly id: FullElementId;
|
|
4158
4463
|
readonly type: 'NavbarWrapper';
|
|
@@ -4169,6 +4474,7 @@ interface PaginationElement
|
|
|
4169
4474
|
NoTextContent,
|
|
4170
4475
|
NoAppConnections,
|
|
4171
4476
|
DisplayName,
|
|
4477
|
+
BindableSourceSearch,
|
|
4172
4478
|
ElementSettings {
|
|
4173
4479
|
readonly id: FullElementId;
|
|
4174
4480
|
readonly type: 'Pagination';
|
|
@@ -4185,6 +4491,7 @@ interface PaginationPreviousElement
|
|
|
4185
4491
|
NoTextContent,
|
|
4186
4492
|
NoAppConnections,
|
|
4187
4493
|
DisplayName,
|
|
4494
|
+
BindableSourceSearch,
|
|
4188
4495
|
ElementSettings {
|
|
4189
4496
|
readonly id: FullElementId;
|
|
4190
4497
|
readonly type: 'PaginationPrevious';
|
|
@@ -4201,6 +4508,7 @@ interface PaginationNextElement
|
|
|
4201
4508
|
NoTextContent,
|
|
4202
4509
|
NoAppConnections,
|
|
4203
4510
|
DisplayName,
|
|
4511
|
+
BindableSourceSearch,
|
|
4204
4512
|
ElementSettings {
|
|
4205
4513
|
readonly id: FullElementId;
|
|
4206
4514
|
readonly type: 'PaginationNext';
|
|
@@ -4217,6 +4525,7 @@ interface PaginationPreviousIconElement
|
|
|
4217
4525
|
NoTextContent,
|
|
4218
4526
|
NoAppConnections,
|
|
4219
4527
|
DisplayName,
|
|
4528
|
+
BindableSourceSearch,
|
|
4220
4529
|
ElementSettings {
|
|
4221
4530
|
readonly id: FullElementId;
|
|
4222
4531
|
readonly type: 'PaginationPreviousIcon';
|
|
@@ -4233,6 +4542,7 @@ interface PaginationNextIconElement
|
|
|
4233
4542
|
NoTextContent,
|
|
4234
4543
|
NoAppConnections,
|
|
4235
4544
|
DisplayName,
|
|
4545
|
+
BindableSourceSearch,
|
|
4236
4546
|
ElementSettings {
|
|
4237
4547
|
readonly id: FullElementId;
|
|
4238
4548
|
readonly type: 'PaginationNextIcon';
|
|
@@ -4249,6 +4559,7 @@ interface PaginationCountElement
|
|
|
4249
4559
|
NoTextContent,
|
|
4250
4560
|
NoAppConnections,
|
|
4251
4561
|
DisplayName,
|
|
4562
|
+
BindableSourceSearch,
|
|
4252
4563
|
ElementSettings {
|
|
4253
4564
|
readonly id: FullElementId;
|
|
4254
4565
|
readonly type: 'PaginationCount';
|
|
@@ -4265,6 +4576,7 @@ interface SliderArrowElement
|
|
|
4265
4576
|
NoTextContent,
|
|
4266
4577
|
NoAppConnections,
|
|
4267
4578
|
DisplayName,
|
|
4579
|
+
BindableSourceSearch,
|
|
4268
4580
|
ElementSettings {
|
|
4269
4581
|
readonly id: FullElementId;
|
|
4270
4582
|
readonly type: 'SliderArrow';
|
|
@@ -4281,6 +4593,7 @@ interface SliderMaskElement
|
|
|
4281
4593
|
NoTextContent,
|
|
4282
4594
|
NoAppConnections,
|
|
4283
4595
|
DisplayName,
|
|
4596
|
+
BindableSourceSearch,
|
|
4284
4597
|
ElementSettings {
|
|
4285
4598
|
readonly id: FullElementId;
|
|
4286
4599
|
readonly type: 'SliderMask';
|
|
@@ -4297,6 +4610,7 @@ interface SliderNavElement
|
|
|
4297
4610
|
NoTextContent,
|
|
4298
4611
|
NoAppConnections,
|
|
4299
4612
|
DisplayName,
|
|
4613
|
+
BindableSourceSearch,
|
|
4300
4614
|
ElementSettings {
|
|
4301
4615
|
readonly id: FullElementId;
|
|
4302
4616
|
readonly type: 'SliderNav';
|
|
@@ -4313,6 +4627,7 @@ interface SliderSlideElement
|
|
|
4313
4627
|
NoTextContent,
|
|
4314
4628
|
NoAppConnections,
|
|
4315
4629
|
DisplayName,
|
|
4630
|
+
BindableSourceSearch,
|
|
4316
4631
|
ElementSettings {
|
|
4317
4632
|
readonly id: FullElementId;
|
|
4318
4633
|
readonly type: 'SliderSlide';
|
|
@@ -4329,6 +4644,7 @@ interface SliderWrapperElement
|
|
|
4329
4644
|
NoTextContent,
|
|
4330
4645
|
NoAppConnections,
|
|
4331
4646
|
DisplayName,
|
|
4647
|
+
BindableSourceSearch,
|
|
4332
4648
|
ElementSettings {
|
|
4333
4649
|
readonly id: FullElementId;
|
|
4334
4650
|
readonly type: 'SliderWrapper';
|
|
@@ -4345,6 +4661,7 @@ interface MetaElement
|
|
|
4345
4661
|
NoTextContent,
|
|
4346
4662
|
NoAppConnections,
|
|
4347
4663
|
DisplayName,
|
|
4664
|
+
BindableSourceSearch,
|
|
4348
4665
|
ElementSettings {
|
|
4349
4666
|
readonly id: FullElementId;
|
|
4350
4667
|
readonly type: 'Meta';
|
|
@@ -4361,6 +4678,7 @@ interface TitleElement
|
|
|
4361
4678
|
NoTextContent,
|
|
4362
4679
|
NoAppConnections,
|
|
4363
4680
|
DisplayName,
|
|
4681
|
+
BindableSourceSearch,
|
|
4364
4682
|
ElementSettings {
|
|
4365
4683
|
readonly id: FullElementId;
|
|
4366
4684
|
readonly type: 'Title';
|
|
@@ -4377,6 +4695,7 @@ interface CustomCodeElement
|
|
|
4377
4695
|
NoTextContent,
|
|
4378
4696
|
NoAppConnections,
|
|
4379
4697
|
DisplayName,
|
|
4698
|
+
BindableSourceSearch,
|
|
4380
4699
|
ElementSettings {
|
|
4381
4700
|
readonly id: FullElementId;
|
|
4382
4701
|
readonly type: 'CustomCode';
|
|
@@ -4393,6 +4712,7 @@ interface CommentElement
|
|
|
4393
4712
|
NoTextContent,
|
|
4394
4713
|
NoAppConnections,
|
|
4395
4714
|
DisplayName,
|
|
4715
|
+
BindableSourceSearch,
|
|
4396
4716
|
ElementSettings {
|
|
4397
4717
|
readonly id: FullElementId;
|
|
4398
4718
|
readonly type: 'Comment';
|
|
@@ -4409,6 +4729,7 @@ interface FacebookPixelElement
|
|
|
4409
4729
|
NoTextContent,
|
|
4410
4730
|
NoAppConnections,
|
|
4411
4731
|
DisplayName,
|
|
4732
|
+
BindableSourceSearch,
|
|
4412
4733
|
ElementSettings {
|
|
4413
4734
|
readonly id: FullElementId;
|
|
4414
4735
|
readonly type: 'FacebookPixel';
|
|
@@ -4425,6 +4746,7 @@ interface GoogleAnalyticsElement
|
|
|
4425
4746
|
NoTextContent,
|
|
4426
4747
|
NoAppConnections,
|
|
4427
4748
|
DisplayName,
|
|
4749
|
+
BindableSourceSearch,
|
|
4428
4750
|
ElementSettings {
|
|
4429
4751
|
readonly id: FullElementId;
|
|
4430
4752
|
readonly type: 'GoogleAnalytics';
|
|
@@ -4441,6 +4763,7 @@ interface TabsContentElement
|
|
|
4441
4763
|
NoTextContent,
|
|
4442
4764
|
NoAppConnections,
|
|
4443
4765
|
DisplayName,
|
|
4766
|
+
BindableSourceSearch,
|
|
4444
4767
|
ElementSettings {
|
|
4445
4768
|
readonly id: FullElementId;
|
|
4446
4769
|
readonly type: 'TabsContent';
|
|
@@ -4457,6 +4780,7 @@ interface TabsLinkElement
|
|
|
4457
4780
|
TextContent,
|
|
4458
4781
|
NoAppConnections,
|
|
4459
4782
|
DisplayName,
|
|
4783
|
+
BindableSourceSearch,
|
|
4460
4784
|
ElementSettings {
|
|
4461
4785
|
readonly id: FullElementId;
|
|
4462
4786
|
readonly type: 'TabsLink';
|
|
@@ -4473,6 +4797,7 @@ interface TabsMenuElement
|
|
|
4473
4797
|
NoTextContent,
|
|
4474
4798
|
NoAppConnections,
|
|
4475
4799
|
DisplayName,
|
|
4800
|
+
BindableSourceSearch,
|
|
4476
4801
|
ElementSettings {
|
|
4477
4802
|
readonly id: FullElementId;
|
|
4478
4803
|
readonly type: 'TabsMenu';
|
|
@@ -4489,6 +4814,7 @@ interface TabsPaneElement
|
|
|
4489
4814
|
NoTextContent,
|
|
4490
4815
|
NoAppConnections,
|
|
4491
4816
|
DisplayName,
|
|
4817
|
+
BindableSourceSearch,
|
|
4492
4818
|
ElementSettings {
|
|
4493
4819
|
readonly id: FullElementId;
|
|
4494
4820
|
readonly type: 'TabsPane';
|
|
@@ -4505,6 +4831,7 @@ interface TabsWrapperElement
|
|
|
4505
4831
|
NoTextContent,
|
|
4506
4832
|
NoAppConnections,
|
|
4507
4833
|
DisplayName,
|
|
4834
|
+
BindableSourceSearch,
|
|
4508
4835
|
ElementSettings {
|
|
4509
4836
|
readonly id: FullElementId;
|
|
4510
4837
|
readonly type: 'TabsWrapper';
|
|
@@ -4521,6 +4848,7 @@ interface FacebookElement
|
|
|
4521
4848
|
NoTextContent,
|
|
4522
4849
|
NoAppConnections,
|
|
4523
4850
|
DisplayName,
|
|
4851
|
+
BindableSourceSearch,
|
|
4524
4852
|
ElementSettings {
|
|
4525
4853
|
readonly id: FullElementId;
|
|
4526
4854
|
readonly type: 'Facebook';
|
|
@@ -4537,6 +4865,7 @@ interface MapWidgetElement
|
|
|
4537
4865
|
NoTextContent,
|
|
4538
4866
|
NoAppConnections,
|
|
4539
4867
|
DisplayName,
|
|
4868
|
+
BindableSourceSearch,
|
|
4540
4869
|
ElementSettings {
|
|
4541
4870
|
readonly id: FullElementId;
|
|
4542
4871
|
readonly type: 'MapWidget';
|
|
@@ -4553,6 +4882,7 @@ interface TwitterElement
|
|
|
4553
4882
|
NoTextContent,
|
|
4554
4883
|
NoAppConnections,
|
|
4555
4884
|
DisplayName,
|
|
4885
|
+
BindableSourceSearch,
|
|
4556
4886
|
ElementSettings {
|
|
4557
4887
|
readonly id: FullElementId;
|
|
4558
4888
|
readonly type: 'Twitter';
|
|
@@ -4569,6 +4899,7 @@ interface GooglePlusElement
|
|
|
4569
4899
|
NoTextContent,
|
|
4570
4900
|
NoAppConnections,
|
|
4571
4901
|
DisplayName,
|
|
4902
|
+
BindableSourceSearch,
|
|
4572
4903
|
ElementSettings {
|
|
4573
4904
|
readonly id: FullElementId;
|
|
4574
4905
|
readonly type: 'GooglePlus';
|
|
@@ -4585,6 +4916,7 @@ interface BlockContentElement
|
|
|
4585
4916
|
NoTextContent,
|
|
4586
4917
|
NoAppConnections,
|
|
4587
4918
|
DisplayName,
|
|
4919
|
+
BindableSourceSearch,
|
|
4588
4920
|
ElementSettings {
|
|
4589
4921
|
readonly id: FullElementId;
|
|
4590
4922
|
readonly type: 'BlockContent';
|
|
@@ -4601,6 +4933,7 @@ interface BlockHeaderElement
|
|
|
4601
4933
|
NoTextContent,
|
|
4602
4934
|
NoAppConnections,
|
|
4603
4935
|
DisplayName,
|
|
4936
|
+
BindableSourceSearch,
|
|
4604
4937
|
ElementSettings {
|
|
4605
4938
|
readonly id: FullElementId;
|
|
4606
4939
|
readonly type: 'BlockHeader';
|
|
@@ -4617,6 +4950,7 @@ interface FlexColumnElement
|
|
|
4617
4950
|
NoTextContent,
|
|
4618
4951
|
NoAppConnections,
|
|
4619
4952
|
DisplayName,
|
|
4953
|
+
BindableSourceSearch,
|
|
4620
4954
|
ElementSettings {
|
|
4621
4955
|
readonly id: FullElementId;
|
|
4622
4956
|
readonly type: 'FlexColumn';
|
|
@@ -4633,12 +4967,30 @@ interface GridRowElement
|
|
|
4633
4967
|
NoTextContent,
|
|
4634
4968
|
NoAppConnections,
|
|
4635
4969
|
DisplayName,
|
|
4970
|
+
BindableSourceSearch,
|
|
4636
4971
|
ElementSettings {
|
|
4637
4972
|
readonly id: FullElementId;
|
|
4638
4973
|
readonly type: 'GridRow';
|
|
4639
4974
|
readonly plugin: 'Users';
|
|
4640
4975
|
}
|
|
4641
4976
|
|
|
4977
|
+
interface SlotElement
|
|
4978
|
+
extends
|
|
4979
|
+
WebflowElement,
|
|
4980
|
+
CustomAttributes,
|
|
4981
|
+
DomId,
|
|
4982
|
+
Styles,
|
|
4983
|
+
Children,
|
|
4984
|
+
NoTextContent,
|
|
4985
|
+
NoAppConnections,
|
|
4986
|
+
DisplayName,
|
|
4987
|
+
BindableSourceSearch,
|
|
4988
|
+
ElementSettings {
|
|
4989
|
+
readonly id: FullElementId;
|
|
4990
|
+
readonly type: 'Slot';
|
|
4991
|
+
readonly plugin: 'Slots';
|
|
4992
|
+
}
|
|
4993
|
+
|
|
4642
4994
|
interface FrameElement
|
|
4643
4995
|
extends
|
|
4644
4996
|
WebflowElement,
|
|
@@ -4649,6 +5001,7 @@ interface FrameElement
|
|
|
4649
5001
|
NoTextContent,
|
|
4650
5002
|
NoAppConnections,
|
|
4651
5003
|
DisplayName,
|
|
5004
|
+
BindableSourceSearch,
|
|
4652
5005
|
ElementSettings {
|
|
4653
5006
|
readonly id: FullElementId;
|
|
4654
5007
|
readonly type: 'Frame';
|
|
@@ -4842,6 +5195,7 @@ type AnyElement =
|
|
|
4842
5195
|
| DropdownListElement
|
|
4843
5196
|
| DropdownToggleElement
|
|
4844
5197
|
| DropdownWrapperElement
|
|
5198
|
+
| DropTargetElement
|
|
4845
5199
|
| DynamoWrapperElement
|
|
4846
5200
|
| DynamoListElement
|
|
4847
5201
|
| DynamoItemElement
|
|
@@ -4932,4 +5286,5 @@ type AnyElement =
|
|
|
4932
5286
|
| BlockHeaderElement
|
|
4933
5287
|
| FlexColumnElement
|
|
4934
5288
|
| GridRowElement
|
|
5289
|
+
| SlotElement
|
|
4935
5290
|
| FrameElement;
|