@elementor/editor-elements 3.35.0-411 → 3.35.0-412

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
@@ -137,6 +137,7 @@ type ElementInteractions = {
137
137
  items: InteractionItemPropValue[];
138
138
  };
139
139
  type V1ElementModelProps = {
140
+ title?: string;
140
141
  isLocked?: boolean;
141
142
  widgetType?: string;
142
143
  elType: string;
package/dist/index.d.ts CHANGED
@@ -137,6 +137,7 @@ type ElementInteractions = {
137
137
  items: InteractionItemPropValue[];
138
138
  };
139
139
  type V1ElementModelProps = {
140
+ title?: string;
140
141
  isLocked?: boolean;
141
142
  widgetType?: string;
142
143
  elType: 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": "3.35.0-411",
4
+ "version": "3.35.0-412",
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.35.0-411",
44
- "@elementor/editor-props": "3.35.0-411",
45
- "@elementor/editor-styles": "3.35.0-411",
46
- "@elementor/editor-v1-adapters": "3.35.0-411",
47
- "@elementor/schema": "3.35.0-411",
48
- "@elementor/utils": "3.35.0-411",
43
+ "@elementor/editor-mcp": "3.35.0-412",
44
+ "@elementor/editor-props": "3.35.0-412",
45
+ "@elementor/editor-styles": "3.35.0-412",
46
+ "@elementor/editor-v1-adapters": "3.35.0-412",
47
+ "@elementor/schema": "3.35.0-412",
48
+ "@elementor/utils": "3.35.0-412",
49
49
  "@wordpress/i18n": "^3.1.0"
50
50
  },
51
51
  "peerDependencies": {
package/src/sync/types.ts CHANGED
@@ -100,6 +100,7 @@ export type ElementInteractions = {
100
100
  };
101
101
 
102
102
  export type V1ElementModelProps = {
103
+ title?: string;
103
104
  isLocked?: boolean;
104
105
  widgetType?: string;
105
106
  elType: string;