@poodle64/ui 2026.8.14 → 2026.8.15

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/README.md CHANGED
@@ -751,7 +751,11 @@ node harness/additivity.mjs ui-v2026.8.3
751
751
  Tailwind chain, exactly as a consuming app wires it — a class that generates no
752
752
  rule, a colour that resolves to nothing, a registered theme key nothing reads, a
753
753
  variant whose selector cannot match the DOM, and a sizing utility that has
754
- silently changed meaning all fail there rather than shipping.
754
+ silently changed meaning all fail there rather than shipping. It also sweeps the
755
+ source for the one craft defect none of those can see — a content container that
756
+ draws a border and declares no surface, so it computes transparent and the page
757
+ shows through it (`src/test/bordered-surface.test.ts`, which carries its own
758
+ limits at the foot of the file).
755
759
 
756
760
  `pnpm run test:browser` is the leg nothing else can stand in for: jsdom applies
757
761
  no stylesheet and returns unresolved `var(…)` literals, so it passes just as
@@ -38,7 +38,19 @@
38
38
  const hasBadges = $derived(documents.some((d) => d.badges?.length));
39
39
  </script>
40
40
 
41
- <div class="rounded-md border">
41
+ <!-- The card surface, not a bare border. This wrapper holds CONTENT, so it has
42
+ to paint one: with `border` alone the table and every ancestor computed
43
+ rgba(0,0,0,0) at 1440x900 in both themes, so the page background showed
44
+ straight through a container sitting beside opaque cards. `bg-card
45
+ border-border ds-edge` is the same trio Panel, StatCard, StatList,
46
+ DetailPanel, EmptyState and DataTableTanstack use — and `border-border`
47
+ matters on its own: a bare `border` resolves to currentColor, which was
48
+ drawing this hairline in full-strength foreground rather than the border
49
+ token. `overflow-hidden` comes with the surface, as it does on every
50
+ sibling: a row's `hover:bg-muted/50` otherwise paints square corners over
51
+ the wrapper's radius now that there is a surface to paint over.
52
+ Gated by src/test/bordered-surface.test.ts. -->
53
+ <div class="bg-card border-border ds-edge overflow-hidden rounded-md border">
42
54
  <TableRoot>
43
55
  <TableHeader>
44
56
  <TableRow>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poodle64/ui",
3
- "version": "2026.8.14",
3
+ "version": "2026.8.15",
4
4
  "description": "Household shared component layer: shadcn-svelte primitives (bits-ui) plus the composed page chrome every app builds its routes from, restyled by each app's @poodle64/design-tokens alias layer. One fix reaches every app.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "meta": {
3
3
  "package": "@poodle64/ui",
4
- "version": "2026.8.14",
4
+ "version": "2026.8.15",
5
5
  "generatedBy": "scripts/generate-registry.mjs",
6
6
  "source": "scripts/situations.json + package source (DO NOT EDIT the outputs by hand)",
7
7
  "componentCount": 54,
@@ -1,7 +1,7 @@
1
1
  # @poodle64/ui — situation → component map
2
2
 
3
3
  <!-- GENERATED by scripts/generate-registry.mjs from scripts/situations.json + package source. DO NOT EDIT. -->
4
- Generated from `@poodle64/ui@2026.8.14`. 54 components, 14 situations.
4
+ Generated from `@poodle64/ui@2026.8.15`. 54 components, 14 situations.
5
5
 
6
6
  **Read this before writing a `<div>`.** Find the SITUATION you are in below, then compose the component named for it — do not hand-build it from raw `Card` or utility classes. Import is `import { Name } from '<import path>'`. Props marked `?` are optional. This map is the retrieval step the [`frontend-design` skill] makes mandatory; the [CHI 2026 study] measured composing-from-a-registry at 95% design-system compliance against 71% for writing the CSS from a prose style guide.
7
7