-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EM-5829: pdfjs-dist upgrade to 4 from 2 (#933)
* EM-5829: pdfjs-dist upgrade to 4 from 2 * yarn audit issues
- Loading branch information
1 parent
da57d4b
commit 839fc20
Showing
10 changed files
with
313 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
projects/media-viewer/src/lib/viewers/pdf-viewer/side-bar/outline-item/outline.model.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
export interface Outline { | ||
bold: boolean; | ||
color: string[]; | ||
count: number; | ||
dest: {}[]; | ||
color: Uint8ClampedArray; | ||
count: number | undefined; | ||
dest: string | Array<any> | null; | ||
italic: boolean; | ||
items: Outline[]; | ||
newWindow: any; | ||
pageNumber: number; | ||
newWindow: boolean | undefined; | ||
pageNumber?: number; | ||
title: string; | ||
unsafeUrl: any; | ||
url: any; | ||
unsafeUrl: string | undefined; | ||
url: string | null; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.