@pristy/pristy-libvue 1.18.0 → 1.19.1

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 (40) hide show
  1. package/dist/pristy-libvue.css +1 -1
  2. package/dist/pristy-libvue.es.js +4859 -4502
  3. package/dist/pristy-libvue.es.js.map +1 -1
  4. package/dist/pristy-libvue.umd.js +11 -11
  5. package/dist/pristy-libvue.umd.js.map +1 -1
  6. package/dist/src/components/navigation/ContentGridView.vue.d.ts +6 -2
  7. package/dist/src/components/navigation/ContentGridView.vue.d.ts.map +1 -1
  8. package/dist/src/components/navigation/ContentListView.vue.d.ts +6 -2
  9. package/dist/src/components/navigation/ContentListView.vue.d.ts.map +1 -1
  10. package/dist/src/components/navigation/ContentTableView.vue.d.ts +6 -2
  11. package/dist/src/components/navigation/ContentTableView.vue.d.ts.map +1 -1
  12. package/dist/src/components/navigation/DynamicContentView.vue.d.ts +18 -6
  13. package/dist/src/components/navigation/DynamicContentView.vue.d.ts.map +1 -1
  14. package/dist/src/components/navigation/PreviewPanel.vue.d.ts +22 -2
  15. package/dist/src/components/navigation/PreviewPanel.vue.d.ts.map +1 -1
  16. package/dist/src/components/viewer/ImageViewer.vue.d.ts.map +1 -1
  17. package/dist/src/components/viewer/PDFComponent.vue.d.ts +9 -2
  18. package/dist/src/components/viewer/PDFComponent.vue.d.ts.map +1 -1
  19. package/dist/src/components/viewer/PdfSkeleton.vue.d.ts +12 -0
  20. package/dist/src/components/viewer/PdfSkeleton.vue.d.ts.map +1 -0
  21. package/dist/src/composables/useCollabEditor.d.ts.map +1 -1
  22. package/dist/src/i18n/index.d.ts +6 -0
  23. package/dist/src/i18n/index.d.ts.map +1 -1
  24. package/dist/src/i18n/primevue-locale.d.ts +117 -0
  25. package/dist/src/i18n/primevue-locale.d.ts.map +1 -0
  26. package/dist/src/index.d.ts +4 -1
  27. package/dist/src/index.d.ts.map +1 -1
  28. package/dist/src/services/AlfrescoFileService.d.ts +55 -8
  29. package/dist/src/services/AlfrescoFileService.d.ts.map +1 -1
  30. package/dist/src/services/MenuService.d.ts.map +1 -1
  31. package/dist/src/services/PdfConfigService.d.ts +21 -0
  32. package/dist/src/services/PdfConfigService.d.ts.map +1 -0
  33. package/dist/src/services/PeopleService.d.ts.map +1 -1
  34. package/dist/src/services/PreviewService.d.ts +36 -0
  35. package/dist/src/services/PreviewService.d.ts.map +1 -0
  36. package/dist/src/services/WorkspaceService.d.ts.map +1 -1
  37. package/dist/src/stores/config.d.ts +3 -0
  38. package/dist/src/stores/config.d.ts.map +1 -1
  39. package/dist/src/stores/user.d.ts.map +1 -1
  40. package/package.json +8 -8
@@ -42,6 +42,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
42
42
  uploadFile(nodeId: any, opts: any, file: any): any;
43
43
  createRendition(nodeId: any, rendition: any): Promise<any>;
44
44
  createAllRendition(nodeId: any): Promise<any>;
45
+ createMissingRenditions(nodeId: any, wanted?: string[]): Promise<any>;
45
46
  _createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
46
47
  createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
47
48
  getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
@@ -50,8 +51,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
50
51
  onPreviewLoadFailure(event: any, node: any): void;
51
52
  _requestRenditionCreation(node: any): void;
52
53
  isThumbnailSupported(node: any): any;
53
- getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
54
- getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
54
+ _findRenditionStatus(paging: any, rendition: any): string | null;
55
+ _renditionNotAvailable(nodeId: any, rendition: any): Error;
56
+ _waitForRendition(getRendition: any, getUrl: any, rendition: any): any;
57
+ getRenditionUrl(nodeId: any, rendition?: string): Promise<string>;
58
+ getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): Promise<string>;
55
59
  getProtocolForFileExtension(fileExtension: any): any;
56
60
  getFileExtension(fileName: any): any;
57
61
  isDoc(item: any): boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"ContentGridView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/ContentGridView.vue"],"names":[],"mappings":";;;AA8JA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAqRmB,iBAAiB;qBACf,mBAAmB;kBACtB,gBAAgB"}
1
+ {"version":3,"file":"ContentGridView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/ContentGridView.vue"],"names":[],"mappings":";;;AA+JA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAsRmB,iBAAiB;qBACf,mBAAmB;kBACtB,gBAAgB"}
@@ -41,6 +41,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
41
41
  uploadFile(nodeId: any, opts: any, file: any): any;
42
42
  createRendition(nodeId: any, rendition: any): Promise<any>;
43
43
  createAllRendition(nodeId: any): Promise<any>;
44
+ createMissingRenditions(nodeId: any, wanted?: string[]): Promise<any>;
44
45
  _createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
45
46
  createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
46
47
  getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
@@ -49,8 +50,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
49
50
  onPreviewLoadFailure(event: any, node: any): void;
50
51
  _requestRenditionCreation(node: any): void;
51
52
  isThumbnailSupported(node: any): any;
52
- getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
53
- getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
53
+ _findRenditionStatus(paging: any, rendition: any): string | null;
54
+ _renditionNotAvailable(nodeId: any, rendition: any): Error;
55
+ _waitForRendition(getRendition: any, getUrl: any, rendition: any): any;
56
+ getRenditionUrl(nodeId: any, rendition?: string): Promise<string>;
57
+ getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): Promise<string>;
54
58
  getProtocolForFileExtension(fileExtension: any): any;
