@elementor/editor-elements 4.0.0-564 → 4.0.0-591
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 -1
- package/dist/index.d.ts +2 -1
- package/package.json +7 -7
- package/src/sync/types.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PropsSchema,
|
|
1
|
+
import { PropsSchema, PropValue, SizePropValue, Props, LinkPropValue } from '@elementor/editor-props';
|
|
2
2
|
import { ClassState, StyleDefinitionID, StyleDefinition, StyleDefinitionVariant } from '@elementor/editor-styles';
|
|
3
3
|
import * as _elementor_editor_v1_adapters from '@elementor/editor-v1-adapters';
|
|
4
4
|
|
|
@@ -123,6 +123,7 @@ type AnimationPresetPropValue = {
|
|
|
123
123
|
$$type: 'animation-preset-props';
|
|
124
124
|
value: {
|
|
125
125
|
effect: StringPropValue;
|
|
126
|
+
custom_effect?: PropValue;
|
|
126
127
|
type: StringPropValue;
|
|
127
128
|
direction: StringPropValue;
|
|
128
129
|
timing_config: TimingConfigPropValue;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PropsSchema,
|
|
1
|
+
import { PropsSchema, PropValue, SizePropValue, Props, LinkPropValue } from '@elementor/editor-props';
|
|
2
2
|
import { ClassState, StyleDefinitionID, StyleDefinition, StyleDefinitionVariant } from '@elementor/editor-styles';
|
|
3
3
|
import * as _elementor_editor_v1_adapters from '@elementor/editor-v1-adapters';
|
|
4
4
|
|
|
@@ -123,6 +123,7 @@ type AnimationPresetPropValue = {
|
|
|
123
123
|
$$type: 'animation-preset-props';
|
|
124
124
|
value: {
|
|
125
125
|
effect: StringPropValue;
|
|
126
|
+
custom_effect?: PropValue;
|
|
126
127
|
type: StringPropValue;
|
|
127
128
|
direction: StringPropValue;
|
|
128
129
|
timing_config: TimingConfigPropValue;
|
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-591",
|
|
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-591",
|
|
44
|
+
"@elementor/editor-props": "4.0.0-591",
|
|
45
|
+
"@elementor/editor-styles": "4.0.0-591",
|
|
46
|
+
"@elementor/editor-v1-adapters": "4.0.0-591",
|
|
47
|
+
"@elementor/schema": "4.0.0-591",
|
|
48
|
+
"@elementor/utils": "4.0.0-591",
|
|
49
49
|
"@wordpress/i18n": "^3.1.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
package/src/sync/types.ts
CHANGED