@myissue/vue-website-page-builder 3.4.95 → 3.4.97

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.
Files changed (74) hide show
  1. package/dist/App.vue.d.ts +3 -0
  2. package/dist/Components/ComponentThumbnail.vue.d.ts +15 -0
  3. package/dist/Components/Homepage/Footer.vue.d.ts +3 -0
  4. package/dist/Components/Inputs/ToggleInput.vue.d.ts +10 -0
  5. package/dist/Components/Loaders/ElementLoader.vue.d.ts +3 -0
  6. package/dist/Components/Loaders/GlobalLoader.vue.d.ts +3 -0
  7. package/dist/Components/Modals/BuilderComponents.vue.d.ts +43 -0
  8. package/dist/Components/Modals/DynamicModalBuilder.vue.d.ts +143 -0
  9. package/dist/Components/Modals/MediaLibraryModal.vue.d.ts +59 -0
  10. package/dist/Components/Modals/ModalBuilder.vue.d.ts +74 -0
  11. package/dist/Components/Overlays/FloatingSidePanel.vue.d.ts +53 -0
  12. package/dist/Components/PageBuilder/EditorMenu/Editables/BackgroundColorEditor.vue.d.ts +13 -0
  13. package/dist/Components/PageBuilder/EditorMenu/Editables/BorderRadius.vue.d.ts +3 -0
  14. package/dist/Components/PageBuilder/EditorMenu/Editables/Borders.vue.d.ts +3 -0
  15. package/dist/Components/PageBuilder/EditorMenu/Editables/ClassEditor.vue.d.ts +3 -0
  16. package/dist/Components/PageBuilder/EditorMenu/Editables/ComponentTopMenu.vue.d.ts +3 -0
  17. package/dist/Components/PageBuilder/EditorMenu/Editables/EditGetElement.vue.d.ts +3 -0
  18. package/dist/Components/PageBuilder/EditorMenu/Editables/HTMLEditor.vue.d.ts +3 -0
  19. package/dist/Components/PageBuilder/EditorMenu/Editables/ImageEditor.vue.d.ts +3 -0
  20. package/dist/Components/PageBuilder/EditorMenu/Editables/ManageBackgroundOpacity.vue.d.ts +3 -0
  21. package/dist/Components/PageBuilder/EditorMenu/Editables/ManageOpacity.vue.d.ts +3 -0
  22. package/dist/Components/PageBuilder/EditorMenu/Editables/Margin.vue.d.ts +3 -0
  23. package/dist/Components/PageBuilder/EditorMenu/Editables/OpacityEditor.vue.d.ts +3 -0
  24. package/dist/Components/PageBuilder/EditorMenu/Editables/Padding.vue.d.ts +3 -0
  25. package/dist/Components/PageBuilder/EditorMenu/Editables/StyleEditor.vue.d.ts +3 -0
  26. package/dist/Components/PageBuilder/EditorMenu/Editables/TextColorEditor.vue.d.ts +13 -0
  27. package/dist/Components/PageBuilder/EditorMenu/Editables/Typography.vue.d.ts +3 -0
  28. package/dist/Components/PageBuilder/EditorMenu/Editables/TypographyForTipTap.vue.d.ts +3 -0
  29. package/dist/Components/PageBuilder/EditorMenu/EditorAccordion.vue.d.ts +15 -0
  30. package/dist/Components/PageBuilder/EditorMenu/RightSidebarEditor.vue.d.ts +7 -0
  31. package/dist/Components/PageBuilder/Settings/AdvancedPageBuilderSettings.vue.d.ts +15 -0
  32. package/dist/Components/PageBuilder/Settings/PageBuilderSettings.vue.d.ts +3 -0
  33. package/dist/Components/PageBuilder/ToolbarOption/ToolbarOption.vue.d.ts +3 -0
  34. package/dist/Components/PageBuilder/UndoRedo/UndoRedo.vue.d.ts +7 -0
  35. package/dist/Components/TipTap/TipTapInput.vue.d.ts +3 -0
  36. package/dist/PageBuilder/PageBuilder.vue.d.ts +48 -0
  37. package/dist/PageBuilder/Preview.vue.d.ts +13 -0
  38. package/dist/composables/builderInstance.d.ts +20 -0
  39. package/dist/composables/delay.d.ts +1 -0
  40. package/dist/composables/extractCleanHTMLFromPageBuilder.d.ts +2 -0
  41. package/dist/composables/preloadImage.d.ts +1 -0
  42. package/dist/composables/useDebounce.d.ts +1 -0
  43. package/dist/composables/usePageBuilderModal.d.ts +4 -0
  44. package/dist/composables/useTranslations.d.ts +12 -0
  45. package/dist/helpers/isEmptyObject.d.ts +1 -0
  46. package/dist/index.d.ts +10 -0
  47. package/dist/main.d.ts +0 -0
  48. package/dist/plugin.d.ts +4 -0
  49. package/dist/services/LocalStorageManager.d.ts +7 -0
  50. package/dist/services/PageBuilderService.d.ts +587 -0
  51. package/dist/stores/page-builder-state.d.ts +285 -0
  52. package/dist/stores/shared-store.d.ts +4 -0
  53. package/dist/style.css +1 -1
  54. package/dist/tests/DefaultComponents/DefaultBuilderComponents.vue.d.ts +15 -0
  55. package/dist/tests/DefaultComponents/DefaultMediaLibraryComponent.vue.d.ts +3 -0
  56. package/dist/tests/PageBuilderTest.vue.d.ts +3 -0
  57. package/dist/tests/TestComponents/DemoMediaLibraryComponentTest.vue.d.ts +3 -0
  58. package/dist/tests/TestComponents/DemoUnsplash.vue.d.ts +3 -0
  59. package/dist/tests/pageBuilderService.test.d.ts +1 -0
  60. package/dist/types/index.d.ts +201 -0
  61. package/dist/utils/builder/html-doc-declaration-with-components.d.ts +2 -0
  62. package/dist/utils/builder/tailwaind-colors.d.ts +6 -0
  63. package/dist/utils/builder/tailwind-border-radius.d.ts +9 -0
  64. package/dist/utils/builder/tailwind-border-style-width-color.d.ts +7 -0
  65. package/dist/utils/builder/tailwind-font-sizes.d.ts +8 -0
  66. package/dist/utils/builder/tailwind-font-styles.d.ts +7 -0
  67. package/dist/utils/builder/tailwind-opacities.d.ts +6 -0
  68. package/dist/utils/builder/tailwind-padding-margin.d.ts +8 -0
  69. package/dist/utils/html-elements/component.d.ts +13 -0
  70. package/dist/utils/html-elements/componentHelpers.d.ts +8 -0
  71. package/dist/utils/html-elements/themes.d.ts +13 -0
  72. package/dist/vue-website-page-builder.js +6732 -6452
  73. package/dist/vue-website-page-builder.umd.cjs +65 -64
  74. package/package.json +3 -3
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,15 @@
1
+ type __VLS_Props = {
2
+ htmlCode: string;
3
+ containerHeight?: number;
4
+ renderWidth?: number;
5
+ /** 'cover' (default): fill width, clip tall content.
6
+ * 'contain': shrink to fit full content within the container. */
7
+ fit?: 'cover' | 'contain';
8
+ };
9
+ declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
10
+ containerHeight: number;
11
+ renderWidth: number;
12
+ fit: "cover" | "contain";
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_Props = {
2
+ modelValue: boolean;
3
+ };
4
+ declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
5
+ "update:modelValue": (value: boolean) => any;
6
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
7
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
8
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,43 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ firstButtonText: {
3
+ required: true;
4
+ };
5
+ title: {
6
+ type: StringConstructor;
7
+ required: true;
8
+ };
9
+ show: {
10
+ type: BooleanConstructor;
11
+ default: boolean;
12
+ required: true;
13
+ };
14
+ CustomBuilderComponents: {
15
+ type: ObjectConstructor;
16
+ default: null;
17
+ };
18
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
19
+ firstModalButtonSearchComponentsFunction: (...args: any[]) => void;
20
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
21
+ firstButtonText: {
22
+ required: true;
23
+ };
24
+ title: {
25
+ type: StringConstructor;
26
+ required: true;
27
+ };
28
+ show: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ required: true;
32
+ };
33
+ CustomBuilderComponents: {
34
+ type: ObjectConstructor;
35
+ default: null;
36
+ };
37
+ }>> & Readonly<{
38
+ onFirstModalButtonSearchComponentsFunction?: ((...args: any[]) => any) | undefined;
39
+ }>, {
40
+ CustomBuilderComponents: Record<string, any>;
41
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
42
+ declare const _default: typeof __VLS_export;
43
+ export default _default;
@@ -0,0 +1,143 @@
1
+ declare var __VLS_10: {}, __VLS_12: {}, __VLS_14: {}, __VLS_16: {};
2
+ type __VLS_Slots = {} & {
3
+ content?: (props: typeof __VLS_10) => any;
4
+ } & {
5
+ header?: (props: typeof __VLS_12) => any;
6
+ } & {
7
+ default?: (props: typeof __VLS_14) => any;
8
+ } & {
9
+ footer?: (props: typeof __VLS_16) => any;
10
+ };
11
+ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
12
+ showDynamicModalBuilder: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ required: true;
16
+ };
17
+ simpleModal: {
18
+ type: BooleanConstructor;
19
+ default: boolean;
20
+ required: false;
21
+ };
22
+ disabled: {
23
+ type: BooleanConstructor;
24
+ default: boolean;
25
+ required: false;
26
+ };
27
+ isLoading: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ required: false;
31
+ };
32
+ disabledWhichButton: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ required: false;
36
+ };
37
+ maxWidth: {
38
+ type: StringConstructor;
39
+ required: false;
40
+ default: string;
41
+ };
42
+ gridColumnAmount: {
43
+ type: NumberConstructor;
44
+ required: true;
45
+ };
46
+ type: {
47
+ type: StringConstructor;
48
+ required: true;
49
+ };
50
+ title: {
51
+ type: StringConstructor;
52
+ required: true;
53
+ };
54
+ description: {
55
+ required: true;
56
+ };
57
+ firstButtonText: {
58
+ type: StringConstructor;
59
+ };
60
+ secondButtonText: {
61
+ type: StringConstructor;
62
+ };
63
+ thirdButtonText: {
64
+ type: StringConstructor;
65
+ };
66
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
67
+ firstModalButtonFunctionDynamicModalBuilder: (...args: any[]) => void;
68
+ secondModalButtonFunctionDynamicModalBuilder: (...args: any[]) => void;
69
+ thirdModalButtonFunctionDynamicModalBuilder: (...args: any[]) => void;
70
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
71
+ showDynamicModalBuilder: {
72
+ type: BooleanConstructor;
73
+ default: boolean;
74
+ required: true;
75
+ };
76
+ simpleModal: {
77
+ type: BooleanConstructor;
78
+ default: boolean;
79
+ required: false;
80
+ };
81
+ disabled: {
82
+ type: BooleanConstructor;
83
+ default: boolean;
84
+ required: false;
85
+ };
86
+ isLoading: {
87
+ type: BooleanConstructor;
88
+ default: boolean;
89
+ required: false;
90
+ };
91
+ disabledWhichButton: {
92
+ type: StringConstructor;
93
+ default: string;
94
+ required: false;
95
+ };
96
+ maxWidth: {
97
+ type: StringConstructor;
98
+ required: false;
99
+ default: string;
100
+ };
101
+ gridColumnAmount: {
102
+ type: NumberConstructor;
103
+ required: true;
104
+ };
105
+ type: {
106
+ type: StringConstructor;
107
+ required: true;
108
+ };
109
+ title: {
110
+ type: StringConstructor;
111
+ required: true;
112
+ };
113
+ description: {
114
+ required: true;
115
+ };
116
+ firstButtonText: {
117
+ type: StringConstructor;
118
+ };
119
+ secondButtonText: {
120
+ type: StringConstructor;
121
+ };
122
+ thirdButtonText: {
123
+ type: StringConstructor;
124
+ };
125
+ }>> & Readonly<{
126
+ onFirstModalButtonFunctionDynamicModalBuilder?: ((...args: any[]) => any) | undefined;
127
+ onSecondModalButtonFunctionDynamicModalBuilder?: ((...args: any[]) => any) | undefined;
128
+ onThirdModalButtonFunctionDynamicModalBuilder?: ((...args: any[]) => any) | undefined;
129
+ }>, {
130
+ maxWidth: string;
131
+ disabled: boolean;
132
+ simpleModal: boolean;
133
+ isLoading: boolean;
134
+ disabledWhichButton: string;
135
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
136
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
137
+ declare const _default: typeof __VLS_export;
138
+ export default _default;
139
+ type __VLS_WithSlots<T, S> = T & {
140
+ new (): {
141
+ $slots: S;
142
+ };
143
+ };
@@ -0,0 +1,59 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ title: {
3
+ type: StringConstructor;
4
+ required: true;
5
+ };
6
+ description: {
7
+ required: true;
8
+ };
9
+ firstButtonText: {
10
+ type: StringConstructor;
11
+ };
12
+ secondButtonText: {
13
+ type: StringConstructor;
14
+ };
15
+ thirdButtonText: {
16
+ type: StringConstructor;
17
+ };
18
+ open: {
19
+ type: BooleanConstructor;
20
+ required: true;
21
+ };
22
+ customMediaComponent: {
23
+ type: ObjectConstructor;
24
+ default: null;
25
+ };
26
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
27
+ firstMediaButtonFunction: (...args: any[]) => void;
28
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
29
+ title: {
30
+ type: StringConstructor;
31
+ required: true;
32
+ };
33
+ description: {
34
+ required: true;
35
+ };
36
+ firstButtonText: {
37
+ type: StringConstructor;
38
+ };
39
+ secondButtonText: {
40
+ type: StringConstructor;
41
+ };
42
+ thirdButtonText: {
43
+ type: StringConstructor;
44
+ };
45
+ open: {
46
+ type: BooleanConstructor;
47
+ required: true;
48
+ };
49
+ customMediaComponent: {
50
+ type: ObjectConstructor;
51
+ default: null;
52
+ };
53
+ }>> & Readonly<{
54
+ onFirstMediaButtonFunction?: ((...args: any[]) => any) | undefined;
55
+ }>, {
56
+ customMediaComponent: Record<string, any>;
57
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
58
+ declare const _default: typeof __VLS_export;
59
+ export default _default;
@@ -0,0 +1,74 @@
1
+ declare var __VLS_7: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_7) => any;
4
+ };
5
+ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
6
+ title: {
7
+ type: StringConstructor;
8
+ required: true;
9
+ };
10
+ showModalBuilder: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ type: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ maxWidth: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ minHeight: {
23
+ type: StringConstructor;
24
+ };
25
+ maxHeight: {
26
+ type: StringConstructor;
27
+ };
28
+ noBackgroundOpacity: {
29
+ type: BooleanConstructor;
30
+ };
31
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
32
+ closeMainModalBuilder: (...args: any[]) => void;
33
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
34
+ title: {
35
+ type: StringConstructor;
36
+ required: true;
37
+ };
38
+ showModalBuilder: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ type: {
43
+ type: StringConstructor;
44
+ default: string;
45
+ };
46
+ maxWidth: {
47
+ type: StringConstructor;
48
+ default: string;
49
+ };
50
+ minHeight: {
51
+ type: StringConstructor;
52
+ };
53
+ maxHeight: {
54
+ type: StringConstructor;
55
+ };
56
+ noBackgroundOpacity: {
57
+ type: BooleanConstructor;
58
+ };
59
+ }>> & Readonly<{
60
+ onCloseMainModalBuilder?: ((...args: any[]) => any) | undefined;
61
+ }>, {
62
+ showModalBuilder: boolean;
63
+ type: string;
64
+ maxWidth: string;
65
+ noBackgroundOpacity: boolean;
66
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
67
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
68
+ declare const _default: typeof __VLS_export;
69
+ export default _default;
70
+ type __VLS_WithSlots<T, S> = T & {
71
+ new (): {
72
+ $slots: S;
73
+ };
74
+ };
@@ -0,0 +1,53 @@
1
+ declare var __VLS_13: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_13) => any;
4
+ };
5
+ declare const __VLS_base: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
6
+ title: {
7
+ type: StringConstructor;
8
+ required: false;
9
+ default: null;
10
+ };
11
+ showSidebarPanel: {
12
+ type: BooleanConstructor;
13
+ default: boolean;
14
+ };
15
+ position: {
16
+ type: StringConstructor;
17
+ required: true;
18
+ default: string;
19
+ validator(value: unknown): boolean;
20
+ };
21
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
22
+ closeSidebarPanel: (...args: any[]) => void;
23
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
24
+ title: {
25
+ type: StringConstructor;
26
+ required: false;
27
+ default: null;
28
+ };
29
+ showSidebarPanel: {
30
+ type: BooleanConstructor;
31
+ default: boolean;
32
+ };
33
+ position: {
34
+ type: StringConstructor;
35
+ required: true;
36
+ default: string;
37
+ validator(value: unknown): boolean;
38
+ };
39
+ }>> & Readonly<{
40
+ onCloseSidebarPanel?: ((...args: any[]) => any) | undefined;
41
+ }>, {
42
+ title: string;
43
+ showSidebarPanel: boolean;
44
+ position: string;
45
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
46
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
47
+ declare const _default: typeof __VLS_export;
48
+ export default _default;
49
+ type __VLS_WithSlots<T, S> = T & {
50
+ new (): {
51
+ $slots: S;
52
+ };
53
+ };
@@ -0,0 +1,13 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ globalPageLayout: {
3
+ type: BooleanConstructor;
4
+ };
5
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
6
+ globalPageLayout: {
7
+ type: BooleanConstructor;
8
+ };
9
+ }>> & Readonly<{}>, {
10
+ globalPageLayout: boolean;
11
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,13 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ globalPageLayout: {
3
+ type: BooleanConstructor;
4
+ };
5
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
6
+ globalPageLayout: {
7
+ type: BooleanConstructor;
8
+ };
9
+ }>> & Readonly<{}>, {
10
+ globalPageLayout: boolean;
11
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,15 @@
1
+ declare var __VLS_1: {}, __VLS_3: {};
2
+ type __VLS_Slots = {} & {
3
+ title?: (props: typeof __VLS_1) => any;
4
+ } & {
5
+ content?: (props: typeof __VLS_3) => any;
6
+ };
7
+ declare const __VLS_base: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
8
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
11
+ type __VLS_WithSlots<T, S> = T & {
12
+ new (): {
13
+ $slots: S;
14
+ };
15
+ };
@@ -0,0 +1,7 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
+ closeEditor: (...args: any[]) => void;
3
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
4
+ onCloseEditor?: ((...args: any[]) => any) | undefined;
5
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,15 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ isLoading: {
3
+ type: BooleanConstructor;
4
+ required: true;
5
+ default: boolean;
6
+ };
7
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
8
+ isLoading: {
9
+ type: BooleanConstructor;
10
+ required: true;
11
+ default: boolean;
12
+ };
13
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,7 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
2
+ "toolbar-hide-request": (...args: any[]) => void;
3
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
4
+ "onToolbar-hide-request"?: ((...args: any[]) => any) | undefined;
5
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
6
+ declare const _default: typeof __VLS_export;
7
+ export default _default;
@@ -0,0 +1,3 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
3
+ export default _default;
@@ -0,0 +1,48 @@
1
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
2
+ CustomMediaLibraryComponent: {
3
+ type: ObjectConstructor;
4
+ default: null;
5
+ };
6
+ CustomBuilderComponents: {
7
+ type: ObjectConstructor;
8
+ default: null;
9
+ };
10
+ showCloseButton: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ showPublishButton: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
19
+ handleClosePageBuilder: (...args: any[]) => void;
20
+ handlePublishPageBuilder: (...args: any[]) => void;
21
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
22
+ CustomMediaLibraryComponent: {
23
+ type: ObjectConstructor;
24
+ default: null;
25
+ };
26
+ CustomBuilderComponents: {
27
+ type: ObjectConstructor;
28
+ default: null;
29
+ };
30
+ showCloseButton: {
31
+ type: BooleanConstructor;
32
+ default: boolean;
33
+ };
34
+ showPublishButton: {
35
+ type: BooleanConstructor;
36
+ default: boolean;
37
+ };
38
+ }>> & Readonly<{
39
+ onHandleClosePageBuilder?: ((...args: any[]) => any) | undefined;
40
+ onHandlePublishPageBuilder?: ((...args: any[]) => any) | undefined;
41
+ }>, {
42
+ CustomBuilderComponents: Record<string, any>;
43
+ CustomMediaLibraryComponent: Record<string, any>;
44
+ showCloseButton: boolean;
45
+ showPublishButton: boolean;
46
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
47
+ declare const _default: typeof __VLS_export;
48
+ export default _default;