@elementor/editor-controls 4.1.0-708 → 4.1.0-710
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 +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +15 -15
- package/src/controls/email-form-action-control.tsx +4 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elementor/editor-controls",
|
|
3
3
|
"description": "This package contains the controls model and utils for the Elementor editor",
|
|
4
|
-
"version": "4.1.0-
|
|
4
|
+
"version": "4.1.0-710",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Elementor Team",
|
|
7
7
|
"homepage": "https://elementor.com/",
|
|
@@ -40,22 +40,22 @@
|
|
|
40
40
|
"dev": "tsup --config=../../tsup.dev.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@elementor/editor-current-user": "4.1.0-
|
|
44
|
-
"@elementor/editor-elements": "4.1.0-
|
|
45
|
-
"@elementor/editor-props": "4.1.0-
|
|
46
|
-
"@elementor/editor-responsive": "4.1.0-
|
|
47
|
-
"@elementor/editor-ui": "4.1.0-
|
|
48
|
-
"@elementor/editor-v1-adapters": "4.1.0-
|
|
49
|
-
"@elementor/env": "4.1.0-
|
|
50
|
-
"@elementor/http-client": "4.1.0-
|
|
43
|
+
"@elementor/editor-current-user": "4.1.0-710",
|
|
44
|
+
"@elementor/editor-elements": "4.1.0-710",
|
|
45
|
+
"@elementor/editor-props": "4.1.0-710",
|
|
46
|
+
"@elementor/editor-responsive": "4.1.0-710",
|
|
47
|
+
"@elementor/editor-ui": "4.1.0-710",
|
|
48
|
+
"@elementor/editor-v1-adapters": "4.1.0-710",
|
|
49
|
+
"@elementor/env": "4.1.0-710",
|
|
50
|
+
"@elementor/http-client": "4.1.0-710",
|
|
51
51
|
"@elementor/icons": "^1.68.0",
|
|
52
|
-
"@elementor/locations": "4.1.0-
|
|
53
|
-
"@elementor/events": "4.1.0-
|
|
54
|
-
"@elementor/query": "4.1.0-
|
|
55
|
-
"@elementor/session": "4.1.0-
|
|
52
|
+
"@elementor/locations": "4.1.0-710",
|
|
53
|
+
"@elementor/events": "4.1.0-710",
|
|
54
|
+
"@elementor/query": "4.1.0-710",
|
|
55
|
+
"@elementor/session": "4.1.0-710",
|
|
56
56
|
"@elementor/ui": "1.36.17",
|
|
57
|
-
"@elementor/utils": "4.1.0-
|
|
58
|
-
"@elementor/wp-media": "4.1.0-
|
|
57
|
+
"@elementor/utils": "4.1.0-710",
|
|
58
|
+
"@elementor/wp-media": "4.1.0-710",
|
|
59
59
|
"@wordpress/i18n": "^5.13.0",
|
|
60
60
|
"@monaco-editor/react": "^4.7.0",
|
|
61
61
|
"dayjs": "^1.11.18",
|
|
@@ -29,7 +29,7 @@ const EmailField = ( { bind, label, placeholder }: { bind: string; label: string
|
|
|
29
29
|
const SendToField = () => (
|
|
30
30
|
<EmailField
|
|
31
31
|
bind="to"
|
|
32
|
-
label={ __( 'Send
|
|
32
|
+
label={ __( 'Send to', 'elementor' ) }
|
|
33
33
|
placeholder={ __( 'Where should we send new submissions?', 'elementor' ) }
|
|
34
34
|
/>
|
|
35
35
|
);
|
|
@@ -37,7 +37,7 @@ const SendToField = () => (
|
|
|
37
37
|
const SubjectField = () => (
|
|
38
38
|
<EmailField
|
|
39
39
|
bind="subject"
|
|
40
|
-
label={ __( 'Email
|
|
40
|
+
label={ __( 'Email subject', 'elementor' ) }
|
|
41
41
|
placeholder={ __( 'New form submission', 'elementor' ) }
|
|
42
42
|
/>
|
|
43
43
|
);
|
|
@@ -64,7 +64,7 @@ const FromEmailField = () => (
|
|
|
64
64
|
<EmailField
|
|
65
65
|
bind="from"
|
|
66
66
|
label={ __( 'From email', 'elementor' ) }
|
|
67
|
-
placeholder={ __( 'What email
|
|
67
|
+
placeholder={ __( 'What email should appear as the sender?', 'elementor' ) }
|
|
68
68
|
/>
|
|
69
69
|
);
|
|
70
70
|
|
|
@@ -85,7 +85,7 @@ const BccField = () => <EmailField bind="bcc" label={ __( 'Bcc', 'elementor' ) }
|
|
|
85
85
|
const MetaDataField = () => (
|
|
86
86
|
<PropKeyProvider bind="meta-data">
|
|
87
87
|
<Stack gap={ 0.5 }>
|
|
88
|
-
<ControlLabel>{ __( '
|
|
88
|
+
<ControlLabel>{ __( 'Metadata', 'elementor' ) }</ControlLabel>
|
|
89
89
|
<ChipsControl
|
|
90
90
|
options={ [
|
|
91
91
|
{ label: __( 'Date', 'elementor' ), value: 'date' },
|