@gardenfi/garden-book 0.1.50 → 0.1.52
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/animations/ScaleY/ScaleY.d.ts +12 -0
- package/dist/animations/ScaleY/ScaleY.stories.d.ts +7 -0
- package/dist/animations/Shine/Shine.d.ts +11 -0
- package/dist/animations/Shine/Shine.stories.d.ts +7 -0
- package/dist/animations/index.d.ts +4 -0
- package/dist/components/atoms/Icons/CompareArrowsIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/FingerprintIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/index.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/style.css +1 -1
- package/dist/ui.cjs.js +5 -5
- package/dist/ui.es.js +7221 -2507
- package/dist/ui.umd.js +5 -5
- package/package.json +2 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
interface ScaleYProps {
|
|
2
|
+
children: React.ReactNode;
|
|
3
|
+
triggerAnimation: boolean;
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* ScaleY animation
|
|
7
|
+
* @param triggerAnimation - true fires the animation
|
|
8
|
+
* @param children - component to animate
|
|
9
|
+
* @default triggerAnimation - true
|
|
10
|
+
*/
|
|
11
|
+
export declare const ScaleY: ({ children, triggerAnimation }: ScaleYProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
|
|
3
|
+
type ShineProps = {
|
|
4
|
+
children: ReactNode;
|
|
5
|
+
};
|
|
6
|
+
/**
|
|
7
|
+
* Shine animation
|
|
8
|
+
* @param children - component to animate
|
|
9
|
+
*/
|
|
10
|
+
export declare const Shine: ({ children }: ShineProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -37,3 +37,5 @@ export { FeesIcon } from './FeesIcon';
|
|
|
37
37
|
export { OpenInNewIcon } from './OpenInNewIcon';
|
|
38
38
|
export { ArrowEastIcon } from './ArrowEastIcon';
|
|
39
39
|
export { CheckCircleIcon } from './CheckCircleIcon';
|
|
40
|
+
export { FingerprintIcon } from './FingerprintIcon';
|
|
41
|
+
export { CompareArrowsIcon } from './CompareArrowsIcon';
|
package/dist/index.d.ts
CHANGED