@elementor/editor-canvas 4.0.0-606 → 4.0.0-609

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.js CHANGED
@@ -228,7 +228,6 @@ The css string must follow standard CSS syntax, with properties and values separ
228
228
 
229
229
  // src/init.tsx
230
230
  var import_editor = require("@elementor/editor");
231
- var import_editor_interactions2 = require("@elementor/editor-interactions");
232
231
  var import_editor_mcp3 = require("@elementor/editor-mcp");
233
232
 
234
233
  // src/components/classes-rename.tsx
@@ -4364,7 +4363,6 @@ function init() {
4364
4363
  initViewReplacements();
4365
4364
  initLegacyViews();
4366
4365
  initSettingsTransformers();
4367
- (0, import_editor_interactions2.init)();
4368
4366
  (0, import_editor.injectIntoTop)({
4369
4367
  id: "elements-overlays",
4370
4368
  component: ElementsOverlays
package/dist/index.mjs CHANGED
@@ -173,7 +173,6 @@ The css string must follow standard CSS syntax, with properties and values separ
173
173
 
174
174
  // src/init.tsx
175
175
  import { injectIntoLogic, injectIntoTop } from "@elementor/editor";
176
- import { init as initInteractionsRepository } from "@elementor/editor-interactions";
177
176
  import { getMCPByDomain } from "@elementor/editor-mcp";
178
177
 
179
178
  // src/components/classes-rename.tsx
@@ -4367,7 +4366,6 @@ function init() {
4367
4366
  initViewReplacements();
4368
4367
  initLegacyViews();
4369
4368
  initSettingsTransformers();
4370
- initInteractionsRepository();
4371
4369
  injectIntoTop({
4372
4370
  id: "elements-overlays",
4373
4371
  component: ElementsOverlays
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@elementor/editor-canvas",
3
3
  "description": "Elementor Editor Canvas",
4
- "version": "4.0.0-606",
4
+ "version": "4.0.0-609",
5
5
  "private": false,
6
6
  "author": "Elementor Team",
7
7
  "homepage": "https://elementor.com/",
@@ -37,24 +37,24 @@
37
37
  "react-dom": "^18.3.1"
38
38
  },
39
39
  "dependencies": {
40
- "@elementor/editor": "4.0.0-606",
41
- "@elementor/editor-controls": "4.0.0-606",
42
- "@elementor/editor-documents": "4.0.0-606",
43
- "@elementor/editor-elements": "4.0.0-606",
44
- "@elementor/editor-interactions": "4.0.0-606",
45
- "@elementor/editor-mcp": "4.0.0-606",
46
- "@elementor/editor-notifications": "4.0.0-606",
47
- "@elementor/editor-props": "4.0.0-606",
48
- "@elementor/editor-responsive": "4.0.0-606",
49
- "@elementor/editor-styles": "4.0.0-606",
50
- "@elementor/editor-styles-repository": "4.0.0-606",
51
- "@elementor/editor-ui": "4.0.0-606",
52
- "@elementor/editor-v1-adapters": "4.0.0-606",
53
- "@elementor/schema": "4.0.0-606",
54
- "@elementor/twing": "4.0.0-606",
40
+ "@elementor/editor": "4.0.0-609",
41
+ "@elementor/editor-controls": "4.0.0-609",
42
+ "@elementor/editor-documents": "4.0.0-609",
43
+ "@elementor/editor-elements": "4.0.0-609",
44
+ "@elementor/editor-interactions": "4.0.0-609",
45
+ "@elementor/editor-mcp": "4.0.0-609",
46
+ "@elementor/editor-notifications": "4.0.0-609",
47
+ "@elementor/editor-props": "4.0.0-609",
48
+ "@elementor/editor-responsive": "4.0.0-609",
49
+ "@elementor/editor-styles": "4.0.0-609",
50
+ "@elementor/editor-styles-repository": "4.0.0-609",
51
+ "@elementor/editor-ui": "4.0.0-609",
52
+ "@elementor/editor-v1-adapters": "4.0.0-609",
53
+ "@elementor/schema": "4.0.0-609",
54
+ "@elementor/twing": "4.0.0-609",
55
55
  "@elementor/ui": "1.36.17",
56
- "@elementor/utils": "4.0.0-606",
57
- "@elementor/wp-media": "4.0.0-606",
56
+ "@elementor/utils": "4.0.0-609",
57
+ "@elementor/wp-media": "4.0.0-609",
58
58
  "@floating-ui/react": "^0.27.5",
59
59
  "@wordpress/i18n": "^5.13.0"
60
60
  },
package/src/init.tsx CHANGED
@@ -1,5 +1,4 @@
1
1
  import { injectIntoLogic, injectIntoTop } from '@elementor/editor';
2
- import { init as initInteractionsRepository } from '@elementor/editor-interactions';
3
2
  import { getMCPByDomain } from '@elementor/editor-mcp';
4
3
 
5
4
  import { ClassesRename } from './components/classes-rename';
@@ -32,8 +31,6 @@ export function init() {
32
31
 
33
32
  initSettingsTransformers();
34
33
 
35
- initInteractionsRepository();
36
-
37
34
  injectIntoTop( {
38
35
  id: 'elements-overlays',
39
36
  component: ElementsOverlays,