@elementor/editor-components 3.35.0-406 → 3.35.0-407
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 +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +22 -22
- package/src/components/create-component-form/create-component-form.tsx +1 -1
- package/src/prevent-circular-nesting.ts +1 -1
- package/src/prevent-non-atomic-nesting.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elementor/editor-components",
|
|
3
3
|
"description": "Elementor editor components",
|
|
4
|
-
"version": "3.35.0-
|
|
4
|
+
"version": "3.35.0-407",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Elementor Team",
|
|
7
7
|
"homepage": "https://elementor.com/",
|
|
@@ -40,30 +40,30 @@
|
|
|
40
40
|
"dev": "tsup --config=../../tsup.dev.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@elementor/editor": "3.35.0-
|
|
44
|
-
"@elementor/editor-canvas": "3.35.0-
|
|
45
|
-
"@elementor/editor-controls": "3.35.0-
|
|
46
|
-
"@elementor/editor-documents": "3.35.0-
|
|
47
|
-
"@elementor/editor-editing-panel": "3.35.0-
|
|
48
|
-
"@elementor/editor-elements": "3.35.0-
|
|
49
|
-
"@elementor/editor-elements-panel": "3.35.0-
|
|
50
|
-
"@elementor/editor-mcp": "3.35.0-
|
|
51
|
-
"@elementor/editor-panels": "3.35.0-
|
|
52
|
-
"@elementor/editor-props": "3.35.0-
|
|
53
|
-
"@elementor/editor-styles-repository": "3.35.0-
|
|
54
|
-
"@elementor/editor-ui": "3.35.0-
|
|
55
|
-
"@elementor/editor-v1-adapters": "3.35.0-
|
|
56
|
-
"@elementor/http-client": "3.35.0-
|
|
43
|
+
"@elementor/editor": "3.35.0-407",
|
|
44
|
+
"@elementor/editor-canvas": "3.35.0-407",
|
|
45
|
+
"@elementor/editor-controls": "3.35.0-407",
|
|
46
|
+
"@elementor/editor-documents": "3.35.0-407",
|
|
47
|
+
"@elementor/editor-editing-panel": "3.35.0-407",
|
|
48
|
+
"@elementor/editor-elements": "3.35.0-407",
|
|
49
|
+
"@elementor/editor-elements-panel": "3.35.0-407",
|
|
50
|
+
"@elementor/editor-mcp": "3.35.0-407",
|
|
51
|
+
"@elementor/editor-panels": "3.35.0-407",
|
|
52
|
+
"@elementor/editor-props": "3.35.0-407",
|
|
53
|
+
"@elementor/editor-styles-repository": "3.35.0-407",
|
|
54
|
+
"@elementor/editor-ui": "3.35.0-407",
|
|
55
|
+
"@elementor/editor-v1-adapters": "3.35.0-407",
|
|
56
|
+
"@elementor/http-client": "3.35.0-407",
|
|
57
57
|
"@elementor/icons": "^1.63.0",
|
|
58
|
-
"@elementor/mixpanel": "3.35.0-
|
|
59
|
-
"@elementor/query": "3.35.0-
|
|
60
|
-
"@elementor/schema": "3.35.0-
|
|
61
|
-
"@elementor/store": "3.35.0-
|
|
58
|
+
"@elementor/mixpanel": "3.35.0-407",
|
|
59
|
+
"@elementor/query": "3.35.0-407",
|
|
60
|
+
"@elementor/schema": "3.35.0-407",
|
|
61
|
+
"@elementor/store": "3.35.0-407",
|
|
62
62
|
"@elementor/ui": "1.36.17",
|
|
63
|
-
"@elementor/utils": "3.35.0-
|
|
63
|
+
"@elementor/utils": "3.35.0-407",
|
|
64
64
|
"@wordpress/i18n": "^5.13.0",
|
|
65
|
-
"@elementor/editor-notifications": "3.35.0-
|
|
66
|
-
"@elementor/editor-current-user": "3.35.0-
|
|
65
|
+
"@elementor/editor-notifications": "3.35.0-407",
|
|
66
|
+
"@elementor/editor-current-user": "3.35.0-407"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"react": "^18.3.1",
|
|
@@ -54,7 +54,7 @@ export function CreateComponentForm() {
|
|
|
54
54
|
notify( {
|
|
55
55
|
type: 'default',
|
|
56
56
|
message: __(
|
|
57
|
-
'
|
|
57
|
+
'Components require atomic elements only. Remove widgets to create this component.',
|
|
58
58
|
'elementor'
|
|
59
59
|
),
|
|
60
60
|
id: 'non-atomic-element-save-blocked',
|
|
@@ -49,7 +49,7 @@ type StorageContent = {
|
|
|
49
49
|
|
|
50
50
|
const COMPONENT_CIRCULAR_NESTING_ALERT: NotificationData = {
|
|
51
51
|
type: 'default',
|
|
52
|
-
message: __( '
|
|
52
|
+
message: __( "Can't add this component - components that contain each other can't be nested.", 'elementor' ),
|
|
53
53
|
id: 'circular-component-nesting-blocked',
|
|
54
54
|
};
|
|
55
55
|
|
|
@@ -42,7 +42,7 @@ type StorageContent = {
|
|
|
42
42
|
|
|
43
43
|
const NON_ATOMIC_ELEMENT_ALERT: NotificationData = {
|
|
44
44
|
type: 'default',
|
|
45
|
-
message: __(
|
|
45
|
+
message: __( "This widget isn't compatible with components. Use atomic elements instead.", 'elementor' ),
|
|
46
46
|
id: 'non-atomic-element-blocked',
|
|
47
47
|
};
|
|
48
48
|
|