first commit
Some checks failed
Types tests / Test (lts/*) (push) Has been cancelled
Lint / Lint (lts/*) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CI / Test (20) (push) Has been cancelled
CI / Test (22) (push) Has been cancelled
CI / Test (24) (push) Has been cancelled
Some checks failed
Types tests / Test (lts/*) (push) Has been cancelled
Lint / Lint (lts/*) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CI / Test (20) (push) Has been cancelled
CI / Test (22) (push) Has been cancelled
CI / Test (24) (push) Has been cancelled
This commit is contained in:
15
external/dist/CODE_OF_CONDUCT.md
vendored
Normal file
15
external/dist/CODE_OF_CONDUCT.md
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
# Community Participation Guidelines
|
||||
|
||||
This repository is governed by Mozilla's code of conduct and etiquette guidelines.
|
||||
For more details, please read the
|
||||
[Mozilla Community Participation Guidelines](https://www.mozilla.org/about/governance/policies/participation/).
|
||||
|
||||
## How to Report
|
||||
For more information on how to report violations of the Community Participation Guidelines, please read our '[How to Report](https://www.mozilla.org/about/governance/policies/participation/reporting/)' page.
|
||||
|
||||
<!--
|
||||
## Project Specific Etiquette
|
||||
|
||||
In some cases, there will be additional project etiquette i.e.: (https://bugzilla.mozilla.org/page.cgi?id=etiquette.html).
|
||||
Please update for your project.
|
||||
-->
|
||||
14
external/dist/README.md
vendored
Normal file
14
external/dist/README.md
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
# PDF.js
|
||||
|
||||
PDF.js is a Portable Document Format (PDF) library that is built with HTML5.
|
||||
Our goal is to create a general-purpose, web standards-based platform for
|
||||
parsing and rendering PDFs.
|
||||
|
||||
This is a pre-built version of the PDF.js source code. It is automatically
|
||||
generated by the build scripts.
|
||||
|
||||
For usage with older browsers/environments, without native support for the
|
||||
latest JavaScript features, please see the `legacy/` folder.
|
||||
Please see [this wiki page](https://github.com/mozilla/pdf.js/wiki/Frequently-Asked-Questions#faq-support) for information about supported browsers/environments.
|
||||
|
||||
See https://github.com/mozilla/pdf.js for learning and contributing.
|
||||
1
external/dist/legacy/web/pdf_viewer.d.mts
vendored
Normal file
1
external/dist/legacy/web/pdf_viewer.d.mts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from "../../types/web/pdf_viewer.component.js";
|
||||
1
external/dist/web/pdf_viewer.d.mts
vendored
Normal file
1
external/dist/web/pdf_viewer.d.mts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from "../types/web/pdf_viewer.component.js";
|
||||
26
external/dist/webpack.mjs
vendored
Normal file
26
external/dist/webpack.mjs
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
/* Copyright 2022 Mozilla Foundation
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
/* eslint-disable import/no-unresolved */
|
||||
|
||||
import { GlobalWorkerOptions } from "./build/pdf.mjs";
|
||||
|
||||
if (typeof window !== "undefined" && "Worker" in window) {
|
||||
GlobalWorkerOptions.workerPort = new Worker(
|
||||
new URL("./build/pdf.worker.mjs", import.meta.url),
|
||||
{ type: "module" }
|
||||
);
|
||||
}
|
||||
|
||||
export * from "./build/pdf.mjs";
|
||||
Reference in New Issue
Block a user