@deep-eye/core 1.2.90 → 1.2.92

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 (106) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/dist/components/chat/ChatBot.vue.d.ts +2 -0
  3. package/dist/components/chat/ChatBot.vue.d.ts.map +1 -1
  4. package/dist/components/chat/components/ArtifactPreview.vue.d.ts +6 -0
  5. package/dist/components/chat/components/ArtifactPreview.vue.d.ts.map +1 -1
  6. package/dist/components/chat/components/ChatFilePreview.vue.d.ts +12 -3
  7. package/dist/components/chat/components/ChatFilePreview.vue.d.ts.map +1 -1
  8. package/dist/components/chat/components/ChatFilePreviewPanel.vue.d.ts +6 -1
  9. package/dist/components/chat/components/ChatFilePreviewPanel.vue.d.ts.map +1 -1
  10. package/dist/components/chat/components/ChatSender.vue.d.ts +10 -1
  11. package/dist/components/chat/components/ChatSender.vue.d.ts.map +1 -1
  12. package/dist/components/chat/components/document-viewer/ContentArea.vue.d.ts +523 -0
  13. package/dist/components/chat/components/document-viewer/ContentArea.vue.d.ts.map +1 -0
  14. package/dist/components/chat/components/document-viewer/DocViewerNavList.vue.d.ts +14 -0
  15. package/dist/components/chat/components/document-viewer/DocViewerNavList.vue.d.ts.map +1 -0
  16. package/dist/components/chat/components/document-viewer/DocViewerSidebar.vue.d.ts +26 -0
  17. package/dist/components/chat/components/document-viewer/DocViewerSidebar.vue.d.ts.map +1 -0
  18. package/dist/components/chat/components/document-viewer/DocViewerToolbar.vue.d.ts +69 -0
  19. package/dist/components/chat/components/document-viewer/DocViewerToolbar.vue.d.ts.map +1 -0
  20. package/dist/components/chat/components/document-viewer/DocumentViewer.vue.d.ts +18 -0
  21. package/dist/components/chat/components/document-viewer/DocumentViewer.vue.d.ts.map +1 -0
  22. package/dist/components/chat/components/document-viewer/PageNumberInput.vue.d.ts +12 -0
  23. package/dist/components/chat/components/document-viewer/PageNumberInput.vue.d.ts.map +1 -0
  24. package/dist/components/chat/components/document-viewer/ScreenshotCropOverlay.vue.d.ts +13 -0
  25. package/dist/components/chat/components/document-viewer/ScreenshotCropOverlay.vue.d.ts.map +1 -0
  26. package/dist/components/chat/components/document-viewer/adapter.d.ts +70 -0
  27. package/dist/components/chat/components/document-viewer/adapter.d.ts.map +1 -0
  28. package/dist/components/chat/components/document-viewer/html/HtmlRenderer.vue.d.ts +24 -0
  29. package/dist/components/chat/components/document-viewer/html/HtmlRenderer.vue.d.ts.map +1 -0
  30. package/dist/components/chat/components/document-viewer/markdown/MarkdownRenderer.vue.d.ts +27 -0
  31. package/dist/components/chat/components/document-viewer/markdown/MarkdownRenderer.vue.d.ts.map +1 -0
  32. package/dist/components/chat/components/document-viewer/office/OfficeDocumentViewer.vue.d.ts +16 -0
  33. package/dist/components/chat/components/document-viewer/office/OfficeDocumentViewer.vue.d.ts.map +1 -0
  34. package/dist/components/chat/components/document-viewer/office/domNav.d.ts +16 -0
  35. package/dist/components/chat/components/document-viewer/office/domNav.d.ts.map +1 -0
  36. package/dist/components/chat/components/{ChatOfficePreview.vue.d.ts → document-viewer/pdf/PdfAttachmentList.vue.d.ts} +3 -4
  37. package/dist/components/chat/components/document-viewer/pdf/PdfAttachmentList.vue.d.ts.map +1 -0
  38. package/dist/components/chat/components/document-viewer/pdf/PdfOutlineList.vue.d.ts +13 -0
  39. package/dist/components/chat/components/document-viewer/pdf/PdfOutlineList.vue.d.ts.map +1 -0
  40. package/dist/components/chat/components/document-viewer/pdf/PdfPage.vue.d.ts +16 -0
  41. package/dist/components/chat/components/document-viewer/pdf/PdfPage.vue.d.ts.map +1 -0
  42. package/dist/components/chat/components/document-viewer/pdf/PdfPageList.vue.d.ts +18 -0
  43. package/dist/components/chat/components/document-viewer/pdf/PdfPageList.vue.d.ts.map +1 -0
  44. package/dist/components/chat/components/document-viewer/pdf/PdfRenderer.vue.d.ts +57 -0
  45. package/dist/components/chat/components/document-viewer/pdf/PdfRenderer.vue.d.ts.map +1 -0
  46. package/dist/components/chat/components/document-viewer/pdf/PdfThumbnailItem.vue.d.ts +15 -0
  47. package/dist/components/chat/components/document-viewer/pdf/PdfThumbnailItem.vue.d.ts.map +1 -0
  48. package/dist/components/chat/components/document-viewer/pdf/PdfThumbnailList.vue.d.ts +14 -0
  49. package/dist/components/chat/components/document-viewer/pdf/PdfThumbnailList.vue.d.ts.map +1 -0
  50. package/dist/components/chat/components/document-viewer/pdf/pdfIntrospection.d.ts +11 -0
  51. package/dist/components/chat/components/document-viewer/pdf/pdfIntrospection.d.ts.map +1 -0
  52. package/dist/components/chat/components/document-viewer/pdf/pdfWorker.d.ts +5 -0
  53. package/dist/components/chat/components/document-viewer/pdf/pdfWorker.d.ts.map +1 -0
  54. package/dist/components/chat/components/document-viewer/pdf/usePdfDocument.d.ts +13 -0
  55. package/dist/components/chat/components/document-viewer/pdf/usePdfDocument.d.ts.map +1 -0
  56. package/dist/components/chat/components/document-viewer/pdf/useVirtualScroll.d.ts +16 -0
  57. package/dist/components/chat/components/document-viewer/pdf/useVirtualScroll.d.ts.map +1 -0
  58. package/dist/components/chat/components/document-viewer/screenshotCapture.d.ts +35 -0
  59. package/dist/components/chat/components/document-viewer/screenshotCapture.d.ts.map +1 -0
  60. package/dist/components/chat/components/document-viewer/text/TextRenderer.vue.d.ts +25 -0
  61. package/dist/components/chat/components/document-viewer/text/TextRenderer.vue.d.ts.map +1 -0
  62. package/dist/components/chat/components/document-viewer/types.d.ts +12 -0
  63. package/dist/components/chat/components/document-viewer/types.d.ts.map +1 -0
  64. package/dist/components/chat/components/document-viewer/xlsx/XlsxRenderer.vue.d.ts +24 -0
  65. package/dist/components/chat/components/document-viewer/xlsx/XlsxRenderer.vue.d.ts.map +1 -0
  66. package/dist/components/chat/components/document-viewer/xlsx/XlsxTable.vue.d.ts +7 -0
  67. package/dist/components/chat/components/document-viewer/xlsx/XlsxTable.vue.d.ts.map +1 -0
  68. package/dist/components/chat/components/document-viewer/xlsx/columnLabel.d.ts +3 -0
  69. package/dist/components/chat/components/document-viewer/xlsx/columnLabel.d.ts.map +1 -0
  70. package/dist/components/chat/components/document-viewer/xlsx/parseSpreadsheet.d.ts +15 -0
  71. package/dist/components/chat/components/document-viewer/xlsx/parseSpreadsheet.d.ts.map +1 -0
  72. package/dist/components/chat/components/index.d.ts +1 -0
  73. package/dist/components/chat/components/index.d.ts.map +1 -1
  74. package/dist/components/chat/index.d.ts +1 -1
  75. package/dist/components/chat/index.d.ts.map +1 -1
  76. package/dist/components/chat/mdoc/ContentNodes.vue.d.ts +1 -0
  77. package/dist/components/chat/mdoc/ContentNodes.vue.d.ts.map +1 -1
  78. package/dist/components/chat/mdoc/artifactOpenStrategy.d.ts.map +1 -1
  79. package/dist/components/chat/mdoc/index.d.ts +1 -1
  80. package/dist/components/chat/mdoc/index.d.ts.map +1 -1
  81. package/dist/components/chat/mdoc/referenceMarkup.d.ts +26 -0
  82. package/dist/components/chat/mdoc/referenceMarkup.d.ts.map +1 -1
  83. package/dist/components/chat/previewRenderers.d.ts.map +1 -1
  84. package/dist/components/chat/types.d.ts +6 -2
  85. package/dist/components/chat/types.d.ts.map +1 -1
  86. package/dist/html2canvas.esm-BA_v9SIU.cjs +22 -0
  87. package/dist/html2canvas.esm-d2sM-0Wm.js +4870 -0
  88. package/dist/{index-BJdNN1GV.cjs → index-BWdg422O.cjs} +4 -4
  89. package/dist/index-BWnpcJym.cjs +850 -0
  90. package/dist/index-Bh4xn5LB.cjs +1 -0
  91. package/dist/index-BuN8GnS7.js +22 -0
  92. package/dist/{index-BufnUXnQ.js → index-CNZScDK0.js} +4 -3
  93. package/dist/index-D-krptDG.js +107981 -0
  94. package/dist/{index-Bj9h-xEr.cjs → index-D2welI3B.cjs} +20 -20
  95. package/dist/{index-DF8KmkKX.js → index-WX1XCf-8.js} +4 -3
  96. package/dist/index.cjs +1 -664
  97. package/dist/index.js +225 -68958
  98. package/dist/style.css +1 -1
  99. package/package.json +7 -1
  100. package/dist/components/chat/components/ChatOfficePreview.vue.d.ts.map +0 -1
  101. package/dist/index-B4hgICk-.cjs +0 -198
  102. package/dist/index-CnxZBHPD.js +0 -42825
  103. package/dist/index-DPhuLMkO.cjs +0 -1
  104. package/dist/index-Dq4cniDm.cjs +0 -5
  105. package/dist/index-cW_BnxHR.js +0 -1722
  106. package/dist/index-iCVvFIlX.js +0 -28
