@kolkrabbi/kol-component 0.63.0 → 0.64.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-component",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.64.0",
|
|
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",
|
|
@@ -288,9 +288,11 @@ const ContentFilters = ({
|
|
|
288
288
|
*
|
|
289
289
|
* `nav` rests at oq-64 and lights to full ink when the panel is
|
|
290
290
|
* open, so the toggle finally SHOWS that it is on. */}
|
|
291
|
-
{/*
|
|
292
|
-
*
|
|
293
|
-
*
|
|
291
|
+
{/* 16 GLYPH IN A 32 BOX — the house's quiet-control pairing (user
|
|
292
|
+
* ruling 2026-08-15). `.kol-copy-btn` is exactly this: an 8px pad
|
|
293
|
+
* around a `sm` 16px glyph, giving a 32 box. A 20 glyph fills a 32
|
|
294
|
+
* square far harder, which is why this row read too intense. The
|
|
295
|
+
* square stays md; only the glyph steps down. */}
|
|
294
296
|
<IconFrame
|
|
295
297
|
name="filter"
|
|
296
298
|
/* `nav` ALWAYS — no container. The open state is the panel
|
|
@@ -299,6 +301,7 @@ const ContentFilters = ({
|
|
|
299
301
|
* has none. */
|
|
300
302
|
variant="nav"
|
|
301
303
|
size="md"
|
|
304
|
+
iconSize={16}
|
|
302
305
|
onClick={() => setIsExpanded(!isExpanded)}
|
|
303
306
|
aria-label="Toggle filters"
|
|
304
307
|
/>
|
|
@@ -325,6 +328,9 @@ const ContentFilters = ({
|
|
|
325
328
|
* The organism's own field never had one. */
|
|
326
329
|
placeholder=""
|
|
327
330
|
size="md"
|
|
331
|
+
/* 16 in the 32 box, matching the filter beside it and the copy
|
|
332
|
+
* button everywhere else. */
|
|
333
|
+
iconSize={16}
|
|
328
334
|
/* a rung under the 32 square: this field sits beside two BARE
|
|
329
335
|
* glyphs, and at the full square it read as a chunky input. */
|
|
330
336
|
fieldHeight={28}
|