@elementor/editor-controls 0.18.1 → 0.19.1
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/CHANGELOG.md +22 -0
- package/dist/index.js +14 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/controls/background-control/background-overlay/background-overlay-repeater-control.tsx +6 -1
- package/src/controls/gap-control.tsx +1 -1
- package/src/controls/linked-dimensions-control.tsx +1 -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": "0.
|
|
4
|
+
"version": "0.19.1",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Elementor Team",
|
|
7
7
|
"homepage": "https://elementor.com/",
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@elementor/editor-current-user": "0.3.0",
|
|
44
|
-
"@elementor/editor-elements": "0.6.
|
|
45
|
-
"@elementor/editor-props": "0.11.
|
|
44
|
+
"@elementor/editor-elements": "0.6.6",
|
|
45
|
+
"@elementor/editor-props": "0.11.1",
|
|
46
46
|
"@elementor/env": "0.3.5",
|
|
47
47
|
"@elementor/http": "0.1.4",
|
|
48
48
|
"@elementor/icons": "1.37.0",
|
|
49
49
|
"@elementor/query": "0.2.4",
|
|
50
50
|
"@elementor/session": "0.1.0",
|
|
51
|
-
"@elementor/ui": "1.
|
|
51
|
+
"@elementor/ui": "1.32.1",
|
|
52
52
|
"@elementor/utils": "0.4.0",
|
|
53
53
|
"@elementor/wp-media": "0.6.0",
|
|
54
54
|
"@tanstack/react-virtual": "3.13.3",
|
package/src/controls/background-control/background-overlay/background-overlay-repeater-control.tsx
CHANGED
|
@@ -109,7 +109,12 @@ const Content = () => {
|
|
|
109
109
|
return (
|
|
110
110
|
<Box sx={ { width: '100%' } }>
|
|
111
111
|
<Box sx={ { borderBottom: 1, borderColor: 'divider' } }>
|
|
112
|
-
<Tabs
|
|
112
|
+
<Tabs
|
|
113
|
+
size="small"
|
|
114
|
+
variant="fullWidth"
|
|
115
|
+
{ ...getTabsProps() }
|
|
116
|
+
aria-label={ __( 'Background Overlay', 'elementor' ) }
|
|
117
|
+
>
|
|
113
118
|
<Tab label={ __( 'Image', 'elementor' ) } { ...getTabProps( 'image' ) } />
|
|
114
119
|
<Tab label={ __( 'Gradient', 'elementor' ) } { ...getTabProps( 'gradient' ) } />
|
|
115
120
|
<Tab label={ __( 'Color', 'elementor' ) } { ...getTabProps( 'color' ) } />
|
|
@@ -21,7 +21,7 @@ export const GapControl = createControl( ( { label }: { label: string } ) => {
|
|
|
21
21
|
|
|
22
22
|
const onLinkToggle = () => {
|
|
23
23
|
if ( ! isLinked ) {
|
|
24
|
-
setSizeValue( directionValue?.column?.value );
|
|
24
|
+
setSizeValue( directionValue?.column?.value ?? null );
|
|
25
25
|
return;
|
|
26
26
|
}
|
|
27
27
|
|