diff --git a/.changeset/bright-birds-tie.md b/.changeset/bright-birds-tie.md deleted file mode 100644 index 664ea7fbd..000000000 --- a/.changeset/bright-birds-tie.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@embedpdf/plugin-scroll': patch ---- - -Fix horizontal scrolling layout calculations and page navigation state updates in `@embedpdf/plugin-scroll`. - -This corrects horizontal visible-range and end-spacing math, preserves the optimistic `currentPage` during smooth next/previous navigation, and fixes page-coordinate targeting for mixed-height pages in horizontal mode by matching the scroller's vertical centering. diff --git a/.changeset/fair-cups-smile.md b/.changeset/fair-cups-smile.md deleted file mode 100644 index 58a721344..000000000 --- a/.changeset/fair-cups-smile.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@embedpdf/snippet': patch ---- - -Add form plugin support to the snippet API and expand the snippet documentation with standalone vanilla HTML examples. - -This includes exporting the form plugin types from `@embedpdf/snippet`, updating form-related command/category behavior, and adding vanilla Tailwind examples plus new plugin docs for forms. diff --git a/.changeset/fix-stamp-handler-regression.md b/.changeset/fix-stamp-handler-regression.md deleted file mode 100644 index 0969ea7c3..000000000 --- a/.changeset/fix-stamp-handler-regression.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@embedpdf/plugin-annotation': patch ---- - -Fix stamp (and other annotation type) handlers not working for custom tools added via `addTool()`. - -The #537 merge moved handler factory lookup from a centralized subtype-based registry to a `pointerHandler` property on each tool object. Custom tools that didn't specify `pointerHandler` lost their pointer interaction entirely. This restores a default handler registry as a fallback so tools without an explicit `pointerHandler` automatically get the canonical handler for their annotation subtype. diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 3d6e81131..81af862c7 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/core +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/core/package.json b/packages/core/package.json index c6d3f7051..7b173ec0d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/core", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/engines/CHANGELOG.md b/packages/engines/CHANGELOG.md index fb240e7bf..54cc98640 100644 --- a/packages/engines/CHANGELOG.md +++ b/packages/engines/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/engines +## 2.10.1 + ## 2.10.0 ### Minor Changes diff --git a/packages/engines/package.json b/packages/engines/package.json index e21473fd3..fc440db88 100644 --- a/packages/engines/package.json +++ b/packages/engines/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/engines", - "version": "2.10.0", + "version": "2.10.1", "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 6eec64979..244caf813 100644 --- a/packages/models/CHANGELOG.md +++ b/packages/models/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/models +## 2.10.1 + ## 2.10.0 ### Minor Changes diff --git a/packages/models/package.json b/packages/models/package.json index a25a64869..19fec3d5e 100644 --- a/packages/models/package.json +++ b/packages/models/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/models", - "version": "2.10.0", + "version": "2.10.1", "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 ca62624c2..b4e367cd7 100644 --- a/packages/pdfium/CHANGELOG.md +++ b/packages/pdfium/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/pdfium +## 2.10.1 + ## 2.10.0 ### Minor Changes diff --git a/packages/pdfium/package.json b/packages/pdfium/package.json index e3bf628ab..432dc2670 100644 --- a/packages/pdfium/package.json +++ b/packages/pdfium/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/pdfium", - "version": "2.10.0", + "version": "2.10.1", "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 2796abb73..08d7cb405 100644 --- a/packages/plugin-annotation/CHANGELOG.md +++ b/packages/plugin-annotation/CHANGELOG.md @@ -1,5 +1,13 @@ # @embedpdf/plugin-annotation +## 2.10.1 + +### Patch Changes + +- [#556](https://github.com/embedpdf/embed-pdf-viewer/pull/556) by [@bobsingor](https://github.com/bobsingor) – Fix stamp (and other annotation type) handlers not working for custom tools added via `addTool()`. + + The #537 merge moved handler factory lookup from a centralized subtype-based registry to a `pointerHandler` property on each tool object. Custom tools that didn't specify `pointerHandler` lost their pointer interaction entirely. This restores a default handler registry as a fallback so tools without an explicit `pointerHandler` automatically get the canonical handler for their annotation subtype. + ## 2.10.0 ### Minor Changes diff --git a/packages/plugin-annotation/package.json b/packages/plugin-annotation/package.json index 5b60b5c92..ddc42d6c6 100644 --- a/packages/plugin-annotation/package.json +++ b/packages/plugin-annotation/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-annotation", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-attachment/CHANGELOG.md b/packages/plugin-attachment/CHANGELOG.md index d29c517d2..6e38b2d66 100644 --- a/packages/plugin-attachment/CHANGELOG.md +++ b/packages/plugin-attachment/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-attachment +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-attachment/package.json b/packages/plugin-attachment/package.json index 75e0d0d63..fc79c0c31 100644 --- a/packages/plugin-attachment/package.json +++ b/packages/plugin-attachment/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-attachment", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-bookmark/CHANGELOG.md b/packages/plugin-bookmark/CHANGELOG.md index 6a0a4d1b1..bebfb3fa5 100644 --- a/packages/plugin-bookmark/CHANGELOG.md +++ b/packages/plugin-bookmark/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-bookmark +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-bookmark/package.json b/packages/plugin-bookmark/package.json index 083a00ee6..bf2db95e7 100644 --- a/packages/plugin-bookmark/package.json +++ b/packages/plugin-bookmark/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-bookmark", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-capture/CHANGELOG.md b/packages/plugin-capture/CHANGELOG.md index 77f37e373..2fc241a41 100644 --- a/packages/plugin-capture/CHANGELOG.md +++ b/packages/plugin-capture/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-capture +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-capture/package.json b/packages/plugin-capture/package.json index 872f6b397..b19ec3337 100644 --- a/packages/plugin-capture/package.json +++ b/packages/plugin-capture/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-capture", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-commands/CHANGELOG.md b/packages/plugin-commands/CHANGELOG.md index 1713a9e5d..a680c1755 100644 --- a/packages/plugin-commands/CHANGELOG.md +++ b/packages/plugin-commands/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-commands +## 2.10.1 + ## 2.10.0 ### Patch Changes diff --git a/packages/plugin-commands/package.json b/packages/plugin-commands/package.json index ed4dc4c42..19d7ef040 100644 --- a/packages/plugin-commands/package.json +++ b/packages/plugin-commands/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-commands", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-document-manager/CHANGELOG.md b/packages/plugin-document-manager/CHANGELOG.md index 824ac9185..f2f8eb89e 100644 --- a/packages/plugin-document-manager/CHANGELOG.md +++ b/packages/plugin-document-manager/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-document-manager +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-document-manager/package.json b/packages/plugin-document-manager/package.json index 9c7b34a42..952f9d85c 100644 --- a/packages/plugin-document-manager/package.json +++ b/packages/plugin-document-manager/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-document-manager", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-export/CHANGELOG.md b/packages/plugin-export/CHANGELOG.md index 23bbd25b8..17babc71e 100644 --- a/packages/plugin-export/CHANGELOG.md +++ b/packages/plugin-export/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-export +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-export/package.json b/packages/plugin-export/package.json index 27d3582ef..949e360e6 100644 --- a/packages/plugin-export/package.json +++ b/packages/plugin-export/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-export", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-form/CHANGELOG.md b/packages/plugin-form/CHANGELOG.md index f4bab84e9..ac2da1791 100644 --- a/packages/plugin-form/CHANGELOG.md +++ b/packages/plugin-form/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-form +## 2.10.1 + ## 2.10.0 ### Minor Changes diff --git a/packages/plugin-form/package.json b/packages/plugin-form/package.json index bf62451c5..931aa7e5e 100644 --- a/packages/plugin-form/package.json +++ b/packages/plugin-form/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-form", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", diff --git a/packages/plugin-fullscreen/CHANGELOG.md b/packages/plugin-fullscreen/CHANGELOG.md index 1941cc012..4f55bd9f8 100644 --- a/packages/plugin-fullscreen/CHANGELOG.md +++ b/packages/plugin-fullscreen/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-fullscreen +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-fullscreen/package.json b/packages/plugin-fullscreen/package.json index e0b70e23b..a4ab873b7 100644 --- a/packages/plugin-fullscreen/package.json +++ b/packages/plugin-fullscreen/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-fullscreen", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-history/CHANGELOG.md b/packages/plugin-history/CHANGELOG.md index 976660436..f0194f6a9 100644 --- a/packages/plugin-history/CHANGELOG.md +++ b/packages/plugin-history/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-history +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-history/package.json b/packages/plugin-history/package.json index bd6031fac..eef35d319 100644 --- a/packages/plugin-history/package.json +++ b/packages/plugin-history/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-history", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-i18n/CHANGELOG.md b/packages/plugin-i18n/CHANGELOG.md index 4f3a3fee1..0bcd24981 100644 --- a/packages/plugin-i18n/CHANGELOG.md +++ b/packages/plugin-i18n/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-i18n +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-i18n/package.json b/packages/plugin-i18n/package.json index 55e147935..b207935da 100644 --- a/packages/plugin-i18n/package.json +++ b/packages/plugin-i18n/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-i18n", - "version": "2.10.0", + "version": "2.10.1", "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 591934fc1..a29833fc6 100644 --- a/packages/plugin-interaction-manager/CHANGELOG.md +++ b/packages/plugin-interaction-manager/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-interaction-manager +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-interaction-manager/package.json b/packages/plugin-interaction-manager/package.json index cfb1f4eda..bd9ed6928 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": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-pan/CHANGELOG.md b/packages/plugin-pan/CHANGELOG.md index 23d18b81b..57ee59cb8 100644 --- a/packages/plugin-pan/CHANGELOG.md +++ b/packages/plugin-pan/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-pan +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-pan/package.json b/packages/plugin-pan/package.json index 4438263ee..f1029e065 100644 --- a/packages/plugin-pan/package.json +++ b/packages/plugin-pan/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-pan", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-print/CHANGELOG.md b/packages/plugin-print/CHANGELOG.md index 7fcf4bb82..793f88981 100644 --- a/packages/plugin-print/CHANGELOG.md +++ b/packages/plugin-print/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-print +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-print/package.json b/packages/plugin-print/package.json index d3fa15707..5fa48e9e1 100644 --- a/packages/plugin-print/package.json +++ b/packages/plugin-print/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-print", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-redaction/CHANGELOG.md b/packages/plugin-redaction/CHANGELOG.md index 2ecd5d023..d07dd7c69 100644 --- a/packages/plugin-redaction/CHANGELOG.md +++ b/packages/plugin-redaction/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-redaction +## 2.10.1 + ## 2.10.0 ### Patch Changes diff --git a/packages/plugin-redaction/package.json b/packages/plugin-redaction/package.json index ab32de80d..b8a8f962d 100644 --- a/packages/plugin-redaction/package.json +++ b/packages/plugin-redaction/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-redaction", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-render/CHANGELOG.md b/packages/plugin-render/CHANGELOG.md index 48f32b6b5..c23d19244 100644 --- a/packages/plugin-render/CHANGELOG.md +++ b/packages/plugin-render/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-render +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-render/package.json b/packages/plugin-render/package.json index e9d0d271a..30500f3a3 100644 --- a/packages/plugin-render/package.json +++ b/packages/plugin-render/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-render", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-rotate/CHANGELOG.md b/packages/plugin-rotate/CHANGELOG.md index 699c2d371..c3250547e 100644 --- a/packages/plugin-rotate/CHANGELOG.md +++ b/packages/plugin-rotate/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-rotate +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-rotate/package.json b/packages/plugin-rotate/package.json index d553e7986..cd7da7ffb 100644 --- a/packages/plugin-rotate/package.json +++ b/packages/plugin-rotate/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-rotate", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-scroll/CHANGELOG.md b/packages/plugin-scroll/CHANGELOG.md index 31b56fdc8..580725e25 100644 --- a/packages/plugin-scroll/CHANGELOG.md +++ b/packages/plugin-scroll/CHANGELOG.md @@ -1,5 +1,13 @@ # @embedpdf/plugin-scroll +## 2.10.1 + +### Patch Changes + +- [#541](https://github.com/embedpdf/embed-pdf-viewer/pull/541) by [@luissardon](https://github.com/luissardon) – Fix horizontal scrolling layout calculations and page navigation state updates in `@embedpdf/plugin-scroll`. + + This corrects horizontal visible-range and end-spacing math, preserves the optimistic `currentPage` during smooth next/previous navigation, and fixes page-coordinate targeting for mixed-height pages in horizontal mode by matching the scroller's vertical centering. + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-scroll/package.json b/packages/plugin-scroll/package.json index 01b6f097d..c914a7af1 100644 --- a/packages/plugin-scroll/package.json +++ b/packages/plugin-scroll/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-scroll", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-search/CHANGELOG.md b/packages/plugin-search/CHANGELOG.md index e23db4f65..fbdc55e06 100644 --- a/packages/plugin-search/CHANGELOG.md +++ b/packages/plugin-search/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-search +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-search/package.json b/packages/plugin-search/package.json index e4cf07f42..e9ebd3f4e 100644 --- a/packages/plugin-search/package.json +++ b/packages/plugin-search/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-search", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-selection/CHANGELOG.md b/packages/plugin-selection/CHANGELOG.md index 37e46b33e..7b8aafc93 100644 --- a/packages/plugin-selection/CHANGELOG.md +++ b/packages/plugin-selection/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-selection +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-selection/package.json b/packages/plugin-selection/package.json index 51590f486..9a2024c1e 100644 --- a/packages/plugin-selection/package.json +++ b/packages/plugin-selection/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-selection", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-spread/CHANGELOG.md b/packages/plugin-spread/CHANGELOG.md index 6247a0774..1381fb2e4 100644 --- a/packages/plugin-spread/CHANGELOG.md +++ b/packages/plugin-spread/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-spread +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-spread/package.json b/packages/plugin-spread/package.json index 37cd12f96..278ef2a5a 100644 --- a/packages/plugin-spread/package.json +++ b/packages/plugin-spread/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-spread", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-thumbnail/CHANGELOG.md b/packages/plugin-thumbnail/CHANGELOG.md index 7cf3a4433..c79be5095 100644 --- a/packages/plugin-thumbnail/CHANGELOG.md +++ b/packages/plugin-thumbnail/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-thumbnail +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-thumbnail/package.json b/packages/plugin-thumbnail/package.json index 36c9cdded..d709bb124 100644 --- a/packages/plugin-thumbnail/package.json +++ b/packages/plugin-thumbnail/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-thumbnail", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-tiling/CHANGELOG.md b/packages/plugin-tiling/CHANGELOG.md index f5ce863c1..42feb3ed7 100644 --- a/packages/plugin-tiling/CHANGELOG.md +++ b/packages/plugin-tiling/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-tiling +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-tiling/package.json b/packages/plugin-tiling/package.json index 16fec74a8..3c735a2bd 100644 --- a/packages/plugin-tiling/package.json +++ b/packages/plugin-tiling/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-tiling", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-ui/CHANGELOG.md b/packages/plugin-ui/CHANGELOG.md index 83063effd..6cdce182f 100644 --- a/packages/plugin-ui/CHANGELOG.md +++ b/packages/plugin-ui/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-ui +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-ui/package.json b/packages/plugin-ui/package.json index 3b8a9ea64..65f30a788 100644 --- a/packages/plugin-ui/package.json +++ b/packages/plugin-ui/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-ui", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-view-manager/CHANGELOG.md b/packages/plugin-view-manager/CHANGELOG.md index 276e20aa7..c67f52ac3 100644 --- a/packages/plugin-view-manager/CHANGELOG.md +++ b/packages/plugin-view-manager/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-view-manager +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-view-manager/package.json b/packages/plugin-view-manager/package.json index 2336ffa7d..f62b642fa 100644 --- a/packages/plugin-view-manager/package.json +++ b/packages/plugin-view-manager/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-view-manager", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-viewport/CHANGELOG.md b/packages/plugin-viewport/CHANGELOG.md index 038f32a64..4ff722bc5 100644 --- a/packages/plugin-viewport/CHANGELOG.md +++ b/packages/plugin-viewport/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-viewport +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-viewport/package.json b/packages/plugin-viewport/package.json index 3b145e3a1..3ba5e4850 100644 --- a/packages/plugin-viewport/package.json +++ b/packages/plugin-viewport/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-viewport", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/plugin-zoom/CHANGELOG.md b/packages/plugin-zoom/CHANGELOG.md index 2ba718e16..88f09deb1 100644 --- a/packages/plugin-zoom/CHANGELOG.md +++ b/packages/plugin-zoom/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/plugin-zoom +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/plugin-zoom/package.json b/packages/plugin-zoom/package.json index e79367cdc..7de324509 100644 --- a/packages/plugin-zoom/package.json +++ b/packages/plugin-zoom/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/plugin-zoom", - "version": "2.10.0", + "version": "2.10.1", "type": "module", "license": "MIT", "main": "./dist/index.cjs", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index b7e277d1e..9302a6c7f 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/utils +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/packages/utils/package.json b/packages/utils/package.json index 03b54e461..90e691ea8 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/utils", - "version": "2.10.0", + "version": "2.10.1", "private": false, "description": "Shared utility helpers (geometry, tasks, logging, PDF primitives) that underpin every package in the EmbedPDF ecosystem.", "type": "module", diff --git a/viewers/react/CHANGELOG.md b/viewers/react/CHANGELOG.md index 9c19d411a..2b763aebe 100644 --- a/viewers/react/CHANGELOG.md +++ b/viewers/react/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/react-pdf-viewer +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/viewers/react/package.json b/viewers/react/package.json index 4e7ba2057..57b9dfccc 100644 --- a/viewers/react/package.json +++ b/viewers/react/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/react-pdf-viewer", - "version": "2.10.0", + "version": "2.10.1", "description": "React component for embedding PDF documents", "main": "dist/index.cjs", "module": "dist/index.js", diff --git a/viewers/snippet/CHANGELOG.md b/viewers/snippet/CHANGELOG.md index c1ed045e8..2897dd7b5 100644 --- a/viewers/snippet/CHANGELOG.md +++ b/viewers/snippet/CHANGELOG.md @@ -1,5 +1,13 @@ # @embedpdf/snippet +## 2.10.1 + +### Patch Changes + +- [#553](https://github.com/embedpdf/embed-pdf-viewer/pull/553) by [@bobsingor](https://github.com/bobsingor) – Add form plugin support to the snippet API and expand the snippet documentation with standalone vanilla HTML examples. + + This includes exporting the form plugin types from `@embedpdf/snippet`, updating form-related command/category behavior, and adding vanilla Tailwind examples plus new plugin docs for forms. + ## 2.10.0 ### Minor Changes diff --git a/viewers/snippet/package.json b/viewers/snippet/package.json index cf74d835f..c494fff96 100644 --- a/viewers/snippet/package.json +++ b/viewers/snippet/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/snippet", - "version": "2.10.0", + "version": "2.10.1", "main": "dist/embedpdf.js", "types": "dist/embedpdf.d.ts", "license": "MIT", diff --git a/viewers/svelte/CHANGELOG.md b/viewers/svelte/CHANGELOG.md index a3d30c071..cf4e34af3 100644 --- a/viewers/svelte/CHANGELOG.md +++ b/viewers/svelte/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/svelte-pdf-viewer +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/viewers/svelte/package.json b/viewers/svelte/package.json index f8d3790f5..746472b20 100644 --- a/viewers/svelte/package.json +++ b/viewers/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/svelte-pdf-viewer", - "version": "2.10.0", + "version": "2.10.1", "description": "Svelte component for embedding PDF documents", "license": "MIT", "type": "module", diff --git a/viewers/vue/CHANGELOG.md b/viewers/vue/CHANGELOG.md index 378ed41c0..4b62455ee 100644 --- a/viewers/vue/CHANGELOG.md +++ b/viewers/vue/CHANGELOG.md @@ -1,5 +1,7 @@ # @embedpdf/vue-pdf-viewer +## 2.10.1 + ## 2.10.0 ## 2.9.1 diff --git a/viewers/vue/package.json b/viewers/vue/package.json index 4053bafd2..0f85f4099 100644 --- a/viewers/vue/package.json +++ b/viewers/vue/package.json @@ -1,6 +1,6 @@ { "name": "@embedpdf/vue-pdf-viewer", - "version": "2.10.0", + "version": "2.10.1", "description": "Vue component for embedding PDF documents", "main": "dist/index.cjs", "module": "dist/index.js",