ngx-extended-pdf-viewer 18.0.0 → 18.0.2
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 +3 -0
- package/esm2020/lib/events/toggle-sidebar-event.mjs +2 -0
- package/esm2020/lib/ngx-extended-pdf-viewer.component.mjs +9 -3
- package/esm2020/lib/theme/acroform-default-theme/pdf-acroform-default-colors-css.mjs +2 -2
- package/esm2020/lib/theme/pdf-dark-theme/colors-css.mjs +2 -2
- package/esm2020/lib/theme/pdf-light-theme/colors-css.mjs +2 -2
- package/esm2020/lib/toolbar/pdf-toggle-sidebar/pdf-toggle-sidebar.component.mjs +5 -2
- package/esm2020/lib/toolbar/pdf-toolbar/pdf-toolbar.component.mjs +3 -9
- package/esm2020/public_api.mjs +2 -2
- package/fesm2015/ngx-extended-pdf-viewer.mjs +17 -14
- package/fesm2015/ngx-extended-pdf-viewer.mjs.map +1 -1
- package/fesm2020/ngx-extended-pdf-viewer.mjs +17 -14
- package/fesm2020/ngx-extended-pdf-viewer.mjs.map +1 -1
- package/lib/events/toggle-sidebar-event.d.ts +3 -0
- package/lib/theme/acroform-default-theme/pdf-acroform-default-colors-css.d.ts +1 -1
- package/lib/theme/pdf-dark-theme/colors-css.d.ts +1 -1
- package/lib/theme/pdf-light-theme/colors-css.d.ts +1 -1
- package/lib/toolbar/pdf-toolbar/pdf-toolbar.component.d.ts +1 -3
- package/package.json +1 -1
- package/public_api.d.ts +1 -0
package/changelog.md
CHANGED
|
@@ -492,3 +492,6 @@
|
|
|
492
492
|
- 18.0.0-beta.8 #1857 show the print overlay even if printing twice
|
|
493
493
|
- 18.0.0-beta.9 fixed a CSS layout problem that happens only on Chrome; fixed translation errors
|
|
494
494
|
- 18.0.0-beta.10 slightly increased the font size of the text fields to match the previous font size more closely
|
|
495
|
+
- 18.0.0 updated the test screenshots to accomodate the new stamp editor button
|
|
496
|
+
- 18.0.1 #1835 addressed minor CSS issues; dependency updates
|
|
497
|
+
- 18.0.2 #1882 `<pdf-toggle-sidebar>` now also works in custom toolbars
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9nZ2xlLXNpZGViYXItZXZlbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtZXh0ZW5kZWQtcGRmLXZpZXdlci9zcmMvbGliL2V2ZW50cy90b2dnbGUtc2lkZWJhci1ldmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBUb2dnbGVTaWRlYmFyRXZlbnQge1xuICB2aXNpYmxlOiBib29sZWFuO1xufVxuIl19
|