@ai-matrx/design-system 0.3.0 → 0.3.1

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
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.1 — 2026-08-30
4
+
5
+ - `@ai-matrx/kit` is now a REAL dependency (`^0.7.3`) instead of a peer
6
+ (register row X3 / law C23: sibling `@ai-matrx/*` packages are never peers —
7
+ only react/react-dom/react-native stay peers). Installing design-system
8
+ resolves its own `/react-tree` scanner; nothing for the host to satisfy.
9
+ No code changes.
10
+
3
11
  ## 0.3.0 — 2026-08-29
4
12
 
5
13
  The second C18 growth wave: the three primitive families the associations
package/README.md CHANGED
@@ -15,7 +15,7 @@ import { Badge, Button } from "@ai-matrx/design-system";
15
15
 
16
16
  The package intentionally does not ship product colors. Hosts define the normal Tailwind semantic tokens (`primary`, `background`, `border`, `muted`, `success`, and `warning`), so one component follows each product's theme without forking behavior. A few ported components additionally reference host-owned CSS contracts and degrade gracefully without them: the glass tokens/utilities used by the BottomSheet family, the `.matrx-scroll-fade` styling for `useScrollFade`, and the `shadow-input` utility.
17
17
 
18
- Host-shaped systems are injected, never imported: wrap subtrees in `PortalContainerProvider` to point nested Popover portals at a dialog or popout body, and hand `OverflowToolbar` your menu and tooltip systems through its `renderOverflowMenu` / `renderTooltip` props. `@ai-matrx/kit` (>= 0.5.1) is a peer dependency.
18
+ Host-shaped systems are injected, never imported: wrap subtrees in `PortalContainerProvider` to point nested Popover portals at a dialog or popout body, and hand `OverflowToolbar` your menu and tooltip systems through its `renderOverflowMenu` / `renderTooltip` props. `@ai-matrx/kit` is a real dependency (installed automatically).
19
19
 
20
20
  Tailwind CSS v4 ignores `node_modules` by default. Registry consumers must register the package build beside their Tailwind import:
21
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-matrx/design-system",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "AI Matrx semantic React primitives shared across Vite, Next.js, desktop, and customer-built applications.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -33,6 +33,7 @@
33
33
  "./package.json": "./package.json"
34
34
  },
35
35
  "dependencies": {
36
+ "@ai-matrx/kit": "^0.7.3",
36
37
  "@radix-ui/react-dialog": "^1.1.17",
37
38
  "@radix-ui/react-label": "^2.1.8",
38
39
  "@radix-ui/react-popover": "^1.1.17",
@@ -47,7 +48,6 @@
47
48
  "vaul": "^1.1.2"
48
49
  },
49
50
  "peerDependencies": {
50
- "@ai-matrx/kit": ">=0.5.1",
51
51
  "react": ">=18.0.0",
52
52
  "react-dom": ">=18.0.0"
53
53
  },
@@ -63,8 +63,7 @@
63
63
  "react-dom": "^19.1.0",
64
64
  "tsup": "^8.5.1",
65
65
  "typescript": "^5.9.3",
66
- "vitest": "^4.1.6",
67
- "@ai-matrx/kit": "0.5.1"
66
+ "vitest": "^4.1.6"
68
67
  },
69
68
  "publishConfig": {
70
69
  "access": "public",