@a4ui/core 0.10.2 → 0.11.0
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 +5 -5
- package/dist/elements.iife.js +2 -2
- package/dist/elements.js +4749 -2379
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1398 -1400
- package/dist/lib/motion.d.ts +20 -5
- package/package.json +2 -3
package/dist/lib/motion.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Accessor } from 'solid-js';
|
|
2
|
+
export { animate, inView, scroll, stagger, spring } from 'motion';
|
|
2
3
|
/**
|
|
3
4
|
* Snapshot of the user's reduced-motion preference at call time. Not
|
|
4
5
|
* reactive to preference changes mid-session (matches theme.ts's one-shot
|
|
@@ -46,11 +47,8 @@ export declare function setMotionForced(on: boolean): void;
|
|
|
46
47
|
*/
|
|
47
48
|
export declare function motionReduced(): boolean;
|
|
48
49
|
/**
|
|
49
|
-
* Tweens a numeric signal toward `target()`
|
|
50
|
-
*
|
|
51
|
-
* yet, and this needs to interpolate a plain number rather than a DOM
|
|
52
|
-
* property, so it's a small hand-rolled WAAPI-adjacent tween for KPI count-up).
|
|
53
|
-
* Jumps straight to the target under prefers-reduced-motion.
|
|
50
|
+
* Tweens a numeric signal toward `target()` with Motion's `animate` (ease-out),
|
|
51
|
+
* for KPI count-ups. Jumps straight to the target under reduced motion.
|
|
54
52
|
*
|
|
55
53
|
* @example
|
|
56
54
|
* ```tsx
|
|
@@ -59,3 +57,20 @@ export declare function motionReduced(): boolean;
|
|
|
59
57
|
* ```
|
|
60
58
|
*/
|
|
61
59
|
export declare function createCountUp(target: Accessor<number>, durationMs?: number): Accessor<number>;
|
|
60
|
+
/**
|
|
61
|
+
* Fade + slide an element in on mount with Motion (ease-out), respecting
|
|
62
|
+
* reduced motion (a no-op then). Call it from a ref/onMount; use `delay` to
|
|
63
|
+
* stagger a row.
|
|
64
|
+
*
|
|
65
|
+
* @example
|
|
66
|
+
* ```tsx
|
|
67
|
+
* let el!: HTMLDivElement
|
|
68
|
+
* onMount(() => animateIn(el, { delay: 0.1 }))
|
|
69
|
+
* return <div ref={el}>…</div>
|
|
70
|
+
* ```
|
|
71
|
+
*/
|
|
72
|
+
export declare function animateIn(el: Element, opts?: {
|
|
73
|
+
y?: number;
|
|
74
|
+
duration?: number;
|
|
75
|
+
delay?: number;
|
|
76
|
+
}): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a4ui/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "A4ui — Spatial Glass design system & component library for SolidJS (Kobalte behavior + Tailwind glass tokens + motion).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -106,8 +106,7 @@
|
|
|
106
106
|
"@tanstack/solid-virtual": "^3.13.33",
|
|
107
107
|
"clsx": "^2.1.1",
|
|
108
108
|
"lucide-solid": "^1.23.0",
|
|
109
|
-
"
|
|
110
|
-
"solid-transition-group": "^0.3.0",
|
|
109
|
+
"motion": "^12.42.2",
|
|
111
110
|
"tailwind-merge": "^3.6.0"
|
|
112
111
|
},
|
|
113
112
|
"devDependencies": {
|