@pdftools/four-heights-pdf-web-viewer 4.3.6
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/LICENSE.md +446 -0
- package/README.md +145 -0
- package/css/pdf-web-viewer.css +2407 -0
- package/doc/PdfWebViewer.pdf +0 -0
- package/es6/common/Checkbox.d.ts +9 -0
- package/es6/common/Checkbox.js +8 -0
- package/es6/common/Color.d.ts +23 -0
- package/es6/common/Color.js +118 -0
- package/es6/common/ColorPicker.d.ts +15 -0
- package/es6/common/ColorPicker.js +46 -0
- package/es6/common/Contextbar.d.ts +6 -0
- package/es6/common/Contextbar.js +19 -0
- package/es6/common/DragMoveHandler.d.ts +51 -0
- package/es6/common/DragMoveHandler.js +175 -0
- package/es6/common/Dropdown.d.ts +36 -0
- package/es6/common/Dropdown.js +76 -0
- package/es6/common/DropdownMenu.d.ts +9 -0
- package/es6/common/DropdownMenu.js +10 -0
- package/es6/common/DropdownSeparator.d.ts +3 -0
- package/es6/common/DropdownSeparator.js +6 -0
- package/es6/common/Icon.d.ts +13 -0
- package/es6/common/Icon.js +8 -0
- package/es6/common/Loader.d.ts +3 -0
- package/es6/common/Loader.js +6 -0
- package/es6/common/RangeSlider.d.ts +17 -0
- package/es6/common/RangeSlider.js +42 -0
- package/es6/common/StrokeStylePicker.d.ts +11 -0
- package/es6/common/StrokeStylePicker.js +20 -0
- package/es6/common/StrokeWidthPicker.d.ts +11 -0
- package/es6/common/StrokeWidthPicker.js +20 -0
- package/es6/common/Toolbar.d.ts +10 -0
- package/es6/common/Toolbar.js +6 -0
- package/es6/common/ToolbarButton.d.ts +14 -0
- package/es6/common/ToolbarButton.js +21 -0
- package/es6/common/ToolbarFileButton.d.ts +15 -0
- package/es6/common/ToolbarFileButton.js +27 -0
- package/es6/common/ToolbarItemGroup.d.ts +8 -0
- package/es6/common/ToolbarItemGroup.js +12 -0
- package/es6/common/ToolbarSeparator.d.ts +3 -0
- package/es6/common/ToolbarSeparator.js +6 -0
- package/es6/common/Tools.d.ts +10 -0
- package/es6/common/Tools.js +89 -0
- package/es6/common/TooltipManager.d.ts +12 -0
- package/es6/common/TooltipManager.js +54 -0
- package/es6/common/TranslationManager.d.ts +11 -0
- package/es6/common/TranslationManager.js +61 -0
- package/es6/common/classNames.d.ts +2 -0
- package/es6/common/classNames.js +18 -0
- package/es6/common/formatDate.d.ts +1 -0
- package/es6/common/formatDate.js +1 -0
- package/es6/common/icons.d.ts +13 -0
- package/es6/common/icons.js +412 -0
- package/es6/common/utils.d.ts +2 -0
- package/es6/common/utils.js +19 -0
- package/es6/custom/history.d.ts +2 -0
- package/es6/custom/history.js +59 -0
- package/es6/index.d.ts +5 -0
- package/es6/index.js +5 -0
- package/es6/lib/hyperapp/index.d.ts +108 -0
- package/es6/lib/hyperapp/index.js +327 -0
- package/es6/modules/CanvasLayer.d.ts +32 -0
- package/es6/modules/CanvasLayer.js +83 -0
- package/es6/modules/CanvasModule.d.ts +59 -0
- package/es6/modules/CanvasModule.js +98 -0
- package/es6/modules/eraser/EraserLayer.d.ts +13 -0
- package/es6/modules/eraser/EraserLayer.js +141 -0
- package/es6/modules/eraser/EraserModule.d.ts +19 -0
- package/es6/modules/eraser/EraserModule.js +34 -0
- package/es6/modules/eraser/EraserToolbar.d.ts +10 -0
- package/es6/modules/eraser/EraserToolbar.js +30 -0
- package/es6/modules/form-fields/CheckBoxWidget.d.ts +9 -0
- package/es6/modules/form-fields/CheckBoxWidget.js +45 -0
- package/es6/modules/form-fields/ComboBoxWidget.d.ts +22 -0
- package/es6/modules/form-fields/ComboBoxWidget.js +152 -0
- package/es6/modules/form-fields/EditFormFieldLayer.d.ts +17 -0
- package/es6/modules/form-fields/EditFormFieldLayer.js +238 -0
- package/es6/modules/form-fields/FormFieldModule.d.ts +15 -0
- package/es6/modules/form-fields/FormFieldModule.js +27 -0
- package/es6/modules/form-fields/ListBoxWidget.d.ts +9 -0
- package/es6/modules/form-fields/ListBoxWidget.js +73 -0
- package/es6/modules/form-fields/RadioButtonWidget.d.ts +9 -0
- package/es6/modules/form-fields/RadioButtonWidget.js +45 -0
- package/es6/modules/form-fields/SelectListWidget.d.ts +9 -0
- package/es6/modules/form-fields/SelectListWidget.js +45 -0
- package/es6/modules/form-fields/TextBoxWidget.d.ts +9 -0
- package/es6/modules/form-fields/TextBoxWidget.js +53 -0
- package/es6/modules/form-fields/WidgetBase.d.ts +23 -0
- package/es6/modules/form-fields/WidgetBase.js +29 -0
- package/es6/modules/freetext-annotation/AddFreetextAnnotationLayer.d.ts +19 -0
- package/es6/modules/freetext-annotation/AddFreetextAnnotationLayer.js +181 -0
- package/es6/modules/freetext-annotation/AddFreetextAnnotationToolbar.d.ts +21 -0
- package/es6/modules/freetext-annotation/AddFreetextAnnotationToolbar.js +37 -0
- package/es6/modules/freetext-annotation/EditFreetextAnnotationLayer.d.ts +20 -0
- package/es6/modules/freetext-annotation/EditFreetextAnnotationLayer.js +211 -0
- package/es6/modules/freetext-annotation/EditFreetextAnnotationToolbar.d.ts +50 -0
- package/es6/modules/freetext-annotation/EditFreetextAnnotationToolbar.js +118 -0
- package/es6/modules/freetext-annotation/FreetextAnnotationModule.d.ts +28 -0
- package/es6/modules/freetext-annotation/FreetextAnnotationModule.js +58 -0
- package/es6/modules/freetext-annotation/RichTextEditor.d.ts +31 -0
- package/es6/modules/freetext-annotation/RichTextEditor.js +223 -0
- package/es6/modules/highlight-annotation/AddHighlightAnnotationLayer.d.ts +31 -0
- package/es6/modules/highlight-annotation/AddHighlightAnnotationLayer.js +289 -0
- package/es6/modules/highlight-annotation/AddHighlightAnnotationToolbar.d.ts +20 -0
- package/es6/modules/highlight-annotation/AddHighlightAnnotationToolbar.js +52 -0
- package/es6/modules/highlight-annotation/EditHighlightAnnotationLayer.d.ts +15 -0
- package/es6/modules/highlight-annotation/EditHighlightAnnotationLayer.js +104 -0
- package/es6/modules/highlight-annotation/EditHighlightAnnotationToolbar.d.ts +15 -0
- package/es6/modules/highlight-annotation/EditHighlightAnnotationToolbar.js +28 -0
- package/es6/modules/highlight-annotation/HighlightAnnotationModule.d.ts +27 -0
- package/es6/modules/highlight-annotation/HighlightAnnotationModule.js +54 -0
- package/es6/modules/image-annotations/ImageAnnotationModule.d.ts +23 -0
- package/es6/modules/image-annotations/ImageAnnotationModule.js +169 -0
- package/es6/modules/index.d.ts +13 -0
- package/es6/modules/index.js +13 -0
- package/es6/modules/ink-annotation/AddInkAnnotationLayer.d.ts +40 -0
- package/es6/modules/ink-annotation/AddInkAnnotationLayer.js +503 -0
- package/es6/modules/ink-annotation/AddInkAnnotationToolbar.d.ts +30 -0
- package/es6/modules/ink-annotation/AddInkAnnotationToolbar.js +53 -0
- package/es6/modules/ink-annotation/EditInkAnnotationLayer.d.ts +20 -0
- package/es6/modules/ink-annotation/EditInkAnnotationLayer.js +137 -0
- package/es6/modules/ink-annotation/EditInkAnnotationToolbar.d.ts +25 -0
- package/es6/modules/ink-annotation/EditInkAnnotationToolbar.js +47 -0
- package/es6/modules/ink-annotation/InkAnnotationModule.d.ts +27 -0
- package/es6/modules/ink-annotation/InkAnnotationModule.js +50 -0
- package/es6/modules/popup/Popup.d.ts +64 -0
- package/es6/modules/popup/Popup.js +360 -0
- package/es6/modules/popup/PopupLayer.d.ts +31 -0
- package/es6/modules/popup/PopupLayer.js +509 -0
- package/es6/modules/popup/PopupModule.d.ts +16 -0
- package/es6/modules/popup/PopupModule.js +25 -0
- package/es6/modules/print-service/PrintServiceDialog.d.ts +30 -0
- package/es6/modules/print-service/PrintServiceDialog.js +134 -0
- package/es6/modules/print-service/PrintServiceLayer.d.ts +24 -0
- package/es6/modules/print-service/PrintServiceLayer.js +310 -0
- package/es6/modules/print-service/PrintServiceModule.d.ts +18 -0
- package/es6/modules/print-service/PrintServiceModule.js +30 -0
- package/es6/modules/shape-annotations/AddShapeAnnotationLayer.d.ts +24 -0
- package/es6/modules/shape-annotations/AddShapeAnnotationLayer.js +210 -0
- package/es6/modules/shape-annotations/AddShapeAnnotationToolbar.d.ts +26 -0
- package/es6/modules/shape-annotations/AddShapeAnnotationToolbar.js +69 -0
- package/es6/modules/shape-annotations/EditShapeAnnotationLayer.d.ts +19 -0
- package/es6/modules/shape-annotations/EditShapeAnnotationLayer.js +148 -0
- package/es6/modules/shape-annotations/EditShapeAnnotationToolbar.d.ts +24 -0
- package/es6/modules/shape-annotations/EditShapeAnnotationToolbar.js +57 -0
- package/es6/modules/shape-annotations/ShapeAnnotationModule.d.ts +28 -0
- package/es6/modules/shape-annotations/ShapeAnnotationModule.js +50 -0
- package/es6/modules/stamp-annotation/AddStampAnnotationLayer.d.ts +19 -0
- package/es6/modules/stamp-annotation/AddStampAnnotationLayer.js +257 -0
- package/es6/modules/stamp-annotation/AddStampAnnotationToolbar.d.ts +17 -0
- package/es6/modules/stamp-annotation/AddStampAnnotationToolbar.js +68 -0
- package/es6/modules/stamp-annotation/StampAnnotationModule.d.ts +20 -0
- package/es6/modules/stamp-annotation/StampAnnotationModule.js +35 -0
- package/es6/modules/text-annotation/AddTextAnnotationLayer.d.ts +14 -0
- package/es6/modules/text-annotation/AddTextAnnotationLayer.js +132 -0
- package/es6/modules/text-annotation/AddTextAnnotationToolbar.d.ts +15 -0
- package/es6/modules/text-annotation/AddTextAnnotationToolbar.js +27 -0
- package/es6/modules/text-annotation/TextAnnotationModule.d.ts +19 -0
- package/es6/modules/text-annotation/TextAnnotationModule.js +34 -0
- package/es6/pdf-viewer-api/ImageContainer.d.ts +10 -0
- package/es6/pdf-viewer-api/ImageContainer.js +43 -0
- package/es6/pdf-viewer-api/PdfViewerApi.d.ts +463 -0
- package/es6/pdf-viewer-api/PdfViewerApi.js +732 -0
- package/es6/pdf-viewer-api/PdfViewingWrapper.d.ts +178 -0
- package/es6/pdf-viewer-api/PdfViewingWrapper.js +2037 -0
- package/es6/pdf-viewer-api/annotationDefaultBehaviors.d.ts +3 -0
- package/es6/pdf-viewer-api/annotationDefaultBehaviors.js +30 -0
- package/es6/pdf-viewer-api/enums.d.ts +100 -0
- package/es6/pdf-viewer-api/enums.js +113 -0
- package/es6/pdf-viewer-api/index.d.ts +3 -0
- package/es6/pdf-viewer-api/index.js +3 -0
- package/es6/pdf-viewer-api/types.d.ts +284 -0
- package/es6/pdf-viewer-api/types.js +6 -0
- package/es6/pdf-viewer-canvas/CanvasEvents.d.ts +76 -0
- package/es6/pdf-viewer-canvas/CanvasEvents.js +345 -0
- package/es6/pdf-viewer-canvas/PdfViewerCanvas.d.ts +175 -0
- package/es6/pdf-viewer-canvas/PdfViewerCanvas.js +1226 -0
- package/es6/pdf-viewer-canvas/state/annotations.d.ts +36 -0
- package/es6/pdf-viewer-canvas/state/annotations.js +157 -0
- package/es6/pdf-viewer-canvas/state/appState.d.ts +10 -0
- package/es6/pdf-viewer-canvas/state/appState.js +60 -0
- package/es6/pdf-viewer-canvas/state/canvas.d.ts +31 -0
- package/es6/pdf-viewer-canvas/state/canvas.js +41 -0
- package/es6/pdf-viewer-canvas/state/document.d.ts +50 -0
- package/es6/pdf-viewer-canvas/state/document.js +99 -0
- package/es6/pdf-viewer-canvas/state/pointer.d.ts +31 -0
- package/es6/pdf-viewer-canvas/state/pointer.js +31 -0
- package/es6/pdf-viewer-canvas/state/scroll.d.ts +22 -0
- package/es6/pdf-viewer-canvas/state/scroll.js +25 -0
- package/es6/pdf-viewer-canvas/state/search.d.ts +36 -0
- package/es6/pdf-viewer-canvas/state/search.js +27 -0
- package/es6/pdf-viewer-canvas/state/store.d.ts +39 -0
- package/es6/pdf-viewer-canvas/state/store.js +52 -0
- package/es6/pdf-viewer-canvas/state/viewer.d.ts +91 -0
- package/es6/pdf-viewer-canvas/state/viewer.js +175 -0
- package/es6/pdf-viewer-canvas/view-layers/AnnotationSelectionLayer.d.ts +28 -0
- package/es6/pdf-viewer-canvas/view-layers/AnnotationSelectionLayer.js +452 -0
- package/es6/pdf-viewer-canvas/view-layers/BusyStateLayer.d.ts +9 -0
- package/es6/pdf-viewer-canvas/view-layers/BusyStateLayer.js +25 -0
- package/es6/pdf-viewer-canvas/view-layers/PdfDocumentLayer.d.ts +10 -0
- package/es6/pdf-viewer-canvas/view-layers/PdfDocumentLayer.js +149 -0
- package/es6/pdf-viewer-canvas/view-layers/ScrollLayer.d.ts +48 -0
- package/es6/pdf-viewer-canvas/view-layers/ScrollLayer.js +308 -0
- package/es6/pdf-viewer-canvas/view-layers/TextSelectionLayer.d.ts +19 -0
- package/es6/pdf-viewer-canvas/view-layers/TextSelectionLayer.js +289 -0
- package/es6/pdf-viewer-canvas/view-layers/ViewLayerBase.d.ts +31 -0
- package/es6/pdf-viewer-canvas/view-layers/ViewLayerBase.js +106 -0
- package/es6/pdf-viewer-canvas/view-layers/canvasShapes.d.ts +11 -0
- package/es6/pdf-viewer-canvas/view-layers/canvasShapes.js +149 -0
- package/es6/pdf-viewer-canvas/view-layers/canvasUtlis.d.ts +3 -0
- package/es6/pdf-viewer-canvas/view-layers/canvasUtlis.js +10 -0
- package/es6/pdf-viewer-canvas/view-layers/views/AnnotationBorder.d.ts +52 -0
- package/es6/pdf-viewer-canvas/view-layers/views/AnnotationBorder.js +377 -0
- package/es6/pdf-viewer-canvas/view-layers/views/AnnotationContextBar.d.ts +47 -0
- package/es6/pdf-viewer-canvas/view-layers/views/AnnotationContextBar.js +102 -0
- package/es6/pdf-viewer-canvas/view-layers/views/TextSelectionContextBar.d.ts +14 -0
- package/es6/pdf-viewer-canvas/view-layers/views/TextSelectionContextBar.js +36 -0
- package/es6/pdf-viewing/PdfViewing.d.ts +4865 -0
- package/es6/pdf-viewing/PdfViewing.js +9611 -0
- package/es6/pdf-web-viewer/PdfWebViewer.d.ts +372 -0
- package/es6/pdf-web-viewer/PdfWebViewer.js +1386 -0
- package/es6/pdf-web-viewer/UserSettings.d.ts +8 -0
- package/es6/pdf-web-viewer/UserSettings.js +40 -0
- package/es6/pdf-web-viewer/WebViewerOptions.d.ts +387 -0
- package/es6/pdf-web-viewer/WebViewerOptions.js +582 -0
- package/es6/pdf-web-viewer/state/index.d.ts +80 -0
- package/es6/pdf-web-viewer/state/index.js +98 -0
- package/es6/pdf-web-viewer/state/layout.d.ts +24 -0
- package/es6/pdf-web-viewer/state/layout.js +21 -0
- package/es6/pdf-web-viewer/state/mobile.d.ts +16 -0
- package/es6/pdf-web-viewer/state/mobile.js +11 -0
- package/es6/pdf-web-viewer/state/navigationPanel.d.ts +61 -0
- package/es6/pdf-web-viewer/state/navigationPanel.js +84 -0
- package/es6/pdf-web-viewer/state/passwordForm.d.ts +18 -0
- package/es6/pdf-web-viewer/state/passwordForm.js +21 -0
- package/es6/pdf-web-viewer/state/pdfDocument.d.ts +31 -0
- package/es6/pdf-web-viewer/state/pdfDocument.js +41 -0
- package/es6/pdf-web-viewer/state/search.d.ts +29 -0
- package/es6/pdf-web-viewer/state/search.js +23 -0
- package/es6/pdf-web-viewer/views/App.d.ts +4 -0
- package/es6/pdf-web-viewer/views/App.js +19 -0
- package/es6/pdf-web-viewer/views/CustomButtons.d.ts +9 -0
- package/es6/pdf-web-viewer/views/CustomButtons.js +18 -0
- package/es6/pdf-web-viewer/views/DropZone.d.ts +9 -0
- package/es6/pdf-web-viewer/views/DropZone.js +53 -0
- package/es6/pdf-web-viewer/views/Layout.d.ts +4 -0
- package/es6/pdf-web-viewer/views/Layout.js +22 -0
- package/es6/pdf-web-viewer/views/annotationbar/Annotationbar.d.ts +4 -0
- package/es6/pdf-web-viewer/views/annotationbar/Annotationbar.js +21 -0
- package/es6/pdf-web-viewer/views/appbar/AddonsToolbar.d.ts +4 -0
- package/es6/pdf-web-viewer/views/appbar/AddonsToolbar.js +35 -0
- package/es6/pdf-web-viewer/views/appbar/AnnotationsMenu.d.ts +4 -0
- package/es6/pdf-web-viewer/views/appbar/AnnotationsMenu.js +22 -0
- package/es6/pdf-web-viewer/views/appbar/AppBar.d.ts +4 -0
- package/es6/pdf-web-viewer/views/appbar/AppBar.js +26 -0
- package/es6/pdf-web-viewer/views/appbar/DocumentBar.d.ts +4 -0
- package/es6/pdf-web-viewer/views/appbar/DocumentBar.js +36 -0
- package/es6/pdf-web-viewer/views/appbar/Menu.d.ts +4 -0
- package/es6/pdf-web-viewer/views/appbar/Menu.js +80 -0
- package/es6/pdf-web-viewer/views/appbar/NavigationBar.d.ts +4 -0
- package/es6/pdf-web-viewer/views/appbar/NavigationBar.js +74 -0
- package/es6/pdf-web-viewer/views/appbar/SearchBar.d.ts +4 -0
- package/es6/pdf-web-viewer/views/appbar/SearchBar.js +83 -0
- package/es6/pdf-web-viewer/views/appbar/SearchOptions.d.ts +10 -0
- package/es6/pdf-web-viewer/views/appbar/SearchOptions.js +55 -0
- package/es6/pdf-web-viewer/views/appbar/ViewBar.d.ts +4 -0
- package/es6/pdf-web-viewer/views/appbar/ViewBar.js +52 -0
- package/es6/pdf-web-viewer/views/appbar/ZoomBar.d.ts +4 -0
- package/es6/pdf-web-viewer/views/appbar/ZoomBar.js +18 -0
- package/es6/pdf-web-viewer/views/modal/ApplicationError.d.ts +4 -0
- package/es6/pdf-web-viewer/views/modal/ApplicationError.js +25 -0
- package/es6/pdf-web-viewer/views/modal/LoadApplication.d.ts +3 -0
- package/es6/pdf-web-viewer/views/modal/LoadApplication.js +6 -0
- package/es6/pdf-web-viewer/views/modal/LoadFile.d.ts +3 -0
- package/es6/pdf-web-viewer/views/modal/LoadFile.js +10 -0
- package/es6/pdf-web-viewer/views/modal/Modal.d.ts +4 -0
- package/es6/pdf-web-viewer/views/modal/Modal.js +39 -0
- package/es6/pdf-web-viewer/views/modal/OpenFile.d.ts +4 -0
- package/es6/pdf-web-viewer/views/modal/OpenFile.js +30 -0
- package/es6/pdf-web-viewer/views/modal/OpenFileError.d.ts +4 -0
- package/es6/pdf-web-viewer/views/modal/OpenFileError.js +13 -0
- package/es6/pdf-web-viewer/views/modal/PasswordForm.d.ts +4 -0
- package/es6/pdf-web-viewer/views/modal/PasswordForm.js +54 -0
- package/es6/pdf-web-viewer/views/modal/SaveFile.d.ts +4 -0
- package/es6/pdf-web-viewer/views/modal/SaveFile.js +10 -0
- package/es6/pdf-web-viewer/views/modal/UnsavedChanges.d.ts +4 -0
- package/es6/pdf-web-viewer/views/modal/UnsavedChanges.js +32 -0
- package/es6/pdf-web-viewer/views/navigation/AnnotationList.d.ts +8 -0
- package/es6/pdf-web-viewer/views/navigation/AnnotationList.js +26 -0
- package/es6/pdf-web-viewer/views/navigation/AnnotationListItem.d.ts +8 -0
- package/es6/pdf-web-viewer/views/navigation/AnnotationListItem.js +158 -0
- package/es6/pdf-web-viewer/views/navigation/AnnotationNavigation.d.ts +4 -0
- package/es6/pdf-web-viewer/views/navigation/AnnotationNavigation.js +11 -0
- package/es6/pdf-web-viewer/views/navigation/NavigationPanel.d.ts +4 -0
- package/es6/pdf-web-viewer/views/navigation/NavigationPanel.js +50 -0
- package/es6/pdf-web-viewer/views/navigation/OutlineList.d.ts +12 -0
- package/es6/pdf-web-viewer/views/navigation/OutlineList.js +19 -0
- package/es6/pdf-web-viewer/views/navigation/OutlineNavigation.d.ts +4 -0
- package/es6/pdf-web-viewer/views/navigation/OutlineNavigation.js +10 -0
- package/es6/pdf-web-viewer/views/navigation/ThumbnailNavigation.d.ts +16 -0
- package/es6/pdf-web-viewer/views/navigation/ThumbnailNavigation.js +32 -0
- package/package.json +24 -0
- package/pdfwebviewer/PdfViewing.data +0 -0
- package/pdfwebviewer/PdfViewing_Main.js +1 -0
- package/pdfwebviewer/PdfViewing_Main.wasm +0 -0
- package/pdfwebviewer/PdfViewing_Worker.js +1 -0
- package/pdfwebviewer/PdfViewing_Worker.wasm +0 -0
- package/pdfwebviewer/pdf-web-viewer.css +2407 -0
- package/pdfwebviewer/pdf-web-viewer.development.js +25955 -0
- package/pdfwebviewer/pdf-web-viewer.min.js +1 -0
- package/pdfwebviewer/translations.de.json +151 -0
- package/pdfwebviewer/translations.en.json +151 -0
- package/pdfwebviewer/translations.fr.json +151 -0
- package/pdfwebviewer/translations.it.json +151 -0
- package/scss/common/_breakpoints.scss +44 -0
- package/scss/common/_buttons.scss +42 -0
- package/scss/common/_colorpicker.scss +89 -0
- package/scss/common/_common.scss +21 -0
- package/scss/common/_contextbar.scss +44 -0
- package/scss/common/_dropdown.scss +176 -0
- package/scss/common/_icon.scss +9 -0
- package/scss/common/_index.scss +19 -0
- package/scss/common/_loader.scss +30 -0
- package/scss/common/_rangeslider.scss +24 -0
- package/scss/common/_scrollbars.scss +64 -0
- package/scss/common/_stroke-style-picker.scss +64 -0
- package/scss/common/_stroke-width-picker.scss +23 -0
- package/scss/common/_toolbar.scss +117 -0
- package/scss/common/_tooltip.scss +39 -0
- package/scss/modules/_eraser.scss +28 -0
- package/scss/modules/_forms.scss +56 -0
- package/scss/modules/_highlightannotation.scss +12 -0
- package/scss/modules/_index.scss +5 -0
- package/scss/modules/_inkannotation.scss +41 -0
- package/scss/modules/_stampannotation.scss +19 -0
- package/scss/pdf-viewer-canvas/_annotationborder.scss +107 -0
- package/scss/pdf-viewer-canvas/_busy-loader.scss +53 -0
- package/scss/pdf-viewer-canvas/_freetexteditor.scss +28 -0
- package/scss/pdf-viewer-canvas/_index.scss +7 -0
- package/scss/pdf-viewer-canvas/_layout.scss +52 -0
- package/scss/pdf-viewer-canvas/_popup.scss +217 -0
- package/scss/pdf-viewer-canvas/_printservice.scss +171 -0
- package/scss/pdf-viewer-canvas/_textselection.scss +17 -0
- package/scss/pdf-web-viewer/_annotationbar.scss +47 -0
- package/scss/pdf-web-viewer/_index.scss +8 -0
- package/scss/pdf-web-viewer/_layout.scss +63 -0
- package/scss/pdf-web-viewer/_modal.scss +186 -0
- package/scss/pdf-web-viewer/_navigationpanel.scss +398 -0
- package/scss/pdf-web-viewer/_searchbar.scss +47 -0
- package/scss/pdf-web-viewer/_toolbar.scss +134 -0
- package/scss/pdf-web-viewer/_viewer.scss +54 -0
- package/scss/pdf-web-viewer.scss +1 -0
- package/scss/themes/default/_light.scss +32 -0
- package/scss/themes/default/_mixins.scss +129 -0
- package/scss/themes/default/_theme.scss +161 -0
- package/scss/themes/pdf-web-viewer.scss +1 -0
- package/umd/pdf-web-viewer.development.js +25955 -0
- package/umd/pdf-web-viewer.development.js.map +1 -0
- package/umd/pdf-web-viewer.min.js +1 -0
- package/wasm/PdfViewing.data +0 -0
- package/wasm/PdfViewing_Main.js +1 -0
- package/wasm/PdfViewing_Main.wasm +0 -0
- package/wasm/PdfViewing_Worker.js +1 -0
- package/wasm/PdfViewing_Worker.wasm +0 -0
- package/wasm/translations.de.json +151 -0
- package/wasm/translations.en.json +151 -0
- package/wasm/translations.fr.json +151 -0
- package/wasm/translations.it.json +151 -0
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
$border-width: 0;
|
|
4
|
+
$padding: 5px;
|
|
5
|
+
|
|
6
|
+
.pwv-popup {
|
|
7
|
+
position: absolute;
|
|
8
|
+
background-color: $popup__BackgroundColor;
|
|
9
|
+
box-shadow: $popup__DropShadow;
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
border: solid $border-width transparent;
|
|
12
|
+
z-index: 10;
|
|
13
|
+
opacity: 0.75;
|
|
14
|
+
&:hover {
|
|
15
|
+
opacity: 0.85;
|
|
16
|
+
}
|
|
17
|
+
&.pwv-popup-selected {
|
|
18
|
+
opacity: 1;
|
|
19
|
+
z-index: 12;
|
|
20
|
+
}
|
|
21
|
+
.pwv-mobile-popup & {
|
|
22
|
+
top: 0;
|
|
23
|
+
left: 0;
|
|
24
|
+
bottom: 0;
|
|
25
|
+
right: 0;
|
|
26
|
+
opacity: 1 !important;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.pwv-popup-header {
|
|
31
|
+
.pwv-Toolbar {
|
|
32
|
+
margin: $padding;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.pwv-popup-header-info {
|
|
37
|
+
position: absolute;
|
|
38
|
+
box-sizing: border-box;
|
|
39
|
+
left: -$border-width;
|
|
40
|
+
right: -$border-width;
|
|
41
|
+
bottom: -$border-width;
|
|
42
|
+
height: 25px;
|
|
43
|
+
padding: 4px 25px 0 0.3rem;
|
|
44
|
+
display: flex;
|
|
45
|
+
justify-content: space-between;
|
|
46
|
+
font-size: 0.8rem;
|
|
47
|
+
font-weight: 400;
|
|
48
|
+
}
|
|
49
|
+
.pwv-popup-header-modified {
|
|
50
|
+
margin-right: 5px;
|
|
51
|
+
}
|
|
52
|
+
.pwv-popup-toolbar {
|
|
53
|
+
background: $popup__BackgroundColor;
|
|
54
|
+
position: absolute;
|
|
55
|
+
top: $padding;
|
|
56
|
+
left: $padding;
|
|
57
|
+
right: $padding;
|
|
58
|
+
height: 40px;
|
|
59
|
+
display: flex;
|
|
60
|
+
justify-content: space-between;
|
|
61
|
+
box-sizing: border-box;
|
|
62
|
+
z-index: 2;
|
|
63
|
+
|
|
64
|
+
.pwv-commandbar-item {
|
|
65
|
+
width: 50px;
|
|
66
|
+
height: 40px !important;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
.pwv-popup-subject {
|
|
70
|
+
position: absolute;
|
|
71
|
+
top: $toolbarItem__height + $padding + 3px;
|
|
72
|
+
left: $padding;
|
|
73
|
+
right: $padding;
|
|
74
|
+
height: 35px;
|
|
75
|
+
z-index: 1;
|
|
76
|
+
input {
|
|
77
|
+
color: $popup__FormFieldTextColor;
|
|
78
|
+
background: $popup__FormFieldBackgroundColor;
|
|
79
|
+
border: $popup__FormFieldBorder;
|
|
80
|
+
padding: 0.3rem;
|
|
81
|
+
box-sizing: border-box;
|
|
82
|
+
font-size: 0.9rem !important;
|
|
83
|
+
width: 100%;
|
|
84
|
+
height: 100%;
|
|
85
|
+
}
|
|
86
|
+
div {
|
|
87
|
+
display: flex;
|
|
88
|
+
align-items: center;
|
|
89
|
+
color: $popup__FormFieldTextColor;
|
|
90
|
+
background-color: $popup__FormFieldBackgroundColor;
|
|
91
|
+
user-select: text;
|
|
92
|
+
border: none;
|
|
93
|
+
font-size: 0.9rem !important;
|
|
94
|
+
padding: 0.3rem;
|
|
95
|
+
box-sizing: border-box;
|
|
96
|
+
height: 100%;
|
|
97
|
+
user-select: text;
|
|
98
|
+
overflow: auto;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
.pwv-popup-content {
|
|
102
|
+
position: absolute;
|
|
103
|
+
top: $toolbarItem__height + 41px + $padding;
|
|
104
|
+
left: $padding;
|
|
105
|
+
right: $padding;
|
|
106
|
+
bottom: 20px + $padding;
|
|
107
|
+
z-index: 1;
|
|
108
|
+
textarea {
|
|
109
|
+
color: $popup__FormFieldTextColor;
|
|
110
|
+
background: $popup__FormFieldBackgroundColor;
|
|
111
|
+
border: $popup__FormFieldBorder;
|
|
112
|
+
padding: 0.3rem;
|
|
113
|
+
box-sizing: border-box;
|
|
114
|
+
resize: none;
|
|
115
|
+
font-size: 0.9rem !important;
|
|
116
|
+
width: 100%;
|
|
117
|
+
height: 100%;
|
|
118
|
+
}
|
|
119
|
+
div {
|
|
120
|
+
color: $popup__FormFieldTextColor;
|
|
121
|
+
background-color: $popup__FormFieldBackgroundColor;
|
|
122
|
+
user-select: text;
|
|
123
|
+
border: none;
|
|
124
|
+
padding: 0.3rem;
|
|
125
|
+
box-sizing: border-box;
|
|
126
|
+
font-size: 0.9rem !important;
|
|
127
|
+
height: 100%;
|
|
128
|
+
user-select: text;
|
|
129
|
+
overflow: auto;
|
|
130
|
+
white-space: pre-wrap;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
.pwv-popup-content-no-subject {
|
|
134
|
+
top: 50px + $padding;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.pwv-popup-draghandle {
|
|
138
|
+
position: absolute;
|
|
139
|
+
top: 5px;
|
|
140
|
+
right: 55px;
|
|
141
|
+
left: 150px;
|
|
142
|
+
height: 40px;
|
|
143
|
+
z-index: 5;
|
|
144
|
+
cursor: move;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.pwv-popup-resizer {
|
|
148
|
+
position: absolute;
|
|
149
|
+
bottom: -$border-width;
|
|
150
|
+
right: -$border-width;
|
|
151
|
+
width: 22px;
|
|
152
|
+
height: 22px;
|
|
153
|
+
cursor: se-resize;
|
|
154
|
+
z-index: 5;
|
|
155
|
+
&::before,
|
|
156
|
+
&::after {
|
|
157
|
+
position: absolute;
|
|
158
|
+
border-top: solid 2px var(--pwv-text-muted-color);
|
|
159
|
+
content: '';
|
|
160
|
+
box-sizing: border-box;
|
|
161
|
+
transform: rotate(-45deg);
|
|
162
|
+
}
|
|
163
|
+
&::before {
|
|
164
|
+
top: 8px;
|
|
165
|
+
left: 8px;
|
|
166
|
+
width: 12px;
|
|
167
|
+
height: 12px;
|
|
168
|
+
}
|
|
169
|
+
&::after {
|
|
170
|
+
top: 12px;
|
|
171
|
+
left: 12px;
|
|
172
|
+
width: 6px;
|
|
173
|
+
height: 6px;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.pwv-popup-view-only {
|
|
178
|
+
.pwv-Toolbar {
|
|
179
|
+
background: transparent;
|
|
180
|
+
|
|
181
|
+
.pwv-ToolbarButton {
|
|
182
|
+
width: 40px !important;
|
|
183
|
+
height: 34px !important;
|
|
184
|
+
margin-top: -4px;
|
|
185
|
+
margin-right: -4px;
|
|
186
|
+
color: inherit;
|
|
187
|
+
background: transparent;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
.pwv-popup-draghandle {
|
|
191
|
+
left: 2px;
|
|
192
|
+
top: 2px;
|
|
193
|
+
height: 34px;
|
|
194
|
+
}
|
|
195
|
+
.pwv-popup-view-only-content {
|
|
196
|
+
position: absolute;
|
|
197
|
+
top: 34px;
|
|
198
|
+
bottom: 24px;
|
|
199
|
+
left: 0;
|
|
200
|
+
right: 0;
|
|
201
|
+
padding: 4px 10px;
|
|
202
|
+
display: flex;
|
|
203
|
+
flex-direction: column;
|
|
204
|
+
overflow: auto;
|
|
205
|
+
user-select: text;
|
|
206
|
+
background-color: rgba(255, 255, 255, 0.15);
|
|
207
|
+
h4 {
|
|
208
|
+
margin: 0 0 4px 0;
|
|
209
|
+
}
|
|
210
|
+
div {
|
|
211
|
+
font-weight: 400;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
.pwv-popup-header-info {
|
|
215
|
+
padding-left: 10px;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
$width: 300px;
|
|
4
|
+
$width2: 150px;
|
|
5
|
+
$height: 240px;
|
|
6
|
+
$height2: 120px;
|
|
7
|
+
$border-width: 0;
|
|
8
|
+
$padding: 5px;
|
|
9
|
+
|
|
10
|
+
.pwv-print-dialog {
|
|
11
|
+
display: inline-block;
|
|
12
|
+
box-sizing: border-box;
|
|
13
|
+
position: absolute;
|
|
14
|
+
width: $width;
|
|
15
|
+
height: $height;
|
|
16
|
+
margin-left: -$width2;
|
|
17
|
+
margin-top: -$height2;
|
|
18
|
+
top: 50%;
|
|
19
|
+
left: 50%;
|
|
20
|
+
border-radius: 10px;
|
|
21
|
+
// border: 1px #55555566 solid;
|
|
22
|
+
background-color: #ffffff;
|
|
23
|
+
box-shadow: var(--pwv-drop-shadow-3);
|
|
24
|
+
|
|
25
|
+
input[type='radio'] {
|
|
26
|
+
display: none;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.pwv-print-radio {
|
|
30
|
+
// background: gray;
|
|
31
|
+
display: inline-block;
|
|
32
|
+
width: 12px;
|
|
33
|
+
height: 12px;
|
|
34
|
+
border-radius: 100%;
|
|
35
|
+
border: 1px #008bd2 solid;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
input[type='radio']:checked+.pwv-print-radio {
|
|
39
|
+
background: #008bd2;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
label>span {
|
|
43
|
+
margin-right: 10px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.pwv-checkbox-btn {
|
|
47
|
+
border: none;
|
|
48
|
+
background-color: transparent;
|
|
49
|
+
display: flex;
|
|
50
|
+
align-items: center;
|
|
51
|
+
box-sizing: border-box;
|
|
52
|
+
flex-wrap: nowrap;
|
|
53
|
+
width: 100%;
|
|
54
|
+
height: 12px;
|
|
55
|
+
font-size: 1em;
|
|
56
|
+
white-space: nowrap;
|
|
57
|
+
|
|
58
|
+
.pwv-icon {
|
|
59
|
+
display: block;
|
|
60
|
+
height: 18px;
|
|
61
|
+
margin-right: 6px;
|
|
62
|
+
|
|
63
|
+
svg {
|
|
64
|
+
height: 18px;
|
|
65
|
+
fill: $toolbarItem__SelectedTextColor;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.pwv-print-option {
|
|
72
|
+
display: flex;
|
|
73
|
+
align-items: center;
|
|
74
|
+
justify-content: space-between;
|
|
75
|
+
height: 28px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.pwv-print-invalid-range-text-container {
|
|
79
|
+
min-height: 16px;
|
|
80
|
+
|
|
81
|
+
.pwv-print-invalid-range-text {
|
|
82
|
+
text-align: right;
|
|
83
|
+
color: #ff0000;
|
|
84
|
+
font-size: 8pt;
|
|
85
|
+
display: none;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.pwv-print-title {
|
|
90
|
+
font-size: large;
|
|
91
|
+
font-weight: bold;
|
|
92
|
+
display: flex;
|
|
93
|
+
margin-bottom: 10px;
|
|
94
|
+
|
|
95
|
+
span {
|
|
96
|
+
padding-right: 10px;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.pwv-print-body {
|
|
101
|
+
position: absolute;
|
|
102
|
+
box-sizing: border-box;
|
|
103
|
+
height: 100%;
|
|
104
|
+
width: 100%;
|
|
105
|
+
padding: 15px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.pwv-print-bottom {
|
|
109
|
+
display: flex;
|
|
110
|
+
align-items: center;
|
|
111
|
+
justify-content: flex-end;
|
|
112
|
+
position: absolute;
|
|
113
|
+
bottom: 15px;
|
|
114
|
+
left: 15px;
|
|
115
|
+
right: 15px;
|
|
116
|
+
|
|
117
|
+
&-center {
|
|
118
|
+
justify-content: center;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.pwv-print-button-print {
|
|
123
|
+
width: 100px;
|
|
124
|
+
height: 30px;
|
|
125
|
+
background-color: #008bd2;
|
|
126
|
+
color: white;
|
|
127
|
+
border: none;
|
|
128
|
+
margin-left: 15px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.pwv-print-button-cancel {
|
|
132
|
+
width: 100px;
|
|
133
|
+
height: 30px;
|
|
134
|
+
border: solid 1px #008bd2;
|
|
135
|
+
background-color: #ffffff;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.pwv-print-icon {
|
|
139
|
+
display: block;
|
|
140
|
+
height: 18px;
|
|
141
|
+
|
|
142
|
+
svg {
|
|
143
|
+
height: 18px;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.pwv-print-page-range {
|
|
148
|
+
// margin-left: 20px;
|
|
149
|
+
// width: 190px;
|
|
150
|
+
// position: absolute;
|
|
151
|
+
// right: 15px;
|
|
152
|
+
max-width: 140px;
|
|
153
|
+
border: 1px #008bd2 solid;
|
|
154
|
+
|
|
155
|
+
&.pwv-print-invalid-input {
|
|
156
|
+
background: #ff6c7875;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.pwv-print-page-range::placeholder {
|
|
161
|
+
font-style: italic;
|
|
162
|
+
color: #999999;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
body[data-pdfwebviewerprinting] #outerContainer {
|
|
166
|
+
display: none;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
body[data-pdfwebviewerprinting] #printContainer {
|
|
170
|
+
display: block;
|
|
171
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
$toolbarWidth: $toolbarItem__Margin * 2 + $toolbarItem__height;
|
|
2
|
+
.pwv-annotationbar {
|
|
3
|
+
display: flex;
|
|
4
|
+
align-content: flex-start;
|
|
5
|
+
flex-grow: 0;
|
|
6
|
+
@include toolbar;
|
|
7
|
+
|
|
8
|
+
.pwv-annotationbar-left & {
|
|
9
|
+
order: -1;
|
|
10
|
+
margin-right: 2px;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
width: $toolbarWidth;
|
|
13
|
+
padding-top: 10px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.pwv-annotationbar-right & {
|
|
17
|
+
margin-left: 2px;
|
|
18
|
+
flex-direction: column;
|
|
19
|
+
width: $toolbarWidth;
|
|
20
|
+
padding-top: 10px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.pwv-annotationbar-top & {
|
|
24
|
+
margin-bottom: 2px;
|
|
25
|
+
height: $toolbarWidth;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.pwv-annotationbar-bottom & {
|
|
29
|
+
order: -1;
|
|
30
|
+
margin-top: 2px;
|
|
31
|
+
height: $toolbarWidth;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.pwv-devicetype-mobile {
|
|
36
|
+
.pwv-annotationbar {
|
|
37
|
+
flex-wrap: wrap;
|
|
38
|
+
padding-right: 50px;
|
|
39
|
+
height: auto !important;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.pwv-mobile-hide-annotationbar {
|
|
44
|
+
.pwv-annotationbar {
|
|
45
|
+
display: none;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
.pwv-WebViewer {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
position: absolute;
|
|
5
|
+
top: 0;
|
|
6
|
+
left: 0;
|
|
7
|
+
right: 0;
|
|
8
|
+
bottom: 0;
|
|
9
|
+
overflow: hidden;
|
|
10
|
+
font-size: $viewer__FontSize;
|
|
11
|
+
font-family: $viewer__FontFamily;
|
|
12
|
+
background-color: $viewer__BackgroundColor;
|
|
13
|
+
|
|
14
|
+
> * {
|
|
15
|
+
-webkit-user-select: none;
|
|
16
|
+
-moz-user-select: none;
|
|
17
|
+
-ms-user-select: none;
|
|
18
|
+
user-select: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
input,
|
|
22
|
+
select,
|
|
23
|
+
textarea,
|
|
24
|
+
button {
|
|
25
|
+
font-family: $viewer__FontFamily;
|
|
26
|
+
font-size: $viewer__FontSize;
|
|
27
|
+
&:focus {
|
|
28
|
+
outline: none;
|
|
29
|
+
}
|
|
30
|
+
touch-action: manipulation;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.pwv-Viewer {
|
|
35
|
+
display: flex;
|
|
36
|
+
flex-direction: column;
|
|
37
|
+
flex-grow: 1;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.pwv-ViewerContent {
|
|
41
|
+
display: flex;
|
|
42
|
+
height: 100%;
|
|
43
|
+
z-index: 1;
|
|
44
|
+
position: relative;
|
|
45
|
+
flex-grow: 1;
|
|
46
|
+
|
|
47
|
+
.pwv-WebViewer--sm & {
|
|
48
|
+
flex-direction: column;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.pwv-document-view {
|
|
53
|
+
position: relative;
|
|
54
|
+
display: flex;
|
|
55
|
+
flex-grow: 1;
|
|
56
|
+
|
|
57
|
+
&.pwv-annotationbar-top {
|
|
58
|
+
flex-direction: column-reverse;
|
|
59
|
+
}
|
|
60
|
+
&.pwv-annotationbar-bottom {
|
|
61
|
+
flex-direction: column;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
.pwv-modal {
|
|
2
|
+
position: absolute;
|
|
3
|
+
top: 0;
|
|
4
|
+
left: 0;
|
|
5
|
+
right: 0;
|
|
6
|
+
bottom: 0;
|
|
7
|
+
z-index: 100;
|
|
8
|
+
background-color: $modal__BackgroundColor;
|
|
9
|
+
display: flex;
|
|
10
|
+
justify-content: center;
|
|
11
|
+
align-items: center;
|
|
12
|
+
|
|
13
|
+
&--loadApplication,
|
|
14
|
+
&--loadFile,
|
|
15
|
+
&--saveFile {
|
|
16
|
+
background-color: transparent;
|
|
17
|
+
.pwv-modal-dialog {
|
|
18
|
+
background-color: transparent;
|
|
19
|
+
border: none;
|
|
20
|
+
h2 {
|
|
21
|
+
display: none;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&::before {
|
|
26
|
+
content: ' ';
|
|
27
|
+
position: absolute;
|
|
28
|
+
inset: 0;
|
|
29
|
+
background-color: $viewer__BackgroundColor;
|
|
30
|
+
opacity: 0.5;
|
|
31
|
+
z-index: 1;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.pwv-Viewer--loadFile,
|
|
37
|
+
.pwv-Viewer--saveFile {
|
|
38
|
+
button,
|
|
39
|
+
input,
|
|
40
|
+
.pwv-ToolbarButton,
|
|
41
|
+
.pwv-ToolbarItem,
|
|
42
|
+
.pwv-NavigationPanel__Content > div {
|
|
43
|
+
opacity: 0.5;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.pwv-modal-dialog {
|
|
48
|
+
display: flex;
|
|
49
|
+
flex-direction: column;
|
|
50
|
+
text-align: left;
|
|
51
|
+
z-index: 2;
|
|
52
|
+
color: $dialog__TextColor;
|
|
53
|
+
border: $dialog__Border;
|
|
54
|
+
border-radius: $dialog__BorderRadius;
|
|
55
|
+
background-color: $dialog__BackgroundColor;
|
|
56
|
+
|
|
57
|
+
.pwv-openfile & {
|
|
58
|
+
.pwv-dropzone-dragover & {
|
|
59
|
+
transition: border-color 0.3s;
|
|
60
|
+
border: $dialog__DragOverBorder;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.pwv-WebViewer--sm & {
|
|
65
|
+
width: 100%;
|
|
66
|
+
margin: 20px;
|
|
67
|
+
}
|
|
68
|
+
.pwv-WebViewer--md & {
|
|
69
|
+
width: 600px;
|
|
70
|
+
}
|
|
71
|
+
.pwv-WebViewer--lg & {
|
|
72
|
+
width: 760px;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.pwv-modal-header {
|
|
77
|
+
padding: 0.25rem 1rem;
|
|
78
|
+
display: flex;
|
|
79
|
+
justify-content: center;
|
|
80
|
+
align-items: center;
|
|
81
|
+
align-content: center;
|
|
82
|
+
|
|
83
|
+
h2 {
|
|
84
|
+
display: none;
|
|
85
|
+
padding: 0;
|
|
86
|
+
margin: 0;
|
|
87
|
+
text-transform: uppercase;
|
|
88
|
+
font-size: 2.2rem;
|
|
89
|
+
font-weight: 200;
|
|
90
|
+
opacity: 1;
|
|
91
|
+
}
|
|
92
|
+
.pwv-icon {
|
|
93
|
+
padding-top: 2rem;
|
|
94
|
+
svg {
|
|
95
|
+
height: 70px;
|
|
96
|
+
fill: $dialog__TextColor;
|
|
97
|
+
opacity: 0.75;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.pwv-modal-body {
|
|
103
|
+
text-align: center;
|
|
104
|
+
padding: 2rem;
|
|
105
|
+
|
|
106
|
+
.pwv-WebViewer--sm & {
|
|
107
|
+
padding: 1rem;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.pwv-modal-message {
|
|
111
|
+
font-size: 1.25em;
|
|
112
|
+
margin: 0 0 2rem 0;
|
|
113
|
+
p {
|
|
114
|
+
margin: 0 0 0.25em 0;
|
|
115
|
+
padding: 0;
|
|
116
|
+
}
|
|
117
|
+
h2 {
|
|
118
|
+
text-transform: uppercase;
|
|
119
|
+
font-size: 2em;
|
|
120
|
+
font-weight: 200;
|
|
121
|
+
opacity: 0.75;
|
|
122
|
+
margin: 0;
|
|
123
|
+
padding: 0;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.pwv-form-row {
|
|
128
|
+
padding: 0 0 1rem 0;
|
|
129
|
+
display: flex;
|
|
130
|
+
flex-direction: column;
|
|
131
|
+
align-items: center;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.pwv-form-field {
|
|
135
|
+
background-color: $dialog__FormFieldBackgroundColor;
|
|
136
|
+
position: relative;
|
|
137
|
+
width: 60%;
|
|
138
|
+
|
|
139
|
+
.pwv-WebViewer--sm & {
|
|
140
|
+
width: calc(100% - 1rem);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.pwv-input {
|
|
144
|
+
position: relative;
|
|
145
|
+
background-color: transparent;
|
|
146
|
+
border: none;
|
|
147
|
+
box-sizing: border-box;
|
|
148
|
+
width: 100%;
|
|
149
|
+
height: 2.2rem;
|
|
150
|
+
line-height: 2rem;
|
|
151
|
+
padding: 0 0.5rem;
|
|
152
|
+
text-align: center;
|
|
153
|
+
z-index: 2;
|
|
154
|
+
color: $dialog__FormFieldTextColor;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.pwv-form-error {
|
|
158
|
+
display: flex;
|
|
159
|
+
background-color: $dialog__FormFieldErrorBackgroundColor;
|
|
160
|
+
height: 2.2rem;
|
|
161
|
+
justify-content: center;
|
|
162
|
+
align-items: center;
|
|
163
|
+
color: $dialog__FormFieldErrorColor;
|
|
164
|
+
.pwv-icon {
|
|
165
|
+
margin-right: 0.5rem;
|
|
166
|
+
svg {
|
|
167
|
+
height: 1rem;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
&.pwv-form-has-error {
|
|
173
|
+
.pwv-form-error {
|
|
174
|
+
display: flex;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.pwv-modal-body-noborder {
|
|
181
|
+
height: 100%;
|
|
182
|
+
width: 100%;
|
|
183
|
+
display: flex;
|
|
184
|
+
align-items: center;
|
|
185
|
+
justify-content: center;
|
|
186
|
+
}
|