@myissue/vue-website-page-builder 3.5.0 → 3.5.2

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.
@@ -188,14 +188,13 @@ export declare const usePageBuilderStateStore: import('pinia').StoreDefinition<"
188
188
  image?: string | undefined;
189
189
  } | undefined;
190
190
  userSettings?: {
191
- [x: string]: unknown;
192
191
  language?: {
193
- [x: string]: unknown;
194
192
  default?: string | undefined;
195
193
  enable?: readonly string[] | undefined;
196
194
  disableLanguageDropDown?: boolean | undefined;
197
195
  } | undefined;
198
196
  autoSave?: boolean | undefined;
197
+ notifications?: boolean | undefined;
199
198
  fontFamily?: string | undefined;
200
199
  } | null | undefined;
201
200
  settings?: {
@@ -139,16 +139,16 @@ export interface PageBuilderConfig {
139
139
  } | null;
140
140
  userForPageBuilder?: PageBuilderUser;
141
141
  [key: string]: unknown;
142
- userSettings?: ({
142
+ userSettings?: {
143
143
  language?: {
144
144
  default?: string;
145
145
  enable?: readonly string[];
146
146
  disableLanguageDropDown?: boolean;
147
- [key: string]: unknown;
148
147
  };
149
148
  autoSave?: boolean;
149
+ notifications?: boolean;
150
150
  fontFamily?: string;
151
- } & Record<string, unknown>) | null;
151
+ } | null;
152
152
  settings?: {
153
153
  brandColor?: string;
154
154
  [key: string]: unknown;