@baton8/general-components 3.1.0-alpha.4 → 3.1.0-alpha.5
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/components/atoms/badge/badge.d.ts +1 -1
- package/dist/components/atoms/generalIcon/generalIcon.d.ts +1 -1
- package/dist/components/atoms/input/input.d.ts +2 -0
- package/dist/components/atoms/textarea/textarea.d.ts +1 -1
- package/dist/components/modules/stepper/stepperItem.d.ts +5 -1
- package/dist/index.js +14 -4
- package/dist/index.js.map +1 -1
- package/dist/stories/atoms/input/input.stories.d.ts +1 -0
- package/dist/stories/modules/stepper/stepper.stories.d.ts +1 -0
- package/package.json +1 -1
- package/dist/stories/modules/dialog/dialogButton.stories.d.ts +0 -8
- package/dist/stories/modules/drawer/drawerButton.stories.d.ts +0 -7
- package/dist/stories/modules/drawer/drawerFooter.stories.d.ts +0 -7
|
@@ -14,6 +14,7 @@ export declare const TypeTime: Story;
|
|
|
14
14
|
export declare const TypeDateTime: Story;
|
|
15
15
|
export declare const TypeMonth: Story;
|
|
16
16
|
export declare const TypeWeek: Story;
|
|
17
|
+
export declare const Placeholder: Story;
|
|
17
18
|
export declare const TestUncontrolled: Story;
|
|
18
19
|
export declare const TestControlled: Story;
|
|
19
20
|
export declare const TestHook: Story;
|
package/package.json
CHANGED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Meta as RawMeta, StoryObj as RawStory } from "@storybook/react";
|
|
2
|
-
import { DialogButton } from "../../../components";
|
|
3
|
-
type Meta = RawMeta<typeof DialogButton>;
|
|
4
|
-
type Story = RawStory<typeof DialogButton>;
|
|
5
|
-
declare const meta: Meta;
|
|
6
|
-
export declare const Submit: Story;
|
|
7
|
-
export declare const Cancel: Story;
|
|
8
|
-
export default meta;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Meta as RawMeta, StoryObj as RawStory } from "@storybook/react";
|
|
2
|
-
import { DrawerButton } from "../../../components";
|
|
3
|
-
type Meta = RawMeta<typeof DrawerButton>;
|
|
4
|
-
type Story = RawStory<typeof DrawerButton>;
|
|
5
|
-
declare const meta: Meta;
|
|
6
|
-
export declare const Basic: Story;
|
|
7
|
-
export default meta;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Meta as RawMeta, StoryObj as RawStory } from "@storybook/react";
|
|
2
|
-
import { DrawerFooter } from "../../../components";
|
|
3
|
-
type Meta = RawMeta<typeof DrawerFooter>;
|
|
4
|
-
type Story = RawStory<typeof DrawerFooter>;
|
|
5
|
-
declare const meta: Meta;
|
|
6
|
-
export declare const Basic: Story;
|
|
7
|
-
export default meta;
|