@jacktea/pdf-viewer-core 0.1.5
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.
- package/README.md +24 -0
- package/dist/index.d.ts +1092 -0
- package/dist/index.js +1 -0
- package/dist/pdf-tools/pkg/pkg/package.json +17 -0
- package/dist/pdf-tools/pkg/pkg/pdf_tools.d.ts +74 -0
- package/dist/pdf-tools/pkg/pkg/pdf_tools.js +366 -0
- package/dist/pdf-tools/pkg/pkg/pdf_tools_bg.wasm +0 -0
- package/dist/pdf-tools/pkg/pkg/pdf_tools_bg.wasm.d.ts +15 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# @jacktea/pdf-viewer-core
|
|
2
|
+
|
|
3
|
+
核心逻辑处理模块,提供给 `Jacktea PDF Viewer` 生态的基础运行时库。
|
|
4
|
+
|
|
5
|
+
## 简介
|
|
6
|
+
|
|
7
|
+
本包主要包含:
|
|
8
|
+
- 基于 WebAssembly 封装的高级 PDF 解析与数据处理工具。
|
|
9
|
+
- 框架无关的通用业务逻辑。
|
|
10
|
+
- 协作相关的核心类型定义。
|
|
11
|
+
|
|
12
|
+
⚠️ **注意:** 这个包主要作为底层依赖在各种 UI 组件库中被引用,对于普通业务开发者,通常不需要直接安装和使用这个包,而是使用对应的 UI 框架包装包(如 Vue/React)。
|
|
13
|
+
|
|
14
|
+
## 安装
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install @jacktea/pdf-viewer-core
|
|
18
|
+
```
|
|
19
|
+
```bash
|
|
20
|
+
yarn add @jacktea/pdf-viewer-core
|
|
21
|
+
```
|
|
22
|
+
```bash
|
|
23
|
+
pnpm add @jacktea/pdf-viewer-core
|
|
24
|
+
```
|