@myissue/vue-website-page-builder 3.5.5 → 3.5.6
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 +19 -0
- package/dist/style.css +1 -1
- package/dist/vue-website-page-builder.js +10805 -10425
- package/dist/vue-website-page-builder.umd.cjs +74 -74
- 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;
|
|
@@ -397,12 +397,31 @@ export declare class PageBuilderService {
|
|
|
397
397
|
* Duplicate the currently selected component from the DOM and the state.
|
|
398
398
|
* @returns {Promise<void>}
|
|
399
399
|
*/
|
|
400
|
+
/**
|
|
401
|
+
* Finds the first two-column layout container inside the selected section.
|
|
402
|
+
* Matches flex-row containers (including responsive variants like lg:pbx-flex-row)
|
|
403
|
+
* AND grid containers with a grid-cols-2 class, in each case requiring exactly
|
|
404
|
+
* two direct element children. Returns the container or null.
|
|
405
|
+
*/
|
|
406
|
+
findReverseableContainer(): HTMLElement | null;
|
|
407
|
+
/**
|
|
408
|
+
* Reverses the visual order of a two-column layout by physically swapping the
|
|
409
|
+
* two direct children of the detected container. This works for both flex-row
|
|
410
|
+
* and grid-cols-2 layouts and naturally toggles on repeated clicks.
|
|
411
|
+
* Persists the change to the store and localStorage.
|
|
412
|
+
*/
|
|
413
|
+
reverseComponentLayout(): Promise<void>;
|
|
400
414
|
duplicateComponent(): Promise<void>;
|
|
401
415
|
/**
|
|
402
416
|
* Deletes the currently selected component from the DOM and the state.
|
|
403
417
|
* @returns {Promise<void>}
|
|
404
418
|
*/
|
|
405
419
|
deleteComponentFromDOM(): Promise<void>;
|
|
420
|
+
/**
|
|
421
|
+
* Duplicates the currently selected element and inserts the copy immediately
|
|
422
|
+
* after it in the DOM, then syncs the change to the store.
|
|
423
|
+
*/
|
|
424
|
+
duplicateElementInDOM(): Promise<void>;
|
|
406
425
|
/**
|
|
407
426
|
* Deletes the currently selected element from the DOM and stores it for potential restoration.
|
|
408
427
|
* @returns {Promise<void>}
|