@dbcdk/react-components 0.0.169 → 0.0.171
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/dist/assets/logo.cjs +87 -0
- package/dist/assets/logo.d.ts +2 -0
- package/dist/assets/logo.js +85 -0
- package/dist/client.cjs +629 -0
- package/dist/client.d.ts +89 -0
- package/dist/client.js +90 -0
- package/dist/components/accordion/Accordion.cjs +127 -0
- package/dist/components/accordion/Accordion.d.ts +36 -0
- package/dist/components/accordion/Accordion.js +121 -0
- package/dist/components/accordion/Accordion.module.css +41 -0
- package/dist/components/accordion/components/AccordionRow.cjs +129 -0
- package/dist/components/accordion/components/AccordionRow.d.ts +14 -0
- package/dist/components/accordion/components/AccordionRow.js +123 -0
- package/dist/components/accordion/components/AccordionRow.module.css +129 -0
- package/dist/components/alert/Alert.cjs +52 -0
- package/dist/components/alert/Alert.d.ts +14 -0
- package/dist/components/alert/Alert.js +46 -0
- package/dist/components/alert/Alert.module.css +102 -0
- package/dist/components/app-header/AppHeader.cjs +14 -0
- package/dist/components/app-header/AppHeader.d.ts +8 -0
- package/dist/components/app-header/AppHeader.js +8 -0
- package/dist/components/app-header/AppHeader.module.css +74 -0
- package/dist/components/attribute-chip/AttributeChip.cjs +36 -0
- package/dist/components/attribute-chip/AttributeChip.d.ts +11 -0
- package/dist/components/attribute-chip/AttributeChip.js +30 -0
- package/dist/components/attribute-chip/AttributeChip.module.css +64 -0
- package/dist/components/avatar/Avatar.cjs +111 -0
- package/dist/components/avatar/Avatar.d.ts +17 -0
- package/dist/components/avatar/Avatar.js +86 -0
- package/dist/components/avatar/Avatar.module.css +91 -0
- package/dist/components/breadcrumbs/Breadcrumbs.cjs +24 -0
- package/dist/components/breadcrumbs/Breadcrumbs.d.ts +12 -0
- package/dist/components/breadcrumbs/Breadcrumbs.js +18 -0
- package/dist/components/breadcrumbs/Breadcrumbs.module.css +77 -0
- package/dist/components/button/Button.cjs +150 -0
- package/dist/components/button/Button.d.ts +18 -0
- package/dist/components/button/Button.js +125 -0
- package/dist/components/button/Button.module.css +266 -0
- package/dist/components/button-select/ButtonSelect.cjs +35 -0
- package/dist/components/button-select/ButtonSelect.d.ts +16 -0
- package/dist/components/button-select/ButtonSelect.js +29 -0
- package/dist/components/button-select/ButtonSelect.module.css +40 -0
- package/dist/components/card/Card.cjs +109 -0
- package/dist/components/card/Card.d.ts +37 -0
- package/dist/components/card/Card.js +103 -0
- package/dist/components/card/Card.module.css +191 -0
- package/dist/components/card/components/CardMeta.cjs +62 -0
- package/dist/components/card/components/CardMeta.d.ts +16 -0
- package/dist/components/card/components/CardMeta.js +55 -0
- package/dist/components/card/components/CardMeta.module.css +55 -0
- package/dist/components/card-container/CardContainer.cjs +34 -0
- package/dist/components/card-container/CardContainer.d.ts +12 -0
- package/dist/components/card-container/CardContainer.js +28 -0
- package/dist/components/card-container/CardContainer.module.css +63 -0
- package/dist/components/chip/Chip.cjs +65 -0
- package/dist/components/chip/Chip.d.ts +16 -0
- package/dist/components/chip/Chip.js +59 -0
- package/dist/components/chip/Chip.module.css +247 -0
- package/dist/components/circle/Circle.cjs +39 -0
- package/dist/components/circle/Circle.d.ts +14 -0
- package/dist/components/circle/Circle.js +33 -0
- package/dist/components/circle/Circle.module.css +138 -0
- package/dist/components/clear-button/ClearButton.cjs +33 -0
- package/dist/components/clear-button/ClearButton.d.ts +8 -0
- package/dist/components/clear-button/ClearButton.js +27 -0
- package/dist/components/clear-button/ClearButton.module.css +26 -0
- package/dist/components/code-block/CodeBlock.cjs +107 -0
- package/dist/components/code-block/CodeBlock.d.ts +11 -0
- package/dist/components/code-block/CodeBlock.js +101 -0
- package/dist/components/code-block/CodeBlock.module.css +135 -0
- package/dist/components/copy-button/CopyButton.cjs +139 -0
- package/dist/components/copy-button/CopyButton.d.ts +13 -0
- package/dist/components/copy-button/CopyButton.js +133 -0
- package/dist/components/copy-button/CopyButton.module.css +22 -0
- package/dist/components/datetime-picker/DateTimePicker.cjs +563 -0
- package/dist/components/datetime-picker/DateTimePicker.d.ts +66 -0
- package/dist/components/datetime-picker/DateTimePicker.js +557 -0
- package/dist/components/datetime-picker/DateTimePicker.module.css +155 -0
- package/dist/components/datetime-picker/dateTimeHelpers.cjs +185 -0
- package/dist/components/datetime-picker/dateTimeHelpers.d.ts +37 -0
- package/dist/components/datetime-picker/dateTimeHelpers.js +166 -0
- package/dist/components/divider/Divider.cjs +22 -0
- package/dist/components/divider/Divider.d.ts +5 -0
- package/dist/components/divider/Divider.js +20 -0
- package/dist/components/environment-banner/EnvironmentBanner.cjs +20 -0
- package/dist/components/environment-banner/EnvironmentBanner.d.ts +13 -0
- package/dist/components/environment-banner/EnvironmentBanner.js +14 -0
- package/dist/components/environment-banner/EnvironmentBanner.module.css +54 -0
- package/dist/components/filter-field/FilterField.cjs +324 -0
- package/dist/components/filter-field/FilterField.d.ts +39 -0
- package/dist/components/filter-field/FilterField.js +317 -0
- package/dist/components/filter-field/FilterField.module.css +304 -0
- package/dist/components/filtering/chip-multi-toggle/ChipMultiToggle.cjs +115 -0
- package/dist/components/filtering/chip-multi-toggle/ChipMultiToggle.d.ts +35 -0
- package/dist/components/filtering/chip-multi-toggle/ChipMultiToggle.js +108 -0
- package/dist/components/filtering/chip-multi-toggle/ChipMultiToggle.module.css +59 -0
- package/dist/components/forms/checkbox/Checkbox.cjs +99 -0
- package/dist/components/forms/checkbox/Checkbox.d.ts +39 -0
- package/dist/components/forms/checkbox/Checkbox.js +93 -0
- package/dist/components/forms/checkbox/Checkbox.module.css +110 -0
- package/dist/components/forms/checkbox-group/CheckboxGroup.cjs +121 -0
- package/dist/components/forms/checkbox-group/CheckboxGroup.d.ts +47 -0
- package/dist/components/forms/checkbox-group/CheckboxGroup.js +115 -0
- package/dist/components/forms/checkbox-group/CheckboxGroup.module.css +115 -0
- package/dist/components/forms/file-upload/FileUpload.cjs +127 -0
- package/dist/components/forms/file-upload/FileUpload.d.ts +18 -0
- package/dist/components/forms/file-upload/FileUpload.js +121 -0
- package/dist/components/forms/file-upload/FileUpload.module.css +75 -0
- package/dist/components/forms/form-select/FormSelect.cjs +191 -0
- package/dist/components/forms/form-select/FormSelect.d.ts +35 -0
- package/dist/components/forms/form-select/FormSelect.js +166 -0
- package/dist/components/forms/form-select/FormSelect.module.css +236 -0
- package/dist/components/forms/input/Input.cjs +190 -0
- package/dist/components/forms/input/Input.d.ts +37 -0
- package/dist/components/forms/input/Input.js +184 -0
- package/dist/components/forms/input/Input.module.css +478 -0
- package/dist/components/forms/input-container/InputContainer.cjs +72 -0
- package/dist/components/forms/input-container/InputContainer.d.ts +18 -0
- package/dist/components/forms/input-container/InputContainer.js +66 -0
- package/dist/components/forms/input-container/InputContainer.module.css +59 -0
- package/dist/components/forms/multi-select/MultiSelect.cjs +229 -0
- package/dist/components/forms/multi-select/MultiSelect.d.ts +26 -0
- package/dist/components/forms/multi-select/MultiSelect.js +227 -0
- package/dist/components/forms/radio-buttons/RadioButton.cjs +94 -0
- package/dist/components/forms/radio-buttons/RadioButton.d.ts +46 -0
- package/dist/components/forms/radio-buttons/RadioButton.js +88 -0
- package/dist/components/forms/radio-buttons/RadioButtonGroup.cjs +74 -0
- package/dist/components/forms/radio-buttons/RadioButtonGroup.d.ts +25 -0
- package/dist/components/forms/radio-buttons/RadioButtonGroup.js +72 -0
- package/dist/components/forms/radio-buttons/RadioButtons.module.css +131 -0
- package/dist/components/forms/select/Select.cjs +287 -0
- package/dist/components/forms/select/Select.d.ts +24 -0
- package/dist/components/forms/select/Select.js +281 -0
- package/dist/components/forms/select/Select.module.css +41 -0
- package/dist/components/forms/switch/Switch.cjs +93 -0
- package/dist/components/forms/switch/Switch.d.ts +37 -0
- package/dist/components/forms/switch/Switch.js +87 -0
- package/dist/components/forms/switch/Switch.module.css +89 -0
- package/dist/components/forms/text-area/Textarea.cjs +118 -0
- package/dist/components/forms/text-area/Textarea.d.ts +17 -0
- package/dist/components/forms/text-area/Textarea.js +112 -0
- package/dist/components/forms/text-area/Textarea.module.css +70 -0
- package/dist/components/forms/typeahead/Typeahead.cjs +824 -0
- package/dist/components/forms/typeahead/Typeahead.d.ts +46 -0
- package/dist/components/forms/typeahead/Typeahead.js +800 -0
- package/dist/components/forms/typeahead/Typeahead.module.css +38 -0
- package/dist/components/grid/Grid.cjs +58 -0
- package/dist/components/grid/Grid.d.ts +29 -0
- package/dist/components/grid/Grid.js +51 -0
- package/dist/components/grid/Grid.module.css +44 -0
- package/dist/components/headline/CollapsibleHeadline.cjs +84 -0
- package/dist/components/headline/CollapsibleHeadline.d.ts +25 -0
- package/dist/components/headline/CollapsibleHeadline.js +78 -0
- package/dist/components/headline/Headline.cjs +59 -0
- package/dist/components/headline/Headline.d.ts +20 -0
- package/dist/components/headline/Headline.js +53 -0
- package/dist/components/headline/Headline.module.css +167 -0
- package/dist/components/highlighted-text/HighlightedText.cjs +21 -0
- package/dist/components/highlighted-text/HighlightedText.d.ts +7 -0
- package/dist/components/highlighted-text/HighlightedText.js +19 -0
- package/dist/components/hyperlink/Hyperlink.cjs +113 -0
- package/dist/components/hyperlink/Hyperlink.d.ts +24 -0
- package/dist/components/hyperlink/Hyperlink.js +88 -0
- package/dist/components/hyperlink/Hyperlink.module.css +121 -0
- package/dist/components/icon/Icon.cjs +39 -0
- package/dist/components/icon/Icon.d.ts +14 -0
- package/dist/components/icon/Icon.js +32 -0
- package/dist/components/icon/Icon.module.css +50 -0
- package/dist/components/inline-status/InlineStatus.cjs +39 -0
- package/dist/components/inline-status/InlineStatus.d.ts +11 -0
- package/dist/components/inline-status/InlineStatus.js +33 -0
- package/dist/components/inline-status/InlineStatus.module.css +98 -0
- package/dist/components/interval-select/IntervalSelect.cjs +203 -0
- package/dist/components/interval-select/IntervalSelect.d.ts +37 -0
- package/dist/components/interval-select/IntervalSelect.js +201 -0
- package/dist/components/json-viewer/JsonNode.cjs +124 -0
- package/dist/components/json-viewer/JsonNode.d.ts +3 -0
- package/dist/components/json-viewer/JsonNode.js +118 -0
- package/dist/components/json-viewer/JsonViewer.cjs +164 -0
- package/dist/components/json-viewer/JsonViewer.d.ts +4 -0
- package/dist/components/json-viewer/JsonViewer.js +158 -0
- package/dist/components/json-viewer/JsonViewer.module.css +346 -0
- package/dist/components/json-viewer/types.cjs +2 -0
- package/dist/components/json-viewer/types.d.ts +33 -0
- package/dist/components/json-viewer/types.js +1 -0
- package/dist/components/json-viewer/useClipboardStatus.cjs +15 -0
- package/dist/components/json-viewer/useClipboardStatus.d.ts +4 -0
- package/dist/components/json-viewer/useClipboardStatus.js +13 -0
- package/dist/components/json-viewer/utils.cjs +126 -0
- package/dist/components/json-viewer/utils.d.ts +17 -0
- package/dist/components/json-viewer/utils.js +111 -0
- package/dist/components/lightbox/Lightbox.cjs +291 -0
- package/dist/components/lightbox/Lightbox.d.ts +36 -0
- package/dist/components/lightbox/Lightbox.js +285 -0
- package/dist/components/lightbox/Lightbox.module.css +214 -0
- package/dist/components/media-card/MediaCard.cjs +87 -0
- package/dist/components/media-card/MediaCard.d.ts +21 -0
- package/dist/components/media-card/MediaCard.js +80 -0
- package/dist/components/media-card/MediaCard.module.css +91 -0
- package/dist/components/menu/Menu.cjs +455 -0
- package/dist/components/menu/Menu.d.ts +102 -0
- package/dist/components/menu/Menu.js +430 -0
- package/dist/components/menu/Menu.module.css +286 -0
- package/dist/components/meta-bar/MetaBar.cjs +28 -0
- package/dist/components/meta-bar/MetaBar.d.ts +12 -0
- package/dist/components/meta-bar/MetaBar.js +22 -0
- package/dist/components/meta-bar/MetaBar.module.css +27 -0
- package/dist/components/metric-tile/MetricTile.cjs +33 -0
- package/dist/components/metric-tile/MetricTile.d.ts +15 -0
- package/dist/components/metric-tile/MetricTile.js +27 -0
- package/dist/components/metric-tile/MetricTile.module.css +103 -0
- package/dist/components/nav-bar/NavBar.cjs +107 -0
- package/dist/components/nav-bar/NavBar.d.ts +44 -0
- package/dist/components/nav-bar/NavBar.js +101 -0
- package/dist/components/nav-bar/NavBar.module.css +243 -0
- package/dist/components/overlay/fade-overlay/FadeOverlay.cjs +30 -0
- package/dist/components/overlay/fade-overlay/FadeOverlay.d.ts +13 -0
- package/dist/components/overlay/fade-overlay/FadeOverlay.js +24 -0
- package/dist/components/overlay/fade-overlay/FadeOverlay.module.css +54 -0
- package/dist/components/overlay/modal/Modal.cjs +200 -0
- package/dist/components/overlay/modal/Modal.d.ts +30 -0
- package/dist/components/overlay/modal/Modal.js +194 -0
- package/dist/components/overlay/modal/Modal.module.css +112 -0
- package/dist/components/overlay/modal/provider/ModalProvider.cjs +98 -0
- package/dist/components/overlay/modal/provider/ModalProvider.d.ts +23 -0
- package/dist/components/overlay/modal/provider/ModalProvider.js +95 -0
- package/dist/components/overlay/side-panel/SidePanel.cjs +173 -0
- package/dist/components/overlay/side-panel/SidePanel.d.ts +25 -0
- package/dist/components/overlay/side-panel/SidePanel.js +167 -0
- package/dist/components/overlay/side-panel/SidePanel.module.css +177 -0
- package/dist/components/overlay/side-panel/useSidePanel.cjs +16 -0
- package/dist/components/overlay/side-panel/useSidePanel.d.ts +5 -0
- package/dist/components/overlay/side-panel/useSidePanel.js +14 -0
- package/dist/components/overlay/tooltip/Tooltip.cjs +56 -0
- package/dist/components/overlay/tooltip/Tooltip.d.ts +12 -0
- package/dist/components/overlay/tooltip/Tooltip.js +54 -0
- package/dist/components/overlay/tooltip/Tooltip.module.css +104 -0
- package/dist/components/overlay/tooltip/TooltipProvider.cjs +238 -0
- package/dist/components/overlay/tooltip/TooltipProvider.d.ts +20 -0
- package/dist/components/overlay/tooltip/TooltipProvider.js +231 -0
- package/dist/components/overlay/tooltip/useTooltipTrigger.cjs +117 -0
- package/dist/components/overlay/tooltip/useTooltipTrigger.d.ts +28 -0
- package/dist/components/overlay/tooltip/useTooltipTrigger.js +115 -0
- package/dist/components/page/Page.cjs +64 -0
- package/dist/components/page/Page.d.ts +21 -0
- package/dist/components/page/Page.js +58 -0
- package/dist/components/page/Page.module.css +95 -0
- package/dist/components/page-layout/PageLayout.cjs +126 -0
- package/dist/components/page-layout/PageLayout.d.ts +47 -0
- package/dist/components/page-layout/PageLayout.js +120 -0
- package/dist/components/page-layout/PageLayout.module.css +333 -0
- package/dist/components/page-layout/components/footer/Footer.cjs +53 -0
- package/dist/components/page-layout/components/footer/Footer.d.ts +14 -0
- package/dist/components/page-layout/components/footer/Footer.js +47 -0
- package/dist/components/page-layout/components/footer/Footer.module.css +86 -0
- package/dist/components/pagination/Pagination.cjs +161 -0
- package/dist/components/pagination/Pagination.d.ts +21 -0
- package/dist/components/pagination/Pagination.js +155 -0
- package/dist/components/pagination/Pagination.module.css +25 -0
- package/dist/components/panel/Panel.cjs +38 -0
- package/dist/components/panel/Panel.d.ts +13 -0
- package/dist/components/panel/Panel.js +32 -0
- package/dist/components/panel/Panel.module.css +30 -0
- package/dist/components/popover/Popover.cjs +331 -0
- package/dist/components/popover/Popover.d.ts +27 -0
- package/dist/components/popover/Popover.js +307 -0
- package/dist/components/popover/Popover.module.css +52 -0
- package/dist/components/search-box/SearchBox.cjs +297 -0
- package/dist/components/search-box/SearchBox.d.ts +30 -0
- package/dist/components/search-box/SearchBox.js +291 -0
- package/dist/components/search-box/SearchBox.module.css +27 -0
- package/dist/components/section-label/SectionLabel.cjs +18 -0
- package/dist/components/section-label/SectionLabel.d.ts +5 -0
- package/dist/components/section-label/SectionLabel.js +12 -0
- package/dist/components/section-label/SectionLabel.module.css +12 -0
- package/dist/components/segmented-progress-bar/SegmentedProgressBar.cjs +130 -0
- package/dist/components/segmented-progress-bar/SegmentedProgressBar.d.ts +27 -0
- package/dist/components/segmented-progress-bar/SegmentedProgressBar.js +124 -0
- package/dist/components/segmented-progress-bar/SegmentedProgressBar.module.css +187 -0
- package/dist/components/sidebar/Sidebar.cjs +41 -0
- package/dist/components/sidebar/Sidebar.d.ts +23 -0
- package/dist/components/sidebar/Sidebar.js +39 -0
- package/dist/components/sidebar/components/SidebarItem.cjs +29 -0
- package/dist/components/sidebar/components/SidebarItem.d.ts +11 -0
- package/dist/components/sidebar/components/SidebarItem.js +27 -0
- package/dist/components/sidebar/components/SidebarItem.module.css +0 -0
- package/dist/components/sidebar/components/expandable-sidebar-item/ExpandableSidebarItem.cjs +153 -0
- package/dist/components/sidebar/components/expandable-sidebar-item/ExpandableSidebarItem.d.ts +13 -0
- package/dist/components/sidebar/components/expandable-sidebar-item/ExpandableSidebarItem.js +147 -0
- package/dist/components/sidebar/components/expandable-sidebar-item/ExpandableSidebarItem.module.css +47 -0
- package/dist/components/sidebar/components/sidebar-container/SidebarContainer.cjs +220 -0
- package/dist/components/sidebar/components/sidebar-container/SidebarContainer.d.ts +18 -0
- package/dist/components/sidebar/components/sidebar-container/SidebarContainer.js +213 -0
- package/dist/components/sidebar/components/sidebar-container/SidebarContainer.module.css +293 -0
- package/dist/components/sidebar/components/sidebar-item-content/SidebarItemContent.cjs +54 -0
- package/dist/components/sidebar/components/sidebar-item-content/SidebarItemContent.d.ts +13 -0
- package/dist/components/sidebar/components/sidebar-item-content/SidebarItemContent.js +47 -0
- package/dist/components/sidebar/components/sidebar-item-content/SidebarItemContent.module.css +117 -0
- package/dist/components/sidebar/components/sidebar-items/SidebarItems.cjs +61 -0
- package/dist/components/sidebar/components/sidebar-items/SidebarItems.d.ts +4 -0
- package/dist/components/sidebar/components/sidebar-items/SidebarItems.js +55 -0
- package/dist/components/sidebar/components/sidebar-items/SidebarItems.module.css +20 -0
- package/dist/components/sidebar/components/sidenav-filteirng/SidenavFiltering.cjs +96 -0
- package/dist/components/sidebar/components/sidenav-filteirng/SidenavFiltering.d.ts +7 -0
- package/dist/components/sidebar/components/sidenav-filteirng/SidenavFiltering.js +90 -0
- package/dist/components/sidebar/providers/SidebarProvider.cjs +223 -0
- package/dist/components/sidebar/providers/SidebarProvider.d.ts +34 -0
- package/dist/components/sidebar/providers/SidebarProvider.js +220 -0
- package/dist/components/skeleton-loader/SkeletonLoader.cjs +442 -0
- package/dist/components/skeleton-loader/SkeletonLoader.d.ts +9 -0
- package/dist/components/skeleton-loader/SkeletonLoader.js +440 -0
- package/dist/components/skeleton-loader/skeleton-loader-item/SkeletonLoaderItem.cjs +42 -0
- package/dist/components/skeleton-loader/skeleton-loader-item/SkeletonLoaderItem.d.ts +11 -0
- package/dist/components/skeleton-loader/skeleton-loader-item/SkeletonLoaderItem.js +36 -0
- package/dist/components/skeleton-loader/skeleton-loader-item/SkeletonLoaderItem.module.css +55 -0
- package/dist/components/split-button/SplitButton.cjs +46 -0
- package/dist/components/split-button/SplitButton.d.ts +16 -0
- package/dist/components/split-button/SplitButton.js +40 -0
- package/dist/components/split-button/SplitButton.module.css +32 -0
- package/dist/components/split-pane/SplitPane.cjs +191 -0
- package/dist/components/split-pane/SplitPane.d.ts +21 -0
- package/dist/components/split-pane/SplitPane.js +182 -0
- package/dist/components/split-pane/SplitPane.module.css +118 -0
- package/dist/components/split-pane/provider/SplitPaneContext.cjs +129 -0
- package/dist/components/split-pane/provider/SplitPaneContext.d.ts +24 -0
- package/dist/components/split-pane/provider/SplitPaneContext.js +121 -0
- package/dist/components/stack/Stack.cjs +56 -0
- package/dist/components/stack/Stack.d.ts +26 -0
- package/dist/components/stack/Stack.js +50 -0
- package/dist/components/stack/Stack.module.css +77 -0
- package/dist/components/state-page/StatePage.cjs +48 -0
- package/dist/components/state-page/StatePage.d.ts +10 -0
- package/dist/components/state-page/StatePage.js +42 -0
- package/dist/components/state-page/StatePage.module.css +9 -0
- package/dist/components/state-page/empty.cjs +664 -0
- package/dist/components/state-page/empty.d.ts +2 -0
- package/dist/components/state-page/empty.js +662 -0
- package/dist/components/state-page/error.cjs +310 -0
- package/dist/components/state-page/error.d.ts +2 -0
- package/dist/components/state-page/error.js +308 -0
- package/dist/components/state-page/notFound.cjs +243 -0
- package/dist/components/state-page/notFound.d.ts +2 -0
- package/dist/components/state-page/notFound.js +241 -0
- package/dist/components/sticky-footer-layout/StickyFooterLayout.cjs +98 -0
- package/dist/components/sticky-footer-layout/StickyFooterLayout.d.ts +14 -0
- package/dist/components/sticky-footer-layout/StickyFooterLayout.js +96 -0
- package/dist/components/table/Table.cjs +240 -0
- package/dist/components/table/Table.d.ts +4 -0
- package/dist/components/table/Table.js +234 -0
- package/dist/components/table/Table.module.css +704 -0
- package/dist/components/table/Table.types.cjs +2 -0
- package/dist/components/table/Table.types.d.ts +91 -0
- package/dist/components/table/Table.types.js +1 -0
- package/dist/components/table/TanstackTable.cjs +191 -0
- package/dist/components/table/TanstackTable.d.ts +15 -0
- package/dist/components/table/TanstackTable.js +166 -0
- package/dist/components/table/components/TableBody.cjs +58 -0
- package/dist/components/table/components/TableBody.d.ts +28 -0
- package/dist/components/table/components/TableBody.js +52 -0
- package/dist/components/table/components/TableHeader.cjs +56 -0
- package/dist/components/table/components/TableHeader.d.ts +16 -0
- package/dist/components/table/components/TableHeader.js +50 -0
- package/dist/components/table/components/TableHeaderCell.cjs +68 -0
- package/dist/components/table/components/TableHeaderCell.d.ts +12 -0
- package/dist/components/table/components/TableHeaderCell.js +62 -0
- package/dist/components/table/components/TablePagination.cjs +2 -0
- package/dist/components/table/components/TablePagination.d.ts +0 -0
- package/dist/components/table/components/TablePagination.js +1 -0
- package/dist/components/table/components/TableRow.cjs +287 -0
- package/dist/components/table/components/TableRow.d.ts +28 -0
- package/dist/components/table/components/TableRow.js +281 -0
- package/dist/components/table/components/TableSelectionCell.cjs +41 -0
- package/dist/components/table/components/TableSelectionCell.d.ts +9 -0
- package/dist/components/table/components/TableSelectionCell.js +35 -0
- package/dist/components/table/components/column-resizer/ColumnResizer.cjs +25 -0
- package/dist/components/table/components/column-resizer/ColumnResizer.d.ts +7 -0
- package/dist/components/table/components/column-resizer/ColumnResizer.js +19 -0
- package/dist/components/table/components/column-resizer/ColumnResizer.module.css +24 -0
- package/dist/components/table/components/empty-state/EmptyState.cjs +33 -0
- package/dist/components/table/components/empty-state/EmptyState.d.ts +21 -0
- package/dist/components/table/components/empty-state/EmptyState.js +31 -0
- package/dist/components/table/components/empty-state/EmptyState.module.css +4 -0
- package/dist/components/table/components/table-settings/TableSettings.cjs +139 -0
- package/dist/components/table/components/table-settings/TableSettings.d.ts +18 -0
- package/dist/components/table/components/table-settings/TableSettings.js +137 -0
- package/dist/components/table/hooks/useTableRowInteractions.cjs +47 -0
- package/dist/components/table/hooks/useTableRowInteractions.d.ts +15 -0
- package/dist/components/table/hooks/useTableRowInteractions.js +45 -0
- package/dist/components/table/table.classes.cjs +49 -0
- package/dist/components/table/table.classes.d.ts +10 -0
- package/dist/components/table/table.classes.js +40 -0
- package/dist/components/table/table.utils.cjs +59 -0
- package/dist/components/table/table.utils.d.ts +18 -0
- package/dist/components/table/table.utils.js +46 -0
- package/dist/components/table/tanstackTable.utils.cjs +181 -0
- package/dist/components/table/tanstackTable.utils.d.ts +29 -0
- package/dist/components/table/tanstackTable.utils.js +174 -0
- package/dist/components/tabs/Tabs.cjs +187 -0
- package/dist/components/tabs/Tabs.d.ts +52 -0
- package/dist/components/tabs/Tabs.js +181 -0
- package/dist/components/tabs/Tabs.module.css +263 -0
- package/dist/components/theme-button/ThemeButton.cjs +75 -0
- package/dist/components/theme-button/ThemeButton.d.ts +8 -0
- package/dist/components/theme-button/ThemeButton.js +72 -0
- package/dist/components/toast/Toast.cjs +68 -0
- package/dist/components/toast/Toast.d.ts +15 -0
- package/dist/components/toast/Toast.js +62 -0
- package/dist/components/toast/Toast.module.css +165 -0
- package/dist/components/toast/provider/ToastProvider.cjs +105 -0
- package/dist/components/toast/provider/ToastProvider.d.ts +24 -0
- package/dist/components/toast/provider/ToastProvider.js +97 -0
- package/dist/components/user-display/UserDisplay.cjs +22 -0
- package/dist/components/user-display/UserDisplay.d.ts +10 -0
- package/dist/components/user-display/UserDisplay.js +16 -0
- package/dist/components/user-display/UserDisplay.module.css +25 -0
- package/dist/constants/chart-colors.cjs +10 -0
- package/dist/constants/chart-colors.d.ts +2 -0
- package/dist/constants/chart-colors.js +8 -0
- package/dist/constants/chart-colors.types.cjs +2 -0
- package/dist/constants/chart-colors.types.d.ts +3 -0
- package/dist/constants/chart-colors.types.js +1 -0
- package/dist/constants/severity.cjs +33 -0
- package/dist/constants/severity.d.ts +4 -0
- package/dist/constants/severity.js +29 -0
- package/dist/constants/severity.types.cjs +2 -0
- package/dist/constants/severity.types.d.ts +1 -0
- package/dist/constants/severity.types.js +1 -0
- package/dist/constants/sizes.cjs +11 -0
- package/dist/constants/sizes.d.ts +2 -0
- package/dist/constants/sizes.js +9 -0
- package/dist/hooks/useDeviceSize.cjs +33 -0
- package/dist/hooks/useDeviceSize.d.ts +2 -0
- package/dist/hooks/useDeviceSize.js +31 -0
- package/dist/hooks/useListNavigation.cjs +237 -0
- package/dist/hooks/useListNavigation.d.ts +24 -0
- package/dist/hooks/useListNavigation.js +235 -0
- package/dist/hooks/usePagination.cjs +144 -0
- package/dist/hooks/usePagination.d.ts +38 -0
- package/dist/hooks/usePagination.js +142 -0
- package/dist/hooks/usePersistentState.cjs +60 -0
- package/dist/hooks/usePersistentState.d.ts +33 -0
- package/dist/hooks/usePersistentState.js +58 -0
- package/dist/hooks/useSorting.cjs +120 -0
- package/dist/hooks/useSorting.d.ts +50 -0
- package/dist/hooks/useSorting.js +117 -0
- package/dist/hooks/useTableData.cjs +75 -0
- package/dist/hooks/useTableData.d.ts +42 -0
- package/dist/hooks/useTableData.js +73 -0
- package/dist/hooks/useTableSelection.cjs +172 -0
- package/dist/hooks/useTableSelection.d.ts +27 -0
- package/dist/hooks/useTableSelection.js +170 -0
- package/dist/hooks/useTableSettings.cjs +90 -0
- package/dist/hooks/useTableSettings.d.ts +26 -0
- package/dist/hooks/useTableSettings.js +87 -0
- package/dist/hooks/useTheme.cjs +64 -0
- package/dist/hooks/useTheme.d.ts +7 -0
- package/dist/hooks/useTheme.js +62 -0
- package/dist/hooks/useTimeDuration.cjs +75 -0
- package/dist/hooks/useTimeDuration.d.ts +26 -0
- package/dist/hooks/useTimeDuration.js +73 -0
- package/dist/hooks/useViewportFill.cjs +82 -0
- package/dist/hooks/useViewportFill.d.ts +13 -0
- package/dist/hooks/useViewportFill.js +80 -0
- package/dist/index.cjs +292 -0
- package/dist/index.css +75 -0
- package/dist/index.d.ts +42 -0
- package/dist/index.js +41 -0
- package/dist/styles/animation.cjs +9 -0
- package/dist/styles/animation.d.ts +5 -0
- package/dist/styles/animation.js +7 -0
- package/dist/styles/css-helper-classes/flex.css +113 -0
- package/dist/styles/css-helper-classes/spacing.css +312 -0
- package/dist/styles/css-helper-classes/typography.css +11 -0
- package/dist/styles/fonts/Roboto/OFL.txt +93 -0
- package/dist/styles/fonts/Roboto/README.txt +118 -0
- package/dist/styles/fonts/Roboto/Roboto-Black.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-BlackItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-Bold.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-BoldItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-ExtraBold.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-ExtraBoldItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-ExtraLight.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-ExtraLightItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-Italic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-Light.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-LightItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-Medium.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-MediumItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-Regular.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-SemiBold.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-SemiBoldItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-Thin.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto-ThinItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-Black.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-BlackItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-Bold.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-BoldItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-ExtraBold.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-ExtraBoldItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-ExtraLight.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-ExtraLightItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-Italic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-Light.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-LightItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-Medium.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-MediumItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-Regular.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-SemiBold.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-SemiBoldItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-Thin.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_Condensed-ThinItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-Black.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-BlackItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-Bold.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-BoldItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-ExtraBold.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-ExtraBoldItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-ExtraLight.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-ExtraLightItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-Italic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-Light.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-LightItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-Medium.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-MediumItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-Regular.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-SemiBold.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-SemiBoldItalic.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-Thin.ttf +0 -0
- package/dist/styles/fonts/Roboto/Roboto_SemiCondensed-ThinItalic.ttf +0 -0
- package/dist/styles/fonts/Tajawal/OFL.txt +93 -0
- package/dist/styles/fonts/Tajawal/Tajawal-Black.ttf +0 -0
- package/dist/styles/fonts/Tajawal/Tajawal-Bold.ttf +0 -0
- package/dist/styles/fonts/Tajawal/Tajawal-ExtraBold.ttf +0 -0
- package/dist/styles/fonts/Tajawal/Tajawal-ExtraLight.ttf +0 -0
- package/dist/styles/fonts/Tajawal/Tajawal-Light.ttf +0 -0
- package/dist/styles/fonts/Tajawal/Tajawal-Medium.ttf +0 -0
- package/dist/styles/fonts/Tajawal/Tajawal-Regular.ttf +0 -0
- package/dist/styles/styles.css +377 -0
- package/dist/styles/themes/dbc/base.css +141 -0
- package/dist/styles/themes/dbc/colors.css +320 -0
- package/dist/styles/themes/filmstriben-budget/theme.css +22 -0
- package/dist/styles/themes/types.cjs +2 -0
- package/dist/styles/themes/types.d.ts +16 -0
- package/dist/styles/themes/types.js +1 -0
- package/dist/styles.css +377 -0
- package/dist/tanstack.cjs +26 -0
- package/dist/tanstack.d.ts +3 -0
- package/dist/tanstack.js +3 -0
- package/dist/themes/dbc.css +3 -0
- package/dist/themes/filmstriben-budget.css +3 -0
- package/dist/types/a11y-props.types.cjs +2 -0
- package/dist/types/a11y-props.types.d.ts +8 -0
- package/dist/types/a11y-props.types.js +1 -0
- package/dist/types/assets.d.cjs +2 -0
- package/dist/types/assets.d.js +1 -0
- package/dist/types/css.d.cjs +2 -0
- package/dist/types/css.d.js +1 -0
- package/dist/types/sizes.types.cjs +2 -0
- package/dist/types/sizes.types.d.ts +2 -0
- package/dist/types/sizes.types.js +1 -0
- package/dist/utils/arrays/nested-filtering.cjs +40 -0
- package/dist/utils/arrays/nested-filtering.d.ts +9 -0
- package/dist/utils/arrays/nested-filtering.js +38 -0
- package/dist/utils/cookie.utils.cjs +44 -0
- package/dist/utils/cookie.utils.d.ts +19 -0
- package/dist/utils/cookie.utils.js +40 -0
- package/dist/utils/date/formatDate.cjs +49 -0
- package/dist/utils/date/formatDate.d.ts +28 -0
- package/dist/utils/date/formatDate.js +47 -0
- package/dist/utils/localStorage.utils.cjs +53 -0
- package/dist/utils/localStorage.utils.d.ts +19 -0
- package/dist/utils/localStorage.utils.js +49 -0
- package/dist/utils/text/get-highlighted-segments.cjs +49 -0
- package/dist/utils/text/get-highlighted-segments.d.ts +5 -0
- package/dist/utils/text/get-highlighted-segments.js +47 -0
- package/package.json +2 -1
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
/* Margin - all axes */
|
|
2
|
+
|
|
3
|
+
.dbc-m-0 {
|
|
4
|
+
margin: 0;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.dbc-m-xxs {
|
|
8
|
+
margin: var(--spacing-xxs);
|
|
9
|
+
}
|
|
10
|
+
.dbc-m-xs {
|
|
11
|
+
margin: var(--spacing-xs);
|
|
12
|
+
}
|
|
13
|
+
.dbc-m-sm {
|
|
14
|
+
margin: var(--spacing-sm);
|
|
15
|
+
}
|
|
16
|
+
.dbc-m-md {
|
|
17
|
+
margin: var(--spacing-md);
|
|
18
|
+
}
|
|
19
|
+
.dbc-m-lg {
|
|
20
|
+
margin: var(--spacing-lg);
|
|
21
|
+
}
|
|
22
|
+
.dbc-m-xl {
|
|
23
|
+
margin: var(--spacing-xl);
|
|
24
|
+
}
|
|
25
|
+
.dbc-m-2xl {
|
|
26
|
+
margin: var(--spacing-2xl);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* Margin - block axis (top + bottom) */
|
|
30
|
+
.dbc-my-xxs {
|
|
31
|
+
margin-block: var(--spacing-xxs);
|
|
32
|
+
}
|
|
33
|
+
.dbc-my-xs {
|
|
34
|
+
margin-block: var(--spacing-xs);
|
|
35
|
+
}
|
|
36
|
+
.dbc-my-sm {
|
|
37
|
+
margin-block: var(--spacing-sm);
|
|
38
|
+
}
|
|
39
|
+
.dbc-my-md {
|
|
40
|
+
margin-block: var(--spacing-md);
|
|
41
|
+
}
|
|
42
|
+
.dbc-my-lg {
|
|
43
|
+
margin-block: var(--spacing-lg);
|
|
44
|
+
}
|
|
45
|
+
.dbc-my-xl {
|
|
46
|
+
margin-block: var(--spacing-xl);
|
|
47
|
+
}
|
|
48
|
+
.dbc-my-2xl {
|
|
49
|
+
margin-block: var(--spacing-2xl);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* Margin - inline axis (start + end) */
|
|
53
|
+
.dbc-mx-xxs {
|
|
54
|
+
margin-inline: var(--spacing-xxs);
|
|
55
|
+
}
|
|
56
|
+
.dbc-mx-xs {
|
|
57
|
+
margin-inline: var(--spacing-xs);
|
|
58
|
+
}
|
|
59
|
+
.dbc-mx-sm {
|
|
60
|
+
margin-inline: var(--spacing-sm);
|
|
61
|
+
}
|
|
62
|
+
.dbc-mx-md {
|
|
63
|
+
margin-inline: var(--spacing-md);
|
|
64
|
+
}
|
|
65
|
+
.dbc-mx-lg {
|
|
66
|
+
margin-inline: var(--spacing-lg);
|
|
67
|
+
}
|
|
68
|
+
.dbc-mx-xl {
|
|
69
|
+
margin-inline: var(--spacing-xl);
|
|
70
|
+
}
|
|
71
|
+
.dbc-mx-2xl {
|
|
72
|
+
margin-inline: var(--spacing-2xl);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/* Margin - single sides (logical) */
|
|
76
|
+
.dbc-mt-xxs {
|
|
77
|
+
margin-block-start: var(--spacing-xxs);
|
|
78
|
+
}
|
|
79
|
+
.dbc-mt-xs {
|
|
80
|
+
margin-block-start: var(--spacing-xs);
|
|
81
|
+
}
|
|
82
|
+
.dbc-mt-sm {
|
|
83
|
+
margin-block-start: var(--spacing-sm);
|
|
84
|
+
}
|
|
85
|
+
.dbc-mt-md {
|
|
86
|
+
margin-block-start: var(--spacing-md);
|
|
87
|
+
}
|
|
88
|
+
.dbc-mt-lg {
|
|
89
|
+
margin-block-start: var(--spacing-lg);
|
|
90
|
+
}
|
|
91
|
+
.dbc-mt-xl {
|
|
92
|
+
margin-block-start: var(--spacing-xl);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.dbc-mb-xxs {
|
|
96
|
+
margin-block-end: var(--spacing-xxs);
|
|
97
|
+
}
|
|
98
|
+
.dbc-mb-xs {
|
|
99
|
+
margin-block-end: var(--spacing-xs);
|
|
100
|
+
}
|
|
101
|
+
.dbc-mb-sm {
|
|
102
|
+
margin-block-end: var(--spacing-sm);
|
|
103
|
+
}
|
|
104
|
+
.dbc-mb-md {
|
|
105
|
+
margin-block-end: var(--spacing-md);
|
|
106
|
+
}
|
|
107
|
+
.dbc-mb-lg {
|
|
108
|
+
margin-block-end: var(--spacing-lg);
|
|
109
|
+
}
|
|
110
|
+
.dbc-mb-xl {
|
|
111
|
+
margin-block-end: var(--spacing-xl);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.dbc-ms-xxs {
|
|
115
|
+
margin-inline-start: var(--spacing-xxs);
|
|
116
|
+
}
|
|
117
|
+
.dbc-ms-xs {
|
|
118
|
+
margin-inline-start: var(--spacing-xs);
|
|
119
|
+
}
|
|
120
|
+
.dbc-ms-sm {
|
|
121
|
+
margin-inline-start: var(--spacing-sm);
|
|
122
|
+
}
|
|
123
|
+
.dbc-ms-md {
|
|
124
|
+
margin-inline-start: var(--spacing-md);
|
|
125
|
+
}
|
|
126
|
+
.dbc-ms-lg {
|
|
127
|
+
margin-inline-start: var(--spacing-lg);
|
|
128
|
+
}
|
|
129
|
+
.dbc-ms-xl {
|
|
130
|
+
margin-inline-start: var(--spacing-xl);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.dbc-ms-auto {
|
|
134
|
+
margin-inline-start: auto;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.dbc-me-xxs {
|
|
138
|
+
margin-inline-end: var(--spacing-xxs);
|
|
139
|
+
}
|
|
140
|
+
.dbc-me-xs {
|
|
141
|
+
margin-inline-end: var(--spacing-xs);
|
|
142
|
+
}
|
|
143
|
+
.dbc-me-sm {
|
|
144
|
+
margin-inline-end: var(--spacing-sm);
|
|
145
|
+
}
|
|
146
|
+
.dbc-me-md {
|
|
147
|
+
margin-inline-end: var(--spacing-md);
|
|
148
|
+
}
|
|
149
|
+
.dbc-me-lg {
|
|
150
|
+
margin-inline-end: var(--spacing-lg);
|
|
151
|
+
}
|
|
152
|
+
.dbc-me-xl {
|
|
153
|
+
margin-inline-end: var(--spacing-xl);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.dbc-me-auto {
|
|
157
|
+
margin-inline-end: auto;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.dbc-mx-auto {
|
|
161
|
+
margin-inline: auto;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/* Padding - all axes */
|
|
165
|
+
.dbc-p-0 {
|
|
166
|
+
padding: 0;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.dbc-p-xxs {
|
|
170
|
+
padding: var(--spacing-xxs);
|
|
171
|
+
}
|
|
172
|
+
.dbc-p-xs {
|
|
173
|
+
padding: var(--spacing-xs);
|
|
174
|
+
}
|
|
175
|
+
.dbc-p-sm {
|
|
176
|
+
padding: var(--spacing-sm);
|
|
177
|
+
}
|
|
178
|
+
.dbc-p-md {
|
|
179
|
+
padding: var(--spacing-md);
|
|
180
|
+
}
|
|
181
|
+
.dbc-p-lg {
|
|
182
|
+
padding: var(--spacing-lg);
|
|
183
|
+
}
|
|
184
|
+
.dbc-p-xl {
|
|
185
|
+
padding: var(--spacing-xl);
|
|
186
|
+
}
|
|
187
|
+
.dbc-p-2xl {
|
|
188
|
+
padding: var(--spacing-2xl);
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
/* Padding - block axis (top + bottom) */
|
|
192
|
+
.dbc-py-xxs {
|
|
193
|
+
padding-block: var(--spacing-xxs);
|
|
194
|
+
}
|
|
195
|
+
.dbc-py-xs {
|
|
196
|
+
padding-block: var(--spacing-xs);
|
|
197
|
+
}
|
|
198
|
+
.dbc-py-sm {
|
|
199
|
+
padding-block: var(--spacing-sm);
|
|
200
|
+
}
|
|
201
|
+
.dbc-py-md {
|
|
202
|
+
padding-block: var(--spacing-md);
|
|
203
|
+
}
|
|
204
|
+
.dbc-py-lg {
|
|
205
|
+
padding-block: var(--spacing-lg);
|
|
206
|
+
}
|
|
207
|
+
.dbc-py-xl {
|
|
208
|
+
padding-block: var(--spacing-xl);
|
|
209
|
+
}
|
|
210
|
+
.dbc-py-2xl {
|
|
211
|
+
padding-block: var(--spacing-2xl);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
/* Padding - inline axis (start + end) */
|
|
215
|
+
.dbc-px-xxs {
|
|
216
|
+
padding-inline: var(--spacing-xxs);
|
|
217
|
+
}
|
|
218
|
+
.dbc-px-xs {
|
|
219
|
+
padding-inline: var(--spacing-xs);
|
|
220
|
+
}
|
|
221
|
+
.dbc-px-sm {
|
|
222
|
+
padding-inline: var(--spacing-sm);
|
|
223
|
+
}
|
|
224
|
+
.dbc-px-md {
|
|
225
|
+
padding-inline: var(--spacing-md);
|
|
226
|
+
}
|
|
227
|
+
.dbc-px-lg {
|
|
228
|
+
padding-inline: var(--spacing-lg);
|
|
229
|
+
}
|
|
230
|
+
.dbc-px-xl {
|
|
231
|
+
padding-inline: var(--spacing-xl);
|
|
232
|
+
}
|
|
233
|
+
.dbc-px-2xl {
|
|
234
|
+
padding-inline: var(--spacing-2xl);
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
/* Padding - single sides (logical) */
|
|
238
|
+
.dbc-pt-xxs {
|
|
239
|
+
padding-block-start: var(--spacing-xxs);
|
|
240
|
+
}
|
|
241
|
+
.dbc-pt-xs {
|
|
242
|
+
padding-block-start: var(--spacing-xs);
|
|
243
|
+
}
|
|
244
|
+
.dbc-pt-sm {
|
|
245
|
+
padding-block-start: var(--spacing-sm);
|
|
246
|
+
}
|
|
247
|
+
.dbc-pt-md {
|
|
248
|
+
padding-block-start: var(--spacing-md);
|
|
249
|
+
}
|
|
250
|
+
.dbc-pt-lg {
|
|
251
|
+
padding-block-start: var(--spacing-lg);
|
|
252
|
+
}
|
|
253
|
+
.dbc-pt-xl {
|
|
254
|
+
padding-block-start: var(--spacing-xl);
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.dbc-pb-xxs {
|
|
258
|
+
padding-block-end: var(--spacing-xxs);
|
|
259
|
+
}
|
|
260
|
+
.dbc-pb-xs {
|
|
261
|
+
padding-block-end: var(--spacing-xs);
|
|
262
|
+
}
|
|
263
|
+
.dbc-pb-sm {
|
|
264
|
+
padding-block-end: var(--spacing-sm);
|
|
265
|
+
}
|
|
266
|
+
.dbc-pb-md {
|
|
267
|
+
padding-block-end: var(--spacing-md);
|
|
268
|
+
}
|
|
269
|
+
.dbc-pb-lg {
|
|
270
|
+
padding-block-end: var(--spacing-lg);
|
|
271
|
+
}
|
|
272
|
+
.dbc-pb-xl {
|
|
273
|
+
padding-block-end: var(--spacing-xl);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.dbc-ps-xxs {
|
|
277
|
+
padding-inline-start: var(--spacing-xxs);
|
|
278
|
+
}
|
|
279
|
+
.dbc-ps-xs {
|
|
280
|
+
padding-inline-start: var(--spacing-xs);
|
|
281
|
+
}
|
|
282
|
+
.dbc-ps-sm {
|
|
283
|
+
padding-inline-start: var(--spacing-sm);
|
|
284
|
+
}
|
|
285
|
+
.dbc-ps-md {
|
|
286
|
+
padding-inline-start: var(--spacing-md);
|
|
287
|
+
}
|
|
288
|
+
.dbc-ps-lg {
|
|
289
|
+
padding-inline-start: var(--spacing-lg);
|
|
290
|
+
}
|
|
291
|
+
.dbc-ps-xl {
|
|
292
|
+
padding-inline-start: var(--spacing-xl);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.dbc-pe-xxs {
|
|
296
|
+
padding-inline-end: var(--spacing-xxs);
|
|
297
|
+
}
|
|
298
|
+
.dbc-pe-xs {
|
|
299
|
+
padding-inline-end: var(--spacing-xs);
|
|
300
|
+
}
|
|
301
|
+
.dbc-pe-sm {
|
|
302
|
+
padding-inline-end: var(--spacing-sm);
|
|
303
|
+
}
|
|
304
|
+
.dbc-pe-md {
|
|
305
|
+
padding-inline-end: var(--spacing-md);
|
|
306
|
+
}
|
|
307
|
+
.dbc-pe-lg {
|
|
308
|
+
padding-inline-end: var(--spacing-lg);
|
|
309
|
+
}
|
|
310
|
+
.dbc-pe-xl {
|
|
311
|
+
padding-inline-end: var(--spacing-xl);
|
|
312
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
Copyright 2011 The Roboto Project Authors (https://github.com/googlefonts/roboto-classic)
|
|
2
|
+
|
|
3
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
4
|
+
This license is copied below, and is also available with a FAQ at:
|
|
5
|
+
https://openfontlicense.org
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
-----------------------------------------------------------
|
|
9
|
+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
10
|
+
-----------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
PREAMBLE
|
|
13
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
14
|
+
development of collaborative font projects, to support the font creation
|
|
15
|
+
efforts of academic and linguistic communities, and to provide a free and
|
|
16
|
+
open framework in which fonts may be shared and improved in partnership
|
|
17
|
+
with others.
|
|
18
|
+
|
|
19
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
|
20
|
+
redistributed freely as long as they are not sold by themselves. The
|
|
21
|
+
fonts, including any derivative works, can be bundled, embedded,
|
|
22
|
+
redistributed and/or sold with any software provided that any reserved
|
|
23
|
+
names are not used by derivative works. The fonts and derivatives,
|
|
24
|
+
however, cannot be released under any other type of license. The
|
|
25
|
+
requirement for fonts to remain under this license does not apply
|
|
26
|
+
to any document created using the fonts or their derivatives.
|
|
27
|
+
|
|
28
|
+
DEFINITIONS
|
|
29
|
+
"Font Software" refers to the set of files released by the Copyright
|
|
30
|
+
Holder(s) under this license and clearly marked as such. This may
|
|
31
|
+
include source files, build scripts and documentation.
|
|
32
|
+
|
|
33
|
+
"Reserved Font Name" refers to any names specified as such after the
|
|
34
|
+
copyright statement(s).
|
|
35
|
+
|
|
36
|
+
"Original Version" refers to the collection of Font Software components as
|
|
37
|
+
distributed by the Copyright Holder(s).
|
|
38
|
+
|
|
39
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
40
|
+
or substituting -- in part or in whole -- any of the components of the
|
|
41
|
+
Original Version, by changing formats or by porting the Font Software to a
|
|
42
|
+
new environment.
|
|
43
|
+
|
|
44
|
+
"Author" refers to any designer, engineer, programmer, technical
|
|
45
|
+
writer or other person who contributed to the Font Software.
|
|
46
|
+
|
|
47
|
+
PERMISSION & CONDITIONS
|
|
48
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
49
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
50
|
+
redistribute, and sell modified and unmodified copies of the Font
|
|
51
|
+
Software, subject to the following conditions:
|
|
52
|
+
|
|
53
|
+
1) Neither the Font Software nor any of its individual components,
|
|
54
|
+
in Original or Modified Versions, may be sold by itself.
|
|
55
|
+
|
|
56
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
|
57
|
+
redistributed and/or sold with any software, provided that each copy
|
|
58
|
+
contains the above copyright notice and this license. These can be
|
|
59
|
+
included either as stand-alone text files, human-readable headers or
|
|
60
|
+
in the appropriate machine-readable metadata fields within text or
|
|
61
|
+
binary files as long as those fields can be easily viewed by the user.
|
|
62
|
+
|
|
63
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
|
64
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
|
65
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
|
66
|
+
presented to the users.
|
|
67
|
+
|
|
68
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
69
|
+
Software shall not be used to promote, endorse or advertise any
|
|
70
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
|
71
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
72
|
+
permission.
|
|
73
|
+
|
|
74
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
|
75
|
+
must be distributed entirely under this license, and must not be
|
|
76
|
+
distributed under any other license. The requirement for fonts to
|
|
77
|
+
remain under this license does not apply to any document created
|
|
78
|
+
using the Font Software.
|
|
79
|
+
|
|
80
|
+
TERMINATION
|
|
81
|
+
This license becomes null and void if any of the above conditions are
|
|
82
|
+
not met.
|
|
83
|
+
|
|
84
|
+
DISCLAIMER
|
|
85
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
86
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
87
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
88
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
89
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
90
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
91
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
92
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
93
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
Roboto Variable Font
|
|
2
|
+
====================
|
|
3
|
+
|
|
4
|
+
This download contains Roboto as both variable fonts and static fonts.
|
|
5
|
+
|
|
6
|
+
Roboto is a variable font with these axes:
|
|
7
|
+
wdth
|
|
8
|
+
wght
|
|
9
|
+
|
|
10
|
+
This means all the styles are contained in these files:
|
|
11
|
+
Roboto/Roboto-VariableFont_wdth,wght.ttf
|
|
12
|
+
Roboto/Roboto-Italic-VariableFont_wdth,wght.ttf
|
|
13
|
+
|
|
14
|
+
If your app fully supports variable fonts, you can now pick intermediate styles
|
|
15
|
+
that aren’t available as static fonts. Not all apps support variable fonts, and
|
|
16
|
+
in those cases you can use the static font files for Roboto:
|
|
17
|
+
Roboto/static/Roboto_Condensed-Thin.ttf
|
|
18
|
+
Roboto/static/Roboto_Condensed-ExtraLight.ttf
|
|
19
|
+
Roboto/static/Roboto_Condensed-Light.ttf
|
|
20
|
+
Roboto/static/Roboto_Condensed-Regular.ttf
|
|
21
|
+
Roboto/static/Roboto_Condensed-Medium.ttf
|
|
22
|
+
Roboto/static/Roboto_Condensed-SemiBold.ttf
|
|
23
|
+
Roboto/static/Roboto_Condensed-Bold.ttf
|
|
24
|
+
Roboto/static/Roboto_Condensed-ExtraBold.ttf
|
|
25
|
+
Roboto/static/Roboto_Condensed-Black.ttf
|
|
26
|
+
Roboto/static/Roboto_SemiCondensed-Thin.ttf
|
|
27
|
+
Roboto/static/Roboto_SemiCondensed-ExtraLight.ttf
|
|
28
|
+
Roboto/static/Roboto_SemiCondensed-Light.ttf
|
|
29
|
+
Roboto/static/Roboto_SemiCondensed-Regular.ttf
|
|
30
|
+
Roboto/static/Roboto_SemiCondensed-Medium.ttf
|
|
31
|
+
Roboto/static/Roboto_SemiCondensed-SemiBold.ttf
|
|
32
|
+
Roboto/static/Roboto_SemiCondensed-Bold.ttf
|
|
33
|
+
Roboto/static/Roboto_SemiCondensed-ExtraBold.ttf
|
|
34
|
+
Roboto/static/Roboto_SemiCondensed-Black.ttf
|
|
35
|
+
Roboto/static/Roboto-Thin.ttf
|
|
36
|
+
Roboto/static/Roboto-ExtraLight.ttf
|
|
37
|
+
Roboto/static/Roboto-Light.ttf
|
|
38
|
+
Roboto/static/Roboto-Regular.ttf
|
|
39
|
+
Roboto/static/Roboto-Medium.ttf
|
|
40
|
+
Roboto/static/Roboto-SemiBold.ttf
|
|
41
|
+
Roboto/static/Roboto-Bold.ttf
|
|
42
|
+
Roboto/static/Roboto-ExtraBold.ttf
|
|
43
|
+
Roboto/static/Roboto-Black.ttf
|
|
44
|
+
Roboto/static/Roboto_Condensed-ThinItalic.ttf
|
|
45
|
+
Roboto/static/Roboto_Condensed-ExtraLightItalic.ttf
|
|
46
|
+
Roboto/static/Roboto_Condensed-LightItalic.ttf
|
|
47
|
+
Roboto/static/Roboto_Condensed-Italic.ttf
|
|
48
|
+
Roboto/static/Roboto_Condensed-MediumItalic.ttf
|
|
49
|
+
Roboto/static/Roboto_Condensed-SemiBoldItalic.ttf
|
|
50
|
+
Roboto/static/Roboto_Condensed-BoldItalic.ttf
|
|
51
|
+
Roboto/static/Roboto_Condensed-ExtraBoldItalic.ttf
|
|
52
|
+
Roboto/static/Roboto_Condensed-BlackItalic.ttf
|
|
53
|
+
Roboto/static/Roboto_SemiCondensed-ThinItalic.ttf
|
|
54
|
+
Roboto/static/Roboto_SemiCondensed-ExtraLightItalic.ttf
|
|
55
|
+
Roboto/static/Roboto_SemiCondensed-LightItalic.ttf
|
|
56
|
+
Roboto/static/Roboto_SemiCondensed-Italic.ttf
|
|
57
|
+
Roboto/static/Roboto_SemiCondensed-MediumItalic.ttf
|
|
58
|
+
Roboto/static/Roboto_SemiCondensed-SemiBoldItalic.ttf
|
|
59
|
+
Roboto/static/Roboto_SemiCondensed-BoldItalic.ttf
|
|
60
|
+
Roboto/static/Roboto_SemiCondensed-ExtraBoldItalic.ttf
|
|
61
|
+
Roboto/static/Roboto_SemiCondensed-BlackItalic.ttf
|
|
62
|
+
Roboto/static/Roboto-ThinItalic.ttf
|
|
63
|
+
Roboto/static/Roboto-ExtraLightItalic.ttf
|
|
64
|
+
Roboto/static/Roboto-LightItalic.ttf
|
|
65
|
+
Roboto/static/Roboto-Italic.ttf
|
|
66
|
+
Roboto/static/Roboto-MediumItalic.ttf
|
|
67
|
+
Roboto/static/Roboto-SemiBoldItalic.ttf
|
|
68
|
+
Roboto/static/Roboto-BoldItalic.ttf
|
|
69
|
+
Roboto/static/Roboto-ExtraBoldItalic.ttf
|
|
70
|
+
Roboto/static/Roboto-BlackItalic.ttf
|
|
71
|
+
|
|
72
|
+
Get started
|
|
73
|
+
-----------
|
|
74
|
+
|
|
75
|
+
1. Install the font files you want to use
|
|
76
|
+
|
|
77
|
+
2. Use your app's font picker to view the font family and all the
|
|
78
|
+
available styles
|
|
79
|
+
|
|
80
|
+
Learn more about variable fonts
|
|
81
|
+
-------------------------------
|
|
82
|
+
|
|
83
|
+
https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
|
|
84
|
+
https://variablefonts.typenetwork.com
|
|
85
|
+
https://medium.com/variable-fonts
|
|
86
|
+
|
|
87
|
+
In desktop apps
|
|
88
|
+
|
|
89
|
+
https://theblog.adobe.com/can-variable-fonts-illustrator-cc
|
|
90
|
+
https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
|
|
91
|
+
|
|
92
|
+
Online
|
|
93
|
+
|
|
94
|
+
https://developers.google.com/fonts/docs/getting_started
|
|
95
|
+
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
|
|
96
|
+
https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
|
|
97
|
+
|
|
98
|
+
Installing fonts
|
|
99
|
+
|
|
100
|
+
MacOS: https://support.apple.com/en-us/HT201749
|
|
101
|
+
Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
|
|
102
|
+
Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
|
|
103
|
+
|
|
104
|
+
Android Apps
|
|
105
|
+
|
|
106
|
+
https://developers.google.com/fonts/docs/android
|
|
107
|
+
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
|
|
108
|
+
|
|
109
|
+
License
|
|
110
|
+
-------
|
|
111
|
+
Please read the full license text (OFL.txt) to understand the permissions,
|
|
112
|
+
restrictions and requirements for usage, redistribution, and modification.
|
|
113
|
+
|
|
114
|
+
You can use them in your products & projects – print or digital,
|
|
115
|
+
commercial or otherwise.
|
|
116
|
+
|
|
117
|
+
This isn't legal advice, please consider consulting a lawyer and see the full
|
|
118
|
+
license for all details.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|