@vue-pdf-viewer/viewer 0.0.0-experimental.2 → 0.0.0-experimental.4

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.
@@ -98,6 +98,7 @@ export declare const SLOT_ICON_DOWNLOAD: InjectionKey<Slot<any> | undefined>;
98
98
  export declare const SLOT_ICON_PRINT: InjectionKey<Slot<any> | undefined>;
99
99
  export declare const SLOT_ICON_FULLSCREEN: InjectionKey<Slot<any> | undefined>;
100
100
  export declare const SYMBOL_ANNOTATION_KEYS: {
101
+ ENABLE_ANNOTATION_EDITOR: InjectionKey<Ref<boolean, boolean>>;
101
102
  ACTIVE_ANNOTATION: InjectionKey<Ref<AnnotationType | null, AnnotationType | null>>;
102
103
  HIGHLIGHT_COLOR: InjectionKey<Ref<HighlightColor | null, HighlightColor | null>>;
103
104
  };
@@ -698,5 +698,6 @@ export interface AnnotationHighlight extends Annotation {
698
698
  hexColor: string;
699
699
  drawLayerId: number;
700
700
  outlineId: number;
701
+ deleted?: boolean;
701
702
  }
702
703
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vue-pdf-viewer/viewer",
3
3
  "private": false,
4
- "version": "0.0.0-experimental.2",
4
+ "version": "0.0.0-experimental.4",
5
5
  "type": "module",
6
6
  "main": "./dist/index.umd.cjs",
7
7
  "module": "./dist/index.js",
@@ -56,7 +56,7 @@
56
56
  "plug": "bun run postbuild && vite build"
57
57
  },
58
58
  "dependencies": {
59
- "@vue-pdf-viewer/shared": "^0.0.0-experimental.11",
59
+ "@vue-pdf-viewer/shared": "^0.0.0-experimental.12",
60
60
  "@vueuse/core": "^13.0.0",
61
61
  "pdfjs-dist": "4.10.38",
62
62
  "reka-ui": "^2.1.1",
@@ -113,4 +113,4 @@
113
113
  "pnpm": ">=8.8.0",
114
114
  "yarn": ">=1.20.0"
115
115
  }
116
- }
116
+ }