@semcore/dropdown-menu 4.47.0 → 16.0.0-prerelease.11
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 +3 -3
- package/lib/cjs/DropdownMenu.js +26 -28
- package/lib/cjs/DropdownMenu.js.map +1 -1
- package/lib/es6/DropdownMenu.js +26 -27
- package/lib/es6/DropdownMenu.js.map +1 -1
- package/lib/esm/DropdownMenu.mjs +384 -292
- package/lib/esm/index.mjs +2 -2
- package/lib/esm/translations/__intergalactic-dynamic-locales.mjs +30 -30
- package/lib/esm/translations/de.json.mjs +5 -4
- package/lib/esm/translations/en.json.mjs +2 -2
- package/lib/esm/translations/es.json.mjs +5 -4
- package/lib/esm/translations/fr.json.mjs +5 -4
- package/lib/esm/translations/it.json.mjs +5 -4
- package/lib/esm/translations/ja.json.mjs +5 -4
- package/lib/esm/translations/ko.json.mjs +5 -4
- package/lib/esm/translations/nl.json.mjs +5 -4
- package/lib/esm/translations/pl.json.mjs +5 -4
- package/lib/esm/translations/pt.json.mjs +5 -4
- package/lib/esm/translations/sv.json.mjs +5 -4
- package/lib/esm/translations/tr.json.mjs +5 -4
- package/lib/esm/translations/vi.json.mjs +5 -4
- package/lib/esm/translations/zh.json.mjs +5 -4
- package/package.json +11 -14
package/lib/esm/index.mjs
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
var
|
|
16
|
-
de
|
|
17
|
-
en
|
|
18
|
-
es
|
|
19
|
-
fr
|
|
20
|
-
it
|
|
21
|
-
ja
|
|
22
|
-
ko
|
|
23
|
-
nl
|
|
24
|
-
pt
|
|
25
|
-
tr
|
|
26
|
-
vi
|
|
27
|
-
zh
|
|
28
|
-
pl
|
|
29
|
-
sv
|
|
1
|
+
import de from "./de.json.mjs";
|
|
2
|
+
import en from "./en.json.mjs";
|
|
3
|
+
import es from "./es.json.mjs";
|
|
4
|
+
import fr from "./fr.json.mjs";
|
|
5
|
+
import it from "./it.json.mjs";
|
|
6
|
+
import ja from "./ja.json.mjs";
|
|
7
|
+
import ko from "./ko.json.mjs";
|
|
8
|
+
import nl from "./nl.json.mjs";
|
|
9
|
+
import pt from "./pt.json.mjs";
|
|
10
|
+
import tr from "./tr.json.mjs";
|
|
11
|
+
import vi from "./vi.json.mjs";
|
|
12
|
+
import zh from "./zh.json.mjs";
|
|
13
|
+
import pl from "./pl.json.mjs";
|
|
14
|
+
import sv from "./sv.json.mjs";
|
|
15
|
+
var localizedMessages = {
|
|
16
|
+
de,
|
|
17
|
+
en,
|
|
18
|
+
es,
|
|
19
|
+
fr,
|
|
20
|
+
it,
|
|
21
|
+
ja,
|
|
22
|
+
ko,
|
|
23
|
+
nl,
|
|
24
|
+
pt,
|
|
25
|
+
tr,
|
|
26
|
+
vi,
|
|
27
|
+
zh,
|
|
28
|
+
pl,
|
|
29
|
+
sv
|
|
30
30
|
};
|
|
31
31
|
export {
|
|
32
|
-
|
|
32
|
+
localizedMessages
|
|
33
33
|
};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
1
|
+
const triggerHint = "Drücken Sie Tab, um zum Popover zu gehen";
|
|
2
|
+
const de = {
|
|
3
|
+
triggerHint
|
|
3
4
|
};
|
|
4
5
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
de as default,
|
|
7
|
+
triggerHint
|
|
7
8
|
};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
1
|
+
const triggerHint = "Appuyez sur la touche Tab pour accéder au popover";
|
|
2
|
+
const fr = {
|
|
3
|
+
triggerHint
|
|
3
4
|
};
|
|
4
5
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
fr as default,
|
|
7
|
+
triggerHint
|
|
7
8
|
};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
const
|
|
2
|
-
|
|
1
|
+
const triggerHint = "Naciśnij Tab, aby przejść do okienka popover";
|
|
2
|
+
const pl = {
|
|
3
|
+
triggerHint
|
|
3
4
|
};
|
|
4
5
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
pl as default,
|
|
7
|
+
triggerHint
|
|
7
8
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/dropdown-menu",
|
|
3
3
|
"description": "Semrush DropdownMenu Component",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "16.0.0-prerelease.11",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/es6/index.js",
|
|
7
7
|
"typings": "lib/types/index.d.ts",
|
|
@@ -14,20 +14,17 @@
|
|
|
14
14
|
"types": "./lib/types/index.d.ts"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@semcore/button": "
|
|
18
|
-
"@semcore/dropdown": "
|
|
19
|
-
"@semcore/
|
|
20
|
-
"@semcore/
|
|
21
|
-
"@semcore/
|
|
22
|
-
"@semcore/
|
|
23
|
-
"@semcore/
|
|
24
|
-
"@semcore/popper": "5.46.1",
|
|
17
|
+
"@semcore/button": "16.0.0-prerelease.11",
|
|
18
|
+
"@semcore/dropdown": "16.0.0-prerelease.11",
|
|
19
|
+
"@semcore/icon": "16.0.0-prerelease.11",
|
|
20
|
+
"@semcore/typography": "16.0.0-prerelease.11",
|
|
21
|
+
"@semcore/popper": "16.0.0-prerelease.11",
|
|
22
|
+
"@semcore/flex-box": "16.0.0-prerelease.11",
|
|
23
|
+
"@semcore/scroll-area": "16.0.0-prerelease.11",
|
|
25
24
|
"classnames": "2.2.6"
|
|
26
25
|
},
|
|
27
26
|
"peerDependencies": {
|
|
28
|
-
"@semcore/
|
|
29
|
-
"react": "16.8 - 18",
|
|
30
|
-
"react-dom": "16.8 - 18"
|
|
27
|
+
"@semcore/base-components": "^16.0.0-prerelease.11"
|
|
31
28
|
},
|
|
32
29
|
"repository": {
|
|
33
30
|
"type": "git",
|
|
@@ -39,8 +36,8 @@
|
|
|
39
36
|
"@types/classnames": "2.2.6",
|
|
40
37
|
"@semcore/testing-utils": "1.0.0",
|
|
41
38
|
"@semcore/base-trigger": "4.26.1",
|
|
42
|
-
"@semcore/button": "
|
|
43
|
-
"@semcore/icon": "
|
|
39
|
+
"@semcore/button": "16.0.0-prerelease.11",
|
|
40
|
+
"@semcore/icon": "16.0.0-prerelease.11"
|
|
44
41
|
},
|
|
45
42
|
"scripts": {
|
|
46
43
|
"build": "pnpm semcore-builder --source=js && pnpm vite build"
|