@vue-pdf-viewer/shared 1.2.0-rc.1 → 1.2.0-rc.3
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/locales/en_US.json
CHANGED
|
@@ -87,6 +87,8 @@
|
|
|
87
87
|
"annotationLabel": "Annotation tools",
|
|
88
88
|
"annotationToggleShowTooltip": "Show annotation tools",
|
|
89
89
|
"annotationToggleHideTooltip": "Hide annotation tools",
|
|
90
|
+
"annotationTextSelectionLabel": "Text selection tool",
|
|
91
|
+
"annotationTextSelectionTooltip": "Enable text selection tool",
|
|
90
92
|
"annotationHighlightLabel": "Highlight",
|
|
91
93
|
"annotationHighlightTooltip": "Highlight",
|
|
92
94
|
"annotationHighlightColorTooltip": "Change highlight color",
|
package/dist/locales/it_IT.json
CHANGED
|
@@ -87,6 +87,8 @@
|
|
|
87
87
|
"annotationLabel": "Strumenti annotazione",
|
|
88
88
|
"annotationToggleShowTooltip": "Mostra strumenti annotazione",
|
|
89
89
|
"annotationToggleHideTooltip": "Nascondi strumenti annotazione",
|
|
90
|
+
"annotationTextSelectionLabel": "Strumento selezione testo",
|
|
91
|
+
"annotationTextSelectionTooltip": "Abilita strumento selezione testo",
|
|
90
92
|
"annotationHighlightLabel": "Evidenzia",
|
|
91
93
|
"annotationHighlightTooltip": "Evidenzia",
|
|
92
94
|
"annotationHighlightColorTooltip": "Cambia colore evidenziazione",
|
package/dist/locales/pt_PT.json
CHANGED
|
@@ -87,6 +87,8 @@
|
|
|
87
87
|
"annotationLabel": "Ferramentas de anotação",
|
|
88
88
|
"annotationToggleShowTooltip": "Mostrar ferramentas de anotação",
|
|
89
89
|
"annotationToggleHideTooltip": "Ocultar ferramentas de anotação",
|
|
90
|
+
"annotationTextSelectionLabel": "Ferramenta de seleção de texto",
|
|
91
|
+
"annotationTextSelectionTooltip": "Ativar ferramenta de seleção de texto",
|
|
90
92
|
"annotationHighlightLabel": "Destacar",
|
|
91
93
|
"annotationHighlightTooltip": "Destacar",
|
|
92
94
|
"annotationHighlightColorTooltip": "Alterar cor do destaque",
|
package/dist/locales/th_TH.json
CHANGED
|
@@ -87,6 +87,8 @@
|
|
|
87
87
|
"annotationLabel": "เครื่องมือการออกแบบ",
|
|
88
88
|
"annotationToggleShowTooltip": "แสดงเครื่องมือการออกแบบ",
|
|
89
89
|
"annotationToggleHideTooltip": "ซ่อนเครื่องมือการออกแบบ",
|
|
90
|
+
"annotationTextSelectionLabel": "เลือกข้อความ",
|
|
91
|
+
"annotationTextSelectionTooltip": "เปิดใช้การเลือกข้อความ",
|
|
90
92
|
"annotationHighlightLabel": "ไฮไลท์",
|
|
91
93
|
"annotationHighlightTooltip": "ไฮไลท์",
|
|
92
94
|
"annotationHighlightColorTooltip": "เปลี่ยนสีไฮไลท์",
|
package/dist/locales/zh_CN.json
CHANGED
|
@@ -87,6 +87,8 @@
|
|
|
87
87
|
"annotationLabel": "注释工具",
|
|
88
88
|
"annotationToggleShowTooltip": "显示注释工具",
|
|
89
89
|
"annotationToggleHideTooltip": "隐藏注释工具",
|
|
90
|
+
"annotationTextSelectionLabel": "文本选择工具",
|
|
91
|
+
"annotationTextSelectionTooltip": "启用文本选择工具",
|
|
90
92
|
"annotationHighlightLabel": "高亮",
|
|
91
93
|
"annotationHighlightTooltip": "高亮",
|
|
92
94
|
"annotationHighlightColorTooltip": "更改高亮颜色",
|
package/dist/types.d.ts
CHANGED
|
@@ -90,6 +90,8 @@ export type Localization = {
|
|
|
90
90
|
annotationLabel: string;
|
|
91
91
|
annotationToggleShowTooltip: string;
|
|
92
92
|
annotationToggleHideTooltip: string;
|
|
93
|
+
annotationTextSelectionLabel: string;
|
|
94
|
+
annotationTextSelectionTooltip: string;
|
|
93
95
|
annotationHighlightLabel: string;
|
|
94
96
|
annotationHighlightTooltip: string;
|
|
95
97
|
annotationHighlightColorTooltip: string;
|
|
@@ -150,12 +152,13 @@ export interface LabelValuePair {
|
|
|
150
152
|
value: string;
|
|
151
153
|
}
|
|
152
154
|
export type AnnotationColors = LabelValuePair[] | string[];
|
|
155
|
+
export type AnnotationColorsLength = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
153
156
|
export type AnnotationHighlightColors = (AnnotationColors & {
|
|
154
|
-
length:
|
|
155
|
-
}) | null;
|
|
156
|
-
export type AnnotationFreeTextFontColors = (AnnotationColors & {
|
|
157
|
-
length: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
157
|
+
length: AnnotationColorsLength;
|
|
158
158
|
}) | null;
|
|
159
|
+
export type AnnotationStrikethroughColors = AnnotationHighlightColors;
|
|
160
|
+
export type AnnotationUnderlineColors = AnnotationHighlightColors;
|
|
161
|
+
export type AnnotationFreeTextFontColors = AnnotationHighlightColors;
|
|
159
162
|
export type VPVEvent = EventAnnotation | EventCore;
|
|
160
163
|
export interface AnnotationAttachment {
|
|
161
164
|
content: Uint8Array;
|