@elementor/editor-elements 4.0.0-545 → 4.0.0-546
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +7 -7
- package/src/sync/types.ts +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -115,8 +115,8 @@ type ConfigPropValue = {
|
|
|
115
115
|
replay: BooleanPropValue;
|
|
116
116
|
easing: StringPropValue;
|
|
117
117
|
relativeTo: StringPropValue;
|
|
118
|
-
offsetTop
|
|
119
|
-
offsetBottom
|
|
118
|
+
offsetTop?: SizePropValue;
|
|
119
|
+
offsetBottom?: SizePropValue;
|
|
120
120
|
};
|
|
121
121
|
};
|
|
122
122
|
type AnimationPresetPropValue = {
|
package/dist/index.d.ts
CHANGED
|
@@ -115,8 +115,8 @@ type ConfigPropValue = {
|
|
|
115
115
|
replay: BooleanPropValue;
|
|
116
116
|
easing: StringPropValue;
|
|
117
117
|
relativeTo: StringPropValue;
|
|
118
|
-
offsetTop
|
|
119
|
-
offsetBottom
|
|
118
|
+
offsetTop?: SizePropValue;
|
|
119
|
+
offsetBottom?: SizePropValue;
|
|
120
120
|
};
|
|
121
121
|
};
|
|
122
122
|
type AnimationPresetPropValue = {
|
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.0.0-
|
|
4
|
+
"version": "4.0.0-546",
|
|
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": "4.0.0-
|
|
44
|
-
"@elementor/editor-props": "4.0.0-
|
|
45
|
-
"@elementor/editor-styles": "4.0.0-
|
|
46
|
-
"@elementor/editor-v1-adapters": "4.0.0-
|
|
47
|
-
"@elementor/schema": "4.0.0-
|
|
48
|
-
"@elementor/utils": "4.0.0-
|
|
43
|
+
"@elementor/editor-mcp": "4.0.0-546",
|
|
44
|
+
"@elementor/editor-props": "4.0.0-546",
|
|
45
|
+
"@elementor/editor-styles": "4.0.0-546",
|
|
46
|
+
"@elementor/editor-v1-adapters": "4.0.0-546",
|
|
47
|
+
"@elementor/schema": "4.0.0-546",
|
|
48
|
+
"@elementor/utils": "4.0.0-546",
|
|
49
49
|
"@wordpress/i18n": "^3.1.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
package/src/sync/types.ts
CHANGED
|
@@ -74,8 +74,8 @@ export type ConfigPropValue = {
|
|
|
74
74
|
replay: BooleanPropValue;
|
|
75
75
|
easing: StringPropValue;
|
|
76
76
|
relativeTo: StringPropValue;
|
|
77
|
-
offsetTop
|
|
78
|
-
offsetBottom
|
|
77
|
+
offsetTop?: SizePropValue;
|
|
78
|
+
offsetBottom?: SizePropValue;
|
|
79
79
|
};
|
|
80
80
|
};
|
|
81
81
|
|