@vue-pdf-viewer/shared 1.1.2 → 1.1.3-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
@@ -187,16 +187,18 @@ 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;
193
- creationDate?: string | null;
195
+ creationDate?: string | Date | null;
194
196
  backgroundColor?: Uint8ClampedArray | null;
195
197
  borderColor?: Uint8ClampedArray | null;
196
198
  contentsObj?: AnnotationStringObj;
197
199
  hasOwnCanvas?: boolean;
198
200
  hasAppearance?: boolean;
199
- modificationDate?: string | null;
201
+ modificationDate?: string | Date | null;
200
202
  quadPoints?: Float32Array;
201
203
  subtype?: string;
202
204
  noRotate?: boolean;
@@ -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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vue-pdf-viewer/shared",
3
3
  "private": false,
4
- "version": "1.1.2",
4
+ "version": "1.1.3-rc.1",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",