@elementor/editor-elements 4.3.0-1023 → 4.3.0-1033
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 +8 -8
- package/src/sync/types.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -227,6 +227,7 @@ type V1ElementEditorSettingsProps = {
|
|
|
227
227
|
initial_position?: number;
|
|
228
228
|
component_uid?: string;
|
|
229
229
|
grid_outline?: boolean;
|
|
230
|
+
empty_state_preview?: boolean;
|
|
230
231
|
};
|
|
231
232
|
type V1ElementSettingsProps = Record<string, PropValue>;
|
|
232
233
|
type V1ElementConfig<T = object, TChild = unknown> = {
|
package/dist/index.d.ts
CHANGED
|
@@ -227,6 +227,7 @@ type V1ElementEditorSettingsProps = {
|
|
|
227
227
|
initial_position?: number;
|
|
228
228
|
component_uid?: string;
|
|
229
229
|
grid_outline?: boolean;
|
|
230
|
+
empty_state_preview?: boolean;
|
|
230
231
|
};
|
|
231
232
|
type V1ElementSettingsProps = Record<string, PropValue>;
|
|
232
233
|
type V1ElementConfig<T = object, TChild = unknown> = {
|
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": "4.3.0-
|
|
4
|
+
"version": "4.3.0-1033",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Elementor Team",
|
|
7
7
|
"homepage": "https://elementor.com/",
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
"dev": "tsup --config=../../tsup.dev.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@elementor/editor-mcp": "4.3.0-
|
|
44
|
-
"@elementor/editor-props": "4.3.0-
|
|
45
|
-
"@elementor/editor-styles": "4.3.0-
|
|
46
|
-
"@elementor/editor-v1-adapters": "4.3.0-
|
|
47
|
-
"@elementor/schema": "4.3.0-
|
|
48
|
-
"@elementor/session": "4.3.0-
|
|
49
|
-
"@elementor/utils": "4.3.0-
|
|
43
|
+
"@elementor/editor-mcp": "4.3.0-1033",
|
|
44
|
+
"@elementor/editor-props": "4.3.0-1033",
|
|
45
|
+
"@elementor/editor-styles": "4.3.0-1033",
|
|
46
|
+
"@elementor/editor-v1-adapters": "4.3.0-1033",
|
|
47
|
+
"@elementor/schema": "4.3.0-1033",
|
|
48
|
+
"@elementor/session": "4.3.0-1033",
|
|
49
|
+
"@elementor/utils": "4.3.0-1033",
|
|
50
50
|
"@wordpress/i18n": "^3.1.0"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
package/src/sync/types.ts
CHANGED