@elementor/editor-elements 3.35.0-379 → 3.35.0-380

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
@@ -146,6 +146,7 @@ type V1ElementEditorSettingsProps = {
146
146
  };
147
147
  type V1ElementSettingsProps = Record<string, PropValue>;
148
148
  type V1ElementConfig<T = object> = {
149
+ icon?: string;
149
150
  title: string;
150
151
  widgetType?: string;
151
152
  elType?: string;
package/dist/index.d.ts CHANGED
@@ -146,6 +146,7 @@ type V1ElementEditorSettingsProps = {
146
146
  };
147
147
  type V1ElementSettingsProps = Record<string, PropValue>;
148
148
  type V1ElementConfig<T = object> = {
149
+ icon?: string;
149
150
  title: string;
150
151
  widgetType?: string;
151
152
  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-379",
4
+ "version": "3.35.0-380",
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-379",
44
- "@elementor/editor-props": "3.35.0-379",
45
- "@elementor/editor-styles": "3.35.0-379",
46
- "@elementor/editor-v1-adapters": "3.35.0-379",
47
- "@elementor/schema": "3.35.0-379",
48
- "@elementor/utils": "3.35.0-379",
43
+ "@elementor/editor-mcp": "3.35.0-380",
44
+ "@elementor/editor-props": "3.35.0-380",
45
+ "@elementor/editor-styles": "3.35.0-380",
46
+ "@elementor/editor-v1-adapters": "3.35.0-380",
47
+ "@elementor/schema": "3.35.0-380",
48
+ "@elementor/utils": "3.35.0-380",
49
49
  "@wordpress/i18n": "^3.1.0"
50
50
  },
51
51
  "peerDependencies": {
package/src/sync/types.ts CHANGED
@@ -111,6 +111,7 @@ export type V1ElementEditorSettingsProps = {
111
111
  export type V1ElementSettingsProps = Record< string, PropValue >;
112
112
 
113
113
  export type V1ElementConfig< T = object > = {
114
+ icon?: string;
114
115
  title: string;
115
116
  widgetType?: string;
116
117
  elType?: string;