diff --git a/.changeset/rotten-rocks-kneel.md b/.changeset/rotten-rocks-kneel.md deleted file mode 100644 index a568992e..00000000 --- a/.changeset/rotten-rocks-kneel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@embedpdf/plugin-zoom': patch ---- - -Increase zoom precision from two decimals to three (changed rounding from `/100` to `/1000`) to improve smoother zoom granularity and reduce jumpy transitions. diff --git a/.changeset/weak-pugs-hear.md b/.changeset/weak-pugs-hear.md deleted file mode 100644 index cefa200d..00000000 --- a/.changeset/weak-pugs-hear.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -'@embedpdf/engines': minor -'@embedpdf/models': minor -'@embedpdf/plugin-render': minor ---- - -Add optional **form widget rendering** to the render pipeline. - -### What changed - -- **@embedpdf/models** - - - `PdfRenderPageOptions` now supports `withForms?: boolean` to request drawing interactive form widgets. - -- **@embedpdf/engines** - - - `PdfiumEngine.renderPage` and `renderPageRect` honor `withForms`. - When enabled, the engine initializes the page form handle and calls `FPDF_FFLDraw` with the correct device transform. - - New helper `computeFormDrawParams(matrix, rect, pageSize, rotation)` calculates start offsets and sizes for `FPDF_FFLDraw`. - -- **@embedpdf/plugin-render** - - New plugin config flags: - - `withForms?: boolean` (default `false`) - - `withAnnotations?: boolean` (default `false`) - - The plugin merges per-call options with plugin defaults so callers can set once at init or override per call. diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index e6e1e3e9..82a24862 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/core +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 5c870a4a..f3b6a46f 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/core", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/engines/CHANGELOG.md b/packages/engines/CHANGELOG.md index 4497ef36..1a61c8eb 100644 --- a/packages/engines/CHANGELOG.md +++ b/packages/engines/CHANGELOG.md @@ -1,5 +1,29 @@ # @embedpdf/engines +## 1.5.0 + +### Minor Changes + +- [#238](https://github.com/embedpdf/embed-pdf-viewer/pull/238) by [@0xbe7a](https://github.com/0xbe7a) – Add optional **form widget rendering** to the render pipeline. + + ### What changed + + - **@embedpdf/models** + + - `PdfRenderPageOptions` now supports `withForms?: boolean` to request drawing interactive form widgets. + + - **@embedpdf/engines** + + - `PdfiumEngine.renderPage` and `renderPageRect` honor `withForms`. + When enabled, the engine initializes the page form handle and calls `FPDF_FFLDraw` with the correct device transform. + - New helper `computeFormDrawParams(matrix, rect, pageSize, rotation)` calculates start offsets and sizes for `FPDF_FFLDraw`. + + - **@embedpdf/plugin-render** + - New plugin config flags: + - `withForms?: boolean` (default `false`) + - `withAnnotations?: boolean` (default `false`) + - The plugin merges per-call options with plugin defaults so callers can set once at init or override per call. + ## 1.4.1 ### Patch Changes diff --git a/packages/engines/package.json b/packages/engines/package.json index 751c5164..3e4b560b 100644 --- a/packages/engines/package.json +++ b/packages/engines/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/engines", - "version": "1.4.1", + "version": "1.5.0", "description": "Pluggable runtime layer that abstracts over multiple PDF engines (PDF-ium, Web Workers, mocks, etc.) to provide a unified API for rendering, search, annotation, and other document-level operations in EmbedPDF.", "type": "module", "main": "./dist/index.cjs", diff --git a/packages/models/CHANGELOG.md b/packages/models/CHANGELOG.md index e734de68..ae774d7e 100644 --- a/packages/models/CHANGELOG.md +++ b/packages/models/CHANGELOG.md @@ -1,5 +1,29 @@ # @embedpdf/models +## 1.5.0 + +### Minor Changes + +- [#238](https://github.com/embedpdf/embed-pdf-viewer/pull/238) by [@0xbe7a](https://github.com/0xbe7a) – Add optional **form widget rendering** to the render pipeline. + + ### What changed + + - **@embedpdf/models** + + - `PdfRenderPageOptions` now supports `withForms?: boolean` to request drawing interactive form widgets. + + - **@embedpdf/engines** + + - `PdfiumEngine.renderPage` and `renderPageRect` honor `withForms`. + When enabled, the engine initializes the page form handle and calls `FPDF_FFLDraw` with the correct device transform. + - New helper `computeFormDrawParams(matrix, rect, pageSize, rotation)` calculates start offsets and sizes for `FPDF_FFLDraw`. + + - **@embedpdf/plugin-render** + - New plugin config flags: + - `withForms?: boolean` (default `false`) + - `withAnnotations?: boolean` (default `false`) + - The plugin merges per-call options with plugin defaults so callers can set once at init or override per call. + ## 1.4.1 ## 1.4.0 diff --git a/packages/models/package.json b/packages/models/package.json index 007e8e44..3a2deb8b 100644 --- a/packages/models/package.json +++ b/packages/models/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/models", - "version": "1.4.1", + "version": "1.5.0", "private": false, "description": "Shared type definitions, data models, and utility helpers (geometry, tasks, logging, PDF primitives) that underpin every package in the EmbedPDF ecosystem.", "type": "module", diff --git a/packages/pdfium/CHANGELOG.md b/packages/pdfium/CHANGELOG.md index b43492f2..c77fc539 100644 --- a/packages/pdfium/CHANGELOG.md +++ b/packages/pdfium/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/pdfium +## 1.5.0 + ## 1.4.1 ## 1.4.0 diff --git a/packages/pdfium/package.json b/packages/pdfium/package.json index 5313585c..4b53d2eb 100644 --- a/packages/pdfium/package.json +++ b/packages/pdfium/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/pdfium", - "version": "1.4.1", + "version": "1.5.0", "private": false, "description": "PDFium WebAssembly for the web platform. This package provides a powerful JavaScript interface to PDFium, enabling high-quality PDF rendering and manipulation directly in web applications.", "type": "module", diff --git a/packages/plugin-annotation/CHANGELOG.md b/packages/plugin-annotation/CHANGELOG.md index a964478d..97c5e90f 100644 --- a/packages/plugin-annotation/CHANGELOG.md +++ b/packages/plugin-annotation/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-annotation +## 1.5.0 + ## 1.4.1 ## 1.4.0 diff --git a/packages/plugin-annotation/package.json b/packages/plugin-annotation/package.json index fccd9e89..8831e6ae 100644 --- a/packages/plugin-annotation/package.json +++ b/packages/plugin-annotation/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-annotation", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-attachment/CHANGELOG.md b/packages/plugin-attachment/CHANGELOG.md index 8b80b1de..0812c7e9 100644 --- a/packages/plugin-attachment/CHANGELOG.md +++ b/packages/plugin-attachment/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-attachment +## 1.5.0 + ## 1.4.1 ## 1.4.0 diff --git a/packages/plugin-attachment/package.json b/packages/plugin-attachment/package.json index fc44c42d..52fc99cb 100644 --- a/packages/plugin-attachment/package.json +++ b/packages/plugin-attachment/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-attachment", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-bookmark/CHANGELOG.md b/packages/plugin-bookmark/CHANGELOG.md index 493c38a1..00286b54 100644 --- a/packages/plugin-bookmark/CHANGELOG.md +++ b/packages/plugin-bookmark/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-bookmark +## 1.5.0 + ## 1.4.1 ## 1.4.0 diff --git a/packages/plugin-bookmark/package.json b/packages/plugin-bookmark/package.json index 88246b83..f7bbaf25 100644 --- a/packages/plugin-bookmark/package.json +++ b/packages/plugin-bookmark/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-bookmark", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-capture/CHANGELOG.md b/packages/plugin-capture/CHANGELOG.md index 19e4a6e4..b9adb09a 100644 --- a/packages/plugin-capture/CHANGELOG.md +++ b/packages/plugin-capture/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-capture +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-capture/package.json b/packages/plugin-capture/package.json index d0c62fcc..5071b9d4 100644 --- a/packages/plugin-capture/package.json +++ b/packages/plugin-capture/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-capture", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-export/CHANGELOG.md b/packages/plugin-export/CHANGELOG.md index 6989a7aa..7336dc9c 100644 --- a/packages/plugin-export/CHANGELOG.md +++ b/packages/plugin-export/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-export +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-export/package.json b/packages/plugin-export/package.json index d0e39d19..ac64a8e8 100644 --- a/packages/plugin-export/package.json +++ b/packages/plugin-export/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-export", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-fullscreen/CHANGELOG.md b/packages/plugin-fullscreen/CHANGELOG.md index 3a361949..0d156564 100644 --- a/packages/plugin-fullscreen/CHANGELOG.md +++ b/packages/plugin-fullscreen/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-fullscreen +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-fullscreen/package.json b/packages/plugin-fullscreen/package.json index f10a5a13..8b742d74 100644 --- a/packages/plugin-fullscreen/package.json +++ b/packages/plugin-fullscreen/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-fullscreen", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-history/CHANGELOG.md b/packages/plugin-history/CHANGELOG.md index 626c0dbf..c902c9e8 100644 --- a/packages/plugin-history/CHANGELOG.md +++ b/packages/plugin-history/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-history +## 1.5.0 + ## 1.4.1 ## 1.4.0 diff --git a/packages/plugin-history/package.json b/packages/plugin-history/package.json index 491c6426..a8b45bcb 100644 --- a/packages/plugin-history/package.json +++ b/packages/plugin-history/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-history", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-interaction-manager/CHANGELOG.md b/packages/plugin-interaction-manager/CHANGELOG.md index ab2a6a8e..a0d148d7 100644 --- a/packages/plugin-interaction-manager/CHANGELOG.md +++ b/packages/plugin-interaction-manager/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-interaction-manager +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-interaction-manager/package.json b/packages/plugin-interaction-manager/package.json index 43d7e93d..fee326ae 100644 --- a/packages/plugin-interaction-manager/package.json +++ b/packages/plugin-interaction-manager/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-interaction-manager", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-loader/CHANGELOG.md b/packages/plugin-loader/CHANGELOG.md index 2baa9836..0c4f3544 100644 --- a/packages/plugin-loader/CHANGELOG.md +++ b/packages/plugin-loader/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-loader +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-loader/package.json b/packages/plugin-loader/package.json index 9bdb90f2..4eaf8430 100644 --- a/packages/plugin-loader/package.json +++ b/packages/plugin-loader/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-loader", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-pan/CHANGELOG.md b/packages/plugin-pan/CHANGELOG.md index 125df926..dfd0f42b 100644 --- a/packages/plugin-pan/CHANGELOG.md +++ b/packages/plugin-pan/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-pan +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-pan/package.json b/packages/plugin-pan/package.json index 5e51ca95..0f8309b8 100644 --- a/packages/plugin-pan/package.json +++ b/packages/plugin-pan/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-pan", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-print/CHANGELOG.md b/packages/plugin-print/CHANGELOG.md index c4f2a62e..9461040d 100644 --- a/packages/plugin-print/CHANGELOG.md +++ b/packages/plugin-print/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-print +## 1.5.0 + ## 1.4.1 ## 1.4.0 diff --git a/packages/plugin-print/package.json b/packages/plugin-print/package.json index ff97ecf1..b3430438 100644 --- a/packages/plugin-print/package.json +++ b/packages/plugin-print/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-print", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-redaction/CHANGELOG.md b/packages/plugin-redaction/CHANGELOG.md index cc3a592c..46214005 100644 --- a/packages/plugin-redaction/CHANGELOG.md +++ b/packages/plugin-redaction/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-redaction +## 1.5.0 + ## 1.4.1 ## 1.4.0 diff --git a/packages/plugin-redaction/package.json b/packages/plugin-redaction/package.json index cfc62f99..4dc2c1e1 100644 --- a/packages/plugin-redaction/package.json +++ b/packages/plugin-redaction/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-redaction", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-render/CHANGELOG.md b/packages/plugin-render/CHANGELOG.md index 63ad028f..6c25b264 100644 --- a/packages/plugin-render/CHANGELOG.md +++ b/packages/plugin-render/CHANGELOG.md @@ -1,5 +1,29 @@ # @embedpdf/plugin-render +## 1.5.0 + +### Minor Changes + +- [#238](https://github.com/embedpdf/embed-pdf-viewer/pull/238) by [@0xbe7a](https://github.com/0xbe7a) – Add optional **form widget rendering** to the render pipeline. + + ### What changed + + - **@embedpdf/models** + + - `PdfRenderPageOptions` now supports `withForms?: boolean` to request drawing interactive form widgets. + + - **@embedpdf/engines** + + - `PdfiumEngine.renderPage` and `renderPageRect` honor `withForms`. + When enabled, the engine initializes the page form handle and calls `FPDF_FFLDraw` with the correct device transform. + - New helper `computeFormDrawParams(matrix, rect, pageSize, rotation)` calculates start offsets and sizes for `FPDF_FFLDraw`. + + - **@embedpdf/plugin-render** + - New plugin config flags: + - `withForms?: boolean` (default `false`) + - `withAnnotations?: boolean` (default `false`) + - The plugin merges per-call options with plugin defaults so callers can set once at init or override per call. + ## 1.4.1 ## 1.4.0 diff --git a/packages/plugin-render/package.json b/packages/plugin-render/package.json index fa9d623b..fdbaf5cb 100644 --- a/packages/plugin-render/package.json +++ b/packages/plugin-render/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-render", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-rotate/CHANGELOG.md b/packages/plugin-rotate/CHANGELOG.md index 5d3b8bf8..06a42d7e 100644 --- a/packages/plugin-rotate/CHANGELOG.md +++ b/packages/plugin-rotate/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-rotate +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-rotate/package.json b/packages/plugin-rotate/package.json index 6a285781..aa77d372 100644 --- a/packages/plugin-rotate/package.json +++ b/packages/plugin-rotate/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-rotate", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-scroll/CHANGELOG.md b/packages/plugin-scroll/CHANGELOG.md index ce7da05a..8d4ad93f 100644 --- a/packages/plugin-scroll/CHANGELOG.md +++ b/packages/plugin-scroll/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-scroll +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-scroll/package.json b/packages/plugin-scroll/package.json index 58a653c7..960fc735 100644 --- a/packages/plugin-scroll/package.json +++ b/packages/plugin-scroll/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-scroll", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-search/CHANGELOG.md b/packages/plugin-search/CHANGELOG.md index 1109794d..8cfbee63 100644 --- a/packages/plugin-search/CHANGELOG.md +++ b/packages/plugin-search/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-search +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-search/package.json b/packages/plugin-search/package.json index 4e5826fa..2eebda06 100644 --- a/packages/plugin-search/package.json +++ b/packages/plugin-search/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-search", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-selection/CHANGELOG.md b/packages/plugin-selection/CHANGELOG.md index 31b38ad8..0714e044 100644 --- a/packages/plugin-selection/CHANGELOG.md +++ b/packages/plugin-selection/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-selection +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-selection/package.json b/packages/plugin-selection/package.json index 70059958..ecca8afd 100644 --- a/packages/plugin-selection/package.json +++ b/packages/plugin-selection/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-selection", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-spread/CHANGELOG.md b/packages/plugin-spread/CHANGELOG.md index 719f427b..e404e89e 100644 --- a/packages/plugin-spread/CHANGELOG.md +++ b/packages/plugin-spread/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-spread +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-spread/package.json b/packages/plugin-spread/package.json index 1be9ff33..9b044909 100644 --- a/packages/plugin-spread/package.json +++ b/packages/plugin-spread/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-spread", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-thumbnail/CHANGELOG.md b/packages/plugin-thumbnail/CHANGELOG.md index 8915f726..d466d60d 100644 --- a/packages/plugin-thumbnail/CHANGELOG.md +++ b/packages/plugin-thumbnail/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-thumbnail +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-thumbnail/package.json b/packages/plugin-thumbnail/package.json index 8441447e..b7c1095d 100644 --- a/packages/plugin-thumbnail/package.json +++ b/packages/plugin-thumbnail/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-thumbnail", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-tiling/CHANGELOG.md b/packages/plugin-tiling/CHANGELOG.md index a02ea428..1bb0432e 100644 --- a/packages/plugin-tiling/CHANGELOG.md +++ b/packages/plugin-tiling/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-tiling +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-tiling/package.json b/packages/plugin-tiling/package.json index 6752fdd8..f12cd0d4 100644 --- a/packages/plugin-tiling/package.json +++ b/packages/plugin-tiling/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-tiling", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-ui/CHANGELOG.md b/packages/plugin-ui/CHANGELOG.md index 92311645..d3802e45 100644 --- a/packages/plugin-ui/CHANGELOG.md +++ b/packages/plugin-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-ui +## 1.5.0 + ## 1.4.1 ## 1.4.0 diff --git a/packages/plugin-ui/package.json b/packages/plugin-ui/package.json index 16c20d70..738a9769 100644 --- a/packages/plugin-ui/package.json +++ b/packages/plugin-ui/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-ui", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-viewport/CHANGELOG.md b/packages/plugin-viewport/CHANGELOG.md index ca1c7310..091a8378 100644 --- a/packages/plugin-viewport/CHANGELOG.md +++ b/packages/plugin-viewport/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-viewport +## 1.5.0 + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-viewport/package.json b/packages/plugin-viewport/package.json index c7f7930a..166338b8 100644 --- a/packages/plugin-viewport/package.json +++ b/packages/plugin-viewport/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-viewport", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-zoom/CHANGELOG.md b/packages/plugin-zoom/CHANGELOG.md index 2ae08238..b7afef02 100644 --- a/packages/plugin-zoom/CHANGELOG.md +++ b/packages/plugin-zoom/CHANGELOG.md @@ -1,5 +1,11 @@ # @embedpdf/plugin-zoom +## 1.5.0 + +### Patch Changes + +- [#236](https://github.com/embedpdf/embed-pdf-viewer/pull/236) by [@eposha](https://github.com/eposha) – Increase zoom precision from two decimals to three (changed rounding from `/100` to `/1000`) to improve smoother zoom granularity and reduce jumpy transitions. + ## 1.4.1 ### Patch Changes diff --git a/packages/plugin-zoom/package.json b/packages/plugin-zoom/package.json index 4c8fffaf..4ce5a717 100644 --- a/packages/plugin-zoom/package.json +++ b/packages/plugin-zoom/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-zoom", - "version": "1.4.1", + "version": "1.5.0", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index ff7cae03..40d4595f 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/utils +## 1.5.0 + ## 1.4.1 ## 1.4.0 diff --git a/packages/utils/package.json b/packages/utils/package.json index 76560128..856a7396 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/utils", - "version": "1.4.1", + "version": "1.5.0", "private": false, "description": "Shared utility helpers (geometry, tasks, logging, PDF primitives) that underpin every package in the EmbedPDF ecosystem.", "type": "module",