@elementor/editor-interactions 4.1.0-727 → 4.1.0-729

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elementor/editor-interactions",
3
- "version": "4.1.0-727",
3
+ "version": "4.1.0-729",
4
4
  "private": false,
5
5
  "author": "Elementor Team",
6
6
  "homepage": "https://elementor.com/",
@@ -39,19 +39,19 @@
39
39
  "dev": "tsup --config=../../tsup.dev.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@elementor/editor-controls": "4.1.0-727",
43
- "@elementor/editor-elements": "4.1.0-727",
44
- "@elementor/editor-mcp": "4.1.0-727",
45
- "@elementor/editor-props": "4.1.0-727",
46
- "@elementor/editor-responsive": "4.1.0-727",
47
- "@elementor/editor-ui": "4.1.0-727",
48
- "@elementor/editor-v1-adapters": "4.1.0-727",
42
+ "@elementor/editor-controls": "4.1.0-729",
43
+ "@elementor/editor-elements": "4.1.0-729",
44
+ "@elementor/editor-mcp": "4.1.0-729",
45
+ "@elementor/editor-props": "4.1.0-729",
46
+ "@elementor/editor-responsive": "4.1.0-729",
47
+ "@elementor/editor-ui": "4.1.0-729",
48
+ "@elementor/editor-v1-adapters": "4.1.0-729",
49
49
  "@elementor/icons": "^1.68.0",
50
- "@elementor/schema": "4.1.0-727",
51
- "@elementor/session": "4.1.0-727",
50
+ "@elementor/schema": "4.1.0-729",
51
+ "@elementor/session": "4.1.0-729",
52
52
  "@elementor/ui": "1.36.17",
53
- "@elementor/utils": "4.1.0-727",
54
- "@elementor/events": "4.1.0-727",
53
+ "@elementor/utils": "4.1.0-729",
54
+ "@elementor/events": "4.1.0-729",
55
55
  "@wordpress/i18n": "^5.13.0"
56
56
  },
57
57
  "peerDependencies": {
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import { useCallback, useRef } from 'react';
3
- import { type Unit, UnstableSizeField } from '@elementor/editor-controls';
3
+ import { SizeComponent, type Unit } from '@elementor/editor-controls';
4
4
  import { type SizePropValue } from '@elementor/editor-props';
5
5
 
6
6
  import { DEFAULT_TIME_UNIT, TIME_UNITS } from '../../configs/time-constants';
@@ -44,10 +44,10 @@ export function TimeFrameIndicator( {
44
44
  };
45
45
 
46
46
  return (
47
- <UnstableSizeField
47
+ <SizeComponent
48
48
  units={ TIME_UNITS }
49
49
  value={ sizeValue }
50
- onChange={ handleChange }
50
+ setValue={ handleChange }
51
51
  onBlur={ handleBlur }
52
52
  InputProps={ {
53
53
  inputProps: {