@myissue/vue-website-page-builder 3.5.5 → 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/README.md +1 -1
- package/dist/Components/Icons/LayersIcon.vue.d.ts +7 -0
- package/dist/Components/Icons/SliderIcon.vue.d.ts +7 -0
- package/dist/services/PageBuilderService.d.ts +29 -0
- package/dist/style.css +1 -1
- package/dist/vue-website-page-builder.js +11342 -10906
- package/dist/vue-website-page-builder.umd.cjs +84 -84
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -214,7 +214,7 @@ If you discover a security vulnerability, please send us a message.
|
|
|
214
214
|
|
|
215
215
|
## Get in Touch for Customization or Any Questions
|
|
216
216
|
|
|
217
|
-
If you have any questions or if you're looking for customization, feel free to connect with our
|
|
217
|
+
If you have any questions or if you're looking for customization, feel free to connect with our developers.
|
|
218
218
|
|
|
219
219
|
- [Email](mailto:qais.wardag@outlook.com)
|
|
220
220
|
- [LinkedIn](https://www.linkedin.com/in/qaiswardag)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
size?: number | string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
size: number | string;
|
|
6
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
size?: number | string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
size: number | string;
|
|
6
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -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
|
|
@@ -397,12 +407,31 @@ export declare class PageBuilderService {
|
|
|
397
407
|
* Duplicate the currently selected component from the DOM and the state.
|
|
398
408
|
* @returns {Promise<void>}
|
|
399
409
|
*/
|
|
410
|
+
/**
|
|
411
|
+
* Finds the first two-column layout container inside the selected section.
|
|
412
|
+
* Matches flex-row containers (including responsive variants like lg:pbx-flex-row)
|
|
413
|
+
* AND grid containers with a grid-cols-2 class, in each case requiring exactly
|
|
414
|
+
* two direct element children. Returns the container or null.
|
|
415
|
+
*/
|
|
416
|
+
findReverseableContainer(): HTMLElement | null;
|
|
417
|
+
/**
|
|
418
|
+
* Reverses the visual order of a two-column layout by physically swapping the
|
|
419
|
+
* two direct children of the detected container. This works for both flex-row
|
|
420
|
+
* and grid-cols-2 layouts and naturally toggles on repeated clicks.
|
|
421
|
+
* Persists the change to the store and localStorage.
|
|
422
|
+
*/
|
|
423
|
+
reverseComponentLayout(): Promise<void>;
|
|
400
424
|
duplicateComponent(): Promise<void>;
|
|
401
425
|
/**
|
|
402
426
|
* Deletes the currently selected component from the DOM and the state.
|
|
403
427
|
* @returns {Promise<void>}
|
|
404
428
|
*/
|
|
405
429
|
deleteComponentFromDOM(): Promise<void>;
|
|
430
|
+
/**
|
|
431
|
+
* Duplicates the currently selected element and inserts the copy immediately
|
|
432
|
+
* after it in the DOM, then syncs the change to the store.
|
|
433
|
+
*/
|
|
434
|
+
duplicateElementInDOM(): Promise<void>;
|
|
406
435
|
/**
|
|
407
436
|
* Deletes the currently selected element from the DOM and stores it for potential restoration.
|
|
408
437
|
* @returns {Promise<void>}
|