@vlprojects-chat/chat 0.0.27 → 0.0.31

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.
Files changed (54) hide show
  1. package/dist/Chat.d.ts +1 -0
  2. package/dist/api/Api.d.ts +9 -13
  3. package/dist/api/index.d.ts +1 -1
  4. package/dist/components/MessageInput/components/MessageInputActions/MessageInputActions.d.ts +5 -0
  5. package/dist/components/MessageInput/components/MessageInputActions/index.d.ts +1 -0
  6. package/dist/components/MessageInput/index.d.ts +1 -0
  7. package/dist/components/MessageList/MessageList.d.ts +0 -2
  8. package/dist/components/MessageList/components/MessageActions/MessageActions.d.ts +1 -1
  9. package/dist/components/MessageList/components/MessageRow/MessageRow.d.ts +8 -0
  10. package/dist/components/MessageList/components/MessageRow/index.d.ts +1 -0
  11. package/dist/components/MessageList/components/SystemMessage/SystemMessage.d.ts +2 -2
  12. package/dist/components/MessageList/components/SystemMessage/components/ChangedChannel/ChangedChannel.d.ts +7 -0
  13. package/dist/components/MessageList/components/SystemMessage/components/ChangedChannel/index.d.ts +1 -0
  14. package/dist/components/MessageList/components/SystemMessage/components/UserChanged/UserChanged.d.ts +7 -0
  15. package/dist/components/MessageList/components/SystemMessage/components/UserChanged/index.d.ts +1 -0
  16. package/dist/components/MessageList/components/SystemMessage/components/UserChangedChannel/UserChangedChannel.d.ts +7 -0
  17. package/dist/components/MessageList/components/SystemMessage/components/UserChangedChannel/index.d.ts +1 -0
  18. package/dist/components/MessageList/components/SystemMessage/components/UserJoined/UserJoined.d.ts +7 -0
  19. package/dist/components/MessageList/components/SystemMessage/components/UserJoined/index.d.ts +1 -0
  20. package/dist/components/MessageList/components/UserMessage/UserMessage.d.ts +6 -10
  21. package/dist/components/MessageList/components/UserMessage/styles.d.ts +4 -2
  22. package/dist/components/MessageList/styles.d.ts +1 -1
  23. package/dist/components/SubHeader/styles.d.ts +1 -1
  24. package/dist/containers/ChannelPage/ChannelPage.d.ts +3 -3
  25. package/dist/containers/ChannelPage/service.d.ts +2 -0
  26. package/dist/containers/Channels/styles.d.ts +1 -1
  27. package/dist/containers/CreatePollPage/styles.d.ts +1 -1
  28. package/dist/containers/PollListPage/services.d.ts +1 -1
  29. package/dist/containers/PollPortal/services.d.ts +1 -1
  30. package/dist/containers/PollPortal/styles.d.ts +1 -1
  31. package/dist/hoc/MoreButtonHOC.d.ts +1 -1
  32. package/dist/index.es.js +21 -21
  33. package/dist/index.js +21 -21
  34. package/dist/keystone/auth.d.ts +1 -0
  35. package/dist/keystone/chat/channel.d.ts +2 -0
  36. package/dist/keystone/chat/message.d.ts +36 -0
  37. package/dist/keystone/chat/user.d.ts +2 -3
  38. package/dist/keystone/service.d.ts +1 -0
  39. package/dist/keystone/settings.d.ts +4 -1
  40. package/dist/keystone/socket.d.ts +1 -1
  41. package/dist/locales/index.d.ts +14 -0
  42. package/dist/theme/consts.d.ts +3 -1
  43. package/dist/types/const.d.ts +1 -0
  44. package/dist/types/serverResponses.d.ts +1 -0
  45. package/dist/types/socketEvents.d.ts +3 -1
  46. package/dist/ui-kit/HeaderTitle/HeaderTitile.d.ts +8 -0
  47. package/dist/ui-kit/HeaderTitle/index.d.ts +1 -0
  48. package/dist/ui-kit/{ChannelName → HeaderTitle}/styles.d.ts +1 -1
  49. package/dist/ui-kit/components/Button/index.d.ts +1 -1
  50. package/dist/ui-kit/components/Button/styles.d.ts +1 -1
  51. package/dist/utils/common.d.ts +1 -0
  52. package/package.json +9 -27
  53. package/dist/ui-kit/ChannelName/ChannelName.d.ts +0 -6
  54. package/dist/ui-kit/ChannelName/index.d.ts +0 -1
