@vlprojects-chat/chat 0.0.32 → 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.
- 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 +124 -110
- package/dist/index.js +110 -110
- package/dist/keystone/ui.d.ts +0 -3
- package/dist/locales/index.d.ts +6 -0
- package/package.json +1 -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;
|