@kolkrabbi/kol-theme 0.32.0 → 0.32.2
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.
|
@@ -221,6 +221,12 @@
|
|
|
221
221
|
letter-spacing: 0.04em;
|
|
222
222
|
}
|
|
223
223
|
|
|
224
|
+
/* DATA CHIPS RENDER VERBATIM (2026-08-09). The uppercase above exists for
|
|
225
|
+
* LABEL strings with no authoring site (frontmatter tags). A filename is
|
|
226
|
+
* DATA — transforming it misquotes it (certificate.pdf ≠ CERTIFICATE.PDF).
|
|
227
|
+
* FieldRow's file token wears this; any chip carrying user data should. */
|
|
228
|
+
.kol-tag.kol-tag--data { text-transform: none; letter-spacing: normal; }
|
|
229
|
+
|
|
224
230
|
/* PADDING ONLY. Type is the kol-helper-* ramp, applied at the call site
|
|
225
231
|
* (Tag.jsx) — these rules used to hardcode font-size + font-weight and set no
|
|
226
232
|
* line-height, so a 10px chip inherited the body's ~1.5 and stood 22px tall
|
|
@@ -257,30 +263,29 @@
|
|
|
257
263
|
border-color: currentColor;
|
|
258
264
|
}
|
|
259
265
|
|
|
260
|
-
/* StatusChip
|
|
261
|
-
*
|
|
262
|
-
*
|
|
263
|
-
*
|
|
264
|
-
.kol-
|
|
265
|
-
|
|
266
|
+
/* StatusChip — the record-surface status control (reference: Framer CMS,
|
|
267
|
+
* 2026-08-09; rebuilt off Tag onto the Dropdown-sm metrics the same day).
|
|
268
|
+
* Tint + ink ride the --ui-* ladder; box/type live in the JSX (kol-btn-sm
|
|
269
|
+
* values + mono-12). No tone → the neutral chip. */
|
|
270
|
+
.kol-status-chip {
|
|
271
|
+
color: var(--kol-surface-on-primary);
|
|
272
|
+
background-color: color-mix(in srgb, var(--kol-surface-on-primary) 8%, transparent);
|
|
273
|
+
}
|
|
274
|
+
.kol-status-chip--success {
|
|
266
275
|
color: var(--ui-success);
|
|
267
276
|
background-color: color-mix(in srgb, var(--ui-success) 12%, transparent);
|
|
268
|
-
border-color: transparent;
|
|
269
277
|
}
|
|
270
|
-
.kol-
|
|
278
|
+
.kol-status-chip--warning {
|
|
271
279
|
color: var(--ui-warning);
|
|
272
280
|
background-color: color-mix(in srgb, var(--ui-warning) 12%, transparent);
|
|
273
|
-
border-color: transparent;
|
|
274
281
|
}
|
|
275
|
-
.kol-
|
|
282
|
+
.kol-status-chip--error {
|
|
276
283
|
color: var(--ui-error);
|
|
277
284
|
background-color: color-mix(in srgb, var(--ui-error) 12%, transparent);
|
|
278
|
-
border-color: transparent;
|
|
279
285
|
}
|
|
280
|
-
.kol-
|
|
286
|
+
.kol-status-chip--info {
|
|
281
287
|
color: var(--ui-info);
|
|
282
288
|
background-color: color-mix(in srgb, var(--ui-info) 12%, transparent);
|
|
283
|
-
border-color: transparent;
|
|
284
289
|
}
|
|
285
290
|
|
|
286
291
|
/* inverse — the flipped chip. Mirrors .pill-inverse. */
|
|
@@ -180,6 +180,11 @@
|
|
|
180
180
|
.kol-table-wrapper.kol-table--simple { border: none; border-radius: 0; }
|
|
181
181
|
.kol-table-wrapper.kol-table--simple .kol-table-thead { background: none; border-bottom: 1px solid var(--kol-fg-12); }
|
|
182
182
|
.kol-table-wrapper.kol-table--simple .kol-table-row { border-bottom: 1px solid var(--kol-fg-08); }
|
|
183
|
+
/* compact — record-surface density (2026-08-09): tighter cell box for the
|
|
184
|
+
* RecordManager table; the reference's rows sit near half the default. */
|
|
185
|
+
.kol-table-wrapper.kol-table--compact .kol-table th,
|
|
186
|
+
.kol-table-wrapper.kol-table--compact .kol-table td { padding: 0.5rem 0.75rem; }
|
|
187
|
+
|
|
183
188
|
.kol-table-wrapper.kol-table--simple .kol-table th,
|
|
184
189
|
.kol-table-wrapper.kol-table--simple .kol-table td { border-right: none; }
|
|
185
190
|
.kol-table-wrapper.kol-table--simple .kol-table th:first-child,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kolkrabbi/kol-theme",
|
|
3
|
-
"version": "0.32.
|
|
3
|
+
"version": "0.32.2",
|
|
4
4
|
"description": "KOL (Kolkrabbi) design-system tokens + base CSS — brand-neutral. The canonical token/cascade layer every other KOL package and consumer builds on.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|