@longline/aqua-ui 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/Types.d.ts +6 -0
- package/Types.js +5 -0
- package/containers/Anchor/Anchor.d.ts +63 -0
- package/containers/Anchor/Anchor.js +113 -0
- package/containers/Anchor/index.d.ts +1 -0
- package/containers/Anchor/index.js +1 -0
- package/containers/Dock/Dock.d.ts +45 -0
- package/containers/Dock/Dock.js +61 -0
- package/containers/Dock/Dockable.d.ts +60 -0
- package/containers/Dock/Dockable.js +98 -0
- package/containers/Dock/index.d.ts +2 -0
- package/containers/Dock/index.js +2 -0
- package/containers/Form/Field.d.ts +104 -0
- package/containers/Form/Field.js +168 -0
- package/containers/Form/Form.d.ts +51 -0
- package/containers/Form/Form.js +89 -0
- package/containers/Form/Validation.d.ts +212 -0
- package/containers/Form/Validation.js +232 -0
- package/containers/Form/context/FormContext.d.ts +10 -0
- package/containers/Form/context/FormContext.js +3 -0
- package/containers/Form/context/useForm.d.ts +5 -0
- package/containers/Form/context/useForm.js +9 -0
- package/containers/Form/elements/BoxWrapper.d.ts +15 -0
- package/containers/Form/elements/BoxWrapper.js +35 -0
- package/containers/Form/elements/Hint.d.ts +21 -0
- package/containers/Form/elements/Hint.js +15 -0
- package/containers/Form/elements/Label.d.ts +22 -0
- package/containers/Form/elements/Label.js +15 -0
- package/containers/Form/elements/SimpleWrapper.d.ts +15 -0
- package/containers/Form/elements/SimpleWrapper.js +17 -0
- package/containers/GlassPane/GlassPane.d.ts +36 -0
- package/containers/GlassPane/GlassPane.js +66 -0
- package/containers/GlassPane/index.d.ts +1 -0
- package/containers/GlassPane/index.js +1 -0
- package/containers/InfoBox/InfoBox.d.ts +34 -0
- package/containers/InfoBox/InfoBox.js +45 -0
- package/containers/InfoBox/elements/Content.d.ts +23 -0
- package/containers/InfoBox/elements/Content.js +37 -0
- package/containers/InfoBox/elements/Footer.d.ts +9 -0
- package/containers/InfoBox/elements/Footer.js +24 -0
- package/containers/InfoBox/elements/Header.d.ts +9 -0
- package/containers/InfoBox/elements/Header.js +24 -0
- package/containers/List/List.d.ts +45 -0
- package/containers/List/List.js +47 -0
- package/containers/List/ListCell.d.ts +13 -0
- package/containers/List/ListCell.js +24 -0
- package/containers/List/ListRow.d.ts +15 -0
- package/containers/List/ListRow.js +24 -0
- package/containers/List/index.d.ts +3 -0
- package/containers/List/index.js +3 -0
- package/containers/Tabs/Pane.d.ts +29 -0
- package/containers/Tabs/Pane.js +45 -0
- package/containers/Tabs/Tabs.d.ts +66 -0
- package/containers/Tabs/Tabs.js +144 -0
- package/controls/Chip/Chip.d.ts +35 -0
- package/controls/Chip/Chip.js +83 -0
- package/controls/Fab/Fab.d.ts +73 -0
- package/controls/Fab/Fab.js +94 -0
- package/controls/Icon/Icon.d.ts +98 -0
- package/controls/Icon/Icon.js +79 -0
- package/controls/Icon/index.d.ts +1 -0
- package/controls/Icon/index.js +1 -0
- package/controls/Key/Key.d.ts +22 -0
- package/controls/Key/Key.js +74 -0
- package/controls/Key/index.d.ts +1 -0
- package/controls/Key/index.js +1 -0
- package/controls/LinearChart/LinearChart.d.ts +31 -0
- package/controls/LinearChart/LinearChart.js +58 -0
- package/controls/ListView/Body.d.ts +8 -0
- package/controls/ListView/Body.js +24 -0
- package/controls/ListView/Column.d.ts +55 -0
- package/controls/ListView/Column.js +8 -0
- package/controls/ListView/ColumnsManager/ColumnDraggable.d.ts +11 -0
- package/controls/ListView/ColumnsManager/ColumnDraggable.js +83 -0
- package/controls/ListView/ColumnsManager/ColumnsManager.d.ts +12 -0
- package/controls/ListView/ColumnsManager/ColumnsManager.js +63 -0
- package/controls/ListView/ColumnsManager/OrderColumns.d.ts +11 -0
- package/controls/ListView/ColumnsManager/OrderColumns.js +62 -0
- package/controls/ListView/ColumnsManager/SourceColumns.d.ts +10 -0
- package/controls/ListView/ColumnsManager/SourceColumns.js +45 -0
- package/controls/ListView/Ghost.d.ts +9 -0
- package/controls/ListView/Ghost.js +52 -0
- package/controls/ListView/Header.d.ts +12 -0
- package/controls/ListView/Header.js +35 -0
- package/controls/ListView/HeaderButton.d.ts +8 -0
- package/controls/ListView/HeaderButton.js +8 -0
- package/controls/ListView/HeaderCell.d.ts +20 -0
- package/controls/ListView/HeaderCell.js +47 -0
- package/controls/ListView/IListViewProps.d.ts +105 -0
- package/controls/ListView/IListViewProps.js +1 -0
- package/controls/ListView/ListView.d.ts +20 -0
- package/controls/ListView/ListView.js +97 -0
- package/controls/ListView/NoData.d.ts +19 -0
- package/controls/ListView/NoData.js +30 -0
- package/controls/ListView/SortButton.d.ts +16 -0
- package/controls/ListView/SortButton.js +26 -0
- package/controls/ListView/Table.d.ts +18 -0
- package/controls/ListView/Table.js +99 -0
- package/controls/ListView/Total.d.ts +9 -0
- package/controls/ListView/Total.js +28 -0
- package/controls/ListView/sortItems.d.ts +6 -0
- package/controls/ListView/sortItems.js +35 -0
- package/controls/Mouse/Mouse.d.ts +38 -0
- package/controls/Mouse/Mouse.js +51 -0
- package/controls/Mouse/index.d.ts +1 -0
- package/controls/Mouse/index.js +1 -0
- package/controls/PrimaryButton/PrimaryButton.d.ts +63 -0
- package/controls/PrimaryButton/PrimaryButton.js +83 -0
- package/controls/PrimaryButton/index.d.ts +1 -0
- package/controls/PrimaryButton/index.js +1 -0
- package/controls/Progress/Progress.d.ts +35 -0
- package/controls/Progress/Progress.js +49 -0
- package/controls/SecondaryButton/SecondaryButton.d.ts +58 -0
- package/controls/SecondaryButton/SecondaryButton.js +73 -0
- package/controls/SecondaryButton/index.d.ts +1 -0
- package/controls/SecondaryButton/index.js +1 -0
- package/controls/TabBar/Tab.d.ts +21 -0
- package/controls/TabBar/Tab.js +25 -0
- package/controls/TabBar/TabBar.d.ts +34 -0
- package/controls/TabBar/TabBar.js +134 -0
- package/controls/TabBar/Underliner.d.ts +7 -0
- package/controls/TabBar/Underliner.js +27 -0
- package/controls/TabBar/index.d.ts +1 -0
- package/controls/TabBar/index.js +1 -0
- package/controls/TertiaryButton/TertiaryButton.d.ts +28 -0
- package/controls/TertiaryButton/TertiaryButton.js +65 -0
- package/controls/TertiaryButton/index.d.ts +1 -0
- package/controls/TertiaryButton/index.js +1 -0
- package/controls/View/View.d.ts +35 -0
- package/controls/View/View.js +58 -0
- package/formatters/Date/DateTime.d.ts +45 -0
- package/formatters/Date/DateTime.js +64 -0
- package/formatters/Date/elements/Custom.d.ts +18 -0
- package/formatters/Date/elements/Custom.js +22 -0
- package/formatters/Date/elements/Distance.d.ts +24 -0
- package/formatters/Date/elements/Distance.js +45 -0
- package/formatters/Date/elements/LongDate.d.ts +17 -0
- package/formatters/Date/elements/LongDate.js +11 -0
- package/formatters/Date/elements/LongDateTime.d.ts +14 -0
- package/formatters/Date/elements/LongDateTime.js +10 -0
- package/formatters/Date/elements/LongTime.d.ts +14 -0
- package/formatters/Date/elements/LongTime.js +10 -0
- package/formatters/Date/elements/ShortDate.d.ts +14 -0
- package/formatters/Date/elements/ShortDate.js +10 -0
- package/formatters/Date/elements/ShortDateTime.d.ts +14 -0
- package/formatters/Date/elements/ShortDateTime.js +10 -0
- package/formatters/Date/elements/ShortTime.d.ts +18 -0
- package/formatters/Date/elements/ShortTime.js +10 -0
- package/formatters/Date/elements/toDate.d.ts +2 -0
- package/formatters/Date/elements/toDate.js +13 -0
- package/formatters/Filesize/Filesize.d.ts +29 -0
- package/formatters/Filesize/Filesize.js +54 -0
- package/formatters/GIS/Latitude.d.ts +23 -0
- package/formatters/GIS/Latitude.js +13 -0
- package/formatters/GIS/Longitude.d.ts +23 -0
- package/formatters/GIS/Longitude.js +13 -0
- package/formatters/GIS/index.d.ts +2 -0
- package/formatters/GIS/index.js +2 -0
- package/formatters/GIS/toDMS.d.ts +2 -0
- package/formatters/GIS/toDMS.js +16 -0
- package/formatters/Highlight/Highlight.d.ts +22 -0
- package/formatters/Highlight/Highlight.js +32 -0
- package/formatters/Highlight/index.d.ts +1 -0
- package/formatters/Highlight/index.js +1 -0
- package/formatters/Human/Human.d.ts +18 -0
- package/formatters/Human/Human.js +34 -0
- package/formatters/Human/index.d.ts +1 -0
- package/formatters/Human/index.js +1 -0
- package/formatters/Number/Number.d.ts +24 -0
- package/formatters/Number/Number.js +36 -0
- package/formatters/Number/index.d.ts +1 -0
- package/formatters/Number/index.js +1 -0
- package/helper/DMS.d.ts +22 -0
- package/helper/DMS.js +46 -0
- package/helper/HslColor.d.ts +11 -0
- package/helper/HslColor.js +47 -0
- package/helper/RgbColor.d.ts +43 -0
- package/helper/RgbColor.js +162 -0
- package/helper/SizeHelper.d.ts +10 -0
- package/helper/SizeHelper.js +56 -0
- package/helper/darken.d.ts +8 -0
- package/helper/darken.js +18 -0
- package/helper/guard.d.ts +5 -0
- package/helper/guard.js +7 -0
- package/helper/lighten.d.ts +8 -0
- package/helper/lighten.js +11 -0
- package/helper/nameToHex.d.ts +6 -0
- package/helper/nameToHex.js +163 -0
- package/inputs/DateInput/Body.d.ts +34 -0
- package/inputs/DateInput/Body.js +50 -0
- package/inputs/DateInput/Calendar.d.ts +15 -0
- package/inputs/DateInput/Calendar.js +60 -0
- package/inputs/DateInput/DateInput.d.ts +73 -0
- package/inputs/DateInput/DateInput.js +143 -0
- package/inputs/DateInput/Day.d.ts +32 -0
- package/inputs/DateInput/Day.js +33 -0
- package/inputs/DateInput/InfiniteList.d.ts +26 -0
- package/inputs/DateInput/InfiniteList.js +87 -0
- package/inputs/DateInput/Nav.d.ts +11 -0
- package/inputs/DateInput/Nav.js +24 -0
- package/inputs/DateInput/Navbar.d.ts +16 -0
- package/inputs/DateInput/Navbar.js +33 -0
- package/inputs/DateInput/NumericInput.d.ts +14 -0
- package/inputs/DateInput/NumericInput.js +48 -0
- package/inputs/DateInput/Selector.d.ts +47 -0
- package/inputs/DateInput/Selector.js +55 -0
- package/inputs/DateInput/SimpleList.d.ts +19 -0
- package/inputs/DateInput/SimpleList.js +31 -0
- package/inputs/Dropdown/Body.d.ts +25 -0
- package/inputs/Dropdown/Body.js +14 -0
- package/inputs/Dropdown/Column.d.ts +21 -0
- package/inputs/Dropdown/Column.js +6 -0
- package/inputs/Dropdown/Dropdown.d.ts +136 -0
- package/inputs/Dropdown/Dropdown.js +446 -0
- package/inputs/Dropdown/Selection.d.ts +11 -0
- package/inputs/Dropdown/Selection.js +23 -0
- package/inputs/Dropdown/Selector.d.ts +29 -0
- package/inputs/Dropdown/Selector.js +16 -0
- package/inputs/Editor/Editor.d.ts +45 -0
- package/inputs/Editor/Editor.js +60 -0
- package/inputs/Editor/buttons/BoldButton.d.ts +7 -0
- package/inputs/Editor/buttons/BoldButton.js +7 -0
- package/inputs/Editor/buttons/BulletListButton.d.ts +7 -0
- package/inputs/Editor/buttons/BulletListButton.js +7 -0
- package/inputs/Editor/buttons/CodeBlockButton.d.ts +7 -0
- package/inputs/Editor/buttons/CodeBlockButton.js +7 -0
- package/inputs/Editor/buttons/CodeButton.d.ts +7 -0
- package/inputs/Editor/buttons/CodeButton.js +7 -0
- package/inputs/Editor/buttons/ItalicButton.d.ts +7 -0
- package/inputs/Editor/buttons/ItalicButton.js +7 -0
- package/inputs/Editor/buttons/OrderedListButton.d.ts +7 -0
- package/inputs/Editor/buttons/OrderedListButton.js +7 -0
- package/inputs/Editor/buttons/StrikethroughButton.d.ts +7 -0
- package/inputs/Editor/buttons/StrikethroughButton.js +7 -0
- package/inputs/Editor/menu/MenuBar.d.ts +9 -0
- package/inputs/Editor/menu/MenuBar.js +44 -0
- package/inputs/Editor/menu/MenuButton.d.ts +35 -0
- package/inputs/Editor/menu/MenuButton.js +34 -0
- package/inputs/Editor/menu/MenuSeparator.d.ts +7 -0
- package/inputs/Editor/menu/MenuSeparator.js +24 -0
- package/inputs/Input/Clear.d.ts +7 -0
- package/inputs/Input/Clear.js +14 -0
- package/inputs/Input/Input.d.ts +133 -0
- package/inputs/Input/Input.js +64 -0
- package/inputs/Input/InputWrapper.d.ts +23 -0
- package/inputs/Input/InputWrapper.js +57 -0
- package/inputs/Input/index.d.ts +1 -0
- package/inputs/Input/index.js +1 -0
- package/inputs/Selector/ISelectorProps.d.ts +29 -0
- package/inputs/Selector/ISelectorProps.js +1 -0
- package/inputs/Selector/Selector.d.ts +29 -0
- package/inputs/Selector/Selector.js +77 -0
- package/inputs/Selector/index.d.ts +1 -0
- package/inputs/Selector/index.js +1 -0
- package/inputs/Selector/widgets/Checkbox.d.ts +6 -0
- package/inputs/Selector/widgets/Checkbox.js +29 -0
- package/inputs/Selector/widgets/Toggle.d.ts +6 -0
- package/inputs/Selector/widgets/Toggle.js +24 -0
- package/inputs/Slider/Slider.d.ts +63 -0
- package/inputs/Slider/Slider.js +198 -0
- package/inputs/Textarea/Textarea.d.ts +79 -0
- package/inputs/Textarea/Textarea.js +65 -0
- package/main.js +32 -0
- package/map/Map/Map.d.ts +47 -0
- package/map/Map/Map.js +221 -0
- package/map/Map/index.d.ts +1 -0
- package/map/Map/index.js +1 -0
- package/map/PositionsManager/PositionBox.d.ts +14 -0
- package/map/PositionsManager/PositionBox.js +86 -0
- package/map/PositionsManager/PositionsManager.d.ts +27 -0
- package/map/PositionsManager/PositionsManager.js +99 -0
- package/map/controls/CompassButton/CompassButton.d.ts +33 -0
- package/map/controls/CompassButton/CompassButton.js +88 -0
- package/map/controls/FullscreenButton/FullscreenButton.d.ts +21 -0
- package/map/controls/FullscreenButton/FullscreenButton.js +62 -0
- package/map/controls/Geocoder/Geocoder.d.ts +49 -0
- package/map/controls/Geocoder/Geocoder.js +179 -0
- package/map/controls/Geocoder/GeocoderApi.d.ts +59 -0
- package/map/controls/Geocoder/GeocoderApi.js +68 -0
- package/map/controls/Geocoder/GeocoderEntry.d.ts +15 -0
- package/map/controls/Geocoder/GeocoderEntry.js +18 -0
- package/map/controls/Geocoder/GeocoderList.d.ts +10 -0
- package/map/controls/Geocoder/GeocoderList.js +18 -0
- package/map/controls/Geocoder/GeocoderSelector.d.ts +16 -0
- package/map/controls/Geocoder/GeocoderSelector.js +25 -0
- package/map/controls/Graticule/Graticule.d.ts +35 -0
- package/map/controls/Graticule/Graticule.js +142 -0
- package/map/controls/MapLoader/MapLoader.d.ts +33 -0
- package/map/controls/MapLoader/MapLoader.js +73 -0
- package/map/controls/ScaleControl/ScaleControl.d.ts +24 -0
- package/map/controls/ScaleControl/ScaleControl.js +107 -0
- package/map/controls/ZoomInButton/ZoomInButton.d.ts +19 -0
- package/map/controls/ZoomInButton/ZoomInButton.js +56 -0
- package/map/controls/ZoomOutButton/ZoomOutButton.d.ts +19 -0
- package/map/controls/ZoomOutButton/ZoomOutButton.js +56 -0
- package/map/controls/base/MapButton/Hint.d.ts +17 -0
- package/map/controls/base/MapButton/Hint.js +34 -0
- package/map/controls/base/MapButton/MapButton.d.ts +46 -0
- package/map/controls/base/MapButton/MapButton.js +71 -0
- package/map/controls/base/MapButton/index.d.ts +1 -0
- package/map/controls/base/MapButton/index.js +1 -0
- package/map/controls/base/MapButtonGroup/MapButtonGroup.d.ts +17 -0
- package/map/controls/base/MapButtonGroup/MapButtonGroup.js +24 -0
- package/map/controls/base/MapControl/MapControl.d.ts +36 -0
- package/map/controls/base/MapControl/MapControl.js +77 -0
- package/map/controls/base/MapControl/index.d.ts +1 -0
- package/map/controls/base/MapControl/index.js +1 -0
- package/map/layers/ClusterLayer/ClusterLayer.d.ts +79 -0
- package/map/layers/ClusterLayer/ClusterLayer.js +118 -0
- package/map/layers/HtmlMarkerLayer/HtmlMarkerLayer.d.ts +51 -0
- package/map/layers/HtmlMarkerLayer/HtmlMarkerLayer.js +151 -0
- package/map/layers/InterpolationLayer/ContoursFragmentShader.d.ts +2 -0
- package/map/layers/InterpolationLayer/ContoursFragmentShader.js +2 -0
- package/map/layers/InterpolationLayer/ContoursVertexShader.d.ts +2 -0
- package/map/layers/InterpolationLayer/ContoursVertexShader.js +2 -0
- package/map/layers/InterpolationLayer/IGradientStop.d.ts +5 -0
- package/map/layers/InterpolationLayer/IGradientStop.js +1 -0
- package/map/layers/InterpolationLayer/InterpolationLayer.d.ts +35 -0
- package/map/layers/InterpolationLayer/InterpolationLayer.js +256 -0
- package/map/layers/InterpolationLayer/LevelsFragmentShader.d.ts +2 -0
- package/map/layers/InterpolationLayer/LevelsFragmentShader.js +2 -0
- package/map/layers/InterpolationLayer/LevelsVertexShader.d.ts +2 -0
- package/map/layers/InterpolationLayer/LevelsVertexShader.js +2 -0
- package/map/layers/ParticlesLayer/ParticlesFragmentShader.d.ts +2 -0
- package/map/layers/ParticlesLayer/ParticlesFragmentShader.js +2 -0
- package/map/layers/ParticlesLayer/ParticlesLayer.d.ts +40 -0
- package/map/layers/ParticlesLayer/ParticlesLayer.js +337 -0
- package/map/layers/ParticlesLayer/ParticlesVertexShader.d.ts +2 -0
- package/map/layers/ParticlesLayer/ParticlesVertexShader.js +2 -0
- package/map/layers/ParticlesLayer/UVFragmentShader.d.ts +2 -0
- package/map/layers/ParticlesLayer/UVFragmentShader.js +2 -0
- package/map/layers/ParticlesLayer/UVVertexShader.d.ts +2 -0
- package/map/layers/ParticlesLayer/UVVertexShader.js +2 -0
- package/map/markers/ClusterMarker/ClusterMarker.d.ts +36 -0
- package/map/markers/ClusterMarker/ClusterMarker.js +99 -0
- package/map/markers/ClusterMarker/index.d.ts +1 -0
- package/map/markers/ClusterMarker/index.js +1 -0
- package/map/markers/RiskMarker/RiskMarker.d.ts +22 -0
- package/map/markers/RiskMarker/RiskMarker.js +61 -0
- package/modules/MainMenu/Item.d.ts +42 -0
- package/modules/MainMenu/Item.js +94 -0
- package/modules/MainMenu/MainMenu.d.ts +20 -0
- package/modules/MainMenu/MainMenu.js +41 -0
- package/modules/MainMenu/index.d.ts +1 -0
- package/modules/MainMenu/index.js +1 -0
- package/modules/Root/Content.d.ts +16 -0
- package/modules/Root/Content.js +25 -0
- package/modules/Root/Overlay.d.ts +23 -0
- package/modules/Root/Overlay.js +33 -0
- package/modules/Root/Root.d.ts +7 -0
- package/modules/Root/Root.js +45 -0
- package/modules/Root/Shader.d.ts +15 -0
- package/modules/Root/Shader.js +24 -0
- package/modules/Root/Sidebar.d.ts +13 -0
- package/modules/Root/Sidebar.js +24 -0
- package/modules/Root/stories/SampleContent.d.ts +7 -0
- package/modules/Root/stories/SampleContent.js +44 -0
- package/package.json +64 -0
- package/services/Dialog/AlertDialog.d.ts +31 -0
- package/services/Dialog/AlertDialog.js +29 -0
- package/services/Dialog/ConfirmDialog.d.ts +34 -0
- package/services/Dialog/ConfirmDialog.js +30 -0
- package/services/Dialog/Dialog.d.ts +91 -0
- package/services/Dialog/Dialog.js +92 -0
- package/services/Dialog/DialogBackground.d.ts +7 -0
- package/services/Dialog/DialogBackground.js +12 -0
- package/services/Dialog/DialogContent.d.ts +25 -0
- package/services/Dialog/DialogContent.js +38 -0
- package/services/Dialog/DialogFooter.d.ts +24 -0
- package/services/Dialog/DialogFooter.js +50 -0
- package/services/Dialog/DialogHeader.d.ts +18 -0
- package/services/Dialog/DialogHeader.js +36 -0
- package/services/Dialog/DialogWindow.d.ts +13 -0
- package/services/Dialog/DialogWindow.js +12 -0
- package/services/Dialog/XhrDialog.d.ts +34 -0
- package/services/Dialog/XhrDialog.js +321 -0
- package/services/Toast/IToastMessage.d.ts +10 -0
- package/services/Toast/IToastMessage.js +1 -0
- package/services/Toast/IToastProps.d.ts +23 -0
- package/services/Toast/IToastProps.js +1 -0
- package/services/Toast/Toast.d.ts +21 -0
- package/services/Toast/Toast.js +79 -0
- package/services/Toast/ToastContainer.d.ts +40 -0
- package/services/Toast/ToastContainer.js +65 -0
- package/services/Toast/ToastContext.d.ts +22 -0
- package/services/Toast/ToastContext.js +7 -0
- package/services/Toast/ToastProvider.d.ts +19 -0
- package/services/Toast/ToastProvider.js +67 -0
- package/services/Toast/index.d.ts +2 -0
- package/services/Toast/index.js +2 -0
- package/services/Toast/useToast.d.ts +5 -0
- package/services/Toast/useToast.js +9 -0
- package/spritemap.svg +1 -0
- package/styles/NormalTheme.d.ts +3 -0
- package/styles/NormalTheme.js +65 -0
- package/styles/StyleBase.d.ts +2 -0
- package/styles/StyleBase.js +8 -0
- package/styles/StyleReset.d.ts +2 -0
- package/styles/StyleReset.js +8 -0
- package/svg/editor/index.d.ts +10 -0
- package/svg/editor/index.js +11 -0
- package/svg/file/index.d.ts +5 -0
- package/svg/file/index.js +6 -0
- package/svg/icons/index.d.ts +36 -0
- package/svg/icons/index.js +37 -0
- package/svg/index.d.ts +11 -0
- package/svg/index.js +5 -0
- package/svg/menu/index.d.ts +8 -0
- package/svg/menu/index.js +9 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Mouse';
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface IProps {
|
|
3
|
+
/** @ignore */
|
|
4
|
+
className?: string;
|
|
5
|
+
/** Button content. Can be JSX. */
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
/**
|
|
8
|
+
* A disabled button cannot be interacted with. this is implemented using
|
|
9
|
+
* `pointer-events: none`.
|
|
10
|
+
* @default false
|
|
11
|
+
*/
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* A `positive` button will have a color that indicates a _positive
|
|
15
|
+
* consequence_, taken from the theme (usually a shade of green).
|
|
16
|
+
* @default false
|
|
17
|
+
*/
|
|
18
|
+
positive?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* A `negative` button will have a color that indicates a _negative
|
|
21
|
+
* consequence_, taken from the theme (usually a shade of red).
|
|
22
|
+
* @default false
|
|
23
|
+
*/
|
|
24
|
+
negative?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* `color` can be used to set a custom button color. This is only used
|
|
27
|
+
* if `positive` and `negative` are not present. The color is a valid
|
|
28
|
+
* CSS color value, e.g. `rgba(100,100,100,200)`.
|
|
29
|
+
*/
|
|
30
|
+
color?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Optional browser tooltip to show when the button is hovered.
|
|
33
|
+
*/
|
|
34
|
+
title?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Path to an SVG symbol, e.g. `/sprites.svg#close`. The `SVG` enumeration
|
|
37
|
+
* exists that offers preset paths.
|
|
38
|
+
*/
|
|
39
|
+
icon?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The icon color defaults to the lightest neutral color, but can be
|
|
42
|
+
* overridden. This must be a valid CSS color value.
|
|
43
|
+
*/
|
|
44
|
+
iconColor?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Fired when the button is clicked.
|
|
47
|
+
*/
|
|
48
|
+
onClick: () => void;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Primary buttons denote the primary action. They may have icons or not and
|
|
52
|
+
* have three colors: `positive`, `negative`, and themed (the default).
|
|
53
|
+
* It renders as a `<button>` element.
|
|
54
|
+
*
|
|
55
|
+
* The `icon` name is passed in as a property. However, the other children of
|
|
56
|
+
* the button can be any React component.
|
|
57
|
+
*
|
|
58
|
+
* The color of the button defaults to a primary theme color, unless overridden
|
|
59
|
+
* with `positive`, `negative` or `color`. The button can be in a `disabled`
|
|
60
|
+
* state where it cannot be clicked.
|
|
61
|
+
*/
|
|
62
|
+
declare const PrimaryButton: ({ disabled, positive, negative, ...props }: IProps) => React.JSX.Element;
|
|
63
|
+
export { PrimaryButton, IProps };
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
var __assign = (this && this.__assign) || function () {
|
|
6
|
+
__assign = Object.assign || function(t) {
|
|
7
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
8
|
+
s = arguments[i];
|
|
9
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
10
|
+
t[p] = s[p];
|
|
11
|
+
}
|
|
12
|
+
return t;
|
|
13
|
+
};
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
17
|
+
var t = {};
|
|
18
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
19
|
+
t[p] = s[p];
|
|
20
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
21
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
22
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
23
|
+
t[p[i]] = s[p[i]];
|
|
24
|
+
}
|
|
25
|
+
return t;
|
|
26
|
+
};
|
|
27
|
+
import * as React from 'react';
|
|
28
|
+
import styled, { css } from 'styled-components';
|
|
29
|
+
import { darken } from '../../helper/darken';
|
|
30
|
+
var PrimaryButtonBase = function (props) {
|
|
31
|
+
var handleClick = function () {
|
|
32
|
+
if (props.disabled)
|
|
33
|
+
return;
|
|
34
|
+
if (props.onClick)
|
|
35
|
+
props.onClick();
|
|
36
|
+
};
|
|
37
|
+
return (React.createElement("button", { tabIndex: props.disabled ? -1 : 0, className: props.className, onClick: handleClick, title: props.title },
|
|
38
|
+
props.icon && React.createElement("svg", null,
|
|
39
|
+
React.createElement("use", { xlinkHref: props.icon })),
|
|
40
|
+
props.children));
|
|
41
|
+
};
|
|
42
|
+
var PrimaryButtonStyled = styled(PrimaryButtonBase).attrs(function (p) {
|
|
43
|
+
return {
|
|
44
|
+
backgroundColor: p.disabled ? p.theme.colors.neutral[80]
|
|
45
|
+
: p.positive ? p.theme.colors.positive
|
|
46
|
+
: p.negative ? p.theme.colors.negative
|
|
47
|
+
: p.color ? p.color
|
|
48
|
+
: p.theme.colors.primary[1],
|
|
49
|
+
outlineColor: (p.positive || p.negative) ? p.theme.colors.primary[1]
|
|
50
|
+
: p.theme.colors.accent
|
|
51
|
+
};
|
|
52
|
+
})(templateObject_2 || (templateObject_2 = __makeTemplateObject([" \n // Size:\n height: 56px;\n padding-left: 16px;\n padding-right: 16px;\n min-width: 90px;\n \n // Font:\n font: ", ";\n color: ", ";\n\n // Presentation:\n background-color: ", ";\n transition: \n background-color ease-in-out ", "ms, \n box-shadow ease-in-out ", "ms;\n border-radius: ", "px;\n border: none;\n cursor: pointer;\n user-select: none;\n outline: none;\n\n // Content:\n display: flex;\n align-items: center;\n white-space: nowrap;\n flex-wrap: nowrap; \n justify-content: center; \n gap: 12px;\n\n box-shadow: ", ";\n &:hover {\n background-color: ", ";\n box-shadow: ", ";\n }\n &:active {\n background-color: ", ";\n box-shadow: none;\n }\n &:focus {\n outline: solid 2px ", ";\n }\n \n svg {\n fill: ", ";\n width: 24px;\n height: 24px; \n }\n\n ", "\n"], [" \n // Size:\n height: 56px;\n padding-left: 16px;\n padding-right: 16px;\n min-width: 90px;\n \n // Font:\n font: ", ";\n color: ", ";\n\n // Presentation:\n background-color: ", ";\n transition: \n background-color ease-in-out ", "ms, \n box-shadow ease-in-out ", "ms;\n border-radius: ", "px;\n border: none;\n cursor: pointer;\n user-select: none;\n outline: none;\n\n // Content:\n display: flex;\n align-items: center;\n white-space: nowrap;\n flex-wrap: nowrap; \n justify-content: center; \n gap: 12px;\n\n box-shadow: ", ";\n &:hover {\n background-color: ", ";\n box-shadow: ", ";\n }\n &:active {\n background-color: ", ";\n box-shadow: none;\n }\n &:focus {\n outline: solid 2px ", ";\n }\n \n svg {\n fill: ", ";\n width: 24px;\n height: 24px; \n }\n\n ", "\n"
|
|
53
|
+
/**
|
|
54
|
+
* Primary buttons denote the primary action. They may have icons or not and
|
|
55
|
+
* have three colors: `positive`, `negative`, and themed (the default).
|
|
56
|
+
* It renders as a `<button>` element.
|
|
57
|
+
*
|
|
58
|
+
* The `icon` name is passed in as a property. However, the other children of
|
|
59
|
+
* the button can be any React component.
|
|
60
|
+
*
|
|
61
|
+
* The color of the button defaults to a primary theme color, unless overridden
|
|
62
|
+
* with `positive`, `negative` or `color`. The button can be in a `disabled`
|
|
63
|
+
* state where it cannot be clicked.
|
|
64
|
+
*/
|
|
65
|
+
])), function (p) { return p.theme.font.labelLarge; }, function (p) { return p.theme.colors.neutral[100]; }, function (p) { return p.backgroundColor; }, function (p) { return p.theme.animation.duration; }, function (p) { return p.theme.animation.duration; }, function (p) { return p.theme.radius.strong; }, function (p) { return p.theme.shadows.medium; }, function (p) { return darken(0.025, p.backgroundColor); }, function (p) { return p.theme.shadows.large; }, function (p) { return p.backgroundColor; }, function (p) { return p.outlineColor; }, function (p) { var _a; return (_a = p.iconColor) !== null && _a !== void 0 ? _a : p.theme.colors.neutral[100]; }, function (p) { return p.disabled && css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n cursor: auto;\n pointer-events: none;\n color: ", ";\n box-shadow: none;\n svg {\n fill: ", ";\n }\n "], ["\n cursor: auto;\n pointer-events: none;\n color: ", ";\n box-shadow: none;\n svg {\n fill: ", ";\n }\n "])), p.theme.colors.primary[3], p.theme.colors.primary[3]); });
|
|
66
|
+
/**
|
|
67
|
+
* Primary buttons denote the primary action. They may have icons or not and
|
|
68
|
+
* have three colors: `positive`, `negative`, and themed (the default).
|
|
69
|
+
* It renders as a `<button>` element.
|
|
70
|
+
*
|
|
71
|
+
* The `icon` name is passed in as a property. However, the other children of
|
|
72
|
+
* the button can be any React component.
|
|
73
|
+
*
|
|
74
|
+
* The color of the button defaults to a primary theme color, unless overridden
|
|
75
|
+
* with `positive`, `negative` or `color`. The button can be in a `disabled`
|
|
76
|
+
* state where it cannot be clicked.
|
|
77
|
+
*/
|
|
78
|
+
var PrimaryButton = function (_a) {
|
|
79
|
+
var _b = _a.disabled, disabled = _b === void 0 ? false : _b, _c = _a.positive, positive = _c === void 0 ? false : _c, _d = _a.negative, negative = _d === void 0 ? false : _d, props = __rest(_a, ["disabled", "positive", "negative"]);
|
|
80
|
+
return React.createElement(PrimaryButtonStyled, __assign({ disabled: disabled, positive: positive, negative: negative }, props));
|
|
81
|
+
};
|
|
82
|
+
export { PrimaryButton };
|
|
83
|
+
var templateObject_1, templateObject_2;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './PrimaryButton';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './PrimaryButton';
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface IProps {
|
|
3
|
+
/** @ignore */
|
|
4
|
+
className?: string;
|
|
5
|
+
/**
|
|
6
|
+
* Progress value (in range 0..100)
|
|
7
|
+
*/
|
|
8
|
+
value: number;
|
|
9
|
+
/**
|
|
10
|
+
* If set, a percentage number is shown on the Progress bar.
|
|
11
|
+
* @default false
|
|
12
|
+
*/
|
|
13
|
+
numbered?: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* A padded `Progress` has a margin around it (of 10px).
|
|
16
|
+
* @default false
|
|
17
|
+
*/
|
|
18
|
+
padded?: boolean;
|
|
19
|
+
/**
|
|
20
|
+
* Set progress bar thickness in pixels. Defaults to 5.
|
|
21
|
+
* @default 5
|
|
22
|
+
*/
|
|
23
|
+
thickness?: number;
|
|
24
|
+
/**
|
|
25
|
+
* If set, sets the color of the Progress bar. By default,
|
|
26
|
+
* the color is the theme primary color.
|
|
27
|
+
*/
|
|
28
|
+
color?: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* The Progress component shows a progress bar, filled to a percentage equal to
|
|
32
|
+
* value. The bar always stretches to fill all horizontal space available to it.
|
|
33
|
+
*/
|
|
34
|
+
declare const Progress: ({ thickness, numbered, padded, ...props }: IProps) => React.JSX.Element;
|
|
35
|
+
export { Progress, IProps };
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
var __assign = (this && this.__assign) || function () {
|
|
6
|
+
__assign = Object.assign || function(t) {
|
|
7
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
8
|
+
s = arguments[i];
|
|
9
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
10
|
+
t[p] = s[p];
|
|
11
|
+
}
|
|
12
|
+
return t;
|
|
13
|
+
};
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
17
|
+
var t = {};
|
|
18
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
19
|
+
t[p] = s[p];
|
|
20
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
21
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
22
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
23
|
+
t[p[i]] = s[p[i]];
|
|
24
|
+
}
|
|
25
|
+
return t;
|
|
26
|
+
};
|
|
27
|
+
import * as React from 'react';
|
|
28
|
+
import styled, { css } from 'styled-components';
|
|
29
|
+
var ProgressBase = function (props) {
|
|
30
|
+
return React.createElement("div", { className: props.className });
|
|
31
|
+
};
|
|
32
|
+
var ProgressStyled = styled(ProgressBase).attrs(function (p) { return ({
|
|
33
|
+
percentageStr: Math.round(Math.min(100, Math.max(0, p.value))).toString() + '%'
|
|
34
|
+
}); })(templateObject_3 || (templateObject_3 = __makeTemplateObject([" \n position: relative; \n box-sizing: border-box;\n height: ", "px;\n min-width: 100px;\n margin: 4px 0 4px 0;\n\n ", "\n background-color: ", ";\n border-radius: ", "px;\n \n &:before {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: ", ";\n height: 100%;\n box-sizing: border-box;\n transition: width ", "ms ease;\n background-color: ", ";\n border-radius: ", "px;\n }\n\n ", "\n"], [" \n position: relative; \n box-sizing: border-box;\n height: ", "px;\n min-width: 100px;\n margin: 4px 0 4px 0;\n\n ", "\n background-color: ", ";\n border-radius: ", "px;\n \n &:before {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: ", ";\n height: 100%;\n box-sizing: border-box;\n transition: width ", "ms ease;\n background-color: ", ";\n border-radius: ", "px;\n }\n\n ", "\n"
|
|
35
|
+
/**
|
|
36
|
+
* The Progress component shows a progress bar, filled to a percentage equal to
|
|
37
|
+
* value. The bar always stretches to fill all horizontal space available to it.
|
|
38
|
+
*/
|
|
39
|
+
])), function (p) { return p.thickness; }, function (p) { return p.padded && css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["margin: 10px;"], ["margin: 10px;"]))); }, function (p) { return p.theme.colors.neutral[50]; }, function (p) { return p.thickness / 2; }, function (p) { return p.value + '%'; }, function (p) { return p.theme.animation.duration * 2; }, function (p) { var _a; return (_a = p.color) !== null && _a !== void 0 ? _a : p.theme.colors.primary[1]; }, function (p) { return p.thickness / 2; }, function (p) { return p.numbered && css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n &:after {\n content: '", "';\n position: absolute;\n top: 50%;\n right: 50%;\n font-size: 8px;\n line-height: 0;\n color: ", ";\n text-shadow: 0px 0px 4px #000;\n }\n "], ["\n &:after {\n content: '", "';\n position: absolute;\n top: 50%;\n right: 50%;\n font-size: 8px;\n line-height: 0;\n color: ", ";\n text-shadow: 0px 0px 4px #000;\n }\n "])), p.percentageStr, function (p) { return p.theme.colors.neutral[100]; }); });
|
|
40
|
+
/**
|
|
41
|
+
* The Progress component shows a progress bar, filled to a percentage equal to
|
|
42
|
+
* value. The bar always stretches to fill all horizontal space available to it.
|
|
43
|
+
*/
|
|
44
|
+
var Progress = function (_a) {
|
|
45
|
+
var _b = _a.thickness, thickness = _b === void 0 ? 5 : _b, _c = _a.numbered, numbered = _c === void 0 ? false : _c, _d = _a.padded, padded = _d === void 0 ? false : _d, props = __rest(_a, ["thickness", "numbered", "padded"]);
|
|
46
|
+
return React.createElement(ProgressStyled, __assign({ thickness: thickness, numbered: numbered, padded: padded }, props));
|
|
47
|
+
};
|
|
48
|
+
export { Progress };
|
|
49
|
+
var templateObject_1, templateObject_2, templateObject_3;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface IProps {
|
|
3
|
+
/** @ignore */
|
|
4
|
+
className?: string;
|
|
5
|
+
/**
|
|
6
|
+
* A disabled button cannot be interacted with.
|
|
7
|
+
* @default false
|
|
8
|
+
*/
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Path to an SVG symbol, e.g. `/sprites.svg#close`. The `SVG` enumeration
|
|
12
|
+
* exists that offers preset paths.
|
|
13
|
+
*/
|
|
14
|
+
icon: string;
|
|
15
|
+
/**
|
|
16
|
+
* A `positive` button will have a color that indicates a _positive
|
|
17
|
+
* consequence_, taken from the theme (usually a shade of green).
|
|
18
|
+
* @default false
|
|
19
|
+
*/
|
|
20
|
+
positive?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* A `negative` button will have a color that indicates a _negative
|
|
23
|
+
* consequence_, taken from the theme (usually a shade of red).
|
|
24
|
+
* @default false
|
|
25
|
+
*/
|
|
26
|
+
negative?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* `color` can be used to set a custom button color. This is only used
|
|
29
|
+
* if `positive` and `negative` are not present. The color is a valid
|
|
30
|
+
* CSS color value, e.g. `rgba(100,100,100,200)`.
|
|
31
|
+
*/
|
|
32
|
+
color?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Optional browser tooltip to show when the button is hovered. This may
|
|
35
|
+
* be relevant since this type of button has no text.
|
|
36
|
+
*/
|
|
37
|
+
title?: string;
|
|
38
|
+
/**
|
|
39
|
+
* The icon color defaults to the lightest neutral color, but can be
|
|
40
|
+
* overridden. This must be a valid CSS color value.
|
|
41
|
+
*/
|
|
42
|
+
iconColor?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Fired when the button is clicked.
|
|
45
|
+
*/
|
|
46
|
+
onClick: () => void;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* The `SecondaryButton` is a small button that holds only an icon. It has no
|
|
50
|
+
* other content. It renders as a `<button>` element.
|
|
51
|
+
*
|
|
52
|
+
* The color of the button defaults to a neutral theme color, unless overridden
|
|
53
|
+
* with `positive`, `negative` or `color`.
|
|
54
|
+
*
|
|
55
|
+
* A `disabled` button cannot be clicked at all.
|
|
56
|
+
*/
|
|
57
|
+
declare const SecondaryButton: ({ disabled, positive, negative, ...props }: IProps) => React.JSX.Element;
|
|
58
|
+
export { SecondaryButton, IProps };
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
var __assign = (this && this.__assign) || function () {
|
|
6
|
+
__assign = Object.assign || function(t) {
|
|
7
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
8
|
+
s = arguments[i];
|
|
9
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
10
|
+
t[p] = s[p];
|
|
11
|
+
}
|
|
12
|
+
return t;
|
|
13
|
+
};
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
17
|
+
var t = {};
|
|
18
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
19
|
+
t[p] = s[p];
|
|
20
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
21
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
22
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
23
|
+
t[p[i]] = s[p[i]];
|
|
24
|
+
}
|
|
25
|
+
return t;
|
|
26
|
+
};
|
|
27
|
+
import * as React from 'react';
|
|
28
|
+
import styled, { css } from 'styled-components';
|
|
29
|
+
var SecondaryButtonBase = function (props) {
|
|
30
|
+
var handleClick = function () {
|
|
31
|
+
if (props.disabled)
|
|
32
|
+
return;
|
|
33
|
+
if (props.onClick)
|
|
34
|
+
props.onClick();
|
|
35
|
+
};
|
|
36
|
+
return (React.createElement("button", { tabIndex: props.disabled ? -1 : 0, className: props.className, onClick: handleClick, title: props.title },
|
|
37
|
+
React.createElement("svg", null,
|
|
38
|
+
React.createElement("use", { xlinkHref: props.icon }))));
|
|
39
|
+
};
|
|
40
|
+
var SecondaryButtonStyled = styled(SecondaryButtonBase).attrs(function (p) {
|
|
41
|
+
return {
|
|
42
|
+
backgroundColor: p.disabled ? p.theme.colors.neutral[50]
|
|
43
|
+
: p.positive ? p.theme.colors.positive
|
|
44
|
+
: p.negative ? p.theme.colors.negative
|
|
45
|
+
: p.color ? p.color
|
|
46
|
+
: p.theme.colors.neutral[10]
|
|
47
|
+
};
|
|
48
|
+
})(templateObject_3 || (templateObject_3 = __makeTemplateObject([" \n // Size:\n height: 32px;\n width: 32px;\n\n // Presentation:\n background-color: ", ";\n // (Note that there is no hover state.)\n transition: \n background-color ease-in-out ", "ms, \n box-shadow ease-in-out ", "ms;\n border-radius: ", "px;\n border: none;\n cursor: pointer;\n user-select: none;\n outline: none;\n box-shadow: ", ";\n\n // Content alignment:\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n white-space: nowrap;\n\n &:hover {\n box-shadow: ", ";\n }\n\n &:focus {\n outline: solid 2px ", ";\n }\n\n // Button changes background & inset dropshadow when pressed:\n &:active {\n // Button background stays the same in case of color buttons:\n ", "\n box-shadow: none;\n }\n\n svg {\n fill: ", ";\n width: 13px;\n height: 13px;\n } \n\n ", "\n"], [" \n // Size:\n height: 32px;\n width: 32px;\n\n // Presentation:\n background-color: ", ";\n // (Note that there is no hover state.)\n transition: \n background-color ease-in-out ", "ms, \n box-shadow ease-in-out ", "ms;\n border-radius: ", "px;\n border: none;\n cursor: pointer;\n user-select: none;\n outline: none;\n box-shadow: ", ";\n\n // Content alignment:\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n white-space: nowrap;\n\n &:hover {\n box-shadow: ", ";\n }\n\n &:focus {\n outline: solid 2px ", ";\n }\n\n // Button changes background & inset dropshadow when pressed:\n &:active {\n // Button background stays the same in case of color buttons:\n ", "\n box-shadow: none;\n }\n\n svg {\n fill: ", ";\n width: 13px;\n height: 13px;\n } \n\n ", "\n"
|
|
49
|
+
/**
|
|
50
|
+
* The `SecondaryButton` is a small button that holds only an icon. It has no
|
|
51
|
+
* other content. It renders as a `<button>` element.
|
|
52
|
+
*
|
|
53
|
+
* The color of the button defaults to a neutral theme color, unless overridden
|
|
54
|
+
* with `positive`, `negative` or `color`.
|
|
55
|
+
*
|
|
56
|
+
* A `disabled` button cannot be clicked at all.
|
|
57
|
+
*/
|
|
58
|
+
])), function (p) { return p.backgroundColor; }, function (p) { return p.theme.animation.duration; }, function (p) { return p.theme.animation.duration; }, function (p) { return p.theme.radius.normal; }, function (p) { return p.theme.shadows.small; }, function (p) { return p.theme.shadows.medium; }, function (p) { return p.theme.colors.primary[1]; }, function (p) { return !p.positive && !p.negative && !p.color && css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["background-color: ", ";"], ["background-color: ", ";"])), p.theme.colors.neutral[10]); }, function (p) { var _a; return (_a = p.iconColor) !== null && _a !== void 0 ? _a : p.theme.colors.neutral[100]; }, function (p) { return p.disabled && css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n cursor: auto;\n pointer-events: none;\n box-shadow: none;\n svg {\n fill: ", ";\n }\n "], ["\n cursor: auto;\n pointer-events: none;\n box-shadow: none;\n svg {\n fill: ", ";\n }\n "])), p.theme.colors.primary[3]); });
|
|
59
|
+
/**
|
|
60
|
+
* The `SecondaryButton` is a small button that holds only an icon. It has no
|
|
61
|
+
* other content. It renders as a `<button>` element.
|
|
62
|
+
*
|
|
63
|
+
* The color of the button defaults to a neutral theme color, unless overridden
|
|
64
|
+
* with `positive`, `negative` or `color`.
|
|
65
|
+
*
|
|
66
|
+
* A `disabled` button cannot be clicked at all.
|
|
67
|
+
*/
|
|
68
|
+
var SecondaryButton = function (_a) {
|
|
69
|
+
var _b = _a.disabled, disabled = _b === void 0 ? false : _b, _c = _a.positive, positive = _c === void 0 ? false : _c, _d = _a.negative, negative = _d === void 0 ? false : _d, props = __rest(_a, ["disabled", "positive", "negative"]);
|
|
70
|
+
return React.createElement(SecondaryButtonStyled, __assign({ disabled: disabled, positive: positive, negative: negative }, props));
|
|
71
|
+
};
|
|
72
|
+
export { SecondaryButton };
|
|
73
|
+
var templateObject_1, templateObject_2, templateObject_3;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './SecondaryButton';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './SecondaryButton';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface IProps {
|
|
3
|
+
/** @ignore */
|
|
4
|
+
className?: string;
|
|
5
|
+
/** @ignore */
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
/**
|
|
8
|
+
* Is this tab currently active?
|
|
9
|
+
*/
|
|
10
|
+
active?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Tabs use a fluid width. A fixed width (in pixels) can be provided.
|
|
13
|
+
*/
|
|
14
|
+
tabWidth?: number;
|
|
15
|
+
/**
|
|
16
|
+
* Fired when tab is clicked.
|
|
17
|
+
*/
|
|
18
|
+
onClick?: () => void;
|
|
19
|
+
}
|
|
20
|
+
declare const Tab: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLDivElement>>;
|
|
21
|
+
export { Tab, IProps };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
var __assign = (this && this.__assign) || function () {
|
|
6
|
+
__assign = Object.assign || function(t) {
|
|
7
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
8
|
+
s = arguments[i];
|
|
9
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
10
|
+
t[p] = s[p];
|
|
11
|
+
}
|
|
12
|
+
return t;
|
|
13
|
+
};
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
import * as React from 'react';
|
|
17
|
+
import styled, { css } from 'styled-components';
|
|
18
|
+
var TabBase = React.forwardRef(function (props, ref) {
|
|
19
|
+
return React.createElement("div", { className: props.className, ref: ref, onClick: props.onClick }, props.children);
|
|
20
|
+
});
|
|
21
|
+
var TabStyled = styled(TabBase)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n display: table-cell;\n vertical-align: middle;\n text-align: center;\n white-space: nowrap;\n padding: 0 20px;\n\n font: ", ";\n box-sizing: border-box;\n ", "\n height: 40px;\n z-index: 1;\n cursor: pointer;\n color: ", ";\n transition: color ", "ms ease-in-out;\n\n /* User cannot select header text.\n * This prevents accidental selection when clicking the tab.\n */\n user-select: none; \n\n ", " \n &:hover {\n color: ", ";\n }\n"], ["\n display: table-cell;\n vertical-align: middle;\n text-align: center;\n white-space: nowrap;\n padding: 0 20px;\n\n font: ", ";\n box-sizing: border-box;\n ", "\n height: 40px;\n z-index: 1;\n cursor: pointer;\n color: ", ";\n transition: color ", "ms ease-in-out;\n\n /* User cannot select header text.\n * This prevents accidental selection when clicking the tab.\n */\n user-select: none; \n\n ", " \n &:hover {\n color: ", ";\n }\n"])), function (p) { return p.theme.font.labelLarge; }, function (p) { return p.tabWidth && css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["min-width: ", "px;"], ["min-width: ", "px;"])), p.tabWidth); }, function (p) { return p.theme.colors.neutral[80]; }, function (p) { return p.theme.animation.duration; }, function (p) { return p.active && css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n color: ", ";\n "], ["\n color: ", ";\n "])), function (p) { return p.theme.colors.neutral[100]; }); }, function (p) { return p.theme.colors.neutral[100]; });
|
|
22
|
+
var Tab = React.forwardRef(function (props, ref) { return React.createElement(TabStyled, __assign({ ref: ref }, props)); });
|
|
23
|
+
Tab.displayName = "TabBar.Tab";
|
|
24
|
+
export { Tab };
|
|
25
|
+
var templateObject_1, templateObject_2, templateObject_3;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface IProps {
|
|
3
|
+
/** @ignore */
|
|
4
|
+
className?: string;
|
|
5
|
+
/**
|
|
6
|
+
* Children must be of type `TabBar.Tab`.
|
|
7
|
+
*/
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
/**
|
|
10
|
+
* Index of the active tab.
|
|
11
|
+
* @default 0
|
|
12
|
+
*/
|
|
13
|
+
active?: number;
|
|
14
|
+
/**
|
|
15
|
+
* Tabs use a fluid width. A fixed width (in pixels) can be provided.
|
|
16
|
+
*/
|
|
17
|
+
tabWidth?: number;
|
|
18
|
+
/**
|
|
19
|
+
* Fired when the active tab changes. `idx` is the index of the new tab.
|
|
20
|
+
*/
|
|
21
|
+
onChange?: (idx: number) => void;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* A `TabBar` presents an array of `TabBar.Tab` children in a horizontal bar,
|
|
25
|
+
* with an underliner under the active child. The `onClick(idx)` event is fired
|
|
26
|
+
* when a tab is clicked.
|
|
27
|
+
*
|
|
28
|
+
* This is just a `TabBar`; if you need tabs and panes, use the `Tab` container.
|
|
29
|
+
*/
|
|
30
|
+
declare const TabBar: {
|
|
31
|
+
({ active, ...props }: IProps): React.JSX.Element;
|
|
32
|
+
Tab: React.ForwardRefExoticComponent<import("./Tab").IProps & React.RefAttributes<HTMLDivElement>>;
|
|
33
|
+
};
|
|
34
|
+
export { TabBar };
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
var __assign = (this && this.__assign) || function () {
|
|
6
|
+
__assign = Object.assign || function(t) {
|
|
7
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
8
|
+
s = arguments[i];
|
|
9
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
10
|
+
t[p] = s[p];
|
|
11
|
+
}
|
|
12
|
+
return t;
|
|
13
|
+
};
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
17
|
+
var t = {};
|
|
18
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
19
|
+
t[p] = s[p];
|
|
20
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
21
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
22
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
23
|
+
t[p[i]] = s[p[i]];
|
|
24
|
+
}
|
|
25
|
+
return t;
|
|
26
|
+
};
|
|
27
|
+
import * as React from 'react';
|
|
28
|
+
import styled from 'styled-components';
|
|
29
|
+
import { Tab } from './Tab';
|
|
30
|
+
import { Underliner } from './Underliner';
|
|
31
|
+
var TabBarBase = function (props) {
|
|
32
|
+
// TabBar keeps its own internal "active" index state.
|
|
33
|
+
var _a = React.useState(props.active), active = _a[0], setActive = _a[1];
|
|
34
|
+
var underlinerRef = React.useRef(null);
|
|
35
|
+
var barRef = React.useRef(null);
|
|
36
|
+
var sliderRef = React.useRef(null);
|
|
37
|
+
var dragging = React.useRef(false);
|
|
38
|
+
var mouseX = React.useRef(0);
|
|
39
|
+
var startX = React.useRef(0);
|
|
40
|
+
var handleMouseDown = function (e) {
|
|
41
|
+
dragging.current = true;
|
|
42
|
+
// We store the current mouse position on the screen,
|
|
43
|
+
// as well as the current scroll position of the slider.
|
|
44
|
+
mouseX.current = e.screenX;
|
|
45
|
+
startX.current = sliderRef.current.offsetLeft;
|
|
46
|
+
};
|
|
47
|
+
var handleMouseMove = function (event) {
|
|
48
|
+
if (!dragging.current)
|
|
49
|
+
return;
|
|
50
|
+
// Use the current mouse position to determine the
|
|
51
|
+
// new scroll position of the slider.
|
|
52
|
+
var dMouse = event.screenX - mouseX.current;
|
|
53
|
+
var x = startX.current + dMouse; // x is always a negative offset.
|
|
54
|
+
// Check scroll bounds:
|
|
55
|
+
if (x > 0)
|
|
56
|
+
x = 0;
|
|
57
|
+
var width = sliderRef.current.offsetWidth - barRef.current.offsetWidth;
|
|
58
|
+
if (x < -width)
|
|
59
|
+
x = -width;
|
|
60
|
+
// Apply new scroll position:
|
|
61
|
+
sliderRef.current.style.left = "".concat(x, "px");
|
|
62
|
+
};
|
|
63
|
+
var handleMouseUp = function (event) {
|
|
64
|
+
dragging.current = false;
|
|
65
|
+
};
|
|
66
|
+
React.useEffect(function () {
|
|
67
|
+
// Listen for document-wide mouseup/mousemove events when TabBar mounts.
|
|
68
|
+
document.addEventListener('mousemove', handleMouseMove);
|
|
69
|
+
document.addEventListener('mouseup', handleMouseUp);
|
|
70
|
+
// Use refs to tabs to move underliner to initial position.
|
|
71
|
+
moveUnderliner();
|
|
72
|
+
return function () {
|
|
73
|
+
// Clean up document-wide mouseup/mousemove events when Dropdown unmounts.
|
|
74
|
+
document.removeEventListener('mousemove', handleMouseMove);
|
|
75
|
+
document.removeEventListener('mouseup', handleMouseUp);
|
|
76
|
+
};
|
|
77
|
+
}, []);
|
|
78
|
+
React.useEffect(function () {
|
|
79
|
+
moveUnderliner();
|
|
80
|
+
}, [active]);
|
|
81
|
+
React.useEffect(function () {
|
|
82
|
+
setActive(props.active);
|
|
83
|
+
}, [props.active]);
|
|
84
|
+
// Use refs to move underliner under active tab.
|
|
85
|
+
var moveUnderliner = function () {
|
|
86
|
+
var _a = sliderRef.current.children[active], offsetLeft = _a.offsetLeft, offsetWidth = _a.offsetWidth;
|
|
87
|
+
if (underlinerRef) {
|
|
88
|
+
underlinerRef.current.style.left = "".concat(offsetLeft, "px");
|
|
89
|
+
underlinerRef.current.style.width = "".concat(offsetWidth, "px");
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
var handleTabClick = function (idx) {
|
|
93
|
+
// Only of interest if active tab changes.
|
|
94
|
+
if (idx == active)
|
|
95
|
+
return;
|
|
96
|
+
setActive(idx);
|
|
97
|
+
if (props.onChange)
|
|
98
|
+
props.onChange(idx);
|
|
99
|
+
};
|
|
100
|
+
return (React.createElement("div", { className: props.className, ref: barRef },
|
|
101
|
+
React.createElement(Slider, { ref: sliderRef, onMouseDown: handleMouseDown },
|
|
102
|
+
React.Children.map(props.children, function (child, idx) {
|
|
103
|
+
return React.cloneElement(child, {
|
|
104
|
+
active: active == idx,
|
|
105
|
+
tabWidth: props.tabWidth,
|
|
106
|
+
onClick: function () { return handleTabClick(idx); }
|
|
107
|
+
});
|
|
108
|
+
}),
|
|
109
|
+
React.createElement(Underliner, { ref: underlinerRef }))));
|
|
110
|
+
};
|
|
111
|
+
var Slider = styled.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: absolute;\n left: 0;\n top: 0;\n width: auto !important;\n min-width: 100%;\n height: 40px;\n box-sizing: border-box;\n display: block;\n border-bottom: solid 1px ", ";\n"], ["\n position: absolute;\n left: 0;\n top: 0;\n width: auto !important;\n min-width: 100%;\n height: 40px;\n box-sizing: border-box;\n display: block;\n border-bottom: solid 1px ", ";\n"])), function (p) { return p.theme.colors.neutral[80]; });
|
|
112
|
+
var TabBarStyled = styled(TabBarBase)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n position: relative;\n display: block;\n height: 40px;\n min-height: 40px;\n overflow-x: hidden;\n overflow-y: hidden;\n"], ["\n position: relative;\n display: block;\n height: 40px;\n min-height: 40px;\n overflow-x: hidden;\n overflow-y: hidden;\n"
|
|
113
|
+
/**
|
|
114
|
+
* A `TabBar` presents an array of `TabBar.Tab` children in a horizontal bar,
|
|
115
|
+
* with an underliner under the active child. The `onClick(idx)` event is fired
|
|
116
|
+
* when a tab is clicked.
|
|
117
|
+
*
|
|
118
|
+
* This is just a `TabBar`; if you need tabs and panes, use the `Tab` container.
|
|
119
|
+
*/
|
|
120
|
+
])));
|
|
121
|
+
/**
|
|
122
|
+
* A `TabBar` presents an array of `TabBar.Tab` children in a horizontal bar,
|
|
123
|
+
* with an underliner under the active child. The `onClick(idx)` event is fired
|
|
124
|
+
* when a tab is clicked.
|
|
125
|
+
*
|
|
126
|
+
* This is just a `TabBar`; if you need tabs and panes, use the `Tab` container.
|
|
127
|
+
*/
|
|
128
|
+
var TabBar = function (_a) {
|
|
129
|
+
var _b = _a.active, active = _b === void 0 ? 0 : _b, props = __rest(_a, ["active"]);
|
|
130
|
+
return React.createElement(TabBarStyled, __assign({ active: active }, props));
|
|
131
|
+
};
|
|
132
|
+
TabBar.Tab = Tab;
|
|
133
|
+
export { TabBar };
|
|
134
|
+
var templateObject_1, templateObject_2;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
var __assign = (this && this.__assign) || function () {
|
|
6
|
+
__assign = Object.assign || function(t) {
|
|
7
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
8
|
+
s = arguments[i];
|
|
9
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
10
|
+
t[p] = s[p];
|
|
11
|
+
}
|
|
12
|
+
return t;
|
|
13
|
+
};
|
|
14
|
+
return __assign.apply(this, arguments);
|
|
15
|
+
};
|
|
16
|
+
import * as React from 'react';
|
|
17
|
+
import styled from 'styled-components';
|
|
18
|
+
var UnderlinerBase = React.forwardRef(function (props, ref) {
|
|
19
|
+
return React.createElement("div", { className: props.className, ref: ref });
|
|
20
|
+
});
|
|
21
|
+
/**
|
|
22
|
+
* Underliner passes a reference to itself back to its parent.
|
|
23
|
+
*/
|
|
24
|
+
var UnderlinerStyled = styled(UnderlinerBase)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n position: absolute;\n left: 0;\n top: 38px;\n width: 0px;\n height: 0px;\n border-top: solid 4px ", ";\n box-sizing: border-box;\n transition: left ease .3s, width ease .3s;\n"], ["\n position: absolute;\n left: 0;\n top: 38px;\n width: 0px;\n height: 0px;\n border-top: solid 4px ", ";\n box-sizing: border-box;\n transition: left ease .3s, width ease .3s;\n"])), function (p) { return p.theme.colors.primary[1]; });
|
|
25
|
+
var Underliner = React.forwardRef(function (props, ref) { return React.createElement(UnderlinerStyled, __assign({ ref: ref }, props)); });
|
|
26
|
+
export { Underliner };
|
|
27
|
+
var templateObject_1;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './TabBar';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './TabBar';
|