@elementor/editor-elements 4.3.0-960 → 4.3.0-962

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
@@ -211,6 +211,7 @@ type V1ElementEditorSettingsProps = {
211
211
  title?: string;
212
212
  initial_position?: number;
213
213
  component_uid?: string;
214
+ grid_outline?: boolean;
214
215
  };
215
216
  type V1ElementSettingsProps = Record<string, PropValue>;
216
217
  type V1ElementConfig<T = object, TChild = unknown> = {
package/dist/index.d.ts CHANGED
@@ -211,6 +211,7 @@ type V1ElementEditorSettingsProps = {
211
211
  title?: string;
212
212
  initial_position?: number;
213
213
  component_uid?: string;
214
+ grid_outline?: boolean;
214
215
  };
215
216
  type V1ElementSettingsProps = Record<string, PropValue>;
216
217
  type V1ElementConfig<T = object, TChild = unknown> = {
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.3.0-960",
4
+ "version": "4.3.0-962",
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.3.0-960",
44
- "@elementor/editor-props": "4.3.0-960",
45
- "@elementor/editor-styles": "4.3.0-960",
46
- "@elementor/editor-v1-adapters": "4.3.0-960",
47
- "@elementor/schema": "4.3.0-960",
48
- "@elementor/utils": "4.3.0-960",
43
+ "@elementor/editor-mcp": "4.3.0-962",
44
+ "@elementor/editor-props": "4.3.0-962",
45
+ "@elementor/editor-styles": "4.3.0-962",
46
+ "@elementor/editor-v1-adapters": "4.3.0-962",
47
+ "@elementor/schema": "4.3.0-962",
48
+ "@elementor/utils": "4.3.0-962",
49
49
  "@wordpress/i18n": "^3.1.0"
50
50
  },
51
51
  "peerDependencies": {
package/src/sync/types.ts CHANGED
@@ -172,6 +172,7 @@ export type V1ElementEditorSettingsProps = {
172
172
  title?: string;
173
173
  initial_position?: number;
174
174
  component_uid?: string;
175
+ grid_outline?: boolean;
175
176
  };
176
177
 
177
178
  export type V1ElementSettingsProps = Record< string, PropValue >;