@mindly/ui-components 3.4.0 → 3.4.1

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,9 +1,9 @@
1
1
  import { FC } from 'react';
2
2
  declare type ChatListItemProps = {
3
- href: string;
4
3
  name: string;
5
4
  message: string;
6
5
  avatar?: string;
6
+ onClick?: () => void;
7
7
  };
8
8
  declare const ChatListItem: FC<ChatListItemProps>;
9
9
  export default ChatListItem;
package/dist/index.d.ts CHANGED
@@ -447,10 +447,10 @@ declare type RoundButtonPropsType = {
447
447
  declare const RoundButton: React.FC<RoundButtonPropsType>;
448
448
 
449
449
  declare type ChatListItemProps = {
450
- href: string;
451
450
  name: string;
452
451
  message: string;
453
452
  avatar?: string;
453
+ onClick?: () => void;
454
454
  };
455
455
  declare const ChatListItem: FC<ChatListItemProps>;
456
456
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",