@kolkrabbi/kol-component 0.44.0 → 0.44.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-component",
|
|
3
|
-
"version": "0.44.
|
|
3
|
+
"version": "0.44.1",
|
|
4
4
|
"description": "KOL design-system components — atoms through organisms, emitting canonical kol-* classes. Pairs with @kolkrabbi/kol-theme for styling.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -138,7 +138,14 @@ const ContentFilters = ({
|
|
|
138
138
|
* uppercase these themselves. */
|
|
139
139
|
const renderFilterGroup = (group) => (
|
|
140
140
|
<div key={group.key} className="flex flex-col gap-3">
|
|
141
|
-
|
|
141
|
+
{/* The group label wears the layout strip's exact text treatment —
|
|
142
|
+
* `kol-helper-12` at 1px tracking — so TAGS / TYPES and LIST / GRID read
|
|
143
|
+
* as one family across the row (user ruling 2026-08-15: "LIST GRID text
|
|
144
|
+
* has style, that style also on TAGS and any other filter category").
|
|
145
|
+
* Rest ink, not active: the label is a heading, not a state. */}
|
|
146
|
+
<h4 className="kol-helper-12 text-fg-32" style={{ letterSpacing: 1 }}>
|
|
147
|
+
{group.label}
|
|
148
|
+
</h4>
|
|
142
149
|
<div className="flex flex-wrap gap-2">
|
|
143
150
|
{group.values.map((value) => (
|
|
144
151
|
<Tag
|