@pristy/pristy-libvue 1.14.0 → 1.14.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.
@@ -1 +1 @@
1
- {"version":3,"file":"CodeMirrorEditor.vue.d.ts","sourceRoot":"","sources":["../../src/components/CodeMirrorEditor.vue"],"names":[],"mappings":";AAmRA;"}
1
+ {"version":3,"file":"CodeMirrorEditor.vue.d.ts","sourceRoot":"","sources":["../../src/components/CodeMirrorEditor.vue"],"names":[],"mappings":";AAoUA;"}
@@ -59,6 +59,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
59
59
  };
60
60
  }, {
61
61
  navigateTo(node: any): void;
62
+ handleNavigateClick(event: any, node: any): void;
62
63
  applyAction(actionFnName: any, row: any): void;
63
64
  applyFormat(value: any, formatFnName: any): any;
64
65
  getValue(obj: any, path: any): any;
@@ -1 +1 @@
1
- {"version":3,"file":"ContentTableView.vue.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/ContentTableView.vue"],"names":[],"mappings":";;;AAkMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAwYmB,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":";;;AA6MA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA4ZmB,iBAAiB;kBAClB,gBAAgB;sBACZ,oBAAoB;qBACrB,mBAAmB;mBACrB,iBAAiB"}
@@ -511,6 +511,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
511
511
  };
