@elementor/editor-interactions 4.0.0-609 → 4.0.0-619

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
@@ -12,10 +12,6 @@ declare const InteractionsTab: ({ elementId }: {
12
12
  elementId: string;
13
13
  }) => React.JSX.Element;
14
14
 
15
- type AnimationOption = {
16
- value: string;
17
- label: string;
18
- };
19
15
  type InteractionConstants = {
20
16
  defaultDuration: number;
21
17
  defaultDelay: number;
@@ -25,7 +21,6 @@ type InteractionConstants = {
25
21
  };
26
22
  type InteractionsConfig = {
27
23
  constants: InteractionConstants;
28
- animationOptions: AnimationOption[];
29
24
  };
30
25
  type FieldProps<T = string> = {
31
26
  value: T;
package/dist/index.d.ts CHANGED
@@ -12,10 +12,6 @@ declare const InteractionsTab: ({ elementId }: {
12
12
  elementId: string;
13
13
  }) => React.JSX.Element;
14
14
 
15
- type AnimationOption = {
16
- value: string;
17
- label: string;
18
- };
19
15
  type InteractionConstants = {
20
16
  defaultDuration: number;
21
17
  defaultDelay: number;
@@ -25,7 +21,6 @@ type InteractionConstants = {
25
21
  };
26
22
  type InteractionsConfig = {
27
23
  constants: InteractionConstants;
28
- animationOptions: AnimationOption[];
29
24
  };
30
25
  type FieldProps<T = string> = {
31
26
  value: T;
package/dist/index.js CHANGED
@@ -936,8 +936,7 @@ var DEFAULT_CONFIG = {
936
936
  slideDistance: 100,
937
937
  scaleStart: 0.5,
938
938
  easing: "linear"
939
- },
940
- animationOptions: []
939
+ }
941
940
  };
942
941
  function getInteractionsConfig() {
943
942
  return window.ElementorInteractionsConfig || DEFAULT_CONFIG;