55
59
  getFileExtension(fileName: any): any;
56
60
  isDoc(item: any): boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"ContentListView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/ContentListView.vue"],"names":[],"mappings":";;;AAqLA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAqSmB,iBAAiB;qBACf,mBAAmB"}
1
+ {"version":3,"file":"ContentListView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/ContentListView.vue"],"names":[],"mappings":";;;AA0LA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA0SmB,iBAAiB;qBACf,mBAAmB"}
@@ -76,6 +76,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
76
76
  uploadFile(nodeId: any, opts: any, file: any): any;
77
77
  createRendition(nodeId: any, rendition: any): Promise<any>;
78
78
  createAllRendition(nodeId: any): Promise<any>;
79
+ createMissingRenditions(nodeId: any, wanted?: string[]): Promise<any>;
79
80
  _createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
80
81
  createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
81
82
  getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
@@ -84,8 +85,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
84
85
  onPreviewLoadFailure(event: any, node: any): void;
85
86
  _requestRenditionCreation(node: any): void;
86
87
  isThumbnailSupported(node: any): any;
87
- getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
88
- getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
88
+ _findRenditionStatus(paging: any, rendition: any): string | null;
89
+ _renditionNotAvailable(nodeId: any, rendition: any): Error;
90
+ _waitForRendition(getRendition: any, getUrl: any, rendition: any): any;
91
+ getRenditionUrl(nodeId: any, rendition?: string): Promise<string>;
92
+ getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): Promise<string>;
89
93
  getProtocolForFileExtension(fileExtension: any): any;
90
94
  getFileExtension(fileName: any): any;
91
95
  isDoc(item: any): boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"ContentTableView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/ContentTableView.vue"],"names":[],"mappings":";;;AAgOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAwbmB,iBAAiB;kBAClB,gBAAgB;sBACZ,oBAAoB;qBACrB,mBAAmB;mBACrB,iBAAiB"}
1
+ {"version":3,"file":"ContentTableView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/ContentTableView.vue"],"names":[],"mappings":";;;AAgOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAwbmB,iBAAiB;kBAClB,gBAAgB;sBACZ,oBAAoB;qBACrB,mBAAmB;mBACrB,iBAAiB"}
@@ -233,6 +233,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
233
233
  uploadFile(nodeId: any, opts: any, file: any): any;
234
234
  createRendition(nodeId: any, rendition: any): Promise<any>;
235
235
  createAllRendition(nodeId: any): Promise<any>;
236
+ createMissingRenditions(nodeId: any, wanted?: string[]): Promise<any>;
236
237
  _createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
237
238
  createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
238
239
  getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
@@ -241,8 +242,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
241
242
  onPreviewLoadFailure(event: any, node: any): void;
242
243
  _requestRenditionCreation(node: any): void;
243
244
  isThumbnailSupported(node: any): any;
244
- getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
245
- getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
245
+ _findRenditionStatus(paging: any, rendition: any): string | null;
246
+ _renditionNotAvailable(nodeId: any, rendition: any): Error;
247
+ _waitForRendition(getRendition: any, getUrl: any, rendition: any): any;
248
+ getRenditionUrl(nodeId: any, rendition?: string): Promise<string>;
249
+ getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): Promise<string>;
246
250
  getProtocolForFileExtension(fileExtension: any): any;
247
251
  getFileExtension(fileName: any): any;
248
252
  isDoc(item: any): boolean;
@@ -375,6 +379,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
375
379
  uploadFile(nodeId: any, opts: any, file: any): any;
376
380
  createRendition(nodeId: any, rendition: any): Promise<any>;
377
381
  createAllRendition(nodeId: any): Promise<any>;
382
+ createMissingRenditions(nodeId: any, wanted?: string[]): Promise<any>;
378
383
  _createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
379
384
  createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
380
385
  getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
@@ -383,8 +388,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
383
388
  onPreviewLoadFailure(event: any, node: any): void;
384
389
  _requestRenditionCreation(node: any): void;
385
390
  isThumbnailSupported(node: any): any;
386
- getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
387
- getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
391
+ _findRenditionStatus(paging: any, rendition: any): string | null;
392
+ _renditionNotAvailable(nodeId: any, rendition: any): Error;
393
+ _waitForRendition(getRendition: any, getUrl: any, rendition: any): any;
394
+ getRenditionUrl(nodeId: any, rendition?: string): Promise<string>;
395
+ getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): Promise<string>;
388
396
  getProtocolForFileExtension(fileExtension: any): any;
389
397
  getFileExtension(fileName: any): any;
390
398
  isDoc(item: any): boolean;
@@ -544,6 +552,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
544
552
  uploadFile(nodeId: any, opts: any, file: any): any;
545
553
  createRendition(nodeId: any, rendition: any): Promise<any>;
546
554
  createAllRendition(nodeId: any): Promise<any>;
555
+ createMissingRenditions(nodeId: any, wanted?: string[]): Promise<any>;
547
556
  _createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
548
557
  createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
549
558
  getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
@@ -552,8 +561,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
552
561
  onPreviewLoadFailure(event: any, node: any): void;
553
562
  _requestRenditionCreation(node: any): void;
554
563
  isThumbnailSupported(node: any): any;
555
- getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
556
- getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
564
+ _findRenditionStatus(paging: any, rendition: any): string | null;
565
+ _renditionNotAvailable(nodeId: any, rendition: any): Error;
566
+ _waitForRendition(getRendition: any, getUrl: any, rendition: any): any;
567
+ getRenditionUrl(nodeId: any, rendition?: string): Promise<string>;
568
+ getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): Promise<string>;
557
569
  getProtocolForFileExtension(fileExtension: any): any;
558
570
  getFileExtension(fileName: any): any;
559
571
  isDoc(item: any): boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"DynamicContentView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/DynamicContentView.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAyLA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA6jBmB,iBAAiB;qBAEf,mBAAmB;qBADnB,mBAAmB"}
