@webflow/designer-extension-typings 2.0.1 → 2.0.2
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 +6 -1
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -293,7 +293,12 @@ interface WebflowApi {
|
|
|
293
293
|
* ```
|
|
294
294
|
*/
|
|
295
295
|
setExtensionSize(
|
|
296
|
-
size:
|
|
296
|
+
size:
|
|
297
|
+
| 'default'
|
|
298
|
+
| 'compact'
|
|
299
|
+
| 'comfortable'
|
|
300
|
+
| 'large'
|
|
301
|
+
| {width: number; height: number}
|
|
297
302
|
): Promise<null>;
|
|
298
303
|
/**
|
|
299
304
|
* Notifies the user with a message using a specific style. Error messages provide user's with the opportunity to
|