@dbcdk/react-components 0.0.103 → 0.0.105
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.js +85 -0
- package/dist/client.cjs +587 -0
- package/dist/client.d.ts +83 -0
- package/dist/client.js +84 -0
- package/dist/components/accordion/Accordion.cjs +117 -0
- package/dist/components/accordion/Accordion.d.ts +5 -2
- package/dist/components/accordion/Accordion.js +111 -0
- package/dist/components/accordion/Accordion.module.css +41 -0
- package/dist/components/accordion/components/AccordionRow.cjs +120 -0
- package/dist/components/accordion/components/AccordionRow.js +114 -0
- package/dist/components/accordion/components/AccordionRow.module.css +133 -0
- package/dist/components/alert/Alert.cjs +52 -0
- package/dist/components/alert/Alert.d.ts +2 -1
- package/dist/components/alert/Alert.js +46 -0
- package/dist/components/alert/Alert.module.css +97 -0
- package/dist/components/app-header/AppHeader.cjs +14 -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 +22 -0
- package/dist/components/attribute-chip/AttributeChip.js +16 -0
- package/dist/components/attribute-chip/AttributeChip.module.css +65 -0
- package/dist/components/avatar/Avatar.cjs +111 -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.js +18 -0
- package/dist/components/breadcrumbs/Breadcrumbs.module.css +80 -0
- package/dist/components/button/Button.cjs +149 -0
- package/dist/components/button/Button.js +124 -0
- package/dist/components/button/Button.module.css +260 -0
- package/dist/components/button-select/ButtonSelect.cjs +35 -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 +112 -0
- package/dist/components/card/Card.d.ts +2 -1
- package/dist/components/card/Card.js +106 -0
- package/dist/components/card/Card.module.css +187 -0
- package/dist/components/card/components/CardMeta.cjs +62 -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.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.js +59 -0
- package/dist/components/chip/Chip.module.css +236 -0
- package/dist/components/circle/Circle.cjs +33 -0
- package/dist/components/circle/Circle.js +27 -0
- package/dist/components/circle/Circle.module.css +128 -0
- package/dist/components/clear-button/ClearButton.cjs +33 -0
- package/dist/components/clear-button/ClearButton.d.ts +2 -1
- 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 +97 -0
- package/dist/components/code-block/CodeBlock.js +91 -0
- package/dist/components/code-block/CodeBlock.module.css +124 -0
- package/dist/components/copy-button/CopyButton.cjs +139 -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 +559 -0
- package/dist/components/datetime-picker/DateTimePicker.js +553 -0
- package/dist/components/datetime-picker/DateTimePicker.module.css +155 -0
- package/dist/components/datetime-picker/dateTimeHelpers.cjs +179 -0
- package/dist/components/datetime-picker/dateTimeHelpers.js +160 -0
- package/dist/components/divider/Divider.cjs +22 -0
- package/dist/components/divider/Divider.js +20 -0
- package/dist/components/filter-field/FilterField.cjs +296 -0
- package/dist/components/filter-field/FilterField.js +289 -0
- package/dist/components/filter-field/FilterField.module.css +379 -0
- package/dist/components/filtering/chip-multi-toggle/ChipMultiToggle.cjs +115 -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 +88 -0
- package/dist/components/forms/checkbox/Checkbox.js +82 -0
- package/dist/components/forms/checkbox/Checkbox.module.css +104 -0
- package/dist/components/forms/checkbox-group/CheckboxGroup.cjs +121 -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/form-select/FormSelect.cjs +191 -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 +188 -0
- package/dist/components/forms/input/Input.d.ts +1 -0
- package/dist/components/forms/input/Input.js +182 -0
- package/dist/components/forms/input/Input.module.css +468 -0
- package/dist/components/forms/input-container/InputContainer.cjs +72 -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 +227 -0
- package/dist/components/forms/multi-select/MultiSelect.js +225 -0
- package/dist/components/forms/radio-buttons/RadioButton.cjs +91 -0
- package/dist/components/forms/radio-buttons/RadioButton.js +85 -0
- package/dist/components/forms/radio-buttons/RadioButtonGroup.cjs +74 -0
- package/dist/components/forms/radio-buttons/RadioButtonGroup.js +72 -0
- package/dist/components/forms/radio-buttons/RadioButtons.module.css +118 -0
- package/dist/components/forms/select/Select.cjs +286 -0
- package/dist/components/forms/select/Select.js +280 -0
- package/dist/components/forms/select/Select.module.css +32 -0
- package/dist/components/forms/text-area/Textarea.cjs +116 -0
- package/dist/components/forms/text-area/Textarea.js +110 -0
- package/dist/components/forms/text-area/Textarea.module.css +70 -0
- package/dist/components/forms/typeahead/Typeahead.cjs +792 -0
- package/dist/components/forms/typeahead/Typeahead.js +768 -0
- package/dist/components/forms/typeahead/Typeahead.module.css +38 -0
- package/dist/components/grid/Grid.cjs +45 -0
- package/dist/components/grid/Grid.js +38 -0
- package/dist/components/grid/Grid.module.css +35 -0
- package/dist/components/headline/CollapsibleHeadline.cjs +89 -0
- package/dist/components/headline/CollapsibleHeadline.d.ts +4 -4
- package/dist/components/headline/CollapsibleHeadline.js +83 -0
- package/dist/components/headline/Headline.cjs +59 -0
- package/dist/components/headline/Headline.js +53 -0
- package/dist/components/headline/Headline.module.css +185 -0
- package/dist/components/hyperlink/Hyperlink.cjs +107 -0
- package/dist/components/hyperlink/Hyperlink.js +82 -0
- package/dist/components/hyperlink/Hyperlink.module.css +121 -0
- package/dist/components/icon/Icon.cjs +27 -0
- package/dist/components/icon/Icon.js +20 -0
- package/dist/components/icon/Icon.module.css +36 -0
- package/dist/components/inline-status/InlineStatus.cjs +39 -0
- package/dist/components/inline-status/InlineStatus.js +33 -0
- package/dist/components/inline-status/InlineStatus.module.css +92 -0
- package/dist/components/interval-select/IntervalSelect.cjs +203 -0
- package/dist/components/interval-select/IntervalSelect.js +201 -0
- package/dist/components/json-viewer/HighlightedText.cjs +13 -0
- package/dist/components/json-viewer/HighlightedText.js +11 -0
- package/dist/components/json-viewer/JsonNode.cjs +124 -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.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.js +1 -0
- package/dist/components/json-viewer/useClipboardStatus.cjs +15 -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.js +111 -0
- package/dist/components/media-card/MediaCard.cjs +60 -0
- package/dist/components/media-card/MediaCard.d.ts +19 -0
- package/dist/components/media-card/MediaCard.js +54 -0
- package/dist/components/media-card/MediaCard.module.css +92 -0
- package/dist/components/menu/Menu.cjs +287 -0
- package/dist/components/menu/Menu.js +262 -0
- package/dist/components/menu/Menu.module.css +220 -0
- package/dist/components/meta-bar/MetaBar.cjs +28 -0
- package/dist/components/meta-bar/MetaBar.js +22 -0
- package/dist/components/meta-bar/MetaBar.module.css +27 -0
- package/dist/components/nav-bar/NavBar.cjs +104 -0
- package/dist/components/nav-bar/NavBar.d.ts +4 -3
- package/dist/components/nav-bar/NavBar.js +98 -0
- package/dist/components/nav-bar/NavBar.module.css +225 -0
- package/dist/components/overlay/fade-overlay/FadeOverlay.cjs +30 -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 +189 -0
- package/dist/components/overlay/modal/Modal.d.ts +2 -1
- package/dist/components/overlay/modal/Modal.js +183 -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.js +95 -0
- package/dist/components/overlay/side-panel/SidePanel.cjs +173 -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.js +14 -0
- package/dist/components/overlay/tooltip/Tooltip.cjs +34 -0
- package/dist/components/overlay/tooltip/Tooltip.js +32 -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.js +231 -0
- package/dist/components/overlay/tooltip/useTooltipTrigger.cjs +117 -0
- package/dist/components/overlay/tooltip/useTooltipTrigger.js +115 -0
- package/dist/components/page/Page.cjs +63 -0
- package/dist/components/page/Page.js +57 -0
- package/dist/components/page/Page.module.css +95 -0
- package/dist/components/page-layout/PageLayout.cjs +97 -0
- package/dist/components/page-layout/PageLayout.d.ts +0 -5
- package/dist/components/page-layout/PageLayout.js +91 -0
- package/dist/components/page-layout/PageLayout.module.css +236 -0
- package/dist/components/page-layout/components/footer/Footer.cjs +53 -0
- package/dist/components/page-layout/components/footer/Footer.js +47 -0
- package/dist/components/page-layout/components/footer/Footer.module.css +89 -0
- package/dist/components/pagination/Pagination.cjs +160 -0
- package/dist/components/pagination/Pagination.js +154 -0
- package/dist/components/pagination/Pagination.module.css +25 -0
- package/dist/components/panel/Panel.cjs +38 -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.js +307 -0
- package/dist/components/popover/Popover.module.css +52 -0
- package/dist/components/search-box/SearchBox.cjs +274 -0
- package/dist/components/search-box/SearchBox.js +268 -0
- package/dist/components/search-box/SearchBox.module.css +27 -0
- package/dist/components/segmented-progress-bar/SegmentedProgressBar.cjs +127 -0
- package/dist/components/segmented-progress-bar/SegmentedProgressBar.js +121 -0
- package/dist/components/segmented-progress-bar/SegmentedProgressBar.module.css +174 -0
- package/dist/components/sidebar/Sidebar.cjs +39 -0
- package/dist/components/sidebar/Sidebar.js +37 -0
- package/dist/components/sidebar/components/SidebarItem.cjs +29 -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 +133 -0
- package/dist/components/sidebar/components/expandable-sidebar-item/ExpandableSidebarItem.js +127 -0
- package/dist/components/sidebar/components/expandable-sidebar-item/ExpandableSidebarItem.module.css +29 -0
- package/dist/components/sidebar/components/sidebar-container/SidebarContainer.cjs +214 -0
- package/dist/components/sidebar/components/sidebar-container/SidebarContainer.js +207 -0
- package/dist/components/sidebar/components/sidebar-container/SidebarContainer.module.css +260 -0
- package/dist/components/sidebar/components/sidebar-item-content/SidebarItemContent.cjs +54 -0
- package/dist/components/sidebar/components/sidebar-item-content/SidebarItemContent.js +47 -0
- package/dist/components/sidebar/components/sidebar-item-content/SidebarItemContent.module.css +106 -0
- package/dist/components/sidebar/components/sidebar-items/SidebarItems.cjs +61 -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 +97 -0
- package/dist/components/sidebar/components/sidenav-filteirng/SidenavFiltering.js +91 -0
- package/dist/components/sidebar/providers/SidebarProvider.cjs +223 -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.js +440 -0
- package/dist/components/skeleton-loader/skeleton-loader-item/SkeletonLoaderItem.cjs +42 -0
- package/dist/components/skeleton-loader/skeleton-loader-item/SkeletonLoaderItem.js +36 -0
- package/dist/components/skeleton-loader/skeleton-loader-item/SkeletonLoaderItem.module.css +51 -0
- package/dist/components/split-button/SplitButton.cjs +46 -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 +188 -0
- package/dist/components/split-pane/SplitPane.d.ts +2 -1
- package/dist/components/split-pane/SplitPane.js +179 -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.js +121 -0
- package/dist/components/stack/Stack.cjs +47 -0
- package/dist/components/stack/Stack.d.ts +1 -1
- package/dist/components/stack/Stack.js +41 -0
- package/dist/components/stack/Stack.module.css +61 -0
- package/dist/components/state-page/StatePage.cjs +48 -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.js +662 -0
- package/dist/components/state-page/error.cjs +310 -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.js +241 -0
- package/dist/components/sticky-footer-layout/StickyFooterLayout.cjs +98 -0
- package/dist/components/sticky-footer-layout/StickyFooterLayout.js +96 -0
- package/dist/components/table/Table.cjs +216 -0
- package/dist/components/table/Table.js +210 -0
- package/dist/components/table/Table.module.css +534 -0
- package/dist/components/table/Table.types.cjs +2 -0
- package/dist/components/table/Table.types.js +1 -0
- package/dist/components/table/TanstackTable.cjs +172 -0
- package/dist/components/table/TanstackTable.js +147 -0
- package/dist/components/table/components/TableBody.cjs +50 -0
- package/dist/components/table/components/TableBody.js +44 -0
- package/dist/components/table/components/TableHeader.cjs +56 -0
- package/dist/components/table/components/TableHeader.js +50 -0
- package/dist/components/table/components/TableHeaderCell.cjs +69 -0
- package/dist/components/table/components/TableHeaderCell.js +63 -0
- package/dist/components/table/components/TableLoadingBody.cjs +35 -0
- package/dist/components/table/components/TableLoadingBody.js +29 -0
- package/dist/components/table/components/TablePagination.cjs +2 -0
- package/dist/components/table/components/TablePagination.js +1 -0
- package/dist/components/table/components/TableRow.cjs +151 -0
- package/dist/components/table/components/TableRow.js +145 -0
- package/dist/components/table/components/TableSelectionCell.cjs +41 -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.js +19 -0
- package/dist/components/table/components/column-resizer/ColumnResizer.module.css +22 -0
- package/dist/components/table/components/empty-state/EmptyState.cjs +33 -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.js +137 -0
- package/dist/components/table/hooks/useTableRowInteractions.cjs +46 -0
- package/dist/components/table/hooks/useTableRowInteractions.js +44 -0
- package/dist/components/table/table.classes.cjs +49 -0
- package/dist/components/table/table.classes.js +40 -0
- package/dist/components/table/table.utils.cjs +57 -0
- package/dist/components/table/table.utils.js +45 -0
- package/dist/components/table/tanstackTable.utils.cjs +166 -0
- package/dist/components/table/tanstackTable.utils.js +159 -0
- package/dist/components/tabs/Tabs.cjs +172 -0
- package/dist/components/tabs/Tabs.js +166 -0
- package/dist/components/tabs/Tabs.module.css +261 -0
- package/dist/components/theme-button/ThemeButton.cjs +78 -0
- package/dist/components/theme-button/ThemeButton.js +75 -0
- package/dist/components/toast/Toast.cjs +68 -0
- package/dist/components/toast/Toast.js +62 -0
- package/dist/components/toast/Toast.module.css +161 -0
- package/dist/components/toast/provider/ToastProvider.cjs +105 -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.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.js +8 -0
- package/dist/constants/chart-colors.types.cjs +2 -0
- package/dist/constants/chart-colors.types.js +1 -0
- package/dist/constants/severity.cjs +30 -0
- package/dist/constants/severity.js +26 -0
- package/dist/constants/severity.types.cjs +2 -0
- package/dist/constants/severity.types.js +1 -0
- package/dist/constants/sizes.cjs +11 -0
- package/dist/constants/sizes.js +9 -0
- package/dist/hooks/useDeviceSize.cjs +35 -0
- package/dist/hooks/useDeviceSize.js +33 -0
- package/dist/hooks/useListNavigation.cjs +237 -0
- package/dist/hooks/useListNavigation.js +235 -0
- package/dist/hooks/usePagination.cjs +144 -0
- package/dist/hooks/usePagination.js +142 -0
- package/dist/hooks/useSorting.cjs +119 -0
- package/dist/hooks/useSorting.js +117 -0
- package/dist/hooks/useTableData.cjs +53 -0
- package/dist/hooks/useTableData.js +51 -0
- package/dist/hooks/useTableSelection.cjs +172 -0
- package/dist/hooks/useTableSelection.js +170 -0
- package/dist/hooks/useTableSettings.cjs +90 -0
- package/dist/hooks/useTableSettings.js +87 -0
- package/dist/hooks/useTheme.cjs +64 -0
- package/dist/hooks/useTheme.js +62 -0
- package/dist/hooks/useTimeDuration.cjs +72 -0
- package/dist/hooks/useTimeDuration.js +70 -0
- package/dist/hooks/useViewportFill.cjs +82 -0
- package/dist/hooks/useViewportFill.js +80 -0
- package/dist/index.cjs +161 -12908
- package/dist/index.css +67 -7357
- package/dist/index.d.ts +0 -58
- package/dist/index.js +24 -12809
- package/dist/styles/animation.cjs +9 -0
- package/dist/styles/animation.js +7 -0
- package/dist/styles/themes/dbc/colors.css +5 -0
- package/dist/styles/themes/types.cjs +2 -0
- package/dist/styles/themes/types.js +1 -0
- package/dist/tanstack.cjs +18 -2717
- package/dist/tanstack.js +3 -2701
- package/dist/types/a11y-props.types.cjs +2 -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.js +1 -0
- package/dist/utils/arrays/nested-filtering.cjs +40 -0
- package/dist/utils/arrays/nested-filtering.js +38 -0
- package/dist/utils/date/formatDate.cjs +35 -0
- package/dist/utils/date/formatDate.js +33 -0
- package/dist/utils/localStorage.utils.cjs +53 -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.js +47 -0
- package/package.json +8 -3
- package/dist/tanstack.css +0 -1385
package/dist/tanstack.css
DELETED
|
@@ -1,1385 +0,0 @@
|
|
|
1
|
-
/* src/components/table/components/column-resizer/ColumnResizer.module.css */
|
|
2
|
-
.ColumnResizer_resizer {
|
|
3
|
-
position: absolute;
|
|
4
|
-
right: 0;
|
|
5
|
-
top: 0;
|
|
6
|
-
height: 100%;
|
|
7
|
-
width: 10px;
|
|
8
|
-
cursor: col-resize;
|
|
9
|
-
user-select: none;
|
|
10
|
-
touch-action: none;
|
|
11
|
-
z-index: 20;
|
|
12
|
-
}
|
|
13
|
-
.ColumnResizer_resizer::after {
|
|
14
|
-
content: "";
|
|
15
|
-
position: absolute;
|
|
16
|
-
right: 0;
|
|
17
|
-
width: 1px;
|
|
18
|
-
height: 60%;
|
|
19
|
-
top: 50%;
|
|
20
|
-
transform: translateY(-50%);
|
|
21
|
-
background-color: var(--opac-bg-default);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
/* src/components/pagination/Pagination.module.css */
|
|
25
|
-
.Pagination_container2 {
|
|
26
|
-
display: flex;
|
|
27
|
-
gap: var(--spacing-xxs);
|
|
28
|
-
align-items: center;
|
|
29
|
-
justify-content: center;
|
|
30
|
-
margin: 0 auto;
|
|
31
|
-
max-width: 100%;
|
|
32
|
-
overflow-x: auto;
|
|
33
|
-
}
|
|
34
|
-
.Pagination_ellipsisButton2 {
|
|
35
|
-
display: none;
|
|
36
|
-
}
|
|
37
|
-
@media (min-width: 480px) {
|
|
38
|
-
.Pagination_ellipsisButton2 {
|
|
39
|
-
display: contents;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
.Pagination_range2 {
|
|
43
|
-
min-width: 110px;
|
|
44
|
-
text-align: center;
|
|
45
|
-
font-size: var(--font-size-xs);
|
|
46
|
-
padding: 0 var(--spacing-xxs);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
/* src/components/overlay/tooltip/Tooltip.module.css */
|
|
50
|
-
.Tooltip_container2 {
|
|
51
|
-
display: contents;
|
|
52
|
-
}
|
|
53
|
-
.Tooltip_trigger2 {
|
|
54
|
-
display: inline-flex;
|
|
55
|
-
align-items: center;
|
|
56
|
-
max-width: 100%;
|
|
57
|
-
}
|
|
58
|
-
.Tooltip_trigger2:focus-visible {
|
|
59
|
-
outline: none;
|
|
60
|
-
box-shadow: var(--focus-ring);
|
|
61
|
-
border-radius: var(--border-radius-default);
|
|
62
|
-
}
|
|
63
|
-
.Tooltip_bubble2 {
|
|
64
|
-
position: fixed;
|
|
65
|
-
z-index: var(--z-tooltip);
|
|
66
|
-
pointer-events: none;
|
|
67
|
-
background: var(--color-fg-default);
|
|
68
|
-
color: var(--color-fg-on-strong);
|
|
69
|
-
font-size: var(--font-size-xs);
|
|
70
|
-
line-height: var(--line-height-tight);
|
|
71
|
-
padding: var(--spacing-xxs) var(--spacing-sm);
|
|
72
|
-
border-radius: var(--border-radius-default);
|
|
73
|
-
max-width: min(360px, calc(100vw - 16px));
|
|
74
|
-
white-space: normal;
|
|
75
|
-
overflow-wrap: break-word;
|
|
76
|
-
word-break: normal;
|
|
77
|
-
filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.22));
|
|
78
|
-
opacity: 0;
|
|
79
|
-
visibility: hidden;
|
|
80
|
-
transform: translate3d(0, 0, 0);
|
|
81
|
-
transition:
|
|
82
|
-
opacity var(--transition-fast),
|
|
83
|
-
transform var(--transition-fast),
|
|
84
|
-
visibility 0s linear var(--transition-fast);
|
|
85
|
-
}
|
|
86
|
-
.Tooltip_bubble2[data-open=true] {
|
|
87
|
-
opacity: 1;
|
|
88
|
-
visibility: visible;
|
|
89
|
-
transition:
|
|
90
|
-
opacity var(--transition-fast),
|
|
91
|
-
transform var(--transition-fast),
|
|
92
|
-
visibility 0s;
|
|
93
|
-
}
|
|
94
|
-
.Tooltip_bubble2[data-placement=top] {
|
|
95
|
-
transform: translate3d(0, -6px, 0);
|
|
96
|
-
}
|
|
97
|
-
.Tooltip_bubble2[data-placement=bottom] {
|
|
98
|
-
transform: translate3d(0, 6px, 0);
|
|
99
|
-
}
|
|
100
|
-
.Tooltip_bubble2[data-placement=left] {
|
|
101
|
-
transform: translate3d(-6px, 0, 0);
|
|
102
|
-
}
|
|
103
|
-
.Tooltip_bubble2[data-placement=right] {
|
|
104
|
-
transform: translate3d(6px, 0, 0);
|
|
105
|
-
}
|
|
106
|
-
.Tooltip_bubble2[data-open=true][data-placement=top],
|
|
107
|
-
.Tooltip_bubble2[data-open=true][data-placement=bottom],
|
|
108
|
-
.Tooltip_bubble2[data-open=true][data-placement=left],
|
|
109
|
-
.Tooltip_bubble2[data-open=true][data-placement=right] {
|
|
110
|
-
transform: translate3d(0, 0, 0);
|
|
111
|
-
}
|
|
112
|
-
.Tooltip_bubble2 svg {
|
|
113
|
-
height: 20px;
|
|
114
|
-
width: 20px;
|
|
115
|
-
flex: 0 0 auto;
|
|
116
|
-
}
|
|
117
|
-
@media (prefers-reduced-motion: reduce) {
|
|
118
|
-
.Tooltip_bubble2 {
|
|
119
|
-
transition: none;
|
|
120
|
-
transform: none;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
/* src/components/button/Button.module.css */
|
|
125
|
-
.Button_button2 {
|
|
126
|
-
display: inline-flex;
|
|
127
|
-
align-items: center;
|
|
128
|
-
justify-content: center;
|
|
129
|
-
gap: var(--spacing-xs);
|
|
130
|
-
font-family: var(--font-family);
|
|
131
|
-
font-size: var(--font-size-sm);
|
|
132
|
-
line-height: 1;
|
|
133
|
-
height: var(--component-size-md);
|
|
134
|
-
min-block-size: var(--component-size-md);
|
|
135
|
-
padding-inline: var(--spacing-sm);
|
|
136
|
-
padding-block: var(--spacing-xs);
|
|
137
|
-
border-width: var(--border-width-thin, 1px);
|
|
138
|
-
border-style: solid;
|
|
139
|
-
border-color: transparent;
|
|
140
|
-
border-radius: var(--border-radius-default);
|
|
141
|
-
cursor: pointer;
|
|
142
|
-
user-select: none;
|
|
143
|
-
white-space: nowrap;
|
|
144
|
-
}
|
|
145
|
-
.Button_buttonLink2 {
|
|
146
|
-
color: inherit;
|
|
147
|
-
text-decoration: none;
|
|
148
|
-
user-select: default;
|
|
149
|
-
}
|
|
150
|
-
.Button_button2:hover {
|
|
151
|
-
transition:
|
|
152
|
-
background-color var(--transition-fast) var(--ease-standard),
|
|
153
|
-
color var(--transition-fast) var(--ease-standard),
|
|
154
|
-
border-color var(--transition-fast) var(--ease-standard),
|
|
155
|
-
box-shadow var(--transition-fast) var(--ease-standard);
|
|
156
|
-
}
|
|
157
|
-
.Button_button2:focus-visible {
|
|
158
|
-
outline: none;
|
|
159
|
-
border-color: var(--color-border-selected);
|
|
160
|
-
box-shadow: inset 0 0 0 1px var(--color-border-selected);
|
|
161
|
-
}
|
|
162
|
-
.Button_round2 {
|
|
163
|
-
border-radius: 100%;
|
|
164
|
-
}
|
|
165
|
-
.Button_rounded2 {
|
|
166
|
-
border-radius: var(--border-radius-rounded);
|
|
167
|
-
}
|
|
168
|
-
.Button_button2:disabled,
|
|
169
|
-
.Button_button2[aria-disabled=true] {
|
|
170
|
-
cursor: not-allowed;
|
|
171
|
-
background-color: var(--color-disabled-bg);
|
|
172
|
-
border-color: transparent;
|
|
173
|
-
color: var(--color-disabled-fg);
|
|
174
|
-
opacity: 0.5;
|
|
175
|
-
}
|
|
176
|
-
.Button_button2:is(:disabled, [aria-disabled=true]):hover {
|
|
177
|
-
background-color: var(--color-disabled-bg);
|
|
178
|
-
border-color: transparent;
|
|
179
|
-
color: var(--color-disabled-fg);
|
|
180
|
-
}
|
|
181
|
-
.Button_link2 {
|
|
182
|
-
text-decoration: none;
|
|
183
|
-
font-size: var(--font-size-sm);
|
|
184
|
-
color: var(--color-link);
|
|
185
|
-
transition: color var(--transition-fast) var(--ease-standard), text-decoration-color var(--transition-fast) var(--ease-standard);
|
|
186
|
-
text-underline-offset: 0.15em;
|
|
187
|
-
}
|
|
188
|
-
.Button_link2:focus-visible {
|
|
189
|
-
outline: none;
|
|
190
|
-
text-decoration: underline;
|
|
191
|
-
text-decoration-color: currentColor;
|
|
192
|
-
}
|
|
193
|
-
.Button_button2 svg,
|
|
194
|
-
.Button_icon2 svg {
|
|
195
|
-
inline-size: var(--icon-size-md);
|
|
196
|
-
block-size: var(--icon-size-md);
|
|
197
|
-
}
|
|
198
|
-
.Button_icon2 {
|
|
199
|
-
display: inline-flex;
|
|
200
|
-
}
|
|
201
|
-
.Button_button2.Button_sm2 {
|
|
202
|
-
height: var(--component-size-sm);
|
|
203
|
-
min-block-size: var(--component-size-sm);
|
|
204
|
-
padding-inline: var(--spacing-xs);
|
|
205
|
-
}
|
|
206
|
-
.Button_button2.Button_sm2 svg {
|
|
207
|
-
inline-size: var(--icon-size-sm);
|
|
208
|
-
block-size: var(--icon-size-sm);
|
|
209
|
-
}
|
|
210
|
-
.Button_button2.Button_lg2 {
|
|
211
|
-
height: var(--component-size-lg);
|
|
212
|
-
font-size: var(--font-size-md);
|
|
213
|
-
min-block-size: var(--component-size-lg);
|
|
214
|
-
padding-inline: var(--spacing-lg);
|
|
215
|
-
}
|
|
216
|
-
.Button_button2.Button_fullWidth2 {
|
|
217
|
-
width: 100%;
|
|
218
|
-
}
|
|
219
|
-
.Button_primary2 {
|
|
220
|
-
background-color: var(--button-bg-primary);
|
|
221
|
-
color: var(--button-fg-primary);
|
|
222
|
-
border-color: transparent;
|
|
223
|
-
}
|
|
224
|
-
.Button_primary2:hover {
|
|
225
|
-
background-color: var(--button-bg-primary-hover);
|
|
226
|
-
}
|
|
227
|
-
.Button_secondary2 {
|
|
228
|
-
background-color: var(--button-bg-secondary);
|
|
229
|
-
color: var(--button-fg-secondary);
|
|
230
|
-
border-color: var(--button-border-secondary);
|
|
231
|
-
}
|
|
232
|
-
.Button_secondary2:hover {
|
|
233
|
-
background-color: var(--button-bg-secondary-hover);
|
|
234
|
-
border-color: var(--color-border-strong);
|
|
235
|
-
}
|
|
236
|
-
.Button_default2 {
|
|
237
|
-
background-color: var(--color-bg-toolbar);
|
|
238
|
-
color: var(--color-fg-default);
|
|
239
|
-
border-color: transparent;
|
|
240
|
-
}
|
|
241
|
-
.Button_default2:hover {
|
|
242
|
-
background-color: var(--color-bg-toolbar-hover);
|
|
243
|
-
border-color: transparent;
|
|
244
|
-
}
|
|
245
|
-
.Button_default2:focus-visible {
|
|
246
|
-
outline: none;
|
|
247
|
-
border-color: var(--color-border-selected);
|
|
248
|
-
box-shadow: inset 0 0 0 1px var(--color-border-selected);
|
|
249
|
-
}
|
|
250
|
-
.Button_outlined2 {
|
|
251
|
-
background-color: transparent;
|
|
252
|
-
color: var(--color-fg-default);
|
|
253
|
-
border-width: var(--border-width-thin, 1px);
|
|
254
|
-
border-style: solid;
|
|
255
|
-
border-color: var(--color-border-default);
|
|
256
|
-
}
|
|
257
|
-
.Button_outlined2:not(.Button_active2):hover {
|
|
258
|
-
background-color: var(--color-bg-hover-subtle);
|
|
259
|
-
border-color: var(--color-border-strong);
|
|
260
|
-
}
|
|
261
|
-
.Button_success2 {
|
|
262
|
-
background-color: transparent;
|
|
263
|
-
color: var(--color-status-success-fg);
|
|
264
|
-
border-color: var(--color-status-success-border);
|
|
265
|
-
}
|
|
266
|
-
.Button_success2 .Button_icon2 {
|
|
267
|
-
color: var(--color-status-success);
|
|
268
|
-
}
|
|
269
|
-
.Button_success2:hover {
|
|
270
|
-
border-color: var(--color-fg-default);
|
|
271
|
-
}
|
|
272
|
-
.Button_danger2 {
|
|
273
|
-
background-color: transparent;
|
|
274
|
-
color: var(--color-status-error-fg);
|
|
275
|
-
border-color: var(--color-status-error-border);
|
|
276
|
-
}
|
|
277
|
-
.Button_danger2 .Button_icon2 {
|
|
278
|
-
color: var(--color-status-error);
|
|
279
|
-
}
|
|
280
|
-
.Button_danger2:hover {
|
|
281
|
-
border-color: var(--color-fg-default);
|
|
282
|
-
}
|
|
283
|
-
.Button_button2.Button_inline2 {
|
|
284
|
-
background-color: transparent;
|
|
285
|
-
border-color: transparent;
|
|
286
|
-
padding: var(--spacing-xxs);
|
|
287
|
-
min-block-size: unset;
|
|
288
|
-
block-size: unset;
|
|
289
|
-
height: unset;
|
|
290
|
-
color: var(--color-fg-default);
|
|
291
|
-
}
|
|
292
|
-
.Button_button2.Button_inline2:hover {
|
|
293
|
-
background-color: var(--opac-bg-light);
|
|
294
|
-
}
|
|
295
|
-
.Button_button2.Button_inline2:focus-visible {
|
|
296
|
-
outline: none;
|
|
297
|
-
background-color: var(--opac-bg-light);
|
|
298
|
-
border-color: transparent;
|
|
299
|
-
box-shadow: inset 0 0 0 1px var(--color-border-selected);
|
|
300
|
-
}
|
|
301
|
-
.Button_active2 {
|
|
302
|
-
background-color: var(--button-bg-primary);
|
|
303
|
-
color: var(--button-fg-primary);
|
|
304
|
-
border-color: var(--color-border-selected);
|
|
305
|
-
}
|
|
306
|
-
.Button_inline2.Button_active2 {
|
|
307
|
-
color: var(--button-bg-primary);
|
|
308
|
-
}
|
|
309
|
-
.Button_active2:hover {
|
|
310
|
-
background-color: var(--button-bg-primary-hover);
|
|
311
|
-
}
|
|
312
|
-
.Button_inline2.Button_active2:hover {
|
|
313
|
-
color: var(--button-bg-primary-hover);
|
|
314
|
-
}
|
|
315
|
-
.Button_button2.Button_xs2 {
|
|
316
|
-
height: auto;
|
|
317
|
-
min-block-size: 0;
|
|
318
|
-
padding-block: 0;
|
|
319
|
-
padding-inline: var(--spacing-xs);
|
|
320
|
-
font-size: var(--font-size-xs);
|
|
321
|
-
}
|
|
322
|
-
.Button_button2.Button_xs2 svg {
|
|
323
|
-
inline-size: var(--icon-size-sm);
|
|
324
|
-
block-size: var(--icon-size-sm);
|
|
325
|
-
}
|
|
326
|
-
|
|
327
|
-
/* src/components/menu/Menu.module.css */
|
|
328
|
-
.Menu_container2 {
|
|
329
|
-
list-style: none;
|
|
330
|
-
margin: 0;
|
|
331
|
-
padding: 0;
|
|
332
|
-
background: transparent;
|
|
333
|
-
border: 0;
|
|
334
|
-
box-shadow: none;
|
|
335
|
-
display: flex;
|
|
336
|
-
flex-direction: column;
|
|
337
|
-
}
|
|
338
|
-
.Menu_row2 {
|
|
339
|
-
display: block;
|
|
340
|
-
}
|
|
341
|
-
.Menu_interactive2 {
|
|
342
|
-
display: flex;
|
|
343
|
-
align-items: flex-start;
|
|
344
|
-
justify-content: flex-start;
|
|
345
|
-
gap: var(--spacing-xs);
|
|
346
|
-
inline-size: 100%;
|
|
347
|
-
text-align: start;
|
|
348
|
-
text-decoration: none;
|
|
349
|
-
padding-block: var(--spacing-xxs);
|
|
350
|
-
padding-inline: var(--spacing-md);
|
|
351
|
-
margin-block: var(--spacing-2xs);
|
|
352
|
-
min-block-size: var(--component-size-sm);
|
|
353
|
-
background: transparent;
|
|
354
|
-
border: none;
|
|
355
|
-
font-family: var(--font-family);
|
|
356
|
-
font-size: var(--font-size-sm);
|
|
357
|
-
line-height: var(--line-height-normal);
|
|
358
|
-
color: var(--color-fg-default);
|
|
359
|
-
cursor: pointer;
|
|
360
|
-
border-radius: var(--border-radius-md);
|
|
361
|
-
transition: background-color var(--transition-fast) var(--ease-standard), color var(--transition-fast) var(--ease-standard);
|
|
362
|
-
}
|
|
363
|
-
.Menu_interactive2 > :last-child {
|
|
364
|
-
min-width: 0;
|
|
365
|
-
white-space: normal;
|
|
366
|
-
overflow-wrap: anywhere;
|
|
367
|
-
word-break: break-word;
|
|
368
|
-
}
|
|
369
|
-
.Menu_interactiveChild2 {
|
|
370
|
-
display: block;
|
|
371
|
-
inline-size: 100%;
|
|
372
|
-
border-radius: var(--border-radius-md);
|
|
373
|
-
}
|
|
374
|
-
.Menu_row2 > .Menu_interactiveChild2 {
|
|
375
|
-
display: flex;
|
|
376
|
-
align-items: center;
|
|
377
|
-
inline-size: 100%;
|
|
378
|
-
padding-block: var(--spacing-xxs);
|
|
379
|
-
padding-inline: var(--spacing-md);
|
|
380
|
-
margin-block: var(--spacing-2xs);
|
|
381
|
-
min-block-size: var(--component-size-sm);
|
|
382
|
-
border-radius: var(--border-radius-md);
|
|
383
|
-
cursor: pointer;
|
|
384
|
-
}
|
|
385
|
-
.Menu_row2 .container {
|
|
386
|
-
display: flex;
|
|
387
|
-
align-items: center;
|
|
388
|
-
gap: var(--spacing-sm);
|
|
389
|
-
inline-size: 100%;
|
|
390
|
-
cursor: pointer;
|
|
391
|
-
}
|
|
392
|
-
.Menu_row2 .label {
|
|
393
|
-
flex: 1 1 auto;
|
|
394
|
-
cursor: pointer;
|
|
395
|
-
}
|
|
396
|
-
.Menu_row2 .label * {
|
|
397
|
-
cursor: pointer;
|
|
398
|
-
}
|
|
399
|
-
.Menu_interactive2:hover:not(.Menu_selected2),
|
|
400
|
-
.Menu_row2:hover > .Menu_interactiveChild2:not(.Menu_selected2) {
|
|
401
|
-
background-color: var(--color-bg-toolbar-hover);
|
|
402
|
-
}
|
|
403
|
-
.Menu_interactive2:focus-visible {
|
|
404
|
-
outline: none;
|
|
405
|
-
box-shadow: inset 0 0 0 1px var(--color-border-selected);
|
|
406
|
-
}
|
|
407
|
-
.Menu_row2:focus-within > .Menu_interactiveChild2 {
|
|
408
|
-
outline: none;
|
|
409
|
-
box-shadow: inset 0 0 0 1px var(--color-border-selected);
|
|
410
|
-
}
|
|
411
|
-
.Menu_active2,
|
|
412
|
-
.Menu_interactive2.Menu_active2,
|
|
413
|
-
.Menu_row2 > .Menu_interactiveChild2.Menu_active2 {
|
|
414
|
-
background-color: var(--color-bg-toolbar-hover);
|
|
415
|
-
}
|
|
416
|
-
.Menu_selected2,
|
|
417
|
-
.Menu_interactive2[aria-selected=true],
|
|
418
|
-
.Menu_row2 > .Menu_interactiveChild2.Menu_selected2,
|
|
419
|
-
.Menu_row2 > .Menu_interactiveChild2[aria-selected=true] {
|
|
420
|
-
background-color: var(--color-bg-selected);
|
|
421
|
-
color: var(--color-fg-default);
|
|
422
|
-
}
|
|
423
|
-
.Menu_selected2:hover,
|
|
424
|
-
.Menu_interactive2.Menu_selected2:hover,
|
|
425
|
-
.Menu_interactive2[aria-selected=true]:hover,
|
|
426
|
-
.Menu_row2:hover > .Menu_interactiveChild2.Menu_selected2,
|
|
427
|
-
.Menu_row2:hover > .Menu_interactiveChild2[aria-selected=true],
|
|
428
|
-
.Menu_active2.Menu_selected2,
|
|
429
|
-
.Menu_interactive2.Menu_active2.Menu_selected2,
|
|
430
|
-
.Menu_interactive2.Menu_active2[aria-selected=true],
|
|
431
|
-
.Menu_row2 > .Menu_interactiveChild2.Menu_active2.Menu_selected2,
|
|
432
|
-
.Menu_row2 > .Menu_interactiveChild2.Menu_active2[aria-selected=true] {
|
|
433
|
-
background-color: var(--color-bg-selected-hover);
|
|
434
|
-
}
|
|
435
|
-
.Menu_interactive2[aria-checked=true],
|
|
436
|
-
.Menu_row2 > .Menu_interactiveChild2[aria-checked=true] {
|
|
437
|
-
background-color: var(--color-bg-selected);
|
|
438
|
-
color: var(--color-fg-default);
|
|
439
|
-
}
|
|
440
|
-
.Menu_itemDanger2 {
|
|
441
|
-
color: var(--color-status-error);
|
|
442
|
-
}
|
|
443
|
-
.Menu_itemDanger2 svg {
|
|
444
|
-
color: inherit;
|
|
445
|
-
}
|
|
446
|
-
.Menu_interactive2[aria-disabled=true],
|
|
447
|
-
.Menu_interactive2:disabled,
|
|
448
|
-
.Menu_row2 > .Menu_interactiveChild2[aria-disabled=true] {
|
|
449
|
-
color: var(--color-disabled-fg);
|
|
450
|
-
cursor: not-allowed;
|
|
451
|
-
pointer-events: none;
|
|
452
|
-
}
|
|
453
|
-
.Menu_interactive2 svg,
|
|
454
|
-
.Menu_interactiveChild2 svg {
|
|
455
|
-
inline-size: var(--icon-size-sm);
|
|
456
|
-
block-size: var(--icon-size-sm);
|
|
457
|
-
margin-block: calc((var(--line-height-normal) * var(--font-size-sm) - var(--icon-size-sm)) / 2);
|
|
458
|
-
flex-shrink: 0;
|
|
459
|
-
}
|
|
460
|
-
.Menu_separator2 {
|
|
461
|
-
block-size: 1px;
|
|
462
|
-
margin-block: var(--spacing-xxs);
|
|
463
|
-
background: var(--color-border-subtle);
|
|
464
|
-
opacity: 0.8;
|
|
465
|
-
border-radius: 999px;
|
|
466
|
-
}
|
|
467
|
-
.Menu_header2 {
|
|
468
|
-
padding-block: var(--spacing-xs);
|
|
469
|
-
padding-inline: var(--spacing-md);
|
|
470
|
-
color: var(--color-fg-muted);
|
|
471
|
-
font-size: var(--font-size-xs);
|
|
472
|
-
font-weight: 500;
|
|
473
|
-
line-height: var(--line-height-normal);
|
|
474
|
-
text-transform: uppercase;
|
|
475
|
-
letter-spacing: 0.04em;
|
|
476
|
-
cursor: default;
|
|
477
|
-
user-select: none;
|
|
478
|
-
display: flex;
|
|
479
|
-
align-items: center;
|
|
480
|
-
gap: var(--spacing-xs);
|
|
481
|
-
}
|
|
482
|
-
.Menu_header2 svg {
|
|
483
|
-
inline-size: var(--icon-size-sm);
|
|
484
|
-
block-size: var(--icon-size-sm);
|
|
485
|
-
color: inherit;
|
|
486
|
-
}
|
|
487
|
-
.Menu_gap2 {
|
|
488
|
-
gap: var(--spacing-xs);
|
|
489
|
-
}
|
|
490
|
-
.Menu_rowBordered2 {
|
|
491
|
-
border: 1px solid var(--color-border-default);
|
|
492
|
-
border-radius: var(--border-radius-md);
|
|
493
|
-
overflow: hidden;
|
|
494
|
-
}
|
|
495
|
-
.Menu_rowBordered2 .Menu_interactive2,
|
|
496
|
-
.Menu_rowBordered2 .Menu_interactiveChild2 {
|
|
497
|
-
border-radius: 0;
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
/* src/components/forms/checkbox/Checkbox.module.css */
|
|
501
|
-
.Checkbox_container2 {
|
|
502
|
-
display: inline-flex;
|
|
503
|
-
align-items: flex-start;
|
|
504
|
-
gap: var(--spacing-sm);
|
|
505
|
-
vertical-align: middle;
|
|
506
|
-
line-height: var(--line-height-normal);
|
|
507
|
-
}
|
|
508
|
-
.Checkbox_containerSm2 {
|
|
509
|
-
gap: var(--spacing-xs);
|
|
510
|
-
}
|
|
511
|
-
.Checkbox_checkbox2 {
|
|
512
|
-
width: var(--component-size-sm);
|
|
513
|
-
height: var(--component-size-sm);
|
|
514
|
-
padding: 0;
|
|
515
|
-
display: flex;
|
|
516
|
-
align-items: center;
|
|
517
|
-
justify-content: center;
|
|
518
|
-
border: var(--border-width-thin) solid var(--color-border-default);
|
|
519
|
-
border-radius: var(--border-radius-sm);
|
|
520
|
-
background-color: var(--color-bg-surface);
|
|
521
|
-
cursor: pointer;
|
|
522
|
-
transition:
|
|
523
|
-
background-color var(--transition-fast) var(--ease-standard),
|
|
524
|
-
border-color var(--transition-fast) var(--ease-standard),
|
|
525
|
-
box-shadow var(--transition-fast) var(--ease-standard);
|
|
526
|
-
}
|
|
527
|
-
.Checkbox_checkbox2.Checkbox_sm2 {
|
|
528
|
-
width: var(--component-size-xs);
|
|
529
|
-
height: var(--component-size-xs);
|
|
530
|
-
}
|
|
531
|
-
.Checkbox_label2 {
|
|
532
|
-
display: block;
|
|
533
|
-
font-size: var(--font-size-sm);
|
|
534
|
-
min-width: 0;
|
|
535
|
-
flex: 1 1 auto;
|
|
536
|
-
line-height: var(--line-height-normal);
|
|
537
|
-
white-space: normal;
|
|
538
|
-
overflow-wrap: anywhere;
|
|
539
|
-
word-break: break-word;
|
|
540
|
-
}
|
|
541
|
-
.Checkbox_checkbox2:hover {
|
|
542
|
-
border-color: var(--color-fg-default);
|
|
543
|
-
}
|
|
544
|
-
.Checkbox_checked2 {
|
|
545
|
-
background-color: var(--color-brand);
|
|
546
|
-
border-color: var(--color-brand);
|
|
547
|
-
}
|
|
548
|
-
.Checkbox_icon2 {
|
|
549
|
-
width: var(--icon-size-md);
|
|
550
|
-
height: var(--icon-size-md);
|
|
551
|
-
color: var(--color-fg-on-brand);
|
|
552
|
-
stroke-width: 2;
|
|
553
|
-
pointer-events: none;
|
|
554
|
-
}
|
|
555
|
-
.Checkbox_default2 {
|
|
556
|
-
background-color: var(--color-bg-toolbar);
|
|
557
|
-
border-color: var(--color-bg-toolbar);
|
|
558
|
-
&:not(:hover) {
|
|
559
|
-
border-color: var(--color-bg-toolbar);
|
|
560
|
-
}
|
|
561
|
-
.Checkbox_icon2 {
|
|
562
|
-
color: var(--color-fg-default);
|
|
563
|
-
}
|
|
564
|
-
}
|
|
565
|
-
.Checkbox_outlined2.Checkbox_checked2 {
|
|
566
|
-
background-color: transparent;
|
|
567
|
-
border-color: var(--color-border-default);
|
|
568
|
-
&:not(:hover) {
|
|
569
|
-
border-color: var(--color-brand);
|
|
570
|
-
}
|
|
571
|
-
.Checkbox_icon2 {
|
|
572
|
-
color: var(--color-brand);
|
|
573
|
-
}
|
|
574
|
-
}
|
|
575
|
-
.Checkbox_success2.Checkbox_checked2 {
|
|
576
|
-
background-color: var(--color-status-success);
|
|
577
|
-
&:not(:hover) {
|
|
578
|
-
border-color: transparent;
|
|
579
|
-
}
|
|
580
|
-
}
|
|
581
|
-
.Checkbox_info2.Checkbox_checked2 {
|
|
582
|
-
background-color: var(--color-status-info);
|
|
583
|
-
&:not(:hover) {
|
|
584
|
-
border-color: transparent;
|
|
585
|
-
}
|
|
586
|
-
.Checkbox_icon2 {
|
|
587
|
-
color: var(--color-fg-on-brand);
|
|
588
|
-
}
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
/* src/components/forms/input-container/InputContainer.module.css */
|
|
592
|
-
.InputContainer_horizontal2 {
|
|
593
|
-
--gap: var(--spacing-sm);
|
|
594
|
-
}
|
|
595
|
-
.InputContainer_horizontal2[data-size=sm] {
|
|
596
|
-
--gap: var(--spacing-xs);
|
|
597
|
-
}
|
|
598
|
-
.InputContainer_labelContainer2 {
|
|
599
|
-
gap: var(--gap);
|
|
600
|
-
}
|
|
601
|
-
.InputContainer_label2 {
|
|
602
|
-
color: var(--color-fg-default);
|
|
603
|
-
font-size: var(--font-size-sm);
|
|
604
|
-
font-weight: var(--font-weight-medium);
|
|
605
|
-
}
|
|
606
|
-
.InputContainer_horizontal2 .InputContainer_errorText2,
|
|
607
|
-
.InputContainer_horizontal2 .InputContainer_helpText2 {
|
|
608
|
-
margin-left: calc(var(--label-width) + var(--gap));
|
|
609
|
-
}
|
|
610
|
-
.InputContainer_helpText2 {
|
|
611
|
-
color: var(--color-fg-subtle);
|
|
612
|
-
font-size: var(--font-size-sm);
|
|
613
|
-
display: flex;
|
|
614
|
-
align-items: center;
|
|
615
|
-
justify-content: space-between;
|
|
616
|
-
}
|
|
617
|
-
.InputContainer_helpTextAddition2 {
|
|
618
|
-
color: var(--color-fg-subtle);
|
|
619
|
-
}
|
|
620
|
-
.InputContainer_horizontal2 label {
|
|
621
|
-
width: var(--label-width);
|
|
622
|
-
}
|
|
623
|
-
.InputContainer_errorText2 {
|
|
624
|
-
color: var(--color-status-error);
|
|
625
|
-
font-size: var(--font-size-sm);
|
|
626
|
-
}
|
|
627
|
-
.InputContainer_required2 {
|
|
628
|
-
color: var(--color-status-error);
|
|
629
|
-
font-weight: bold;
|
|
630
|
-
}
|
|
631
|
-
.InputContainer_messageRow2 {
|
|
632
|
-
min-height: 1lh;
|
|
633
|
-
}
|
|
634
|
-
.InputContainer_inputContainer2[data-modified] label:not(.InputContainer_label2) {
|
|
635
|
-
background-color: color-mix(in srgb, var(--color-status-warning-bg) 35%, transparent);
|
|
636
|
-
border-radius: var(--border-radius-default);
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
/* src/components/inline-status/InlineStatus.module.css */
|
|
640
|
-
.InlineStatus_container2 {
|
|
641
|
-
--inline-status-bg: var(--color-bg-toolbar);
|
|
642
|
-
--inline-status-fg: var(--color-fg-default);
|
|
643
|
-
--inline-status-border: var(--color-border-subtle);
|
|
644
|
-
display: inline-flex;
|
|
645
|
-
align-items: flex-start;
|
|
646
|
-
gap: var(--spacing-xs);
|
|
647
|
-
max-inline-size: 100%;
|
|
648
|
-
padding: var(--spacing-2xs) var(--spacing-sm);
|
|
649
|
-
border: 1px solid var(--inline-status-border);
|
|
650
|
-
border-radius: var(--border-radius-default);
|
|
651
|
-
background: var(--inline-status-bg);
|
|
652
|
-
color: var(--inline-status-fg);
|
|
653
|
-
font-family: var(--font-family);
|
|
654
|
-
font-size: var(--font-size-sm);
|
|
655
|
-
font-weight: var(--font-weight-default);
|
|
656
|
-
line-height: var(--line-height-normal);
|
|
657
|
-
box-sizing: border-box;
|
|
658
|
-
}
|
|
659
|
-
.InlineStatus_fullWidth2 {
|
|
660
|
-
display: flex;
|
|
661
|
-
inline-size: 100%;
|
|
662
|
-
}
|
|
663
|
-
.InlineStatus_leading2 {
|
|
664
|
-
display: inline-flex;
|
|
665
|
-
align-items: center;
|
|
666
|
-
justify-content: center;
|
|
667
|
-
flex: 0 0 auto;
|
|
668
|
-
block-size: 1lh;
|
|
669
|
-
}
|
|
670
|
-
.InlineStatus_leading2 svg {
|
|
671
|
-
inline-size: var(--icon-size-sm);
|
|
672
|
-
block-size: var(--icon-size-sm);
|
|
673
|
-
color: currentColor;
|
|
674
|
-
}
|
|
675
|
-
.InlineStatus_body2 {
|
|
676
|
-
min-width: 0;
|
|
677
|
-
overflow-wrap: anywhere;
|
|
678
|
-
word-break: break-word;
|
|
679
|
-
white-space: normal;
|
|
680
|
-
}
|
|
681
|
-
.InlineStatus_sm2 {
|
|
682
|
-
font-size: var(--font-size-xs);
|
|
683
|
-
}
|
|
684
|
-
.InlineStatus_md2 {
|
|
685
|
-
font-size: var(--font-size-sm);
|
|
686
|
-
}
|
|
687
|
-
.InlineStatus_neutral2 {
|
|
688
|
-
--inline-status-bg: var(--color-bg-toolbar);
|
|
689
|
-
--inline-status-fg: var(--color-fg-default);
|
|
690
|
-
--inline-status-border: transparent;
|
|
691
|
-
}
|
|
692
|
-
.InlineStatus_success2 {
|
|
693
|
-
--inline-status-bg: var(--color-status-success-bg);
|
|
694
|
-
--inline-status-fg: var(--color-status-success-fg);
|
|
695
|
-
--inline-status-border: var(--color-status-success-border);
|
|
696
|
-
}
|
|
697
|
-
.InlineStatus_warning2 {
|
|
698
|
-
--inline-status-bg: var(--color-status-warning-bg);
|
|
699
|
-
--inline-status-fg: var(--color-status-warning-fg);
|
|
700
|
-
--inline-status-border: var(--color-status-warning-border);
|
|
701
|
-
}
|
|
702
|
-
.InlineStatus_error2 {
|
|
703
|
-
--inline-status-bg: var(--color-status-error-bg);
|
|
704
|
-
--inline-status-fg: var(--color-status-error-fg);
|
|
705
|
-
--inline-status-border: var(--color-status-error-border);
|
|
706
|
-
}
|
|
707
|
-
.InlineStatus_info2 {
|
|
708
|
-
--inline-status-bg: var(--color-status-info-bg);
|
|
709
|
-
--inline-status-fg: var(--color-status-info-fg);
|
|
710
|
-
--inline-status-border: var(--color-status-info-border);
|
|
711
|
-
}
|
|
712
|
-
.InlineStatus_brand2 {
|
|
713
|
-
--inline-status-bg: color-mix(in srgb, var(--color-brand) 10%, var(--color-bg-surface));
|
|
714
|
-
--inline-status-fg: var(--color-brand);
|
|
715
|
-
--inline-status-border: color-mix(in srgb, var(--color-brand) 35%, transparent);
|
|
716
|
-
}
|
|
717
|
-
|
|
718
|
-
/* src/components/icon/Icon.module.css */
|
|
719
|
-
.Icon_container2 {
|
|
720
|
-
display: inline-flex;
|
|
721
|
-
align-items: center;
|
|
722
|
-
vertical-align: middle;
|
|
723
|
-
gap: var(--spacing-xxs);
|
|
724
|
-
color: var(--color-fg-subtle);
|
|
725
|
-
font-size: var(--font-size-sm);
|
|
726
|
-
}
|
|
727
|
-
.Icon_icon2 {
|
|
728
|
-
display: flex;
|
|
729
|
-
}
|
|
730
|
-
.Icon_icon2 svg {
|
|
731
|
-
height: var(--icon-size-md);
|
|
732
|
-
}
|
|
733
|
-
.Icon_success2 {
|
|
734
|
-
color: var(--color-status-success);
|
|
735
|
-
}
|
|
736
|
-
.Icon_error2 {
|
|
737
|
-
color: var(--color-status-error);
|
|
738
|
-
}
|
|
739
|
-
.Icon_warning2 {
|
|
740
|
-
color: var(--color-status-warning);
|
|
741
|
-
}
|
|
742
|
-
.Icon_info2 {
|
|
743
|
-
color: var(--color-status-info);
|
|
744
|
-
}
|
|
745
|
-
.Icon_brand2 {
|
|
746
|
-
color: var(--color-fg-on-brand);
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
/* src/components/forms/radio-buttons/RadioButtons.module.css */
|
|
750
|
-
.RadioButtons_container2 {
|
|
751
|
-
display: inline-flex;
|
|
752
|
-
align-items: center;
|
|
753
|
-
gap: 8px;
|
|
754
|
-
}
|
|
755
|
-
.RadioButtons_controlWrap2 {
|
|
756
|
-
position: relative;
|
|
757
|
-
display: inline-flex;
|
|
758
|
-
align-items: center;
|
|
759
|
-
}
|
|
760
|
-
.RadioButtons_input2 {
|
|
761
|
-
position: absolute;
|
|
762
|
-
inset: 0;
|
|
763
|
-
width: var(--component-size-xs);
|
|
764
|
-
height: var(--component-size-xs);
|
|
765
|
-
margin: 0;
|
|
766
|
-
opacity: 0;
|
|
767
|
-
cursor: pointer;
|
|
768
|
-
}
|
|
769
|
-
.RadioButtons_radio2 {
|
|
770
|
-
width: var(--component-size-xs);
|
|
771
|
-
height: var(--component-size-xs);
|
|
772
|
-
border-radius: 999px;
|
|
773
|
-
display: inline-flex;
|
|
774
|
-
align-items: center;
|
|
775
|
-
justify-content: center;
|
|
776
|
-
background: var(--color-bg-surface);
|
|
777
|
-
border: 2px solid var(--color-border-default);
|
|
778
|
-
transition:
|
|
779
|
-
border-color 120ms ease,
|
|
780
|
-
box-shadow 120ms ease,
|
|
781
|
-
background-color 120ms ease;
|
|
782
|
-
}
|
|
783
|
-
.RadioButtons_dot2 {
|
|
784
|
-
width: 10px;
|
|
785
|
-
height: 10px;
|
|
786
|
-
border-radius: 999px;
|
|
787
|
-
transform: scale(0);
|
|
788
|
-
transition: transform 120ms ease;
|
|
789
|
-
background: var(--color-brand);
|
|
790
|
-
}
|
|
791
|
-
.RadioButtons_checked2 {
|
|
792
|
-
border-color: var(--color-brand);
|
|
793
|
-
}
|
|
794
|
-
.RadioButtons_checked2 .RadioButtons_dot2 {
|
|
795
|
-
transform: scale(1);
|
|
796
|
-
}
|
|
797
|
-
.RadioButtons_input2:not(:disabled):hover + .RadioButtons_radio2 {
|
|
798
|
-
border-color: var(--color-brand-hover);
|
|
799
|
-
}
|
|
800
|
-
.RadioButtons_input2:focus-visible + .RadioButtons_radio2 {
|
|
801
|
-
box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-brand) 30%, transparent);
|
|
802
|
-
border-color: var(--color-brand-strong);
|
|
803
|
-
}
|
|
804
|
-
.RadioButtons_disabled2 {
|
|
805
|
-
opacity: 0.5;
|
|
806
|
-
}
|
|
807
|
-
.RadioButtons_input2:disabled {
|
|
808
|
-
cursor: not-allowed;
|
|
809
|
-
}
|
|
810
|
-
.RadioButtons_label2 {
|
|
811
|
-
cursor: pointer;
|
|
812
|
-
user-select: none;
|
|
813
|
-
flex: 1;
|
|
814
|
-
}
|
|
815
|
-
.RadioButtons_primary2.RadioButtons_checked2 {
|
|
816
|
-
background: color-mix(in srgb, var(--color-brand) 10%, var(--color-bg-surface));
|
|
817
|
-
}
|
|
818
|
-
.RadioButtons_default2 {
|
|
819
|
-
border-color: var(--color-border-strong);
|
|
820
|
-
}
|
|
821
|
-
.RadioButtons_sm2 {
|
|
822
|
-
width: 16px;
|
|
823
|
-
height: 16px;
|
|
824
|
-
}
|
|
825
|
-
.RadioButtons_sm2 .RadioButtons_dot2 {
|
|
826
|
-
width: 8px;
|
|
827
|
-
height: 8px;
|
|
828
|
-
}
|
|
829
|
-
.RadioButtons_md2 {
|
|
830
|
-
width: 20px;
|
|
831
|
-
height: 20px;
|
|
832
|
-
}
|
|
833
|
-
.RadioButtons_md2 .RadioButtons_dot2 {
|
|
834
|
-
width: 10px;
|
|
835
|
-
height: 10px;
|
|
836
|
-
}
|
|
837
|
-
.RadioButtons_lg2 {
|
|
838
|
-
width: 24px;
|
|
839
|
-
height: 24px;
|
|
840
|
-
}
|
|
841
|
-
.RadioButtons_lg2 .RadioButtons_dot2 {
|
|
842
|
-
width: 12px;
|
|
843
|
-
height: 12px;
|
|
844
|
-
}
|
|
845
|
-
|
|
846
|
-
/* src/components/popover/Popover.module.css */
|
|
847
|
-
.Popover_container2 {
|
|
848
|
-
position: relative;
|
|
849
|
-
display: flex;
|
|
850
|
-
align-items: stretch;
|
|
851
|
-
height: 100%;
|
|
852
|
-
min-width: 0;
|
|
853
|
-
width: auto;
|
|
854
|
-
flex: 0 0 auto;
|
|
855
|
-
}
|
|
856
|
-
.Popover_container2 > * {
|
|
857
|
-
min-width: 0;
|
|
858
|
-
}
|
|
859
|
-
.Popover_triggerSlot2 {
|
|
860
|
-
display: flex;
|
|
861
|
-
align-items: stretch;
|
|
862
|
-
min-width: 0;
|
|
863
|
-
width: auto;
|
|
864
|
-
flex: 0 0 auto;
|
|
865
|
-
}
|
|
866
|
-
.Popover_triggerSlot2 > * {
|
|
867
|
-
min-width: 0;
|
|
868
|
-
}
|
|
869
|
-
.Popover_fullWidth2,
|
|
870
|
-
.Popover_fillTrigger2 {
|
|
871
|
-
width: 100%;
|
|
872
|
-
flex: 1 1 auto;
|
|
873
|
-
}
|
|
874
|
-
.Popover_fullWidth2 > *,
|
|
875
|
-
.Popover_fillTrigger2 > * {
|
|
876
|
-
width: 100%;
|
|
877
|
-
min-width: 0;
|
|
878
|
-
}
|
|
879
|
-
.Popover_content2 {
|
|
880
|
-
position: fixed;
|
|
881
|
-
border: 1px solid var(--color-border-subtle);
|
|
882
|
-
background-color: var(--color-bg-surface);
|
|
883
|
-
border-radius: var(--border-radius-lg);
|
|
884
|
-
padding: var(--spacing-xxs);
|
|
885
|
-
z-index: var(--z-popover);
|
|
886
|
-
overflow: auto;
|
|
887
|
-
box-shadow: var(--shadow-md);
|
|
888
|
-
}
|
|
889
|
-
.Popover_content2[hidden] {
|
|
890
|
-
display: none;
|
|
891
|
-
}
|
|
892
|
-
|
|
893
|
-
/* src/components/table/Table.module.css */
|
|
894
|
-
.Table_fillViewportRoot2 {
|
|
895
|
-
display: flex;
|
|
896
|
-
position: relative;
|
|
897
|
-
block-size: 100%;
|
|
898
|
-
min-block-size: 0;
|
|
899
|
-
min-inline-size: 0;
|
|
900
|
-
overflow: hidden;
|
|
901
|
-
}
|
|
902
|
-
.Table_inlineRoot2 {
|
|
903
|
-
display: flex;
|
|
904
|
-
flex-direction: column;
|
|
905
|
-
min-block-size: 0;
|
|
906
|
-
min-inline-size: 0;
|
|
907
|
-
inline-size: 100%;
|
|
908
|
-
max-inline-size: 100%;
|
|
909
|
-
position: relative;
|
|
910
|
-
}
|
|
911
|
-
.Table_toolbarSlot2 {
|
|
912
|
-
margin-bottom: 12px;
|
|
913
|
-
flex: 0 0 auto;
|
|
914
|
-
}
|
|
915
|
-
.Table_tableViewport2 {
|
|
916
|
-
flex: 1 1 auto;
|
|
917
|
-
min-block-size: 0;
|
|
918
|
-
min-inline-size: 0;
|
|
919
|
-
display: flex;
|
|
920
|
-
flex-direction: column;
|
|
921
|
-
overflow: hidden;
|
|
922
|
-
}
|
|
923
|
-
.Table_paginationSlot2 {
|
|
924
|
-
flex: 0 0 auto;
|
|
925
|
-
overflow: visible;
|
|
926
|
-
margin-top: auto;
|
|
927
|
-
}
|
|
928
|
-
.Table_paginationSlot2:not(.Table_paginationSlotTop2) {
|
|
929
|
-
padding-top: var(--spacing-sm);
|
|
930
|
-
}
|
|
931
|
-
.Table_paginationSlot2.Table_paginationSlotTop2 {
|
|
932
|
-
padding-bottom: var(--spacing-sm);
|
|
933
|
-
}
|
|
934
|
-
.Table_tableRoot2 {
|
|
935
|
-
display: flex;
|
|
936
|
-
flex-direction: column;
|
|
937
|
-
flex: 1 1 auto;
|
|
938
|
-
min-block-size: 0;
|
|
939
|
-
min-inline-size: 0;
|
|
940
|
-
inline-size: 100%;
|
|
941
|
-
max-inline-size: 100%;
|
|
942
|
-
}
|
|
943
|
-
.Table_measuringLayout2 {
|
|
944
|
-
visibility: hidden;
|
|
945
|
-
}
|
|
946
|
-
.Table_tableScroll2 {
|
|
947
|
-
flex: 1 1 auto;
|
|
948
|
-
min-block-size: 0;
|
|
949
|
-
min-inline-size: 0;
|
|
950
|
-
overflow: auto;
|
|
951
|
-
background: var(--table-row-bg);
|
|
952
|
-
-webkit-overflow-scrolling: touch;
|
|
953
|
-
}
|
|
954
|
-
.Table_tableElement2 {
|
|
955
|
-
inline-size: 100%;
|
|
956
|
-
min-inline-size: 100%;
|
|
957
|
-
border-collapse: separate;
|
|
958
|
-
border-spacing: 0;
|
|
959
|
-
table-layout: fixed;
|
|
960
|
-
font-family: var(--font-family);
|
|
961
|
-
font-size: var(--font-size-sm);
|
|
962
|
-
color: var(--table-cell-fg);
|
|
963
|
-
background: var(--table-row-bg);
|
|
964
|
-
}
|
|
965
|
-
.Table_header2 {
|
|
966
|
-
position: relative;
|
|
967
|
-
z-index: 10;
|
|
968
|
-
}
|
|
969
|
-
.Table_headerRow2,
|
|
970
|
-
.Table_row2 {
|
|
971
|
-
position: relative;
|
|
972
|
-
}
|
|
973
|
-
.Table_emptyStateSlot2 {
|
|
974
|
-
display: grid;
|
|
975
|
-
place-items: center;
|
|
976
|
-
min-block-size: 100%;
|
|
977
|
-
padding: var(--spacing-lg);
|
|
978
|
-
}
|
|
979
|
-
.Table_body2 {
|
|
980
|
-
min-block-size: 0;
|
|
981
|
-
}
|
|
982
|
-
.Table_body2 .Table_row2:first-child .Table_cell2 {
|
|
983
|
-
border-block-start: var(--spacing-xs) solid var(--table-row-bg);
|
|
984
|
-
}
|
|
985
|
-
.Table_headerCell2,
|
|
986
|
-
.Table_cell2 {
|
|
987
|
-
position: relative;
|
|
988
|
-
box-sizing: border-box;
|
|
989
|
-
min-width: 0;
|
|
990
|
-
vertical-align: top;
|
|
991
|
-
text-align: start;
|
|
992
|
-
}
|
|
993
|
-
.Table_headerCell2 {
|
|
994
|
-
vertical-align: middle;
|
|
995
|
-
background-color: var(--table-header-bg);
|
|
996
|
-
border-block-end: 1px solid var(--table-border-header);
|
|
997
|
-
padding-block: var(--spacing-xxs);
|
|
998
|
-
padding-inline: var(--spacing-sm);
|
|
999
|
-
font-size: var(--font-size-xs);
|
|
1000
|
-
font-weight: var(--font-weight-medium);
|
|
1001
|
-
letter-spacing: var(--letter-spacing-wide);
|
|
1002
|
-
text-transform: uppercase;
|
|
1003
|
-
color: var(--table-header-fg);
|
|
1004
|
-
white-space: nowrap;
|
|
1005
|
-
}
|
|
1006
|
-
[data-sticky-header=true] .Table_headerCell2 {
|
|
1007
|
-
position: sticky;
|
|
1008
|
-
top: var(--table-sticky-top);
|
|
1009
|
-
z-index: 6;
|
|
1010
|
-
}
|
|
1011
|
-
.Table_cell2 {
|
|
1012
|
-
padding-block: 6px;
|
|
1013
|
-
padding-inline: var(--spacing-sm);
|
|
1014
|
-
border-block-end: 1px solid var(--table-border-subtle);
|
|
1015
|
-
background: var(--table-row-bg);
|
|
1016
|
-
overflow: hidden;
|
|
1017
|
-
line-height: 20px;
|
|
1018
|
-
}
|
|
1019
|
-
.Table_md2 .Table_headerCell2 {
|
|
1020
|
-
padding-block: var(--spacing-xs);
|
|
1021
|
-
padding-inline: var(--spacing-sm);
|
|
1022
|
-
}
|
|
1023
|
-
.Table_md2 .Table_cell2 {
|
|
1024
|
-
padding-block: var(--spacing-xs);
|
|
1025
|
-
padding-inline: var(--spacing-sm);
|
|
1026
|
-
}
|
|
1027
|
-
.Table_sm2 .Table_headerCell2 {
|
|
1028
|
-
padding-block: var(--spacing-xxs);
|
|
1029
|
-
padding-inline: var(--spacing-sm);
|
|
1030
|
-
}
|
|
1031
|
-
.Table_sm2 .Table_cell2 {
|
|
1032
|
-
padding-block: var(--spacing-xxs);
|
|
1033
|
-
padding-inline: var(--spacing-sm);
|
|
1034
|
-
font-size: var(--font-size-xs);
|
|
1035
|
-
line-height: 20px;
|
|
1036
|
-
}
|
|
1037
|
-
.Table_cell2[data-vertical-align=top] {
|
|
1038
|
-
vertical-align: top;
|
|
1039
|
-
}
|
|
1040
|
-
.Table_cell2[data-vertical-align=middle] {
|
|
1041
|
-
vertical-align: middle;
|
|
1042
|
-
}
|
|
1043
|
-
.Table_cell2[data-vertical-align=bottom] {
|
|
1044
|
-
vertical-align: bottom;
|
|
1045
|
-
}
|
|
1046
|
-
.Table_headerCell2[data-align=right],
|
|
1047
|
-
.Table_cell2[data-align=right] {
|
|
1048
|
-
text-align: end;
|
|
1049
|
-
font-variant-numeric: tabular-nums;
|
|
1050
|
-
}
|
|
1051
|
-
.Table_headerCell2[data-align=center],
|
|
1052
|
-
.Table_cell2[data-align=center] {
|
|
1053
|
-
text-align: center;
|
|
1054
|
-
}
|
|
1055
|
-
.Table_headerCell2.Table_selectionCell2,
|
|
1056
|
-
.Table_cell2.Table_selectionCell2 {
|
|
1057
|
-
padding-inline: calc(var(--spacing-xxs) + 6px) var(--spacing-sm);
|
|
1058
|
-
cursor: pointer;
|
|
1059
|
-
overflow: visible;
|
|
1060
|
-
line-height: 0;
|
|
1061
|
-
}
|
|
1062
|
-
.Table_headerCell2.Table_selectionCell2 {
|
|
1063
|
-
padding-block: var(--spacing-xxs);
|
|
1064
|
-
vertical-align: middle;
|
|
1065
|
-
}
|
|
1066
|
-
.Table_cell2.Table_selectionCell2 {
|
|
1067
|
-
vertical-align: top;
|
|
1068
|
-
padding-block: var(--spacing-xxs);
|
|
1069
|
-
}
|
|
1070
|
-
.Table_selectionHitArea2 {
|
|
1071
|
-
display: inline-flex;
|
|
1072
|
-
align-items: flex-start;
|
|
1073
|
-
justify-content: flex-start;
|
|
1074
|
-
min-block-size: 0;
|
|
1075
|
-
padding: 0;
|
|
1076
|
-
line-height: 0;
|
|
1077
|
-
}
|
|
1078
|
-
.Table_selectionControlWrap2 {
|
|
1079
|
-
display: inline-flex;
|
|
1080
|
-
align-items: flex-start;
|
|
1081
|
-
line-height: 0;
|
|
1082
|
-
}
|
|
1083
|
-
.Table_selectionControlWrap2 span {
|
|
1084
|
-
gap: 0;
|
|
1085
|
-
}
|
|
1086
|
-
.Table_selectionControlWrap2 input[type=radio] + span {
|
|
1087
|
-
width: 18px;
|
|
1088
|
-
height: 18px;
|
|
1089
|
-
border-width: 1px;
|
|
1090
|
-
border-color: color-mix(in srgb, var(--color-fg-default) 28%, transparent);
|
|
1091
|
-
}
|
|
1092
|
-
.Table_selectionControlWrap2 input[type=radio] + span > span {
|
|
1093
|
-
width: 8px;
|
|
1094
|
-
height: 8px;
|
|
1095
|
-
}
|
|
1096
|
-
.Table_clickableRow2 {
|
|
1097
|
-
cursor: pointer;
|
|
1098
|
-
}
|
|
1099
|
-
.Table_row2:hover > .Table_cell2 {
|
|
1100
|
-
background-color: var(--table-row-bg-hover);
|
|
1101
|
-
}
|
|
1102
|
-
.Table_selectedRow2 > .Table_cell2 {
|
|
1103
|
-
background-color: var(--table-row-bg-selected);
|
|
1104
|
-
}
|
|
1105
|
-
.Table_selectedRow2:hover > .Table_cell2 {
|
|
1106
|
-
background-color: var(--table-row-bg-selected-hover);
|
|
1107
|
-
}
|
|
1108
|
-
.Table_striped2 > .Table_row2:nth-child(even):not(.Table_selectedRow2):not(:hover) > .Table_cell2 {
|
|
1109
|
-
background-color: var(--table-row-bg-alt);
|
|
1110
|
-
}
|
|
1111
|
-
.Table_row2:focus-within > .Table_cell2 {
|
|
1112
|
-
box-shadow: inset 0 2px 0 var(--color-brand), inset 0 -2px 0 var(--color-brand);
|
|
1113
|
-
}
|
|
1114
|
-
.Table_row2:focus-within > .Table_cell2:first-child {
|
|
1115
|
-
box-shadow:
|
|
1116
|
-
inset 2px 0 0 var(--color-brand),
|
|
1117
|
-
inset 0 2px 0 var(--color-brand),
|
|
1118
|
-
inset 0 -2px 0 var(--color-brand);
|
|
1119
|
-
}
|
|
1120
|
-
.Table_row2:focus-within > .Table_cell2:last-child {
|
|
1121
|
-
box-shadow:
|
|
1122
|
-
inset -2px 0 0 var(--color-brand),
|
|
1123
|
-
inset 0 2px 0 var(--color-brand),
|
|
1124
|
-
inset 0 -2px 0 var(--color-brand);
|
|
1125
|
-
}
|
|
1126
|
-
.Table_nowrap2 {
|
|
1127
|
-
white-space: nowrap;
|
|
1128
|
-
}
|
|
1129
|
-
.Table_allowWrap2 {
|
|
1130
|
-
white-space: normal;
|
|
1131
|
-
overflow-wrap: break-word;
|
|
1132
|
-
word-break: normal;
|
|
1133
|
-
}
|
|
1134
|
-
.Table_thInner2 {
|
|
1135
|
-
display: flex;
|
|
1136
|
-
align-items: center;
|
|
1137
|
-
inline-size: 100%;
|
|
1138
|
-
min-width: 0;
|
|
1139
|
-
}
|
|
1140
|
-
.Table_thInnerRight2 {
|
|
1141
|
-
justify-content: flex-end;
|
|
1142
|
-
}
|
|
1143
|
-
.Table_thInnerCenter2 {
|
|
1144
|
-
justify-content: center;
|
|
1145
|
-
}
|
|
1146
|
-
.Table_thMain2 {
|
|
1147
|
-
flex: 1 1 auto;
|
|
1148
|
-
min-width: 0;
|
|
1149
|
-
display: flex;
|
|
1150
|
-
align-items: center;
|
|
1151
|
-
justify-content: flex-start;
|
|
1152
|
-
}
|
|
1153
|
-
.Table_thMainRight2 {
|
|
1154
|
-
justify-content: flex-end;
|
|
1155
|
-
}
|
|
1156
|
-
.Table_thMainCenter2 {
|
|
1157
|
-
justify-content: center;
|
|
1158
|
-
}
|
|
1159
|
-
.Table_thButton2 {
|
|
1160
|
-
all: unset;
|
|
1161
|
-
display: inline-flex;
|
|
1162
|
-
align-items: center;
|
|
1163
|
-
gap: 4px;
|
|
1164
|
-
min-width: 0;
|
|
1165
|
-
max-inline-size: 100%;
|
|
1166
|
-
cursor: pointer;
|
|
1167
|
-
user-select: none;
|
|
1168
|
-
border-radius: var(--border-radius-default);
|
|
1169
|
-
padding-block: 2px;
|
|
1170
|
-
padding-inline: 2px;
|
|
1171
|
-
justify-content: flex-start;
|
|
1172
|
-
}
|
|
1173
|
-
.Table_thButtonRight2 {
|
|
1174
|
-
justify-content: flex-end;
|
|
1175
|
-
}
|
|
1176
|
-
.Table_thButtonCenter2 {
|
|
1177
|
-
justify-content: center;
|
|
1178
|
-
}
|
|
1179
|
-
.Table_thLabel2 {
|
|
1180
|
-
overflow: hidden;
|
|
1181
|
-
text-overflow: ellipsis;
|
|
1182
|
-
white-space: nowrap;
|
|
1183
|
-
flex: 0 1 auto;
|
|
1184
|
-
min-width: 0;
|
|
1185
|
-
}
|
|
1186
|
-
.Table_thLabelRight2 {
|
|
1187
|
-
text-align: right;
|
|
1188
|
-
width: 100%;
|
|
1189
|
-
}
|
|
1190
|
-
.Table_thLabelCenter2 {
|
|
1191
|
-
text-align: center;
|
|
1192
|
-
width: 100%;
|
|
1193
|
-
}
|
|
1194
|
-
.Table_thOverlayExtras2 {
|
|
1195
|
-
position: absolute;
|
|
1196
|
-
inset-block: 0;
|
|
1197
|
-
inset-inline-end: 0;
|
|
1198
|
-
display: flex;
|
|
1199
|
-
align-items: center;
|
|
1200
|
-
justify-content: center;
|
|
1201
|
-
min-width: 0;
|
|
1202
|
-
pointer-events: none;
|
|
1203
|
-
z-index: 7;
|
|
1204
|
-
}
|
|
1205
|
-
.Table_thOverlayExtras2 > * {
|
|
1206
|
-
pointer-events: auto;
|
|
1207
|
-
}
|
|
1208
|
-
.Table_sortIndicator2 {
|
|
1209
|
-
display: inline-flex;
|
|
1210
|
-
flex: 0 0 auto;
|
|
1211
|
-
align-items: center;
|
|
1212
|
-
color: var(--color-fg-subtle);
|
|
1213
|
-
opacity: 0.9;
|
|
1214
|
-
}
|
|
1215
|
-
.Table_sortIndicator2 svg {
|
|
1216
|
-
inline-size: var(--icon-size-sm);
|
|
1217
|
-
block-size: var(--icon-size-sm);
|
|
1218
|
-
}
|
|
1219
|
-
.Table_descending2 {
|
|
1220
|
-
transform: rotate(180deg);
|
|
1221
|
-
}
|
|
1222
|
-
.Table_inActiveSort2 {
|
|
1223
|
-
opacity: 0.45;
|
|
1224
|
-
}
|
|
1225
|
-
.Table_cellContent2 {
|
|
1226
|
-
display: flex;
|
|
1227
|
-
inline-size: 100%;
|
|
1228
|
-
min-width: 0;
|
|
1229
|
-
max-inline-size: 100%;
|
|
1230
|
-
}
|
|
1231
|
-
.Table_cellContent2[data-align=left] {
|
|
1232
|
-
justify-content: flex-start;
|
|
1233
|
-
text-align: left;
|
|
1234
|
-
}
|
|
1235
|
-
.Table_cellContent2[data-align=center] {
|
|
1236
|
-
justify-content: center;
|
|
1237
|
-
text-align: center;
|
|
1238
|
-
}
|
|
1239
|
-
.Table_cellContent2[data-align=right] {
|
|
1240
|
-
justify-content: flex-end;
|
|
1241
|
-
text-align: right;
|
|
1242
|
-
}
|
|
1243
|
-
.Table_cellContent2[data-vertical-align=top] {
|
|
1244
|
-
align-items: flex-start;
|
|
1245
|
-
}
|
|
1246
|
-
.Table_cellContent2[data-vertical-align=middle] {
|
|
1247
|
-
align-items: center;
|
|
1248
|
-
}
|
|
1249
|
-
.Table_cellContent2[data-vertical-align=bottom] {
|
|
1250
|
-
align-items: flex-end;
|
|
1251
|
-
}
|
|
1252
|
-
.Table_cellContent2 > * {
|
|
1253
|
-
min-width: 0;
|
|
1254
|
-
max-inline-size: 100%;
|
|
1255
|
-
}
|
|
1256
|
-
.Table_cellValueEllipsis2 {
|
|
1257
|
-
display: block;
|
|
1258
|
-
inline-size: 100%;
|
|
1259
|
-
min-width: 0;
|
|
1260
|
-
max-inline-size: 100%;
|
|
1261
|
-
white-space: nowrap;
|
|
1262
|
-
overflow: hidden;
|
|
1263
|
-
text-overflow: ellipsis;
|
|
1264
|
-
}
|
|
1265
|
-
.Table_cellContent2[data-align=left] .Table_cellValueEllipsis2 {
|
|
1266
|
-
text-align: left;
|
|
1267
|
-
}
|
|
1268
|
-
.Table_cellContent2[data-align=center] .Table_cellValueEllipsis2 {
|
|
1269
|
-
text-align: center;
|
|
1270
|
-
}
|
|
1271
|
-
.Table_cellContent2[data-align=right] .Table_cellValueEllipsis2 {
|
|
1272
|
-
text-align: right;
|
|
1273
|
-
}
|
|
1274
|
-
.Table_allowWrap2 .Table_cellContent2,
|
|
1275
|
-
.Table_allowWrap2 .Table_cellValueEllipsis2 {
|
|
1276
|
-
white-space: normal;
|
|
1277
|
-
overflow-wrap: break-word;
|
|
1278
|
-
word-break: normal;
|
|
1279
|
-
overflow: visible;
|
|
1280
|
-
text-overflow: clip;
|
|
1281
|
-
}
|
|
1282
|
-
.Table_severityTable2 {
|
|
1283
|
-
--row-rail-width: 2px;
|
|
1284
|
-
--row-rail-inset-block: 1px;
|
|
1285
|
-
--row-rail-radius: 0;
|
|
1286
|
-
}
|
|
1287
|
-
.Table_severityTable2 .Table_row2.Table_severity2 > .Table_cell2:first-child {
|
|
1288
|
-
position: relative;
|
|
1289
|
-
}
|
|
1290
|
-
.Table_severityTable2 .Table_row2.Table_severity2 > .Table_cell2:first-child::before {
|
|
1291
|
-
content: "";
|
|
1292
|
-
position: absolute;
|
|
1293
|
-
inset-inline-start: 0;
|
|
1294
|
-
inset-block-start: var(--row-rail-inset-block);
|
|
1295
|
-
inset-block-end: var(--row-rail-inset-block);
|
|
1296
|
-
inline-size: var(--row-rail-width);
|
|
1297
|
-
background-color: var(--row-severity-color);
|
|
1298
|
-
border-radius: var(--row-rail-radius);
|
|
1299
|
-
z-index: 2;
|
|
1300
|
-
pointer-events: none;
|
|
1301
|
-
opacity: 0.95;
|
|
1302
|
-
}
|
|
1303
|
-
.Table_severityTable2 .Table_row2.Table_severity2:hover > .Table_cell2:first-child::before,
|
|
1304
|
-
.Table_severityTable2 .Table_row2.Table_severity2:focus-within > .Table_cell2:first-child::before {
|
|
1305
|
-
opacity: 1;
|
|
1306
|
-
z-index: 8;
|
|
1307
|
-
}
|
|
1308
|
-
.Table_severityTable2 .Table_row2.Table_severityFailed2 > .Table_cell2:first-child::before {
|
|
1309
|
-
box-shadow: 1px 0 0 color-mix(in srgb, var(--row-severity-color) 20%, transparent);
|
|
1310
|
-
}
|
|
1311
|
-
.Table_sm2 .Table_severityTable2 {
|
|
1312
|
-
--row-rail-width: 4px;
|
|
1313
|
-
--row-rail-inset-block: 1px;
|
|
1314
|
-
}
|
|
1315
|
-
.Table_dividerLeft2,
|
|
1316
|
-
.Table_dividerRight2 {
|
|
1317
|
-
position: relative;
|
|
1318
|
-
}
|
|
1319
|
-
.Table_dividerLeft2::before {
|
|
1320
|
-
content: "";
|
|
1321
|
-
position: absolute;
|
|
1322
|
-
left: 0;
|
|
1323
|
-
top: 8px;
|
|
1324
|
-
bottom: 8px;
|
|
1325
|
-
width: 1px;
|
|
1326
|
-
background: var(--table-divider);
|
|
1327
|
-
}
|
|
1328
|
-
.Table_dividerRight2::after {
|
|
1329
|
-
content: "";
|
|
1330
|
-
position: absolute;
|
|
1331
|
-
right: 0;
|
|
1332
|
-
top: 8px;
|
|
1333
|
-
bottom: 8px;
|
|
1334
|
-
width: 1px;
|
|
1335
|
-
background: var(--table-divider);
|
|
1336
|
-
}
|
|
1337
|
-
|
|
1338
|
-
/* src/components/skeleton-loader/skeleton-loader-item/SkeletonLoaderItem.module.css */
|
|
1339
|
-
.SkeletonLoaderItem_skeletonLoader2 {
|
|
1340
|
-
--h: var(--skeleton-height, 14px);
|
|
1341
|
-
--r: var(--border-radius-md, 6px);
|
|
1342
|
-
--speed: var(--skeleton-speed, 1.2s);
|
|
1343
|
-
--skeleton-base: var(--opac-bg-dark);
|
|
1344
|
-
--skeleton-sheen: var(--opac-bg-default);
|
|
1345
|
-
position: relative;
|
|
1346
|
-
display: block;
|
|
1347
|
-
inline-size: var(--width, 100%);
|
|
1348
|
-
block-size: var(--h);
|
|
1349
|
-
width: var(--width, 100%);
|
|
1350
|
-
height: var(--h);
|
|
1351
|
-
overflow: hidden;
|
|
1352
|
-
border-radius: var(--r);
|
|
1353
|
-
background:
|
|
1354
|
-
linear-gradient(
|
|
1355
|
-
90deg,
|
|
1356
|
-
var(--skeleton-sheen) 0%,
|
|
1357
|
-
var(--skeleton-base) 45%,
|
|
1358
|
-
var(--skeleton-sheen) 60%,
|
|
1359
|
-
var(--skeleton-base) 100%);
|
|
1360
|
-
background-size: 200% 100%;
|
|
1361
|
-
animation: SkeletonLoaderItem_shimmer2 var(--speed) linear infinite;
|
|
1362
|
-
}
|
|
1363
|
-
.SkeletonLoaderItem_invert2 {
|
|
1364
|
-
--skeleton-base: var(--opac-bg-dark-invert);
|
|
1365
|
-
--skeleton-sheen: var(--opac-bg-light-invert);
|
|
1366
|
-
}
|
|
1367
|
-
.SkeletonLoaderItem_bar2 {
|
|
1368
|
-
display: block;
|
|
1369
|
-
inline-size: 100%;
|
|
1370
|
-
block-size: 100%;
|
|
1371
|
-
border-radius: inherit;
|
|
1372
|
-
}
|
|
1373
|
-
@keyframes SkeletonLoaderItem_shimmer2 {
|
|
1374
|
-
0% {
|
|
1375
|
-
background-position: 200% 0;
|
|
1376
|
-
}
|
|
1377
|
-
100% {
|
|
1378
|
-
background-position: -200% 0;
|
|
1379
|
-
}
|
|
1380
|
-
}
|
|
1381
|
-
@media (prefers-reduced-motion: reduce) {
|
|
1382
|
-
.SkeletonLoaderItem_skeletonLoader2 {
|
|
1383
|
-
animation: none;
|
|
1384
|
-
}
|
|
1385
|
-
}
|