@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.
@@ -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;