wabi 0.9.0 → 0.10.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +23 -0
- 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: 917f6232c33f67a4dfd39c41f80f22f04c238dce585f27ee262806804905611e
|
|
4
|
+
data.tar.gz: ee3d4df53acf6fa939dc3332ebd4963d07d9c007b75957e7dafd8350ea22f8c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '097aef93667322fd86b77f1eead744acd4bb55d33eb1812143e5a5c690262f67484cc9ed00b055e8fd748b9d7a1ce3dfa8101afbd1c1501fa10134209161b8e1'
|
|
7
|
+
data.tar.gz: b49022683f977aec56c959b97e206b27b892a34c606b2a44432a77d68e43836c9795e34010538af6d9bb01151c31d8a4efb52c1d02be30bbd4b7dabcfc09b437
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
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.10.0 - 2026-06-01
|
|
6
|
+
|
|
7
|
+
Toast group coordination — the last long-deferred carryover.
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- **Toast Sonner-style stacking.** Toasts now collapse into a peek stack
|
|
12
|
+
(`visible_count`, default 3) and expand to a full spaced list on group
|
|
13
|
+
hover/focus. Overflow toasts are kept and surface as front toasts dismiss
|
|
14
|
+
(their timers hold until visible). Hovering the group pauses every timer.
|
|
15
|
+
`Toaster.new(visible_count:, gap:)` configure the stack. Built on a custom
|
|
16
|
+
two-controller coordinator (`wabi--toaster` + `wabi--toast` via Stimulus
|
|
17
|
+
outlets) — **not** `@zag-js/toast`, whose imperative DOM-creation model looped
|
|
18
|
+
against Wabi's SSR + Turbo Stream append in v0.5.
|
|
19
|
+
- **Swipe-to-dismiss.** Drag a toast horizontally past a threshold to dismiss it.
|
|
20
|
+
|
|
21
|
+
### Breaking
|
|
22
|
+
|
|
23
|
+
- **Toast no longer bakes in a `translate-x` enter/exit transform.** The
|
|
24
|
+
slide/scale is now JS-driven inline styles; the Tailwind base fades via
|
|
25
|
+
opacity only. Apps that overrode the toast transform via `class:` should
|
|
26
|
+
remove `translate-x-*` overrides.
|
|
27
|
+
|
|
5
28
|
## 0.9.0 - 2026-05-31
|
|
6
29
|
|
|
7
30
|
DX + polish, plus a full fix of the vertical Slider.
|
data/lib/wabi/version.rb
CHANGED