@innovastudio/contentbox 1.6.124 → 1.6.125
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/index.d.ts
CHANGED
@@ -327,8 +327,6 @@ interface ContentBoxOptions {
|
|
327
327
|
assetLocale?: string;
|
328
328
|
assetDateShortOptions?: any[];
|
329
329
|
assetDateLongOptions?: any[];
|
330
|
-
|
331
|
-
wrapperEl?: HTMLElement;
|
332
330
|
}
|
333
331
|
|
334
332
|
declare class ContentBox {
|
@@ -356,6 +354,7 @@ declare class ContentBox {
|
|
356
354
|
download(options?: object): void;
|
357
355
|
viewHtml(): void;
|
358
356
|
toggleEditPanel(): void;
|
357
|
+
getWrapper(): HTMLElement;
|
359
358
|
|
360
359
|
screenMode: string;
|
361
360
|
}
|
package/package.json
CHANGED
@@ -163986,6 +163986,10 @@ Add an image for each feature.`, 'Create a new block showcasing a photo gallery
|
|
163986
163986
|
}
|
163987
163987
|
}
|
163988
163988
|
|
163989
|
+
getWrapper() {
|
163990
|
+
return this.wrapperEl;
|
163991
|
+
}
|
163992
|
+
|
163989
163993
|
loadHtml(html) {
|
163990
163994
|
// Reset
|
163991
163995
|
this.activeBox = null;
|