@@ -0,0 +1,523 @@
1
+ import type { ChatPreviewKind, ChatResourceFile, ConversationUiAction } from '../../types';
2
+ import type { DocumentLoadResult } from './adapter';
3
+ /**
4
+ * Mounts the render adapter for `kind`. `docx`/`pptx` aren't wired to a real
5
+ * adapter yet (they're still handled upstream by the legacy self-contained
6
+ * `OfficeDocumentViewer` and never reach this component).
7
+ */
8
+ declare const rendererMap: {
9
+ readonly pdf: import("vue").DefineComponent<{
10
+ resource: ChatResourceFile;
11
+ }, {
12
+ load: () => Promise<DocumentLoadResult>;
13
+ getPageCount: () => number;
14
+ getCurrentPage: () => number;
15
+ scrollToPage: (page: number) => Promise<void>;
16
+ getThumbnail: (pageNumber: number) => Promise<string>;
17
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
18
+ getAttachments: () => Promise<{
19
+ id: string;
20
+ filename: string;
21
+ }[]>;
22
+ downloadAttachment: (id: string) => void;
23
+ setZoom: (next: number) => void;
24
+ setRotation: (degrees: number) => void;
25
+ zoomIn: () => void;
26
+ zoomOut: () => void;
27
+ rotateCw: () => void;
28
+ rotateCcw: () => void;
29
+ download: () => void;
30
+ pdfDoc: import("vue").Ref<import("pdfjs-dist/types/src/display/api").PDFDocumentProxy | null, import("pdfjs-dist/types/src/display/api").PDFDocumentProxy | null>;
31
+ numPages: import("vue").Ref<number, number>;
32
+ currentPage: import("vue").Ref<number, number>;
33
+ scale: import("vue").Ref<number, number>;
34
+ rotation: import("vue").Ref<number, number>;
35
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
36
+ error: (error: Error) => any;
37
+ "update:current-page": (page: number) => any;
38
+ loaded: (result: DocumentLoadResult) => any;
39
+ }, string, import("vue").PublicProps, Readonly<{
40
+ resource: ChatResourceFile;
41
+ }> & Readonly<{
42
+ onError?: ((error: Error) => any) | undefined;
43
+ "onUpdate:current-page"?: ((page: number) => any) | undefined;
44
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
45
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
46
+ readonly html: import("vue").DefineComponent<{
47
+ resource: ChatResourceFile;
48
+ }, {
49
+ load: () => Promise<DocumentLoadResult>;
50
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
51
+ scrollToOutline: (id: string) => void;
52
+ download: () => void;
53
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
54
+ error: (error: Error) => any;
55
+ loaded: (result: DocumentLoadResult) => any;
56
+ }, string, import("vue").PublicProps, Readonly<{
57
+ resource: ChatResourceFile;
58
+ }> & Readonly<{
59
+ onError?: ((error: Error) => any) | undefined;
60
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
61
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
62
+ readonly markdown: import("vue").DefineComponent<{
63
+ resource: ChatResourceFile;
64
+ }, {
65
+ load: () => Promise<DocumentLoadResult>;
66
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
67
+ scrollToOutline: (id: string) => void;
68
+ download: () => void;
69
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
70
+ error: (error: Error) => any;
71
+ action: (payload: ConversationUiAction) => any;
72
+ loaded: (result: DocumentLoadResult) => any;
73
+ }, string, import("vue").PublicProps, Readonly<{
74
+ resource: ChatResourceFile;
75
+ }> & Readonly<{
76
+ onError?: ((error: Error) => any) | undefined;
77
+ onAction?: ((payload: ConversationUiAction) => any) | undefined;
78
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
79
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
80
+ readonly text: import("vue").DefineComponent<{
81
+ resource: ChatResourceFile;
82
+ }, {
83
+ load: () => Promise<DocumentLoadResult>;
84
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
85
+ download: () => void;
86
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
87
+ error: (error: Error) => any;
88
+ action: (payload: ConversationUiAction) => any;
89
+ loaded: (result: DocumentLoadResult) => any;
90
+ }, string, import("vue").PublicProps, Readonly<{
91
+ resource: ChatResourceFile;
92
+ }> & Readonly<{
93
+ onError?: ((error: Error) => any) | undefined;
94
+ onAction?: ((payload: ConversationUiAction) => any) | undefined;
95
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
96
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
97
+ readonly excel: import("vue").DefineComponent<{
98
+ resource: ChatResourceFile;
99
+ }, {
100
+ load: () => Promise<DocumentLoadResult>;
101
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
102
+ scrollToOutline: (id: string) => void;
103
+ download: () => void;
104
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
105
+ error: (error: Error) => any;
106
+ loaded: (result: DocumentLoadResult) => any;
107
+ }, string, import("vue").PublicProps, Readonly<{
108
+ resource: ChatResourceFile;
109
+ }> & Readonly<{
110
+ onError?: ((error: Error) => any) | undefined;
111
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
112
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
113
+ };
114
+ type __VLS_Props = {
115
+ resource: ChatResourceFile;
116
+ kind: Extract<ChatPreviewKind, keyof typeof rendererMap>;
117
+ };
118
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {
119
+ renderer: import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
120
+ resource: ChatResourceFile;
121
+ }> & Readonly<{
122
+ onError?: ((error: Error) => any) | undefined;
123
+ "onUpdate:current-page"?: ((page: number) => any) | undefined;
124
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
125
+ }>, {
126
+ load: () => Promise<DocumentLoadResult>;
127
+ getPageCount: () => number;
128
+ getCurrentPage: () => number;
129
+ scrollToPage: (page: number) => Promise<void>;
130
+ getThumbnail: (pageNumber: number) => Promise<string>;
131
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
132
+ getAttachments: () => Promise<{
133
+ id: string;
134
+ filename: string;
135
+ }[]>;
136
+ downloadAttachment: (id: string) => void;
137
+ setZoom: (next: number) => void;
138
+ setRotation: (degrees: number) => void;
139
+ zoomIn: () => void;
140
+ zoomOut: () => void;
141
+ rotateCw: () => void;
142
+ rotateCcw: () => void;
143
+ download: () => void;
144
+ pdfDoc: import("vue").Ref<import("pdfjs-dist/types/src/display/api").PDFDocumentProxy | null, import("pdfjs-dist/types/src/display/api").PDFDocumentProxy | null>;
145
+ numPages: import("vue").Ref<number, number>;
146
+ currentPage: import("vue").Ref<number, number>;
147
+ scale: import("vue").Ref<number, number>;
148
+ rotation: import("vue").Ref<number, number>;
149
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
150
+ error: (error: Error) => any;
151
+ "update:current-page": (page: number) => any;
152
+ loaded: (result: DocumentLoadResult) => any;
153
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
154
+ P: {};
155
+ B: {};
156
+ D: {};
157
+ C: {};
158
+ M: {};
159
+ Defaults: {};
160
+ }, Readonly<{
161
+ resource: ChatResourceFile;
162
+ }> & Readonly<{
163
+ onError?: ((error: Error) => any) | undefined;
164
+ "onUpdate:current-page"?: ((page: number) => any) | undefined;
165
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
166
+ }>, {
167
+ load: () => Promise<DocumentLoadResult>;
168
+ getPageCount: () => number;
169
+ getCurrentPage: () => number;
170
+ scrollToPage: (page: number) => Promise<void>;
171
+ getThumbnail: (pageNumber: number) => Promise<string>;
172
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
173
+ getAttachments: () => Promise<{
174
+ id: string;
175
+ filename: string;
176
+ }[]>;
177
+ downloadAttachment: (id: string) => void;
178
+ setZoom: (next: number) => void;
179
+ setRotation: (degrees: number) => void;
180
+ zoomIn: () => void;
181
+ zoomOut: () => void;
182
+ rotateCw: () => void;
183
+ rotateCcw: () => void;
184
+ download: () => void;
185
+ pdfDoc: import("vue").Ref<import("pdfjs-dist/types/src/display/api").PDFDocumentProxy | null, import("pdfjs-dist/types/src/display/api").PDFDocumentProxy | null>;
186
+ numPages: import("vue").Ref<number, number>;
187
+ currentPage: import("vue").Ref<number, number>;
188
+ scale: import("vue").Ref<number, number>;
189
+ rotation: import("vue").Ref<number, number>;
190
+ }, {}, {}, {}, {}> | import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
191
+ resource: ChatResourceFile;
192
+ }> & Readonly<{
193
+ onError?: ((error: Error) => any) | undefined;
194
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
195
+ }>, {
196
+ load: () => Promise<DocumentLoadResult>;
197
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
198
+ scrollToOutline: (id: string) => void;
199
+ download: () => void;
200
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
201
+ error: (error: Error) => any;
202
+ loaded: (result: DocumentLoadResult) => any;
203
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
204
+ P: {};
205
+ B: {};
206
+ D: {};
207
+ C: {};
208
+ M: {};
209
+ Defaults: {};
210
+ }, Readonly<{
211
+ resource: ChatResourceFile;
212
+ }> & Readonly<{
213
+ onError?: ((error: Error) => any) | undefined;
214
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
215
+ }>, {
216
+ load: () => Promise<DocumentLoadResult>;
217
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
218
+ scrollToOutline: (id: string) => void;
219
+ download: () => void;
220
+ }, {}, {}, {}, {}> | import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
221
+ resource: ChatResourceFile;
222
+ }> & Readonly<{
223
+ onError?: ((error: Error) => any) | undefined;
224
+ onAction?: ((payload: ConversationUiAction) => any) | undefined;
225
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
226
+ }>, {
227
+ load: () => Promise<DocumentLoadResult>;
228
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
229
+ scrollToOutline: (id: string) => void;
230
+ download: () => void;
231
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
232
+ error: (error: Error) => any;
233
+ action: (payload: ConversationUiAction) => any;
234
+ loaded: (result: DocumentLoadResult) => any;
235
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
236
+ P: {};
237
+ B: {};
238
+ D: {};
239
+ C: {};
240
+ M: {};
241
+ Defaults: {};
242
+ }, Readonly<{
243
+ resource: ChatResourceFile;
244
+ }> & Readonly<{
245
+ onError?: ((error: Error) => any) | undefined;
246
+ onAction?: ((payload: ConversationUiAction) => any) | undefined;
247
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
248
+ }>, {
249
+ load: () => Promise<DocumentLoadResult>;
250
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
251
+ scrollToOutline: (id: string) => void;
252
+ download: () => void;
253
+ }, {}, {}, {}, {}> | import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
254
+ resource: ChatResourceFile;
255
+ }> & Readonly<{
256
+ onError?: ((error: Error) => any) | undefined;
257
+ onAction?: ((payload: ConversationUiAction) => any) | undefined;
258
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
259
+ }>, {
260
+ load: () => Promise<DocumentLoadResult>;
261
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
262
+ download: () => void;
263
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
264
+ error: (error: Error) => any;
265
+ action: (payload: ConversationUiAction) => any;
266
+ loaded: (result: DocumentLoadResult) => any;
267
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
268
+ P: {};
269
+ B: {};
270
+ D: {};
271
+ C: {};
272
+ M: {};
273
+ Defaults: {};
274
+ }, Readonly<{
275
+ resource: ChatResourceFile;
276
+ }> & Readonly<{
277
+ onError?: ((error: Error) => any) | undefined;
278
+ onAction?: ((payload: ConversationUiAction) => any) | undefined;
279
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
280
+ }>, {
281
+ load: () => Promise<DocumentLoadResult>;
282
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
283
+ download: () => void;
284
+ }, {}, {}, {}, {}> | import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
285
+ resource: ChatResourceFile;
286
+ }> & Readonly<{
287
+ onError?: ((error: Error) => any) | undefined;
288
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
289
+ }>, {
290
+ load: () => Promise<DocumentLoadResult>;
291
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
292
+ scrollToOutline: (id: string) => void;
293
+ download: () => void;
294
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
295
+ error: (error: Error) => any;
296
+ loaded: (result: DocumentLoadResult) => any;
297
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
298
+ P: {};
299
+ B: {};
300
+ D: {};
301
+ C: {};
302
+ M: {};
303
+ Defaults: {};
304
+ }, Readonly<{
305
+ resource: ChatResourceFile;
306
+ }> & Readonly<{
307
+ onError?: ((error: Error) => any) | undefined;
308
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
309
+ }>, {
310
+ load: () => Promise<DocumentLoadResult>;
311
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
312
+ scrollToOutline: (id: string) => void;
313
+ download: () => void;
314
+ }, {}, {}, {}, {}> | undefined, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
315
+ resource: ChatResourceFile;
316
+ }> & Readonly<{
317
+ onError?: ((error: Error) => any) | undefined;
318
+ "onUpdate:current-page"?: ((page: number) => any) | undefined;
319
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
320
+ }>, {
321
+ load: () => Promise<DocumentLoadResult>;
322
+ getPageCount: () => number;
323
+ getCurrentPage: () => number;
324
+ scrollToPage: (page: number) => Promise<void>;
325
+ getThumbnail: (pageNumber: number) => Promise<string>;
326
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
327
+ getAttachments: () => Promise<{
328
+ id: string;
329
+ filename: string;
330
+ }[]>;
331
+ downloadAttachment: (id: string) => void;
332
+ setZoom: (next: number) => void;
333
+ setRotation: (degrees: number) => void;
334
+ zoomIn: () => void;
335
+ zoomOut: () => void;
336
+ rotateCw: () => void;
337
+ rotateCcw: () => void;
338
+ download: () => void;
339
+ pdfDoc: import("vue").Ref<import("pdfjs-dist/types/src/display/api").PDFDocumentProxy | null, import("pdfjs-dist/types/src/display/api").PDFDocumentProxy | null>;
340
+ numPages: import("vue").Ref<number, number>;
341
+ currentPage: import("vue").Ref<number, number>;
342
+ scale: import("vue").Ref<number, number>;
343
+ rotation: import("vue").Ref<number, number>;
344
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
345
+ error: (error: Error) => any;
346
+ "update:current-page": (page: number) => any;
347
+ loaded: (result: DocumentLoadResult) => any;
348
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
349
+ P: {};
350
+ B: {};
351
+ D: {};
352
+ C: {};
353
+ M: {};
354
+ Defaults: {};
355
+ }, Readonly<{
356
+ resource: ChatResourceFile;
357
+ }> & Readonly<{
358
+ onError?: ((error: Error) => any) | undefined;
359
+ "onUpdate:current-page"?: ((page: number) => any) | undefined;
360
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
361
+ }>, {
362
+ load: () => Promise<DocumentLoadResult>;
363
+ getPageCount: () => number;
364
+ getCurrentPage: () => number;
365
+ scrollToPage: (page: number) => Promise<void>;
366
+ getThumbnail: (pageNumber: number) => Promise<string>;
367
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
368
+ getAttachments: () => Promise<{
369
+ id: string;
370
+ filename: string;
371
+ }[]>;
372
+ downloadAttachment: (id: string) => void;
373
+ setZoom: (next: number) => void;
374
+ setRotation: (degrees: number) => void;
375
+ zoomIn: () => void;
376
+ zoomOut: () => void;
377
+ rotateCw: () => void;
378
+ rotateCcw: () => void;
379
+ download: () => void;
380
+ pdfDoc: import("vue").Ref<import("pdfjs-dist/types/src/display/api").PDFDocumentProxy | null, import("pdfjs-dist/types/src/display/api").PDFDocumentProxy | null>;
381
+ numPages: import("vue").Ref<number, number>;
382
+ currentPage: import("vue").Ref<number, number>;
383
+ scale: import("vue").Ref<number, number>;
384
+ rotation: import("vue").Ref<number, number>;
385
+ }, {}, {}, {}, {}> | import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
386
+ resource: ChatResourceFile;
387
+ }> & Readonly<{
388
+ onError?: ((error: Error) => any) | undefined;
389
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
390
+ }>, {
391
+ load: () => Promise<DocumentLoadResult>;
392
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
393
+ scrollToOutline: (id: string) => void;
394
+ download: () => void;
395
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
396
+ error: (error: Error) => any;
397
+ loaded: (result: DocumentLoadResult) => any;
398
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
399
+ P: {};
400
+ B: {};
401
+ D: {};
402
+ C: {};
403
+ M: {};
404
+ Defaults: {};
405
+ }, Readonly<{
406
+ resource: ChatResourceFile;
407
+ }> & Readonly<{
408
+ onError?: ((error: Error) => any) | undefined;
409
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
410
+ }>, {
411
+ load: () => Promise<DocumentLoadResult>;
412
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
413
+ scrollToOutline: (id: string) => void;
414
+ download: () => void;
415
+ }, {}, {}, {}, {}> | import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
416
+ resource: ChatResourceFile;
417
+ }> & Readonly<{
418
+ onError?: ((error: Error) => any) | undefined;
419
+ onAction?: ((payload: ConversationUiAction) => any) | undefined;
420
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
421
+ }>, {
422
+ load: () => Promise<DocumentLoadResult>;
423
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
424
+ scrollToOutline: (id: string) => void;
425
+ download: () => void;
426
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
427
+ error: (error: Error) => any;
428
+ action: (payload: ConversationUiAction) => any;
429
+ loaded: (result: DocumentLoadResult) => any;
430
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
431
+ P: {};
432
+ B: {};
433
+ D: {};
434
+ C: {};
435
+ M: {};
436
+ Defaults: {};
437
+ }, Readonly<{
438
+ resource: ChatResourceFile;
439
+ }> & Readonly<{
440
+ onError?: ((error: Error) => any) | undefined;
441
+ onAction?: ((payload: ConversationUiAction) => any) | undefined;
442
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
443
+ }>, {
444
+ load: () => Promise<DocumentLoadResult>;
445
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
446
+ scrollToOutline: (id: string) => void;
447
+ download: () => void;
448
+ }, {}, {}, {}, {}> | import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
449
+ resource: ChatResourceFile;
450
+ }> & Readonly<{
451
+ onError?: ((error: Error) => any) | undefined;
452
+ onAction?: ((payload: ConversationUiAction) => any) | undefined;
453
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
454
+ }>, {
455
+ load: () => Promise<DocumentLoadResult>;
456
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
457
+ download: () => void;
458
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
459
+ error: (error: Error) => any;
460
+ action: (payload: ConversationUiAction) => any;
461
+ loaded: (result: DocumentLoadResult) => any;
462
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
463
+ P: {};
464
+ B: {};
465
+ D: {};
466
+ C: {};
467
+ M: {};
468
+ Defaults: {};
469
+ }, Readonly<{
470
+ resource: ChatResourceFile;
471
+ }> & Readonly<{
472
+ onError?: ((error: Error) => any) | undefined;
473
+ onAction?: ((payload: ConversationUiAction) => any) | undefined;
474
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
475
+ }>, {
476
+ load: () => Promise<DocumentLoadResult>;
477
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
478
+ download: () => void;
479
+ }, {}, {}, {}, {}> | import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
480
+ resource: ChatResourceFile;
481
+ }> & Readonly<{
482
+ onError?: ((error: Error) => any) | undefined;
483
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
484
+ }>, {
485
+ load: () => Promise<DocumentLoadResult>;
486
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
487
+ scrollToOutline: (id: string) => void;
488
+ download: () => void;
489
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
490
+ error: (error: Error) => any;
491
+ loaded: (result: DocumentLoadResult) => any;
492
+ }, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
493
+ P: {};
494
+ B: {};
495
+ D: {};
496
+ C: {};
497
+ M: {};
498
+ Defaults: {};
499
+ }, Readonly<{
500
+ resource: ChatResourceFile;
501
+ }> & Readonly<{
502
+ onError?: ((error: Error) => any) | undefined;
503
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
504
+ }>, {
505
+ load: () => Promise<DocumentLoadResult>;
506
+ getOutline: () => Promise<import("./adapter").OutlineNode[]>;
507
+ scrollToOutline: (id: string) => void;
508
+ download: () => void;
509
+ }, {}, {}, {}, {}> | undefined>;
510
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
511
+ error: (error: Error) => any;
512
+ action: (payload: ConversationUiAction) => any;
513
+ "update:current-page": (page: number) => any;
514
+ loaded: (result: DocumentLoadResult) => any;
515
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
516
+ onError?: ((error: Error) => any) | undefined;
517
+ onAction?: ((payload: ConversationUiAction) => any) | undefined;
518
+ "onUpdate:current-page"?: ((page: number) => any) | undefined;
519
+ onLoaded?: ((result: DocumentLoadResult) => any) | undefined;
520
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
521
+ declare const _default: typeof __VLS_export;
522
+ export default _default;
523
+ //# sourceMappingURL=ContentArea.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ContentArea.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/chat/components/document-viewer/ContentArea.vue"],"names":[],"mappings":"AA6EA,OAAO,KAAK,EAAE,eAAe,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAA;AAC1F,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AASnD;;;;GAIG;AACH,QAAA,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMP,CAAA;AAEV,KAAK,WAAW,GAAG;IACjB,QAAQ,EAAE,gBAAgB,CAAA;IAC1B,IAAI,EAAE,OAAO,CAAC,eAAe,EAAE,MAAM,OAAO,WAAW,CAAC,CAAA;CACzD,CAAC;AAiHF,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kFAIhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,14 @@
1
+ import type { DocViewerNavItem } from './types';
2
+ type __VLS_Props = {
3
+ items: DocViewerNavItem[];
4
+ activeId?: string | null;
5
+ emptyLabel?: string;
6
+ };
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ select: (id: string) => any;
9
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
10
+ onSelect?: ((id: string) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ //# sourceMappingURL=DocViewerNavList.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DocViewerNavList.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/chat/components/document-viewer/DocViewerNavList.vue"],"names":[],"mappings":"AAAA,OAsFO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAI/C,KAAK,WAAW,GAAG;IACjB,KAAK,EAAE,gBAAgB,EAAE,CAAA;IACzB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACxB,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB,CAAC;AA6EF,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,26 @@
1
+ import type { DocViewerSidebarTab } from './types';
2
+ type __VLS_Props = {
3
+ open: boolean;
4
+ tabs: DocViewerSidebarTab[];
5
+ activeTab: string;
6
+ };
7
+ declare var __VLS_6: {
8
+ activeTab: string;
9
+ };
10
+ type __VLS_Slots = {} & {
11
+ default?: (props: typeof __VLS_6) => any;
12
+ };
13
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ "update:active-tab": (id: string) => any;
15
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
16
+ "onUpdate:active-tab"?: ((id: string) => any) | undefined;
17
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
19
+ declare const _default: typeof __VLS_export;
20
+ export default _default;
21
+ type __VLS_WithSlots<T, S> = T & {
22
+ new (): {
23
+ $slots: S;
24
+ };
25
+ };
26
+ //# sourceMappingURL=DocViewerSidebar.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DocViewerSidebar.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/chat/components/document-viewer/DocViewerSidebar.vue"],"names":[],"mappings":"AAyFA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAIlD,KAAK,WAAW,GAAG;IACjB,IAAI,EAAE,OAAO,CAAA;IACb,IAAI,EAAE,mBAAmB,EAAE,CAAA;IAC3B,SAAS,EAAE,MAAM,CAAA;CAClB,CAAC;AA0FF,QAAA,IAAI,OAAO;;CAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK/C,QAAA,MAAM,UAAU;;;;kFAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AACzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
@@ -0,0 +1,69 @@
1
+ type __VLS_Props = {
2
+ /** Optional — irrelevant to consumers that override the `left` slot entirely (e.g. `ArtifactPreview`). */
3
+ sidebarOpen?: boolean;
4
+ currentPage?: number;
5
+ numPages?: number | null;
6
+ showPageNav?: boolean;
7
+ canZoom?: boolean;
8
+ canRotate?: boolean;
9
+ zoomPercent?: number | null;
10
+ /** Hide the toggle entirely when this render has no sidebar content to show. */
11
+ showSidebarToggle?: boolean;
12
+ };
13
+ declare var __VLS_1: {}, __VLS_15: {}, __VLS_22: {};
14
+ type __VLS_Slots = {} & {
15
+ left?: (props: typeof __VLS_1) => any;
16
+ } & {
17
+ middle?: (props: typeof __VLS_15) => any;
18
+ } & {
19
+ right?: (props: typeof __VLS_22) => any;
20
+ };
21
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
22
+ download: () => any;
23
+ search: () => any;
24
+ close: () => any;
25
+ translate: () => any;
26
+ fullscreen: () => any;
27
+ screenshot: () => any;
28
+ "toggle-sidebar": () => any;
29
+ "jump-page": (page: number) => any;
30
+ "zoom-in": () => any;
31
+ "zoom-out": () => any;
32
+ "rotate-ccw": () => any;
33
+ "rotate-cw": () => any;
34
+ edit: () => any;
35
+ "search-plus": () => any;
36
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
37
+ onDownload?: (() => any) | undefined;
38
+ onSearch?: (() => any) | undefined;
39
+ onClose?: (() => any) | undefined;
40
+ onTranslate?: (() => any) | undefined;
41
+ onFullscreen?: (() => any) | undefined;
42
+ onScreenshot?: (() => any) | undefined;
43
+ "onToggle-sidebar"?: (() => any) | undefined;
44
+ "onJump-page"?: ((page: number) => any) | undefined;
45
+ "onZoom-in"?: (() => any) | undefined;
46
+ "onZoom-out"?: (() => any) | undefined;
47
+ "onRotate-ccw"?: (() => any) | undefined;
48
+ "onRotate-cw"?: (() => any) | undefined;
49
+ onEdit?: (() => any) | undefined;
50
+ "onSearch-plus"?: (() => any) | undefined;
51
+ }>, {
52
+ currentPage: number;
53
+ numPages: number | null;
54
+ sidebarOpen: boolean;
55
+ showPageNav: boolean;
56
+ canZoom: boolean;
57
+ canRotate: boolean;
58
+ zoomPercent: number | null;
59
+ showSidebarToggle: boolean;
60
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
61
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
62
+ declare const _default: typeof __VLS_export;
63
+ export default _default;
64
+ type __VLS_WithSlots<T, S> = T & {
65
+ new (): {
66
+ $slots: S;
67
+ };
68
+ };
69
+ //# sourceMappingURL=DocViewerToolbar.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DocViewerToolbar.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/chat/components/document-viewer/DocViewerToolbar.vue"],"names":[],"mappings":"AA+SA,KAAK,WAAW,GAAG;IACf,0GAA0G;IAC1G,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACxB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC3B,gFAAgF;IAChF,iBAAiB,CAAC,EAAE,OAAO,CAAA;CAC5B,CAAC;AA2YJ,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AAClE,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GACzC;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC5C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAK9C,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA5ZE,MAAM;cACT,MAAM,GAAG,IAAI;iBAFV,OAAO;iBAGP,OAAO;aACX,OAAO;eACL,OAAO;iBACL,MAAM,GAAG,IAAI;uBAEP,OAAO;6EAyZ7B,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}