1
+ {"version":3,"file":"DynamicContentView.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/DynamicContentView.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAyLA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA6jBmB,iBAAiB;qBAEf,mBAAmB;qBADnB,mBAAmB"}
@@ -5,13 +5,14 @@ import { default as __DTS_DEFAULT_2__ } from 'primevue/image';
5
5
  import { PDFDocumentLoadingTask } from 'pdfjs-dist/types/src/display/api';
6
6
  import { WatermarkOptions, HighlightOptions, AnnotationEventPayload, HighlightEventPayload, TextLayerLoadedEventPayload } from '@tato30/vue-pdf';
7
7
  import { PageViewport } from 'pdfjs-dist/types/src/display/display_utils';
8
- import { default as __DTS_DEFAULT_3__ } from 'primevue/progressspinner';
8
+ import { default as __DTS_DEFAULT_3__ } from 'primevue/skeleton';
9
9
  import { default as __DTS_DEFAULT_4__ } from 'primevue/divider';
10
10
  import { default as __DTS_DEFAULT_5__ } from 'primevue/inputnumber';
11
11
  import { default as __DTS_DEFAULT_6__ } from 'primevue/dialog';
12
12
  import { default as __DTS_DEFAULT_7__ } from 'primevue/datatable';
13
13
  import { default as __DTS_DEFAULT_8__ } from 'primevue/column';
14
14
  import { default as Button } from 'primevue/button';
15
+ import { default as Message } from 'primevue/message';
15
16
  declare const _default: DefineComponent<ExtractPropTypes<{
16
17
  isPreviewPanelVisible: {
17
18
  type: BooleanConstructor;
@@ -27,6 +28,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
27
28
  };
28
29
  }>, {}, {
29
30
  url: any;
31
+ isLoadingPreview: boolean;
32
+ previewError: boolean;
30
33
  }, {
31
34
  children: () => any[];
32
35
  }, {
@@ -35,6 +38,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
35
38
  closeContentPanel(): void;
36
39
  showPreviousFile(nodes: any): void;
37
40
  showNextFile(nodes: any): void;
41
+ retryPreview(): void;
38
42
  computeUrl(node: any): void;
39
43
  }, ComponentOptionsMixin, ComponentOptionsMixin, ("closeContentPanel" | "showPreviousFile" | "showNextFile")[], "closeContentPanel" | "showPreviousFile" | "showNextFile", PublicProps, Readonly< ExtractPropTypes<{
40
44
  isPreviewPanelVisible: {
@@ -555,8 +559,15 @@ declare const _default: DefineComponent<ExtractPropTypes<{
555
559
  }): any;
556
560
  };
557
561
  });
562
+ PdfSkeleton: DefineComponent<{}, {}, {
563
+ paragraphs: {
564
+ id: number;
565
+ lines: string[];
566
+ }[];
567
+ }, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
568
+ PrimeSkeleton: __DTS_DEFAULT_3__;
569
+ }, {}, string, ComponentProvideOptions, true, {}, any>;
558
570
  PrimeButton: typeof Button;
559
- PrimeProgressSpinner: __DTS_DEFAULT_3__;
560
571
  PrimeDivider: __DTS_DEFAULT_4__;
561
572
  PrimeTag: __DTS_DEFAULT_0__;
562
573
  PrimeInputNumber: __DTS_DEFAULT_5__;
@@ -566,6 +577,14 @@ declare const _default: DefineComponent<ExtractPropTypes<{
566
577
  }, {
567
578
  tooltip: ObjectDirective<any, any, string, any>;
568
579
  }, string, ComponentProvideOptions, true, {}, any>;
580
+ PdfSkeleton: DefineComponent<{}, {}, {
581
+ paragraphs: {
582
+ id: number;
583
+ lines: string[];
584
+ }[];
585
+ }, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
586
+ PrimeSkeleton: __DTS_DEFAULT_3__;
587
+ }, {}, string, ComponentProvideOptions, true, {}, any>;
569
588
  CodeMirrorViewer: DefineComponent<{}, {
570
589
  contentNode: Record<string, any>;
571
590
  isSharedLink: boolean;
@@ -577,6 +596,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
577
596
  editorContainer: HTMLDivElement;
578
597
  }, HTMLDivElement>;
579
598
  PrimeButton: typeof Button;
599
+ PrimeMessage: typeof Message;
580
600
  }, {
581
601
  tooltip: ObjectDirective<any, any, string, any>;
582
602
  }, string, ComponentProvideOptions, true, {}, any>;
@@ -1 +1 @@
1
- {"version":3,"file":"PreviewPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/PreviewPanel.vue"],"names":[],"mappings":";;;;;;;;;;;;;AA0HA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA8OmB,iBAAiB"}
1
+ {"version":3,"file":"PreviewPanel.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/navigation/PreviewPanel.vue"],"names":[],"mappings":";;;;;;;;;;;;;AAyIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA8RmB,iBAAiB;oBAChB,kBAAkB"}
@@ -1 +1 @@
1
- {"version":3,"file":"ImageViewer.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/viewer/ImageViewer.vue"],"names":[],"mappings":";AAiFA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA8NmB,iBAAiB;kBAClB,gBAAgB;oBACd,kBAAkB;gBAEtB,cAAc"}
1
+ {"version":3,"file":"ImageViewer.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/viewer/ImageViewer.vue"],"names":[],"mappings":";AAiFA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA6OmB,iBAAiB;kBAClB,gBAAgB;oBACd,kBAAkB;gBAEtB,cAAc"}
@@ -2,8 +2,8 @@ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps,
2
2
  import { PDFDocumentLoadingTask } from 'pdfjs-dist/types/src/display/api';
3
3
  import { WatermarkOptions, HighlightOptions, AnnotationEventPayload, HighlightEventPayload, TextLayerLoadedEventPayload } from '@tato30/vue-pdf';
4
4
  import { PageViewport } from 'pdfjs-dist/types/src/display/display_utils';
