klun-ui 0.1.21 → 0.1.23

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/CHANGELOG.md CHANGED
@@ -5,6 +5,29 @@ All notable changes to **klun-ui** are documented here. The format follows
5
5
  [Semantic Versioning](https://semver.org/) (pre-1.0: minor/patch bumps may carry
6
6
  small breaking changes).
7
7
 
8
+ ## [0.1.23] — 2026-07-16
9
+
10
+ ### Fixed
11
+ - **Dark theme — soft dividers were invisible.** In dark mode the token
12
+ `--klun-stroke-soft-200` resolved to `--klun-800`, the **same value as the page
13
+ background** `--klun-bg-weak-50`, so every "soft" border/divider (table cell
14
+ gridlines, card/modal/tabs frames, list separators — anything using the default
15
+ divider token) blended into the background and disappeared. Lifted the dark
16
+ value to `--klun-600` so soft dividers are clearly visible on both the page
17
+ background (`--klun-800`) and elevated surfaces (`--klun-bg-white-0` =
18
+ `--klun-950`), matching the crispness of the light theme's grey divider. Light
19
+ theme is unchanged. Affects every component that draws a soft divider; no
20
+ per-component or per-app override is needed anymore.
21
+
22
+ ## [0.1.22] — 2026-07-13
23
+
24
+ ### Changed
25
+ - **`Markdown` — polished GFM tables.** Tables now read with real structure in
26
+ both themes: a stronger outer frame over lighter inner gridlines, a tinted
27
+ header with an emphasized bottom rule, and zebra-striped body rows. Row
28
+ **hover is a primary (accent) tint with a leading accent bar** — a real
29
+ highlight that no longer blends into the gray zebra striping.
30
+
8
31
  ## [0.1.21] — 2026-07-13
9
32
 
10
33
  ### Added
package/dist/styles.css CHANGED
@@ -565,7 +565,7 @@
565
565
  --klun-state-white-dark: var(--klun-teal-400);
566
566
  --klun-static-static-black: var(--klun-950);
567
567
  --klun-static-static-white: var(--klun-0);
568
- --klun-stroke-soft-200: var(--klun-800);
568
+ --klun-stroke-soft-200: var(--klun-600);
569
569
  --klun-stroke-strong-950: var(--klun-0);
570
570
  --klun-stroke-sub-300: var(--klun-600);
571
571
  --klun-stroke-white-0: var(--klun-950);
@@ -3352,29 +3352,46 @@ body {
3352
3352
  color: var(--klun-text-strong-950);
3353
3353
  }
3354
3354
  .klun-md-tablewrap {
3355
- margin: 0 0 8px;
3355
+ margin: 4px 0 12px;
3356
3356
  overflow-x: auto;
3357
3357
  }
3358
3358
  .klun-md-table {
3359
3359
  border-collapse: collapse;
3360
3360
  width: 100%;
3361
3361
  font: var(--klun-text-paragraph-sm);
3362
+ border: 1px solid var(--klun-stroke-sub-300);
3362
3363
  }
3363
3364
  .klun-md-table th,
3364
3365
  .klun-md-table td {
3365
- padding: 6px 12px;
3366
+ padding: 8px 14px;
3366
3367
  border: 1px solid var(--klun-stroke-soft-200);
3367
3368
  text-align: left;
3368
3369
  vertical-align: top;
3369
3370
  }
3370
- .klun-md-table th {
3371
+ .klun-md-table thead th {
3371
3372
  color: var(--klun-text-strong-950);
3372
3373
  font: var(--klun-text-label-sm);
3373
3374
  background: var(--klun-bg-weak-50);
3375
+ border-bottom: 2px solid var(--klun-stroke-sub-300);
3374
3376
  white-space: nowrap;
3375
3377
  }
3378
+ .klun-md-table tbody td {
3379
+ color: var(--klun-text-sub-600);
3380
+ }
3376
3381
  .klun-md-table tbody tr:nth-child(even) {
3377
- background: var(--klun-bg-weak-50);
3382
+ background: var(--klun-bg-weak-25);
3383
+ }
3384
+ .klun-md-table tbody tr {
3385
+ transition: background 0.12s ease;
3386
+ }
3387
+ .klun-md-table tbody tr:hover {
3388
+ background: color-mix(in srgb, var(--klun-primary-base) 15%, var(--klun-bg-white-0));
3389
+ }
3390
+ .klun-md-table tbody tr:hover td {
3391
+ color: var(--klun-text-strong-950);
3392
+ }
3393
+ .klun-md-table tbody tr:hover td:first-child {
3394
+ box-shadow: inset 3px 0 0 var(--klun-primary-base);
3378
3395
  }
3379
3396
  .klun-md-hr {
3380
3397
  margin: 12px 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "klun-ui",
3
- "version": "0.1.21",
3
+ "version": "0.1.23",
4
4
  "description": "Klun UI — a themeable React + TypeScript component library and design system (light/dark, 6 accent themes, global radius axis).",
5
5
  "license": "MIT",
6
6
  "type": "module",