@semcore/dropdown-menu 4.35.5 → 4.38.0-prerelease.0
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 +20 -0
- package/lib/cjs/DropdownMenu.js +449 -413
- package/lib/cjs/DropdownMenu.js.map +1 -1
- package/lib/cjs/DropdownMenuOld.js +682 -0
- package/lib/cjs/DropdownMenuOld.js.map +1 -0
- package/lib/cjs/index.d.js.map +1 -1
- package/lib/cjs/index.js +7 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/style/dropdown-menu-old.shadow.css +224 -0
- package/lib/cjs/style/dropdown-menu.shadow.css +24 -14
- package/lib/es6/DropdownMenu.js +453 -414
- package/lib/es6/DropdownMenu.js.map +1 -1
- package/lib/es6/DropdownMenuOld.js +683 -0
- package/lib/es6/DropdownMenuOld.js.map +1 -0
- package/lib/es6/index.d.js.map +1 -1
- package/lib/es6/index.js +1 -0
- package/lib/es6/index.js.map +1 -1
- package/lib/es6/style/dropdown-menu-old.shadow.css +224 -0
- package/lib/es6/style/dropdown-menu.shadow.css +24 -14
- package/lib/types/index.d.ts +43 -1
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).
|
|
4
4
|
|
|
5
|
+
## [4.38.0] - 2024-09-06
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- In combobox patterns users needed double click outside to unfocus the input.
|
|
10
|
+
|
|
11
|
+
## [4.37.0] - 2024-09-02
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Accessibility pattern `aria-activedescendant` to `row-in-tabindex`.
|
|
16
|
+
- Added possibility to add some actions for menu item (as submenu).
|
|
17
|
+
- Refactored Nesting menu.
|
|
18
|
+
|
|
19
|
+
## [4.36.0] - 2024-08-26
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Now DropdownMenu with `interaction="hover"` has `timeout={[0, 100]}` (0 for showing, 100 for hiding) by default.
|
|
24
|
+
|
|
5
25
|
## [4.35.5] - 2024-08-20
|
|
6
26
|
|
|
7
27
|
### Fixed
|