kaafil-react-uikit 0.7.1 → 0.8.0
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 +26 -0
- package/dist/index.css +1 -1
- package/dist/tokens.json +7 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,32 @@ The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
and this package uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
While on `0.x` a minor bump may carry a breaking change; the entry will say so.
|
|
8
8
|
|
|
9
|
+
## [0.8.0] — 2026-09-14
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- **`--kf-density-row-padding-block`** — host-tunable row padding, and the
|
|
14
|
+
token that actually decides how tall an admin table row is. Both admin
|
|
15
|
+
tables read it, so one override retunes the console.
|
|
16
|
+
|
|
17
|
+
`--kf-density-row-height` reads like that knob and is not: it feeds
|
|
18
|
+
`min-block-size`, so it can only make a row taller than its padding plus
|
|
19
|
+
content, never shorter. A host asking for 26px rows set it, saw nothing
|
|
20
|
+
move, and reported it dead. With the new token a manifest row goes 61px →
|
|
21
|
+
41px at `2px` padding, and 40px composed with `density="compact"`.
|
|
22
|
+
|
|
23
|
+
There is a floor neither token crosses: a manifest row renders an avatar
|
|
24
|
+
beside two lines of identity, ~36px, so zero padding still leaves a ~36px
|
|
25
|
+
row. Below that is a change to what the row shows, via
|
|
26
|
+
`components.ManifestRow`, not a token.
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
- The trips-directory row now shares that token, dropping 2px per edge from
|
|
31
|
+
its own `--kf-space-3-5`. The two admin tables had been tuned independently
|
|
32
|
+
and differed by 2px for no stated reason; one rhythm across the console is
|
|
33
|
+
worth more than preserving that.
|
|
34
|
+
|
|
9
35
|
## [0.7.1] — 2026-09-14
|
|
10
36
|
|
|
11
37
|
### Fixed
|