@vue-pdf-viewer/shared 0.0.0-experimental.10 → 0.0.0-experimental.12
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 +1 -0
- package/dist/locales/it_IT.json +1 -0
- package/dist/locales/pt_PT.json +1 -0
- package/dist/locales/th_TH.json +1 -0
- package/dist/locales/zh_CN.json +1 -0
- package/dist/types.d.ts +1 -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
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
"annotationHighlightLabel": "Highlight",
|
|
85
85
|
"annotationHighlightTooltip": "Highlight",
|
|
86
86
|
"annotationHighlightColorPickerLabel": "Highlight color",
|
|
87
|
+
"annotationHighlightDeleteTooltip": "Delete highlight",
|
|
87
88
|
"annotationFreeTextLabel": "Free text",
|
|
88
89
|
"annotationFreeTextTooltip": "Free text",
|
|
89
90
|
"annotationSignatureLabel": "Signature",
|
package/dist/locales/it_IT.json
CHANGED
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
"annotationHighlightLabel": "Evidenzia",
|
|
85
85
|
"annotationHighlightTooltip": "Evidenzia",
|
|
86
86
|
"annotationHighlightColorPickerLabel": "Colore evidenziazione",
|
|
87
|
+
"annotationHighlightDeleteTooltip": "Elimina evidenziazione",
|
|
87
88
|
"annotationFreeTextLabel": "Testo libero",
|
|
88
89
|
"annotationFreeTextTooltip": "Testo libero",
|
|
89
90
|
"annotationSignatureLabel": "Firma",
|
package/dist/locales/pt_PT.json
CHANGED
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
"annotationHighlightLabel": "Destacar",
|
|
85
85
|
"annotationHighlightTooltip": "Destacar",
|
|
86
86
|
"annotationHighlightColorPickerLabel": "Cor de destaque",
|
|
87
|
+
"annotationHighlightDeleteTooltip": "Excluir destaque",
|
|
87
88
|
"annotationFreeTextLabel": "Texto livre",
|
|
88
89
|
"annotationFreeTextTooltip": "Texto livre",
|
|
89
90
|
"annotationSignatureLabel": "Assinatura",
|
package/dist/locales/th_TH.json
CHANGED
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
"annotationHighlightLabel": "ไฮไลท์",
|
|
85
85
|
"annotationHighlightTooltip": "ไฮไลท์",
|
|
86
86
|
"annotationHighlightColorPickerLabel": "สีไฮไลท์",
|
|
87
|
+
"annotationHighlightDeleteTooltip": "ลบไฮไลท์",
|
|
87
88
|
"annotationFreeTextLabel": "ข้อความ",
|
|
88
89
|
"annotationFreeTextTooltip": "ข้อความ",
|
|
89
90
|
"annotationSignatureLabel": "ลายนิ้วมือ",
|
package/dist/locales/zh_CN.json
CHANGED
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
"annotationHighlightLabel": "高亮",
|
|
85
85
|
"annotationHighlightTooltip": "高亮",
|
|
86
86
|
"annotationHighlightColorPickerLabel": "高亮颜色",
|
|
87
|
+
"annotationHighlightDeleteTooltip": "删除高亮",
|
|
87
88
|
"annotationFreeTextLabel": "自由文本",
|
|
88
89
|
"annotationFreeTextTooltip": "自由文本",
|
|
89
90
|
"annotationSignatureLabel": "签名",
|
package/dist/types.d.ts
CHANGED
|
@@ -85,6 +85,7 @@ export type Localization = {
|
|
|
85
85
|
annotationHighlightLabel: string;
|
|
86
86
|
annotationHighlightTooltip: string;
|
|
87
87
|
annotationHighlightColorPickerLabel: string;
|
|
88
|
+
annotationHighlightDeleteTooltip: string;
|
|
88
89
|
annotationFreeTextLabel: string;
|
|
89
90
|
annotationFreeTextTooltip: string;
|
|
90
91
|
annotationSignatureLabel: string;
|