@pristy/pristy-libvue 2.17.2 → 2.18.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 (44) hide show
  1. package/dist/{ActivityHistory-BdWRS5sV.js → ActivityHistory-B7rEDc2i.js} +2 -2
  2. package/dist/{ActivityHistory-BdWRS5sV.js.map → ActivityHistory-B7rEDc2i.js.map} +1 -1
  3. package/dist/{BookmarksComponent-DemvcE10.js → BookmarksComponent-AtcKmJXo.js} +2 -2
  4. package/dist/{BookmarksComponent-DemvcE10.js.map → BookmarksComponent-AtcKmJXo.js.map} +1 -1
  5. package/dist/{ChartWrapper-BtwzmpkS.js → ChartWrapper-CLpgl4Fg.js} +2 -2
  6. package/dist/{ChartWrapper-BtwzmpkS.js.map → ChartWrapper-CLpgl4Fg.js.map} +1 -1
  7. package/dist/{DisplayFileInDashboardComponent-BHWDFOUi.js → DisplayFileInDashboardComponent-BAVvLZVV.js} +2 -2
  8. package/dist/{DisplayFileInDashboardComponent-BHWDFOUi.js.map → DisplayFileInDashboardComponent-BAVvLZVV.js.map} +1 -1
  9. package/dist/{ExternalApps-CAijJytf.js → ExternalApps-B2WCQKX8.js} +2 -2
  10. package/dist/{ExternalApps-CAijJytf.js.map → ExternalApps-B2WCQKX8.js.map} +1 -1
  11. package/dist/{FavoriteList-CRzvTs8t.js → FavoriteList-CZnQ5XWk.js} +2 -2
  12. package/dist/{FavoriteList-CRzvTs8t.js.map → FavoriteList-CZnQ5XWk.js.map} +1 -1
  13. package/dist/{MarkdownComponent-DOlPc8op.js → MarkdownComponent-Cvu0y5aE.js} +2 -2
  14. package/dist/{MarkdownComponent-DOlPc8op.js.map → MarkdownComponent-Cvu0y5aE.js.map} +1 -1
  15. package/dist/{SearchInput-BVvFmb7_.js → SearchInput-B1biNbXK.js} +2 -2
  16. package/dist/{SearchInput-BVvFmb7_.js.map → SearchInput-B1biNbXK.js.map} +1 -1
  17. package/dist/{UnknownBlockType-DwEstLka.js → UnknownBlockType-COgFjCNE.js} +2 -2
  18. package/dist/{UnknownBlockType-DwEstLka.js.map → UnknownBlockType-COgFjCNE.js.map} +1 -1
  19. package/dist/{index-CnpqKWu6.js → index-Cv1Jps6I.js} +10884 -10511
  20. package/dist/index-Cv1Jps6I.js.map +1 -0
  21. package/dist/pristy-libvue.css +1 -1
  22. package/dist/pristy-libvue.es.js +1 -1
  23. package/dist/pristy-libvue.umd.js +22 -22
  24. package/dist/pristy-libvue.umd.js.map +1 -1
  25. package/dist/src/components/layouts/AppSubmenu.vue.d.ts.map +1 -1
  26. package/dist/src/components/navigation/PreviewPanel.vue.d.ts +14 -1
  27. package/dist/src/components/pdfTools/PdfToolsComponent.vue.d.ts +4 -0
  28. package/dist/src/components/pdfTools/PdfToolsComponent.vue.d.ts.map +1 -1
  29. package/dist/src/components/viewer/PDFComponent.vue.d.ts +36 -1
  30. package/dist/src/components/viewer/PDFComponent.vue.d.ts.map +1 -1
  31. package/dist/src/i18n/index.d.ts +40 -6
  32. package/dist/src/i18n/index.d.ts.map +1 -1
  33. package/dist/src/services/PdfCommentService.d.ts +30 -0
  34. package/dist/src/services/PdfCommentService.d.ts.map +1 -0
  35. package/dist/src/services/PdfFormService.d.ts +29 -0
  36. package/dist/src/services/PdfFormService.d.ts.map +1 -0
  37. package/dist/src/services/PdfRedactionService.d.ts +30 -0
  38. package/dist/src/services/PdfRedactionService.d.ts.map +1 -0
  39. package/dist/src/services/PdfTextService.d.ts +25 -0
  40. package/dist/src/services/PdfTextService.d.ts.map +1 -0
  41. package/dist/src/stores/config.d.ts +0 -6
  42. package/dist/src/stores/config.d.ts.map +1 -1
  43. package/package.json +8 -8
  44. package/dist/index-CnpqKWu6.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"AppSubmenu.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layouts/AppSubmenu.vue"],"names":[],"mappings":";AAqJA;;IA8kBI;;;;;;;;;;;;;OAaG;;;;;;;;;;;;;;;IAbH;;;;;;;;;;;;;OAaG"}
