@a4ui/core 0.14.1 → 0.16.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 +23 -23
- package/dist/Checkbox-B5Gb3h5J.js +400 -0
- package/dist/commerce.js +1 -1
- package/dist/elements.css +6 -0
- package/dist/elements.iife.js +2 -2
- package/dist/elements.js +2919 -2848
- package/dist/full.css +6 -0
- package/dist/index.d.ts +7 -2
- package/dist/index.js +2287 -2359
- package/dist/ui/Button.d.ts +7 -0
- package/dist/ui/Card.d.ts +15 -1
- package/dist/ui/GradientText.d.ts +25 -0
- package/dist/ui/Magnetic.d.ts +22 -0
- package/dist/ui/Ripple.d.ts +14 -1
- package/dist/ui/ScrollProgress.d.ts +20 -0
- package/dist/ui/Spotlight.d.ts +36 -0
- package/dist/ui/TiltCard.d.ts +34 -0
- package/package.json +2 -1
- package/src/index.ts +7 -2
- package/src/ui/Button.tsx +24 -2
- package/src/ui/Card.tsx +32 -3
- package/src/ui/GradientText.tsx +69 -0
- package/src/ui/Magnetic.tsx +73 -0
- package/src/ui/Ripple.tsx +64 -75
- package/src/ui/ScrollProgress.tsx +61 -0
- package/src/ui/Spotlight.tsx +94 -0
- package/src/ui/TiltCard.tsx +89 -0
- package/dist/Checkbox-DQcDOBLd.js +0 -168
package/dist/full.css
CHANGED
|
@@ -2379,6 +2379,9 @@ html.calm .tile-glass {
|
|
|
2379
2379
|
.p-6 {
|
|
2380
2380
|
padding: 1.5rem;
|
|
2381
2381
|
}
|
|
2382
|
+
.p-8 {
|
|
2383
|
+
padding: 2rem;
|
|
2384
|
+
}
|
|
2382
2385
|
.px-0\.5 {
|
|
2383
2386
|
padding-left: 0.125rem;
|
|
2384
2387
|
padding-right: 0.125rem;
|
|
@@ -2692,6 +2695,9 @@ html.calm .tile-glass {
|
|
|
2692
2695
|
.accent-primary {
|
|
2693
2696
|
accent-color: hsl(var(--primary) / 1);
|
|
2694
2697
|
}
|
|
2698
|
+
.opacity-0 {
|
|
2699
|
+
opacity: 0;
|
|
2700
|
+
}
|
|
2695
2701
|
.opacity-25 {
|
|
2696
2702
|
opacity: 0.25;
|
|
2697
2703
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const A4UI_VERSION = "0.
|
|
1
|
+
export declare const A4UI_VERSION = "0.16.0";
|
|
2
2
|
export { cn } from './lib/cn';
|
|
3
3
|
export { useTheme, toggleTheme, setTheme, storedTheme, applyTheme, toggled, type Theme } from './lib/theme';
|
|
4
4
|
export { useEffects, isCalm, setEffects } from './lib/effects';
|
|
@@ -104,7 +104,12 @@ export { MultiStateBadge, type MultiStateBadgeProps, type BadgeState } from './u
|
|
|
104
104
|
export { NowPlaying, type NowPlayingProps } from './ui/NowPlaying';
|
|
105
105
|
export { Expandable, type ExpandableProps } from './ui/Expandable';
|
|
106
106
|
export { Typewriter, type TypewriterProps } from './ui/Typewriter';
|
|
107
|
-
export { Ripple, type RippleProps } from './ui/Ripple';
|
|
107
|
+
export { Ripple, spawnRipple, type RippleProps } from './ui/Ripple';
|
|
108
|
+
export { Magnetic, type MagneticProps } from './ui/Magnetic';
|
|
109
|
+
export { TiltCard, attachTilt, type TiltCardProps } from './ui/TiltCard';
|
|
110
|
+
export { Spotlight, attachSpotlight, type SpotlightProps } from './ui/Spotlight';
|
|
111
|
+
export { ScrollProgress, type ScrollProgressProps } from './ui/ScrollProgress';
|
|
112
|
+
export { GradientText, type GradientTextProps } from './ui/GradientText';
|
|
108
113
|
export { flyToCart, type FlyToCartOptions } from './lib/flyToCart';
|
|
109
114
|
export { AppShell } from './layout/AppShell';
|
|
110
115
|
export { SpaceBackground } from './layout/SpaceBackground';
|