@elementor/editor-elements 3.33.0-281 → 3.33.0-283

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
@@ -114,6 +114,7 @@ type V1ElementData = Omit<V1ElementModelProps, 'elements'> & {
114
114
  };
115
115
  type V1ElementEditorSettingsProps = {
116
116
  title?: string;
117
+ initial_position?: number;
117
118
  component_uid?: string;
118
119
  };
119
120
  type V1ElementSettingsProps = Record<string, PropValue>;
package/dist/index.d.ts CHANGED
@@ -114,6 +114,7 @@ type V1ElementData = Omit<V1ElementModelProps, 'elements'> & {
114
114
  };
115
115
  type V1ElementEditorSettingsProps = {
116
116
  title?: string;
117
+ initial_position?: number;
117
118
  component_uid?: string;
118
119
  };
119
120
  type V1ElementSettingsProps = Record<string, PropValue>;
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": "3.33.0-281",
4
+ "version": "3.33.0-283",
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": "3.33.0-281",
44
- "@elementor/editor-props": "3.33.0-281",
45
- "@elementor/editor-styles": "3.33.0-281",
46
- "@elementor/editor-v1-adapters": "3.33.0-281",
47
- "@elementor/schema": "3.33.0-281",
48
- "@elementor/utils": "3.33.0-281",
43
+ "@elementor/editor-mcp": "3.33.0-283",
44
+ "@elementor/editor-props": "3.33.0-283",
45
+ "@elementor/editor-styles": "3.33.0-283",
46
+ "@elementor/editor-v1-adapters": "3.33.0-283",
47
+ "@elementor/schema": "3.33.0-283",
48
+ "@elementor/utils": "3.33.0-283",
49
49
  "@wordpress/i18n": "^3.1.0"
50
50
  },
51
51
  "peerDependencies": {
package/src/sync/types.ts CHANGED
@@ -73,6 +73,7 @@ export type V1ElementData = Omit< V1ElementModelProps, 'elements' > & {
73
73
 
74
74
  export type V1ElementEditorSettingsProps = {
75
75
  title?: string;
76
+ initial_position?: number;
76
77
  component_uid?: string;
77
78
  };
78
79