@gardenfi/garden-book 0.1.51 → 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.
@@ -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,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { ScaleY } from './ScaleY';
3
+
4
+ declare const meta: Meta<typeof ScaleY>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const Default: Story;
@@ -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 {};
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { Shine } from './Shine';
3
+
4
+ declare const meta: Meta<typeof Shine>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof Shine>;
7
+ export declare const Default: Story;
@@ -0,0 +1,4 @@
1
+ import { ScaleY } from './ScaleY/ScaleY';
2
+ import { Shine } from './Shine/Shine';
3
+
4
+ export { ScaleY, Shine };
package/dist/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
 
2
2
  export * from './components';
3
+ export * from './animations';