@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/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-406",
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-406",
44
- "@elementor/editor-canvas": "3.35.0-406",
45
- "@elementor/editor-controls": "3.35.0-406",
46
- "@elementor/editor-documents": "3.35.0-406",
47
- "@elementor/editor-editing-panel": "3.35.0-406",
48
- "@elementor/editor-elements": "3.35.0-406",
49
- "@elementor/editor-elements-panel": "3.35.0-406",
50
- "@elementor/editor-mcp": "3.35.0-406",
51
- "@elementor/editor-panels": "3.35.0-406",
52
- "@elementor/editor-props": "3.35.0-406",
53
- "@elementor/editor-styles-repository": "3.35.0-406",
54
- "@elementor/editor-ui": "3.35.0-406",
55
- "@elementor/editor-v1-adapters": "3.35.0-406",
56
- "@elementor/http-client": "3.35.0-406",
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-406",
59
- "@elementor/query": "3.35.0-406",
60
- "@elementor/schema": "3.35.0-406",
61
- "@elementor/store": "3.35.0-406",
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-406",
63
+ "@elementor/utils": "3.35.0-407",
64
64
  "@wordpress/i18n": "^5.13.0",
65
- "@elementor/editor-notifications": "3.35.0-406",
66
- "@elementor/editor-current-user": "3.35.0-406"
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
- 'Cannot save as component - contains non-supported elements. Only atomic elements are allowed inside components.',
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: __( 'Cannot add this component here - it would create a circular reference.', 'elementor' ),
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: __( 'Cannot add this element here - only atomic elements are allowed inside components.', 'elementor' ),
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