最近业务调整
This commit is contained in:
21
uni_modules/simple-pdf-viewer/LICENSE
Normal file
21
uni_modules/simple-pdf-viewer/LICENSE
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2018 Viktor Hajer
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
54
uni_modules/simple-pdf-viewer/README.md
Normal file
54
uni_modules/simple-pdf-viewer/README.md
Normal file
@@ -0,0 +1,54 @@
|
||||
<h1 align="center">Simple PDF Viewer</h1>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://www.npmjs.com/package/simple-pdf-viewer">
|
||||
<img src="https://img.shields.io/npm/dm/simple-pdf-viewer.svg?style=flat" alt="downloads">
|
||||
</a>
|
||||
<a href="https://badge.fury.io/js/simple-pdf-viewer">
|
||||
<img src="https://badge.fury.io/js/simple-pdf-viewer.svg" alt="npm version">
|
||||
</a>
|
||||
<a href="https://david-dm.org/viktorhajer/simple-pdf-viewer" title="dependencies status">
|
||||
<img src="https://david-dm.org/viktorhajer/simple-pdf-viewer/status.svg"/>
|
||||
</a>
|
||||
<a href="https://travis-ci.org/viktorhajer/simple-pdf-viewer" title="test">
|
||||
<img src="https://travis-ci.org/viktorhajer/simple-pdf-viewer.svg?branch=master"/>
|
||||
</a>
|
||||
<a href="https://www.paypal.me/viktorhajer" title="Donate to this project using Paypal">
|
||||
<img src="https://img.shields.io/badge/paypal-donate-green.svg" alt="PayPal donate button" />
|
||||
</a>
|
||||
</p>
|
||||
|
||||
This is a simple but smart PDF Viewer component for angular/ionic websites.
|
||||
|
||||
### Demo page
|
||||
[https://viktorhajer.github.io/simple-pdf-viewer/](https://viktorhajer.github.io/simple-pdf-viewer/)
|
||||
|
||||
### Features
|
||||
|
||||
* Open: the src can be one of the following: file URL, Uint8Array or PDFSource
|
||||
* Separated methods to open javascript File object or http URL
|
||||
* Display: PDF conatiner is displayed
|
||||
* Information: number of pages, viewport information (zoom, rotation...), meta information (author, subject, creator...)
|
||||
* Navigation: navigate to the first page, the last page, next page, previous page and any of the pages
|
||||
* Zooming: zoon in, zoom out, full page, page width, page height, set any zoom as double or percent
|
||||
* Rotation: turn the document left or right (+/- 90 degree)
|
||||
* Outline / Table of Content: provides the outline if exists and possiblity to navigate to the outline item
|
||||
* Searching: case sensitive/insensitve text search (```phraseSearch``` and ```highlightAll``` can be turn on/off), go to next/prev match, number of matches
|
||||
* Bookmarks: create bookmark based on the actual viewport and that can be used for navigation
|
||||
* Snapshot: create snapshot about the actual page, scale can be specified (1.0 by default)
|
||||
|
||||
### Installation Instructions and Usage
|
||||
[https://github.com/viktorhajer/simple-pdf-viewer/wiki/How-to-use](https://github.com/viktorhajer/simple-pdf-viewer/wiki/How-to-use)
|
||||
|
||||
### Type Documentation
|
||||
[https://github.com/viktorhajer/simple-pdf-viewer/wiki/API-Documentation](https://github.com/viktorhajer/simple-pdf-viewer/wiki/API-Documentation)
|
||||
|
||||
### Screenshot
|
||||
|
||||
<img src="/src/assets/screen_1.png" alt="Screenshot" style="width: 450px;"/>
|
||||
|
||||
### Contribute
|
||||
[See CONTRIBUTING.md](CONTRIBUTING.md)
|
||||
|
||||
### License
|
||||
[MIT](https://tldrlegal.com/license/mit-license) © [Viktor Hajer](https://github.com/viktorhajer)
|
||||
995
uni_modules/simple-pdf-viewer/bundles/simple-pdf-viewer.umd.js
Normal file
995
uni_modules/simple-pdf-viewer/bundles/simple-pdf-viewer.umd.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
uni_modules/simple-pdf-viewer/bundles/simple-pdf-viewer.umd.min.js
vendored
Normal file
2
uni_modules/simple-pdf-viewer/bundles/simple-pdf-viewer.umd.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1178
uni_modules/simple-pdf-viewer/esm2015/simple-pdf-viewer.js
Normal file
1178
uni_modules/simple-pdf-viewer/esm2015/simple-pdf-viewer.js
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
990
uni_modules/simple-pdf-viewer/esm5/simple-pdf-viewer.js
Normal file
990
uni_modules/simple-pdf-viewer/esm5/simple-pdf-viewer.js
Normal file
File diff suppressed because one or more lines are too long
16
uni_modules/simple-pdf-viewer/esm5/simple-pdf-viewer.js.map
Normal file
16
uni_modules/simple-pdf-viewer/esm5/simple-pdf-viewer.js.map
Normal file
File diff suppressed because one or more lines are too long
243
uni_modules/simple-pdf-viewer/libs/simple-pdf-viewer/src/simplePdfViewer.component.d.ts
vendored
Normal file
243
uni_modules/simple-pdf-viewer/libs/simple-pdf-viewer/src/simplePdfViewer.component.d.ts
vendored
Normal file
@@ -0,0 +1,243 @@
|
||||
/// <reference types="pdfjs-dist" />
|
||||
/**
|
||||
* Created by Viktor Hajer on 02/08/2018.
|
||||
*/
|
||||
import { ElementRef, EventEmitter, OnInit, OnDestroy } from '@angular/core';
|
||||
import { HttpClient } from '@angular/common/http';
|
||||
import { SimpleSearchState, SimpleDocumentInfo, SimpleOutlineNode, SimpleProgressData, SimpleSearchOptions, SimplePDFBookmark } from './simplePdfViewer.models';
|
||||
/**
|
||||
* Simple PDF Viewer component
|
||||
*/
|
||||
export declare class SimplePdfViewerComponent implements OnInit, OnDestroy {
|
||||
private element;
|
||||
private http;
|
||||
private static readonly CSS_UNITS;
|
||||
private static readonly PAGE_RESIZE_BORDER_HEIGHT;
|
||||
private static readonly PAGE_RESIZE_BORDER_WIDTH;
|
||||
private static readonly ZOOM_UNIT;
|
||||
private static readonly MAX_ZOOM;
|
||||
private static readonly MIN_ZOOM;
|
||||
private static readonly PDF_FINDER_FIND_COMMAND;
|
||||
private static readonly PDF_FINDER_AGAIN_COMMAND;
|
||||
private static readonly PDF_VIEWER_DEFAULT_SCALE;
|
||||
private static readonly SNAPSHOT_TPYE;
|
||||
/**
|
||||
* Source of the PDF document (Required)
|
||||
*/
|
||||
src: string | Uint8Array | PDF.PDFSource;
|
||||
/**
|
||||
* Page border is displayed or not (Optional)
|
||||
*/
|
||||
removePageBorders: boolean;
|
||||
/**
|
||||
* Text layer is displayed or not (Optional)
|
||||
*/
|
||||
disableTextLayer: boolean;
|
||||
onLoadComplete: EventEmitter<void>;
|
||||
onError: EventEmitter<any>;
|
||||
onProgress: EventEmitter<SimpleProgressData>;
|
||||
onSearchStateChange: EventEmitter<SimpleSearchState>;
|
||||
private startAt;
|
||||
private loaded;
|
||||
private currentPage;
|
||||
private numberOfPages;
|
||||
private outline;
|
||||
private information;
|
||||
private zoom;
|
||||
private rotation;
|
||||
private pdf;
|
||||
private pdfLinkService;
|
||||
private pdfViewer;
|
||||
private pdfFindController;
|
||||
private searching;
|
||||
private lastSearchText;
|
||||
private searchPrevious;
|
||||
private searchOptions;
|
||||
constructor(element: ElementRef, http: HttpClient);
|
||||
ngOnInit(): void;
|
||||
ngOnDestroy(): void;
|
||||
/**
|
||||
* Open a PDF document at the specified page (at the first page by default)
|
||||
* @param src Source of the PDF document
|
||||
* @param startAt The bookmark where should start, default: at the first page
|
||||
*/
|
||||
openDocument(src: string | Uint8Array | PDF.PDFSource, startAt?: SimplePDFBookmark): void;
|
||||
/**
|
||||
* Open a PDF document at the specified page (at the first page by default)
|
||||
* @param file The File source of the PDF document
|
||||
* @param startAt The bookmark where should start, default: at the first page
|
||||
*/
|
||||
openFile(file: File, startAt?: SimplePDFBookmark): void;
|
||||
/**
|
||||
* Open a PDF document at the specified page (at the first page by default)
|
||||
* @param url The url of the PDF document
|
||||
* @param startAt The bookmark where should start, default: at the first page
|
||||
*/
|
||||
openUrl(url: string, startAt?: SimplePDFBookmark): void;
|
||||
/**
|
||||
* Returns whether the PDF document is loaded properly
|
||||
*/
|
||||
isDocumentLoaded(): boolean;
|
||||
private initPDFJS();
|
||||
private pagesinitEventListener();
|
||||
private pagechangeEventListener();
|
||||
private updateviewareaEventListener();
|
||||
private setAndParseSrc(src);
|
||||
private loadFile();
|
||||
private resetParameters();
|
||||
private mapOutline(nodes);
|
||||
private getContainer();
|
||||
/**
|
||||
* Returns the basic information about the PDF document
|
||||
*/
|
||||
getDocumentInformation(): SimpleDocumentInfo[];
|
||||
/**
|
||||
* Returns the value of the viewport scale
|
||||
*/
|
||||
getZoom(): number;
|
||||
/**
|
||||
* Returns the value of the viewport scale in %
|
||||
*/
|
||||
getZoomPercent(): number;
|
||||
/**
|
||||
* Increases the scale of the PDF viewport
|
||||
*/
|
||||
zoomIn(): void;
|
||||
/**
|
||||
* Decreases the scale of the PDF viewport
|
||||
*/
|
||||
zoomOut(): void;
|
||||
/**
|
||||
* Sets the original viewport scale back to 1.0
|
||||
*/
|
||||
zoomReset(): void;
|
||||
/**
|
||||
* Sets the scale of the PDF viewport to fit in the actual screen
|
||||
*/
|
||||
zoomFullPage(): void;
|
||||
/**
|
||||
* Sets the scale of the PDF viewport to fit in the actual screen (width priority)
|
||||
*/
|
||||
zoomPageWidth(): void;
|
||||
/**
|
||||
* Sets the scale of the PDF viewport to fit in the actual screen (height priority)
|
||||
*/
|
||||
zoomPageHeight(): void;
|
||||
private getScale(page, priority?);
|
||||
/**
|
||||
* Set the zoom of the document in double
|
||||
* @param scale The zoom value in double
|
||||
*/
|
||||
setZoom(scale: number): void;
|
||||
/**
|
||||
* Set the zoom of the document in percent
|
||||
* @param zoom The scale value in percent
|
||||
*/
|
||||
setZoomInPercent(zoom: number): void;
|
||||
private normalizeScale(scale);
|
||||
/**
|
||||
* Starts case sensitive/insensitive text search and navigate to the first match (from the actual page)
|
||||
* @param text searched text
|
||||
* @param searchOptions set true to use case sensitive searching (false by default)
|
||||
*/
|
||||
search(text: string, searchOptions?: SimpleSearchOptions): void;
|
||||
/**
|
||||
* Navigates to the next search match if there were multiple hits
|
||||
*/
|
||||
nextMatch(): void;
|
||||
/**
|
||||
* Navigates to the previous search match if there were multiple hits
|
||||
*/
|
||||
previousMatch(): void;
|
||||
private stepMatch(findPrevious);
|
||||
private searchAgain();
|
||||
/**
|
||||
* Returns the number of the search hits
|
||||
*/
|
||||
getNumberOfMatches(): number;
|
||||
/**
|
||||
* Returns whether there is a matched item
|
||||
*/
|
||||
hasMatches(): boolean;
|
||||
/**
|
||||
* Returns whether the search is in-progress
|
||||
*/
|
||||
isSearching(): boolean;
|
||||
private onUpdateResultsCount();
|
||||
private onUpdateState(state);
|
||||
/**
|
||||
* Returns the number of the actual page
|
||||
*/
|
||||
getCurrentPage(): number;
|
||||
/**
|
||||
* Returns the number of the pages
|
||||
*/
|
||||
getNumberOfPages(): number;
|
||||
/**
|
||||
* Returns outline / table of content in tree structure
|
||||
*/
|
||||
getOutline(): SimpleOutlineNode[];
|
||||
/**
|
||||
* Returns whether the outline is available
|
||||
*/
|
||||
hasOutline(): boolean;
|
||||
/**
|
||||
* Navigates to the specified (outline) destination/chapter
|
||||
* @param destination the destination object of the outline item
|
||||
*/
|
||||
navigateToChapter(destination: any): void;
|
||||
/**
|
||||
* Navigates to the first page
|
||||
*/
|
||||
firstPage(): void;
|
||||
/**
|
||||
* Navigates to the last page
|
||||
*/
|
||||
lastPage(): void;
|
||||
/**
|
||||
* Navigates to the next page
|
||||
*/
|
||||
nextPage(): void;
|
||||
/**
|
||||
* Navigates to the previous page
|
||||
*/
|
||||
prevPage(): void;
|
||||
/**
|
||||
* Navigates to the specified page
|
||||
* @param page the number of the page
|
||||
* @param pageDefault
|
||||
*/
|
||||
navigateToPage(page: number, pageDefault?: number): void;
|
||||
/**
|
||||
* Sets the rotation to the default 0 degree
|
||||
*/
|
||||
resetRotation(): void;
|
||||
/**
|
||||
* Turns left the document with 90 degree (counterclockwise)
|
||||
*/
|
||||
turnLeft(): void;
|
||||
/**
|
||||
* Turns right the document with 90 degree (clockwise)
|
||||
*/
|
||||
turnRight(): void;
|
||||
/**
|
||||
* Returns the actual rotation value in degree
|
||||
*/
|
||||
getRotation(): number;
|
||||
private rotate(angle?);
|
||||
/**
|
||||
* Creates bookmark object based on the current viewport and page number.
|
||||
* The object can be passed to the #navigateToBookmark method.
|
||||
*/
|
||||
createBookmark(): Promise<SimplePDFBookmark>;
|
||||
/**
|
||||
* Navigates to the specified bookmark
|
||||
*/
|
||||
navigateToBookmark(bookmark: SimplePDFBookmark): void;
|
||||
/**
|
||||
* Create a snapshot image (PNG) based about the current page
|
||||
* @param scale the value of the viewport scale, it is 1 by default
|
||||
*/
|
||||
getPageSnapshot(scale?: number): Promise<File>;
|
||||
private dataURItoFile(dataURI);
|
||||
}
|
||||
74
uni_modules/simple-pdf-viewer/libs/simple-pdf-viewer/src/simplePdfViewer.models.d.ts
vendored
Normal file
74
uni_modules/simple-pdf-viewer/libs/simple-pdf-viewer/src/simplePdfViewer.models.d.ts
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
/**
|
||||
* Enum for searching state
|
||||
*/
|
||||
export declare enum SimpleSearchState {
|
||||
FOUND = 0,
|
||||
NOT_FOUND = 1,
|
||||
WRAPPED = 2,
|
||||
PENDING = 3,
|
||||
}
|
||||
/**
|
||||
* PDF Document basic information representation
|
||||
*/
|
||||
export declare class SimpleDocumentInfo {
|
||||
key: string;
|
||||
value: string;
|
||||
constructor(key: string, value: string);
|
||||
}
|
||||
/**
|
||||
* Representation of the Outline nodes
|
||||
*/
|
||||
export declare class SimpleOutlineNode {
|
||||
title: string;
|
||||
dest: any;
|
||||
items: SimpleOutlineNode[];
|
||||
constructor(title: string, dest: any, items: SimpleOutlineNode[]);
|
||||
}
|
||||
/**
|
||||
* Representation of the loading progress
|
||||
*/
|
||||
export declare class SimpleProgressData {
|
||||
loaded: number;
|
||||
total: number;
|
||||
constructor(loaded: number, total: number);
|
||||
}
|
||||
/**
|
||||
* Representation of the settings of the search
|
||||
*/
|
||||
export declare class SimpleSearchOptions {
|
||||
caseSensitive: boolean;
|
||||
highlightAll: boolean;
|
||||
phraseSearch: boolean;
|
||||
static readonly DEFAULT_OPTIONS: SimpleSearchOptions;
|
||||
constructor(caseSensitive?: boolean, highlightAll?: boolean, phraseSearch?: boolean);
|
||||
}
|
||||
/**
|
||||
* Representation of the PDF bookmark
|
||||
*/
|
||||
export declare class SimplePDFBookmark {
|
||||
page: number;
|
||||
zoom: number;
|
||||
rotation: number;
|
||||
x: number;
|
||||
y: number;
|
||||
static readonly EMPTY_BOOKMARK: SimplePDFBookmark;
|
||||
static readonly PARAMETER_SEPARATOR: string;
|
||||
private static readonly PARAMETER_PAGE;
|
||||
private static readonly PARAMETER_ZOOM;
|
||||
private static readonly PARAMETER_ROTATION;
|
||||
private static readonly PARAMETER_X;
|
||||
private static readonly PARAMETER_Y;
|
||||
constructor(page?: number, zoom?: number, rotation?: number, x?: number, y?: number);
|
||||
/**
|
||||
* Build destination object to navigation
|
||||
*/
|
||||
toDestination(): object;
|
||||
/**
|
||||
* Build query string to URL
|
||||
*/
|
||||
toQueryString(): string;
|
||||
/**
|
||||
* Build bookmark obeject from src url
|
||||
*/
|
||||
static buildSimplePDFBookmark(src: string): SimplePDFBookmark;
|
||||
}
|
||||
8
uni_modules/simple-pdf-viewer/libs/simple-pdf-viewer/src/simplePdfViewer.module.d.ts
vendored
Normal file
8
uni_modules/simple-pdf-viewer/libs/simple-pdf-viewer/src/simplePdfViewer.module.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/// <reference types="pdfjs-dist" />
|
||||
import { PDFJSStatic } from 'pdfjs-dist';
|
||||
declare global {
|
||||
const PDFJS: PDFJSStatic;
|
||||
}
|
||||
export { PDFJSStatic, PDFDocumentProxy, PDFViewerParams, PDFPageProxy, PDFSource, PDFProgressData, PDFPromise, PDFTreeNode, PDFInfo } from 'pdfjs-dist';
|
||||
export declare class SimplePdfViewerModule {
|
||||
}
|
||||
80
uni_modules/simple-pdf-viewer/package.json
Normal file
80
uni_modules/simple-pdf-viewer/package.json
Normal file
@@ -0,0 +1,80 @@
|
||||
{
|
||||
"name": "simple-pdf-viewer",
|
||||
"version": "2.0.3",
|
||||
"license": "MIT",
|
||||
"author": {
|
||||
"name": "Viktor Hajer",
|
||||
"email": "viktor.hajer@gmail.com"
|
||||
},
|
||||
"scripts": {
|
||||
"ng": "ng",
|
||||
"start": "ng serve",
|
||||
"build": "ng build --prod",
|
||||
"docs": "typedoc public_api.ts",
|
||||
"deploy": "ng build --prod --output-path docs --base-href \"https://viktorhajer.github.io/simple-pdf-viewer/\"",
|
||||
"postdeploy": "npm run docs",
|
||||
"package": "ng-packagr -p ng-package.json",
|
||||
"tag_release": "git push --follow-tags",
|
||||
"release": "npm publish dist"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/viktorhajer/simple-pdf-viewer/issues"
|
||||
},
|
||||
"private": false,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/viktorhajer/simple-pdf-viewer.git"
|
||||
},
|
||||
"keywords": [
|
||||
"angular",
|
||||
"angular4",
|
||||
"angular5",
|
||||
"pdf",
|
||||
"angular-pdf",
|
||||
"simple-pdf",
|
||||
"pdf-viewer",
|
||||
"document-viewer",
|
||||
"ionic3"
|
||||
],
|
||||
"homepage": "https://github.com/viktorhajer/simple-pdf-viewer#readme",
|
||||
"peerDependencies": {
|
||||
"@angular/core": ">=4.0.0",
|
||||
"pdfjs-dist": "1.10.88",
|
||||
"@types/pdfjs-dist": "^0.1.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/pdfjs-dist": "0.1.1",
|
||||
"pdfjs-dist": "1.10.88",
|
||||
"tslib": "^1.7.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular/animations": "^5.2.0",
|
||||
"@angular/cli": "1.6.8",
|
||||
"@angular/common": "^5.2.0",
|
||||
"@angular/compiler": "^5.2.0",
|
||||
"@angular/compiler-cli": "^5.2.0",
|
||||
"@angular/core": "^5.2.0",
|
||||
"@angular/forms": "^5.2.0",
|
||||
"@angular/http": "^5.2.0",
|
||||
"@angular/language-service": "^5.2.0",
|
||||
"@angular/platform-browser": "^5.2.0",
|
||||
"@angular/platform-browser-dynamic": "^5.2.0",
|
||||
"@angular/router": "^5.2.0",
|
||||
"@types/node": "6.0.98",
|
||||
"codelyzer": "^4.0.1",
|
||||
"core-js": "^2.4.1",
|
||||
"ng-packagr": "^2.0.0",
|
||||
"np": "^2.20.0",
|
||||
"rxjs": "^5.5.6",
|
||||
"ts-node": "~4.1.0",
|
||||
"tslint": "~5.9.1",
|
||||
"typedoc": "^0.10.0",
|
||||
"typescript": "2.6.1",
|
||||
"zone.js": "^0.8.19"
|
||||
},
|
||||
"main": "bundles/simple-pdf-viewer.umd.js",
|
||||
"module": "esm5/simple-pdf-viewer.js",
|
||||
"es2015": "esm2015/simple-pdf-viewer.js",
|
||||
"typings": "simple-pdf-viewer.d.ts",
|
||||
"metadata": "simple-pdf-viewer.metadata.json"
|
||||
}
|
||||
3
uni_modules/simple-pdf-viewer/public_api.d.ts
vendored
Normal file
3
uni_modules/simple-pdf-viewer/public_api.d.ts
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
export { SimplePdfViewerModule } from './libs/simple-pdf-viewer/src/simplePdfViewer.module';
|
||||
export { SimplePdfViewerComponent } from './libs/simple-pdf-viewer/src/simplePdfViewer.component';
|
||||
export { SimpleSearchState, SimpleDocumentInfo, SimpleOutlineNode, SimpleProgressData, SimpleSearchOptions, SimplePDFBookmark } from './libs/simple-pdf-viewer/src/simplePdfViewer.models';
|
||||
4
uni_modules/simple-pdf-viewer/simple-pdf-viewer.d.ts
vendored
Normal file
4
uni_modules/simple-pdf-viewer/simple-pdf-viewer.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Generated bundle index. Do not edit.
|
||||
*/
|
||||
export * from './public_api';
|
||||
File diff suppressed because one or more lines are too long
5
uni_modules/simple-pdf-viewer/src/typings.d.ts
vendored
Normal file
5
uni_modules/simple-pdf-viewer/src/typings.d.ts
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
/* SystemJS module definition */
|
||||
declare var module: NodeModule;
|
||||
interface NodeModule {
|
||||
id: string;
|
||||
}
|
||||
Reference in New Issue
Block a user