@elementor/editor-elements 3.33.0-252 → 3.33.0-254

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
@@ -84,6 +84,7 @@ type V1ElementData = Omit<V1ElementModelProps, 'elements'> & {
84
84
  };
85
85
  type V1ElementEditorSettingsProps = {
86
86
  title?: string;
87
+ component_uid?: string;
87
88
  };
88
89
  type V1ElementSettingsProps = Record<string, PropValue>;
89
90
  type V1ElementConfig = {
package/dist/index.d.ts CHANGED
@@ -84,6 +84,7 @@ type V1ElementData = Omit<V1ElementModelProps, 'elements'> & {
84
84
  };
85
85
  type V1ElementEditorSettingsProps = {
86
86
  title?: string;
87
+ component_uid?: string;
87
88
  };
88
89
  type V1ElementSettingsProps = Record<string, PropValue>;
89
90
  type V1ElementConfig = {
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-252",
4
+ "version": "3.33.0-254",
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-252",
44
- "@elementor/editor-props": "3.33.0-252",
45
- "@elementor/editor-styles": "3.33.0-252",
46
- "@elementor/editor-v1-adapters": "3.33.0-252",
47
- "@elementor/schema": "3.33.0-252",
48
- "@elementor/utils": "3.33.0-252",
43
+ "@elementor/editor-mcp": "3.33.0-254",
44
+ "@elementor/editor-props": "3.33.0-254",
45
+ "@elementor/editor-styles": "3.33.0-254",
46
+ "@elementor/editor-v1-adapters": "3.33.0-254",
47
+ "@elementor/schema": "3.33.0-254",
48
+ "@elementor/utils": "3.33.0-254",
49
49
  "@wordpress/i18n": "^3.1.0"
50
50
  },
51
51
  "peerDependencies": {
package/src/sync/types.ts CHANGED
@@ -61,6 +61,7 @@ export type V1ElementData = Omit< V1ElementModelProps, 'elements' > & {
61
61
 
62
62
  export type V1ElementEditorSettingsProps = {
63
63
  title?: string;
64
+ component_uid?: string;
64
65
  };
65
66
 
66
67
  export type V1ElementSettingsProps = Record< string, PropValue >;