kerfjs 5.0.0-beta.24 → 5.0.0-beta.25

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
@@ -6,6 +6,49 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ - Added configuration-first application-panel policies across `ResizableRegion`,
10
+ `Workbench`, and `CollapsiblePanel`: separator visibility, instant-track
11
+ collapse with optional composited content motion, popup-safe overflow,
12
+ inline/overlay/hidden responsive presentations, and safe-area restore-control
13
+ placement. `wireResizableRegions` now suppresses motion during pointer drags
14
+ and ignores unavailable regions; `wireSidebar` supports hidden compact
15
+ replacements and exclusive overlays.
16
+ - Added typed `TabBar` allocation/presentation/action-placement and `AppTab`
17
+ presentation/size/label-width variants for segmented inspector strips,
18
+ compact drawer tabs, icon-only accessible tabs, and truncating labels.
19
+ - Added typed `ToolbarControlGroup` size, density, content anatomy, selected
20
+ chrome/tone, nested-dropdown, and avatar scrim variants.
21
+ - Added typed `Select` form, borderless-toolbar, intrinsic-navigation, compact,
22
+ icon-only-selected, truncation, and composed focus-ring variants.
23
+ - Added `DialogSurface` and `PopupSurface` composition APIs for standard dialog
24
+ sizes/presentations, independent body/footer insets, and list-compatible popup
25
+ menu insets without consumer `::part()` overrides.
26
+ - **Breaking (`@kerfjs/ui`):** removed `PanelHeader` and its subpath/CSS export.
27
+ Compose page, panel, and dialog headings directly with `Toolbar`, a direct
28
+ extra-large `ToolbarText`, and optional `ToolbarControlGroup` icon/action zones;
29
+ keep supporting copy as app-owned content below the toolbar.
30
+ - Fixed controlled TokenSearchField Select All + Backspace/Delete collapsing the
31
+ editor: managed deletion keeps the adopted open signal and restores replacement
32
+ focus before another keystroke, without a stale animation-frame caret reset.
33
+ The adoption demo now persists both edited text and remaining tokens.
34
+ - Fixed `Select` controls using only `ariaLabel` being unnamed to assistive
35
+ technology. Ordinary and custom selected content retain their geometry while
36
+ the actual shadow combobox receives its accessible name.
37
+ - Added first-class `Select` hint text below interactive and loading-placeholder
38
+ controls while keeping empty-value `placeholderText` semantically distinct.
39
+
40
+ - Changed the Web Awesome Dialog theme to use 8px body padding and 16px footer
41
+ padding, independently of the component's shared `--spacing` value.
42
+
43
+ - Fixed `kerf-ui-doctor` so its isolated Kerf ESLint pass preserves applicable
44
+ consumer core rules and suppression reporting options. Playwright's required
45
+ `no-empty-pattern` fixture suppression no longer becomes a false unused
46
+ directive while consumer plugin rules remain outside the doctor boundary.
47
+
48
+ - Cataloged `SplitView` and its documented
49
+ `--kui-split-view-list-width` override so `kerf-ui-doctor --full` accepts the
50
+ public token in downstream application stylesheets.
51
+
9
52
  - Added the first-class `List` vertical-layout component with gap, flex, scroll,
10
53
  and multi-edge divider options; `Toolbar` now uses the same typed
11
54
  `dividerSides` contract instead of a boolean divider.
package/ai/manifest.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "kerfjsVersion": "5.0.0-beta.24",
2
+ "kerfjsVersion": "5.0.0-beta.25",
3
3
  "files": [
4
4
  {
5
5
  "name": "skill",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kerfjs",
3
- "version": "5.0.0-beta.24",
3
+ "version": "5.0.0-beta.25",
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": [
@@ -140,7 +140,8 @@
140
140
  "lint:eslint": "eslint src tests",
141
141
  "lint": "npm run lint:eslint && npm run format:check",
142
142
  "typecheck": "node node_modules/typescript7/bin/tsc --noEmit",
143
- "check": "npm run lint && npm run typecheck && node scripts/check-doc-test-inventory.mjs && node scripts/check-doc-api-coverage.mjs && node scripts/check-doc-site-tickets.mjs && node scripts/check-cdn-versions.mjs && node scripts/check-dev-warn-docs.mjs && node scripts/check-skill-freshness.mjs && node scripts/check-design-rule-5.mjs && node scripts/check-feature-coverage.mjs && node scripts/sync-lockstep-versions.mjs --check && node scripts/check-ai-bundle.mjs && npm test && npm run build && node scripts/check-bundle-size.mjs && node scripts/check-doc-api-signatures.mjs && vitest run --config vitest.config.dist.ts && vitest run --config vitest.config.dist-full.ts && node node_modules/typescript7/bin/tsc -p tests/dist/jsx-typing/tsconfig.json && node node_modules/typescript7/bin/tsc -p site/src/examples/complete/tsconfig.json && node node_modules/typescript7/bin/tsc -p tests/dist/scaffold-typing/tsconfig.json && node scripts/check-docs-examples.mjs",
143
+ "check": "node scripts/check-guidance-integrity.mjs -- npm run check:core",
144
+ "check:core": "npm run lint && npm run typecheck && node scripts/check-doc-test-inventory.mjs && node scripts/check-doc-api-coverage.mjs && node scripts/check-doc-site-tickets.mjs && node scripts/check-cdn-versions.mjs && node scripts/check-dev-warn-docs.mjs && node scripts/check-skill-freshness.mjs && node scripts/check-design-rule-5.mjs && node scripts/check-feature-coverage.mjs && node scripts/sync-lockstep-versions.mjs --check && node scripts/check-ai-bundle.mjs && npm test && npm run build && node scripts/check-bundle-size.mjs && node scripts/check-doc-api-signatures.mjs && vitest run --config vitest.config.dist.ts && vitest run --config vitest.config.dist-full.ts && node node_modules/typescript7/bin/tsc -p tests/dist/jsx-typing/tsconfig.json && node node_modules/typescript7/bin/tsc -p site/src/examples/complete/tsconfig.json && node node_modules/typescript7/bin/tsc -p tests/dist/scaffold-typing/tsconfig.json && node scripts/check-docs-examples.mjs",
144
145
  "check:docs:examples": "node scripts/check-docs-examples.mjs",
145
146
  "check:full": "npm run check && npm run --silent check:audit && playwright test",
146
147
  "check:ui": "npm --prefix ui run check",