lf-pagebuilder-vue 0.0.9 → 0.0.11
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.cjs +2 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1135 -1049
- package/package.json +11 -6
- package/dist/styles.css +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ fullwidthMode: BooleanConstructor;
|
|
|
35
35
|
globalPageConfiguration: PropType<PageSection_2[]>;
|
|
36
36
|
sectionSelected: StringConstructor;
|
|
37
37
|
removeComponent: PropType<(obj: any, section: string) => void>;
|
|
38
|
+
cloneComponent: PropType<(obj: any, section: string) => void>;
|
|
38
39
|
addComponentFunction: PropType<(rowIndex: number, columnIndex: number, section: string) => void>;
|
|
39
40
|
addCol: PropType<(rowIndex: number, colIndex: number, section: string, direction?: "left" | "right") => void>;
|
|
40
41
|
addRow: PropType<(index: number | null, section: string) => void>;
|
|
@@ -55,6 +56,7 @@ fullwidthMode: BooleanConstructor;
|
|
|
55
56
|
globalPageConfiguration: PropType<PageSection_2[]>;
|
|
56
57
|
sectionSelected: StringConstructor;
|
|
57
58
|
removeComponent: PropType<(obj: any, section: string) => void>;
|
|
59
|
+
cloneComponent: PropType<(obj: any, section: string) => void>;
|
|
58
60
|
addComponentFunction: PropType<(rowIndex: number, columnIndex: number, section: string) => void>;
|
|
59
61
|
addCol: PropType<(rowIndex: number, colIndex: number, section: string, direction?: "left" | "right") => void>;
|
|
60
62
|
addRow: PropType<(index: number | null, section: string) => void>;
|
|
@@ -414,6 +416,7 @@ isComponentMode: BooleanConstructor;
|
|
|
414
416
|
fullwidthMode: BooleanConstructor;
|
|
415
417
|
addComponentToColumn: PropType<(component: any) => void>;
|
|
416
418
|
removeComponent: PropType<(obj: any, section: string) => void>;
|
|
419
|
+
cloneComponent: PropType<(obj: any, section: string) => void>;
|
|
417
420
|
section: StringConstructor;
|
|
418
421
|
renderApiDomain: StringConstructor;
|
|
419
422
|
insideComponentBox: {
|
|
@@ -434,6 +437,7 @@ isComponentMode: BooleanConstructor;
|
|
|
434
437
|
fullwidthMode: BooleanConstructor;
|
|
435
438
|
addComponentToColumn: PropType<(component: any) => void>;
|
|
436
439
|
removeComponent: PropType<(obj: any, section: string) => void>;
|
|
440
|
+
cloneComponent: PropType<(obj: any, section: string) => void>;
|
|
437
441
|
section: StringConstructor;
|
|
438
442
|
renderApiDomain: StringConstructor;
|
|
439
443
|
insideComponentBox: {
|