5
+ import { default as __DTS_DEFAULT_0__ } from 'primevue/skeleton';
5
6
  import { default as Button } from 'primevue/button';
6
- import { default as ProgressSpinner } from 'primevue/progressspinner';
7
7
  import { default as Divider } from 'primevue/divider';
8
8
  import { default as Tag } from 'primevue/tag';
9
9
  import { default as InputNumber } from 'primevue/inputnumber';
@@ -386,8 +386,15 @@ declare const _default: DefineComponent<ExtractPropTypes<{
386
386
  }): any;
387
387
  };
388
388
  });
389
+ PdfSkeleton: DefineComponent<{}, {}, {
390
+ paragraphs: {
391
+ id: number;
392
+ lines: string[];
393
+ }[];
394
+ }, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
395
+ PrimeSkeleton: __DTS_DEFAULT_0__;
396
+ }, {}, string, ComponentProvideOptions, true, {}, any>;
389
397
  PrimeButton: typeof Button;
390
- PrimeProgressSpinner: typeof ProgressSpinner;
391
398
  PrimeDivider: typeof Divider;
392
399
  PrimeTag: typeof Tag;
393
400
  PrimeInputNumber: typeof InputNumber;
@@ -1 +1 @@
1
- {"version":3,"file":"PDFComponent.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/viewer/PDFComponent.vue"],"names":[],"mappings":";;;;AAuPA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA2nBmB,iBAAiB;4BACR,0BAA0B;oBAClC,kBAAkB;gBACtB,cAAc;wBACN,sBAAsB;mBAC3B,iBAAiB;sBACd,oBAAoB;mBACvB,iBAAiB"}
1
+ {"version":3,"file":"PDFComponent.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/viewer/PDFComponent.vue"],"names":[],"mappings":";;;;;AAmPA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAqnBmB,iBAAiB;oBAChB,kBAAkB;gBACtB,cAAc;wBACN,sBAAsB;mBAC3B,iBAAiB;sBACd,oBAAoB;mBACvB,iBAAiB"}
@@ -0,0 +1,12 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { default as Skeleton } from 'primevue/skeleton';
3
+ declare const _default: DefineComponent<{}, {}, {
4
+ paragraphs: {
5
+ id: number;
6
+ lines: string[];
7
+ }[];
8
+ }, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
9
+ PrimeSkeleton: typeof Skeleton;
10
+ }, {}, string, ComponentProvideOptions, true, {}, any>;
11
+ export default _default;
12
+ //# sourceMappingURL=PdfSkeleton.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PdfSkeleton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/viewer/PdfSkeleton.vue"],"names":[],"mappings":";AAqDA;;;;;;;;;;qBA+GqB,mBAAmB"}
@@ -1 +1 @@
1
- {"version":3,"file":"useCollabEditor.d.ts","sourceRoot":"","sources":["../../../src/composables/useCollabEditor.js"],"names":[],"mappings":"AAiKA;;;;;GAKG;AACH,uCAi7BC;AA/iCD,0BAA2B,QAAQ,CAAC;AACpC,4BAA6B,UAAU,CAAC;AAExC;;;;GAIG;AACH,+BAAgC,CAAC,CAAC"}
1
+ {"version":3,"file":"useCollabEditor.d.ts","sourceRoot":"","sources":["../../../src/composables/useCollabEditor.js"],"names":[],"mappings":"AAiKA;;;;;GAKG;AACH,uCA48BC;AA1kCD,0BAA2B,QAAQ,CAAC;AACpC,4BAA6B,UAAU,CAAC;AAExC;;;;GAIG;AACH,+BAAgC,CAAC,CAAC"}
@@ -306,6 +306,9 @@ declare const i18n: I18n<{
306
306
  };
307
307
  };
308
308
  pdf: {
309
+ converting: string;
310
+ previewError: string;
311
+ retry: string;
309
312
  on: string;
310
313
  changePage: string;
311
314
  scrolling: string;
@@ -1108,6 +1111,9 @@ declare const i18n: I18n<{
1108
1111
  };
1109
1112
  };
1110
1113
  pdf: {
1114
+ converting: string;
1115
+ previewError: string;
1116
+ retry: string;
1111
1117
  on: string;
1112
1118
  scrolling: string;
1113
1119
  pageToPage: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/i18n/index.js"],"names":[],"mappings":";;AAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAOG"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/i18n/index.js"],"names":[],"mappings":";;AAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAOG"}
