@kolkrabbi/kol-theme 0.32.1 → 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.
@@ -263,30 +263,29 @@
263
263
  border-color: currentColor;
264
264
  }
265
265
 
266
- /* StatusChip tones — the record-surface status control (reference: Framer
267
- * CMS, 2026-08-09). Tint + ink ride the --ui-* ladder; the chip stays a Tag
268
- * underneath, so these only override color/fill. .kol-tag doubled for source-
269
- * order safety against the tag variants above. */
270
- .kol-tag.kol-status-chip { gap: var(--kol-spacing-1); }
271
- .kol-tag.kol-status-chip--success {
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 {
272
275
  color: var(--ui-success);
273
276
  background-color: color-mix(in srgb, var(--ui-success) 12%, transparent);
274
- border-color: transparent;
275
277
  }
276
- .kol-tag.kol-status-chip--warning {
278
+ .kol-status-chip--warning {
277
279
  color: var(--ui-warning);
278
280
  background-color: color-mix(in srgb, var(--ui-warning) 12%, transparent);
279
- border-color: transparent;
280
281
  }
281
- .kol-tag.kol-status-chip--error {
282
+ .kol-status-chip--error {
282
283
  color: var(--ui-error);
283
284
  background-color: color-mix(in srgb, var(--ui-error) 12%, transparent);
284
- border-color: transparent;
285
285
  }
286
- .kol-tag.kol-status-chip--info {
286
+ .kol-status-chip--info {
287
287
  color: var(--ui-info);
288
288
  background-color: color-mix(in srgb, var(--ui-info) 12%, transparent);
289
- border-color: transparent;
290
289
  }
291
290
 
292
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.1",
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",