@webflow/designer-extension-typings 2.0.21 → 2.0.24
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 +16 -0
- package/element-presets-generated.d.ts +3 -3
- package/elements-generated.d.ts +51 -37
- package/package.json +1 -1
- package/variables.d.ts +29 -21
package/api.d.ts
CHANGED
|
@@ -80,6 +80,22 @@ interface WebflowApi {
|
|
|
80
80
|
*/
|
|
81
81
|
setSelectedElement(element: AnyElement): Promise<null | AnyElement>;
|
|
82
82
|
|
|
83
|
+
/**
|
|
84
|
+
* Captures a screenshot of the specified element.
|
|
85
|
+
* @returns A promise that resolves to a base64 string representing the screenshot of the element.
|
|
86
|
+
* @example
|
|
87
|
+
* ```ts
|
|
88
|
+
* const selectedElement = await webflow.getSelectedElement();
|
|
89
|
+
* if (selectedElement) {
|
|
90
|
+
* const screenshot = await webflow.getElementSnapshot(selectedElement);
|
|
91
|
+
* console.log('Screenshot:', screenshot);
|
|
92
|
+
* }else{
|
|
93
|
+
* console.log('No element selected');
|
|
94
|
+
* }
|
|
95
|
+
* ```
|
|
96
|
+
*/
|
|
97
|
+
getElementSnapshot(element: AnyElement): Promise<null | string>;
|
|
98
|
+
|
|
83
99
|
elementBuilder(elementPreset: ElementPreset<AnyElement>): BuilderElement;
|
|
84
100
|
/**
|
|
85
101
|
* Get the current media query breakpoint ID.
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
// This file was automatically generated. See designer-extensions docs.
|
|
2
2
|
|
|
3
3
|
type ElementPresets = {
|
|
4
|
-
Animation: ElementPreset<AnyElement>;
|
|
5
|
-
Spline: ElementPreset<AnyElement>;
|
|
6
|
-
Rive: ElementPreset<AnyElement>;
|
|
7
4
|
SearchForm: ElementPreset<AnyElement>;
|
|
8
5
|
DOM: ElementPreset<DOMElement>;
|
|
9
6
|
DivBlock: ElementPreset<BlockElement>;
|
|
@@ -19,6 +16,9 @@ type ElementPresets = {
|
|
|
19
16
|
RichText: ElementPreset<RichTextElement>;
|
|
20
17
|
CodeBlock: ElementPreset<CodeBlockElement>;
|
|
21
18
|
Image: ElementPreset<AnyElement>;
|
|
19
|
+
Animation: ElementPreset<AnyElement>;
|
|
20
|
+
Spline: ElementPreset<AnyElement>;
|
|
21
|
+
Rive: ElementPreset<AnyElement>;
|
|
22
22
|
BackgroundVideoWrapper: ElementPreset<BackgroundVideoWrapperElement>;
|
|
23
23
|
CommercePaypalCheckoutFormContainer: ElementPreset<AnyElement>;
|
|
24
24
|
CommerceCheckoutFormContainer: ElementPreset<AnyElement>;
|
package/elements-generated.d.ts
CHANGED
|
@@ -130,7 +130,7 @@ interface DOMElement
|
|
|
130
130
|
Styles,
|
|
131
131
|
Children,
|
|
132
132
|
TextContent,
|
|
133
|
-
|
|
133
|
+
AppConnections {
|
|
134
134
|
readonly id: FullElementId;
|
|
135
135
|
readonly type: 'DOM';
|
|
136
136
|
readonly plugin: 'Builtin';
|
|
@@ -142,32 +142,6 @@ interface DOMElement
|
|
|
142
142
|
removeAttribute(name: string): Promise<null>;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
-
interface AnimationElement
|
|
146
|
-
extends WebflowElement,
|
|
147
|
-
CustomAttributes,
|
|
148
|
-
DomId,
|
|
149
|
-
Styles,
|
|
150
|
-
NoChildren,
|
|
151
|
-
NoTextContent,
|
|
152
|
-
NoAppConnections {
|
|
153
|
-
readonly id: FullElementId;
|
|
154
|
-
readonly type: 'Animation';
|
|
155
|
-
readonly plugin: 'Animation';
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
interface SplineElement
|
|
159
|
-
extends WebflowElement,
|
|
160
|
-
CustomAttributes,
|
|
161
|
-
DomId,
|
|
162
|
-
Styles,
|
|
163
|
-
NoChildren,
|
|
164
|
-
NoTextContent,
|
|
165
|
-
NoAppConnections {
|
|
166
|
-
readonly id: FullElementId;
|
|
167
|
-
readonly type: 'Spline';
|
|
168
|
-
readonly plugin: 'Animation';
|
|
169
|
-
}
|
|
170
|
-
|
|
171
145
|
interface SearchFormElement
|
|
172
146
|
extends WebflowElement,
|
|
173
147
|
CustomAttributes,
|
|
@@ -287,9 +261,9 @@ interface BlockquoteElement
|
|
|
287
261
|
|
|
288
262
|
interface CodeBlockElement
|
|
289
263
|
extends WebflowElement,
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
264
|
+
CustomAttributes,
|
|
265
|
+
DomId,
|
|
266
|
+
Styles,
|
|
293
267
|
NoChildren,
|
|
294
268
|
NoTextContent,
|
|
295
269
|
NoAppConnections {
|
|
@@ -533,6 +507,45 @@ interface InlineCodeElement
|
|
|
533
507
|
readonly plugin: 'Basic';
|
|
534
508
|
}
|
|
535
509
|
|
|
510
|
+
interface AnimationElement
|
|
511
|
+
extends WebflowElement,
|
|
512
|
+
CustomAttributes,
|
|
513
|
+
DomId,
|
|
514
|
+
Styles,
|
|
515
|
+
NoChildren,
|
|
516
|
+
NoTextContent,
|
|
517
|
+
NoAppConnections {
|
|
518
|
+
readonly id: FullElementId;
|
|
519
|
+
readonly type: 'Animation';
|
|
520
|
+
readonly plugin: 'Animation';
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
interface SplineElement
|
|
524
|
+
extends WebflowElement,
|
|
525
|
+
CustomAttributes,
|
|
526
|
+
DomId,
|
|
527
|
+
Styles,
|
|
528
|
+
NoChildren,
|
|
529
|
+
NoTextContent,
|
|
530
|
+
NoAppConnections {
|
|
531
|
+
readonly id: FullElementId;
|
|
532
|
+
readonly type: 'Spline';
|
|
533
|
+
readonly plugin: 'Animation';
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
interface RiveElement
|
|
537
|
+
extends WebflowElement,
|
|
538
|
+
CustomAttributes,
|
|
539
|
+
DomId,
|
|
540
|
+
Styles,
|
|
541
|
+
NoChildren,
|
|
542
|
+
NoTextContent,
|
|
543
|
+
NoAppConnections {
|
|
544
|
+
readonly id: FullElementId;
|
|
545
|
+
readonly type: 'Rive';
|
|
546
|
+
readonly plugin: 'Animation';
|
|
547
|
+
}
|
|
548
|
+
|
|
536
549
|
interface BackgroundVideoWrapperElement
|
|
537
550
|
extends WebflowElement,
|
|
538
551
|
CustomAttributes,
|
|
@@ -4341,25 +4354,23 @@ interface UserErrorMsgElement
|
|
|
4341
4354
|
readonly plugin: 'Users';
|
|
4342
4355
|
}
|
|
4343
4356
|
|
|
4344
|
-
interface
|
|
4357
|
+
interface FrameElement
|
|
4345
4358
|
extends WebflowElement,
|
|
4346
4359
|
CustomAttributes,
|
|
4347
4360
|
DomId,
|
|
4348
4361
|
Styles,
|
|
4349
|
-
|
|
4362
|
+
Children,
|
|
4350
4363
|
NoTextContent,
|
|
4351
4364
|
NoAppConnections {
|
|
4352
4365
|
readonly id: FullElementId;
|
|
4353
|
-
readonly type: '
|
|
4354
|
-
readonly plugin: '
|
|
4366
|
+
readonly type: 'Frame';
|
|
4367
|
+
readonly plugin: 'Frame';
|
|
4355
4368
|
}
|
|
4356
4369
|
|
|
4357
4370
|
type AnyElement =
|
|
4358
4371
|
| ComponentElement
|
|
4359
4372
|
| UnknownElement
|
|
4360
4373
|
| DOMElement
|
|
4361
|
-
| AnimationElement
|
|
4362
|
-
| SplineElement
|
|
4363
4374
|
| SearchFormElement
|
|
4364
4375
|
| SearchInputElement
|
|
4365
4376
|
| SearchButtonElement
|
|
@@ -4387,6 +4398,9 @@ type AnyElement =
|
|
|
4387
4398
|
| SuperscriptElement
|
|
4388
4399
|
| SubscriptElement
|
|
4389
4400
|
| InlineCodeElement
|
|
4401
|
+
| AnimationElement
|
|
4402
|
+
| SplineElement
|
|
4403
|
+
| RiveElement
|
|
4390
4404
|
| BackgroundVideoWrapperElement
|
|
4391
4405
|
| BackgroundVideoPlayPauseButtonElement
|
|
4392
4406
|
| BackgroundVideoPlayPauseButtonPlayingElement
|
|
@@ -4677,4 +4691,4 @@ type AnyElement =
|
|
|
4677
4691
|
| UserResetPasswordErrorMsgElement
|
|
4678
4692
|
| UserUpdatePasswordErrorMsgElement
|
|
4679
4693
|
| UserErrorMsgElement
|
|
4680
|
-
|
|
|
4694
|
+
| FrameElement;
|
package/package.json
CHANGED
package/variables.d.ts
CHANGED
|
@@ -38,8 +38,8 @@ interface ColorVariable {
|
|
|
38
38
|
* ```
|
|
39
39
|
*/
|
|
40
40
|
set(
|
|
41
|
-
value: ColorValue | ColorVariable | CustomValue,
|
|
42
|
-
options?:
|
|
41
|
+
value: ColorValue | ColorVariable | CustomValue | null,
|
|
42
|
+
options?: VariableSetOptions
|
|
43
43
|
): Promise<null>;
|
|
44
44
|
/**
|
|
45
45
|
* Get the variable’s value.
|
|
@@ -53,8 +53,8 @@ interface ColorVariable {
|
|
|
53
53
|
* ```
|
|
54
54
|
*/
|
|
55
55
|
get(
|
|
56
|
-
options?:
|
|
57
|
-
): Promise<ColorValue | ColorVariable | CustomValue>;
|
|
56
|
+
options?: VariableGetOptions
|
|
57
|
+
): Promise<ColorValue | ColorVariable | CustomValue | null>;
|
|
58
58
|
/**
|
|
59
59
|
* Removes a variable from the default collection.
|
|
60
60
|
* @returns A Promise that resolves into a boolean indicating whether deleting the variable was successful or not.
|
|
@@ -137,8 +137,8 @@ interface SizeVariable {
|
|
|
137
137
|
* ```
|
|
138
138
|
*/
|
|
139
139
|
set(
|
|
140
|
-
value: SizeValue | SizeVariable | CustomValue,
|
|
141
|
-
options?:
|
|
140
|
+
value: SizeValue | SizeVariable | CustomValue | null,
|
|
141
|
+
options?: VariableSetOptions
|
|
142
142
|
): Promise<null>;
|
|
143
143
|
/**
|
|
144
144
|
* Get the variable’s value.
|
|
@@ -152,8 +152,8 @@ interface SizeVariable {
|
|
|
152
152
|
* ```
|
|
153
153
|
*/
|
|
154
154
|
get(
|
|
155
|
-
options?:
|
|
156
|
-
): Promise<SizeValue | SizeVariable | CustomValue>;
|
|
155
|
+
options?: VariableGetOptions
|
|
156
|
+
): Promise<SizeValue | SizeVariable | CustomValue | null>;
|
|
157
157
|
/**
|
|
158
158
|
* Removes a variable from the default collection.
|
|
159
159
|
* @returns A Promise that resolves into a boolean indicating whether deleting the variable was successful or not.
|
|
@@ -237,8 +237,8 @@ interface NumberVariable {
|
|
|
237
237
|
* ```
|
|
238
238
|
*/
|
|
239
239
|
set(
|
|
240
|
-
value: NumberValue | NumberVariable | CustomValue,
|
|
241
|
-
options?:
|
|
240
|
+
value: NumberValue | NumberVariable | CustomValue | null,
|
|
241
|
+
options?: VariableSetOptions
|
|
242
242
|
): Promise<null>;
|
|
243
243
|
|
|
244
244
|
/**
|
|
@@ -253,8 +253,8 @@ interface NumberVariable {
|
|
|
253
253
|
* ```
|
|
254
254
|
*/
|
|
255
255
|
get(
|
|
256
|
-
options?:
|
|
257
|
-
): Promise<NumberValue | NumberVariable | CustomValue>;
|
|
256
|
+
options?: VariableGetOptions
|
|
257
|
+
): Promise<NumberValue | NumberVariable | CustomValue | null>;
|
|
258
258
|
|
|
259
259
|
/**
|
|
260
260
|
* Removes the variable from the default collection.
|
|
@@ -338,8 +338,8 @@ interface PercentageVariable {
|
|
|
338
338
|
* ```
|
|
339
339
|
*/
|
|
340
340
|
set(
|
|
341
|
-
value: PercentageValue | PercentageVariable | CustomValue,
|
|
342
|
-
options?:
|
|
341
|
+
value: PercentageValue | PercentageVariable | CustomValue | null,
|
|
342
|
+
options?: VariableSetOptions
|
|
343
343
|
): Promise<null>;
|
|
344
344
|
|
|
345
345
|
/**
|
|
@@ -354,8 +354,8 @@ interface PercentageVariable {
|
|
|
354
354
|
* ```
|
|
355
355
|
*/
|
|
356
356
|
get(
|
|
357
|
-
options?:
|
|
358
|
-
): Promise<PercentageValue | PercentageVariable | CustomValue>;
|
|
357
|
+
options?: VariableGetOptions
|
|
358
|
+
): Promise<PercentageValue | PercentageVariable | CustomValue | null>;
|
|
359
359
|
|
|
360
360
|
/**
|
|
361
361
|
* Removes the variable from the default collection.
|
|
@@ -437,8 +437,8 @@ interface FontFamilyVariable {
|
|
|
437
437
|
* ```
|
|
438
438
|
*/
|
|
439
439
|
set(
|
|
440
|
-
value: FontFamilyValue | FontFamilyVariable | CustomValue,
|
|
441
|
-
options?:
|
|
440
|
+
value: FontFamilyValue | FontFamilyVariable | CustomValue | null,
|
|
441
|
+
options?: VariableSetOptions
|
|
442
442
|
): Promise<null>;
|
|
443
443
|
/**
|
|
444
444
|
* Get the variable’s value.
|
|
@@ -452,8 +452,8 @@ interface FontFamilyVariable {
|
|
|
452
452
|
* ```
|
|
453
453
|
*/
|
|
454
454
|
get(
|
|
455
|
-
options?:
|
|
456
|
-
): Promise<FontFamilyValue | FontFamilyVariable | CustomValue>;
|
|
455
|
+
options?: VariableGetOptions
|
|
456
|
+
): Promise<FontFamilyValue | FontFamilyVariable | CustomValue | null>;
|
|
457
457
|
/**
|
|
458
458
|
* Removes a variable from the default collection.
|
|
459
459
|
* @returns A Promise that resolves into a boolean indicating whether deleting the variable was successful or not.
|
|
@@ -648,11 +648,19 @@ type SizeUnit =
|
|
|
648
648
|
| 'vmax'
|
|
649
649
|
| 'vmin'
|
|
650
650
|
| 'ch';
|
|
651
|
-
type
|
|
651
|
+
type VariableSetOptions = {
|
|
652
|
+
/** The mode to get/set the variable value for. */
|
|
653
|
+
mode?: VariableMode;
|
|
654
|
+
/** Whether to return custom values. */
|
|
655
|
+
customValues?: boolean;
|
|
656
|
+
};
|
|
657
|
+
type VariableGetOptions = {
|
|
652
658
|
/** The mode to get/set the variable value for. */
|
|
653
659
|
mode?: VariableMode;
|
|
654
660
|
/** Whether to return custom values. */
|
|
655
661
|
customValues?: boolean;
|
|
662
|
+
/** Whether to not return the base value and instead return null. */
|
|
663
|
+
doNotInheritFromBase?: boolean;
|
|
656
664
|
};
|
|
657
665
|
type CustomValue = {
|
|
658
666
|
type: 'custom';
|