@docflow/component-library
Advanced tools
Comparing version 3.14.2 to 4.0.0
@@ -10,2 +10,8 @@ # Changelog | ||
## [4.0.0] - 2022-12-16 | ||
### Changed | ||
- The `Avatar` component no longer has an `email` prop, replaced with `id` | ||
## [3.0.0] - 2022-10-03 | ||
@@ -32,5 +38,6 @@ | ||
[unreleased]: https://github.com/dcflw/ui-component-library/compare/v3.0.0...HEAD | ||
[unreleased]: https://github.com/dcflw/ui-component-library/compare/v4.0.0...HEAD | ||
[4.0.0]: https://github.com/dcflw/ui-component-library/releases/tag/v4.0.0 | ||
[3.0.0]: https://github.com/dcflw/ui-component-library/releases/tag/v3.0.0 | ||
[2.0.0]: https://github.com/dcflw/ui-component-library/releases/tag/v2.0.0 | ||
[1.0.0]: https://github.com/dcflw/ui-component-library/releases/tag/v1.0.0 |
/// <reference types="react" /> | ||
export declare type AvatarProps = { | ||
email: string; | ||
id: string; | ||
name: string; | ||
@@ -9,3 +9,3 @@ src?: string; | ||
}; | ||
export declare const Avatar: ({ name, email, src, avatarBorder, size, }: AvatarProps) => JSX.Element; | ||
export declare const Avatar: ({ name, id, src, avatarBorder, size, }: AvatarProps) => JSX.Element; | ||
export default Avatar; |
/// <reference types="react" /> | ||
import { ComponentMeta, ComponentStory } from "@storybook/react"; | ||
declare const _default: ComponentMeta<({ name, email, src, avatarBorder, size, }: import("../components/avatar/Avatar").AvatarProps) => JSX.Element>; | ||
declare const _default: ComponentMeta<({ name, id, src, avatarBorder, size, }: import("../components/avatar/Avatar").AvatarProps) => JSX.Element>; | ||
export default _default; | ||
export declare const Default: ComponentStory<({ name, email, src, avatarBorder, size, }: import("../components/avatar/Avatar").AvatarProps) => JSX.Element>; | ||
export declare const Default: ComponentStory<({ name, id, src, avatarBorder, size, }: import("../components/avatar/Avatar").AvatarProps) => JSX.Element>; |
{ | ||
"name": "@docflow/component-library", | ||
"version": "3.14.2", | ||
"version": "4.0.0", | ||
"description": "Docflow component library", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
3909011