@myissue/vue-website-page-builder 3.5.40 → 3.5.42

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 CHANGED
@@ -315,6 +315,7 @@ export declare class PageBuilderService {
315
315
  private isPageBuilderMissingOnStart;
316
316
  private hasCompletedBuilderMount;
317
317
  private builderMountPromise;
318
+ private activeBuilderSessionToken;
318
319
  private canvasClickCaptureListener;
319
320
  private canvasDblClickCaptureListener;
320
321
  private elementsWithListeners;
@@ -382,6 +383,7 @@ export declare class PageBuilderService {
382
383
  * @returns {Promise<void>}
383
384
  */
384
385
  completeBuilderInitialization(passedComponentsArray?: BuilderResourceData): Promise<void>;
386
+ private completeBuilderInitializationWithSession;
385
387
  private runCompleteBuilderInitialization;
386
388
  /**
387
389
  * Converts an array of ComponentObject into a single HTML string.
@@ -1010,6 +1012,7 @@ export declare class PageBuilderService {
1010
1012
  * @private
1011
1013
  */
1012
1014
  private convertStyleObjectToString;
1015
+ private hasMeaningfulPageSettings;
1013
1016
  /**
1014
1017
  * Parses a string of HTML and extracts builder components and global page settings.
1015
1018
  * - This method expects an **HTML string** containing one or more `<section>...</section>` elements (such as the output from `getSavedPageHtml()` or a previously saved builder HTML string).