kerfjs 5.0.0-beta.22 → 5.0.0-beta.24
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 +48 -0
- package/ai/manifest.json +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,54 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
- Added the first-class `List` vertical-layout component with gap, flex, scroll,
|
|
10
|
+
and multi-edge divider options; `Toolbar` now uses the same typed
|
|
11
|
+
`dividerSides` contract instead of a boolean divider.
|
|
12
|
+
|
|
13
|
+
- Added an optional tone-tinted pill badge beside `StateBanner` titles, including
|
|
14
|
+
loading skeleton behavior and per-instance badge color overrides.
|
|
15
|
+
|
|
16
|
+
- Fixed pending `wireTabBars` and `wireTokenSearchFields` controlled-render
|
|
17
|
+
callbacks moving focus after their owning wiring had been disposed.
|
|
18
|
+
|
|
19
|
+
- Changed the default `ListItem` leading icon visual from 24px to a root-scaled
|
|
20
|
+
18px while retaining the row's 44px minimum target and first-line alignment.
|
|
21
|
+
|
|
22
|
+
- Fixed managed `TokenSearchField` clear losing focus or collapsing when an
|
|
23
|
+
application replaces its controlled editor; continued typing now works without
|
|
24
|
+
an application reopen callback.
|
|
25
|
+
|
|
26
|
+
- Fixed `@kerfjs/ui` automatic TabBar keyboard activation losing focus when a
|
|
27
|
+
controlled selection replaces the strip; navigation restores the same logical tab.
|
|
28
|
+
|
|
29
|
+
- Updated the published setup runtime to patched `minimatch` 9.0.9 and `yaml`
|
|
30
|
+
2.9.1 releases, resolving the known regular-expression denial-of-service and
|
|
31
|
+
deeply nested YAML denial-of-service advisories without narrowing Kerf's
|
|
32
|
+
supported Node.js range.
|
|
33
|
+
- Fixed `kerf-ui-doctor --full` so its isolated ESLint stage shares the same
|
|
34
|
+
generated-directory exclusions as TypeScript, static analysis, and cache
|
|
35
|
+
hashing; populated `dist`, `coverage`, dependency, cache, evidence, and nested
|
|
36
|
+
worktree directories no longer produce application diagnostics.
|
|
37
|
+
- Changed `@kerfjs/ui` component-library design templates to compose their
|
|
38
|
+
individual variant SVGs through HTML and `domotion capture
|
|
39
|
+
--flatten-nested-svg`, eliminating the hand-built nested-SVG compositor and
|
|
40
|
+
making top-level template sheets reliable in Sketch.
|
|
41
|
+
- Added a typed `shape` option to `SunkenPanel`: `rounded` remains the default,
|
|
42
|
+
while `square` produces a lowered surface with `border-radius: 0` for flush or
|
|
43
|
+
edge-to-edge application areas. Both shapes now appear in the UX catalog.
|
|
44
|
+
- Made the Catalog geometry overlay derive both margin bands and border
|
|
45
|
+
edges/radii from each live specimen's computed CSS. Public example helpers now
|
|
46
|
+
mark their generated labels and notes for automatic exclusion, and stylesheet,
|
|
47
|
+
theme, DOM, and resize changes refresh the overlay without duplicated demo
|
|
48
|
+
measurements.
|
|
49
|
+
- Updated the `@kerfjs/ui` SVG design-template generator to `domotion-svg`
|
|
50
|
+
0.30.1 and enabled `--flatten-nested-svg`, so inline component icons are
|
|
51
|
+
emitted as Sketch-compatible groups without changing their browser rendering.
|
|
52
|
+
The offline template gate now rejects variant captures that reintroduce nested
|
|
53
|
+
`<svg>` elements.
|
|
54
|
+
- Fixed `kerf-ui-doctor` and `kerf-ui-analyze` recursive discovery so nested
|
|
55
|
+
`.claude/worktrees` checkouts are excluded from source diagnostics, doctor
|
|
56
|
+
cache inputs, TypeScript, and ESLint.
|
|
9
57
|
- Added `npx kerfjs setup` and the `kerfjs/setup` automation API for safe,
|
|
10
58
|
AI-first initialization and migration of core and UI projects. The command
|
|
11
59
|
provides bounded dry-run diffs, explicit per-conflict keep/Kerf choices,
|
package/ai/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kerfjs",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.24",
|
|
4
4
|
"description": "Tiny reactive UI framework — fine-grained signals + DOM morphing + JSX. Apply the smallest possible cut to update your DOM.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -175,8 +175,8 @@
|
|
|
175
175
|
},
|
|
176
176
|
"dependencies": {
|
|
177
177
|
"@preact/signals-core": "^1.14.1",
|
|
178
|
-
"minimatch": "^9.0.
|
|
179
|
-
"yaml": "^2.
|
|
178
|
+
"minimatch": "^9.0.9",
|
|
179
|
+
"yaml": "^2.9.1"
|
|
180
180
|
},
|
|
181
181
|
"devDependencies": {
|
|
182
182
|
"@eslint/js": "^10.0.1",
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
"@typescript-eslint/eslint-plugin": "^8.65.0",
|
|
187
187
|
"@typescript-eslint/parser": "^8.65.0",
|
|
188
188
|
"@vitest/coverage-v8": "^4.1.11",
|
|
189
|
-
"domotion-svg": "^0.
|
|
189
|
+
"domotion-svg": "^0.30.1",
|
|
190
190
|
"eslint": "^10.8.0",
|
|
191
191
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
192
192
|
"gitgist": "^1.1.0",
|