@myissue/vue-website-page-builder 3.5.52 → 3.5.53
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/dist/index.d.ts +4 -1
- package/dist/style.css +1 -1
- package/dist/vue-website-page-builder.js +12694 -12292
- package/dist/vue-website-page-builder.umd.cjs +84 -84
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -307,11 +307,14 @@ export declare class PageBuilderService {
|
|
|
307
307
|
private NoneListernesTags;
|
|
308
308
|
private hasStartedEditing;
|
|
309
309
|
private originalComponents;
|
|
310
|
+
private originalPageSettings;
|
|
310
311
|
private savedMountComponents;
|
|
311
312
|
private pendingMountComponents;
|
|
312
313
|
private globalStylesObserver;
|
|
314
|
+
private globalStylesObserverDebounceTimer;
|
|
313
315
|
private _pendingPageSettings;
|
|
314
316
|
private _lastKnownPageSettings;
|
|
317
|
+
private pendingResumeDraftHtml;
|
|
315
318
|
private isPageBuilderMissingOnStart;
|
|
316
319
|
private hasCompletedBuilderMount;
|
|
317
320
|
private builderWasMountedBeforeClose;
|
|
@@ -637,7 +640,7 @@ export declare class PageBuilderService {
|
|
|
637
640
|
* Handles changes to the font family of the selected element.
|
|
638
641
|
* @param {string} [userSelectedFontFamily] - The selected font family class.
|
|
639
642
|
*/
|
|
640
|
-
handleFontFamily(userSelectedFontFamily?: string): void
|
|
643
|
+
handleFontFamily(userSelectedFontFamily?: string): Promise<void>;
|
|
641
644
|
/**
|
|
642
645
|
* Handles changes to the font style of the selected element.
|
|
643
646
|
* @param {string} [userSelectedFontStyle] - The selected font style class.
|