@linktr.ee/messaging-react 1.11.3 → 1.11.5-rc-1765005296
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/index.d.ts +2 -2
- package/dist/index.js +690 -676
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ChannelList/CustomChannelPreview.tsx +109 -106
- package/src/components/ChannelList/index.tsx +55 -66
- package/src/components/ChannelView.tsx +37 -41
- package/src/components/MessagingShell/ChannelEmptyState.tsx +1 -12
- package/src/components/MessagingShell/EmptyState.tsx +4 -4
- package/src/components/MessagingShell/ErrorState.tsx +8 -5
- package/src/components/MessagingShell/LoadingState.tsx +5 -2
- package/src/components/MessagingShell/index.tsx +20 -6
package/dist/index.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export declare const ChannelEmptyState: default_2.FC;
|
|
|
29
29
|
/**
|
|
30
30
|
* Channel list component with customizable header and actions
|
|
31
31
|
*/
|
|
32
|
-
export declare const ChannelList: default_2.
|
|
32
|
+
export declare const ChannelList: default_2.NamedExoticComponent<ChannelListProps>;
|
|
33
33
|
|
|
34
34
|
/**
|
|
35
35
|
* ChannelList component props
|
|
@@ -48,7 +48,7 @@ export declare interface ChannelListProps {
|
|
|
48
48
|
/**
|
|
49
49
|
* Channel view component with message list and input
|
|
50
50
|
*/
|
|
51
|
-
export declare const ChannelView: default_2.
|
|
51
|
+
export declare const ChannelView: default_2.NamedExoticComponent<ChannelViewProps>;
|
|
52
52
|
|
|
53
53
|
/**
|
|
54
54
|
* ChannelView component props
|