wacomm 2.4.0 → 2.5.0

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.
@@ -1,5 +1,5 @@
1
1
  import { AvatarTagProps } from './AvatarTag';
2
- interface AvatarTimeTagProps extends AvatarTagProps {
2
+ export interface AvatarTimeTagProps extends AvatarTagProps {
3
3
  date: string;
4
4
  }
5
5
  declare function AvatarTimeTag({ label, date, onClick, className, avatarClassName, imgSrc, fallbackImgSrc }: AvatarTimeTagProps): import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,6 @@
1
1
  export { default as Avatar } from './Avatar';
2
+ export type { AvatarProps } from './Avatar';
2
3
  export { default as AvatarTag } from './AvatarTag';
4
+ export type { AvatarTagProps } from './AvatarTag';
3
5
  export { default as AvatarTimeTag } from './AvatarTimeTag';
6
+ export type { AvatarTimeTagProps } from './AvatarTimeTag';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wacomm",
3
- "version": "2.4.0",
3
+ "version": "2.5.0",
4
4
  "main": "dist/wacomm.cjs.js",
5
5
  "module": "dist/wacomm.es.js",
6
6
  "types": "dist/index.d.ts",