@ai-matrx/tap-target 0.2.2 → 0.2.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.3 — 2026-09-10
4
+
5
+ **The pin is gone for good — this is the release 0.2.2 tried to be.** 0.2.2
6
+ republished to re-point `@ai-matrx/design-system` forward, and then published
7
+ `"0.14.0"` for exactly the same reason 0.2.1 published `"0.11.2"`: `pnpm pack`
8
+ rewrites a `workspace:*` sibling spec to the sibling's EXACT version in the
9
+ packed manifest, so every republish just moved the pin. Chasing it one release
10
+ at a time was never going to end.
11
+
12
+ The class is closed at the mechanism (C15 / C27, THE TRANSITIVE PIN HAZARD):
13
+ the published manifest now declares every `@ai-matrx/*` sibling as `"latest"`,
14
+ while `workspace:*` stays in source for monorepo dev resolution. One shared
15
+ pack step (`apps/shared/scripts/pack-latest-siblings.mjs`) performs the
16
+ rewrite, every package's tarball canary fails on any packed `@ai-matrx/*` spec
17
+ that is not exactly `"latest"`, and `check_ts_sibling_graph.mjs` refuses a
18
+ publish path that stops running either. No source change.
19
+
20
+ ### Consumer action
21
+
22
+ none — sibling specs now float.
23
+
3
24
  ## 0.2.2 — 2026-09-10
4
25
 
5
26
  **A republish so consumers run ONE design-system, not two.** No source change.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-matrx/tap-target",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "The AI Matrx tap-target button system: an invisible 44x44 touch ring over a 32x32 visible pill, glass/transparent/solid/group variants with correct ref forwarding for Radix asChild triggers, inline labels, link/label/button trigger resolution with an injectable link component, tooltip wiring, and ~60 pre-composed one-tag buttons.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -57,7 +57,7 @@
57
57
  },
58
58
  "dependencies": {
59
59
  "@radix-ui/react-tooltip": "^1.2.8",
60
- "@ai-matrx/design-system": "0.14.0"
60
+ "@ai-matrx/design-system": "latest"
61
61
  },
62
62
  "peerDependencies": {
63
63
  "react": ">=18.0.0"
@@ -94,4 +94,4 @@
94
94
  "test:watch": "vitest",
95
95
  "verify:tarball": "node ./scripts/verify-tarball.mjs"
96
96
  }
97
- }
97
+ }