@vue-pdf-viewer/shared 1.1.1 → 1.1.3-rc.0
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 +2 -2
- package/dist/locales/it_IT.json +2 -2
- package/dist/locales/pt_PT.json +2 -2
- package/dist/types.d.ts +4 -0
- package/package.json +1 -1
package/dist/locales/en_US.json
CHANGED
|
@@ -91,10 +91,10 @@
|
|
|
91
91
|
"annotationHighlightTooltip": "Highlight",
|
|
92
92
|
"annotationHighlightColorTooltip": "Change highlight color",
|
|
93
93
|
"annotationHighlightColorPickerLabel": "Highlight color",
|
|
94
|
-
"annotationHighlightDeleteTooltip": "
|
|
94
|
+
"annotationHighlightDeleteTooltip": "Remove highlight",
|
|
95
95
|
"annotationFreeTextLabel": "Free text",
|
|
96
96
|
"annotationFreeTextTooltip": "Free text",
|
|
97
|
-
"annotationFreeTextDeleteTooltip": "
|
|
97
|
+
"annotationFreeTextDeleteTooltip": "Remove free text",
|
|
98
98
|
"annotationFreeTextTextStyleTooltip": "Change free text style",
|
|
99
99
|
"annotationFreeTextTextStyleLabel": "Text style",
|
|
100
100
|
"annotationFreeTextFontColorLabel": "Font color",
|
package/dist/locales/it_IT.json
CHANGED
|
@@ -91,10 +91,10 @@
|
|
|
91
91
|
"annotationHighlightTooltip": "Evidenzia",
|
|
92
92
|
"annotationHighlightColorTooltip": "Cambia colore evidenziazione",
|
|
93
93
|
"annotationHighlightColorPickerLabel": "Colore evidenziazione",
|
|
94
|
-
"annotationHighlightDeleteTooltip": "
|
|
94
|
+
"annotationHighlightDeleteTooltip": "Rimuovi evidenziazione",
|
|
95
95
|
"annotationFreeTextLabel": "Testo libero",
|
|
96
96
|
"annotationFreeTextTooltip": "Testo libero",
|
|
97
|
-
"annotationFreeTextDeleteTooltip": "
|
|
97
|
+
"annotationFreeTextDeleteTooltip": "Rimuovi testo libero",
|
|
98
98
|
"annotationFreeTextTextStyleTooltip": "Cambia stile testo",
|
|
99
99
|
"annotationFreeTextTextStyleLabel": "Stile testo",
|
|
100
100
|
"annotationFreeTextFontColorTooltip": "Colore testo",
|
package/dist/locales/pt_PT.json
CHANGED
|
@@ -91,10 +91,10 @@
|
|
|
91
91
|
"annotationHighlightTooltip": "Destacar",
|
|
92
92
|
"annotationHighlightColorTooltip": "Alterar cor do destaque",
|
|
93
93
|
"annotationHighlightColorPickerLabel": "Cor de destaque",
|
|
94
|
-
"annotationHighlightDeleteTooltip": "
|
|
94
|
+
"annotationHighlightDeleteTooltip": "Remover destaque",
|
|
95
95
|
"annotationFreeTextLabel": "Texto livre",
|
|
96
96
|
"annotationFreeTextTooltip": "Texto livre",
|
|
97
|
-
"annotationFreeTextDeleteTooltip": "
|
|
97
|
+
"annotationFreeTextDeleteTooltip": "Remover texto livre",
|
|
98
98
|
"annotationFreeTextTextStyleTooltip": "Alterar estilo de texto",
|
|
99
99
|
"annotationFreeTextTextStyleLabel": "Estilo de texto",
|
|
100
100
|
"annotationFreeTextFontColorLabel": "Cor da fonte",
|
package/dist/types.d.ts
CHANGED
|
@@ -187,6 +187,8 @@ export interface Annotation {
|
|
|
187
187
|
annotationType: AnnotationType;
|
|
188
188
|
rotation: number;
|
|
189
189
|
rect: number[];
|
|
190
|
+
parentRect?: number[];
|
|
191
|
+
fieldType?: string;
|
|
190
192
|
annotationFlags?: AnnotationFlag;
|
|
191
193
|
borderStyle?: AnnotationBorderStyle;
|
|
192
194
|
color?: Uint8ClampedArray | null;
|
|
@@ -206,6 +208,8 @@ export interface Annotation {
|
|
|
206
208
|
titleObj?: AnnotationStringObj;
|
|
207
209
|
opacity?: number;
|
|
208
210
|
file?: AnnotationAttachment;
|
|
211
|
+
inReplyTo?: string;
|
|
212
|
+
value?: string;
|
|
209
213
|
dest?: OutlineDestinations;
|
|
210
214
|
url?: string;
|
|
211
215
|
unsafeUrl?: string;
|