@@ -0,0 +1,117 @@
1
+ export namespace primeLocaleFr {
2
+ let startsWith: string;
3
+ let contains: string;
4
+ let notContains: string;
5
+ let endsWith: string;
6
+ let equals: string;
7
+ let notEquals: string;
8
+ let noFilter: string;
9
+ let lt: string;
10
+ let lte: string;
11
+ let gt: string;
12
+ let gte: string;
13
+ let dateIs: string;
14
+ let dateIsNot: string;
15
+ let dateBefore: string;
16
+ let dateAfter: string;
17
+ let clear: string;
18
+ let apply: string;
19
+ let matchAll: string;
20
+ let matchAny: string;
21
+ let addRule: string;
22
+ let removeRule: string;
23
+ let accept: string;
24
+ let reject: string;
25
+ let choose: string;
26
+ let upload: string;
27
+ let cancel: string;
28
+ let completed: string;
29
+ let pending: string;
30
+ let dayNames: string[];
31
+ let dayNamesShort: string[];
32
+ let dayNamesMin: string[];
33
+ let monthNames: string[];
34
+ let monthNamesShort: string[];
35
+ let chooseYear: string;
36
+ let chooseMonth: string;
37
+ let chooseDate: string;
38
+ let prevDecade: string;
39
+ let nextDecade: string;
40
+ let prevYear: string;
41
+ let nextYear: string;
42
+ let prevMonth: string;
43
+ let nextMonth: string;
44
+ let prevHour: string;
45
+ let nextHour: string;
46
+ let prevMinute: string;
47
+ let nextMinute: string;
48
+ let prevSecond: string;
49
+ let nextSecond: string;
50
+ let am: string;
51
+ let pm: string;
52
+ let today: string;
53
+ let weekHeader: string;
54
+ let firstDayOfWeek: number;
55
+ let dateFormat: string;
56
+ let weak: string;
57
+ let medium: string;
58
+ let strong: string;
59
+ let passwordPrompt: string;
60
+ let emptyFilterMessage: string;
61
+ let searchMessage: string;
62
+ let selectionMessage: string;
63
+ let emptySelectionMessage: string;
64
+ let emptySearchMessage: string;
65
+ let emptyMessage: string;
66
+ namespace aria {
67
+ let trueLabel: string;
68
+ let falseLabel: string;
69
+ let nullLabel: string;
70
+ let star: string;
71
+ let stars: string;
72
+ let selectAll: string;
73
+ let unselectAll: string;
74
+ let close: string;
75
+ let previous: string;
76
+ let next: string;
77
+ let navigation: string;
78
+ let scrollTop: string;
79
+ let moveTop: string;
80
+ let moveUp: string;
81
+ let moveDown: string;
82
+ let moveBottom: string;
83
+ let moveToTarget: string;
84
+ let moveToSource: string;
85
+ let moveAllToTarget: string;
86
+ let moveAllToSource: string;
87
+ let pageLabel: string;
88
+ let firstPageLabel: string;
89
+ let lastPageLabel: string;
90
+ let nextPageLabel: string;
91
+ let previousPageLabel: string;
92
+ let rowsPerPageLabel: string;
93
+ let jumpToPageDropdownLabel: string;
94
+ let jumpToPageInputLabel: string;
95
+ let selectRow: string;
96
+ let unselectRow: string;
97
+ let expandRow: string;
98
+ let collapseRow: string;
99
+ let showFilterMenu: string;
100
+ let hideFilterMenu: string;
101
+ let filterOperator: string;
102
+ let filterConstraint: string;
103
+ let editRow: string;
104
+ let saveEdit: string;
105
+ let cancelEdit: string;
106
+ let listView: string;
107
+ let gridView: string;
108
+ let slide: string;
109
+ let slideNumber: string;
110
+ let zoomImage: string;
111
+ let zoomIn: string;
112
+ let zoomOut: string;
113
+ let rotateRight: string;
114
+ let rotateLeft: string;
115
+ }
116
+ }
117
+ //# sourceMappingURL=primevue-locale.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"primevue-locale.d.ts","sourceRoot":"","sources":["../../../src/i18n/primevue-locale.js"],"names":[],"mappings":""}
@@ -1,4 +1,5 @@
1
1
  import { default as PDFComponent } from '../components/viewer/PDFComponent.vue';
2
+ import { default as PdfSkeleton } from '../components/viewer/PdfSkeleton.vue';
2
3
  import { default as PristyIcon } from '../components/PristyIcon.vue';
3
4
  import { default as PaginatorComponent } from '../components/pagination/PaginatorComponent.vue';
4
5
  import { default as CopyOrMovePopup } from '../components/popup/CopyOrMovePopup.vue';
@@ -63,6 +64,7 @@ export { default as iconeService } from '../services/IconeService.js';
63
64
  export { default as keyboardShortcutsService } from '../services/KeyboardShortcutsService.js';
64
65
  export { default as menuService } from '../services/MenuService.js';
65
66
  export { default as peopleService } from '../services/PeopleService.js';
67
+ export { default as previewService } from '../services/PreviewService.js';
66
68
  export { default as translationService } from '../services/TranslationService.js';
67
69
  export { default as workflowService } from '../services/WorkflowService.js';
68
70
  export { default as workspaceService } from '../services/WorkspaceService.js';
@@ -76,6 +78,7 @@ export { default as rocketChatAuthService } from '../services/RocketChatAuthServ
76
78
  export { default as vueKeyCloak } from '../plugins/KeycloakPlugin.js';
77
79
  export { default as i18n } from '../i18n';
78
80
  export { messages } from '../i18n/locales';
81
+ export { primeLocaleFr } from '../i18n/primevue-locale';
79
82
  export * from '../AlfrescoApi';
80
83
  export { useCollaboraStore } from '../stores/collabora';
81
84
  export { useCollabStore } from '../stores/collab.js';
@@ -100,7 +103,7 @@ export { default as ErrorPage } from '../pages/ErrorPage.vue';
100
103
  export namespace componentLibrary {
101
104
  function install(app: any): void;
102
105
  }
103
- export { PDFComponent, PristyIcon, PaginatorComponent, CopyOrMovePopup, TreeExplorer, EllipsisBreadcrumb, BreadCrumbAlfresco, ContentTableView, ContentListView, ContentGridView, DynamicContentView, ContentFiltersHeader, ImageViewer, VideoPlayer, PreviewPanel, LayoutSelector, HelpKeyMessage, SelectionStatus, MemberList, ActionMenu, CustomToastContent, FolderUpload, UploadTargetInfo, UploadStatus, AddPairInConfigDialog, ConfigDatatable, ConfigItemEditor, ConfigSplitView, ConfigUpload, ListVersionConfig, AddCriterionPopup, AdvancedSearchPanel, AdvancedViewPanel, ExactSearch, FavoriteViewMenu, UserViewsFavoritesPanel, SaveViewPopup, PdfToolsComponent, CodeMirrorEditor, DiffViewerDialog, ArrayEditor, ConfigHealthBanner, CreateWorkflowPopup, ImportNewVersionPopup, ShareLinkPopup, MemberListPopup, SendMailPopup, ImportPopupWithWorker, ErrorComponent, ChatPanel, ChatMessage, ChatInput, ChatRoomList };
106
+ export { PDFComponent, PdfSkeleton, PristyIcon, PaginatorComponent, CopyOrMovePopup, TreeExplorer, EllipsisBreadcrumb, BreadCrumbAlfresco, ContentTableView, ContentListView, ContentGridView, DynamicContentView, ContentFiltersHeader, ImageViewer, VideoPlayer, PreviewPanel, LayoutSelector, HelpKeyMessage, SelectionStatus, MemberList, ActionMenu, CustomToastContent, FolderUpload, UploadTargetInfo, UploadStatus, AddPairInConfigDialog, ConfigDatatable, ConfigItemEditor, ConfigSplitView, ConfigUpload, ListVersionConfig, AddCriterionPopup, AdvancedSearchPanel, AdvancedViewPanel, ExactSearch, FavoriteViewMenu, UserViewsFavoritesPanel, SaveViewPopup, PdfToolsComponent, CodeMirrorEditor, DiffViewerDialog, ArrayEditor, ConfigHealthBanner, CreateWorkflowPopup, ImportNewVersionPopup, ShareLinkPopup, MemberListPopup, SendMailPopup, ImportPopupWithWorker, ErrorComponent, ChatPanel, ChatMessage, ChatInput, ChatRoomList };
104
107
  export { default as filingPlanService, NatureDocument, TypeDossier } from '../services/FilingPlanService.js';
