lf-pagebuilder-vue 0.0.39 → 0.0.41
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/components/BodySection.vue.d.ts +1 -2
- package/dist/components/ColConfig.vue.d.ts +0 -1
- package/dist/components/ComponentsBox.vue.d.ts +3 -21
- package/dist/components/FeedComponent.vue.d.ts +1 -2
- package/dist/components/FieldsForm.vue.d.ts +3 -4
- package/dist/components/GlobalConfig.vue.d.ts +0 -1
- package/dist/components/InitialComponent.vue.d.ts +4 -3
- package/dist/components/Pagebuilder.vue.d.ts +3 -19
- package/dist/components/RowConfig.vue.d.ts +0 -1
- package/dist/components/SourceFilter.vue.d.ts +1 -2
- package/dist/index.cjs +3 -3
- package/dist/index.d.ts +0 -1
- package/dist/index.js +741 -725
- package/dist/symfony-entry.d.ts +0 -1
- package/package.json +17 -10
- package/dist/limbo.d.ts +0 -3
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
|
|
3
2
|
interface PageSection {
|
|
4
3
|
section: string;
|
|
5
4
|
config: any;
|
|
@@ -48,8 +47,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
48
47
|
default: boolean;
|
|
49
48
|
};
|
|
50
49
|
}>> & Readonly<{}>, {
|
|
51
|
-
isProduction: boolean;
|
|
52
50
|
isComponentMode: boolean;
|
|
53
51
|
fullwidthMode: boolean;
|
|
52
|
+
isProduction: boolean;
|
|
54
53
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
55
54
|
export default _default;
|
|
@@ -3,7 +3,7 @@ interface ColumnToInsert {
|
|
|
3
3
|
columnIndex: number | null;
|
|
4
4
|
section: string | null;
|
|
5
5
|
}
|
|
6
|
-
|
|
6
|
+
type __VLS_Props = {
|
|
7
7
|
isComponentMode: boolean;
|
|
8
8
|
fullwidthMode: boolean;
|
|
9
9
|
columnToInsert: ColumnToInsert;
|
|
@@ -13,24 +13,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
13
13
|
isProduction: boolean;
|
|
14
14
|
components: Record<string, any>;
|
|
15
15
|
excludedCategories?: string[];
|
|
16
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
17
|
-
isComponentMode: boolean;
|
|
18
|
-
fullwidthMode: boolean;
|
|
19
|
-
columnToInsert: ColumnToInsert;
|
|
20
|
-
addComponentToColumn: (component: any) => void;
|
|
21
|
-
renderApiDomain: string;
|
|
22
|
-
toggleComponentModeFunction: () => void;
|
|
23
|
-
isProduction: boolean;
|
|
24
|
-
components: Record<string, any>;
|
|
25
|
-
excludedCategories?: string[];
|
|
26
|
-
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
27
|
-
export default _default;
|
|
28
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
29
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
30
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
31
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
32
|
-
} : {
|
|
33
|
-
type: import('vue').PropType<T[K]>;
|
|
34
|
-
required: true;
|
|
35
|
-
};
|
|
36
16
|
};
|
|
17
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
export default _default;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
|
|
3
2
|
interface ComponentField {
|
|
4
3
|
name: string;
|
|
5
4
|
label: string;
|
|
@@ -68,5 +67,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
68
67
|
};
|
|
69
68
|
}>> & Readonly<{}>, {
|
|
70
69
|
isProduction: boolean;
|
|
71
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
70
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
72
71
|
export default _default;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
|
|
3
2
|
interface ComponentField {
|
|
4
3
|
name: string;
|
|
5
4
|
label: string;
|
|
@@ -34,9 +33,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
34
33
|
type: BooleanConstructor;
|
|
35
34
|
default: boolean;
|
|
36
35
|
};
|
|
37
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
38
|
-
fieldUpdated: (fieldName: string, value: string | boolean) =>
|
|
39
|
-
exclusiveFieldChanged: (groupName: string, activeFieldName: string) =>
|
|
36
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
37
|
+
fieldUpdated: (fieldName: string, value: string | boolean) => any;
|
|
38
|
+
exclusiveFieldChanged: (groupName: string, activeFieldName: string) => any;
|
|
40
39
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
41
40
|
object: {
|
|
42
41
|
type: PropType<ComponentObject>;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
|
|
3
2
|
interface ComponentField {
|
|
4
3
|
name: string;
|
|
5
4
|
label: string;
|
|
@@ -86,9 +85,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
86
85
|
default: boolean;
|
|
87
86
|
};
|
|
88
87
|
}>> & Readonly<{}>, {
|
|
89
|
-
isProduction: boolean;
|
|
90
88
|
isComponentMode: boolean;
|
|
91
89
|
fullwidthMode: boolean;
|
|
90
|
+
isProduction: boolean;
|
|
92
91
|
insideComponentBox: boolean;
|
|
93
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
92
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
93
|
+
rootElement: HTMLDivElement;
|
|
94
|
+
}, HTMLDivElement>;
|
|
94
95
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
isProduction?: boolean;
|
|
3
3
|
debugMode?: boolean;
|
|
4
4
|
submitForm?: boolean;
|
|
@@ -6,22 +6,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
6
6
|
excludeComponentTypes?: string[];
|
|
7
7
|
/** Token JWT de Limbo - obtenido server-side con fetchLimboToken() */
|
|
8
8
|
limboToken?: string;
|
|
9
|
-
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
-
isProduction?: boolean;
|
|
11
|
-
debugMode?: boolean;
|
|
12
|
-
submitForm?: boolean;
|
|
13
|
-
inputId?: string | null;
|
|
14
|
-
excludeComponentTypes?: string[];
|
|
15
|
-
/** Token JWT de Limbo - obtenido server-side con fetchLimboToken() */
|
|
16
|
-
limboToken?: string;
|
|
17
|
-
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
18
|
-
export default _default;
|
|
19
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
20
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
21
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
22
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
23
|
-
} : {
|
|
24
|
-
type: import('vue').PropType<T[K]>;
|
|
25
|
-
required: true;
|
|
26
|
-
};
|
|
27
9
|
};
|
|
10
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
11
|
+
export default _default;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
|
|
3
2
|
interface FeedCriteria {
|
|
4
3
|
name: string;
|
|
5
4
|
url: string;
|
|
@@ -32,5 +31,5 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
32
31
|
};
|
|
33
32
|
}>> & Readonly<{}>, {
|
|
34
33
|
isProduction: boolean;
|
|
35
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {},
|
|
34
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
36
35
|
export default _default;
|