klun-ui 0.1.21 → 0.1.22

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,15 @@ 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.22] — 2026-07-13
9
+
10
+ ### Changed
11
+ - **`Markdown` — polished GFM tables.** Tables now read with real structure in
12
+ both themes: a stronger outer frame over lighter inner gridlines, a tinted
13
+ header with an emphasized bottom rule, and zebra-striped body rows. Row
14
+ **hover is a primary (accent) tint with a leading accent bar** — a real
15
+ highlight that no longer blends into the gray zebra striping.
16
+
8
17
  ## [0.1.21] — 2026-07-13
9
18
 
10
19
  ### Added
package/dist/styles.css CHANGED
@@ -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.22",
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",