@vlprojects-chat/chat 0.0.29 → 0.0.33

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.
@@ -0,0 +1,6 @@
1
+ import { FC } from 'react';
2
+ interface ILoadingStatus {
3
+ intlId: string;
4
+ }
5
+ declare const LoadingStatus: FC<ILoadingStatus>;
6
+ export default LoadingStatus;
@@ -0,0 +1 @@
1
+ export { default } from './LoadingStatus';
@@ -0,0 +1,2 @@
1
+ declare const _default: (props?: any) => import("@mui/styles").ClassNameMap<"root">;
2
+ export default _default;
@@ -1,6 +1,7 @@
1
1
  import { FC } from 'react';
2
+ import Message from '../../../../../../keystone/chat/message';
2
3
  interface IChangedChannel {
3
- name?: string;
4
+ message: Message;
4
5
  }
5
6
  declare const ChangedChannel: FC<IChangedChannel>;
6
7
  export default ChangedChannel;
@@ -1,7 +1,7 @@
1
1
  import { FC } from 'react';
2
+ import Message from '../../../../../../keystone/chat/message';
2
3
  interface IUserChanged {
3
- oldName?: string;
4
- name?: string;
4
+ message: Message;
5
5
  }
6
6
  declare const UserChanged: FC<IUserChanged>;
7
7
  export default UserChanged;
@@ -1,7 +1,7 @@
1
1
  import { FC } from 'react';
2
+ import Message from '../../../../../../keystone/chat/message';
2
3
  interface IUserChangedChannel {
3
- userName?: string;
4
- channelName?: string;
4
+ message: Message;
5
5
  }
6
6
  declare const UserChangedChannel: FC<IUserChangedChannel>;
7
7
  export default UserChangedChannel;
@@ -1,6 +1,7 @@
1
- import { FC } from 'react';
1
+ import React from 'react';
2
+ import Message from '../../../../../../keystone/chat/message';
2
3
  interface IUserJoined {
3
- name?: string;
4
+ message: Message;
4
5
  }
5
- declare const UserJoined: FC<IUserJoined>;
6
- export default UserJoined;
6
+ declare const _default: React.FunctionComponent<IUserJoined>;
7
+ export default _default;