@myissue/vue-website-page-builder 3.5.60 → 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 +18 -0
- package/dist/style.css +1 -1
- package/dist/vue-website-page-builder.js +13616 -12480
- package/dist/vue-website-page-builder.umd.cjs +428 -112
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -78,12 +78,19 @@ declare const __VLS_export_2: DefineComponent<ExtractPropTypes<{
|
|
|
78
78
|
mobile: {
|
|
79
79
|
type: BooleanConstructor;
|
|
80
80
|
};
|
|
81
|
+
tablet: {
|
|
82
|
+
type: BooleanConstructor;
|
|
83
|
+
};
|
|
81
84
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
82
85
|
mobile: {
|
|
83
86
|
type: BooleanConstructor;
|
|
84
87
|
};
|
|
88
|
+
tablet: {
|
|
89
|
+
type: BooleanConstructor;
|
|
90
|
+
};
|
|
85
91
|
}>> & Readonly<{}>, {
|
|
86
92
|
mobile: boolean;
|
|
93
|
+
tablet: boolean;
|
|
87
94
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
88
95
|
|
|
89
96
|
declare type AvailableLanguage = 'en' | 'zh-Hans' | 'fr' | 'ja' | 'ru' | 'es' | 'pt' | 'de' | 'ar' | 'hi' | 'da' | 'it';
|
|
@@ -432,6 +439,7 @@ export declare class PageBuilderService {
|
|
|
432
439
|
* @private
|
|
433
440
|
*/
|
|
434
441
|
private applyElementClassChanges;
|
|
442
|
+
private resolveNestedButtonAnchorTarget;
|
|
435
443
|
private removeElementClassesFromArray;
|
|
436
444
|
/**
|
|
437
445
|
* During Page Design editing, keep runtime config pageSettings aligned with the
|
|
@@ -480,6 +488,7 @@ export declare class PageBuilderService {
|
|
|
480
488
|
*/
|
|
481
489
|
private ensureImagesHaveAltText;
|
|
482
490
|
private applyHelperCSSToElements;
|
|
491
|
+
private reportNonListenerTagClassViolations;
|
|
483
492
|
/**
|
|
484
493
|
* Toggles the visibility of the TipTap modal for rich text editing.
|
|
485
494
|
* @param {boolean} status - Whether to show or hide the modal.
|
|
@@ -1234,6 +1243,13 @@ export declare interface PageSettings {
|
|
|
1234
1243
|
[key: string]: unknown;
|
|
1235
1244
|
}
|
|
1236
1245
|
|
|
1246
|
+
export declare type PassedComponentHtmlWarning = {
|
|
1247
|
+
componentIndex: number;
|
|
1248
|
+
componentTitle: string | null;
|
|
1249
|
+
message: string;
|
|
1250
|
+
detail?: string;
|
|
1251
|
+
};
|
|
1252
|
+
|
|
1237
1253
|
declare type ProductButtonStyle = 'text' | 'button' | (string & {});
|
|
1238
1254
|
|
|
1239
1255
|
export declare type ProductCardStyle = 'minimal' | 'bordered' | 'shadow' | 'elevated' | (string & {});
|
|
@@ -1305,6 +1321,8 @@ export declare type StartBuilderResult = {
|
|
|
1305
1321
|
error: true;
|
|
1306
1322
|
reason: string;
|
|
1307
1323
|
};
|
|
1324
|
+
/** Soft HTML authoring warnings for passed components (builder still starts). */
|
|
1325
|
+
htmlWarnings?: PassedComponentHtmlWarning[];
|
|
1308
1326
|
passedComponentsArray?: BuilderResourceData;
|
|
1309
1327
|
};
|
|
1310
1328
|
|