1
+ {"version":3,"file":"AppSubmenu.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layouts/AppSubmenu.vue"],"names":[],"mappings":";AAkJA;;IA2kBI;;;;;;;;;;;;;OAaG;;;;;;;;;;;;;;;IAbH;;;;;;;;;;;;;OAaG"}
@@ -250,7 +250,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
250
250
  isSinglePageDisplayed: boolean;
251
251
  isFormDirty: boolean;
252
252
  isSaving: boolean;
253
+ isUnlocking: boolean;
254
+ isLocking: boolean;
253
255
  hasFormFields: boolean;
256
+ hasReadOnlyFields: boolean;
257
+ unlockedFormBytes: any;
254
258
  showFormFieldsDialog: boolean;
255
259
  formFieldsData: any[];
256
260
  formFieldValues: {};
@@ -273,17 +277,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
273
277
  fitWidthAuto(): void;
274
278
  previousPage(): void;
275
279
  nextPage(): void;
280
+ currentPdfSource(): string | {
281
+ data: Uint8Array;
282
+ };
276
283
  loadPDF(): void;
277
284
  changePageUrl(pageValue: any): void;
278
285
  focusOnPDFComponent(): void;
279
286
  getFormBytes(): Promise<any>;
280
287
  resetFormDirty(): void;
281
288
  setSaving(value: any): void;
289
+ setLocking(value: any): void;
290
+ getLockedFormBytes(): Promise<Uint8Array | null>;
282
291
  onAnnotation(value: any): void;
283
292
  checkFormFields(): Promise<void>;
293
+ unlockForm(): Promise<void>;
284
294
  cancelForm(): void;
285
295
  showFormFieldsInfo(): Promise<void>;
