@myissue/vue-website-page-builder 3.4.98 → 3.5.0
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/stores/page-builder-state.d.ts +5 -1
- package/dist/style.css +1 -1
- package/dist/tests/service/componentValidation.test.d.ts +1 -0
- package/dist/tests/service/globalPageSettings.test.d.ts +1 -0
- package/dist/tests/service/htmlUtils.test.d.ts +1 -0
- package/dist/tests/service/localStorage.test.d.ts +1 -0
- package/dist/tests/service/pageBuilderService.test.d.ts +1 -0
- package/dist/tests/ui/modalStacking.test.d.ts +1 -0
- package/dist/types/index.d.ts +8 -5
- package/dist/utils/html-elements/componentHelpers.d.ts +1 -0
- package/dist/vue-website-page-builder.js +594 -586
- package/dist/vue-website-page-builder.umd.cjs +5 -5
- package/package.json +1 -1
- /package/dist/tests/{pageBuilderService.test.d.ts → config/config.test.d.ts} +0 -0
|
@@ -157,11 +157,13 @@ export declare const usePageBuilderStateStore: import('pinia').StoreDefinition<"
|
|
|
157
157
|
src?: string;
|
|
158
158
|
}) | null;
|
|
159
159
|
component: {
|
|
160
|
+
[x: string]: unknown;
|
|
160
161
|
id: string | number | null;
|
|
161
162
|
html_code: string;
|
|
162
163
|
title: string;
|
|
163
164
|
} | null;
|
|
164
165
|
components: {
|
|
166
|
+
[x: string]: unknown;
|
|
165
167
|
id: string | number | null;
|
|
166
168
|
html_code: string;
|
|
167
169
|
title: string;
|
|
@@ -171,7 +173,7 @@ export declare const usePageBuilderStateStore: import('pinia').StoreDefinition<"
|
|
|
171
173
|
[x: string]: unknown;
|
|
172
174
|
updateOrCreate: {
|
|
173
175
|
formType: "create" | "update";
|
|
174
|
-
formName: string;
|
|
176
|
+
formName: import('..').FormName | (string & {});
|
|
175
177
|
};
|
|
176
178
|
pageBuilderLogo?: {
|
|
177
179
|
src: string;
|
|
@@ -188,6 +190,7 @@ export declare const usePageBuilderStateStore: import('pinia').StoreDefinition<"
|
|
|
188
190
|
userSettings?: {
|
|
189
191
|
[x: string]: unknown;
|
|
190
192
|
language?: {
|
|
193
|
+
[x: string]: unknown;
|
|
191
194
|
default?: string | undefined;
|
|
192
195
|
enable?: readonly string[] | undefined;
|
|
193
196
|
disableLanguageDropDown?: boolean | undefined;
|
|
@@ -207,6 +210,7 @@ export declare const usePageBuilderStateStore: import('pinia').StoreDefinition<"
|
|
|
207
210
|
showModalHTMLEditor: boolean;
|
|
208
211
|
toggleGlobalHtmlMode: boolean;
|
|
209
212
|
applyImageToSelection: {
|
|
213
|
+
[x: string]: unknown;
|
|
210
214
|
src: string;
|
|
211
215
|
};
|
|
212
216
|
currentPreviewImage: string | null;
|