512
512
  }, {
513
513
  navigateTo(node: any): void;
514
+ handleNavigateClick(event: any, node: any): void;
514
515
  applyAction(actionFnName: any, row: any): void;
515
516
  applyFormat(value: any, formatFnName: any): any;
516
517
  getValue(obj: any, path: any): any;
@@ -1053,6 +1054,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
1053
1054
  to: any[];
1054
1055
  cc: any[];
1055
1056
  cci: any[];
1057
+ showCc: boolean;
1058
+ showCci: boolean;
1056
1059
  subject: any;
1057
1060
  message: any;
1058
1061
  attachment: boolean;
@@ -1065,6 +1068,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
1065
1068
  checkSubject(): string;
1066
1069
  checkMessage(): string;
1067
1070
  }, {
1071
+ buildDefaultMessage(): void;
1068
1072
  closePopup(reload: any): void;
1069
1073
  sendMail(): Promise<void>;
1070
1074
  copyLinkClipboard(): void;
@@ -1 +1 @@
1
- {"version":3,"file":"DynamicContentView.vue.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/DynamicContentView.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAsLA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAojBmB,iBAAiB;qBAEf,mBAAmB;qBADnB,mBAAmB"}
1
+ {"version":3,"file":"DynamicContentView.vue.d.ts","sourceRoot":"","sources":["../../../src/components/navigation/DynamicContentView.vue"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAsLA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAojBmB,iBAAiB;qBAEf,mBAAmB;qBADnB,mBAAmB"}
@@ -10,6 +10,8 @@ declare const _default: DefineComponent<{}, {}, {
10
10
  to: any[];
11
11
  cc: any[];
12
12
  cci: any[];
13
+ showCc: boolean;
14
+ showCci: boolean;
13
15
  subject: any;
14
16
  message: any;
15
17
  attachment: boolean;
@@ -22,6 +24,7 @@ declare const _default: DefineComponent<{}, {}, {
22
24
  checkSubject(): string;
23
25
  checkMessage(): string;
24
26
  }, {
27
+ buildDefaultMessage(): void;
25
28
  closePopup(reload: any): void;
26
29
  sendMail(): Promise<void>;
27
30
  copyLinkClipboard(): void;
@@ -1 +1 @@
1
- {"version":3,"file":"SendMailPopup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/popup/SendMailPopup.vue"],"names":[],"mappings":";AA6JA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAkWmB,iBAAiB;mBALjB,iBAAiB;kBAClB,gBAAgB;qBACb,mBAAmB;qBACnB,mBAAmB;sBAClB,oBAAoB"}
1
+ {"version":3,"file":"SendMailPopup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/popup/SendMailPopup.vue"],"names":[],"mappings":";AAkLA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA+amB,iBAAiB;mBALjB,iBAAiB;kBAClB,gBAAgB;qBACb,mBAAmB;qBACnB,mBAAmB;sBAClB,oBAAoB"}
@@ -1 +1 @@
1
- {"version":3,"file":"useCollabEditor.d.ts","sourceRoot":"","sources":["../../src/composables/useCollabEditor.js"],"names":[],"mappings":"AA+IA;;;;;GAKG;AACH,uCAyuBC;AAh2BD,0BAA2B,QAAQ,CAAC;AACpC,4BAA6B,UAAU,CAAC"}
1
+ {"version":3,"file":"useCollabEditor.d.ts","sourceRoot":"","sources":["../../src/composables/useCollabEditor.js"],"names":[],"mappings":"AA0JA;;;;;GAKG;AACH,uCAs2BC;AA79BD,0BAA2B,QAAQ,CAAC;AACpC,4BAA6B,UAAU,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"useCollabWebSocket.d.ts","sourceRoot":"","sources":["../../src/composables/useCollabWebSocket.js"],"names":[],"mappings":"AA0CA;;;;;;GAMG;AACH,sDA6RC"}
1
+ {"version":3,"file":"useCollabWebSocket.d.ts","sourceRoot":"","sources":["../../src/composables/useCollabWebSocket.js"],"names":[],"mappings":"AA0CA;;;;;;GAMG;AACH,sDAuSC"}
@@ -652,6 +652,8 @@ declare const i18n: I18n<{
652
652
  cancelEdit: string;
653
653
  edit: string;
654
654
  saveSuccess: string;
655
+ saveSuccessVersion: string;
656
+ alreadySaved: string;
655
657
  loadError: string;
656
658
  refreshError: string;
657
659
  unsavedChanges: string;
@@ -677,6 +679,15 @@ declare const i18n: I18n<{
677
679
  participantsTooltip: string;
678
680
  editorsTooltip: string;
679
681
  observersTooltip: string;
682
+ connectionFailed: string;
683
+ copyContent: string;
684
+ contentCopied: string;
685
+ retryConnection: string;
686
+ retryFailed: string;
687
+ unsavedCollab: string;
688
+ recoverBackup: string;
689
+ recoverBackupHeader: string;
690
+ closeEditor: string;
680
691
  };
681
692
  diffViewer: {
682
693
  compareTitle: string;
@@ -696,6 +707,8 @@ declare const i18n: I18n<{
696
707
  };
697
708
  };
698
709
  sendingMail: {
710
+ addCc: string;
711
+ addCci: string;
699
712
  popup: {
700
713
  defaultSubject: string;
701
714
  defaultMessage: string;
@@ -1412,6 +1425,8 @@ declare const i18n: I18n<{
1412
1425
  edit: string;
1413
1426
  cancelEdit: string;
1414
1427
  saveSuccess: string;
1428
+ saveSuccessVersion: string;
1429
+ alreadySaved: string;
1415
1430
  loadError: string;
1416
1431
  refreshError: string;
1417
1432
  unsavedChanges: string;
@@ -1437,6 +1452,15 @@ declare const i18n: I18n<{
1437
1452
  participantsTooltip: string;
1438
1453
  editorsTooltip: string;
1439
1454
  observersTooltip: string;
1455
+ connectionFailed: string;
1456
+ copyContent: string;
1457
+ contentCopied: string;
1458
+ retryConnection: string;
1459
+ retryFailed: string;
1460
+ unsavedCollab: string;
1461
+ recoverBackup: string;
1462
+ recoverBackupHeader: string;
1463
+ closeEditor: string;
1440
1464
  };
1441
1465
  diffViewer: {
1442
1466
  compareTitle: string;
@@ -1456,6 +1480,8 @@ declare const i18n: I18n<{
1456
1480
  };
1457
1481
  };
1458
1482
  sendingMail: {
1483
+ addCc: string;
1484
+ addCci: string;
1459
1485
  popup: {
1460
1486
  defaultSubject: string;
1461
1487
  defaultMessage: 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"}