@kolkrabbi/kol-component 0.93.0 → 0.93.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.93.
|
|
3
|
+
"version": "0.93.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",
|
|
@@ -297,7 +297,12 @@ const ContentFilters = ({
|
|
|
297
297
|
* states"); the span here was the same defect that promoted it. */}
|
|
298
298
|
<h2 className="flex items-center gap-2">
|
|
299
299
|
{titleIcon && <IconFrame name={titleIcon} variant="secondary" size="md" />}
|
|
300
|
-
|
|
300
|
+
{/* `pr-4` by rule (ContentFiltersTitleGap, kol-website 2026-08-27): the
|
|
301
|
+
* divider sat 24px from the title's text edge but 32 from the
|
|
302
|
+
* icon glyphs (the frames carry 8px of air a side) and read pushed
|
|
303
|
+
* toward the title; 16px on the title side balances it. The seam
|
|
304
|
+
* `titleClassName` stays what it was. */}
|
|
305
|
+
<span className={`${titleClassName} pr-4`} style={titleUppercase ? { textTransform: 'uppercase', letterSpacing: 1 } : undefined}>{title}</span>
|
|
301
306
|
</h2>
|
|
302
307
|
<Divider variant="vertical" />
|
|
303
308
|
<div className="flex items-center gap-1">
|