@ai-matrx/tap-target 0.2.7 → 0.2.9
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 +8 -0
- package/README.md +4 -4
- package/dist/buttons.cjs +238 -719
- package/dist/buttons.cjs.map +1 -1
- package/dist/buttons.d.cts +1 -1
- package/dist/buttons.d.ts +1 -1
- package/dist/buttons.js +243 -725
- package/dist/buttons.js.map +1 -1
- package/dist/index.cjs +13 -524
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -96
- package/dist/index.d.ts +1 -96
- package/dist/index.js +12 -526
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -159
- package/package.json +2 -2
- package/dist/link-CkRpHgou.d.cts +0 -40
- package/dist/link-CkRpHgou.d.ts +0 -40
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.9
|
|
4
|
+
|
|
5
|
+
Corrects the package description and README to match the actual canonical geometry: 44px target, 28px pill and 14px glyph. No runtime geometry change and no consumer action required.
|
|
6
|
+
|
|
7
|
+
## 0.2.8
|
|
8
|
+
|
|
9
|
+
Moves the canonical primitive, shared Link registration and geometry into design-system; existing Tap Target imports re-export that same implementation. Styles import the shared design-system sheet. Public button behavior and geometry remain unchanged.
|
|
10
|
+
|
|
3
11
|
## 0.2.7
|
|
4
12
|
|
|
5
13
|
Automatic changed-only republish (docs/metadata drift since the last tag — see
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @ai-matrx/tap-target
|
|
2
2
|
|
|
3
3
|
The AI Matrx tap-target button system: an **invisible 44×44 touch ring** over a
|
|
4
|
-
**
|
|
5
|
-
geometry), with press feedback, mobile tap hygiene (no 300ms delay, no iOS gray
|
|
4
|
+
**28×28 visible pill and 14×14 glyph** (32px target and 20px pill in the slim
|
|
5
|
+
group geometry), with press feedback, mobile tap hygiene (no 300ms delay, no iOS gray
|
|
6
6
|
flash), and correct **ref forwarding for Radix `asChild` triggers**.
|
|
7
7
|
|
|
8
8
|
- **Primitives** — `TapTargetButton` (glass), `TapTargetButtonTransparent`,
|
|
@@ -20,8 +20,8 @@ flash), and correct **ref forwarding for Radix `asChild` triggers**.
|
|
|
20
20
|
npm install @ai-matrx/tap-target
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
Peer: `react >= 18`.
|
|
24
|
-
|
|
23
|
+
Peer: `react >= 18`. The canonical primitive, geometry and tooltip behavior
|
|
24
|
+
come from the regular `@ai-matrx/design-system` dependency.
|
|
25
25
|
|
|
26
26
|
## Setup — two one-time steps
|
|
27
27
|
|