lf-pagebuilder-vue 0.0.6 → 0.0.8
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 +46 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +38 -24
- package/dist/index.js +1095 -1043
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ import { WritableComputedRef } from 'vue';
|
|
|
9
9
|
|
|
10
10
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
11
11
|
|
|
12
|
+
declare type __VLS_NonUndefinedable_2<T> = T extends undefined ? never : T;
|
|
13
|
+
|
|
12
14
|
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
13
15
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
14
16
|
type: PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
@@ -18,6 +20,15 @@ declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
18
20
|
};
|
|
19
21
|
};
|
|
20
22
|
|
|
23
|
+
declare type __VLS_TypePropsToRuntimeProps_2<T> = {
|
|
24
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
25
|
+
type: PropType<__VLS_NonUndefinedable_2<T[K]>>;
|
|
26
|
+
} : {
|
|
27
|
+
type: PropType<T[K]>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
|
|
21
32
|
export declare const BodySection: DefineComponent<ExtractPropTypes< {
|
|
22
33
|
isComponentMode: BooleanConstructor;
|
|
23
34
|
fullwidthMode: BooleanConstructor;
|
|
@@ -193,42 +204,40 @@ declare interface ComponentObject_3 {
|
|
|
193
204
|
repeat_data?: RepeatData_2 | null;
|
|
194
205
|
}
|
|
195
206
|
|
|
196
|
-
export declare const ComponentsBox: DefineComponent<ExtractPropTypes<
|
|
197
|
-
isComponentMode:
|
|
198
|
-
fullwidthMode:
|
|
199
|
-
columnToInsert:
|
|
200
|
-
addComponentToColumn:
|
|
201
|
-
renderApiDomain:
|
|
202
|
-
toggleComponentModeFunction:
|
|
203
|
-
isProduction: {
|
|
204
|
-
type: BooleanConstructor;
|
|
205
|
-
default: boolean;
|
|
206
|
-
};
|
|
207
|
-
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
208
|
-
isComponentMode: BooleanConstructor;
|
|
209
|
-
fullwidthMode: BooleanConstructor;
|
|
210
|
-
columnToInsert: PropType<ColumnToInsert>;
|
|
211
|
-
addComponentToColumn: PropType<(component: any) => void>;
|
|
212
|
-
renderApiDomain: StringConstructor;
|
|
213
|
-
toggleComponentModeFunction: PropType<() => void>;
|
|
214
|
-
isProduction: {
|
|
215
|
-
type: BooleanConstructor;
|
|
216
|
-
default: boolean;
|
|
217
|
-
};
|
|
218
|
-
}>> & Readonly<{}>, {
|
|
207
|
+
export declare const ComponentsBox: DefineComponent<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_2<{
|
|
208
|
+
isComponentMode: boolean;
|
|
209
|
+
fullwidthMode: boolean;
|
|
210
|
+
columnToInsert: ColumnToInsert;
|
|
211
|
+
addComponentToColumn: (component: any) => void;
|
|
212
|
+
renderApiDomain: string;
|
|
213
|
+
toggleComponentModeFunction: () => void;
|
|
219
214
|
isProduction: boolean;
|
|
215
|
+
components: Record<string, any>;
|
|
216
|
+
excludedCategories?: string[];
|
|
217
|
+
}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_2<{
|
|
220
218
|
isComponentMode: boolean;
|
|
221
219
|
fullwidthMode: boolean;
|
|
222
|
-
|
|
220
|
+
columnToInsert: ColumnToInsert;
|
|
221
|
+
addComponentToColumn: (component: any) => void;
|
|
222
|
+
renderApiDomain: string;
|
|
223
|
+
toggleComponentModeFunction: () => void;
|
|
224
|
+
isProduction: boolean;
|
|
225
|
+
components: Record<string, any>;
|
|
226
|
+
excludedCategories?: string[];
|
|
227
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
223
228
|
|
|
224
229
|
declare const _default: DefineComponent<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
225
230
|
isProduction?: boolean;
|
|
226
231
|
debugMode?: boolean;
|
|
232
|
+
submitForm?: boolean;
|
|
227
233
|
inputId?: string | null;
|
|
234
|
+
excludeComponentTypes?: string[];
|
|
228
235
|
}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
229
236
|
isProduction?: boolean;
|
|
230
237
|
debugMode?: boolean;
|
|
238
|
+
submitForm?: boolean;
|
|
231
239
|
inputId?: string | null;
|
|
240
|
+
excludeComponentTypes?: string[];
|
|
232
241
|
}>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
233
242
|
export { _default as Pagebuilder }
|
|
234
243
|
export default _default;
|
|
@@ -335,6 +344,7 @@ export declare const GlobalConfig: DefineComponent<ExtractPropTypes< {
|
|
|
335
344
|
isComponentMode: BooleanConstructor;
|
|
336
345
|
fullwidthMode: BooleanConstructor;
|
|
337
346
|
debugMode: BooleanConstructor;
|
|
347
|
+
submitForm: BooleanConstructor;
|
|
338
348
|
toggleComponentModeFunction: PropType<() => void>;
|
|
339
349
|
toggleFullwidthMode: PropType<() => void>;
|
|
340
350
|
importConfigurationFunction: PropType<(config: any) => void>;
|
|
@@ -355,10 +365,13 @@ saveButtonAction: () => void;
|
|
|
355
365
|
loadFromLocalStorage: () => void;
|
|
356
366
|
toggleExpandScreen: () => void;
|
|
357
367
|
sectionWidth: WritableComputedRef<string, string>;
|
|
368
|
+
isSaved: Ref<boolean, boolean>;
|
|
369
|
+
componentRoot: Ref<HTMLElement | null, HTMLElement | null>;
|
|
358
370
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:sectionSelected" | "update:parametersPageConfiguration.global.sidebarEnabled" | "update:parametersPageConfiguration.global.renderAsBodyPart" | "update:parametersPageConfiguration.global.headSlot" | "update:parametersPageConfiguration.global.bodyBeginSlot" | "update:parametersPageConfiguration.global.footerSlot" | "update:parametersPageConfiguration.seo.robots" | "update:parametersPageConfiguration.seo.title" | "update:parametersPageConfiguration.seo.description")[], "update:sectionSelected" | "update:parametersPageConfiguration.global.sidebarEnabled" | "update:parametersPageConfiguration.global.renderAsBodyPart" | "update:parametersPageConfiguration.global.headSlot" | "update:parametersPageConfiguration.global.bodyBeginSlot" | "update:parametersPageConfiguration.global.footerSlot" | "update:parametersPageConfiguration.seo.robots" | "update:parametersPageConfiguration.seo.title" | "update:parametersPageConfiguration.seo.description", PublicProps, Readonly<ExtractPropTypes< {
|
|
359
371
|
isComponentMode: BooleanConstructor;
|
|
360
372
|
fullwidthMode: BooleanConstructor;
|
|
361
373
|
debugMode: BooleanConstructor;
|
|
374
|
+
submitForm: BooleanConstructor;
|
|
362
375
|
toggleComponentModeFunction: PropType<() => void>;
|
|
363
376
|
toggleFullwidthMode: PropType<() => void>;
|
|
364
377
|
importConfigurationFunction: PropType<(config: any) => void>;
|
|
@@ -382,6 +395,7 @@ inputId: PropType<string | null>;
|
|
|
382
395
|
isComponentMode: boolean;
|
|
383
396
|
fullwidthMode: boolean;
|
|
384
397
|
debugMode: boolean;
|
|
398
|
+
submitForm: boolean;
|
|
385
399
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
386
400
|
|
|
387
401
|
export declare interface ImageCut {
|