@elementor/editor-canvas 3.35.0-445 → 3.35.0-447

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
@@ -709,10 +709,6 @@ function createPropsResolver({ transformers, schema: initialSchema, onPropResolv
709
709
  if (value.disabled === true) {
710
710
  return null;
711
711
  }
712
- value = (0, import_editor_props2.migratePropValue)(value, type);
713
- if (!(0, import_editor_props2.isTransformable)(value)) {
714
- return value;
715
- }
716
712
  let transformablePropType = type;
717
713
  if (type.kind === "union") {
718
714
  transformablePropType = type.prop_types[value.$$type];
package/dist/index.mjs CHANGED
@@ -630,8 +630,7 @@ import { getStylesSchema as getStylesSchema2 } from "@elementor/editor-styles";
630
630
 
631
631
  // src/renderers/create-props-resolver.ts
632
632
  import {
633
- isTransformable,
634
- migratePropValue
633
+ isTransformable
635
634
  } from "@elementor/editor-props";
636
635
 
637
636
  // src/renderers/multi-props.ts
@@ -679,10 +678,6 @@ function createPropsResolver({ transformers, schema: initialSchema, onPropResolv
679
678
  if (value.disabled === true) {
680
679
  return null;
681
680
  }
682
- value = migratePropValue(value, type);
683
- if (!isTransformable(value)) {
684
- return value;
685
- }
686
681
  let transformablePropType = type;
687
682
  if (type.kind === "union") {
688
683
  transformablePropType = type.prop_types[value.$$type];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@elementor/editor-canvas",
3
3
  "description": "Elementor Editor Canvas",
4
- "version": "3.35.0-445",
4
+ "version": "3.35.0-447",
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": "3.35.0-445",
41
- "@elementor/editor-controls": "3.35.0-445",
42
- "@elementor/editor-documents": "3.35.0-445",
43
- "@elementor/editor-elements": "3.35.0-445",
44
- "@elementor/editor-interactions": "3.35.0-445",
45
- "@elementor/editor-mcp": "3.35.0-445",
46
- "@elementor/editor-notifications": "3.35.0-445",
47
- "@elementor/editor-props": "3.35.0-445",
48
- "@elementor/editor-responsive": "3.35.0-445",
49
- "@elementor/editor-styles": "3.35.0-445",
50
- "@elementor/editor-styles-repository": "3.35.0-445",
51
- "@elementor/editor-ui": "3.35.0-445",
52
- "@elementor/editor-v1-adapters": "3.35.0-445",
53
- "@elementor/schema": "3.35.0-445",
54
- "@elementor/twing": "3.35.0-445",
40
+ "@elementor/editor": "3.35.0-447",
41
+ "@elementor/editor-controls": "3.35.0-447",
42
+ "@elementor/editor-documents": "3.35.0-447",
43
+ "@elementor/editor-elements": "3.35.0-447",
44
+ "@elementor/editor-interactions": "3.35.0-447",
45
+ "@elementor/editor-mcp": "3.35.0-447",
46
+ "@elementor/editor-notifications": "3.35.0-447",
47
+ "@elementor/editor-props": "3.35.0-447",
48
+ "@elementor/editor-responsive": "3.35.0-447",
49
+ "@elementor/editor-styles": "3.35.0-447",
50
+ "@elementor/editor-styles-repository": "3.35.0-447",
51
+ "@elementor/editor-ui": "3.35.0-447",
52
+ "@elementor/editor-v1-adapters": "3.35.0-447",
53
+ "@elementor/schema": "3.35.0-447",
54
+ "@elementor/twing": "3.35.0-447",
55
55
  "@elementor/ui": "1.36.17",
56
- "@elementor/utils": "3.35.0-445",
57
- "@elementor/wp-media": "3.35.0-445",
56
+ "@elementor/utils": "3.35.0-447",
57
+ "@elementor/wp-media": "3.35.0-447",
58
58
  "@floating-ui/react": "^0.27.5",
59
59
  "@wordpress/i18n": "^5.13.0"
60
60
  },
@@ -1,6 +1,5 @@
1
1
  import {
2
2
  isTransformable,
3
- migratePropValue,
4
3
  type PropKey,
5
4
  type Props,
6
5
  type PropsSchema,
@@ -81,12 +80,6 @@ export function createPropsResolver( { transformers, schema: initialSchema, onPr
81
80
  return null;
82
81
  }
83
82
 
84
- value = migratePropValue( value, type );
85
-
86
- if ( ! isTransformable( value ) ) {
87
- return value;
88
- }
89
-
90
83
  let transformablePropType = type;
91
84
 
92
85
  if ( type.kind === 'union' ) {