@elementor/editor-elements 3.35.0-353 → 3.35.0-354
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +7 -7
- package/src/sync/types.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -134,6 +134,9 @@ 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
|
+
meta?: {
|
|
138
|
+
[key: string]: string | number | boolean | null | NonNullable<V1ElementConfig['meta']>;
|
|
139
|
+
};
|
|
137
140
|
} & T;
|
|
138
141
|
type V1Model<T> = {
|
|
139
142
|
get: <K extends keyof T>(key: K) => T[K];
|
package/dist/index.d.ts
CHANGED
|
@@ -134,6 +134,9 @@ 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
|
+
meta?: {
|
|
138
|
+
[key: string]: string | number | boolean | null | NonNullable<V1ElementConfig['meta']>;
|
|
139
|
+
};
|
|
137
140
|
} & T;
|
|
138
141
|
type V1Model<T> = {
|
|
139
142
|
get: <K extends keyof T>(key: K) => T[K];
|
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-354",
|
|
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-354",
|
|
44
|
+
"@elementor/editor-props": "3.35.0-354",
|
|
45
|
+
"@elementor/editor-styles": "3.35.0-354",
|
|
46
|
+
"@elementor/editor-v1-adapters": "3.35.0-354",
|
|
47
|
+
"@elementor/schema": "3.35.0-354",
|
|
48
|
+
"@elementor/utils": "3.35.0-354",
|
|
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
|
+
meta?: { [ key: string ]: string | number | boolean | null | NonNullable< V1ElementConfig[ 'meta' ] > };
|
|
98
99
|
} & T;
|
|
99
100
|
|
|
100
101
|
type V1Model< T > = {
|