@vue-pdf-viewer/shared 1.0.0-beta.5 → 1.0.0-beta.7
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/enumerators.d.ts +1 -0
- package/dist/enumerators.js +1 -0
- package/dist/types.d.ts +5 -6
- package/package.json +1 -1
package/dist/enumerators.d.ts
CHANGED
package/dist/enumerators.js
CHANGED
|
@@ -7,6 +7,7 @@ export var EventAnnotation;
|
|
|
7
7
|
})(EventAnnotation || (EventAnnotation = {}));
|
|
8
8
|
export var EventCore;
|
|
9
9
|
(function (EventCore) {
|
|
10
|
+
EventCore["AnnotationMounted"] = "vpv:annotation:mounted";
|
|
10
11
|
EventCore["Rotate"] = "vpv:rotate";
|
|
11
12
|
})(EventCore || (EventCore = {}));
|
|
12
13
|
export var HighlightColor;
|
package/dist/types.d.ts
CHANGED
|
@@ -133,12 +133,11 @@ export interface LabelValuePair {
|
|
|
133
133
|
label: string;
|
|
134
134
|
value: string;
|
|
135
135
|
}
|
|
136
|
-
export type
|
|
136
|
+
export type AnnotationColors = LabelValuePair[] | string[];
|
|
137
|
+
export type AnnotationHighlightColors = (AnnotationColors & {
|
|
137
138
|
length: 1 | 2 | 3 | 4 | 5 | 6;
|
|
138
|
-
};
|
|
139
|
-
export type
|
|
140
|
-
export type FreeTextFontColors = (LabelValuePair[] | string[]) & {
|
|
139
|
+
}) | null;
|
|
140
|
+
export type AnnotationFreeTextFontColors = (AnnotationColors & {
|
|
141
141
|
length: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
142
|
-
};
|
|
143
|
-
export type AnnotationFreeTextFontColors = FreeTextFontColors | null;
|
|
142
|
+
}) | null;
|
|
144
143
|
export type VPVEvent = EventAnnotation | EventCore;
|