-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb89808
commit d7296ba
Showing
24 changed files
with
1,804 additions
and
1,615 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { default as TableComponent } from './Table'; | ||
import { ComponentStory, ComponentMeta } from '@storybook/react'; | ||
declare const _default: ComponentMeta<typeof TableComponent>; | ||
export default _default; | ||
export declare const Table: ComponentStory<typeof TableComponent>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/// <reference types="react" /> | ||
import { InputHTMLAttributes } from 'react'; | ||
import './checkbox.scss'; | ||
declare function Checkbox(props: any): JSX.Element; | ||
declare function Checkbox(props: InputHTMLAttributes<HTMLInputElement>): JSX.Element; | ||
export default Checkbox; |
5 changes: 5 additions & 0 deletions
5
dist/cjs/types/components/inputs/Checkbox/Checkbox.stories.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { default as CheckboxComponent } from './Checkbox'; | ||
import { ComponentStory, ComponentMeta } from '@storybook/react'; | ||
declare const _default: ComponentMeta<typeof CheckboxComponent>; | ||
export default _default; | ||
export declare const Checkbox: ComponentStory<typeof CheckboxComponent>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
dist/cjs/types/components/inputs/TextArea/TextArea.stories.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/// <reference types="react" /> | ||
import { ComponentStory, ComponentMeta } from '@storybook/react'; | ||
declare const _default: ComponentMeta<(props: import("./TextArea").TextAreaProps) => JSX.Element>; | ||
export default _default; | ||
export declare const TextArea: ComponentStory<(props: import("./TextArea").TextAreaProps) => JSX.Element>; |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { default as TableComponent } from './Table'; | ||
import { ComponentStory, ComponentMeta } from '@storybook/react'; | ||
declare const _default: ComponentMeta<typeof TableComponent>; | ||
export default _default; | ||
export declare const Table: ComponentStory<typeof TableComponent>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/// <reference types="react" /> | ||
import { InputHTMLAttributes } from 'react'; | ||
import './checkbox.scss'; | ||
declare function Checkbox(props: any): JSX.Element; | ||
declare function Checkbox(props: InputHTMLAttributes<HTMLInputElement>): JSX.Element; | ||
export default Checkbox; |
5 changes: 5 additions & 0 deletions
5
dist/esm/types/components/inputs/Checkbox/Checkbox.stories.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { default as CheckboxComponent } from './Checkbox'; | ||
import { ComponentStory, ComponentMeta } from '@storybook/react'; | ||
declare const _default: ComponentMeta<typeof CheckboxComponent>; | ||
export default _default; | ||
export declare const Checkbox: ComponentStory<typeof CheckboxComponent>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
dist/esm/types/components/inputs/TextArea/TextArea.stories.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/// <reference types="react" /> | ||
import { ComponentStory, ComponentMeta } from '@storybook/react'; | ||
declare const _default: ComponentMeta<(props: import("./TextArea").TextAreaProps) => JSX.Element>; | ||
export default _default; | ||
export declare const TextArea: ComponentStory<(props: import("./TextArea").TextAreaProps) => JSX.Element>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.