@myissue/vue-website-page-builder 3.5.61 → 3.5.62

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
@@ -439,6 +439,7 @@ export declare class PageBuilderService {
439
439
  * @private
440
440
  */
441
441
  private applyElementClassChanges;
442
+ private resolveNestedButtonAnchorTarget;
442
443
  private removeElementClassesFromArray;
443
444
  /**
444
445
  * During Page Design editing, keep runtime config pageSettings aligned with the
@@ -487,6 +488,7 @@ export declare class PageBuilderService {
487
488
  */
488
489
  private ensureImagesHaveAltText;
489
490
  private applyHelperCSSToElements;
491
+ private reportNonListenerTagClassViolations;
490
492
  /**
491
493
  * Toggles the visibility of the TipTap modal for rich text editing.
492
494
  * @param {boolean} status - Whether to show or hide the modal.
@@ -1241,6 +1243,13 @@ export declare interface PageSettings {
1241
1243
  [key: string]: unknown;
1242
1244
  }
1243
1245
 
1246
+ export declare type PassedComponentHtmlWarning = {
1247
+ componentIndex: number;
1248
+ componentTitle: string | null;
1249
+ message: string;
1250
+ detail?: string;
1251
+ };
1252
+
1244
1253
  declare type ProductButtonStyle = 'text' | 'button' | (string & {});
1245
1254
 
1246
1255
  export declare type ProductCardStyle = 'minimal' | 'bordered' | 'shadow' | 'elevated' | (string & {});
@@ -1312,6 +1321,8 @@ export declare type StartBuilderResult = {
1312
1321
  error: true;
1313
1322
  reason: string;
1314
1323
  };
1324
+ /** Soft HTML authoring warnings for passed components (builder still starts). */
1325
+ htmlWarnings?: PassedComponentHtmlWarning[];
1315
1326
  passedComponentsArray?: BuilderResourceData;
1316
1327
  };
1317
1328