@elementor/editor-controls 4.1.0-787 → 4.1.0-789
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 +288 -287
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +288 -287
- package/dist/index.mjs.map +1 -1
- package/package.json +15 -15
- package/src/controls/filter-control/drop-shadow/drop-shadow-item-label.tsx +2 -1
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-789",
|
|
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/events": "4.1.0-
|
|
51
|
-
"@elementor/http-client": "4.1.0-
|
|
43
|
+
"@elementor/editor-current-user": "4.1.0-789",
|
|
44
|
+
"@elementor/editor-elements": "4.1.0-789",
|
|
45
|
+
"@elementor/editor-props": "4.1.0-789",
|
|
46
|
+
"@elementor/editor-responsive": "4.1.0-789",
|
|
47
|
+
"@elementor/editor-ui": "4.1.0-789",
|
|
48
|
+
"@elementor/editor-v1-adapters": "4.1.0-789",
|
|
49
|
+
"@elementor/env": "4.1.0-789",
|
|
50
|
+
"@elementor/events": "4.1.0-789",
|
|
51
|
+
"@elementor/http-client": "4.1.0-789",
|
|
52
52
|
"@elementor/icons": "^1.68.0",
|
|
53
|
-
"@elementor/locations": "4.1.0-
|
|
54
|
-
"@elementor/query": "4.1.0-
|
|
55
|
-
"@elementor/session": "4.1.0-
|
|
53
|
+
"@elementor/locations": "4.1.0-789",
|
|
54
|
+
"@elementor/query": "4.1.0-789",
|
|
55
|
+
"@elementor/session": "4.1.0-789",
|
|
56
56
|
"@elementor/ui": "1.37.5",
|
|
57
|
-
"@elementor/utils": "4.1.0-
|
|
58
|
-
"@elementor/wp-media": "4.1.0-
|
|
57
|
+
"@elementor/utils": "4.1.0-789",
|
|
58
|
+
"@elementor/wp-media": "4.1.0-789",
|
|
59
59
|
"@monaco-editor/react": "^4.7.0",
|
|
60
60
|
"@tiptap/extension-bold": "^3.11.1",
|
|
61
61
|
"@tiptap/extension-document": "^3.11.1",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { type DropShadowFilterPropValue, type FilterItemPropValue } from '@elementor/editor-props';
|
|
3
3
|
import { Box } from '@elementor/ui';
|
|
4
|
+
import { __ } from '@wordpress/i18n';
|
|
4
5
|
|
|
5
6
|
import { CUSTOM_SIZE_LABEL } from '../../size-control';
|
|
6
7
|
|
|
@@ -16,7 +17,7 @@ export const DropShadowItemLabel = ( { value }: { value: FilterItemPropValue } )
|
|
|
16
17
|
return (
|
|
17
18
|
<Box component="span">
|
|
18
19
|
<Box component="span" style={ { textTransform: 'capitalize' } }>
|
|
19
|
-
Drop shadow:
|
|
20
|
+
{ __( 'Drop shadow:', 'elementor' ) }
|
|
20
21
|
</Box>
|
|
21
22
|
{ ` ${ labels.join( ' ' ) }` }
|
|
22
23
|
</Box>
|