@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,42 @@
|
|
|
1
|
+
.pwv-btn {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
@include button;
|
|
6
|
+
|
|
7
|
+
.pwv-WebViewer--sm & {
|
|
8
|
+
margin: 0.5rem;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&:not(:disabled) {
|
|
12
|
+
&:hover {
|
|
13
|
+
@include button__Hover;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&:focus {
|
|
17
|
+
@include button__Focus;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&:active {
|
|
21
|
+
@include button__Active;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&:disabled {
|
|
26
|
+
@include button__Disabled;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.pwv-btn-primary {
|
|
30
|
+
@include buttonPrimary;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.pwv-btn-row {
|
|
35
|
+
display: flex;
|
|
36
|
+
justify-content: center;
|
|
37
|
+
margin-top: 1rem;
|
|
38
|
+
|
|
39
|
+
.pwv-WebViewer--sm & {
|
|
40
|
+
flex-direction: column;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
.pwv-ColorPicker {
|
|
2
|
+
> button {
|
|
3
|
+
padding: 0;
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
justify-content: center;
|
|
6
|
+
.pwv-icon {
|
|
7
|
+
display: block;
|
|
8
|
+
height: 18px;
|
|
9
|
+
svg {
|
|
10
|
+
height: 15px;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
.pwv-ColorPicker__selectedColor {
|
|
14
|
+
height: 5px;
|
|
15
|
+
width: 20px;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.pwv-DropdownPanel {
|
|
20
|
+
left: 0;
|
|
21
|
+
right: auto;
|
|
22
|
+
width: 120px;
|
|
23
|
+
&.pwv-DropdownPanel-wide {
|
|
24
|
+
width: 160px;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.pwv-ColorPicker--buttons {
|
|
30
|
+
padding-left: 8px;
|
|
31
|
+
padding-right: 8px;
|
|
32
|
+
.pwv-ColorPicker__Button {
|
|
33
|
+
margin: 3px;
|
|
34
|
+
width: 28px;
|
|
35
|
+
height: 28px;
|
|
36
|
+
border-radius: 50%;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.pwv-ColorPicker__Button {
|
|
41
|
+
position: relative;
|
|
42
|
+
margin: 6px;
|
|
43
|
+
border: solid 2px transparent;
|
|
44
|
+
border-radius: 50%;
|
|
45
|
+
padding: 0;
|
|
46
|
+
width: 28px;
|
|
47
|
+
height: 28px;
|
|
48
|
+
box-sizing: border-box;
|
|
49
|
+
overflow: hidden;
|
|
50
|
+
&::before {
|
|
51
|
+
content: '';
|
|
52
|
+
position: absolute;
|
|
53
|
+
top: -1px;
|
|
54
|
+
left: 0;
|
|
55
|
+
width: 40px;
|
|
56
|
+
border: 1px solid var(--pwv-text-muted-color);
|
|
57
|
+
transform: rotate(45deg);
|
|
58
|
+
transform-origin: top left;
|
|
59
|
+
z-index: 1;
|
|
60
|
+
}
|
|
61
|
+
&::after {
|
|
62
|
+
content: '';
|
|
63
|
+
position: absolute;
|
|
64
|
+
top: -1px;
|
|
65
|
+
right: 0;
|
|
66
|
+
width: 40px;
|
|
67
|
+
border: 1px solid var(--pwv-text-muted-color);
|
|
68
|
+
transform: rotate(-45deg);
|
|
69
|
+
transform-origin: top right;
|
|
70
|
+
z-index: 1;
|
|
71
|
+
}
|
|
72
|
+
&:hover {
|
|
73
|
+
border-color: var(--pwv-text-muted-color);
|
|
74
|
+
}
|
|
75
|
+
&:active {
|
|
76
|
+
border-color: var(--pwv-text-muted-color);
|
|
77
|
+
}
|
|
78
|
+
&.pwv-selected {
|
|
79
|
+
border-color: var(--pwv-text-color);
|
|
80
|
+
}
|
|
81
|
+
div {
|
|
82
|
+
z-index: 10;
|
|
83
|
+
position: absolute;
|
|
84
|
+
top: 0;
|
|
85
|
+
left: 0;
|
|
86
|
+
bottom: 0;
|
|
87
|
+
right: 0;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
.pwv-disabled {
|
|
2
|
+
opacity: 0.4;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.pwv-SmHidden {
|
|
6
|
+
.pwv-WebViewer--sm & {
|
|
7
|
+
display: none !important;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.pwv-MdHidden {
|
|
12
|
+
.pwv-WebViewer--md & {
|
|
13
|
+
display: none !important;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.pwv-LgHidden {
|
|
18
|
+
.pwv-WebViewer--lg & {
|
|
19
|
+
display: none !important;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
.pwv-contextbar {
|
|
4
|
+
cursor: default;
|
|
5
|
+
z-index: 10;
|
|
6
|
+
padding: 0;
|
|
7
|
+
box-shadow: var(--pwv-drop-shadow-2);
|
|
8
|
+
// background-color: $toolbar__BackgroundColor;
|
|
9
|
+
|
|
10
|
+
.pwv-Toolbar {
|
|
11
|
+
position: relative;
|
|
12
|
+
z-index: 2;
|
|
13
|
+
min-height: $toolbarItem__height * 0.9;
|
|
14
|
+
}
|
|
15
|
+
.pwv-ToolbarButton,
|
|
16
|
+
.pwv-ToolbarItem {
|
|
17
|
+
min-height: $toolbarItem__height * 0.9;
|
|
18
|
+
> button {
|
|
19
|
+
min-height: $toolbarItem__height * 0.9;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
&:after {
|
|
24
|
+
content: '';
|
|
25
|
+
position: absolute;
|
|
26
|
+
left: 50%;
|
|
27
|
+
transform: translateX(-8px) rotate(45deg);
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
width: 16px;
|
|
30
|
+
height: 16px;
|
|
31
|
+
box-shadow: var(--pwv-drop-shadow-2);
|
|
32
|
+
background-color: $toolbar__BackgroundColor;
|
|
33
|
+
z-index: 1;
|
|
34
|
+
display: none;
|
|
35
|
+
.pwv-contextbar-bottom & {
|
|
36
|
+
top: -8px;
|
|
37
|
+
display: block;
|
|
38
|
+
}
|
|
39
|
+
.pwv-contextbar-top & {
|
|
40
|
+
bottom: -8px;
|
|
41
|
+
display: block;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
.pwv-Dropdown {
|
|
4
|
+
cursor: default;
|
|
5
|
+
position: relative;
|
|
6
|
+
> button {
|
|
7
|
+
margin: 0;
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
border: none;
|
|
11
|
+
background-color: transparent;
|
|
12
|
+
font-size: 1em;
|
|
13
|
+
height: 100%;
|
|
14
|
+
width: 100%;
|
|
15
|
+
color: inherit;
|
|
16
|
+
|
|
17
|
+
@include toolbarItem;
|
|
18
|
+
padding: 0 5px;
|
|
19
|
+
|
|
20
|
+
&:focus {
|
|
21
|
+
outline: none;
|
|
22
|
+
}
|
|
23
|
+
&:enabled {
|
|
24
|
+
&:hover {
|
|
25
|
+
@include toolbarItem__Hover;
|
|
26
|
+
}
|
|
27
|
+
&:active {
|
|
28
|
+
@include toolbarItem__Active;
|
|
29
|
+
}
|
|
30
|
+
&:focus {
|
|
31
|
+
@include toolbarItem__Focus;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
.pwv-Dropdown-text {
|
|
35
|
+
display: block;
|
|
36
|
+
white-space: nowrap;
|
|
37
|
+
overflow: hidden;
|
|
38
|
+
text-overflow: ellipsis;
|
|
39
|
+
padding: 0 4px 0 14px;
|
|
40
|
+
.pwv-icon {
|
|
41
|
+
width: 18px;
|
|
42
|
+
svg {
|
|
43
|
+
height: 18px;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
.pwv-Dropdown-caret {
|
|
48
|
+
padding-left: 8px;
|
|
49
|
+
display: inline-block;
|
|
50
|
+
.pwv-icon {
|
|
51
|
+
width: 1.2rem;
|
|
52
|
+
text-align: right;
|
|
53
|
+
svg {
|
|
54
|
+
height: 12px;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&:focus {
|
|
60
|
+
outline: none;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&--open {
|
|
65
|
+
.pwv-DropdownPanel {
|
|
66
|
+
display: block;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
&Item {
|
|
71
|
+
display: flex;
|
|
72
|
+
align-items: center;
|
|
73
|
+
box-sizing: border-box;
|
|
74
|
+
white-space: nowrap;
|
|
75
|
+
padding: 0 1rem;
|
|
76
|
+
|
|
77
|
+
@include dropdownItem;
|
|
78
|
+
|
|
79
|
+
&:hover {
|
|
80
|
+
@include dropdownItem__Hover;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.pwv-icon {
|
|
84
|
+
display: inline-block;
|
|
85
|
+
margin-right: 0.25rem;
|
|
86
|
+
width: $dropdownItem__IconSize * 1.5;
|
|
87
|
+
svg {
|
|
88
|
+
height: $dropdownItem__IconSize;
|
|
89
|
+
fill: currentColor;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.pwv-DropdownPanel {
|
|
96
|
+
display: none;
|
|
97
|
+
position: absolute;
|
|
98
|
+
overflow-y: auto;
|
|
99
|
+
top: 34px;
|
|
100
|
+
min-width: 100%;
|
|
101
|
+
box-shadow: var(--pwv-drop-shadow-2);
|
|
102
|
+
z-index: 100;
|
|
103
|
+
background-color: $dropdownPanel__BackgroundColor;
|
|
104
|
+
|
|
105
|
+
&.pwv-DropdownPanel--scroll {
|
|
106
|
+
min-width: calc(100% + 20px);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
ul {
|
|
110
|
+
list-style: none;
|
|
111
|
+
padding: 0;
|
|
112
|
+
margin: 0;
|
|
113
|
+
li {
|
|
114
|
+
white-space: nowrap;
|
|
115
|
+
cursor: pointer;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.pwv-Dropdown-item-text {
|
|
120
|
+
white-space: nowrap;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.pwv-DropdownSeparator {
|
|
125
|
+
box-sizing: border-box;
|
|
126
|
+
display: flex;
|
|
127
|
+
justify-content: center;
|
|
128
|
+
align-items: center;
|
|
129
|
+
height: math.div($dropdownItem__Height, 4);
|
|
130
|
+
width: 100% !important;
|
|
131
|
+
// padding: 0 math.div($dropdownItem__Height, 4);
|
|
132
|
+
|
|
133
|
+
span {
|
|
134
|
+
display: block;
|
|
135
|
+
background-color: $toolbarItem__TextColor;
|
|
136
|
+
opacity: 0.2;
|
|
137
|
+
width: 100%;
|
|
138
|
+
flex-grow: 1;
|
|
139
|
+
height: 1px;
|
|
140
|
+
box-sizing: border-box;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.pwv-Dropdown--alignLeft {
|
|
145
|
+
text-align: left;
|
|
146
|
+
> button {
|
|
147
|
+
justify-content: space-between;
|
|
148
|
+
}
|
|
149
|
+
.pwv-DropdownPanel {
|
|
150
|
+
left: 0;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
.pwv-Dropdown--alignRight {
|
|
154
|
+
text-align: right;
|
|
155
|
+
> button {
|
|
156
|
+
justify-content: flex-end;
|
|
157
|
+
}
|
|
158
|
+
.pwv-DropdownPanel {
|
|
159
|
+
right: 0;
|
|
160
|
+
text-align: right;
|
|
161
|
+
}
|
|
162
|
+
.pwv-DropdownItem {
|
|
163
|
+
justify-content: flex-end;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.pwv-Dropdown--alignCenter {
|
|
168
|
+
text-align: center;
|
|
169
|
+
> button {
|
|
170
|
+
justify-content: center;
|
|
171
|
+
// padding: 0;
|
|
172
|
+
}
|
|
173
|
+
.pwv-DropdownPanel {
|
|
174
|
+
right: 0;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
@import 'common';
|
|
2
|
+
@import 'toolbar';
|
|
3
|
+
@import 'buttons';
|
|
4
|
+
@import 'tooltip';
|
|
5
|
+
|
|
6
|
+
@import 'contextbar';
|
|
7
|
+
@import 'icon';
|
|
8
|
+
@import 'dropdown';
|
|
9
|
+
@import 'loader';
|
|
10
|
+
@import 'colorpicker';
|
|
11
|
+
@import 'scrollbars';
|
|
12
|
+
@import 'rangeslider';
|
|
13
|
+
@import 'stroke-width-picker';
|
|
14
|
+
@import 'stroke-style-picker';
|
|
15
|
+
|
|
16
|
+
// @import 'breakpoints';
|
|
17
|
+
// @import 'commandbar';
|
|
18
|
+
// @import 'commandbar-button';
|
|
19
|
+
// @import 'commandbar-seperator';
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
.pwv-Loader {
|
|
2
|
+
margin: 30px 0;
|
|
3
|
+
display: flex;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
align-items: center;
|
|
6
|
+
position: relative;
|
|
7
|
+
top: 0;
|
|
8
|
+
left: 0;
|
|
9
|
+
right: 0;
|
|
10
|
+
bottom: 0;
|
|
11
|
+
z-index: 101;
|
|
12
|
+
> div {
|
|
13
|
+
width: 2.5rem;
|
|
14
|
+
height: 2.5rem;
|
|
15
|
+
border-radius: 50%;
|
|
16
|
+
border: solid 4px $loader-color-1;
|
|
17
|
+
border-top-color: $loader-color-2;
|
|
18
|
+
position: relative;
|
|
19
|
+
animation: pwv-rotate 0.8s linear infinite;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@keyframes pwv-rotate {
|
|
24
|
+
0% {
|
|
25
|
+
transform: rotate(0deg);
|
|
26
|
+
}
|
|
27
|
+
100% {
|
|
28
|
+
transform: rotate(360deg);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
.pwv-RangeSlider {
|
|
2
|
+
&.pwv-Dropdown {
|
|
3
|
+
.pwv-Dropdown-text {
|
|
4
|
+
padding: 0;
|
|
5
|
+
width: 2.5rem;
|
|
6
|
+
text-align: right;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.pwv-Dropdown-label {
|
|
11
|
+
margin-right: auto;
|
|
12
|
+
.pwv-icon {
|
|
13
|
+
width: 15px;
|
|
14
|
+
display: inline-block;
|
|
15
|
+
padding-top: 4px;
|
|
16
|
+
svg {
|
|
17
|
+
height: 15px;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
button {
|
|
22
|
+
justify-content: flex-end;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
.pwv-vertical-scrollbar,
|
|
2
|
+
.pwv-horizontal-scrollbar {
|
|
3
|
+
cursor: default !important;
|
|
4
|
+
z-index: 7;
|
|
5
|
+
position: absolute;
|
|
6
|
+
background-color: $scrollBar__BackgroundColor;
|
|
7
|
+
& > div {
|
|
8
|
+
position: absolute;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.pwv-scrollbar-handle {
|
|
13
|
+
background-color: $scrollHandle__BackgroundColor;
|
|
14
|
+
transition: background-color 0.5s;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.pwv-horizontal-scrollbar {
|
|
18
|
+
bottom: 0;
|
|
19
|
+
right: 0;
|
|
20
|
+
left: 0;
|
|
21
|
+
height: $scrollBar__Size;
|
|
22
|
+
border-left: $scrollBar__ExpandedSize solid transparent;
|
|
23
|
+
border-right: $scrollBar__ExpandedSize solid transparent;
|
|
24
|
+
transition: height 0.5s;
|
|
25
|
+
.pwv-scrollbar-handle {
|
|
26
|
+
height: 100%;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.pwv-vertical-scrollbar {
|
|
31
|
+
width: $scrollBar__Size;
|
|
32
|
+
top: 0;
|
|
33
|
+
bottom: 0;
|
|
34
|
+
right: 0;
|
|
35
|
+
border-top: $scrollBar__ExpandedSize solid transparent;
|
|
36
|
+
border-bottom: $scrollBar__ExpandedSize solid transparent;
|
|
37
|
+
transition: width 0.5s;
|
|
38
|
+
.pwv-scrollbar-handle {
|
|
39
|
+
width: 100%;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.pwv-scrollbar-hover,
|
|
44
|
+
.pwv-scrollbar-dragging {
|
|
45
|
+
&.pwv-vertical-scrollbar {
|
|
46
|
+
width: $scrollBar__ExpandedSize;
|
|
47
|
+
transition: width 0.5s;
|
|
48
|
+
}
|
|
49
|
+
&.pwv-horizontal-scrollbar {
|
|
50
|
+
height: $scrollBar__ExpandedSize;
|
|
51
|
+
transition: height 0.5s;
|
|
52
|
+
}
|
|
53
|
+
.pwv-scrollbar-handle {
|
|
54
|
+
background-color: $scrollHandle__ActiveBackgroundColor !important;
|
|
55
|
+
transition: background-color 0.5s;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.pwv-scrollbar-scrolling {
|
|
60
|
+
.pwv-scrollbar-handle {
|
|
61
|
+
background-color: $scrollHandle__ActiveBackgroundColor;
|
|
62
|
+
transition: background-color 0.5s;
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
.pwv-stroke-style-picker {
|
|
2
|
+
width: 50px;
|
|
3
|
+
&-line {
|
|
4
|
+
.pwv-stroke-style-picker-button {
|
|
5
|
+
> span {
|
|
6
|
+
height: 1;
|
|
7
|
+
border-left: none;
|
|
8
|
+
border-bottom: none;
|
|
9
|
+
border-right: none;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
&-circle {
|
|
14
|
+
.pwv-stroke-style-picker-button {
|
|
15
|
+
> span {
|
|
16
|
+
border-radius: 50%;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.pwv-stroke-style-picker-button {
|
|
23
|
+
> span {
|
|
24
|
+
display: block;
|
|
25
|
+
width: 18px;
|
|
26
|
+
height: 18px;
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
border-color: currentColor;
|
|
29
|
+
border-width: 1px;
|
|
30
|
+
border-style: solid;
|
|
31
|
+
}
|
|
32
|
+
&.pwv-stroke-style-dashed {
|
|
33
|
+
> span {
|
|
34
|
+
border-style: dashed;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.pwv-stroke-style-picker-item {
|
|
40
|
+
display: flex;
|
|
41
|
+
align-items: center;
|
|
42
|
+
justify-content: flex-end;
|
|
43
|
+
height: 21px;
|
|
44
|
+
&:hover {
|
|
45
|
+
> span {
|
|
46
|
+
border-top-color: $toolbarItem__SelectedTextColor;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
> span {
|
|
51
|
+
display: block;
|
|
52
|
+
width: 40px;
|
|
53
|
+
height: 2px;
|
|
54
|
+
box-sizing: border-box;
|
|
55
|
+
border-top-color: currentColor;
|
|
56
|
+
border-top-width: 2px;
|
|
57
|
+
border-top-style: solid;
|
|
58
|
+
}
|
|
59
|
+
&.pwv-stroke-style-dashed {
|
|
60
|
+
> span {
|
|
61
|
+
border-top-style: dashed;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
.pwv-stroke-width-picker {
|
|
2
|
+
width: 115px;
|
|
3
|
+
button {
|
|
4
|
+
padding-left: 8px;
|
|
5
|
+
.pwv-stroke-width {
|
|
6
|
+
width: auto;
|
|
7
|
+
flex: 1;
|
|
8
|
+
margin-left: 12px;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
.pwv-stroke-width-picker-item {
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
justify-content: space-between;
|
|
16
|
+
flex: 1;
|
|
17
|
+
}
|
|
18
|
+
.pwv-stroke-width {
|
|
19
|
+
display: block;
|
|
20
|
+
width: 40px;
|
|
21
|
+
margin-top: 2px;
|
|
22
|
+
background-color: currentColor;
|
|
23
|
+
}
|