@elementor/editor-elements 4.0.0-619 → 4.0.0-manual

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 CHANGED
@@ -120,8 +120,8 @@ type ConfigPropValue = {
120
120
  replay: BooleanPropValue;
121
121
  easing: StringPropValue;
122
122
  relativeTo: StringPropValue;
123
- offsetTop?: SizePropValue;
124
- offsetBottom?: SizePropValue;
123
+ start?: SizePropValue;
124
+ end?: SizePropValue;
125
125
  };
126
126
  };
127
127
  type AnimationPresetPropValue = {
package/dist/index.d.ts CHANGED
@@ -120,8 +120,8 @@ type ConfigPropValue = {
120
120
  replay: BooleanPropValue;
121
121
  easing: StringPropValue;
122
122
  relativeTo: StringPropValue;
123
- offsetTop?: SizePropValue;
124
- offsetBottom?: SizePropValue;
123
+ start?: SizePropValue;
124
+ end?: SizePropValue;
125
125
  };
126
126
  };
127
127
  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-619",
4
+ "version": "4.0.0-manual",
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-619",
44
- "@elementor/editor-props": "4.0.0-619",
45
- "@elementor/editor-styles": "4.0.0-619",
46
- "@elementor/editor-v1-adapters": "4.0.0-619",
47
- "@elementor/schema": "4.0.0-619",
48
- "@elementor/utils": "4.0.0-619",
43
+ "@elementor/editor-mcp": "4.0.0-manual",
44
+ "@elementor/editor-props": "4.0.0-manual",
45
+ "@elementor/editor-styles": "4.0.0-manual",
46
+ "@elementor/editor-v1-adapters": "4.0.0-manual",
47
+ "@elementor/schema": "4.0.0-manual",
48
+ "@elementor/utils": "4.0.0-manual",
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?: SizePropValue;
78
- offsetBottom?: SizePropValue;
77
+ start?: SizePropValue;
78
+ end?: SizePropValue;
79
79
  };
80
80
  };
81
81