@a4ui/core 0.15.0 → 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 +12 -12
- package/dist/Checkbox-B5Gb3h5J.js +400 -0
- package/dist/commerce.js +1 -1
- package/dist/elements.iife.js +2 -2
- package/dist/elements.js +2919 -2848
- package/dist/index.d.ts +4 -4
- package/dist/index.js +2132 -2349
- package/dist/ui/Button.d.ts +7 -0
- package/dist/ui/Card.d.ts +15 -1
- package/dist/ui/Ripple.d.ts +14 -1
- package/dist/ui/Spotlight.d.ts +15 -2
- package/dist/ui/TiltCard.d.ts +14 -1
- package/package.json +1 -1
- package/src/index.ts +4 -4
- package/src/ui/Button.tsx +24 -2
- package/src/ui/Card.tsx +32 -3
- package/src/ui/Ripple.tsx +64 -75
- package/src/ui/Spotlight.tsx +51 -40
- package/src/ui/TiltCard.tsx +51 -42
- package/dist/Checkbox-DQcDOBLd.js +0 -168
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,10 +104,10 @@ 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
108
|
export { Magnetic, type MagneticProps } from './ui/Magnetic';
|
|
109
|
-
export { TiltCard, type TiltCardProps } from './ui/TiltCard';
|
|
110
|
-
export { Spotlight, type SpotlightProps } from './ui/Spotlight';
|
|
109
|
+
export { TiltCard, attachTilt, type TiltCardProps } from './ui/TiltCard';
|
|
110
|
+
export { Spotlight, attachSpotlight, type SpotlightProps } from './ui/Spotlight';
|
|
111
111
|
export { ScrollProgress, type ScrollProgressProps } from './ui/ScrollProgress';
|
|
112
112
|
export { GradientText, type GradientTextProps } from './ui/GradientText';
|
|
113
113
|
export { flyToCart, type FlyToCartOptions } from './lib/flyToCart';
|