@embedpdf/plugin-tiling 2.5.0 → 2.6.0
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/dist/preact/index.js +1 -1
- package/dist/react/index.js +1 -1
- package/dist/svelte/index.js +1 -1
- package/dist/vue/index.js +2 -2
- package/package.json +10 -10
package/dist/preact/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { useCapability, usePlugin, useDocumentState } from "@embedpdf/core/preact";
|
|
2
2
|
import { TilingPlugin } from "@embedpdf/plugin-tiling";
|
|
3
3
|
export * from "@embedpdf/plugin-tiling";
|
|
4
4
|
import { jsx } from "preact/jsx-runtime";
|
package/dist/react/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { useCapability, usePlugin, useDocumentState } from "@embedpdf/core/react";
|
|
2
2
|
import { TilingPlugin } from "@embedpdf/plugin-tiling";
|
|
3
3
|
export * from "@embedpdf/plugin-tiling";
|
|
4
4
|
import { jsx } from "react/jsx-runtime";
|
package/dist/svelte/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import "svelte/internal/disclose-version";
|
|
|
2
2
|
import * as $ from "svelte/internal/client";
|
|
3
3
|
import { TilingPlugin } from "@embedpdf/plugin-tiling";
|
|
4
4
|
export * from "@embedpdf/plugin-tiling";
|
|
5
|
-
import {
|
|
5
|
+
import { usePlugin, useCapability, useDocumentState } from "@embedpdf/core/svelte";
|
|
6
6
|
import { ignore, PdfErrorCode } from "@embedpdf/models";
|
|
7
7
|
import { untrack } from "svelte";
|
|
8
8
|
const useTilingPlugin = () => usePlugin(TilingPlugin.id);
|
package/dist/vue/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { defineComponent, ref, computed, watch, toRaw, onBeforeUnmount,
|
|
1
|
+
import { defineComponent, ref, computed, watch, toRaw, onBeforeUnmount, openBlock, createElementBlock, normalizeStyle, createCommentVNode, normalizeProps, guardReactiveProps, Fragment, renderList, createBlock } from "vue";
|
|
2
2
|
import { ignore, PdfErrorCode } from "@embedpdf/models";
|
|
3
|
-
import {
|
|
3
|
+
import { usePlugin, useCapability, useDocumentState } from "@embedpdf/core/vue";
|
|
4
4
|
import { TilingPlugin } from "@embedpdf/plugin-tiling";
|
|
5
5
|
export * from "@embedpdf/plugin-tiling";
|
|
6
6
|
const useTilingPlugin = () => usePlugin(TilingPlugin.id);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@embedpdf/plugin-tiling",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -35,16 +35,16 @@
|
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@embedpdf/models": "2.
|
|
38
|
+
"@embedpdf/models": "2.6.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/react": "^18.2.0",
|
|
42
42
|
"typescript": "^5.0.0",
|
|
43
|
-
"@embedpdf/core": "2.
|
|
44
|
-
"@embedpdf/plugin-render": "2.5.0",
|
|
43
|
+
"@embedpdf/core": "2.6.0",
|
|
45
44
|
"@embedpdf/build": "1.1.0",
|
|
46
|
-
"@embedpdf/plugin-
|
|
47
|
-
"@embedpdf/plugin-scroll": "2.
|
|
45
|
+
"@embedpdf/plugin-render": "2.6.0",
|
|
46
|
+
"@embedpdf/plugin-scroll": "2.6.0",
|
|
47
|
+
"@embedpdf/plugin-viewport": "2.6.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": ">=16.8.0",
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"preact": "^10.26.4",
|
|
53
53
|
"vue": ">=3.2.0",
|
|
54
54
|
"svelte": ">=5 <6",
|
|
55
|
-
"@embedpdf/core": "2.
|
|
56
|
-
"@embedpdf/plugin-
|
|
57
|
-
"@embedpdf/plugin-
|
|
58
|
-
"@embedpdf/plugin-
|
|
55
|
+
"@embedpdf/core": "2.6.0",
|
|
56
|
+
"@embedpdf/plugin-scroll": "2.6.0",
|
|
57
|
+
"@embedpdf/plugin-viewport": "2.6.0",
|
|
58
|
+
"@embedpdf/plugin-render": "2.6.0"
|
|
59
59
|
},
|
|
60
60
|
"files": [
|
|
61
61
|
"dist",
|