@elementor/editor-elements 3.35.0-429 → 3.35.0-430
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
|
@@ -147,6 +147,7 @@ type V1ElementModelProps = {
|
|
|
147
147
|
settings?: V1ElementSettingsProps;
|
|
148
148
|
editor_settings?: V1ElementEditorSettingsProps;
|
|
149
149
|
interactions?: string | ElementInteractions;
|
|
150
|
+
isGlobal?: boolean;
|
|
150
151
|
};
|
|
151
152
|
type V1ElementData = Omit<V1ElementModelProps, 'elements'> & {
|
|
152
153
|
elements?: V1ElementData[];
|
package/dist/index.d.ts
CHANGED
|
@@ -147,6 +147,7 @@ type V1ElementModelProps = {
|
|
|
147
147
|
settings?: V1ElementSettingsProps;
|
|
148
148
|
editor_settings?: V1ElementEditorSettingsProps;
|
|
149
149
|
interactions?: string | ElementInteractions;
|
|
150
|
+
isGlobal?: boolean;
|
|
150
151
|
};
|
|
151
152
|
type V1ElementData = Omit<V1ElementModelProps, 'elements'> & {
|
|
152
153
|
elements?: V1ElementData[];
|
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-430",
|
|
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-430",
|
|
44
|
+
"@elementor/editor-props": "3.35.0-430",
|
|
45
|
+
"@elementor/editor-styles": "3.35.0-430",
|
|
46
|
+
"@elementor/editor-v1-adapters": "3.35.0-430",
|
|
47
|
+
"@elementor/schema": "3.35.0-430",
|
|
48
|
+
"@elementor/utils": "3.35.0-430",
|
|
49
49
|
"@wordpress/i18n": "^3.1.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
package/src/sync/types.ts
CHANGED
|
@@ -110,6 +110,7 @@ export type V1ElementModelProps = {
|
|
|
110
110
|
settings?: V1ElementSettingsProps;
|
|
111
111
|
editor_settings?: V1ElementEditorSettingsProps;
|
|
112
112
|
interactions?: string | ElementInteractions;
|
|
113
|
+
isGlobal?: boolean;
|
|
113
114
|
};
|
|
114
115
|
|
|
115
116
|
export type V1ElementData = Omit< V1ElementModelProps, 'elements' > & {
|