@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,151 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openFile.dropFileHere": "Dokument hier hinziehen",
|
|
3
|
+
"openFile.openFileDisabled": "Kein Dokument",
|
|
4
|
+
"openFile.openDocument": "Dokument öffnen",
|
|
5
|
+
"openFile.selectFile": "Datei auswählen",
|
|
6
|
+
"openFileError.description": "Die Datei konnte nicht geöffnet werden",
|
|
7
|
+
"openFileError.ok": "OK",
|
|
8
|
+
"loadFile.title": "Datei wird geladen...",
|
|
9
|
+
"saveFile.title": "Datei wird gespeichert...",
|
|
10
|
+
"passwordForm.description": "Das Dokument ist geschützt. Bitte geben sie das Passwort ein.",
|
|
11
|
+
"passwordForm.ok": "OK",
|
|
12
|
+
"passwordForm.cancel": "Abbrechen",
|
|
13
|
+
"passwordForm.passwordRequiredError": "Passwort ist erforderlich",
|
|
14
|
+
"passwordForm.invalidPasswordError": "Passwort ist nicht gültig",
|
|
15
|
+
"applicationLoader.title": "Lade",
|
|
16
|
+
"applicationError.title": "Fehler",
|
|
17
|
+
"applicationError.reload": "Neu laden",
|
|
18
|
+
"applicationError.defaultMessage": "Es ist ein Fehler aufgetreten",
|
|
19
|
+
"applicationError.invalidLicense": "Ungültige Lizenz",
|
|
20
|
+
"unsavedChanges.description": "Möchten sie ihre Änderungen am Dokument speichern?",
|
|
21
|
+
"unsavedChanges.save": "Speichern",
|
|
22
|
+
"unsavedChanges.dontSave": "Nicht speichern",
|
|
23
|
+
"unsavedChanges.cancel": "Abbrechen",
|
|
24
|
+
"search.inputPlaceholder": "Dokument durchsuchen",
|
|
25
|
+
"search.optionCaseSensitive": "Gross-/Kleinschreibung beachten",
|
|
26
|
+
"search.optionWrap": "Zirkuläre Suche",
|
|
27
|
+
"search.optionRegularExpression": "Reguläre Ausdrücke",
|
|
28
|
+
"search.previousMatch": "Vorheriges Resultat",
|
|
29
|
+
"search.nextMatch": "Nächstes Resultat",
|
|
30
|
+
"search.options": "Optionen",
|
|
31
|
+
"sideNavigation.thumbnails": "Seiten",
|
|
32
|
+
"sideNavigation.outline": "Inhaltsverzeichnis",
|
|
33
|
+
"sideNavigation.noOutline": "Kein Inhaltsverzeichnis",
|
|
34
|
+
"sideNavigation.annotation": "Annotationen",
|
|
35
|
+
"sideNavigation.noAnnotations": "Keine Annotationen",
|
|
36
|
+
"sideNavigation.annotation.page": "Seite",
|
|
37
|
+
"sideNavigation.annotation.history": "Verlauf",
|
|
38
|
+
"rotatePage.clockwise": "Im Uhrzeigersinn rotieren",
|
|
39
|
+
"rotatePage.counterclockwise": "Gegen den Uhrzeigersinn rotieren",
|
|
40
|
+
"pageLayoutMode.oneColumn": "Bildlauf",
|
|
41
|
+
"pageLayoutMode.singlePage": "Einzelseitenansicht",
|
|
42
|
+
"pageLayoutMode.twoColumnLeft": "Bildlauf in Zweiseitenansicht",
|
|
43
|
+
"pageLayoutMode.twoColumnRight": "Bildlauf in Zweiseitenansicht rechts",
|
|
44
|
+
"pageLayoutMode.twoPageLeft": "Zweiseitenansicht",
|
|
45
|
+
"pageLayoutMode.twoPageRight": "Zweiseitenansicht rechts",
|
|
46
|
+
"fitMode.page": "An Seite anpassen",
|
|
47
|
+
"fitMode.width": "An Breite anpassen",
|
|
48
|
+
"fitMode.none": "Keine Anpassung",
|
|
49
|
+
"toolbar.openDocument": "Dokument öffnen",
|
|
50
|
+
"toolbar.closeDocument": "Dokument schliessen",
|
|
51
|
+
"toolbar.print": "Dokument drucken",
|
|
52
|
+
"toolbar.saveDocument": "Dokument speichern",
|
|
53
|
+
"toolbar.nextPage": "Nächste Seite",
|
|
54
|
+
"toolbar.previewsPage": "Vorherige Seite",
|
|
55
|
+
"toolbar.pageOf": "von",
|
|
56
|
+
"toolbar.zoom": "Zoom",
|
|
57
|
+
"toolbar.zoomIn": "Vergrössern",
|
|
58
|
+
"toolbar.zoomOut": "Verkleinern",
|
|
59
|
+
"toolbar.rotateView": "Ansicht drehen",
|
|
60
|
+
"toolbar.search": "Suchen",
|
|
61
|
+
"toolbar.toggleSidePane": "Navigation ein- ausblenden",
|
|
62
|
+
"toolbar.annotationsMenuButton": "Annotationen hinzufügen",
|
|
63
|
+
"annotText.add": "Haftnotiz",
|
|
64
|
+
"annotFreeDrawing.add": "Freihandzeichnung",
|
|
65
|
+
"annotFreeDrawing.opacity": "Deckkraft",
|
|
66
|
+
"annotFreeDrawing.strokeWidth": "Linienstärke",
|
|
67
|
+
"annotFreeDrawing.undo": "Letzte Linie löschen",
|
|
68
|
+
"annotFreeDrawing.addNew": "Neue Freihandzeichnung",
|
|
69
|
+
"annotFreeDrawing.deleteLine": "Linie löschen",
|
|
70
|
+
"annotFreeText.add": "Text",
|
|
71
|
+
"annotFreeText.edit": "Bearbeiten",
|
|
72
|
+
"annotFreeText.fontFamily": "Schriftart",
|
|
73
|
+
"annotFreeText.fontSize": "Schriftgrösse",
|
|
74
|
+
"annotFreeText.fontColor": "Schriftfarbe",
|
|
75
|
+
"annotFreeText.bgColor": "Hintergrundfarbe",
|
|
76
|
+
"annotFreeText.borderWidth": "Rahmenstärke",
|
|
77
|
+
"annotFreeText.alignLeft": "Linksbündig",
|
|
78
|
+
"annotFreeText.alignCenter": "Zentriert",
|
|
79
|
+
"annotFreeText.alignRight": "Rechtsbündig",
|
|
80
|
+
"annotFreeText.bold": "Fett",
|
|
81
|
+
"annotFreeText.italic": "Kursiv",
|
|
82
|
+
"annotFreeText.underline": "Unterstreichen",
|
|
83
|
+
"annotFreeText.lock": "Annotation sperren",
|
|
84
|
+
"annotFreeText.unlock": "Annotation entsperren",
|
|
85
|
+
"annotFreeText.subjectPlaceholder": "Betreff",
|
|
86
|
+
"annotHighlight.add": "Text hervorheben",
|
|
87
|
+
"annotHighlight.edit": "Bearbeiten",
|
|
88
|
+
"annotHighlight.highlight": "Hervorheben",
|
|
89
|
+
"annotHighlight.rectangularHighlight": "Hervorheben",
|
|
90
|
+
"annotHighlight.underline": "Unterstreichen",
|
|
91
|
+
"annotHighlight.squiggly": "Gewellt unterstreichen",
|
|
92
|
+
"annotHighlight.strikeOut": "Durchstreichen",
|
|
93
|
+
"annotInk.edit": "Bearbeiten",
|
|
94
|
+
"annotStamp.add": "Stempel",
|
|
95
|
+
"annotStamp.chooseStamp": "Stempel auswählen",
|
|
96
|
+
"annotShape.add": "Formen",
|
|
97
|
+
"annotStamp.edit": "Bearbeiten",
|
|
98
|
+
"annotShape.addRectangle": "Rechteck",
|
|
99
|
+
"annotShape.addEllipse": "Ellipse",
|
|
100
|
+
"annotShape.strokeColor": "Linienfarbe",
|
|
101
|
+
"annotShape.strokeWidth": "Linienstärke",
|
|
102
|
+
"annotShape.strokeStyle": "Linienfarbe",
|
|
103
|
+
"annotShape.bgColor": "Hintergrundfarbe",
|
|
104
|
+
"annotImage.add": "Bild Stempel",
|
|
105
|
+
"annotPopup.delete": "Pop-up löschen",
|
|
106
|
+
"annotPopup.lock": "Annotation sperren",
|
|
107
|
+
"annotPopup.unlock": "Annotation entsperren",
|
|
108
|
+
"annotPopup.color": "Farbe auswählen",
|
|
109
|
+
"annotPopup.subjectPlaceholder": "Betreff",
|
|
110
|
+
"annotPopup.contentPlaceholder": "Inhalt",
|
|
111
|
+
"eraser.begin": "Freihandlinien löschen",
|
|
112
|
+
"eraser.deleteFreeDrawingLine": "Klicken zum Löschen von Freihandlinien",
|
|
113
|
+
"eraser.eraserWidth": "Radiergummi Breite",
|
|
114
|
+
"contextbar.rotate": "Annotation drehen",
|
|
115
|
+
"contextbar.editPopup": "Pop-up bearbeiten",
|
|
116
|
+
"contextbar.addPopup": "Pop-up hinzufügen",
|
|
117
|
+
"contextbar.openPopup": "Pop-up öffnen",
|
|
118
|
+
"contextbar.deletePopup": "Pop-up löschen",
|
|
119
|
+
"contextbar.lock": "Annotation sperren",
|
|
120
|
+
"contextbar.unlock": "Annotation entsperren",
|
|
121
|
+
"contextbar.delete": "Annotation löschen",
|
|
122
|
+
"contextbar.confirmDelete": "Löschen",
|
|
123
|
+
"contextbar.cancelDelete": "Abbrechen",
|
|
124
|
+
"contextbar.copyText": "Text kopieren",
|
|
125
|
+
"contextbar.highlightText": "Ausgewählten Text hervorheben",
|
|
126
|
+
"contextbar.underlineText": "Ausgewählten Text unterstreichen",
|
|
127
|
+
"contextbar.squigglyText": "Ausgewählten Text gewellt unterstreichen",
|
|
128
|
+
"contextbar.strikeOutText": "Ausgewählten Text durchstreichen",
|
|
129
|
+
"errors.invalidLicense": "Ungültige Lizenz",
|
|
130
|
+
"stamptext.approved": "GENEHMIGT",
|
|
131
|
+
"stamptext.notApproved": "NICHT GENEHMIGT",
|
|
132
|
+
"stamptext.draft": "ENTWURF",
|
|
133
|
+
"stamptext.final": "ENDGÜLTIGE VERSION",
|
|
134
|
+
"stamptext.completed": "ABGESCHLOSSEN",
|
|
135
|
+
"stamptext.confidential": "VERTRAULICH",
|
|
136
|
+
"stamptext.forPublic": "ZUR VERÖFFENTLICHUNG",
|
|
137
|
+
"stamptext.notForPublic": "NICHT ZUR VERÖFFENTLICHUNG",
|
|
138
|
+
"stamptext.void": "UNGÜLTIG",
|
|
139
|
+
"stamptext.forComment": "ZUM KOMMENTAR",
|
|
140
|
+
"stamptext.preliminaryResults": "VORLÄUFIGES RESULTAT",
|
|
141
|
+
"stamptext.informationOnly": "ZUR INFORMATION",
|
|
142
|
+
"print.title": "Drucken",
|
|
143
|
+
"print.all": "Alle",
|
|
144
|
+
"print.current": "Diese Seite",
|
|
145
|
+
"print.range": "Seiten",
|
|
146
|
+
"print.invalid": "Ungültige Auswahl",
|
|
147
|
+
"print.includeAnnotations": "Annotationen drucken",
|
|
148
|
+
"print.print": "Drucken",
|
|
149
|
+
"print.cancel": "Abbrechen",
|
|
150
|
+
"border.none": "Kein Rahmen"
|
|
151
|
+
}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openFile.dropFileHere": "Drop document here",
|
|
3
|
+
"openFile.openFileDisabled": "No document",
|
|
4
|
+
"openFile.openDocument": "Open document",
|
|
5
|
+
"openFile.selectFile": "Select file",
|
|
6
|
+
"openFileError.description": "The document could not be opened",
|
|
7
|
+
"openFileError.ok": "OK",
|
|
8
|
+
"loadFile.title": "Loading File...",
|
|
9
|
+
"saveFile.title": "Saving File...",
|
|
10
|
+
"passwordForm.description": "This document is protected. Please enter the password.",
|
|
11
|
+
"passwordForm.ok": "OK",
|
|
12
|
+
"passwordForm.cancel": "Cancel",
|
|
13
|
+
"passwordForm.passwordRequiredError": "Password is required",
|
|
14
|
+
"passwordForm.invalidPasswordError": "Password is not valid",
|
|
15
|
+
"applicationLoader.title": "Loading",
|
|
16
|
+
"applicationError.title": "Error",
|
|
17
|
+
"applicationError.reload": "Reload",
|
|
18
|
+
"applicationError.defaultMessage": "An error has occurred",
|
|
19
|
+
"applicationError.invalidLicense": "Invalid license",
|
|
20
|
+
"unsavedChanges.description": "Do you want to save the changes made to the document?",
|
|
21
|
+
"unsavedChanges.save": "Save",
|
|
22
|
+
"unsavedChanges.dontSave": "Don't save",
|
|
23
|
+
"unsavedChanges.cancel": "Cancel",
|
|
24
|
+
"search.inputPlaceholder": "Search document",
|
|
25
|
+
"search.optionCaseSensitive": "Case sensitive",
|
|
26
|
+
"search.optionWrap": "Wrap search",
|
|
27
|
+
"search.optionRegularExpression": "Regular expression",
|
|
28
|
+
"search.previousMatch": "Previous match",
|
|
29
|
+
"search.nextMatch": "Next match",
|
|
30
|
+
"search.options": "Search options",
|
|
31
|
+
"sideNavigation.thumbnails": "Thumbnails",
|
|
32
|
+
"sideNavigation.outline": "Outline",
|
|
33
|
+
"sideNavigation.noOutline": "No outline",
|
|
34
|
+
"sideNavigation.annotation": "Annotations",
|
|
35
|
+
"sideNavigation.noAnnotations": "No annotations",
|
|
36
|
+
"sideNavigation.annotation.page": "Page",
|
|
37
|
+
"sideNavigation.annotation.history": "History",
|
|
38
|
+
"rotatePage.clockwise": "Rotate clockwise",
|
|
39
|
+
"rotatePage.counterclockwise": "Rotate counter-clockwise",
|
|
40
|
+
"pageLayoutMode.oneColumn": "One column",
|
|
41
|
+
"pageLayoutMode.singlePage": "Single page",
|
|
42
|
+
"pageLayoutMode.twoColumnLeft": "Two column left",
|
|
43
|
+
"pageLayoutMode.twoColumnRight": "Two column right",
|
|
44
|
+
"pageLayoutMode.twoPageLeft": "Two page left",
|
|
45
|
+
"pageLayoutMode.twoPageRight": "Two page right",
|
|
46
|
+
"fitMode.page": "Fit to page",
|
|
47
|
+
"fitMode.width": "Fit to width",
|
|
48
|
+
"fitMode.none": "No fitting",
|
|
49
|
+
"toolbar.openDocument": "Open document",
|
|
50
|
+
"toolbar.closeDocument": "Close document",
|
|
51
|
+
"toolbar.print": "Print document",
|
|
52
|
+
"toolbar.saveDocument": "Save document",
|
|
53
|
+
"toolbar.nextPage": "Next page",
|
|
54
|
+
"toolbar.previewsPage": "Previous page",
|
|
55
|
+
"toolbar.pageOf": "of",
|
|
56
|
+
"toolbar.zoom": "Zoom",
|
|
57
|
+
"toolbar.zoomIn": "Zoom in",
|
|
58
|
+
"toolbar.zoomOut": "Zoom out",
|
|
59
|
+
"toolbar.rotateView": "Rotate the view",
|
|
60
|
+
"toolbar.search": "Search",
|
|
61
|
+
"toolbar.toggleSidePane": "Toggle side pane",
|
|
62
|
+
"toolbar.annotationsMenuButton": "Add Annotations",
|
|
63
|
+
"annotText.add": "Sticky note",
|
|
64
|
+
"annotFreeDrawing.add": "Free drawing",
|
|
65
|
+
"annotFreeDrawing.opacity": "Opacity",
|
|
66
|
+
"annotFreeDrawing.strokeWidth": "Stroke size",
|
|
67
|
+
"annotFreeDrawing.undo": "Remove last line",
|
|
68
|
+
"annotFreeDrawing.addNew": "New free drawing",
|
|
69
|
+
"annotFreeDrawing.deleteLine": "Click to delete lines",
|
|
70
|
+
"annotFreeText.add": "Text",
|
|
71
|
+
"annotFreeText.edit": "Edit",
|
|
72
|
+
"annotFreeText.fontFamily": "Font family",
|
|
73
|
+
"annotFreeText.fontSize": "Font size",
|
|
74
|
+
"annotFreeText.fontColor": "Font color",
|
|
75
|
+
"annotFreeText.bgColor": "Background color",
|
|
76
|
+
"annotFreeText.borderWidth": "Border width",
|
|
77
|
+
"annotFreeText.alignLeft": "Align left",
|
|
78
|
+
"annotFreeText.alignCenter": "Align center",
|
|
79
|
+
"annotFreeText.alignRight": "Align right",
|
|
80
|
+
"annotFreeText.bold": "Bold",
|
|
81
|
+
"annotFreeText.italic": "Italic",
|
|
82
|
+
"annotFreeText.underline": "Underline",
|
|
83
|
+
"annotFreeText.lock": "Lock annotation",
|
|
84
|
+
"annotFreeText.unlock": "Unlock annotation",
|
|
85
|
+
"annotFreeText.subjectPlaceholder": "Subject",
|
|
86
|
+
"annotHighlight.add": "Text highlight",
|
|
87
|
+
"annotHighlight.edit": "Edit",
|
|
88
|
+
"annotHighlight.highlight": "Highlight",
|
|
89
|
+
"annotHighlight.rectangularHighlight": "Highlight",
|
|
90
|
+
"annotHighlight.underline": "Underline",
|
|
91
|
+
"annotHighlight.squiggly": "Squiggly underline",
|
|
92
|
+
"annotHighlight.strikeOut": "Strike out",
|
|
93
|
+
"annotInk.edit": "Edit",
|
|
94
|
+
"annotStamp.add": "Stamp",
|
|
95
|
+
"annotStamp.chooseStamp": "Choose stamp",
|
|
96
|
+
"annotShape.add": "Shape",
|
|
97
|
+
"annotShape.edit": "Edit",
|
|
98
|
+
"annotShape.addRectangle": "Rectangle",
|
|
99
|
+
"annotShape.addEllipse": "Ellipse",
|
|
100
|
+
"annotShape.strokeColor": "Stroke color",
|
|
101
|
+
"annotShape.strokeWidth": "Stroke width",
|
|
102
|
+
"annotShape.strokeStyle": "Stroke style",
|
|
103
|
+
"annotShape.bgColor": "Background color",
|
|
104
|
+
"annotImage.add": "Image Stamp",
|
|
105
|
+
"annotPopup.delete": "Delete popup",
|
|
106
|
+
"annotPopup.lock": "Lock annotation",
|
|
107
|
+
"annotPopup.unlock": "Unlock annotation",
|
|
108
|
+
"annotPopup.color": "Select color",
|
|
109
|
+
"annotPopup.subjectPlaceholder": "Subject",
|
|
110
|
+
"annotPopup.contentPlaceholder": "Content",
|
|
111
|
+
"eraser.begin": "Delete ink lines",
|
|
112
|
+
"eraser.deleteFreeDrawingLines": "Click to delete ink lines",
|
|
113
|
+
"eraser.eraserWidth": "Eraser width",
|
|
114
|
+
"contextbar.rotate": "Rotate annotation",
|
|
115
|
+
"contextbar.editPopup": "Edit popup",
|
|
116
|
+
"contextbar.addPopup": "Add popup",
|
|
117
|
+
"contextbar.openPopup": "Open popup",
|
|
118
|
+
"contextbar.deletePopup": "Delete popup",
|
|
119
|
+
"contextbar.lock": "Lock annotation",
|
|
120
|
+
"contextbar.unlock": "Unlock annotation",
|
|
121
|
+
"contextbar.delete": "Delete annotation",
|
|
122
|
+
"contextbar.confirmDelete": "Delete",
|
|
123
|
+
"contextbar.cancelDelete": "Cancel",
|
|
124
|
+
"contextbar.copyText": "Copy text",
|
|
125
|
+
"contextbar.highlightText": "Highlight selected text",
|
|
126
|
+
"contextbar.underlineText": "Underline selected text",
|
|
127
|
+
"contextbar.squigglyText": "Squiggly underline selected text",
|
|
128
|
+
"contextbar.strikeOutText": "Strike out selected text",
|
|
129
|
+
"errors.invalidLicense": "Invalid license",
|
|
130
|
+
"stamptext.approved": "APPROVED",
|
|
131
|
+
"stamptext.notApproved": "NOT APPROVED",
|
|
132
|
+
"stamptext.draft": "DRAFT",
|
|
133
|
+
"stamptext.final": "FINAL",
|
|
134
|
+
"stamptext.completed": "COMPLETED",
|
|
135
|
+
"stamptext.confidential": "CONFIDENTIAL",
|
|
136
|
+
"stamptext.forPublic": "FOR PUBLIC RELEASE",
|
|
137
|
+
"stamptext.notForPublic": "NOT FOR PUBLIC RELEASE",
|
|
138
|
+
"stamptext.void": "VOID",
|
|
139
|
+
"stamptext.forComment": "FOR COMMENT",
|
|
140
|
+
"stamptext.preliminaryResults": "PRELIMINARY RESULT",
|
|
141
|
+
"stamptext.informationOnly": "INFORMATION ONLY",
|
|
142
|
+
"print.title": "Print Pages",
|
|
143
|
+
"print.all": "All",
|
|
144
|
+
"print.current": "Current",
|
|
145
|
+
"print.range": "Range",
|
|
146
|
+
"print.invalid": "Invalid range",
|
|
147
|
+
"print.includeAnnotations": "Include annotations",
|
|
148
|
+
"print.print": "Print",
|
|
149
|
+
"print.cancel": "Cancel",
|
|
150
|
+
"border.none": "No border"
|
|
151
|
+
}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openFile.dropFileHere": "Glisser le document ici",
|
|
3
|
+
"openFile.openFileDisabled": "Pas de document",
|
|
4
|
+
"openFile.openDocument": "Ouvrir le document",
|
|
5
|
+
"openFile.selectFile": "Sélectionner le fichier",
|
|
6
|
+
"openFileError.description": "Le fichier n’a pas pu être ouvert",
|
|
7
|
+
"openFileError.ok": "OK",
|
|
8
|
+
"loadFile.title": "Chargement du fichier",
|
|
9
|
+
"saveFile.title": "Le fichier est sauvegardé",
|
|
10
|
+
"passwordForm.description": "Ce document est protégé. Veuillez entrer votre mot de passe.",
|
|
11
|
+
"passwordForm.ok": "OK",
|
|
12
|
+
"passwordForm.cancel": "Annuler",
|
|
13
|
+
"passwordForm.passwordRequiredError": "Mot de passe requis",
|
|
14
|
+
"passwordForm.invalidPasswordError": "Le mot de passe n’est pas valide",
|
|
15
|
+
"applicationLoader.title": "Chargement",
|
|
16
|
+
"applicationError.title": "Erreur",
|
|
17
|
+
"applicationError.reload": "Recharger",
|
|
18
|
+
"applicationError.defaultMessage": "Une erreur s’est produite",
|
|
19
|
+
"applicationError.invalidLicense": "Licence invalide",
|
|
20
|
+
"unsavedChanges.description": "Voulez-vous sauvegarder les changements effectués sur le document ?",
|
|
21
|
+
"unsavedChanges.save": "Sauvegarder",
|
|
22
|
+
"unsavedChanges.dontSave": "Ne pas sauvegarder",
|
|
23
|
+
"unsavedChanges.cancel": "Annuler",
|
|
24
|
+
"search.inputPlaceholder": "Rechercher dans le document",
|
|
25
|
+
"search.optionCaseSensitive": "Prendre en compte les majuscules et minuscules",
|
|
26
|
+
"search.optionWrap": "Recherche circulaire",
|
|
27
|
+
"search.optionRegularExpression": "Expressions régulières",
|
|
28
|
+
"search.previousMatch": "Correspondance précédente",
|
|
29
|
+
"search.nextMatch": "Correspondance suivante",
|
|
30
|
+
"search.options": "Options",
|
|
31
|
+
"sideNavigation.thumbnails": "Pages",
|
|
32
|
+
"sideNavigation.outline": "Tables des matières",
|
|
33
|
+
"sideNavigation.noOutline": "Pas de table des matières",
|
|
34
|
+
"sideNavigation.annotation": "Annotation",
|
|
35
|
+
"sideNavigation.noAnnotations": "Pas d'annotations",
|
|
36
|
+
"sideNavigation.annotation.page": "Page",
|
|
37
|
+
"sideNavigation.annotation.history": "Historique",
|
|
38
|
+
"rotatePage.clockwise": "Rotation horaire",
|
|
39
|
+
"rotatePage.counterclockwise": "Rotation antihoraire",
|
|
40
|
+
"pageLayoutMode.oneColumn": "Défilement",
|
|
41
|
+
"pageLayoutMode.singlePage": "Affichage d’une page",
|
|
42
|
+
"pageLayoutMode.twoColumnLeft": "Défilement sur deux pages",
|
|
43
|
+
"pageLayoutMode.twoColumnRight": "Défilement sur deux pages droite",
|
|
44
|
+
"pageLayoutMode.twoPageLeft": "Affichage sur deux pages",
|
|
45
|
+
"pageLayoutMode.twoPageRight": "Affichage sur deux pages droite",
|
|
46
|
+
"fitMode.page": "Adapter à la page",
|
|
47
|
+
"fitMode.width": "Adapter à la largeur",
|
|
48
|
+
"fitMode.none": "Pas d’adaptation",
|
|
49
|
+
"toolbar.openDocument": "Ouvrir document",
|
|
50
|
+
"toolbar.closeDocument": "Fermer document",
|
|
51
|
+
"toolbar.print": "Imprimer document",
|
|
52
|
+
"toolbar.saveDocument": "Enregistrer document",
|
|
53
|
+
"toolbar.nextPage": "Page suivante",
|
|
54
|
+
"toolbar.previewsPage": "Page précédente",
|
|
55
|
+
"toolbar.pageOf": "de",
|
|
56
|
+
"toolbar.zoom": "Zoom",
|
|
57
|
+
"toolbar.zoomIn": "Zoom +",
|
|
58
|
+
"toolbar.zoomOut": "Zoom -",
|
|
59
|
+
"toolbar.rotateView": "Pivoter affichage",
|
|
60
|
+
"toolbar.search": "Chercher",
|
|
61
|
+
"toolbar.toggleSidePane": "Basculer volet latéral",
|
|
62
|
+
"toolbar.annotationsMenuButton": "Ajouter annotation",
|
|
63
|
+
"annotText.add": "Note",
|
|
64
|
+
"annotFreeDrawing.add": "Dessin libre",
|
|
65
|
+
"annotFreeDrawing.opacity": "Opacité",
|
|
66
|
+
"annotFreeDrawing.strokeWidth": "Taille du trait",
|
|
67
|
+
"annotFreeDrawing.undo": "Supprimer dernière ligne",
|
|
68
|
+
"annotFreeDrawing.addNew": "Nouveau dessin libre",
|
|
69
|
+
"annotFreeDrawing.deleteLine": "Cliquer pour supprimer des lignes",
|
|
70
|
+
"annotFreeText.add": "Texte",
|
|
71
|
+
"annotFreeText.edit": "Éditer",
|
|
72
|
+
"annotFreeText.fontFamily": "Famille de polices",
|
|
73
|
+
"annotFreeText.fontSize": "Taille de police",
|
|
74
|
+
"annotFreeText.fontColor": "Couleur de police",
|
|
75
|
+
"annotFreeText.bgColor": "Couleur de fond",
|
|
76
|
+
"annotFreeText.borderWidth": "Largeur de bordure",
|
|
77
|
+
"annotFreeText.alignLeft": "Aligner à gauche",
|
|
78
|
+
"annotFreeText.alignCenter": "Aligner au centre",
|
|
79
|
+
"annotFreeText.alignRight": "Aligner à droite",
|
|
80
|
+
"annotFreeText.bold": "Gras",
|
|
81
|
+
"annotFreeText.italic": "Italique",
|
|
82
|
+
"annotFreeText.underline": "Souligner",
|
|
83
|
+
"annotFreeText.lock": "Verrouiller annotation",
|
|
84
|
+
"annotFreeText.unlock": "Déverrouiller annotation",
|
|
85
|
+
"annotFreeText.subjectPlaceholder": "Objet",
|
|
86
|
+
"annotHighlight.add": "Surligner texte",
|
|
87
|
+
"annotHighlight.edit": "Éditer",
|
|
88
|
+
"annotHighlight.highlight": "Surligner",
|
|
89
|
+
"annotHighlight.rectangularHighlight": "Surligner",
|
|
90
|
+
"annotHighlight.underline": "Souligner",
|
|
91
|
+
"annotHighlight.squiggly": "Soulignement ondulé",
|
|
92
|
+
"annotHighlight.strikeOut": "Barrer",
|
|
93
|
+
"annotInk.edit": "Éditer",
|
|
94
|
+
"annotStamp.add": "Tampon",
|
|
95
|
+
"annotStamp.chooseStamp": "Choisir tampon",
|
|
96
|
+
"annotShape.add": "Forme",
|
|
97
|
+
"annotShape.edit": "Éditer",
|
|
98
|
+
"annotShape.addRectangle": "Rectangle",
|
|
99
|
+
"annotShape.addEllipse": "Ellipse",
|
|
100
|
+
"annotShape.strokeColor": "Couleur de trait",
|
|
101
|
+
"annotShape.strokeWidth": "Largeur de trait",
|
|
102
|
+
"annotShape.strokeStyle": "Style de trait",
|
|
103
|
+
"annotShape.bgColor": "Couleur de fond",
|
|
104
|
+
"annotImage.add": "Tampon image",
|
|
105
|
+
"annotPopup.delete": "Supprimer popup",
|
|
106
|
+
"annotPopup.lock": "Verrouiller annotation",
|
|
107
|
+
"annotPopup.unlock": "Déverrouiller annotation",
|
|
108
|
+
"annotPopup.color": "Sélectionner couleur",
|
|
109
|
+
"annotPopup.subjectPlaceholder": "Objet",
|
|
110
|
+
"annotPopup.contentPlaceholder": "Contenu",
|
|
111
|
+
"eraser.begin": "Supprimer les lignes de dessin libre",
|
|
112
|
+
"eraser.deleteFreeDrawingLines": "Cliquer pour supprimer les lignes de dessin libre",
|
|
113
|
+
"eraser.eraserWidth": "Largeur de la gomme",
|
|
114
|
+
"contextbar.rotate": "Pivoter annotation",
|
|
115
|
+
"contextbar.editPopup": "Éditer popup",
|
|
116
|
+
"contextbar.addPopup": "Ajouter popup",
|
|
117
|
+
"contextbar.openPopup": "Ouvrir popup",
|
|
118
|
+
"contextbar.deletePopup": "Supprimer popup",
|
|
119
|
+
"contextbar.lock": "Verrouiller annotation",
|
|
120
|
+
"contextbar.unlock": "Déverrouiller annotation",
|
|
121
|
+
"contextbar.delete": "Supprimer annotation",
|
|
122
|
+
"contextbar.confirmDelete": "Effacer",
|
|
123
|
+
"contextbar.cancelDelete": "Annuler",
|
|
124
|
+
"contextbar.copyText": "Copier texte",
|
|
125
|
+
"contextbar.highlightText": "Surligner le texte sélectionné",
|
|
126
|
+
"contextbar.underlineText": "Souligner le texte sélectionné",
|
|
127
|
+
"contextbar.squigglyText": "Souligner en ondulé le texte sélectionné",
|
|
128
|
+
"contextbar.strikeOutText": "Barrer le texte sélectionné",
|
|
129
|
+
"errors.invalidLicense": "License non valide",
|
|
130
|
+
"stamptext.approved": "APPROUVÉ",
|
|
131
|
+
"stamptext.notApproved": "NON APPROUVÉ",
|
|
132
|
+
"stamptext.draft": "EBAUCHE",
|
|
133
|
+
"stamptext.final": "DOCUMENT FINAL",
|
|
134
|
+
"stamptext.completed": "DOCUMENT TERMINÉ",
|
|
135
|
+
"stamptext.confidential": "CONFIDENTIEL",
|
|
136
|
+
"stamptext.forPublic": "POUR DIVULGATION PUBLIQUE",
|
|
137
|
+
"stamptext.notForPublic": "PAS POUR DIVULGATION PUBLIQUE",
|
|
138
|
+
"stamptext.void": "ANNULÉ",
|
|
139
|
+
"stamptext.forComment": "A COMMENTER",
|
|
140
|
+
"stamptext.preliminaryResults": "RÉSULTATS PRÉLIMINAIRES",
|
|
141
|
+
"stamptext.informationOnly": "POUR INFORMATION",
|
|
142
|
+
"print.title": "Imprimer",
|
|
143
|
+
"print.all": "Toutes les pages",
|
|
144
|
+
"print.current": "Page actuelle",
|
|
145
|
+
"print.range": "Intervalle",
|
|
146
|
+
"print.invalid": "Intervalle invalide",
|
|
147
|
+
"print.includeAnnotations": "Inclure des annotations",
|
|
148
|
+
"print.print": "Imprimer",
|
|
149
|
+
"print.cancel": "Annuler",
|
|
150
|
+
"border.none": "Pas de bordure"
|
|
151
|
+
}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openFile.dropFileHere": "Trascina qui il documento",
|
|
3
|
+
"openFile.openFileDisabled": "Nessun documento",
|
|
4
|
+
"openFile.openDocument": "Apri documento",
|
|
5
|
+
"openFile.selectFile": "Seleziona documento",
|
|
6
|
+
"openFileError.description": "Non è stato possibile aprire il documento",
|
|
7
|
+
"openFileError.ok": "OK",
|
|
8
|
+
"loadFile.title": "Caricamento file",
|
|
9
|
+
"saveFile.title": "Il file viene salvato",
|
|
10
|
+
"passwordForm.description": "Questo documento è protetto. Inserisci la password.",
|
|
11
|
+
"passwordForm.ok": "OK",
|
|
12
|
+
"passwordForm.cancel": "Annulla",
|
|
13
|
+
"passwordForm.passwordRequiredError": "La password è richiesta",
|
|
14
|
+
"passwordForm.invalidPasswordError": "Password non valida",
|
|
15
|
+
"applicationLoader.title": "Caricamento",
|
|
16
|
+
"applicationError.title": "Errore",
|
|
17
|
+
"applicationError.reload": "Ricarica",
|
|
18
|
+
"applicationError.defaultMessage": "Si è verificato un errore",
|
|
19
|
+
"applicationError.invalidLicense": "Licenza invalida",
|
|
20
|
+
"unsavedChanges.description": "Vuoi salvare le modifiche apportate?",
|
|
21
|
+
"unsavedChanges.save": "Salva",
|
|
22
|
+
"unsavedChanges.dontSave": "Non salvare",
|
|
23
|
+
"unsavedChanges.cancel": "Annulla",
|
|
24
|
+
"search.inputPlaceholder": "Ricerca documento",
|
|
25
|
+
"search.optionCaseSensitive": "Sensibile alle maiuscole e minuscole",
|
|
26
|
+
"search.optionWrap": "Ricerca circolare",
|
|
27
|
+
"search.optionRegularExpression": "Espressioni regolari",
|
|
28
|
+
"search.previousMatch": "Coincidenza precedente",
|
|
29
|
+
"search.nextMatch": "Coincidenza successiva",
|
|
30
|
+
"search.options": "Opzioni",
|
|
31
|
+
"sideNavigation.thumbnails": "Pagine",
|
|
32
|
+
"sideNavigation.outline": "Indice",
|
|
33
|
+
"sideNavigation.noOutline": "Nessun indice",
|
|
34
|
+
"sideNavigation.annotation": "Annotazione",
|
|
35
|
+
"sideNavigation.noAnnotations": "Nessuna annotazione",
|
|
36
|
+
"sideNavigation.annotation.page": "Pagine",
|
|
37
|
+
"sideNavigation.annotation.history": "Cronologia",
|
|
38
|
+
"rotatePage.clockwise": "Rotazione oraria",
|
|
39
|
+
"rotatePage.counterclockwise": "Rotazione antioraria",
|
|
40
|
+
"pageLayoutMode.oneColumn": "Colonna",
|
|
41
|
+
"pageLayoutMode.singlePage": "Pagina singola",
|
|
42
|
+
"pageLayoutMode.twoColumnLeft": "Due colonne crescente",
|
|
43
|
+
"pageLayoutMode.twoColumnRight": "Due colonne decrescente",
|
|
44
|
+
"pageLayoutMode.twoPageLeft": "Due pagine crescente",
|
|
45
|
+
"pageLayoutMode.twoPageRight": "Due pagine decrescente",
|
|
46
|
+
"fitMode.page": "Adatta alla pagina",
|
|
47
|
+
"fitMode.width": "Adatta alla larghezza",
|
|
48
|
+
"fitMode.none": "Nessun adattamento",
|
|
49
|
+
"toolbar.openDocument": "Apri documento",
|
|
50
|
+
"toolbar.closeDocument": "Chiudi documento",
|
|
51
|
+
"toolbar.print": "Stampa documento",
|
|
52
|
+
"toolbar.saveDocument": "Salva documento",
|
|
53
|
+
"toolbar.nextPage": "Pagina successiva",
|
|
54
|
+
"toolbar.previewsPage": "Pagina precedente",
|
|
55
|
+
"toolbar.pageOf": "di",
|
|
56
|
+
"toolbar.zoom": "Zoom",
|
|
57
|
+
"toolbar.zoomIn": "Ingrandisci",
|
|
58
|
+
"toolbar.zoomOut": "Riduci",
|
|
59
|
+
"toolbar.rotateView": "Ruota la visuale",
|
|
60
|
+
"toolbar.search": "Cerca",
|
|
61
|
+
"toolbar.toggleSidePane": "Attiva pannello laterale",
|
|
62
|
+
"annotText.add": "Commento",
|
|
63
|
+
"toolbar.annotationsMenuButton": "Aggiungi annotazione",
|
|
64
|
+
"annotFreeDrawing.add": "Disegno libero",
|
|
65
|
+
"annotFreeDrawing.opacity": "Opacità",
|
|
66
|
+
"annotFreeDrawing.strokeWidth": "Dimensioni tratto",
|
|
67
|
+
"annotFreeDrawing.undo": "Elimina ultima riga",
|
|
68
|
+
"annotFreeDrawing.addNew": "Nuovo disegno libero",
|
|
69
|
+
"annotFreeDrawing.deleteLine": "Fai clic per cancellare righe",
|
|
70
|
+
"annotFreeText.add": "Testo",
|
|
71
|
+
"annotFreeText.edit": "Modifica",
|
|
72
|
+
"annotFreeText.fontFamily": "Famiglia carattere",
|
|
73
|
+
"annotFreeText.fontSize": "Dimensioni carattere",
|
|
74
|
+
"annotFreeText.fontColor": "Colore carattere",
|
|
75
|
+
"annotFreeText.bgColor": "Colore sfondo",
|
|
76
|
+
"annotFreeText.borderWidth": "Larghezza bordo",
|
|
77
|
+
"annotFreeText.alignLeft": "Allinea a sinistra",
|
|
78
|
+
"annotFreeText.alignCenter": "Allinea al centro",
|
|
79
|
+
"annotFreeText.alignRight": "Allinea a destra",
|
|
80
|
+
"annotFreeText.bold": "Grassetto",
|
|
81
|
+
"annotFreeText.italic": "Corsivo",
|
|
82
|
+
"annotFreeText.underline": "Sottolineato",
|
|
83
|
+
"annotFreeText.lock": "Blocca nota",
|
|
84
|
+
"annotFreeText.unlock": "Sblocca nota",
|
|
85
|
+
"annotFreeText.subjectPlaceholder": "Oggetto",
|
|
86
|
+
"annotHighlight.add": "Evidenziatore testo",
|
|
87
|
+
"annotHighlight.edit": "Modifica",
|
|
88
|
+
"annotHighlight.highlight": "Evidenzia",
|
|
89
|
+
"annotHighlight.rectangularHighlight": "Evidenzia",
|
|
90
|
+
"annotHighlight.underline": "Sottolinea",
|
|
91
|
+
"annotHighlight.squiggly": "Sottolineatura ondulata",
|
|
92
|
+
"annotHighlight.strikeOut": "Barrato",
|
|
93
|
+
"annotInk.edit": "Modifica",
|
|
94
|
+
"annotStamp.add": "Timbro",
|
|
95
|
+
"annotStamp.chooseStamp": "Seleziona timbro",
|
|
96
|
+
"annotShape.add": "Forma",
|
|
97
|
+
"annotShape.edit": "Modifica",
|
|
98
|
+
"annotShape.addRectangle": "Rettangolo",
|
|
99
|
+
"annotShape.addEllipse": "Ellisse",
|
|
100
|
+
"annotShape.strokeColor": "Colore tratto",
|
|
101
|
+
"annotShape.strokeWidth": "Larghezza tratto",
|
|
102
|
+
"annotShape.strokeStyle": "Stile tratto",
|
|
103
|
+
"annotShape.bgColor": "Colore sfondo",
|
|
104
|
+
"annotImage.add": "Timbro con immagine",
|
|
105
|
+
"annotPopup.delete": "Cancella pop up",
|
|
106
|
+
"annotPopup.lock": "Blocca nota",
|
|
107
|
+
"annotPopup.unlock": "Sblocca nota",
|
|
108
|
+
"annotPopup.color": "Seleziona colore",
|
|
109
|
+
"annotPopup.subjectPlaceholder": "Oggetto",
|
|
110
|
+
"annotPopup.contentPlaceholder": "Contenuti",
|
|
111
|
+
"eraser.begin": "Cancella linee disegnate",
|
|
112
|
+
"eraser.deleteFreeDrawingLines": "Clicca per cancellare le linee",
|
|
113
|
+
"eraser.eraserWidth": "Larghezza della gomma",
|
|
114
|
+
"contextbar.rotate": "Ruota nota",
|
|
115
|
+
"contextbar.editPopup": "Modifica pop up",
|
|
116
|
+
"contextbar.addPopup": "Aggiungi pop up",
|
|
117
|
+
"contextbar.openPopup": "Apri pop up",
|
|
118
|
+
"contextbar.deletePopup": "Cancella pop up",
|
|
119
|
+
"contextbar.lock": "Blocca nota",
|
|
120
|
+
"contextbar.unlock": "Sblocca nota",
|
|
121
|
+
"contextbar.delete": "Cancella nota",
|
|
122
|
+
"contextbar.confirmDelete": "Cancellare",
|
|
123
|
+
"contextbar.cancelDelete": "Annulla",
|
|
124
|
+
"contextbar.copyText": "Copia testo",
|
|
125
|
+
"contextbar.highlightText": "Evidenzia testo selezionato",
|
|
126
|
+
"contextbar.underlineText": "Sottolinea testo selezionato",
|
|
127
|
+
"contextbar.squigglyText": "Sottolinea con ondulatura testo selezionato",
|
|
128
|
+
"contextbar.strikeOutText": "Barra testo selezionato",
|
|
129
|
+
"errors.invalidLicense": "Licenza non valida",
|
|
130
|
+
"stamptext.approved": "APPROVATO",
|
|
131
|
+
"stamptext.notApproved": "NON APPROVATO",
|
|
132
|
+
"stamptext.draft": "BOZZA",
|
|
133
|
+
"stamptext.final": "FINALE",
|
|
134
|
+
"stamptext.completed": "COMPLETATO",
|
|
135
|
+
"stamptext.confidential": "RISERVATO",
|
|
136
|
+
"stamptext.forPublic": "DISPONIBILE AL PUBBLICO",
|
|
137
|
+
"stamptext.notForPublic": "NON DISPONIBILE AL PUBBLICO",
|
|
138
|
+
"stamptext.void": "VUOTO",
|
|
139
|
+
"stamptext.forComment": "COMMENTI",
|
|
140
|
+
"stamptext.preliminaryResults": "RISULTATI PRELIMINARI",
|
|
141
|
+
"stamptext.informationOnly": "SOLO INFORMAZIONI",
|
|
142
|
+
"print.title": "Stampa pagine",
|
|
143
|
+
"print.all": "Tutte",
|
|
144
|
+
"print.current": "Pagina corrente",
|
|
145
|
+
"print.range": "Pagine",
|
|
146
|
+
"print.invalid": "Selezione non valida",
|
|
147
|
+
"print.includeAnnotations": "Includi annotazioni",
|
|
148
|
+
"print.print": "Stampa",
|
|
149
|
+
"print.cancel": "Annulla",
|
|
150
|
+
"border.none": "Senza bordo"
|
|
151
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
$devices: (
|
|
2
|
+
mobile: 540px,
|
|
3
|
+
tablet: 900px,
|
|
4
|
+
desktop: 1024px,
|
|
5
|
+
);
|
|
6
|
+
|
|
7
|
+
@mixin media-up($device) {
|
|
8
|
+
@if map-has-key($devices, $device) {
|
|
9
|
+
$device-value: map-get($devices, $device);
|
|
10
|
+
@media (min-width: $device-value) {
|
|
11
|
+
@content;
|
|
12
|
+
}
|
|
13
|
+
} @else {
|
|
14
|
+
@warn 'Invalid breakpoint: #{$device}.';
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
@mixin media-down($device) {
|
|
19
|
+
@if map-has-key($devices, $device) {
|
|
20
|
+
$device-value: map-get($devices, $device);
|
|
21
|
+
@media (max-width: ($device-value - 1)) {
|
|
22
|
+
@content;
|
|
23
|
+
}
|
|
24
|
+
} @else {
|
|
25
|
+
@warn 'Invalid breakpoint: #{$device}.';
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
@mixin media-between($lower, $upper) {
|
|
30
|
+
@if map-has-key($devices, $lower) and map-has-key($devices, $upper) {
|
|
31
|
+
$lower-breakpoint: map-get($devices, $lower);
|
|
32
|
+
$upper-breakpoint: map-get($devices, $upper);
|
|
33
|
+
@media (min-width: $lower-breakpoint) and (max-width: ($upper-breakpoint - 1)) {
|
|
34
|
+
@content;
|
|
35
|
+
}
|
|
36
|
+
} @else {
|
|
37
|
+
@if (map-has-key($devices, $lower) == false) {
|
|
38
|
+
@warn 'Your lower breakpoint was invalid: #{$lower}.';
|
|
39
|
+
}
|
|
40
|
+
@if (map-has-key($devices, $upper) == false) {
|
|
41
|
+
@warn 'Your upper breakpoint was invalid: #{$upper}.';
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|