@a4ui/core 0.30.0 → 0.31.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/dist/index.d.ts +2 -1
- package/dist/index.js +3140 -2948
- package/dist/ui/MorphPresets.d.ts +126 -0
- package/package.json +1 -1
- package/src/index.ts +13 -1
- package/src/ui/CardSpread.tsx +8 -6
- package/src/ui/MorphPresets.tsx +218 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const A4UI_VERSION = "0.
|
|
1
|
+
export declare const A4UI_VERSION = "0.31.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';
|
|
@@ -120,6 +120,7 @@ export { FocusBlurGroup, type FocusBlurGroupProps } from './ui/FocusBlurGroup';
|
|
|
120
120
|
export { CardSpread, type CardSpreadProps, type CardSpreadLayout } from './ui/CardSpread';
|
|
121
121
|
export { Carousel3D, type Carousel3DProps, type Carousel3DVariant } from './ui/Carousel3D';
|
|
122
122
|
export { TimeMachineStack, type TimeMachineStackProps } from './ui/TimeMachineStack';
|
|
123
|
+
export { CopyButton, type CopyButtonProps, PlayPauseButton, type PlayPauseButtonProps, MuteButton, type MuteButtonProps, LockButton, type LockButtonProps, ThemeMorphButton, type ThemeMorphButtonProps, } from './ui/MorphPresets';
|
|
123
124
|
export { CodeTabs, type CodeTabsProps, type CodeTab } from './ui/CodeTabs';
|
|
124
125
|
export { PillSearch, type PillSearchProps, type PillField } from './ui/PillSearch';
|
|
125
126
|
export { CategoryStrip, type CategoryStripProps, type CategoryItem } from './ui/CategoryStrip';
|