@@ -21,6 +21,7 @@ declare const Auth_base: import("mobx-keystone")._Model<unknown, {
21
21
  }>>>;
22
22
  export default class Auth extends Auth_base {
23
23
  setAccessToken(token: string): void;
24
+ get isModerator(): boolean;
24
25
  setMe(user: IRUser): void;
25
26
  }
26
27
  export {};
@@ -50,6 +50,8 @@ export default class Channel extends Channel_base {
50
50
  closePollPortal(): void;
51
51
  pollResult(poll: Poll): void;
52
52
  setPinnedMessages(items: Array<IRPinnedMessage | PinnedMessage>): void;
53
+ cleanAllMessages(): void;
54
+ deleteMessages(ids: number[]): void;
53
55
  get sortedMessages(): Message[];
54
56
  get messagesCount(): number;
55
57
  get userList(): User[];
@@ -1,26 +1,62 @@
1
1
  import { Ref } from 'mobx-keystone';
2
2
  import { MessageTypeEnum } from '../../types/enums';
3
3
  import User from './user';
4
+ import { Root } from '../index';
5
+ export declare enum SystemMessageEnum {
6
+ UserJoinedEvent = "user-joined",
7
+ UserChangedEvent = "user-changed",
8
+ UserChangedChannelEvent = "user-changed-channel",
9
+ ChangedChannelEvent = "changed-channel"
10
+ }
11
+ export interface SystemData {
12
+ event: SystemMessageEnum;
13
+ whoJoined?: Ref<User>;
14
+ whoRenamedChannel?: Ref<User>;
15
+ oldDisplayName?: string;
16
+ newDisplayName?: string;
17
+ newName?: string;
18
+ }
19
+ export interface UserJoinedPayload {
20
+ userId: string;
21
+ }
22
+ export interface UserChangedPayload {
23
+ oldDisplayName: string;
24
+ newDisplayName: string;
25
+ }
26
+ export interface UserChangedChannelPayload {
27
+ userId: string;
28
+ newName: string;
29
+ }
30
+ export interface ChangedChannelEventPayload {
31
+ newName: string;
32
+ }
4
33
  declare const Message_base: import("mobx-keystone")._Model<unknown, {
5
34
  id: import("mobx-keystone").MaybeOptionalModelProp<string>;
6
35
  text: import("mobx-keystone").MaybeOptionalModelProp<string>;
7
36
  type: import("mobx-keystone").MaybeOptionalModelProp<MessageTypeEnum>;
8
37
  user: import("mobx-keystone").MaybeOptionalModelProp<Ref<User> | null>;
9
38
  createdAt: import("mobx-keystone").MaybeOptionalModelProp<string>;
39
+ meta: import("mobx-keystone").MaybeOptionalModelProp<Record<string, unknown>>;
40
+ systemData: import("mobx-keystone").MaybeOptionalModelProp<SystemData | null>;
10
41
  }, import("mobx-keystone").SnapshotInOfObject<import("mobx-keystone").ModelPropsToCreationData<{
11
42
  id: import("mobx-keystone").MaybeOptionalModelProp<string>;
12
43
  text: import("mobx-keystone").MaybeOptionalModelProp<string>;
13
44
  type: import("mobx-keystone").MaybeOptionalModelProp<MessageTypeEnum>;
14
45
  user: import("mobx-keystone").MaybeOptionalModelProp<Ref<User> | null>;
15
46
  createdAt: import("mobx-keystone").MaybeOptionalModelProp<string>;
47
+ meta: import("mobx-keystone").MaybeOptionalModelProp<Record<string, unknown>>;
48
+ systemData: import("mobx-keystone").MaybeOptionalModelProp<SystemData | null>;
16
49
  }>>, import("mobx-keystone").SnapshotOutOfObject<import("mobx-keystone").ModelPropsToData<{
17
50
  id: import("mobx-keystone").MaybeOptionalModelProp<string>;
18
51
  text: import("mobx-keystone").MaybeOptionalModelProp<string>;
19
52
  type: import("mobx-keystone").MaybeOptionalModelProp<MessageTypeEnum>;
20
53
  user: import("mobx-keystone").MaybeOptionalModelProp<Ref<User> | null>;
21
54
  createdAt: import("mobx-keystone").MaybeOptionalModelProp<string>;
55
+ meta: import("mobx-keystone").MaybeOptionalModelProp<Record<string, unknown>>;
56
+ systemData: import("mobx-keystone").MaybeOptionalModelProp<SystemData | null>;
22
57
  }>>>;
23
58
  export default class Message extends Message_base {
24
59
  get getUser(): User | undefined;
60
+ loadSystemData(root: Root, event: SystemMessageEnum, data: unknown): void;
25
61
  }
26
62
  export {};
@@ -1,28 +1,27 @@
1
1
  import { AvatarColorEnum } from 'theme/consts';
2
2
  import { UserRoleEnum } from '../../types/enums';
3
+ export declare const getColorFromString: (colors: string[], str?: string | null | undefined) => keyof typeof AvatarColorEnum;
3
4
  declare const User_base: import("mobx-keystone")._Model<unknown, {
4
5
  id: import("mobx-keystone").OptionalModelProp<string>;
5
6
  username: import("mobx-keystone").OptionalModelProp<string>;
6
7
  displayName: import("mobx-keystone").OptionalModelProp<string>;
7
8
  avatarUrl: import("mobx-keystone").OptionalModelProp<string>;
8
- avatarColor: import("mobx-keystone").OptionalModelProp<AvatarColorEnum>;
9
9
  role: import("mobx-keystone").OptionalModelProp<UserRoleEnum>;
10
10
  }, import("mobx-keystone").SnapshotInOfObject<import("mobx-keystone").ModelPropsToCreationData<{
11
11
  id: import("mobx-keystone").OptionalModelProp<string>;
12
12
  username: import("mobx-keystone").OptionalModelProp<string>;
13
13
  displayName: import("mobx-keystone").OptionalModelProp<string>;
14
14
  avatarUrl: import("mobx-keystone").OptionalModelProp<string>;
15
- avatarColor: import("mobx-keystone").OptionalModelProp<AvatarColorEnum>;
16
15
  role: import("mobx-keystone").OptionalModelProp<UserRoleEnum>;
17
16
  }>>, import("mobx-keystone").SnapshotOutOfObject<import("mobx-keystone").ModelPropsToData<{
18
17
  id: import("mobx-keystone").OptionalModelProp<string>;
19
18
  username: import("mobx-keystone").OptionalModelProp<string>;
20
19
  displayName: import("mobx-keystone").OptionalModelProp<string>;
21
20
  avatarUrl: import("mobx-keystone").OptionalModelProp<string>;
22
- avatarColor: import("mobx-keystone").OptionalModelProp<AvatarColorEnum>;
23
21
  role: import("mobx-keystone").OptionalModelProp<UserRoleEnum>;
24
22
  }>>>;
25
23
  export default class User extends User_base {
24
+ get getAvatarColor(): AvatarColorEnum;
26
25
  }
27
26
  export declare const userRef: import("mobx-keystone").RefConstructor<User>;
28
27
  export {};
@@ -3,6 +3,7 @@ export declare const getInitialData: (root: Root) => Promise<void>;
3
3
  export declare const login: (root: Root, username: string, password?: string | undefined) => Promise<void>;
4
4
  export declare const signup: (root: Root, username: string, password?: string | undefined) => Promise<void>;
5
5
  export declare const saveProfile: (root: Root, displayName: string, avatar?: string | undefined) => Promise<void>;
6
+ export declare const loadChannelPolls: (root: Root, channelId: string) => Promise<void>;
6
7
  export declare const joinChannel: (root: Root, id: string) => Promise<void>;
7
8
  export declare const joinChannelByExternalId: (root: Root, externalId: string) => Promise<void>;
8
9
  export declare const redirectToInitial: (root: Root) => Promise<void> | void;
@@ -8,6 +8,7 @@ declare const Settings_base: import("mobx-keystone")._Model<unknown, {
8
8
  displayChannelList: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
9
9
  displaySystemMessages: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
10
10
  displayHeader: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
11
+ socketUrl: import("mobx-keystone").ModelProp<string, string | null | undefined, string, string | null | undefined, string, false, string>;
11
12
  }, import("mobx-keystone").SnapshotInOfObject<import("mobx-keystone").ModelPropsToCreationData<{
12
13
  createChannelAllowed: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
13
14
  accessUnregisteredUsers: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
@@ -18,6 +19,7 @@ declare const Settings_base: import("mobx-keystone")._Model<unknown, {
18
19
  displayChannelList: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
19
20
  displaySystemMessages: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
20
21
  displayHeader: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
22
+ socketUrl: import("mobx-keystone").ModelProp<string, string | null | undefined, string, string | null | undefined, string, false, string>;
21
23
  }>>, import("mobx-keystone").SnapshotOutOfObject<import("mobx-keystone").ModelPropsToData<{
22
24
  createChannelAllowed: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
23
25
  accessUnregisteredUsers: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
@@ -28,9 +30,10 @@ declare const Settings_base: import("mobx-keystone")._Model<unknown, {
28
30
  displayChannelList: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
29
31
  displaySystemMessages: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
30
32
  displayHeader: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
33
+ socketUrl: import("mobx-keystone").ModelProp<string, string | null | undefined, string, string | null | undefined, string, false, string>;
31
34
  }>>>;
32
35
  export default class Settings extends Settings_base {
33
- setAll({ createChannelAllowed, accessUnregisteredUsers, accessChatGuest, accessRegister, displayDirect, displayUserList, displayChannelList, displaySystemMessages, displayHeader, }: Record<string, any>): void;
36
+ setAll({ createChannelAllowed, accessUnregisteredUsers, accessChatGuest, accessRegister, displayDirect, displayUserList, displayChannelList, displaySystemMessages, displayHeader, socketUrl, }: Record<string, any>): void;
34
37
  get authMode(): number;
35
38
  }
36
39
  export {};
@@ -6,6 +6,6 @@ declare const SocketStore_base: import("mobx-keystone")._Model<unknown, {
6
6
  isSocketConnected: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
7
7
  }>>>;
8
8
  export default class SocketStore extends SocketStore_base {
9
- connect(accessToken: string): void;
9
+ connect(socketUrl: string, accessToken: string): void;
10
10
  }
11
11
  export {};
@@ -1,5 +1,6 @@
1
1
  declare const _default: {
2
2
  en: {
3
+ globalError: string;
3
4
  messageInputPlaceholder: string;
4
5
  channelName: string;
5
6
  newChannel: string;
@@ -56,8 +57,15 @@ declare const _default: {
56
57
  questionValidateNotLongerLetters: string;
57
58
  joined: string;
58
59
  channelCreated: string;
60
+ pinMessage: string;
61
+ deleteMessage: string;
62
+ deleteAllMessage: string;
63
+ systemMessageChangedName: string;
64
+ systemMessageUserChangedChannelName: string;
65
+ systemMessageChangedChannelName: string;
59
66
  };
60
67
  ru: {
68
+ globalError: string;
61
69
  messageInputPlaceholder: string;
62
70
  channelName: string;
63
71
  newChannel: string;
@@ -114,6 +122,12 @@ declare const _default: {
114
122
  questionValidateNotLongerLetters: string;
115
123
  joined: string;
116
124
  channelCreated: string;
125
+ pinMessage: string;
126
+ deleteMessage: string;
127
+ deleteAllMessage: string;
128
+ systemMessageChangedName: string;
129
+ systemMessageUserChangedChannelName: string;
130
+ systemMessageChangedChannelName: string;
117
131
  };
118
132
  };
119
133
  export default _default;
@@ -1,5 +1,8 @@
1
1
  export declare const HEADER_HEIGHT = 68;
2
2
  export declare const CHAT_MESSAGE_SUBMIT_FOOTER_HEIGHT = 60;
3
+ export declare const BREAKPOINTS: {
4
+ SM: number;
5
+ };
3
6
  export declare const zINDEX: {
4
7
  HEADER: number;
5
8
  };
@@ -27,7 +30,6 @@ export declare const COLOURS: {
27
30
  LIGHT_02: string;
28
31
  LIGHT_03: string;
29
32
  LIGHT_04: string;
30
- ACTIVE: string;
31
33
  BLUE: string;
32
34
  AVATAR1_BURGUNDY: string;
33
35
  AVATAR2_RED: string;
@@ -4,4 +4,5 @@ export declare enum Cookie {
4
4
  export declare const APP_ID = "livedigital-chat";
5
5
  export declare const rootDivAttrAppId = "data-appId";
6
6
  export declare const rootDivAttrChatId = "data-chatid";
7
+ export declare const rootDivAttrApiUrl = "data-apiUrl";
7
8
  export declare const POLL_CONTAINER = "poll-container";
@@ -13,6 +13,7 @@ export interface IRChannelMessage {
13
13
  type: MessageTypeEnum;
14
14
  userId: string;
15
15
  createdAt: string;
16
+ meta: Record<string, unknown>;
16
17
  }
17
18
  export interface ISEMessage {
18
19
  channelId: string;
@@ -8,6 +8,8 @@ declare enum SocketEventsEnum {
8
8
  PollStop = "poll-stop",
9
9
  PollVote = "poll-vote",
10
10
  UserUpdateProfile = "user-update-profile",
11
- MessagePinned = "message-pinned"
11
+ MessagePinned = "message-pinned",
12
+ DeleteMessages = "delete-messages",
13
+ CleanChannelMessages = "clean-channel-messages"
12
14
  }
13
15
  export default SocketEventsEnum;
@@ -0,0 +1,8 @@
1
+ import { FC } from 'react';
2
+ interface IProps {
3
+ title?: string;
4
+ active?: boolean;
5
+ sx?: Record<string, string>;
6
+ }
7
+ declare const HeaderTitle: FC<IProps>;
8
+ export default HeaderTitle;
@@ -0,0 +1 @@
1
+ export { default } from './HeaderTitile';
@@ -1,2 +1,2 @@
1
- declare const _default: (props?: any) => import("@mui/styles").ClassNameMap<"root">;
1
+ declare const _default: (props?: any) => import("@mui/styles").ClassNameMap<"root" | "active">;
2
2
  export default _default;
@@ -4,7 +4,7 @@ interface ButtonProps {
4
4
  onClick?: React.MouseEventHandler<HTMLButtonElement>;
5
5
  fullWidth?: boolean;
6
6
  disabled?: boolean;
7
- variant?: 'contained' | 'text' | 'submit' | 'outlined' | 'flatTransparent' | 'link' | 'active';
7
+ variant?: 'contained' | 'text' | 'submit' | 'outlined' | 'flatTransparent' | 'link' | 'primary';
8
8
  size?: 'large' | 'medium' | 'small';
9
9
  className?: string;
10
10
  [prop: string]: unknown;
@@ -1,2 +1,2 @@
1
- declare const _default: (props?: any) => import("@mui/styles").ClassNameMap<"button" | "medium" | "text" | "large" | "small" | "active" | "contained" | "outlined" | "flatTransparent" | "fullWidth" | "submit" | "link">;
1
+ declare const _default: (props?: any) => import("@mui/styles").ClassNameMap<"button" | "medium" | "text" | "large" | "small" | "contained" | "outlined" | "flatTransparent" | "fullWidth" | "submit" | "link" | "primary">;
2
2
  export default _default;
@@ -3,5 +3,6 @@ import Poll from '../keystone/chat/poll';
3
3
  export declare const findAppInitialData: () => {
4
4
  channelIdFromAttr?: string | null | undefined;
5
5
  appIdFromAttr?: string | null | undefined;
6
+ apiUrlFromAttr?: string | null | undefined;
6
7
  };
7
8
  export declare const convertServerPollToModel: (poll: IServerPoll) => Poll;
package/package.json CHANGED
@@ -1,14 +1,12 @@
1
1
  {
2
2
  "name": "@vlprojects-chat/chat",
3
3
  "author": "vlprojects",
4
- "version": "0.0.27",
4
+ "version": "0.0.31",
5
5
  "description": "chat",
6
6
  "license": "ISC",
7
7
  "main": "dist/index.js",
8
8
  "module": "dist/index.es.js",
9
- "files": [
10
- "dist"
11
- ],
9
+ "files": ["dist"],
12
10
  "types": "dist/lib/index.d.ts",
13
11
  "repository": {
14
12
  "type": "git",
@@ -25,22 +23,11 @@
25
23
  "mock": "json-server --watch ./src/mock-data/channels.json --routes ./src/mock-data/routes.json --port 8000"
26
24
  },
27
25
  "eslintConfig": {
28
- "extends": [
29
- "react-app",
30
- "react-app/jest"
31
- ]
26
+ "extends": ["react-app", "react-app/jest"]
32
27
  },
33
28
  "browserslist": {
34
- "production": [
35
- ">0.2%",
36
- "not dead",
37
- "not op_mini all"
38
- ],
39
- "development": [
40
- "last 1 chrome version",
41
- "last 1 firefox version",
42
- "last 1 safari version"
43
- ]
29
+ "production": [">0.2%", "not dead", "not op_mini all"],
30
+ "development": ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"]
44
31
  },
45
32
  "dependencies": {
46
33
  "@emotion/react": "^11.5.0",
@@ -65,14 +52,12 @@
65
52
  "mobx-utils": "^6.0.4",
66
53
  "notistack": "^2.0.2",
67
54
  "qs": "^6.10.1",
68
- "react-custom-scrollbars-2": "^4.4.0",
69
55
  "react-final-form": "^6.5.7",
70
56
  "react-final-form-arrays": "^3.1.3",
57
+ "react-intersection-observer": "^8.33.0",
71
58
  "react-intl": "^5.21.0",
72
- "react-virtualized": "^9.22.3",
73
- "route-parser": "^0.0.5",
74
- "socket.io-client": "^4.3.2",
75
- "username-generator": "^1.1.0"
59
+ "react-virtuoso": "^2.2.8",
60
+ "route-parser": "^0.0.5"
76
61
  },
77
62
  "devDependencies": {
78
63
  "@rollup/plugin-alias": "^3.1.6",
@@ -93,7 +78,6 @@
93
78
  "@types/react-dom": "^17.0.10",
94
79
  "@types/react-linkify": "^1.0.1",
95
80
  "@types/react-router-dom": "^5.3.1",
96
- "@types/react-virtualized": "^9.21.14",
97
81
  "@types/route-parser": "^0.1.3",
98
82
  "@types/socket.io": "^3.0.2",
99
83
  "@typescript-eslint/eslint-plugin": "^4.33.0",
@@ -139,7 +123,5 @@
139
123
  "url": "https://github.com/VLprojects/chat/issues"
140
124
  },
141
125
  "homepage": "https://github.com/VLprojects/chat#readme",
142
- "keywords": [
143
- "chat"
144
- ]
126
+ "keywords": ["chat"]
145
127
  }
@@ -1,6 +0,0 @@
1
- import { FC } from 'react';
2
- interface IProps {
3
- name: string;
4
- }
5
- declare const ChannelName: FC<IProps>;
6
- export default ChannelName;
@@ -1 +0,0 @@
1
- export { default } from './ChannelName';