@elementor/editor-elements 3.35.0-356 → 3.35.0-358
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +7 -7
- package/src/sync/types.ts +1 -0
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-
|
|
4
|
+
"version": "3.35.0-358",
|
|
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-
|
|
44
|
-
"@elementor/editor-props": "3.35.0-
|
|
45
|
-
"@elementor/editor-styles": "3.35.0-
|
|
46
|
-
"@elementor/editor-v1-adapters": "3.35.0-
|
|
47
|
-
"@elementor/schema": "3.35.0-
|
|
48
|
-
"@elementor/utils": "3.35.0-
|
|
43
|
+
"@elementor/editor-mcp": "3.35.0-358",
|
|
44
|
+
"@elementor/editor-props": "3.35.0-358",
|
|
45
|
+
"@elementor/editor-styles": "3.35.0-358",
|
|
46
|
+
"@elementor/editor-v1-adapters": "3.35.0-358",
|
|
47
|
+
"@elementor/schema": "3.35.0-358",
|
|
48
|
+
"@elementor/utils": "3.35.0-358",
|
|
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
|
|