@elementor/editor-elements 3.35.0-356 → 3.35.0-357

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
@@ -134,6 +134,7 @@ type V1ElementConfig<T = object> = {
134
134
  base_styles?: Record<string, StyleDefinition>;
135
135
  base_styles_dictionary?: Record<string, string>;
136
136
  atomic_style_states?: ClassState[];
137
+ show_in_panel?: boolean;
137
138
  meta?: {
138
139
  [key: string]: string | number | boolean | null | NonNullable<V1ElementConfig['meta']>;
139
140
  };
package/dist/index.d.ts CHANGED
@@ -134,6 +134,7 @@ type V1ElementConfig<T = object> = {
134
134
  base_styles?: Record<string, StyleDefinition>;
135
135
  base_styles_dictionary?: Record<string, string>;
136
136
  atomic_style_states?: ClassState[];
137
+ show_in_panel?: boolean;
137
138
  meta?: {
138
139
  [key: string]: string | number | boolean | null | NonNullable<V1ElementConfig['meta']>;
139
140
  };
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-356",
4
+ "version": "3.35.0-357",
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-356",
44
- "@elementor/editor-props": "3.35.0-356",
45
- "@elementor/editor-styles": "3.35.0-356",
46
- "@elementor/editor-v1-adapters": "3.35.0-356",
47
- "@elementor/schema": "3.35.0-356",
48
- "@elementor/utils": "3.35.0-356",
43
+ "@elementor/editor-mcp": "3.35.0-357",
44
+ "@elementor/editor-props": "3.35.0-357",
45
+ "@elementor/editor-styles": "3.35.0-357",
46
+ "@elementor/editor-v1-adapters": "3.35.0-357",
47
+ "@elementor/schema": "3.35.0-357",
48
+ "@elementor/utils": "3.35.0-357",
49
49
  "@wordpress/i18n": "^3.1.0"
50
50
  },
51
51
  "peerDependencies": {
package/src/sync/types.ts CHANGED
@@ -95,6 +95,7 @@ export type V1ElementConfig< T = object > = {
95
95
  base_styles?: Record< string, StyleDefinition >;
96
96
  base_styles_dictionary?: Record< string, string >;
97
97
  atomic_style_states?: ClassState[];
98
+ show_in_panel?: boolean;
98
99
  meta?: { [ key: string ]: string | number | boolean | null | NonNullable< V1ElementConfig[ 'meta' ] > };
99
100
  } & T;
100
101