286
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("formDirtyChange" | "saveForm")[], "formDirtyChange" | "saveForm", PublicProps, Readonly< ExtractPropTypes<{
296
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("formDirtyChange" | "saveForm" | "lockForm" | "formUnlocked" | "formUnlockError")[], "formDirtyChange" | "saveForm" | "lockForm" | "formUnlocked" | "formUnlockError", PublicProps, Readonly< ExtractPropTypes<{
287
297
  url: {
288
298
  type: StringConstructor;
289
299
  default: any;
@@ -307,6 +317,9 @@ declare const _default: DefineComponent<ExtractPropTypes<{
307
317
  }>> & Readonly<{
308
318
  onFormDirtyChange?: (...args: any[]) => any;
309
319
  onSaveForm?: (...args: any[]) => any;
320
+ onLockForm?: (...args: any[]) => any;
321
+ onFormUnlocked?: (...args: any[]) => any;
322
+ onFormUnlockError?: (...args: any[]) => any;
310
323
  }>, {
311
324
  textLayer: boolean;
312
325
  hideForms: boolean;
@@ -1,14 +1,18 @@
1
1
  import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
2
  declare const _default: DefineComponent<{}, {
3
+ $emit: (event: "close", ...args: any[]) => void;
3
4
  id: string;
4
5
  toast: Record<string, any>;
6
+ closable: boolean;
5
7
  $props: {
6
8
  readonly id?: string;
7
9
  readonly toast?: Record<string, any>;
10
+ readonly closable?: boolean;
8
11
  };
9
12
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
10
13
  pdfCanvasWrapper: HTMLDivElement;
11
14
  overlayCanvas: HTMLCanvasElement;
15
+ textEditorInput: HTMLTextAreaElement;
12
16
  signaturePadCanvas: HTMLCanvasElement;
13
17
  }, HTMLDivElement>;
14
18
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"PdfToolsComponent.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/pdfTools/PdfToolsComponent.vue"],"names":[],"mappings":";AAirBA;"}
1
+ {"version":3,"file":"PdfToolsComponent.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/pdfTools/PdfToolsComponent.vue"],"names":[],"mappings":";AA2uBA;"}
@@ -45,7 +45,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
45
45
  isSinglePageDisplayed: boolean;
46
46
  isFormDirty: boolean;
47
47
  isSaving: boolean;
48
+ isUnlocking: boolean;
49
+ isLocking: boolean;
48
50
  hasFormFields: boolean;
51
+ hasReadOnlyFields: boolean;
52
+ unlockedFormBytes: any;
49
53
  showFormFieldsDialog: boolean;
50
54
  formFieldsData: any[];
51
55
  formFieldValues: {};
@@ -68,17 +72,45 @@ declare const _default: DefineComponent<ExtractPropTypes<{
68
72
  fitWidthAuto(): void;
69
73
  previousPage(): void;
70
74
  nextPage(): void;
75
+ /**
76
+ * Source handed to pdf.js: the node URL, or the in-memory bytes produced by
77
+ * unlockForm(). pdf.js transfers the `data` buffer to its worker, which
78
+ * detaches it, so every load gets its own copy — otherwise a second load
79
+ * (cancelForm, changePdfDisplay) would fail on a detached ArrayBuffer.
80
+ *
81
+ * @returns {string|{data: Uint8Array}}
82
+ */
83
+ currentPdfSource(): string | {
84
+ data: Uint8Array;
85
+ };
71
86
  loadPDF(): void;
72
87
  changePageUrl(pageValue: any): void;
73
88
  focusOnPDFComponent(): void;
74
89
  getFormBytes(): Promise<any>;
75
90
  resetFormDirty(): void;
76
91
  setSaving(value: any): void;
92
+ setLocking(value: any): void;
93
+ /**
94
+ * Bytes of the form with the values typed in the viewer kept and every
95
+ * field flagged read-only, ready to be stored as a new version.
96
+ *
97
+ * @returns {Promise<Uint8Array|null>} null when the document is not loaded
98
+ */
99
+ getLockedFormBytes(): Promise<Uint8Array | null>;
77
100
  onAnnotation(value: any): void;
78
101
  checkFormFields(): Promise<void>;
102
+ /**
103
+ * Drop the ReadOnly flags of the form so its fields become fillable.
104
+ *
105
+ * The change stays local: the viewer is reloaded from the rewritten bytes
106
+ * and nothing is sent to the repository. The unlocked structure reaches
107
+ * Alfresco only if the user then saves the filled form, through the regular
108
+ * save path.
109
+ */
110
+ unlockForm(): Promise<void>;
79
111
  cancelForm(): void;
80
112
  showFormFieldsInfo(): Promise<void>;
81
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("formDirtyChange" | "saveForm")[], "formDirtyChange" | "saveForm", PublicProps, Readonly< ExtractPropTypes<{
113
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("formDirtyChange" | "saveForm" | "lockForm" | "formUnlocked" | "formUnlockError")[], "formDirtyChange" | "saveForm" | "lockForm" | "formUnlocked" | "formUnlockError", PublicProps, Readonly< ExtractPropTypes<{
82
114
  url: {
83
115
  type: StringConstructor;
84
116
  default: any;
@@ -102,6 +134,9 @@ declare const _default: DefineComponent<ExtractPropTypes<{
102
134
  }>> & Readonly<{
103
135
  onFormDirtyChange?: (...args: any[]) => any;
104
136
  onSaveForm?: (...args: any[]) => any;
137
+ onLockForm?: (...args: any[]) => any;
138
+ onFormUnlocked?: (...args: any[]) => any;
139
+ onFormUnlockError?: (...args: any[]) => any;
105
140
  }>, {
106
141
  textLayer: boolean;
107
142
  hideForms: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"PDFComponent.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/viewer/PDFComponent.vue"],"names":[],"mappings":";;;;;;;;;;;;;AAoPA;"}
1
+ {"version":3,"file":"PDFComponent.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/viewer/PDFComponent.vue"],"names":[],"mappings":";;;;;;;;;;;;;AAkRA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqkCI;;;;;;;OAOG;wBADU,MAAM,GAAC;QAAC,IAAI,EAAE,UAAU,CAAA;KAAC;;;;;;;;IA8DtC;;;;;OAKG;0BADU,OAAO,CAAC,UAAU,GAAC,IAAI,CAAC;;;IAgFrC;;;;;;;OAOG"}
@@ -339,6 +339,9 @@ declare const i18n: I18n<{
339
339
  showPageByPage: string;
340
340
  previousPage: string;
341
341
  nextPage: string;
342
+ lockForm: string;
343
+ unlockForm: string;
344
+ unlockFormBlocked: string;
342
345
  saveForm: string;
343
346
  cancelForm: string;
344
347
  formFieldsInfo: string;
@@ -483,7 +486,6 @@ declare const i18n: I18n<{
483
486
  groups: {
484
487
  display: string;
485
488
  matomo: string;
486
- sentry: string;
487
489
  search: string;
488
490
  pagination: string;
489
491
  metadata: string;
@@ -698,6 +700,8 @@ declare const i18n: I18n<{
698
700
  };
699
701
  pdfTools: {
700
702
  title: string;
703
+ closeEditor: string;
704
+ closeUnsaved: string;
701
705
  loading: string;
702
706
  loadError: string;
703
707
  reorderError: string;
@@ -758,10 +762,23 @@ declare const i18n: I18n<{
758
762
  size: string;
759
763
  color: string;
760
764
  };
765
+ colors: {
766
+ black: string;
767
+ white: string;
768
+ red: string;
769
+ orange: string;
770
+ yellow: string;
771
+ green: string;
772
+ blue: string;
773
+ purple: string;
774
+ custom: string;
775
+ };
761
776
  apply: string;
762
777
  cancel: string;
763
- commentPrompt: string;
764
- addTextPrompt: string;
778
+ deleteSelected: string;
779
+ commentPlaceholder: string;
780
+ textInputLabel: string;
781
+ textInputPlaceholder: string;
765
782
  footerHint: string;
766
783
  };
767
784
  signaturePad: {
@@ -2235,6 +2252,9 @@ declare const i18n: I18n<{
2235
2252
  showPageByPage: string;
2236
2253
  previousPage: string;
2237
2254
  nextPage: string;
2255
+ lockForm: string;
2256
+ unlockForm: string;
2257
+ unlockFormBlocked: string;
2238
2258
  saveForm: string;
2239
2259
  cancelForm: string;
2240
2260
  formFieldsInfo: string;
@@ -2379,7 +2399,6 @@ declare const i18n: I18n<{
2379
2399
  groups: {
2380
2400
  display: string;
2381
2401
  matomo: string;
2382
- sentry: string;
2383
2402
  search: string;
2384
2403
  pagination: string;
2385
2404
  metadata: string;
@@ -2592,6 +2611,8 @@ declare const i18n: I18n<{
2592
2611
  };
2593
2612
  pdfTools: {
2594
2613
  title: string;
2614
+ closeEditor: string;
2615
+ closeUnsaved: string;
2595
2616
  loading: string;
2596
2617
  loadError: string;
2597
2618
  reorderError: string;
@@ -2652,10 +2673,23 @@ declare const i18n: I18n<{
2652
2673
  size: string;
2653
2674
  color: string;
2654
2675
  };
2676
+ colors: {
2677
+ black: string;
2678
+ white: string;
2679
+ red: string;
2680
+ orange: string;
2681
+ yellow: string;
2682
+ green: string;
2683
+ blue: string;
2684
+ purple: string;
2685
+ custom: string;
2686
+ };
2655
2687
  apply: string;
2656
2688
  cancel: string;
2657
- commentPrompt: string;
2658
- addTextPrompt: string;
2689
+ deleteSelected: string;
2690
+ commentPlaceholder: string;
2691
+ textInputLabel: string;
2692
+ textInputPlaceholder: string;
2659
2693
  footerHint: string;
2660
2694
  };
2661
2695
  signaturePad: {
@@ -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,30 @@
1
+ import { PDFDocument, PDFPage } from 'pdf-lib';
2
+ export function addCommentAnnotation({ doc, page, rect, text, title }: {
3
+ doc: PDFDocument;
4
+ page: PDFPage;
5
+ rect: CommentAnchor;
6
+ text: string;
7
+ title: string;
8
+ }): void;
9
+ export function readCommentAnnotations(page: PDFPage): {
10
+ x: number;
11
+ y: number;
12
+ size: number;
13
+ text: string;
14
+ }[];
15
+ export function removeCommentAnnotations(page: PDFPage): void;
16
+ export type CommentAnchor = {
17
+ /**
18
+ * left edge, in PDF coordinates
19
+ */
20
+ x: number;
21
+ /**
22
+ * bottom edge, in PDF coordinates
23
+ */
24
+ y: number;
25
+ /**
26
+ * side of the square icon, in points
27
+ */
28
+ size: number;
29
+ };
30
+ //# sourceMappingURL=PdfCommentService.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PdfCommentService.d.ts","sourceRoot":"","sources":["../../../src/services/PdfCommentService.js"],"names":[],"mappings":";AA8CO,uEANJ;IAA8C,GAAG,EAAzC,OAAO,SAAS,EAAE,WAAW;IACK,IAAI,EAAtC,OAAO,SAAS,EAAE,OAAO;IACH,IAAI,EAA1B,aAAa;IACE,IAAI,EAAnB,MAAM;IACS,KAAK,EAApB,MAAM;CAChB,QAqBA;AAaM,6CAJI,OAAO,SAAS,EAAE,OAAO,GACvB;IAAC,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAC,EAAE,CA6BhE;AAUM,+CAFI,OAAO,SAAS,EAAE,OAAO,QAgBnC;;;;;OAvGa,MAAM;;;;OACN,MAAM;;;;UACN,MAAM"}
@@ -0,0 +1,29 @@
1
+ /**
2
+ * Make every field of a form fillable again.
3
+ *
4
+ * A form whose fields are all flagged ReadOnly looks broken rather than
5
+ * protected — inert inputs, no message — a common accident with forms exported
6
+ * from LibreOffice Writer.
7
+ *
8
+ * @param {Uint8Array|ArrayBuffer} pdfBytes the document as loaded
9
+ * @returns {Promise<{bytes: Uint8Array|null, unlockedCount: number}>} null
10
+ * bytes when no field was locked
11
+ */
12
+ export function unlockFormFields(pdfBytes: Uint8Array | ArrayBuffer): Promise<{
13
+ bytes: Uint8Array | null;
14
+ unlockedCount: number;
15
+ }>;
16
+ /**
17
+ * Mark every field of a form as read-only, to state that it is final.
18
+ *
19
+ * @param {Uint8Array|ArrayBuffer} pdfBytes the document as loaded, values
20
+ * included — lock the bytes returned by pdf.js `saveDocument()` to keep what
21
+ * was filled in
22
+ * @returns {Promise<{bytes: Uint8Array|null, lockedCount: number}>} null bytes
23
+ * when every field was already read-only
24
+ */
25
+ export function lockFormFields(pdfBytes: Uint8Array | ArrayBuffer): Promise<{
26
+ bytes: Uint8Array | null;
27
+ lockedCount: number;
28
+ }>;
29
+ //# sourceMappingURL=PdfFormService.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PdfFormService.d.ts","sourceRoot":"","sources":["../../../src/services/PdfFormService.js"],"names":[],"mappings":"AAmEA;;;;;;;;;;GAUG;AACH,2CAJW,UAAU,GAAC,WAAW,GACpB,OAAO,CAAC;IAAC,KAAK,EAAE,UAAU,GAAC,IAAI,CAAC;IAAC,aAAa,EAAE,MAAM,CAAA;CAAC,CAAC,CAMpE;AAED;;;;;;;;GAQG;AACH,yCANW,UAAU,GAAC,WAAW,GAGpB,OAAO,CAAC;IAAC,KAAK,EAAE,UAAU,GAAC,IAAI,CAAC;IAAC,WAAW,EAAE,MAAM,CAAA;CAAC,CAAC,CAMlE"}
@@ -0,0 +1,30 @@
1
+ /** Resolution of the flattened page, high enough to stay readable in print. */
2
+ export const REDACTION_DPI: 200;
3
+ export function rasterizeRedactedPage({ pdfPage, redactions, dpi, quality, mimeType, maxPixels, createCanvas, }: {
4
+ pdfPage: any;
5
+ redactions?: PageFractionRect[];
6
+ dpi?: number;
7
+ quality?: number;
8
+ mimeType?: string;
9
+ maxPixels?: number;
10
+ createCanvas?: () => HTMLCanvasElement;
11
+ }): Promise<string>;
12
+ export type PageFractionRect = {
13
+ /**
14
+ * left edge, as a fraction of the page width (0..1)
15
+ */
16
+ x: number;
17
+ /**
18
+ * top edge, as a fraction of the page height (0..1)
19
+ */
20
+ y: number;
21
+ /**
22
+ * width, as a fraction of the page width (0..1)
23
+ */
24
+ w: number;
25
+ /**
26
+ * height, as a fraction of the page height (0..1)
27
+ */
28
+ h: number;
29
+ };
30
+ //# sourceMappingURL=PdfRedactionService.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PdfRedactionService.d.ts","sourceRoot":"","sources":["../../../src/services/PdfRedactionService.js"],"names":[],"mappings":"AAoBA,+EAA+E;AAC/E,4BAA6B,GAAG,CAAC;AA2C1B,iHATJ;IAAuB,OAAO;IACM,UAAU,GAAtC,gBAAgB,EAAE;IACF,GAAG,GAAnB,MAAM;IACU,OAAO,GAAvB,MAAM;IACU,QAAQ,GAAxB,MAAM;IACU,SAAS,GAAzB,MAAM;IACiC,YAAY,GAAnD,MAAY,iBAAiB;CACrC,GAAU,OAAO,CAAC,MAAM,CAAC,CAyC3B;;;;;OAtEa,MAAM;;;;OACN,MAAM;;;;OACN,MAAM;;;;OACN,MAAM"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Spacing between two consecutive baselines, as a multiple of the font size.
3
+ * Shared by the on-screen preview and the PDF output so both stay aligned.
4
+ */
5
+ export const LINE_HEIGHT_RATIO: 1.2;
6
+ export function overlayPixelsPerPoint({ overlayWidth, pageWidthPt }: {
7
+ overlayWidth: number;
8
+ pageWidthPt: number;
9
+ }): number;
10
+ export function splitTextLines(text: string): string[];
11
+ export function measureTextBlock({ lines, fontSize, measureLine }: {
12
+ lines: string[];
13
+ fontSize: number;
14
+ measureLine: (arg0: string) => number;
15
+ }): {
16
+ w: number;
17
+ h: number;
18
+ };
19
+ export function pdfBaselineY({ topY, lineIndex, fontSize, ascentPt }: {
20
+ topY: number;
21
+ lineIndex: number;
22
+ fontSize: number;
23
+ ascentPt: number;
24
+ }): number;
25
+ //# sourceMappingURL=PdfTextService.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PdfTextService.d.ts","sourceRoot":"","sources":["../../../src/services/PdfTextService.js"],"names":[],"mappings":"AAiBA;;;GAGG;AACH,gCAAiC,GAAG,CAAC;AAkB9B,qEAJJ;IAAuB,YAAY,EAA3B,MAAM;IACS,WAAW,EAA1B,MAAM;CACd,GAAU,MAAM,CAOlB;AAWM,qCAHI,MAAM,GACJ,MAAM,EAAE,CAEoD;AAWlE,mEALJ;IAAyB,KAAK,EAAtB,MAAM,EAAE;IACO,QAAQ,EAAvB,MAAM;IAC2B,WAAW,EAA5C,CAAS,IAAM,EAAN,MAAM,KAAG,MAAM;CAChC,GAAU;IAAC,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAA;CAAC,CAQlC;AAgBM,sEANJ;IAAuB,IAAI,EAAnB,MAAM;IACS,SAAS,EAAxB,MAAM;IACS,QAAQ,EAAvB,MAAM;IACS,QAAQ,EAAvB,MAAM;CACd,GAAU,MAAM,CAGyC"}
@@ -55,8 +55,6 @@ export const useConfigStore: StoreDefinition<"ConfigStore", {
55
55
  };
56
56
  ACA_LINK: string;
57
57
  SHOW_ACA_LOGIN_LINK: boolean;
58
- SENTRY_ENABLE: boolean;
59
- SENTRY_DSN: string;
60
58
  MATOMO_ENABLE: boolean;
61
59
  MATOMO_INSTANCE_URL: string;
62
60
  MATOMO_SITE_ID: string;
@@ -155,8 +153,6 @@ export const useConfigStore: StoreDefinition<"ConfigStore", {
155
153
  };
156
154
  ACA_LINK: string;
157
155
  SHOW_ACA_LOGIN_LINK: boolean;
158
- SENTRY_ENABLE: boolean;
159
- SENTRY_DSN: string;
160
156
  MATOMO_ENABLE: boolean;
161
157
  MATOMO_INSTANCE_URL: string;
162
158
  MATOMO_SITE_ID: string;
@@ -254,8 +250,6 @@ export const useConfigStore: StoreDefinition<"ConfigStore", {
254
250
  };
255
251
  ACA_LINK: string;
256
252
  SHOW_ACA_LOGIN_LINK: boolean;
257
- SENTRY_ENABLE: boolean;
258
- SENTRY_DSN: string;
259
253
  MATOMO_ENABLE: boolean;
260
254
  MATOMO_INSTANCE_URL: string;
261
255
  MATOMO_SITE_ID: string;
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/stores/config.js"],"names":[],"mappings":";AAuBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAmMI;;;;;;;;;;OAUG;gCADU,OAAO;;;IASpB;;OAEG;;IAkBH;;;;;OAKG;0CADS,OAAO,CAAC,IAAI,CAAC;GAiC1B"}
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/stores/config.js"],"names":[],"mappings":";AAuBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAiMI;;;;;;;;;;OAUG;gCADU,OAAO;;;IASpB;;OAEG;;IAkBH;;;;;OAKG;0CADS,OAAO,CAAC,IAAI,CAAC;GAiC1B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pristy/pristy-libvue",
3
- "version": "2.17.2",
3
+ "version": "2.18.1",
4
4
  "description": "Core library used by all Pristy applications",
5
5
  "homepage": "https://pristy.fr/en/",
6
6
  "author": "JECI SARL",
@@ -56,8 +56,8 @@
56
56
  "@codemirror/theme-one-dark": "^6.1.3",
57
57
  "@codemirror/view": "^6.43.9",
58
58
  "codemirror": "6.0.2",
59
- "vue": "^3.5.41",
60
- "vue-i18n": "^11.4.8",
59
+ "vue": "^3.5.42",
60
+ "vue-i18n": "^11.4.10",
61
61
  "vue-router": "^4.6.4"
62
62
  },
63
63
  "overrides": {
@@ -71,7 +71,7 @@
71
71
  "@tato30/vue-pdf": "^1.11.5",
72
72
  "@vueuse/core": "^12.8.2",
73
73
  "async-retry": "^1.3.3",
74
- "axios": "^1.19.0",
74
+ "axios": "^1.20.0",
75
75
  "dompurify": "^3.4.14",
76
76
  "email-validator": "^2.0.4",
77
77
  "highlight.js": "^11.12.0",
@@ -95,16 +95,16 @@
95
95
  "@vitejs/plugin-legacy": "^7.2.1",
96
96
  "@vitejs/plugin-vue": "^6.0.8",
97
97
  "@vitest/coverage-v8": "^3.2.7",
98
- "@vue/test-utils": "^2.4.11",
99
- "eslint": "^10.8.1",
98
+ "@vue/test-utils": "^2.5.0",
99
+ "eslint": "^10.9.1",
100
100
  "eslint-plugin-prettier": "^5.5.6",
101
101
  "eslint-plugin-vue": "^10.10.0",
102
102
  "globals": "^17.11.0",
103
103
  "jsdom": "^27.4.0",
104
104
  "prettier": "^3.9.6",
105
105
  "rollup-plugin-visualizer": "^6.0.11",
106
- "sass": "^1.102.0",
107
- "svgo": "^4.0.2",
106
+ "sass": "^1.103.1",
107
+ "svgo": "^4.1.0",
108
108
  "typescript": "^6.0.3",
109
109
  "vite": "^7.3.6",
110
110
  "vite-plugin-dts": "^4.5.4",