ngx-extended-pdf-viewer 17.3.3 → 17.4.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/changelog.md +1 -0
- package/esm2020/lib/events/annotation-editor-mode-changed-event.mjs +2 -0
- package/esm2020/lib/ngx-extended-pdf-viewer.component.mjs +16 -2
- package/esm2020/lib/theme/acroform-default-theme/pdf-acroform-default-colors-css.mjs +2 -2
- package/esm2020/public_api.mjs +2 -1
- package/fesm2015/ngx-extended-pdf-viewer.mjs +16 -2
- package/fesm2015/ngx-extended-pdf-viewer.mjs.map +1 -1
- package/fesm2020/ngx-extended-pdf-viewer.mjs +16 -2
- package/fesm2020/ngx-extended-pdf-viewer.mjs.map +1 -1
- package/lib/events/annotation-editor-mode-changed-event.d.ts +5 -0
- package/lib/ngx-extended-pdf-viewer.component.d.ts +3 -1
- package/lib/theme/acroform-default-theme/pdf-acroform-default-colors-css.d.ts +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +1 -0
package/changelog.md
CHANGED
|
@@ -467,3 +467,4 @@
|
|
|
467
467
|
- 17.3.1 #1798 guard the message "The height of the PDF viewer widget is zero pixels." with a log level check; #1709 adjustments for small screens; #1799 bugfix: PDFViewerApplicationOptions is stored in the window object, not in globalThis
|
|
468
468
|
- 17.3.2 #1799 even if the PDF viewer is destroy before being able to load it's JavaScript code, it shouldn't throw an exception.
|
|
469
469
|
- 17.3.3 #1799 less errors when closing the PDF viewer before it has finished initializing
|
|
470
|
+
- 17.4.0-alpha.0 #1796 implemented `(annotationEditorModeChanged)` and added the CSS class `ngx-extended-pdf-viewer-prevent-touch-move` that's added to the body to prevent scrolling when the text or ink editor is used
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYW5ub3RhdGlvbi1lZGl0b3ItbW9kZS1jaGFuZ2VkLWV2ZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LWV4dGVuZGVkLXBkZi12aWV3ZXIvc3JjL2xpYi9ldmVudHMvYW5ub3RhdGlvbi1lZGl0b3ItbW9kZS1jaGFuZ2VkLWV2ZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBQREZQYWdlVmlldyB9IGZyb20gJy4uL29wdGlvbnMvcGRmX3BhZ2Vfdmlldyc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgQW5ub3RhdGlvbkVkaXRvckVkaXRvck1vZGVDaGFuZ2VkRXZlbnQge1xuICBzb3VyY2U6IFBERlBhZ2VWaWV3O1xuICBtb2RlOiAwIHwgMyB8IDE1OyAvLyAwID0gbm9uZSwgMyA9IHRleHRlZGl0b3IsIDE1ID0gaW5rZWRpdG9yXG59XG4iXX0=
|