wabi 0.21.0 → 0.21.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -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: be8e8494a66f2f9480e9d31ec708402552232b81dc4ed1dab1e8877138cdca8a
|
|
4
|
+
data.tar.gz: c1b59806f25b547eef54fdb0251177a0c86ca4e0b4aa23e9de7b365bddf6828e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1d4fccdb13ead3f71f2aa0f9a6ddce8f7fca1db8c6cc41ee41923799aa1c111760fa0aa8d5e3582ccba41619a4a5a9a3f9eac562fdb6a25364f5bb644fb017d
|
|
7
|
+
data.tar.gz: a7f62afcc607589e2e89cae1a627df2c0fb54939758179a145379cddf402a993571aed8be45bcccf1f212606b48cdb51ead650762757f822e57ed9502cb5ad53
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
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.1 - 2026-06-04
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- **Collapsed-submenu flyout.** When the sidebar is collapsed to icons, hovering or
|
|
10
|
+
focusing a `SidebarMenuCollapsible` group pops its submenu out as a floating panel
|
|
11
|
+
anchored to the icon (auto-flipping to the other side near the viewport edge),
|
|
12
|
+
instead of hiding it. Expanded mode keeps the inline `<details>` behavior. A small
|
|
13
|
+
`wabi--sidebar-flyout` controller repositions the same submenu with `position:
|
|
14
|
+
fixed` (so it escapes the rail's clipping); hover/focus open, Escape / pointer-leave
|
|
15
|
+
close. Desktop only.
|
|
16
|
+
|
|
5
17
|
## 0.21.0 - 2026-06-04
|
|
6
18
|
|
|
7
19
|
### 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.1 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