wabi 0.21.2 → 0.21.3
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/README.md +1 -1
- data/lib/wabi/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ad486ae425db1fa768c4b0c275df3261568bf25586ed54b1f1c8cdd61b21e411
|
|
4
|
+
data.tar.gz: a5971baf69614665214b1fb7b49e980db74bc710bbba3196c5391630ed29d7b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3e88c880e6ad8d907c8a3f90069e3801e4f58292e8a004b62179baa1c9359f3975451190d6371e9c48b90a7b9ef2d2cef72bc5de8abd46ffa8c736888c70dee
|
|
7
|
+
data.tar.gz: ae515fdef1bc269a21f13a7cbf059ff373d0381af6ca45562ac0dd2d5ad02f7385c1c8634101aac8b19a6d5e7914f44edfac6255bb8121100b3662984e090223
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Wabi land here. Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
+
## 0.21.3 - 2026-06-05
|
|
6
|
+
|
|
7
|
+
### Accessibility
|
|
8
|
+
|
|
9
|
+
- **`SidebarTrigger` now announces state.** It registers as a `wabi--sidebar`
|
|
10
|
+
controller target, and the controller reflects `aria-expanded` (expanded vs.
|
|
11
|
+
collapsed on desktop, off-canvas open vs. closed on mobile) and points
|
|
12
|
+
`aria-controls` at the sidebar panel (which is given a stable id).
|
|
13
|
+
- **Mobile panel is a proper modal.** When the sidebar opens off-canvas on mobile
|
|
14
|
+
it becomes `role="dialog"` with `aria-modal="true"` (cleared on close); the panel
|
|
15
|
+
also carries a default `aria-label` ("Sidebar"), overridable via `aria-label:`.
|
|
16
|
+
- **`⌘/Ctrl+B` is scoped.** The toggle shortcut is now ignored while focus is in an
|
|
17
|
+
`input`, `textarea`, `select`, or `contenteditable` element, so it no longer
|
|
18
|
+
collides with editors' bold shortcut.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- **Docs:** the sidebar page now shows the shell variants (floating / inset)
|
|
23
|
+
directly under the main example, matching the other component pages.
|
|
24
|
+
|
|
5
25
|
## 0.21.2 - 2026-06-04
|
|
6
26
|
|
|
7
27
|
### Added
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Wabi is an open-source UI component library for **Ruby on Rails 8**, built on **Phlex + Tailwind 4 + Stimulus + Hotwire**. Inspired by shadcn/ui, components are *copied* into your app — you own the code, customize freely, no upstream API to drift away from.
|
|
6
6
|
|
|
7
|
-
🎉 **Status:** v0.21.
|
|
7
|
+
🎉 **Status:** v0.21.3 alpha — [available on RubyGems](https://rubygems.org/gems/wabi). 36 components, 8 theme palettes, WCAG-AA targeted, live docs + registry at [wabi-docs.onrender.com](https://wabi-docs.onrender.com).
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
data/lib/wabi/version.rb
CHANGED