@pristy/pristy-libvue 1.9.1 → 1.10.0

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 (50) hide show
  1. package/dist/components/chat/ChatInput.vue.d.ts +49 -0
  2. package/dist/components/chat/ChatInput.vue.d.ts.map +1 -0
  3. package/dist/components/chat/ChatMessage.vue.d.ts +40 -0
  4. package/dist/components/chat/ChatMessage.vue.d.ts.map +1 -0
  5. package/dist/components/chat/ChatPanel.vue.d.ts +433 -0
  6. package/dist/components/chat/ChatPanel.vue.d.ts.map +1 -0
  7. package/dist/components/chat/ChatRoomList.vue.d.ts +51 -0
  8. package/dist/components/chat/ChatRoomList.vue.d.ts.map +1 -0
  9. package/dist/components/config/ConfigItemEditor.vue.d.ts +12 -0
  10. package/dist/components/config/ConfigItemEditor.vue.d.ts.map +1 -0
  11. package/dist/components/config/ConfigSplitView.vue.d.ts +14 -0
  12. package/dist/components/config/ConfigSplitView.vue.d.ts.map +1 -0
  13. package/dist/components/navigation/ContentListView.vue.d.ts.map +1 -1
  14. package/dist/components/navigation/DynamicContentView.vue.d.ts +36 -32
  15. package/dist/components/navigation/DynamicContentView.vue.d.ts.map +1 -1
  16. package/dist/components/popup/CopyOrMovePopup.vue.d.ts.map +1 -1
  17. package/dist/components/popup/CreateWorkflowPopup.vue.d.ts +8 -4
  18. package/dist/components/popup/CreateWorkflowPopup.vue.d.ts.map +1 -1
  19. package/dist/components/popup/ImportNewVersionPopup.vue.d.ts.map +1 -1
  20. package/dist/components/popup/ImportPopupWithWorker.vue.d.ts.map +1 -1
  21. package/dist/components/popup/SendMailPopup.vue.d.ts.map +1 -1
  22. package/dist/components/popup/ShareLinkPopup.vue.d.ts.map +1 -1
  23. package/dist/composables/useChatWebSocket.d.ts +20 -0
  24. package/dist/composables/useChatWebSocket.d.ts.map +1 -0
  25. package/dist/composables/useCollabEditor.d.ts.map +1 -1
  26. package/dist/i18n/index.d.ts +94 -0
  27. package/dist/i18n/index.d.ts.map +1 -1
  28. package/dist/index.d.ts +12 -1
  29. package/dist/index.d.ts.map +1 -1
  30. package/dist/pages/ErrorPage.vue.d.ts.map +1 -1
  31. package/dist/pages/LoginPage.vue.d.ts.map +1 -1
  32. package/dist/pages/NotFoundPages.vue.d.ts.map +1 -1
  33. package/dist/pristy-libvue.css +1 -1
  34. package/dist/pristy-libvue.es.js +10321 -8295
  35. package/dist/pristy-libvue.es.js.map +1 -1
  36. package/dist/pristy-libvue.umd.js +19 -19
  37. package/dist/pristy-libvue.umd.js.map +1 -1
  38. package/dist/services/ChatBackendService.d.ts +72 -0
  39. package/dist/services/ChatBackendService.d.ts.map +1 -0
  40. package/dist/services/CollabService.d.ts +12 -2
  41. package/dist/services/CollabService.d.ts.map +1 -1
  42. package/dist/services/RocketChatAuthService.d.ts +79 -0
  43. package/dist/services/RocketChatAuthService.d.ts.map +1 -0
  44. package/dist/services/RocketChatService.d.ts +102 -0
  45. package/dist/services/RocketChatService.d.ts.map +1 -0
  46. package/dist/stores/chat.d.ts +337 -0
  47. package/dist/stores/chat.d.ts.map +1 -0
  48. package/dist/stores/config.d.ts +15 -0
  49. package/dist/stores/config.d.ts.map +1 -1
  50. package/package.json +1 -1
