@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 CHANGED
@@ -1,4 +1,4 @@
1
- import { PropsSchema, SizePropValue, PropValue, Props, LinkPropValue } from '@elementor/editor-props';
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, SizePropValue, PropValue, Props, LinkPropValue } from '@elementor/editor-props';
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-564",
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-564",
44
- "@elementor/editor-props": "4.0.0-564",
45
- "@elementor/editor-styles": "4.0.0-564",
46
- "@elementor/editor-v1-adapters": "4.0.0-564",
47
- "@elementor/schema": "4.0.0-564",
48
- "@elementor/utils": "4.0.0-564",
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
@@ -83,6 +83,7 @@ export type AnimationPresetPropValue = {
83
83
  $$type: 'animation-preset-props';
84
84
  value: {
85
85
  effect: StringPropValue;
86
+ custom_effect?: PropValue;
86
87
  type: StringPropValue;
87
88
  direction: StringPropValue;
88
89
  timing_config: TimingConfigPropValue;