@elementor/editor-controls 3.33.0-292 → 3.33.0-294

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@elementor/editor-controls",
3
3
  "description": "This package contains the controls model and utils for the Elementor editor",
4
- "version": "3.33.0-292",
4
+ "version": "3.33.0-294",
5
5
  "private": false,
6
6
  "author": "Elementor Team",
7
7
  "homepage": "https://elementor.com/",
@@ -40,22 +40,22 @@
40
40
  "dev": "tsup --config=../../tsup.dev.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@elementor/editor-current-user": "3.33.0-292",
44
- "@elementor/editor-elements": "3.33.0-292",
45
- "@elementor/editor-props": "3.33.0-292",
46
- "@elementor/editor-responsive": "3.33.0-292",
47
- "@elementor/editor-ui": "3.33.0-292",
48
- "@elementor/editor-v1-adapters": "3.33.0-292",
49
- "@elementor/env": "3.33.0-292",
50
- "@elementor/http-client": "3.33.0-292",
43
+ "@elementor/editor-current-user": "3.33.0-294",
44
+ "@elementor/editor-elements": "3.33.0-294",
45
+ "@elementor/editor-props": "3.33.0-294",
46
+ "@elementor/editor-responsive": "3.33.0-294",
47
+ "@elementor/editor-ui": "3.33.0-294",
48
+ "@elementor/editor-v1-adapters": "3.33.0-294",
49
+ "@elementor/env": "3.33.0-294",
50
+ "@elementor/http-client": "3.33.0-294",
51
51
  "@elementor/icons": "^1.61.0",
52
- "@elementor/locations": "3.33.0-292",
53
- "@elementor/mixpanel": "3.33.0-292",
54
- "@elementor/query": "3.33.0-292",
55
- "@elementor/session": "3.33.0-292",
52
+ "@elementor/locations": "3.33.0-294",
53
+ "@elementor/mixpanel": "3.33.0-294",
54
+ "@elementor/query": "3.33.0-294",
55
+ "@elementor/session": "3.33.0-294",
56
56
  "@elementor/ui": "1.36.17",
57
- "@elementor/utils": "3.33.0-292",
58
- "@elementor/wp-media": "3.33.0-292",
57
+ "@elementor/utils": "3.33.0-294",
58
+ "@elementor/wp-media": "3.33.0-294",
59
59
  "@wordpress/i18n": "^5.13.0",
60
60
  "@monaco-editor/react": "^4.7.0",
61
61
  "dayjs": "^1.11.18",
@@ -369,7 +369,6 @@ const usePopover = ( openOnMount: boolean, onOpen: () => void ) => {
369
369
  popoverState.open( ref );
370
370
  onOpen?.();
371
371
  }
372
- // eslint-disable-next-line react-compiler/react-compiler
373
372
  // eslint-disable-next-line react-hooks/exhaustive-deps
374
373
  }, [ ref ] );
375
374
 
@@ -37,7 +37,6 @@ export const useSyncExternalState = < TValue, >( {
37
37
  useEffect( () => {
38
38
  setInternal( ( prevInternal ) => toInternal( external, prevInternal ) );
39
39
 
40
- // eslint-disable-next-line react-compiler/react-compiler
41
40
  // eslint-disable-next-line react-hooks/exhaustive-deps
42
41
  }, [ external ] );
43
42