-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
project: add dist folder for testing and fix project version
Signed-off-by: dittrichlucas <[email protected]>
- Loading branch information
1 parent
6c024ab
commit bce60ff
Showing
6 changed files
with
41 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
export declare type AvatarProps = { | ||
import { SpaceProps } from 'styled-system'; | ||
export declare type AvatarProps = SpaceProps & { | ||
src?: string; | ||
alt?: string; | ||
label?: string; | ||
}; | ||
export declare const StyledAvatarBox: import("styled-components").StyledComponent<(props: import("../Box").BoxProps) => JSX.Element, import("styled-components").DefaultTheme, AvatarProps, never>; | ||
export declare const StyledAvatarBox: import("styled-components").StyledComponent<(props: import("../Box").BoxProps) => JSX.Element, import("styled-components").DefaultTheme, SpaceProps<Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>, string | number | symbol> & { | ||
src?: string | undefined; | ||
alt?: string | undefined; | ||
label?: string | undefined; | ||
}, never>; | ||
export declare const StyledAvatarImage: import("styled-components").StyledComponent<"img", import("styled-components").DefaultTheme, {}, never>; |
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
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
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
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
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,6 +1,6 @@ | ||
{ | ||
"name": "adonimals-ui", | ||
"version": "0.1.6", | ||
"version": "0.1.7", | ||
"description": "React UI toolkit for the web.", | ||
"main": "dist/index.js", | ||
"author": "<[email protected]>", | ||
|