@vue-pdf-viewer/shared 1.2.0-rc.0 → 1.2.0-rc.1

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +6 -2
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -191,16 +191,18 @@ export interface Annotation {
191
191
  annotationType: AnnotationType;
192
192
  rotation: number;
193
193
  rect: number[];
194
+ parentRect?: number[];
195
+ fieldType?: string;
194
196
  annotationFlags?: AnnotationFlag;
195
197
  borderStyle?: AnnotationBorderStyle;
196
198
  color?: Uint8ClampedArray | null;
197
- creationDate?: string | null;
199
+ creationDate?: string | Date | null;
198
200
  backgroundColor?: Uint8ClampedArray | null;
199
201
  borderColor?: Uint8ClampedArray | null;
200
202
  contentsObj?: AnnotationStringObj;
201
203
  hasOwnCanvas?: boolean;
202
204
  hasAppearance?: boolean;
203
- modificationDate?: string | null;
205
+ modificationDate?: string | Date | null;
204
206
  quadPoints?: Float32Array;
205
207
  subtype?: string;
206
208
  noRotate?: boolean;
@@ -210,6 +212,8 @@ export interface Annotation {
210
212
  titleObj?: AnnotationStringObj;
211
213
  opacity?: number;
212
214
  file?: AnnotationAttachment;
215
+ inReplyTo?: string;
216
+ value?: string;
213
217
  dest?: OutlineDestinations;
214
218
  url?: string;
215
219
  unsafeUrl?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vue-pdf-viewer/shared",
3
3
  "private": false,
4
- "version": "1.2.0-rc.0",
4
+ "version": "1.2.0-rc.1",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",