105
108
  export { checkNotNull, checkString } from '../directives/assert.js';
106
109
  export { useCodeMirror, getLanguageExtension, getBaseExtensions, createEditorView } from '../composables/useCodeMirror.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAwEE,iCAsDC;;yBA7GsB,sCAAsC;uBACxC,6BAA6B;+BAFrB,gDAAgD;4BAGnD,wCAAwC;yBAC3C,+BAA+B;+BACzB,gDAAgD;+BAChD,gDAAgD;6BAClD,8CAA8C;4BAC/C,6CAA6C;4BAC7C,6CAA6C;+BAC1C,gDAAgD;iCAC9C,kDAAkD;wBAC3D,qCAAqC;wBACrC,qCAAqC;yBACpC,0CAA0C;2BAOxC,4CAA4C;2BAC5C,iCAAiC;4BALhC,kCAAkC;uBAMvC,mCAAmC;uBACnC,kCAAkC;+BAC1B,2CAA2C;yBAGjD,+BAA+B;6BAD3B,mCAAmC;yBADvC,+BAA+B;kCAItB,+CAA+C;4BACrD,yCAAyC;6BACxC,0CAA0C;4BAC3C,yCAAyC;yBAC5C,sCAAsC;8BACjC,2CAA2C;8BAC3C,2CAA2C;gCACzC,6CAA6C;8BAC/C,2CAA2C;wBACjD,qCAAqC;6BAChC,0CAA0C;oCACnC,iDAAiD;0BAC3D,uCAAuC;8BACnC,6CAA6C;6BAC9C,mCAAmC;6BACnC,mCAAmC;wBACxC,qCAAqC;+BAC9B,4CAA4C;gCAhC3C,4CAA4C;kCAC1C,8CAA8C;2BAErD,uCAAuC;4BACtC,wCAAwC;0BAC1C,sCAAsC;kCAS9B,8CAA8C;2BAmBrD,iCAAiC;sBACtC,iCAAiC;wBAC/B,mCAAmC;sBACrC,iCAAiC;yBAC9B,oCAAoC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAyEE,iCAuDC;;yBA/GsB,sCAAsC;wBACvC,qCAAqC;uBACtC,6BAA6B;+BAHrB,gDAAgD;4BAInD,wCAAwC;yBAC3C,+BAA+B;+BACzB,gDAAgD;+BAChD,gDAAgD;6BAClD,8CAA8C;4BAC/C,6CAA6C;4BAC7C,6CAA6C;+BAC1C,gDAAgD;iCAC9C,kDAAkD;wBAC3D,qCAAqC;wBACrC,qCAAqC;yBACpC,0CAA0C;2BAOxC,4CAA4C;2BAC5C,iCAAiC;4BALhC,kCAAkC;uBAMvC,mCAAmC;uBACnC,kCAAkC;+BAC1B,2CAA2C;yBAGjD,+BAA+B;6BAD3B,mCAAmC;yBADvC,+BAA+B;kCAItB,+CAA+C;4BACrD,yCAAyC;6BACxC,0CAA0C;4BAC3C,yCAAyC;yBAC5C,sCAAsC;8BACjC,2CAA2C;8BAC3C,2CAA2C;gCACzC,6CAA6C;8BAC/C,2CAA2C;wBACjD,qCAAqC;6BAChC,0CAA0C;oCACnC,iDAAiD;0BAC3D,uCAAuC;8BACnC,6CAA6C;6BAC9C,mCAAmC;6BACnC,mCAAmC;wBACxC,qCAAqC;+BAC9B,4CAA4C;gCAhC3C,4CAA4C;kCAC1C,8CAA8C;2BAErD,uCAAuC;4BACtC,wCAAwC;0BAC1C,sCAAsC;kCAS9B,8CAA8C;2BAmBrD,iCAAiC;sBACtC,iCAAiC;wBAC/B,mCAAmC;sBACrC,iCAAiC;yBAC9B,oCAAoC"}
