@vue-pdf-viewer/shared 1.0.0-alpha.5 → 1.0.0-alpha.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/const.d.ts +3 -1
- package/dist/const.js +23 -1
- package/dist/enumerators.d.ts +15 -1
- package/dist/enumerators.js +24 -9
- package/dist/types.d.ts +14 -3
- package/package.json +1 -1
package/dist/const.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { InjectionKey, Reactive, ComputedRef } from "vue";
|
|
2
2
|
import type { LocaleKey, Localization, PluginContext } from "./index";
|
|
3
|
-
import { EventAnnotation } from "./enumerators";
|
|
3
|
+
import { EventAnnotation, FreeTextFontColor, HighlightColor } from "./enumerators";
|
|
4
4
|
export declare const PLUGIN_ID: {
|
|
5
5
|
ANNOTATIONS: string;
|
|
6
6
|
};
|
|
@@ -8,3 +8,5 @@ export declare const Locales: Record<LocaleKey, Localization>;
|
|
|
8
8
|
export declare const SHARED_UI_SYMBOL: InjectionKey<Reactive<PluginContext["shared"]["ui"]>>;
|
|
9
9
|
export declare const LOCALIZATION_SYMBOL: InjectionKey<ComputedRef<Localization> | undefined>;
|
|
10
10
|
export declare const EVENT_ANNOTATION: typeof EventAnnotation;
|
|
11
|
+
export declare const DEFAULT_HIGHLIGHT_COLORS: Record<HighlightColor, string>;
|
|
12
|
+
export declare const DEFAULT_FREE_TEXT_FONT_COLORS: Record<FreeTextFontColor, string>;
|
package/dist/const.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventAnnotation } from "./enumerators";
|
|
1
|
+
import { EventAnnotation, FreeTextFontColor, HighlightColor, } from "./enumerators";
|
|
2
2
|
import en from "./locales/en_US.json";
|
|
3
3
|
import cn from "./locales/zh_CN.json";
|
|
4
4
|
import it from "./locales/it_IT.json";
|
|
@@ -18,3 +18,25 @@ export const Locales = {
|
|
|
18
18
|
export const SHARED_UI_SYMBOL = Symbol("VPV Shared UIs");
|
|
19
19
|
export const LOCALIZATION_SYMBOL = Symbol("VPV Current Localization");
|
|
20
20
|
export const EVENT_ANNOTATION = EventAnnotation;
|
|
21
|
+
export const DEFAULT_HIGHLIGHT_COLORS = {
|
|
22
|
+
[HighlightColor.Purple]: "Purple",
|
|
23
|
+
[HighlightColor.Cyan]: "Cyan",
|
|
24
|
+
[HighlightColor.Red]: "Red",
|
|
25
|
+
[HighlightColor.Orange]: "Orange",
|
|
26
|
+
[HighlightColor.Yellow]: "Yellow",
|
|
27
|
+
[HighlightColor.Green]: "Green",
|
|
28
|
+
};
|
|
29
|
+
export const DEFAULT_FREE_TEXT_FONT_COLORS = {
|
|
30
|
+
[FreeTextFontColor.Black]: "Black",
|
|
31
|
+
[FreeTextFontColor.DarkGray]: "Dark Gray",
|
|
32
|
+
[FreeTextFontColor.Gray]: "Gray",
|
|
33
|
+
[FreeTextFontColor.LightGray]: "Light Gray",
|
|
34
|
+
[FreeTextFontColor.LightestGray]: "Lightest Gray",
|
|
35
|
+
[FreeTextFontColor.White]: "White",
|
|
36
|
+
[FreeTextFontColor.Purple]: "Purple",
|
|
37
|
+
[FreeTextFontColor.Blue]: "Blue",
|
|
38
|
+
[FreeTextFontColor.Red]: "Red",
|
|
39
|
+
[FreeTextFontColor.Orange]: "Orange",
|
|
40
|
+
[FreeTextFontColor.Yellow]: "Yellow",
|
|
41
|
+
[FreeTextFontColor.Green]: "Green",
|
|
42
|
+
};
|
package/dist/enumerators.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export declare enum EventAnnotation {
|
|
|
4
4
|
signature = "vpv:annotation:signature",
|
|
5
5
|
image = "vpv:annotation:image"
|
|
6
6
|
}
|
|
7
|
-
export declare enum
|
|
7
|
+
export declare enum HighlightColor {
|
|
8
8
|
Purple = "#CAAAFF",
|
|
9
9
|
Cyan = "#65EDE9",
|
|
10
10
|
Red = "#FFACAC",
|
|
@@ -12,3 +12,17 @@ export declare enum DefaultHighlightColor {
|
|
|
12
12
|
Yellow = "#FCE244",
|
|
13
13
|
Green = "#A0F751"
|
|
14
14
|
}
|
|
15
|
+
export declare enum FreeTextFontColor {
|
|
16
|
+
Black = "#000000",
|
|
17
|
+
DarkGray = "#444444",
|
|
18
|
+
Gray = "#696969",
|
|
19
|
+
LightGray = "#9C9C9C",
|
|
20
|
+
LightestGray = "#CDCDCD",
|
|
21
|
+
White = "#FFFFFF",
|
|
22
|
+
Purple = "#7862FF",
|
|
23
|
+
Blue = "#1777FF",
|
|
24
|
+
Red = "#F66365",
|
|
25
|
+
Orange = "#F67E63",
|
|
26
|
+
Yellow = "#F5C463",
|
|
27
|
+
Green = "#48BB77"
|
|
28
|
+
}
|
package/dist/enumerators.js
CHANGED
|
@@ -5,12 +5,27 @@ export var EventAnnotation;
|
|
|
5
5
|
EventAnnotation["signature"] = "vpv:annotation:signature";
|
|
6
6
|
EventAnnotation["image"] = "vpv:annotation:image";
|
|
7
7
|
})(EventAnnotation || (EventAnnotation = {}));
|
|
8
|
-
export var
|
|
9
|
-
(function (
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
})(
|
|
8
|
+
export var HighlightColor;
|
|
9
|
+
(function (HighlightColor) {
|
|
10
|
+
HighlightColor["Purple"] = "#CAAAFF";
|
|
11
|
+
HighlightColor["Cyan"] = "#65EDE9";
|
|
12
|
+
HighlightColor["Red"] = "#FFACAC";
|
|
13
|
+
HighlightColor["Orange"] = "#FFBD82";
|
|
14
|
+
HighlightColor["Yellow"] = "#FCE244";
|
|
15
|
+
HighlightColor["Green"] = "#A0F751";
|
|
16
|
+
})(HighlightColor || (HighlightColor = {}));
|
|
17
|
+
export var FreeTextFontColor;
|
|
18
|
+
(function (FreeTextFontColor) {
|
|
19
|
+
FreeTextFontColor["Black"] = "#000000";
|
|
20
|
+
FreeTextFontColor["DarkGray"] = "#444444";
|
|
21
|
+
FreeTextFontColor["Gray"] = "#696969";
|
|
22
|
+
FreeTextFontColor["LightGray"] = "#9C9C9C";
|
|
23
|
+
FreeTextFontColor["LightestGray"] = "#CDCDCD";
|
|
24
|
+
FreeTextFontColor["White"] = "#FFFFFF";
|
|
25
|
+
FreeTextFontColor["Purple"] = "#7862FF";
|
|
26
|
+
FreeTextFontColor["Blue"] = "#1777FF";
|
|
27
|
+
FreeTextFontColor["Red"] = "#F66365";
|
|
28
|
+
FreeTextFontColor["Orange"] = "#F67E63";
|
|
29
|
+
FreeTextFontColor["Yellow"] = "#F5C463";
|
|
30
|
+
FreeTextFontColor["Green"] = "#48BB77";
|
|
31
|
+
})(FreeTextFontColor || (FreeTextFontColor = {}));
|
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import type { Component, ComponentInternalInstance, ComputedRef } from "vue";
|
|
1
|
+
import type { Component, ComponentInternalInstance, ComputedRef, Reactive, Ref } from "vue";
|
|
2
|
+
export interface ViewerCoreState {
|
|
3
|
+
currentPageIndex: Ref<number>;
|
|
4
|
+
scale: Ref<number>;
|
|
5
|
+
isEditing: Ref<boolean>;
|
|
6
|
+
rotation: Ref<number>;
|
|
7
|
+
}
|
|
2
8
|
export type LocaleKey = "en_US" | "zh_CN" | "it_IT" | "pt_PT" | "th_TH" | string;
|
|
3
9
|
export type Localization = {
|
|
4
10
|
searchButtonTooltip: string;
|
|
@@ -115,6 +121,7 @@ export interface PluginContext {
|
|
|
115
121
|
};
|
|
116
122
|
shared: {
|
|
117
123
|
localization: ComputedRef<Localization>;
|
|
124
|
+
viewerCoreState: Reactive<ViewerCoreState>;
|
|
118
125
|
ui: {
|
|
119
126
|
AppButton?: Component;
|
|
120
127
|
AppTooltip?: Component;
|
|
@@ -128,11 +135,15 @@ export interface Plugin {
|
|
|
128
135
|
name: string;
|
|
129
136
|
setup: (ctx: PluginContext) => void;
|
|
130
137
|
}
|
|
131
|
-
export
|
|
138
|
+
export interface LabelValuePair {
|
|
139
|
+
label: string;
|
|
140
|
+
value: string;
|
|
141
|
+
}
|
|
142
|
+
export type HighlightColors = (LabelValuePair[] | string[]) & {
|
|
132
143
|
length: 1 | 2 | 3 | 4 | 5 | 6;
|
|
133
144
|
};
|
|
134
145
|
export type AnnotationHighlightColors = HighlightColors | null;
|
|
135
|
-
export type FreeTextFontColors = string[] & {
|
|
146
|
+
export type FreeTextFontColors = (LabelValuePair[] | string[]) & {
|
|
136
147
|
length: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
137
148
|
};
|
|
138
149
|
export type AnnotationFreeTextFontColors = FreeTextFontColors | null;
|