natura11y 5.1.0 → 5.1.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 +27 -0
- package/LICENSE +1 -1
- package/dist/natura11y.css +1 -1
- package/dist/natura11y.js +1 -1
- package/package.json +10 -2
- package/src/js/collapse.js +4 -3
- package/src/js/dropdown.js +16 -11
- package/src/js/utilities/focus.js +1 -1
- package/src/js/utilities/getCurrentBreakpoint.js +1 -1
- package/src/js/utilities/keyboardNavigation.js +1 -1
- package/src/js/utilities/overlay.js +7 -3
- package/src/scss/_accordion.scss +2 -1
- package/src/scss/_badge.scss +2 -0
- package/src/scss/_collapse.scss +4 -26
- package/src/scss/_grid.scss +4 -0
- package/src/scss/_lightbox.scss +4 -0
- package/src/scss/_navigation.scss +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,33 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [5.1.1] — 2026-06-29
|
|
8
|
+
|
|
9
|
+
### Package
|
|
10
|
+
|
|
11
|
+
- Added package exports for framework CSS, SCSS source entry points, and shared JavaScript utilities used by React integrations.
|
|
12
|
+
- Exposed utility imports for `focus`, `getCurrentBreakpoint`, and `keyboardNavigation`.
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
#### Collapse
|
|
17
|
+
- Improved collapse transition cleanup and Safari behavior.
|
|
18
|
+
|
|
19
|
+
#### Dropdown
|
|
20
|
+
- Fixed dropdown behavior and updated the HTML examples to match current menu patterns.
|
|
21
|
+
|
|
22
|
+
#### Grid
|
|
23
|
+
- Updated grid divider and sidebar behavior, including top alignment for sidebar items.
|
|
24
|
+
|
|
25
|
+
#### Lightbox
|
|
26
|
+
- Fixed thumbnail image sizing so media fills the thumbnail frame correctly.
|
|
27
|
+
|
|
28
|
+
### Examples
|
|
29
|
+
|
|
30
|
+
- Cleaned up framework HTML examples served by the development build.
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
7
34
|
## [5.1.0] — 2026-03-14
|
|
8
35
|
|
|
9
36
|
### New Components
|
package/LICENSE
CHANGED