@@ -16,6 +16,19 @@ declare class AlfrescoFileService {
16
16
  uploadFile(nodeId: any, opts: any, file: any): any;
17
17
  createRendition(nodeId: any, rendition: any): Promise<any>;
18
18
  createAllRendition(nodeId: any): Promise<any>;
19
+ /**
20
+ * Request creation of the wanted renditions, but only those that are both
21
+ * applicable to the node (present in listRenditions) and not yet created.
22
+ *
23
+ * Unlike {@link createAllRendition}, this never asks Alfresco to transform a
24
+ * type that cannot produce the rendition (archives, binaries, ...), avoiding
25
+ * the failed createRendition calls that polluted the logs.
26
+ *
27
+ * @param nodeId
28
+ * @param wanted rendition ids to ensure, default ["doclib", "imgpreview"]
29
+ * @returns {Promise<*>}
30
+ */
31
+ createMissingRenditions(nodeId: any, wanted?: string[]): Promise<any>;
19
32
  _createRendition(nodeId: any, renditionBodyCreate: any): Promise<any>;
20
33
  createVersionRendition(nodeId: any, versionId: any, rendition: any): Promise<any>;
21
34
  getVersionRendition(nodeId: any, versionId: any, renditionId: any): Promise< RenditionEntry>;
@@ -38,20 +51,54 @@ declare class AlfrescoFileService {
38
51
  _requestRenditionCreation(node: any): void;
39
52
  isThumbnailSupported(node: any): any;
40
53
  /**
41
- * Get rendition of the selected node. The method will retry 5 times, waiting for rendition to be created
54
+ * Status of a rendition from a listRenditions/listVersionRenditions response.
55
+ * @param paging RenditionPaging response
56
+ * @param rendition the rendition id (e.g. "pdf")
57
+ * @returns {string|null} "CREATED" / "NOT_CREATED", or null when the rendition
58
+ * is not applicable to the node (i.e. cannot be produced for its mimetype)
59
+ */
60
+ _findRenditionStatus(paging: any, rendition: any): string | null;
61
+ /**
62
+ * Build the error thrown when a rendition cannot be produced for a node.
63
+ * Callers can detect it via `error.code === "RENDITION_NOT_AVAILABLE"` to
64
+ * show the default icon / a download-only view instead of retrying.
65
+ */
66
+ _renditionNotAvailable(nodeId: any, rendition: any): Error;
67
+ /**
68
+ * Poll a not-yet-created rendition until it becomes CREATED, then resolve its
69
+ * content URL. Rejects once retries are exhausted.
70
+ * @param getRendition () => Promise<RenditionEntry>
71
+ * @param getUrl () => string content URL once the rendition is ready
72
+ * @param rendition the rendition id, for logging
73
+ */
74
+ _waitForRendition(getRendition: any, getUrl: any, rendition: any): any;
75
+ /**
76
+ * Resolve the content URL of a node rendition.
77
+ *
78
+ * Lists the renditions applicable to the node first: listRenditions returns
79
+ * every rendition *possible* for the node's source mimetype, each with a
80
+ * status (CREATED / NOT_CREATED). We decide up-front instead of blindly
81
+ * requesting a rendition for a type that cannot produce it (which only
82
+ * generated errors and log noise):
83
+ * - rendition absent from the list -> reject with RENDITION_NOT_AVAILABLE
84
+ * - CREATED -> return its content URL
85
+ * - NOT_CREATED -> request creation, then wait until ready
86
+ *
42
87
  * @param nodeId
43
- * @param rendition default to pdf"
44
- * @returns {Promise<unknown>}
88
+ * @param rendition default "pdf"
89
+ * @returns {Promise<string>} the rendition content URL
45
90
  */
46
- getRenditionUrl(nodeId: any, rendition?: string): Promise<unknown>;
91
+ getRenditionUrl(nodeId: any, rendition?: string): Promise<string>;
47
92
  /**
48
- * Get rendition of the selected version. The method will retry 5 times, waiting for rendition to be created
93
+ * Resolve the content URL of a version rendition. Same strategy as
94
+ * {@link getRenditionUrl}, using the version rendition endpoints.
95
+ *
49
96
  * @param nodeId
50
97
  * @param versionId
51
- * @param rendition default to pdf"
52
- * @returns {*}
98
+ * @param rendition default "pdf"
99
+ * @returns {Promise<string>} the rendition content URL
53
100
  */
54
- getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): any;
101
+ getVersionRenditionUrl(nodeId: any, versionId: any, rendition?: string): Promise<string>;
55
102
  getProtocolForFileExtension(fileExtension: any): any;
56
103
  getFileExtension(fileName: any): any;
57
104
  isDoc(item: any): boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"AlfrescoFileService.d.ts","sourceRoot":"","sources":["../../../src/services/AlfrescoFileService.js"],"names":[],"mappings":";;;AAiCA;;GAEG;AACH;IAEI,4BAGE;IAEF,4BAAkC;IAClC,qCAGE;IAEJ,kCAQC;IAED,gCAQC;IAED,gCAQC;IAED,uDAQC;IAED,mDAeC;IAED,2DAIC;IAED,8CASC;IAED,sEAeC;IAED,kFAIC;IAED,uHAEC;IAED;;;;;OAKG;IACH,+BAFW,KAAK,QAkBf;IAED;;;;;;OAMG;IACH,0BAHW,KAAK,mBAMf;IAED,kDAOC;IAED,2CA4BC;IAED,qCAYC;IAED;;;;;OAKG;IACH,kDAFa,OAAO,CAAC,OAAO,CAAC,CA0C5B;IAED;;;;;;OAMG;IACH,yEAFa,GAAC,CA6Cb;IACD,qDAwCC;IACD,qCAMC;IACD,0BAOC;IACD,mCAqBC;IACD,wCAYC;IACD,sCA+BC;IACD,+EAcC;IACD,qBAEC;IACD,mBAEC;IACD,uBAEC;IACD,kCAqCC;IACD;;;;;;OAMG;IACH,+BALW,MAAM,QACN,MAAM,QACN,IAAI,gBAUd;IAED;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,yBAdG;QAAqB,UAAU;QACV,UAAU;QAKT,UAAU;QACV,UAAU;QACV,UAAU;KAEhC,GAAU,MAAM,CAmBlB;IAED;;;;OAIG;IACH,qDAQC;CACF;qBAtjBoB,WAAW"}
