@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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/Chat/ChatListItem/ChatListItem.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/Chat/ChatListItem/ChatListItem.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
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
|
|