@vue-pdf-viewer/shared 0.0.0-experimental.12 → 0.0.0-experimental.14

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.
@@ -89,6 +89,11 @@
89
89
  "annotationFreeTextTooltip": "Free text",
90
90
  "annotationSignatureLabel": "Signature",
91
91
  "annotationSignatureTooltip": "Signature",
92
+ "annotationSignatureAddLabel": "Add new signature",
93
+ "annotationSignatureAddTooltip": "Add new signature",
92
94
  "annotationCommentLabel": "Comment",
93
- "annotationCommentTooltip": "Comment"
95
+ "annotationCommentTooltip": "Comment",
96
+ "annotationImageLabel": "Image",
97
+ "annotationImageTooltip": "Add image",
98
+ "annotationImageUnsupportedFileMessage": "Unsupported file type"
94
99
  }
@@ -89,6 +89,11 @@
89
89
  "annotationFreeTextTooltip": "Testo libero",
90
90
  "annotationSignatureLabel": "Firma",
91
91
  "annotationSignatureTooltip": "Firma",
92
+ "annotationSignatureAddLabel": "Aggiungi nuova firma",
93
+ "annotationSignatureAddTooltip": "Aggiungi nuova firma",
92
94
  "annotationCommentLabel": "Commento",
93
- "annotationCommentTooltip": "Commento"
95
+ "annotationCommentTooltip": "Commento",
96
+ "annotationImageLabel": "Immagine",
97
+ "annotationImageTooltip": "Aggiungi immagine",
98
+ "annotationImageUnsupportedFileMessage": "Tipo di file non supportato"
94
99
  }
@@ -89,6 +89,11 @@
89
89
  "annotationFreeTextTooltip": "Texto livre",
90
90
  "annotationSignatureLabel": "Assinatura",
91
91
  "annotationSignatureTooltip": "Assinatura",
92
+ "annotationSignatureAddLabel": "Adicionar nova assinatura",
93
+ "annotationSignatureAddTooltip": "Adicionar nova assinatura",
92
94
  "annotationCommentLabel": "Comentário",
93
- "annotationCommentTooltip": "Comentário"
95
+ "annotationCommentTooltip": "Comentário",
96
+ "annotationImageLabel": "Imagem",
97
+ "annotationImageTooltip": "Adicionar imagem",
98
+ "annotationImageUnsupportedFileMessage": "Tipo de arquivo não suportado"
94
99
  }
@@ -87,8 +87,13 @@
87
87
  "annotationHighlightDeleteTooltip": "ลบไฮไลท์",
88
88
  "annotationFreeTextLabel": "ข้อความ",
89
89
  "annotationFreeTextTooltip": "ข้อความ",
90
- "annotationSignatureLabel": "ลายนิ้วมือ",
91
- "annotationSignatureTooltip": "ลายนิ้วมือ",
90
+ "annotationSignatureLabel": "ลายเซ็น",
91
+ "annotationSignatureTooltip": "ลายเซ็น",
92
+ "annotationSignatureAddLabel": "เพิ่มลายเซ็นใหม่",
93
+ "annotationSignatureAddTooltip": "เพิ่มลายเซ็นใหม่",
92
94
  "annotationCommentLabel": "ความคิดเห็น",
93
- "annotationCommentTooltip": "ความคิดเห็น"
95
+ "annotationCommentTooltip": "ความคิดเห็น",
96
+ "annotationImageLabel": "รูปภาพ",
97
+ "annotationImageTooltip": "เพิ่มรูปภาพ",
98
+ "annotationImageUnsupportedFileMessage": "ประเภทไฟล์ไม่รองรับ"
94
99
  }
@@ -89,6 +89,11 @@
89
89
  "annotationFreeTextTooltip": "自由文本",
90
90
  "annotationSignatureLabel": "签名",
91
91
  "annotationSignatureTooltip": "签名",
92
+ "annotationSignatureAddLabel": "添加新签名",
93
+ "annotationSignatureAddTooltip": "添加新签名",
92
94
  "annotationCommentLabel": "注释",
93
- "annotationCommentTooltip": "注释"
95
+ "annotationCommentTooltip": "注释",
96
+ "annotationImageLabel": "图片",
97
+ "annotationImageTooltip": "添加图片",
98
+ "annotationImageUnsupportedFileMessage": "不支持的文件类型"
94
99
  }
package/dist/types.d.ts CHANGED
@@ -90,8 +90,13 @@ export type Localization = {
90
90
  annotationFreeTextTooltip: string;
91
91
  annotationSignatureLabel: string;
92
92
  annotationSignatureTooltip: string;
93
+ annotationSignatureAddLabel: string;
94
+ annotationSignatureAddTooltip: string;
93
95
  annotationCommentLabel: string;
94
96
  annotationCommentTooltip: string;
97
+ annotationImageLabel: string;
98
+ annotationImageTooltip: string;
99
+ annotationImageUnsupportedFileMessage: string;
95
100
  };
96
101
  export type ToolbarDirection = "top" | "left" | "right";
97
102
  export interface PluginItem {
@@ -111,6 +116,7 @@ export interface PluginContext {
111
116
  AppTooltip?: Component;
112
117
  AppPopover?: Component;
113
118
  AppHighlightColorPicker?: Component;
119
+ AppSignatures?: Component;
114
120
  };
115
121
  };
116
122
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vue-pdf-viewer/shared",
3
3
  "private": false,
4
- "version": "0.0.0-experimental.12",
4
+ "version": "0.0.0-experimental.14",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",