@elementor/editor-ui 4.0.0-515 → 4.0.0-516
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 +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +2 -2
- package/src/components/introduction-modal.tsx +1 -0
package/dist/index.js
CHANGED
|
@@ -166,6 +166,7 @@ var IntroductionModal = ({ open, handleClose, title, children }) => {
|
|
|
166
166
|
size: "medium",
|
|
167
167
|
variant: "contained",
|
|
168
168
|
sx: { minWidth: "135px" },
|
|
169
|
+
"aria-label": (0, import_i18n.__)("Got it introduction", "elementor"),
|
|
169
170
|
onClick: () => handleClose(shouldShowAgain)
|
|
170
171
|
},
|
|
171
172
|
(0, import_i18n.__)("Got it", "elementor")
|
package/dist/index.mjs
CHANGED
|
@@ -107,6 +107,7 @@ var IntroductionModal = ({ open, handleClose, title, children }) => {
|
|
|
107
107
|
size: "medium",
|
|
108
108
|
variant: "contained",
|
|
109
109
|
sx: { minWidth: "135px" },
|
|
110
|
+
"aria-label": __("Got it introduction", "elementor"),
|
|
110
111
|
onClick: () => handleClose(shouldShowAgain)
|
|
111
112
|
},
|
|
112
113
|
__("Got it", "elementor")
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elementor/editor-ui",
|
|
3
3
|
"description": "Elementor Editor UI",
|
|
4
|
-
"version": "4.0.0-
|
|
4
|
+
"version": "4.0.0-516",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Elementor Team",
|
|
7
7
|
"homepage": "https://elementor.com/",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"react-dom": "^18.3.1"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@elementor/editor-v1-adapters": "4.0.0-
|
|
40
|
+
"@elementor/editor-v1-adapters": "4.0.0-516",
|
|
41
41
|
"@elementor/icons": "^1.63.0",
|
|
42
42
|
"@elementor/ui": "1.36.17",
|
|
43
43
|
"@tanstack/react-virtual": "^3.13.3",
|
|
@@ -48,6 +48,7 @@ export const IntroductionModal = ( { open, handleClose, title, children }: Intro
|
|
|
48
48
|
size={ 'medium' }
|
|
49
49
|
variant="contained"
|
|
50
50
|
sx={ { minWidth: '135px' } }
|
|
51
|
+
aria-label={ __( 'Got it introduction', 'elementor' ) }
|
|
51
52
|
onClick={ () => handleClose( shouldShowAgain ) }
|
|
52
53
|
>
|
|
53
54
|
{ __( 'Got it', 'elementor' ) }
|