@vlprojects-chat/chat 0.0.31 → 0.0.36
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/components/LoadingStatus/LoadingStatus.d.ts +6 -0
- package/dist/components/LoadingStatus/index.d.ts +1 -0
- package/dist/components/LoadingStatus/styles.d.ts +2 -0
- package/dist/index.es.js +141 -105
- package/dist/index.js +130 -108
- package/dist/keystone/ui.d.ts +0 -3
- package/dist/locales/index.d.ts +6 -0
- package/dist/theme/consts.d.ts +1 -0
- package/package.json +2 -1
package/dist/keystone/ui.d.ts
CHANGED
|
@@ -2,19 +2,16 @@ declare const UI_base: import("mobx-keystone")._Model<unknown, {
|
|
|
2
2
|
route: import("mobx-keystone").OptionalModelProp<string>;
|
|
3
3
|
channelId: import("mobx-keystone").ModelProp<string, string | null | undefined, string, string | null | undefined, string, false, string>;
|
|
4
4
|
params: import("mobx-keystone").ModelProp<Record<string, unknown>, Record<string, unknown> | null | undefined, Record<string, unknown>, Record<string, unknown> | null | undefined, string, false, string>;
|
|
5
|
-
initialized: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
|
|
6
5
|
pinnedMessageIdx: import("mobx-keystone").ModelProp<Record<string, number>, Record<string, number> | null | undefined, Record<string, number>, Record<string, number> | null | undefined, string, false, string>;
|
|
7
6
|
}, import("mobx-keystone").SnapshotInOfObject<import("mobx-keystone").ModelPropsToCreationData<{
|
|
8
7
|
route: import("mobx-keystone").OptionalModelProp<string>;
|
|
9
8
|
channelId: import("mobx-keystone").ModelProp<string, string | null | undefined, string, string | null | undefined, string, false, string>;
|
|
10
9
|
params: import("mobx-keystone").ModelProp<Record<string, unknown>, Record<string, unknown> | null | undefined, Record<string, unknown>, Record<string, unknown> | null | undefined, string, false, string>;
|
|
11
|
-
initialized: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
|
|
12
10
|
pinnedMessageIdx: import("mobx-keystone").ModelProp<Record<string, number>, Record<string, number> | null | undefined, Record<string, number>, Record<string, number> | null | undefined, string, false, string>;
|
|
13
11
|
}>>, import("mobx-keystone").SnapshotOutOfObject<import("mobx-keystone").ModelPropsToData<{
|
|
14
12
|
route: import("mobx-keystone").OptionalModelProp<string>;
|
|
15
13
|
channelId: import("mobx-keystone").ModelProp<string, string | null | undefined, string, string | null | undefined, string, false, string>;
|
|
16
14
|
params: import("mobx-keystone").ModelProp<Record<string, unknown>, Record<string, unknown> | null | undefined, Record<string, unknown>, Record<string, unknown> | null | undefined, string, false, string>;
|
|
17
|
-
initialized: import("mobx-keystone").ModelProp<boolean, boolean | null | undefined, boolean, boolean | null | undefined, string, false, string>;
|
|
18
15
|
pinnedMessageIdx: import("mobx-keystone").ModelProp<Record<string, number>, Record<string, number> | null | undefined, Record<string, number>, Record<string, number> | null | undefined, string, false, string>;
|
|
19
16
|
}>>>;
|
|
20
17
|
export default class UI extends UI_base {
|
package/dist/locales/index.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
en: {
|
|
3
|
+
loadingSocket: string;
|
|
4
|
+
loadingInitial: string;
|
|
5
|
+
loadingSettings: string;
|
|
3
6
|
globalError: string;
|
|
4
7
|
messageInputPlaceholder: string;
|
|
5
8
|
channelName: string;
|
|
@@ -65,6 +68,9 @@ declare const _default: {
|
|
|
65
68
|
systemMessageChangedChannelName: string;
|
|
66
69
|
};
|
|
67
70
|
ru: {
|
|
71
|
+
loadingSocket: string;
|
|
72
|
+
loadingInitial: string;
|
|
73
|
+
loadingSettings: string;
|
|
68
74
|
globalError: string;
|
|
69
75
|
messageInputPlaceholder: string;
|
|
70
76
|
channelName: string;
|
package/dist/theme/consts.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vlprojects-chat/chat",
|
|
3
3
|
"author": "vlprojects",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.36",
|
|
5
5
|
"description": "chat",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"mobx-utils": "^6.0.4",
|
|
53
53
|
"notistack": "^2.0.2",
|
|
54
54
|
"qs": "^6.10.1",
|
|
55
|
+
"react-error-boundary": "^3.1.4",
|
|
55
56
|
"react-final-form": "^6.5.7",
|
|
56
57
|
"react-final-form-arrays": "^3.1.3",
|
|
57
58
|
"react-intersection-observer": "^8.33.0",
|