@@ -0,0 +1,49 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { default as Button } from 'primevue/button';
3
+ import { default as Textarea } from 'primevue/textarea';
4
+ declare const _default: DefineComponent<ExtractPropTypes<{
5
+ disabled: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ typingUsers: {
10
+ type: ArrayConstructor;
11
+ default: () => any[];
12
+ };
13
+ }>, {}, {
14
+ message: string;
15
+ selectedFiles: any[];
16
+ typingTimeout: any;
17
+ isTyping: boolean;
18
+ }, {
19
+ canSend(): boolean;
20
+ typingText(): string;
21
+ }, {
22
+ handleKeyDown(event: any): void;
23
+ handleInput(): void;
24
+ sendMessage(): void;
25
+ triggerFileInput(): void;
26
+ handleFileSelect(event: any): void;
27
+ removeFile(index: any): void;
28
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("send" | "upload" | "typing")[], "send" | "upload" | "typing", PublicProps, Readonly< ExtractPropTypes<{
29
+ disabled: {
30
+ type: BooleanConstructor;
31
+ default: boolean;
32
+ };
33
+ typingUsers: {
34
+ type: ArrayConstructor;
35
+ default: () => any[];
36
+ };
37
+ }>> & Readonly<{
38
+ onSend?: (...args: any[]) => any;
39
+ onUpload?: (...args: any[]) => any;
40
+ onTyping?: (...args: any[]) => any;
41
+ }>, {
42
+ disabled: boolean;
43
+ typingUsers: unknown[];
44
+ }, {}, {
45
+ PrimeButton: typeof Button;
46
+ PrimeTextarea: typeof Textarea;
47
+ }, {}, string, ComponentProvideOptions, true, {}, any>;
48
+ export default _default;
49
+ //# sourceMappingURL=ChatInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChatInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/chat/ChatInput.vue"],"names":[],"mappings":";AA8FA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAiUmB,iBAAiB;qBACf,mBAAmB"}
@@ -0,0 +1,40 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { default as Avatar } from 'primevue/avatar';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ message: {
5
+ type: ObjectConstructor;
6
+ required: true;
7
+ };
8
+ currentUserId: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ };
12
+ }>, {}, {}, {
13
+ isOwnMessage(): boolean;
14
+ isSystemMessage(): boolean;
15
+ hasAttachments(): boolean;
16
+ avatarLabel(): any;
17
+ avatarColor(): string;
18
+ formattedTime(): string;
19
+ }, {
20
+ isImageAttachment(attachment: any): boolean;
21
+ getAttachmentUrl(attachment: any): any;
22
+ openAttachment(attachment: any): void;
23
+ }, ComponentOptionsMixin, ComponentOptionsMixin, "attachment-click"[], "attachment-click", PublicProps, Readonly< ExtractPropTypes<{
24
+ message: {
25
+ type: ObjectConstructor;
26
+ required: true;
27
+ };
28
+ currentUserId: {
29
+ type: StringConstructor;
30
+ default: string;
31
+ };
32
+ }>> & Readonly<{
33
+ "onAttachment-click"?: (...args: any[]) => any;
34
+ }>, {
35
+ currentUserId: string;
36
+ }, {}, {
37
+ PrimeAvatar: typeof Avatar;
38
+ }, {}, string, ComponentProvideOptions, true, {}, any>;
39
+ export default _default;
40
+ //# sourceMappingURL=ChatMessage.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChatMessage.vue.d.ts","sourceRoot":"","sources":["../../../src/components/chat/ChatMessage.vue"],"names":[],"mappings":";AA4FA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAwSmB,iBAAiB"}
@@ -0,0 +1,433 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { Store, PiniaCustomStateProperties } from 'pinia';
3
+ import { default as __DTS_DEFAULT_0__ } from 'primevue/avatar';
4
+ import { default as __DTS_DEFAULT_1__ } from 'primevue/textarea';
5
+ import { default as __DTS_DEFAULT_2__ } from 'primevue/inputtext';
6
+ import { default as __DTS_DEFAULT_3__ } from 'primevue/badge';
7
+ import { default as Button } from 'primevue/button';
8
+ import { default as ProgressSpinner } from 'primevue/progressspinner';
9
+ declare const _default: DefineComponent<ExtractPropTypes<{
10
+ showRoomList: {
11
+ type: BooleanConstructor;
12
+ default: boolean;
13
+ };
14
+ roomId: {
15
+ type: StringConstructor;
16
+ default: any;
17
+ };
18
+ }>, {}, {
19
+ minimized: boolean;
20
+ loadingMore: boolean;
21
+ }, {
22
+ currentRoom(): any;
23
+ currentUserId(): any;
24
+ headerTitle(): any;
25
+ canLoadMore(): boolean;
26
+ chatStore: () => Store<"chat", {
27
+ enabled: boolean;
28
+ loaded: boolean;
29
+ hasCredentials: boolean;
30
+ connectionState: string;
31
+ lastError: any;
32
+ rooms: any[];
33
+ currentRoomId: any;
34
+ messagesByRoom: {};
35
+ unreadCounts: {};
36
+ typingByRoom: {};
37
+ currentUser: any;
38
+ _webSocket: any;
39
+ }, {
40
+ currentRoom: (state: {
41
+ enabled: boolean;
42
+ loaded: boolean;
43
+ hasCredentials: boolean;
44
+ connectionState: string;
45
+ lastError: any;
46
+ rooms: any[];
47
+ currentRoomId: any;
48
+ messagesByRoom: {};
49
+ unreadCounts: {};
50
+ typingByRoom: {};
51
+ currentUser: any;
52
+ _webSocket: any;
53
+ } & PiniaCustomStateProperties<{
54
+ enabled: boolean;
55
+ loaded: boolean;
56
+ hasCredentials: boolean;
57
+ connectionState: string;
58
+ lastError: any;
59
+ rooms: any[];
60
+ currentRoomId: any;
61
+ messagesByRoom: {};
62
+ unreadCounts: {};
63
+ typingByRoom: {};
64
+ currentUser: any;
65
+ _webSocket: any;
66
+ }>) => any;
67
+ currentMessages: (state: {
68
+ enabled: boolean;
69
+ loaded: boolean;
70
+ hasCredentials: boolean;
71
+ connectionState: string;
72
+ lastError: any;
73
+ rooms: any[];
74
+ currentRoomId: any;
75
+ messagesByRoom: {};
76
+ unreadCounts: {};
77
+ typingByRoom: {};
78
+ currentUser: any;
79
+ _webSocket: any;
80
+ } & PiniaCustomStateProperties<{
81
+ enabled: boolean;
82
+ loaded: boolean;
83
+ hasCredentials: boolean;
84
+ connectionState: string;
85
+ lastError: any;
86
+ rooms: any[];
87
+ currentRoomId: any;
88
+ messagesByRoom: {};
89
+ unreadCounts: {};
90
+ typingByRoom: {};
91
+ currentUser: any;
92
+ _webSocket: any;
93
+ }>) => any;
94
+ currentTypingUsers: (state: {
95
+ enabled: boolean;
96
+ loaded: boolean;
97
+ hasCredentials: boolean;
98
+ connectionState: string;
99
+ lastError: any;
100
+ rooms: any[];
101
+ currentRoomId: any;
102
+ messagesByRoom: {};
103
+ unreadCounts: {};
104
+ typingByRoom: {};
105
+ currentUser: any;
106
+ _webSocket: any;
107
+ } & PiniaCustomStateProperties<{
108
+ enabled: boolean;
109
+ loaded: boolean;
110
+ hasCredentials: boolean;
111
+ connectionState: string;
112
+ lastError: any;
113
+ rooms: any[];
114
+ currentRoomId: any;
115
+ messagesByRoom: {};
116
+ unreadCounts: {};
117
+ typingByRoom: {};
118
+ currentUser: any;
119
+ _webSocket: any;
120
+ }>) => any;
121
+ totalUnreadCount: (state: {
122
+ enabled: boolean;
123
+ loaded: boolean;
124
+ hasCredentials: boolean;
125
+ connectionState: string;
126
+ lastError: any;
127
+ rooms: any[];
128
+ currentRoomId: any;
129
+ messagesByRoom: {};
130
+ unreadCounts: {};
131
+ typingByRoom: {};
132
+ currentUser: any;
133
+ _webSocket: any;
134
+ } & PiniaCustomStateProperties<{
135
+ enabled: boolean;
136
+ loaded: boolean;
137
+ hasCredentials: boolean;
138
+ connectionState: string;
139
+ lastError: any;
140
+ rooms: any[];
141
+ currentRoomId: any;
142
+ messagesByRoom: {};
143
+ unreadCounts: {};
144
+ typingByRoom: {};
145
+ currentUser: any;
146
+ _webSocket: any;
147
+ }>) => any;
148
+ isReady: (state: {
149
+ enabled: boolean;
150
+ loaded: boolean;
151
+ hasCredentials: boolean;
152
+ connectionState: string;
153
+ lastError: any;
154
+ rooms: any[];
155
+ currentRoomId: any;
156
+ messagesByRoom: {};
157
+ unreadCounts: {};
158
+ typingByRoom: {};
159
+ currentUser: any;
160
+ _webSocket: any;
161
+ } & PiniaCustomStateProperties<{
162
+ enabled: boolean;
163
+ loaded: boolean;
164
+ hasCredentials: boolean;
165
+ connectionState: string;
166
+ lastError: any;
167
+ rooms: any[];
168
+ currentRoomId: any;
169
+ messagesByRoom: {};
170
+ unreadCounts: {};
171
+ typingByRoom: {};
172
+ currentUser: any;
173
+ _webSocket: any;
174
+ }>) => boolean;
175
+ isConnecting: (state: {
176
+ enabled: boolean;
177
+ loaded: boolean;
178
+ hasCredentials: boolean;
179
+ connectionState: string;
180
+ lastError: any;
181
+ rooms: any[];
182
+ currentRoomId: any;
183
+ messagesByRoom: {};
184
+ unreadCounts: {};
185
+ typingByRoom: {};
186
+ currentUser: any;
187
+ _webSocket: any;
188
+ } & PiniaCustomStateProperties<{
189
+ enabled: boolean;
190
+ loaded: boolean;
191
+ hasCredentials: boolean;
192
+ connectionState: string;
193
+ lastError: any;
194
+ rooms: any[];
195
+ currentRoomId: any;
196
+ messagesByRoom: {};
197
+ unreadCounts: {};
198
+ typingByRoom: {};
199
+ currentUser: any;
200
+ _webSocket: any;
201
+ }>) => boolean;
202
+ isReconnecting: (state: {
203
+ enabled: boolean;
204
+ loaded: boolean;
205
+ hasCredentials: boolean;
206
+ connectionState: string;
207
+ lastError: any;
208
+ rooms: any[];
209
+ currentRoomId: any;
210
+ messagesByRoom: {};
211
+ unreadCounts: {};
212
+ typingByRoom: {};
213
+ currentUser: any;
214
+ _webSocket: any;
215
+ } & PiniaCustomStateProperties<{
216
+ enabled: boolean;
217
+ loaded: boolean;
218
+ hasCredentials: boolean;
219
+ connectionState: string;
220
+ lastError: any;
221
+ rooms: any[];
222
+ currentRoomId: any;
223
+ messagesByRoom: {};
224
+ unreadCounts: {};
225
+ typingByRoom: {};
226
+ currentUser: any;
227
+ _webSocket: any;
228
+ }>) => boolean;
229
+ isAvailable: (state: {
230
+ enabled: boolean;
231
+ loaded: boolean;
232
+ hasCredentials: boolean;
233
+ connectionState: string;
234
+ lastError: any;
235
+ rooms: any[];
236
+ currentRoomId: any;
237
+ messagesByRoom: {};
238
+ unreadCounts: {};
239
+ typingByRoom: {};
240
+ currentUser: any;
241
+ _webSocket: any;
242
+ } & PiniaCustomStateProperties<{
243
+ enabled: boolean;
244
+ loaded: boolean;
245
+ hasCredentials: boolean;
246
+ connectionState: string;
247
+ lastError: any;
248
+ rooms: any[];
249
+ currentRoomId: any;
250
+ messagesByRoom: {};
251
+ unreadCounts: {};
252
+ typingByRoom: {};
253
+ currentUser: any;
254
+ _webSocket: any;
255
+ }>) => boolean;
256
+ }, {
257
+ init(): Promise<void>;
258
+ connect(): Promise<boolean>;
259
+ disconnect(): void;
260
+ loadRooms(): Promise<void>;
261
+ selectRoom(roomId: string): Promise<void>;
262
+ loadMessages(roomId: string, options?: any): Promise<void>;
263
+ sendMessage(text: string): Promise<void>;
264
+ markAsRead(roomId: string): Promise<void>;
265
+ handleNewMessage(message: any): void;
266
+ handleTypingIndicator(username: string, isTyping: boolean): void;
267
+ sendTypingIndicator(isTyping: boolean): void;
268
+ getOrCreateWorkspaceRoom(siteId: string): Promise<any | null>;
269
+ uploadFile(file: File, description?: string): Promise<void>;
270
+ clear(): void;
271
+ }>;
272
+ }, {
273
+ initChat(): Promise<void>;
274
+ selectRoom(roomId: any): Promise<void>;
275
+ backToRoomList(): void;
276
+ sendMessage(text: any): Promise<void>;
277
+ handleTyping(isTyping: any): void;
278
+ uploadFile(file: any, description: any): Promise<void>;
279
+ loadMoreMessages(): Promise<void>;
280
+ handleAttachmentClick(attachment: any): void;
281
+ scrollToBottom(): void;
282
+ toggleMinimize(): void;
283
+ close(): void;
284
+ goToProfile(): void;
285
+ reconnect(): Promise<void>;
286
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "minimize" | "go-to-profile")[], "close" | "minimize" | "go-to-profile", PublicProps, Readonly< ExtractPropTypes<{
287
+ showRoomList: {
288
+ type: BooleanConstructor;
289
+ default: boolean;
290
+ };
291
+ roomId: {
292
+ type: StringConstructor;
293
+ default: any;
294
+ };
295
+ }>> & Readonly<{
296
+ onClose?: (...args: any[]) => any;
297
+ onMinimize?: (...args: any[]) => any;
298
+ "onGo-to-profile"?: (...args: any[]) => any;
299
+ }>, {
300
+ showRoomList: boolean;
301
+ roomId: string;
302
+ }, {}, {
303
+ PrimeButton: typeof Button;
304
+ PrimeProgressSpinner: typeof ProgressSpinner;
305
+ ChatMessage: DefineComponent<ExtractPropTypes<{
306
+ message: {
307
+ type: ObjectConstructor;
308
+ required: true;
309
+ };
310
+ currentUserId: {
311
+ type: StringConstructor;
312
+ default: string;
313
+ };
314
+ }>, {}, {}, {
315
+ isOwnMessage(): boolean;
316
+ isSystemMessage(): boolean;
317
+ hasAttachments(): boolean;
318
+ avatarLabel(): any;
319
+ avatarColor(): string;
320
+ formattedTime(): string;
321
+ }, {
322
+ isImageAttachment(attachment: any): boolean;
323
+ getAttachmentUrl(attachment: any): any;
324
+ openAttachment(attachment: any): void;
325
+ }, ComponentOptionsMixin, ComponentOptionsMixin, "attachment-click"[], "attachment-click", PublicProps, Readonly< ExtractPropTypes<{
326
+ message: {
327
+ type: ObjectConstructor;
328
+ required: true;
329
+ };
330
+ currentUserId: {
331
+ type: StringConstructor;
332
+ default: string;
333
+ };
334
+ }>> & Readonly<{
335
+ "onAttachment-click"?: (...args: any[]) => any;
336
+ }>, {
337
+ currentUserId: string;
338
+ }, {}, {
339
+ PrimeAvatar: __DTS_DEFAULT_0__;
340
+ }, {}, string, ComponentProvideOptions, true, {}, any>;
341
+ ChatInput: DefineComponent<ExtractPropTypes<{
342
+ disabled: {
343
+ type: BooleanConstructor;
344
+ default: boolean;
345
+ };
346
+ typingUsers: {
347
+ type: ArrayConstructor;
348
+ default: () => any[];
349
+ };
350
+ }>, {}, {
351
+ message: string;
352
+ selectedFiles: any[];
353
+ typingTimeout: any;
354
+ isTyping: boolean;
355
+ }, {
356
+ canSend(): boolean;
357
+ typingText(): string;
358
+ }, {
359
+ handleKeyDown(event: any): void;
360
+ handleInput(): void;
361
+ sendMessage(): void;
362
+ triggerFileInput(): void;
363
+ handleFileSelect(event: any): void;
364
+ removeFile(index: any): void;
365
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("send" | "upload" | "typing")[], "send" | "upload" | "typing", PublicProps, Readonly< ExtractPropTypes<{
366
+ disabled: {
367
+ type: BooleanConstructor;
368
+ default: boolean;
369
+ };
370
+ typingUsers: {
371
+ type: ArrayConstructor;
372
+ default: () => any[];
373
+ };
374
+ }>> & Readonly<{
375
+ onSend?: (...args: any[]) => any;
376
+ onUpload?: (...args: any[]) => any;
377
+ onTyping?: (...args: any[]) => any;
378
+ }>, {
379
+ disabled: boolean;
380
+ typingUsers: unknown[];
381
+ }, {}, {
382
+ PrimeButton: typeof Button;
383
+ PrimeTextarea: __DTS_DEFAULT_1__;
384
+ }, {}, string, ComponentProvideOptions, true, {}, any>;
385
+ ChatRoomList: DefineComponent<ExtractPropTypes<{
386
+ rooms: {
387
+ type: ArrayConstructor;
388
+ default: () => any[];
389
+ };
390
+ selectedRoomId: {
391
+ type: StringConstructor;
392
+ default: any;
393
+ };
394
+ unreadCounts: {
395
+ type: ObjectConstructor;
396
+ default: () => {};
397
+ };
398
+ }>, {}, {
399
+ searchQuery: string;
400
+ }, {
401
+ filteredRooms(): unknown[];
402
+ sortedRooms(): unknown[];
403
+ }, {
404
+ selectRoom(room: any): void;
405
+ getUnreadCount(roomId: any): any;
406
+ getRoomIcon(room: any): "ri-hashtag" | "ri-lock-line" | "ri-user-line" | "ri-chat-3-line";
407
+ truncateMessage(msg: any): any;
408
+ }, ComponentOptionsMixin, ComponentOptionsMixin, "select"[], "select", PublicProps, Readonly< ExtractPropTypes<{
409
+ rooms: {
410
+ type: ArrayConstructor;
411
+ default: () => any[];
412
+ };
413
+ selectedRoomId: {
414
+ type: StringConstructor;
415
+ default: any;
416
+ };
417
+ unreadCounts: {
418
+ type: ObjectConstructor;
419
+ default: () => {};
420
+ };
421
+ }>> & Readonly<{
422
+ onSelect?: (...args: any[]) => any;
423
+ }>, {
424
+ rooms: unknown[];
425
+ unreadCounts: Record<string, any>;
426
+ selectedRoomId: string;
427
+ }, {}, {
428
+ PrimeInputText: __DTS_DEFAULT_2__;
429
+ PrimeBadge: __DTS_DEFAULT_3__;
430
+ }, {}, string, ComponentProvideOptions, true, {}, any>;
431
+ }, {}, string, ComponentProvideOptions, true, {}, any>;
432
+ export default _default;
433
+ //# sourceMappingURL=ChatPanel.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChatPanel.vue.d.ts","sourceRoot":"","sources":["../../../src/components/chat/ChatPanel.vue"],"names":[],"mappings":";;;;;;AAkJA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA2bmB,iBAAiB;4BACR,0BAA0B"}
@@ -0,0 +1,51 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { default as InputText } from 'primevue/inputtext';
3
+ import { default as Badge } from 'primevue/badge';
4
+ declare const _default: DefineComponent<ExtractPropTypes<{
5
+ rooms: {
6
+ type: ArrayConstructor;
7
+ default: () => any[];
8
+ };
9
+ selectedRoomId: {
10
+ type: StringConstructor;
11
+ default: any;
12
+ };
13
+ unreadCounts: {
14
+ type: ObjectConstructor;
15
+ default: () => {};
16
+ };
17
+ }>, {}, {
18
+ searchQuery: string;
19
+ }, {
20
+ filteredRooms(): unknown[];
21
+ sortedRooms(): unknown[];
22
+ }, {
23
+ selectRoom(room: any): void;
24
+ getUnreadCount(roomId: any): any;
25
+ getRoomIcon(room: any): "ri-hashtag" | "ri-lock-line" | "ri-user-line" | "ri-chat-3-line";
26
+ truncateMessage(msg: any): any;
27
+ }, ComponentOptionsMixin, ComponentOptionsMixin, "select"[], "select", PublicProps, Readonly< ExtractPropTypes<{
28
+ rooms: {
29
+ type: ArrayConstructor;
30
+ default: () => any[];
31
+ };
32
+ selectedRoomId: {
33
+ type: StringConstructor;
34
+ default: any;
35
+ };
36
+ unreadCounts: {
37
+ type: ObjectConstructor;
38
+ default: () => {};
39
+ };
40
+ }>> & Readonly<{
41
+ onSelect?: (...args: any[]) => any;
42
+ }>, {
43
+ rooms: unknown[];
44
+ unreadCounts: Record<string, any>;
45
+ selectedRoomId: string;
46
+ }, {}, {
47
+ PrimeInputText: typeof InputText;
48
+ PrimeBadge: typeof Badge;
49
+ }, {}, string, ComponentProvideOptions, true, {}, any>;
50
+ export default _default;
51
+ //# sourceMappingURL=ChatRoomList.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ChatRoomList.vue.d.ts","sourceRoot":"","sources":["../../../src/components/chat/ChatRoomList.vue"],"names":[],"mappings":";AA0EA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAqQsB,oBAAoB;kBACxB,gBAAgB"}
@@ -0,0 +1,12 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {
3
+ $emit: (event: "define" | "undefine" | "update:value", ...args: any[]) => void;
4
+ description: Record<string, any>;
5
+ item: Record<string, any>;
6
+ $props: {
7
+ readonly description?: Record<string, any>;
8
+ readonly item?: Record<string, any>;
9
+ };
10
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
11
+ export default _default;
12
+ //# sourceMappingURL=ConfigItemEditor.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConfigItemEditor.vue.d.ts","sourceRoot":"","sources":["../../../src/components/config/ConfigItemEditor.vue"],"names":[],"mappings":";AAkHA;"}
@@ -0,0 +1,14 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {
3
+ $emit: (event: "update:config", ...args: any[]) => void;
4
+ loading: boolean;
5
+ configData: unknown[];
6
+ descriptions: Record<string, any>;
7
+ $props: {
8
+ readonly loading?: boolean;
9
+ readonly configData?: unknown[];
10
+ readonly descriptions?: Record<string, any>;
11
+ };
12
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
13
+ export default _default;
14
+ //# sourceMappingURL=ConfigSplitView.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConfigSplitView.vue.d.ts","sourceRoot":"","sources":["../../../src/components/config/ConfigSplitView.vue"],"names":[],"mappings":";AAoGA;"}
@@ -1 +1 @@
1
- {"version":3,"file":"ContentListView.vue.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/ContentListView.vue"],"names":[],"mappings":";;;AAsIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAqPmB,iBAAiB;qBACf,mBAAmB"}
1
+ {"version":3,"file":"ContentListView.vue.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/ContentListView.vue"],"names":[],"mappings":";;;AA2IA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA0PmB,iBAAiB;qBACf,mBAAmB"}