@vue-pdf-viewer/shared 0.0.0-experimental.11 → 0.0.0-experimental.13
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.
- package/dist/const.d.ts +3 -0
- package/dist/const.js +4 -0
- package/dist/locales/en_US.json +2 -0
- package/dist/locales/it_IT.json +2 -0
- package/dist/locales/pt_PT.json +2 -0
- package/dist/locales/th_TH.json +4 -2
- package/dist/locales/zh_CN.json +2 -0
- package/dist/types.d.ts +3 -0
- package/package.json +1 -1
package/dist/const.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import type { InjectionKey, Reactive, ComputedRef } from "vue";
|
|
2
2
|
import type { LocaleKey, Localization, PluginContext } from "./index";
|
|
3
3
|
import { EventAnnotation } from "./enumerators";
|
|
4
|
+
export declare const PLUGIN_ID: {
|
|
5
|
+
ANNOTATIONS: string;
|
|
6
|
+
};
|
|
4
7
|
export declare const Locales: Record<LocaleKey, Localization>;
|
|
5
8
|
export declare const SHARED_UI_SYMBOL: InjectionKey<Reactive<PluginContext["shared"]["ui"]>>;
|
|
6
9
|
export declare const LOCALIZATION_SYMBOL: InjectionKey<ComputedRef<Localization> | undefined>;
|
package/dist/const.js
CHANGED
|
@@ -4,6 +4,10 @@ import cn from "./locales/zh_CN.json";
|
|
|
4
4
|
import it from "./locales/it_IT.json";
|
|
5
5
|
import pt from "./locales/pt_PT.json";
|
|
6
6
|
import th from "./locales/th_TH.json";
|
|
7
|
+
export const PLUGIN_ID = {
|
|
8
|
+
ANNOTATIONS: "annotations",
|
|
9
|
+
// ... other plugin ids
|
|
10
|
+
};
|
|
7
11
|
export const Locales = {
|
|
8
12
|
en_US: en,
|
|
9
13
|
zh_CN: cn,
|
package/dist/locales/en_US.json
CHANGED
|
@@ -89,6 +89,8 @@
|
|
|
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
95
|
"annotationCommentTooltip": "Comment"
|
|
94
96
|
}
|
package/dist/locales/it_IT.json
CHANGED
|
@@ -89,6 +89,8 @@
|
|
|
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
95
|
"annotationCommentTooltip": "Commento"
|
|
94
96
|
}
|
package/dist/locales/pt_PT.json
CHANGED
|
@@ -89,6 +89,8 @@
|
|
|
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
95
|
"annotationCommentTooltip": "Comentário"
|
|
94
96
|
}
|
package/dist/locales/th_TH.json
CHANGED
|
@@ -87,8 +87,10 @@
|
|
|
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
95
|
"annotationCommentTooltip": "ความคิดเห็น"
|
|
94
96
|
}
|
package/dist/locales/zh_CN.json
CHANGED
|
@@ -89,6 +89,8 @@
|
|
|
89
89
|
"annotationFreeTextTooltip": "自由文本",
|
|
90
90
|
"annotationSignatureLabel": "签名",
|
|
91
91
|
"annotationSignatureTooltip": "签名",
|
|
92
|
+
"annotationSignatureAddLabel": "添加新签名",
|
|
93
|
+
"annotationSignatureAddTooltip": "添加新签名",
|
|
92
94
|
"annotationCommentLabel": "注释",
|
|
93
95
|
"annotationCommentTooltip": "注释"
|
|
94
96
|
}
|
package/dist/types.d.ts
CHANGED
|
@@ -90,6 +90,8 @@ 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;
|
|
95
97
|
};
|
|
@@ -111,6 +113,7 @@ export interface PluginContext {
|
|
|
111
113
|
AppTooltip?: Component;
|
|
112
114
|
AppPopover?: Component;
|
|
113
115
|
AppHighlightColorPicker?: Component;
|
|
116
|
+
AppSignatures?: Component;
|
|
114
117
|
};
|
|
115
118
|
};
|
|
116
119
|
}
|