@elementor/editor-elements 4.2.0-936 → 4.2.0-938

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/index.d.mts CHANGED
@@ -227,6 +227,7 @@ type V1ElementConfig<T = object, TChild = unknown> = {
227
227
  twig_main_template?: string;
228
228
  base_styles?: Record<string, StyleDefinition>;
229
229
  base_styles_dictionary?: Record<string, string>;
230
+ base_settings?: Record<string, PropValue>;
230
231
  atomic_style_states?: ClassState[];
231
232
  atomic_pseudo_states?: PseudoState[];
232
233
  show_in_panel?: boolean;
package/dist/index.d.ts CHANGED
@@ -227,6 +227,7 @@ type V1ElementConfig<T = object, TChild = unknown> = {
227
227
  twig_main_template?: string;
228
228
  base_styles?: Record<string, StyleDefinition>;
229
229
  base_styles_dictionary?: Record<string, string>;
230
+ base_settings?: Record<string, PropValue>;
230
231
  atomic_style_states?: ClassState[];
231
232
  atomic_pseudo_states?: PseudoState[];
232
233
  show_in_panel?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@elementor/editor-elements",
3
3
  "description": "This package contains the elements model for the Elementor editor",
4
- "version": "4.2.0-936",
4
+ "version": "4.2.0-938",
5
5
  "private": false,
6
6
  "author": "Elementor Team",
7
7
  "homepage": "https://elementor.com/",
@@ -40,12 +40,12 @@
40
40
  "dev": "tsup --config=../../tsup.dev.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@elementor/editor-mcp": "4.2.0-936",
44
- "@elementor/editor-props": "4.2.0-936",
45
- "@elementor/editor-styles": "4.2.0-936",
46
- "@elementor/editor-v1-adapters": "4.2.0-936",
47
- "@elementor/schema": "4.2.0-936",
48
- "@elementor/utils": "4.2.0-936",
43
+ "@elementor/editor-mcp": "4.2.0-938",
44
+ "@elementor/editor-props": "4.2.0-938",
45
+ "@elementor/editor-styles": "4.2.0-938",
46
+ "@elementor/editor-v1-adapters": "4.2.0-938",
47
+ "@elementor/schema": "4.2.0-938",
48
+ "@elementor/utils": "4.2.0-938",
49
49
  "@wordpress/i18n": "^3.1.0"
50
50
  },
51
51
  "peerDependencies": {
package/src/sync/types.ts CHANGED
@@ -190,6 +190,7 @@ export type V1ElementConfig< T = object, TChild = unknown > = {
190
190
  twig_main_template?: string;
191
191
  base_styles?: Record< string, StyleDefinition >;
192
192
  base_styles_dictionary?: Record< string, string >;
193
+ base_settings?: Record< string, PropValue >;
193
194
  atomic_style_states?: ClassState[];
194
195
  atomic_pseudo_states?: PseudoState[];
195
196
  show_in_panel?: boolean;