wabi 0.16.0 → 0.17.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 +21 -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: 8416a5c3048f9fc12ef2ae6650ca8de97fac27996b3898428fbad227cec3eb0b
|
|
4
|
+
data.tar.gz: 9510d03bf27057412dd57fe31cd4166b79738fb0043627eb59f931291cc614b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a6d70ff3106cb54dd1684200e4db93edc65bf8672ae963367d759df85c8fcc7d63c6454967f941e29baa41d8fb9e77da33f6c70da50c950969971a4f5ce1671
|
|
7
|
+
data.tar.gz: 07fab2a18b37bcd6890c086d77a26b550691ee40286c303a5ddbc7fddcae6ebbe063baa88ceba981fbb2d7bf7c16a76c71b58e3a006175d41f2546ba9c3cf9b1
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
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.17.0 - 2026-06-03
|
|
6
|
+
|
|
7
|
+
A minimalist `:underline` style variant for Tabs, and the docs `ComponentPreview`
|
|
8
|
+
now dogfoods it.
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Tabs `:underline` variant.** `Tabs.new(variant: :underline)` renders a
|
|
13
|
+
full-width, minimalist tab strip: no track, a baseline border under the whole
|
|
14
|
+
list, and the active tab marked by a primary-colored bottom border + primary
|
|
15
|
+
bold text (with a transparent placeholder border so activation doesn't shift
|
|
16
|
+
layout). Joins `:standard` (default) and `:pill`; set once on the root and
|
|
17
|
+
propagated to `TabsList`/`TabsTrigger` via the `group-data-[variant=underline]`
|
|
18
|
+
marker.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- **`ComponentPreview` (docs) now renders the `:underline` Tabs variant** instead
|
|
23
|
+
of hand-applying the underline classes inline — dogfooding the new variant and
|
|
24
|
+
removing the duplicated styling. No visual change.
|
|
25
|
+
|
|
5
26
|
## 0.16.0 - 2026-06-03
|
|
6
27
|
|
|
7
28
|
Local Zag vendoring for offline / strict-CSP installs, plus a `:pill` style
|
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.
|
|
7
|
+
🎉 **Status:** v0.17.0 alpha — [available on RubyGems](https://rubygems.org/gems/wabi). 35 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