@elementor/editor-canvas 3.35.0-482 → 3.35.0-484
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
|
@@ -1795,6 +1795,7 @@ var isInlineEditingAllowed = ({ rawValue, propTypeFromSchema }) => {
|
|
|
1795
1795
|
|
|
1796
1796
|
// src/legacy/replacements/inline-editing/inline-editing-utils.ts
|
|
1797
1797
|
var INLINE_EDITING_PROPERTY_PER_TYPE = {
|
|
1798
|
+
"e-form-label": "text",
|
|
1798
1799
|
"e-heading": "title",
|
|
1799
1800
|
"e-paragraph": "paragraph"
|
|
1800
1801
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -1766,6 +1766,7 @@ var isInlineEditingAllowed = ({ rawValue, propTypeFromSchema }) => {
|
|
|
1766
1766
|
|
|
1767
1767
|
// src/legacy/replacements/inline-editing/inline-editing-utils.ts
|
|
1768
1768
|
var INLINE_EDITING_PROPERTY_PER_TYPE = {
|
|
1769
|
+
"e-form-label": "text",
|
|
1769
1770
|
"e-heading": "title",
|
|
1770
1771
|
"e-paragraph": "paragraph"
|
|
1771
1772
|
};
|
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-
|
|
4
|
+
"version": "3.35.0-484",
|
|
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-
|
|
41
|
-
"@elementor/editor-controls": "3.35.0-
|
|
42
|
-
"@elementor/editor-documents": "3.35.0-
|
|
43
|
-
"@elementor/editor-elements": "3.35.0-
|
|
44
|
-
"@elementor/editor-interactions": "3.35.0-
|
|
45
|
-
"@elementor/editor-mcp": "3.35.0-
|
|
46
|
-
"@elementor/editor-notifications": "3.35.0-
|
|
47
|
-
"@elementor/editor-props": "3.35.0-
|
|
48
|
-
"@elementor/editor-responsive": "3.35.0-
|
|
49
|
-
"@elementor/editor-styles": "3.35.0-
|
|
50
|
-
"@elementor/editor-styles-repository": "3.35.0-
|
|
51
|
-
"@elementor/editor-ui": "3.35.0-
|
|
52
|
-
"@elementor/editor-v1-adapters": "3.35.0-
|
|
53
|
-
"@elementor/schema": "3.35.0-
|
|
54
|
-
"@elementor/twing": "3.35.0-
|
|
40
|
+
"@elementor/editor": "3.35.0-484",
|
|
41
|
+
"@elementor/editor-controls": "3.35.0-484",
|
|
42
|
+
"@elementor/editor-documents": "3.35.0-484",
|
|
43
|
+
"@elementor/editor-elements": "3.35.0-484",
|
|
44
|
+
"@elementor/editor-interactions": "3.35.0-484",
|
|
45
|
+
"@elementor/editor-mcp": "3.35.0-484",
|
|
46
|
+
"@elementor/editor-notifications": "3.35.0-484",
|
|
47
|
+
"@elementor/editor-props": "3.35.0-484",
|
|
48
|
+
"@elementor/editor-responsive": "3.35.0-484",
|
|
49
|
+
"@elementor/editor-styles": "3.35.0-484",
|
|
50
|
+
"@elementor/editor-styles-repository": "3.35.0-484",
|
|
51
|
+
"@elementor/editor-ui": "3.35.0-484",
|
|
52
|
+
"@elementor/editor-v1-adapters": "3.35.0-484",
|
|
53
|
+
"@elementor/schema": "3.35.0-484",
|
|
54
|
+
"@elementor/twing": "3.35.0-484",
|
|
55
55
|
"@elementor/ui": "1.36.17",
|
|
56
|
-
"@elementor/utils": "3.35.0-
|
|
57
|
-
"@elementor/wp-media": "3.35.0-
|
|
56
|
+
"@elementor/utils": "3.35.0-484",
|
|
57
|
+
"@elementor/wp-media": "3.35.0-484",
|
|
58
58
|
"@floating-ui/react": "^0.27.5",
|
|
59
59
|
"@wordpress/i18n": "^5.13.0"
|
|
60
60
|
},
|
|
@@ -3,6 +3,7 @@ import { type V1Element } from '@elementor/editor-elements';
|
|
|
3
3
|
import { type LegacyWindow } from '../../types';
|
|
4
4
|
|
|
5
5
|
export const INLINE_EDITING_PROPERTY_PER_TYPE: Record< string, string > = {
|
|
6
|
+
'e-form-label': 'text',
|
|
6
7
|
'e-heading': 'title',
|
|
7
8
|
'e-paragraph': 'paragraph',
|
|
8
9
|
};
|