1
+ {"version":3,"file":"AlfrescoFileService.d.ts","sourceRoot":"","sources":["../../../src/services/AlfrescoFileService.js"],"names":[],"mappings":";;;AAiCA;;GAEG;AACH;IAEI,4BAGE;IAEF,4BAAkC;IAClC,qCAGE;IAEJ,kCAQC;IAED,gCAQC;IAED,gCAQC;IAED,uDAQC;IAED,mDAeC;IAED,2DAIC;IAED,8CASC;IAED;;;;;;;;;;;OAWG;IACH,yDAFa,OAAO,CAAC,GAAC,CAAC,CAkBtB;IAED,sEAeC;IAED,kFAIC;IAED,uHAEC;IAED;;;;;OAKG;IACH,+BAFW,KAAK,QAkBf;IAED;;;;;;OAMG;IACH,0BAHW,KAAK,mBAMf;IAED,kDAOC;IAED,2CA8BC;IAED,qCAYC;IAED;;;;;;OAMG;IACH,mDAHa,MAAM,GAAC,IAAI,CAMvB;IAED;;;;OAIG;IACH,2DAMC;IAED;;;;;;OAMG;IACH,uEAyBC;IAED;;;;;;;;;;;;;;;OAeG;IACH,kDAFa,OAAO,CAAC,MAAM,CAAC,CAkB3B;IAED;;;;;;;;OAQG;IACH,yEAFa,OAAO,CAAC,MAAM,CAAC,CAqB3B;IACD,qDAwCC;IACD,qCAMC;IACD,0BAOC;IACD,mCAqBC;IACD,wCAYC;IACD,sCA+BC;IACD,+EAcC;IACD,qBAEC;IACD,mBAEC;IACD,uBAEC;IACD,kCAqCC;IACD;;;;;;OAMG;IACH,+BALW,MAAM,QACN,MAAM,QACN,IAAI,gBAUd;IAED;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACH,yBAdG;QAAqB,UAAU;QACV,UAAU;QAKT,UAAU;QACV,UAAU;QACV,UAAU;KAEhC,GAAU,MAAM,CAmBlB;IAED;;;;OAIG;IACH,qDAQC;CACF;qBA7mBoB,WAAW"}
@@ -1 +1 @@
1
- {"version":3,"file":"MenuService.d.ts","sourceRoot":"","sources":["../../../src/services/MenuService.js"],"names":[],"mappings":";;AAsBA;;GAEG;AACH;IAEI,mCAGE;IAEJ,wBAEC;IAED,qCAsBC;IAED;;;;;;;;SAeC;IAED,gDAgBC;IAED,8CAkBC;IAED,8CA8BC;IAED;;;;OAIG;IACH;;;;;;;;;;MAgBC;IAED;;;;;;;;;;;;;;;;;;MAkCC;CACF;qBA1LoB,WAAW"}
1
+ {"version":3,"file":"MenuService.d.ts","sourceRoot":"","sources":["../../../src/services/MenuService.js"],"names":[],"mappings":";;AAsBA;;GAEG;AACH;IAEI,mCAGE;IAEJ,wBAEC;IAED,qCAkBC;IAED;;;;;;;;SAeC;IAED,gDAgBC;IAED,8CAkBC;IAED,8CA8BC;IAED;;;;OAIG;IACH;;;;;;;;;;MAgBC;IAED;;;;;;;;;;;;;;;;;;MAkCC;CACF;qBAtLoB,WAAW"}
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Build the parameters passed to pdf.js getDocument (via usePDF).
3
+ *
4
+ * Since pdf.js 5.x, JPEG2000 (and JBIG2 / ICC color) images are decoded by
5
+ * WASM modules (openjpeg.wasm, qcms_bg.wasm) that pdf.js fetches at runtime
6
+ * from `wasmUrl`. When wasmUrl is left undefined it defaults to null, so the
7
+ * worker tries to fetch "nullopenjpeg.wasm", fails, and JPEG2000 images are
8
+ * not rendered (the rest of the page still renders). We therefore point
9
+ * wasmUrl at "<BASE_URL>pdfjs/wasm/", where vite-plugin-static-copy serves the
10
+ * pdfjs-dist/wasm/* files in the consuming app.
11
+ *
12
+ * BASE_URL is the consuming app's Vite base (e.g. "/espaces/"). It is read
13
+ * from the ConfigStore at runtime because this library is consumed as a
14
+ * pre-built bundle, so import.meta.env.BASE_URL would be frozen to the
15
+ * library's own base instead of the app's.
16
+ *
17
+ * @param {string|object} src - A PDF URL or a DocumentInitParameters object.
18
+ * @returns {object} DocumentInitParameters including wasmUrl.
19
+ */
20
+ export function buildPdfSource(src: string | object): object;
21
+ //# sourceMappingURL=PdfConfigService.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PdfConfigService.d.ts","sourceRoot":"","sources":["../../../src/services/PdfConfigService.js"],"names":[],"mappings":"AAkBA;;;;;;;;;;;;;;;;;;GAkBG;AACH,oCAHW,MAAM,GAAC,MAAM,GACX,MAAM,CAQlB"}
@@ -1 +1 @@
1
- {"version":3,"file":"PeopleService.d.ts","sourceRoot":"","sources":["../../../src/services/PeopleService.js"],"names":[],"mappings":";;;AAqBA;;GAEG;AACH;IAEI,wCAGE;IACF,8BAGE;IAGJ,mCAkBC;IAED,sDAeC;IAED,2FAkBC;IAED,yDAgBC;IAED,2CAmBC;IAED,8DAkBC;IAED,wCAEC;IAED,sGA8CC;IAED,4DAeC;CACF;qBAzMoB,WAAW"}
1
+ {"version":3,"file":"PeopleService.d.ts","sourceRoot":"","sources":["../../../src/services/PeopleService.js"],"names":[],"mappings":";;;AAqBA;;GAEG;AACH;IAEI,wCAGE;IACF,8BAGE;IAGJ,mCAkBC;IAED,sDAeC;IAED,2FAkBC;IAED,yDAgBC;IAED,2CAmBC;IAED,8DAkBC;IAED,wCAEC;IAED,sGAmDC;IAED,4DAeC;CACF;qBA9MoB,WAAW"}