natura11y 5.0.0 → 5.0.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 +15 -0
- package/dist/natura11y.css +1 -1
- package/package.json +1 -1
- package/src/scss/_button.scss +2 -0
- package/src/scss/_collapse.scss +11 -8
- package/src/scss/_flyout.scss +4 -0
- package/src/scss/_main-menu.scss +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [5.0.1] — 2026-03-10
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
#### Collapse
|
|
12
|
+
- Scoped breakpoint override from `.shown` to `.collapse.shown` — the unscoped rule was overriding `.shown` on unrelated components (e.g. `modal--scroll-all` lost its `overflow-y: scroll` behavior)
|
|
13
|
+
|
|
14
|
+
#### Flyout
|
|
15
|
+
- Added `user-select: none` to `.flyout :is(a, button)` — prevents browser text-selection artifacts on flyout links and controls during rapid open/close interactions
|
|
16
|
+
|
|
17
|
+
#### Button
|
|
18
|
+
- Added `user-select: none` to `.button` — prevents accidental text selection on interactive button controls
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
7
22
|
## [5.0.0] — 2026-03-09
|
|
8
23
|
|
|
9
24
|
### New Components
|