@gardenfi/garden-book 0.2.4 → 0.2.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gardenfi/garden-book",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "type": "module",
5
5
  "types": "dist/index.d.ts",
6
6
  "main": "dist/index.js",
@@ -77,4 +77,4 @@
77
77
  "publishConfig": {
78
78
  "access": "public"
79
79
  }
80
- }
80
+ }
@@ -1,12 +0,0 @@
1
- type StackTextProps = {
2
- value: string;
3
- isHovered?: boolean;
4
- className?: string;
5
- delay?: number;
6
- };
7
- export type StackTextRef = {
8
- startAnimation: () => void;
9
- stopAnimation: () => void;
10
- };
11
- export declare const StackText: import('react').ForwardRefExoticComponent<StackTextProps & import('react').RefAttributes<StackTextRef>>;
12
- export {};
@@ -1,7 +0,0 @@
1
- import { Meta, StoryObj } from '@storybook/react';
2
- import { StackText } from './StackText';
3
-
4
- declare const meta: Meta<typeof StackText>;
5
- export default meta;
6
- type Story = StoryObj<typeof StackText>;
7
- export declare const Default: Story;