@vlprojects-chat/chat 0.0.49 → 0.0.50
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.
|
@@ -60,6 +60,7 @@ export default class Channel extends Channel_base {
|
|
|
60
60
|
get messagesCount(): number;
|
|
61
61
|
get userList(): User[];
|
|
62
62
|
get getActivePoll(): Poll | undefined;
|
|
63
|
+
get isPollsInProgress(): boolean;
|
|
63
64
|
get getPinnedMessages(): PinnedMessage[];
|
|
64
65
|
get lastPinnedMessage(): PinnedMessage;
|
|
65
66
|
get getPollTemplates(): Poll[];
|
package/dist/keystone/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ declare const Root_base: import("mobx-keystone")._Model<unknown, {
|
|
|
24
24
|
}>>>;
|
|
25
25
|
export declare class Root extends Root_base {
|
|
26
26
|
get currentChannel(): import("./chat/channel").default | undefined;
|
|
27
|
+
init(): void;
|
|
27
28
|
}
|
|
28
|
-
export declare const createRootStore: () => Root;
|
|
29
29
|
declare const useKeystone: () => Root;
|
|
30
30
|
export default useKeystone;
|
package/dist/locales/index.d.ts
CHANGED
|
@@ -92,6 +92,8 @@ declare const _default: {
|
|
|
92
92
|
done: string;
|
|
93
93
|
in_progress: string;
|
|
94
94
|
new: string;
|
|
95
|
+
areYouSure: string;
|
|
96
|
+
anotherPollInProgress: string;
|
|
95
97
|
};
|
|
96
98
|
ru: {
|
|
97
99
|
loadingSocket: string;
|
|
@@ -185,6 +187,8 @@ declare const _default: {
|
|
|
185
187
|
done: string;
|
|
186
188
|
in_progress: string;
|
|
187
189
|
new: string;
|
|
190
|
+
areYouSure: string;
|
|
191
|
+
anotherPollInProgress: string;
|
|
188
192
|
};
|
|
189
193
|
};
|
|
190
194
|
export default _default;
|