@elementor/editor-elements 4.2.0-882 → 4.2.0-883

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
@@ -190,6 +190,7 @@ type ElementInteractions = {
190
190
  type V1ElementModelProps = {
191
191
  title?: string;
192
192
  isLocked?: boolean;
193
+ meta?: Record<string, unknown>;
193
194
  widgetType?: string;
194
195
  elType: string;
195
196
  id: string;
package/dist/index.d.ts CHANGED
@@ -190,6 +190,7 @@ type ElementInteractions = {
190
190
  type V1ElementModelProps = {
191
191
  title?: string;
192
192
  isLocked?: boolean;
193
+ meta?: Record<string, unknown>;
193
194
  widgetType?: string;
194
195
  elType: string;
195
196
  id: string;
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-882",
4
+ "version": "4.2.0-883",
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-882",
44
- "@elementor/editor-props": "4.2.0-882",
45
- "@elementor/editor-styles": "4.2.0-882",
46
- "@elementor/editor-v1-adapters": "4.2.0-882",
47
- "@elementor/schema": "4.2.0-882",
48
- "@elementor/utils": "4.2.0-882",
43
+ "@elementor/editor-mcp": "4.2.0-883",
44
+ "@elementor/editor-props": "4.2.0-883",
45
+ "@elementor/editor-styles": "4.2.0-883",
46
+ "@elementor/editor-v1-adapters": "4.2.0-883",
47
+ "@elementor/schema": "4.2.0-883",
48
+ "@elementor/utils": "4.2.0-883",
49
49
  "@wordpress/i18n": "^3.1.0"
50
50
  },
51
51
  "peerDependencies": {
package/src/sync/types.ts CHANGED
@@ -150,6 +150,7 @@ export type ElementInteractions = {
150
150
  export type V1ElementModelProps = {
151
151
  title?: string;
152
152
  isLocked?: boolean;
153
+ meta?: Record< string, unknown >;
153
154
  widgetType?: string;
154
155
  elType: string;
155
156
  id: string;