@myissue/vue-website-page-builder 3.5.6 → 3.5.7
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/services/PageBuilderService.d.ts +10 -0
- package/dist/style.css +1 -1
- package/dist/vue-website-page-builder.js +3226 -3170
- package/dist/vue-website-page-builder.umd.cjs +82 -82
- package/package.json +1 -1
|
@@ -183,6 +183,16 @@ export declare class PageBuilderService {
|
|
|
183
183
|
isSelectedComponentTopElement(): boolean;
|
|
184
184
|
selectedComponentIsFullWidth(): boolean;
|
|
185
185
|
setSelectedComponentFullWidth(enabled: boolean): Promise<void>;
|
|
186
|
+
/**
|
|
187
|
+
* Returns true when the global page wrapper (all [data-pagebuilder-content] elements)
|
|
188
|
+
* has the full-width class applied, meaning every section's background stretches edge-to-edge.
|
|
189
|
+
*/
|
|
190
|
+
isGlobalFullWidth(): boolean;
|
|
191
|
+
/**
|
|
192
|
+
* Toggles the full-width class on every [data-pagebuilder-content] wrapper so that
|
|
193
|
+
* global background colours stretch across the entire browser viewport.
|
|
194
|
+
*/
|
|
195
|
+
setGlobalFullWidth(enabled: boolean): Promise<void>;
|
|
186
196
|
/**
|
|
187
197
|
* Attaches click, mouseover, and mouseleave event listeners to all editable elements in the page builder.
|
|
188
198
|
* @private
|