@scality/core-ui 0.115.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +17 -0
- package/.eslintrc.json +7 -0
- package/.flowconfig +21 -0
- package/.github/ISSUE_TEMPLATE/bug.md +18 -0
- package/.github/ISSUE_TEMPLATE/improvement.md +18 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +24 -0
- package/.github/workflows/codeql.yaml +25 -0
- package/.github/workflows/dependency-review.yaml +16 -0
- package/.github/workflows/github-pages.yml +17 -0
- package/.github/workflows/post-release.yml +52 -0
- package/.github/workflows/tests.yaml +32 -0
- package/.prettierrc +5 -0
- package/.storybook/main.ts +38 -0
- package/.storybook/manager.ts +6 -0
- package/.storybook/preview-head.html +99 -0
- package/.storybook/preview.js +68 -0
- package/.storybook/public/favicon.ico +0 -0
- package/.storybook/public/logo-core-ui.png +0 -0
- package/.storybook/theme.storybook.ts +13 -0
- package/LICENSE +201 -0
- package/README.md +296 -0
- package/__mocks__/fileMock.js +2 -0
- package/__mocks__/styleMock.js +2 -0
- package/dist/components/IconHelper.d.ts +10 -0
- package/dist/components/IconHelper.d.ts.map +1 -0
- package/dist/components/IconHelper.js +4 -0
- package/dist/components/areachart/AreaChart.component.d.ts +14 -0
- package/dist/components/areachart/AreaChart.component.d.ts.map +1 -0
- package/dist/components/areachart/AreaChart.component.js +27 -0
- package/dist/components/banner/Banner.component.d.ts +11 -0
- package/dist/components/banner/Banner.component.d.ts.map +1 -0
- package/dist/components/banner/Banner.component.js +40 -0
- package/dist/components/barchart/BarChart.component.d.ts +13 -0
- package/dist/components/barchart/BarChart.component.d.ts.map +1 -0
- package/dist/components/barchart/BarChart.component.js +22 -0
- package/dist/components/box/Box.d.ts +9 -0
- package/dist/components/box/Box.d.ts.map +1 -0
- package/dist/components/box/Box.js +21 -0
- package/dist/components/breadcrumb/Breadcrumb.component.d.ts +7 -0
- package/dist/components/breadcrumb/Breadcrumb.component.d.ts.map +1 -0
- package/dist/components/breadcrumb/Breadcrumb.component.js +77 -0
- package/dist/components/button/Button.component.d.ts +28 -0
- package/dist/components/button/Button.component.d.ts.map +1 -0
- package/dist/components/button/Button.component.js +227 -0
- package/dist/components/buttonv2/Buttonv2.component.d.ts +34 -0
- package/dist/components/buttonv2/Buttonv2.component.d.ts.map +1 -0
- package/dist/components/buttonv2/Buttonv2.component.js +198 -0
- package/dist/components/buttonv2/CopyButton.component.d.ts +24 -0
- package/dist/components/buttonv2/CopyButton.component.d.ts.map +1 -0
- package/dist/components/buttonv2/CopyButton.component.js +52 -0
- package/dist/components/card/Card.component.d.ts +28 -0
- package/dist/components/card/Card.component.d.ts.map +1 -0
- package/dist/components/card/Card.component.js +105 -0
- package/dist/components/checkbox/Checkbox.component.d.ts +10 -0
- package/dist/components/checkbox/Checkbox.component.d.ts.map +1 -0
- package/dist/components/checkbox/Checkbox.component.js +94 -0
- package/dist/components/chips/Chips.component.d.ts +22 -0
- package/dist/components/chips/Chips.component.d.ts.map +1 -0
- package/dist/components/chips/Chips.component.js +105 -0
- package/dist/components/circularprogressbar/CircularProgressBar.component.d.ts +13 -0
- package/dist/components/circularprogressbar/CircularProgressBar.component.d.ts.map +1 -0
- package/dist/components/circularprogressbar/CircularProgressBar.component.js +9 -0
- package/dist/components/circularprogressbar/CircularProgressBar.component.style.d.ts +11 -0
- package/dist/components/circularprogressbar/CircularProgressBar.component.style.d.ts.map +1 -0
- package/dist/components/circularprogressbar/CircularProgressBar.component.style.js +27 -0
- package/dist/components/cloudprogressbar/CloudProgressBar.component.d.ts +11 -0
- package/dist/components/cloudprogressbar/CloudProgressBar.component.d.ts.map +1 -0
- package/dist/components/cloudprogressbar/CloudProgressBar.component.js +38 -0
- package/dist/components/collapsiblepanel/CollapsiblePanel.component.d.ts +10 -0
- package/dist/components/collapsiblepanel/CollapsiblePanel.component.d.ts.map +1 -0
- package/dist/components/collapsiblepanel/CollapsiblePanel.component.js +44 -0
- package/dist/components/constants.d.ts +27 -0
- package/dist/components/constants.d.ts.map +1 -0
- package/dist/components/constants.js +47 -0
- package/dist/components/constrainedtext/Constrainedtext.component.d.ts +12 -0
- package/dist/components/constrainedtext/Constrainedtext.component.d.ts.map +1 -0
- package/dist/components/constrainedtext/Constrainedtext.component.js +46 -0
- package/dist/components/coreuithemeprovider/CoreUiThemeProvider.d.ts +9 -0
- package/dist/components/coreuithemeprovider/CoreUiThemeProvider.d.ts.map +1 -0
- package/dist/components/coreuithemeprovider/CoreUiThemeProvider.js +13 -0
- package/dist/components/date/FormattedDateTime.d.ts +11 -0
- package/dist/components/date/FormattedDateTime.d.ts.map +1 -0
- package/dist/components/date/FormattedDateTime.js +66 -0
- package/dist/components/date/FormattedDateTime.spec.d.ts +2 -0
- package/dist/components/date/FormattedDateTime.spec.d.ts.map +1 -0
- package/dist/components/date/FormattedDateTime.spec.js +140 -0
- package/dist/components/date/dateDiffer.d.ts +2 -0
- package/dist/components/date/dateDiffer.d.ts.map +1 -0
- package/dist/components/date/dateDiffer.js +7 -0
- package/dist/components/date/dateDiffer.spec.d.ts +2 -0
- package/dist/components/date/dateDiffer.spec.d.ts.map +1 -0
- package/dist/components/date/dateDiffer.spec.js +6 -0
- package/dist/components/dropdown/Dropdown.component.d.ts +20 -0
- package/dist/components/dropdown/Dropdown.component.d.ts.map +1 -0
- package/dist/components/dropdown/Dropdown.component.js +99 -0
- package/dist/components/dropzone/Dropzone.d.ts +16 -0
- package/dist/components/dropzone/Dropzone.d.ts.map +1 -0
- package/dist/components/dropzone/Dropzone.js +79 -0
- package/dist/components/emptystate/Emptystate.component.d.ts +13 -0
- package/dist/components/emptystate/Emptystate.component.d.ts.map +1 -0
- package/dist/components/emptystate/Emptystate.component.js +32 -0
- package/dist/components/emptytable/Emptytable.component.d.ts +8 -0
- package/dist/components/emptytable/Emptytable.component.d.ts.map +1 -0
- package/dist/components/emptytable/Emptytable.component.js +62 -0
- package/dist/components/error-pages/ErrorPage401.component.d.ts +9 -0
- package/dist/components/error-pages/ErrorPage401.component.d.ts.map +1 -0
- package/dist/components/error-pages/ErrorPage401.component.js +28 -0
- package/dist/components/error-pages/ErrorPage404.component.d.ts +8 -0
- package/dist/components/error-pages/ErrorPage404.component.d.ts.map +1 -0
- package/dist/components/error-pages/ErrorPage404.component.js +26 -0
- package/dist/components/error-pages/ErrorPage500.component.d.ts +13 -0
- package/dist/components/error-pages/ErrorPage500.component.d.ts.map +1 -0
- package/dist/components/error-pages/ErrorPage500.component.js +32 -0
- package/dist/components/error-pages/ErrorPageAuth.component.d.ts +8 -0
- package/dist/components/error-pages/ErrorPageAuth.component.d.ts.map +1 -0
- package/dist/components/error-pages/ErrorPageAuth.component.js +27 -0
- package/dist/components/error-pages/ErrorPageStyle.d.ts +7 -0
- package/dist/components/error-pages/ErrorPageStyle.d.ts.map +1 -0
- package/dist/components/error-pages/ErrorPageStyle.js +34 -0
- package/dist/components/form/Form.component.d.ts +61 -0
- package/dist/components/form/Form.component.d.ts.map +1 -0
- package/dist/components/form/Form.component.js +115 -0
- package/dist/components/globalhealthbar/GlobalHealthBar.component.d.ts +20 -0
- package/dist/components/globalhealthbar/GlobalHealthBar.component.d.ts.map +1 -0
- package/dist/components/globalhealthbar/GlobalHealthBar.component.js +169 -0
- package/dist/components/globalhealthbar/tooltip/index.d.ts +8 -0
- package/dist/components/globalhealthbar/tooltip/index.d.ts.map +1 -0
- package/dist/components/globalhealthbar/tooltip/index.js +55 -0
- package/dist/components/healthselectorv2/HealthSelector.component.d.ts +61 -0
- package/dist/components/healthselectorv2/HealthSelector.component.d.ts.map +1 -0
- package/dist/components/healthselectorv2/HealthSelector.component.js +70 -0
- package/dist/components/icon/Icon.component.d.ts +134 -0
- package/dist/components/icon/Icon.component.d.ts.map +1 -0
- package/dist/components/icon/Icon.component.js +209 -0
- package/dist/components/infomessage/InfoMessage.component.d.ts +9 -0
- package/dist/components/infomessage/InfoMessage.component.d.ts.map +1 -0
- package/dist/components/infomessage/InfoMessage.component.js +20 -0
- package/dist/components/infomessage/InfoMessageUtils.d.ts +8 -0
- package/dist/components/infomessage/InfoMessageUtils.d.ts.map +1 -0
- package/dist/components/infomessage/InfoMessageUtils.js +32 -0
- package/dist/components/input/Input.component.d.ts +24 -0
- package/dist/components/input/Input.component.d.ts.map +1 -0
- package/dist/components/input/Input.component.js +55 -0
- package/dist/components/input/Input.component.style.d.ts +9 -0
- package/dist/components/input/Input.component.style.d.ts.map +1 -0
- package/dist/components/input/Input.component.style.js +136 -0
- package/dist/components/inputlist/InputButtons.d.ts +20 -0
- package/dist/components/inputlist/InputButtons.d.ts.map +1 -0
- package/dist/components/inputlist/InputButtons.js +48 -0
- package/dist/components/inputlist/InputList.component.d.ts +27 -0
- package/dist/components/inputlist/InputList.component.d.ts.map +1 -0
- package/dist/components/inputlist/InputList.component.js +30 -0
- package/dist/components/inputv2/inputv2.d.ts +12 -0
- package/dist/components/inputv2/inputv2.d.ts.map +1 -0
- package/dist/components/inputv2/inputv2.js +80 -0
- package/dist/components/lateralnavbarlayout/LateralNavbarLayout.component.d.ts +9 -0
- package/dist/components/lateralnavbarlayout/LateralNavbarLayout.component.d.ts.map +1 -0
- package/dist/components/lateralnavbarlayout/LateralNavbarLayout.component.js +23 -0
- package/dist/components/layout/Layout.component.d.ts +12 -0
- package/dist/components/layout/Layout.component.d.ts.map +1 -0
- package/dist/components/layout/Layout.component.js +26 -0
- package/dist/components/layout/v2/AppContainer.d.ts +28 -0
- package/dist/components/layout/v2/AppContainer.d.ts.map +1 -0
- package/dist/components/layout/v2/AppContainer.js +63 -0
- package/dist/components/layout/v2/index.d.ts +6 -0
- package/dist/components/layout/v2/index.d.ts.map +1 -0
- package/dist/components/layout/v2/index.js +16 -0
- package/dist/components/layout/v2/panels.d.ts +17 -0
- package/dist/components/layout/v2/panels.d.ts.map +1 -0
- package/dist/components/layout/v2/panels.js +52 -0
- package/dist/components/linechart/LineChart.component.d.ts +22 -0
- package/dist/components/linechart/LineChart.component.d.ts.map +1 -0
- package/dist/components/linechart/LineChart.component.js +109 -0
- package/dist/components/linetemporalchart/ChartUtil.d.ts +40 -0
- package/dist/components/linetemporalchart/ChartUtil.d.ts.map +1 -0
- package/dist/components/linetemporalchart/ChartUtil.js +126 -0
- package/dist/components/linetemporalchart/LineTemporalChart.component.d.ts +43 -0
- package/dist/components/linetemporalchart/LineTemporalChart.component.d.ts.map +1 -0
- package/dist/components/linetemporalchart/LineTemporalChart.component.js +576 -0
- package/dist/components/linetemporalchart/MetricTimespanProvider.d.ts +8 -0
- package/dist/components/linetemporalchart/MetricTimespanProvider.d.ts.map +1 -0
- package/dist/components/linetemporalchart/MetricTimespanProvider.js +31 -0
- package/dist/components/linetemporalchart/tooltip/index.d.ts +30 -0
- package/dist/components/linetemporalchart/tooltip/index.d.ts.map +1 -0
- package/dist/components/linetemporalchart/tooltip/index.js +104 -0
- package/dist/components/loader/Loader.component.d.ts +11 -0
- package/dist/components/loader/Loader.component.d.ts.map +1 -0
- package/dist/components/loader/Loader.component.js +41 -0
- package/dist/components/modal/Modal.component.d.ts +13 -0
- package/dist/components/modal/Modal.component.d.ts.map +1 -0
- package/dist/components/modal/Modal.component.js +64 -0
- package/dist/components/multiselect/MultiSelect.component.d.ts +29 -0
- package/dist/components/multiselect/MultiSelect.component.d.ts.map +1 -0
- package/dist/components/multiselect/MultiSelect.component.js +73 -0
- package/dist/components/navbar/Navbar.component.d.ts +23 -0
- package/dist/components/navbar/Navbar.component.d.ts.map +1 -0
- package/dist/components/navbar/Navbar.component.js +151 -0
- package/dist/components/notifications/Notification.component.d.ts +13 -0
- package/dist/components/notifications/Notification.component.d.ts.map +1 -0
- package/dist/components/notifications/Notification.component.js +107 -0
- package/dist/components/notifications/Notifications.component.d.ts +15 -0
- package/dist/components/notifications/Notifications.component.d.ts.map +1 -0
- package/dist/components/notifications/Notifications.component.js +42 -0
- package/dist/components/prettybytes/PrettyBytes.component.d.ts +9 -0
- package/dist/components/prettybytes/PrettyBytes.component.d.ts.map +1 -0
- package/dist/components/prettybytes/PrettyBytes.component.js +24 -0
- package/dist/components/progressbar/ProgressBar.component.d.ts +18 -0
- package/dist/components/progressbar/ProgressBar.component.d.ts.map +1 -0
- package/dist/components/progressbar/ProgressBar.component.js +129 -0
- package/dist/components/scrollbarwrapper/ScrollbarWrapper.component.d.ts +7 -0
- package/dist/components/scrollbarwrapper/ScrollbarWrapper.component.d.ts.map +1 -0
- package/dist/components/scrollbarwrapper/ScrollbarWrapper.component.js +54 -0
- package/dist/components/searchinput/SearchInput.component.d.ts +12 -0
- package/dist/components/searchinput/SearchInput.component.d.ts.map +1 -0
- package/dist/components/searchinput/SearchInput.component.js +91 -0
- package/dist/components/select/Select.component.d.ts +15 -0
- package/dist/components/select/Select.component.d.ts.map +1 -0
- package/dist/components/select/Select.component.js +71 -0
- package/dist/components/selectv2/SelectStyle.d.ts +3 -0
- package/dist/components/selectv2/SelectStyle.d.ts.map +1 -0
- package/dist/components/selectv2/SelectStyle.js +238 -0
- package/dist/components/selectv2/Selectv2.component.d.ts +32 -0
- package/dist/components/selectv2/Selectv2.component.d.ts.map +1 -0
- package/dist/components/selectv2/Selectv2.component.js +267 -0
- package/dist/components/sidebar/Sidebar.component.d.ts +22 -0
- package/dist/components/sidebar/Sidebar.component.d.ts.map +1 -0
- package/dist/components/sidebar/Sidebar.component.js +136 -0
- package/dist/components/spacedbox/SpacedBox.d.ts +34 -0
- package/dist/components/spacedbox/SpacedBox.d.ts.map +1 -0
- package/dist/components/spacedbox/SpacedBox.js +64 -0
- package/dist/components/sparkline/SparkLine.component.d.ts +19 -0
- package/dist/components/sparkline/SparkLine.component.d.ts.map +1 -0
- package/dist/components/sparkline/SparkLine.component.js +148 -0
- package/dist/components/statuswrapper/Statuswrapper.component.d.ts +9 -0
- package/dist/components/statuswrapper/Statuswrapper.component.d.ts.map +1 -0
- package/dist/components/statuswrapper/Statuswrapper.component.js +44 -0
- package/dist/components/steppers/Stepper.component.d.ts +14 -0
- package/dist/components/steppers/Stepper.component.d.ts.map +1 -0
- package/dist/components/steppers/Stepper.component.js +33 -0
- package/dist/components/steppers/Steppers.component.d.ts +18 -0
- package/dist/components/steppers/Steppers.component.d.ts.map +1 -0
- package/dist/components/steppers/Steppers.component.js +96 -0
- package/dist/components/tablev2/MultiSelectableContent.d.ts +22 -0
- package/dist/components/tablev2/MultiSelectableContent.d.ts.map +1 -0
- package/dist/components/tablev2/MultiSelectableContent.js +129 -0
- package/dist/components/tablev2/Search.d.ts +29 -0
- package/dist/components/tablev2/Search.d.ts.map +1 -0
- package/dist/components/tablev2/Search.js +49 -0
- package/dist/components/tablev2/SearchWithQueryParams.d.ts +7 -0
- package/dist/components/tablev2/SearchWithQueryParams.d.ts.map +1 -0
- package/dist/components/tablev2/SearchWithQueryParams.js +24 -0
- package/dist/components/tablev2/SingleSelectableContent.d.ts +17 -0
- package/dist/components/tablev2/SingleSelectableContent.d.ts.map +1 -0
- package/dist/components/tablev2/SingleSelectableContent.js +75 -0
- package/dist/components/tablev2/TableCommon.d.ts +24 -0
- package/dist/components/tablev2/TableCommon.d.ts.map +1 -0
- package/dist/components/tablev2/TableCommon.js +35 -0
- package/dist/components/tablev2/TableUtils.d.ts +18 -0
- package/dist/components/tablev2/TableUtils.d.ts.map +1 -0
- package/dist/components/tablev2/TableUtils.js +32 -0
- package/dist/components/tablev2/Tablestyle.d.ts +36 -0
- package/dist/components/tablev2/Tablestyle.d.ts.map +1 -0
- package/dist/components/tablev2/Tablestyle.js +136 -0
- package/dist/components/tablev2/Tablev2.component.d.ts +71 -0
- package/dist/components/tablev2/Tablev2.component.d.ts.map +1 -0
- package/dist/components/tablev2/Tablev2.component.js +144 -0
- package/dist/components/tablev2/react-table-config.d.ts +28 -0
- package/dist/components/tablev2/react-table-config.d.ts.map +1 -0
- package/dist/components/tablev2/react-table-config.js +1 -0
- package/dist/components/tablev2/useCheckbox.d.ts +6 -0
- package/dist/components/tablev2/useCheckbox.d.ts.map +1 -0
- package/dist/components/tablev2/useCheckbox.js +40 -0
- package/dist/components/tablev2/useSyncedScroll.d.ts +7 -0
- package/dist/components/tablev2/useSyncedScroll.d.ts.map +1 -0
- package/dist/components/tablev2/useSyncedScroll.js +43 -0
- package/dist/components/tabsv2/ScrollButton.d.ts +8 -0
- package/dist/components/tabsv2/ScrollButton.d.ts.map +1 -0
- package/dist/components/tabsv2/ScrollButton.js +32 -0
- package/dist/components/tabsv2/StyledTabs.d.ts +18 -0
- package/dist/components/tabsv2/StyledTabs.d.ts.map +1 -0
- package/dist/components/tabsv2/StyledTabs.js +96 -0
- package/dist/components/tabsv2/Tab.d.ts +17 -0
- package/dist/components/tabsv2/Tab.d.ts.map +1 -0
- package/dist/components/tabsv2/Tab.js +10 -0
- package/dist/components/tabsv2/Tabsv2.component.d.ts +21 -0
- package/dist/components/tabsv2/Tabsv2.component.d.ts.map +1 -0
- package/dist/components/tabsv2/Tabsv2.component.js +89 -0
- package/dist/components/tabsv2/useScrollingTabs.d.ts +17 -0
- package/dist/components/tabsv2/useScrollingTabs.d.ts.map +1 -0
- package/dist/components/tabsv2/useScrollingTabs.js +261 -0
- package/dist/components/text/Text.component.d.ts +33 -0
- package/dist/components/text/Text.component.d.ts.map +1 -0
- package/dist/components/text/Text.component.js +154 -0
- package/dist/components/textarea/TextArea.component.d.ts +10 -0
- package/dist/components/textarea/TextArea.component.d.ts.map +1 -0
- package/dist/components/textarea/TextArea.component.js +60 -0
- package/dist/components/textbadge/TextBadge.component.d.ts +9 -0
- package/dist/components/textbadge/TextBadge.component.d.ts.map +1 -0
- package/dist/components/textbadge/TextBadge.component.js +19 -0
- package/dist/components/toast/DurationBasedProgressBar.d.ts +6 -0
- package/dist/components/toast/DurationBasedProgressBar.d.ts.map +1 -0
- package/dist/components/toast/DurationBasedProgressBar.js +24 -0
- package/dist/components/toast/Toast.component.d.ts +20 -0
- package/dist/components/toast/Toast.component.d.ts.map +1 -0
- package/dist/components/toast/Toast.component.js +106 -0
- package/dist/components/toast/ToastPositionHelpers.d.ts +4 -0
- package/dist/components/toast/ToastPositionHelpers.d.ts.map +1 -0
- package/dist/components/toast/ToastPositionHelpers.js +28 -0
- package/dist/components/toast/ToastProvider.d.ts +14 -0
- package/dist/components/toast/ToastProvider.d.ts.map +1 -0
- package/dist/components/toast/ToastProvider.js +18 -0
- package/dist/components/toast/useMutationsHandler.d.ts +40 -0
- package/dist/components/toast/useMutationsHandler.d.ts.map +1 -0
- package/dist/components/toast/useMutationsHandler.js +66 -0
- package/dist/components/toast/useToastParameters.d.ts +10 -0
- package/dist/components/toast/useToastParameters.d.ts.map +1 -0
- package/dist/components/toast/useToastParameters.js +39 -0
- package/dist/components/toggle/Toggle.component.d.ts +11 -0
- package/dist/components/toggle/Toggle.component.d.ts.map +1 -0
- package/dist/components/toggle/Toggle.component.js +80 -0
- package/dist/components/tooltip/Tooltip.component.d.ts +23 -0
- package/dist/components/tooltip/Tooltip.component.d.ts.map +1 -0
- package/dist/components/tooltip/Tooltip.component.js +82 -0
- package/dist/components/vegachart/VegaChart.component.d.ts +14 -0
- package/dist/components/vegachart/VegaChart.component.d.ts.map +1 -0
- package/dist/components/vegachart/VegaChart.component.js +120 -0
- package/dist/components/vegachartv2/SyncedCursorCharts.d.ts +13 -0
- package/dist/components/vegachartv2/SyncedCursorCharts.d.ts.map +1 -0
- package/dist/components/vegachartv2/SyncedCursorCharts.js +17 -0
- package/dist/components/vegachartv2/VegaChartV2.component.d.ts +16 -0
- package/dist/components/vegachartv2/VegaChartV2.component.d.ts.map +1 -0
- package/dist/components/vegachartv2/VegaChartV2.component.js +216 -0
- package/dist/hooks.d.ts +2 -0
- package/dist/hooks.d.ts.map +1 -0
- package/dist/hooks.js +19 -0
- package/dist/icons/branding.d.ts +4 -0
- package/dist/icons/branding.d.ts.map +1 -0
- package/dist/icons/branding.js +3 -0
- package/dist/icons/scality-loading.d.ts +4 -0
- package/dist/icons/scality-loading.d.ts.map +1 -0
- package/dist/icons/scality-loading.js +3 -0
- package/dist/index.css +25 -0
- package/dist/index.d.ts +65 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +64 -0
- package/dist/next.d.ts +15 -0
- package/dist/next.d.ts.map +1 -0
- package/dist/next.js +14 -0
- package/dist/organisms/attachments/AttachmentConfirmationModal.d.ts +22 -0
- package/dist/organisms/attachments/AttachmentConfirmationModal.d.ts.map +1 -0
- package/dist/organisms/attachments/AttachmentConfirmationModal.js +142 -0
- package/dist/organisms/attachments/AttachmentTable.d.ts +37 -0
- package/dist/organisms/attachments/AttachmentTable.d.ts.map +1 -0
- package/dist/organisms/attachments/AttachmentTable.js +375 -0
- package/dist/organisms/attachments/AttachmentTypes.d.ts +15 -0
- package/dist/organisms/attachments/AttachmentTypes.d.ts.map +1 -0
- package/dist/organisms/attachments/AttachmentTypes.js +5 -0
- package/dist/spacing.d.ts +44 -0
- package/dist/spacing.d.ts.map +1 -0
- package/dist/spacing.js +60 -0
- package/dist/style/fonts/Lato-Bold.woff +0 -0
- package/dist/style/fonts/Lato-Bold.woff2 +0 -0
- package/dist/style/fonts/Lato-Regular.woff +0 -0
- package/dist/style/fonts/Lato-Regular.woff2 +0 -0
- package/dist/style/theme.d.ts +160 -0
- package/dist/style/theme.d.ts.map +1 -0
- package/dist/style/theme.js +234 -0
- package/dist/testUtils.d.ts +9 -0
- package/dist/testUtils.d.ts.map +1 -0
- package/dist/testUtils.js +11 -0
- package/dist/utils.d.ts +9 -0
- package/dist/utils.d.ts.map +1 -0
- package/dist/utils.js +46 -0
- package/global-setup.js +3 -0
- package/jest.config.js +8 -0
- package/package.json +161 -0
- package/plop-templates/component.hbs +18 -0
- package/plop-templates/component.test.hbs +10 -0
- package/plop-templates/stories.hbs +18 -0
- package/plopfile.js +38 -0
- package/setupTests.js +3 -0
- package/src/lib/components/IconHelper.tsx +23 -0
- package/src/lib/components/areachart/AreaChart.component.tsx +49 -0
- package/src/lib/components/banner/Banner.component.tsx +59 -0
- package/src/lib/components/barchart/BarChart.component.tsx +46 -0
- package/src/lib/components/box/Box.ts +57 -0
- package/src/lib/components/breadcrumb/Breadcrumb.component.tsx +101 -0
- package/src/lib/components/button/Button.component.tsx +312 -0
- package/src/lib/components/buttonv2/Buttonv2.component.tsx +270 -0
- package/src/lib/components/buttonv2/CopyButton.component.tsx +89 -0
- package/src/lib/components/card/Card.component.tsx +196 -0
- package/src/lib/components/checkbox/Checkbox.component.tsx +131 -0
- package/src/lib/components/chips/Chips.component.tsx +169 -0
- package/src/lib/components/circularprogressbar/CircularProgressBar.component.style.ts +31 -0
- package/src/lib/components/circularprogressbar/CircularProgressBar.component.tsx +58 -0
- package/src/lib/components/cloudprogressbar/CloudProgressBar.component.tsx +105 -0
- package/src/lib/components/collapsiblepanel/CollapsiblePanel.component.tsx +77 -0
- package/src/lib/components/constants.ts +67 -0
- package/src/lib/components/constrainedtext/Constrainedtext.component.tsx +93 -0
- package/src/lib/components/coreuithemeprovider/CoreUiThemeProvider.tsx +21 -0
- package/src/lib/components/date/FormattedDateTime.spec.tsx +217 -0
- package/src/lib/components/date/FormattedDateTime.tsx +150 -0
- package/src/lib/components/date/dateDiffer.spec.ts +13 -0
- package/src/lib/components/date/dateDiffer.ts +12 -0
- package/src/lib/components/dropdown/Dropdown.component.tsx +184 -0
- package/src/lib/components/dropzone/Dropzone.tsx +181 -0
- package/src/lib/components/emptystate/Emptystate.component.tsx +66 -0
- package/src/lib/components/emptytable/Emptytable.component.tsx +79 -0
- package/src/lib/components/error-pages/ErrorPage401.component.tsx +77 -0
- package/src/lib/components/error-pages/ErrorPage404.component.tsx +64 -0
- package/src/lib/components/error-pages/ErrorPage500.component.tsx +88 -0
- package/src/lib/components/error-pages/ErrorPageAuth.component.tsx +70 -0
- package/src/lib/components/error-pages/ErrorPageStyle.ts +34 -0
- package/src/lib/components/form/Form.component.tsx +416 -0
- package/src/lib/components/globalhealthbar/GlobalHealthBar.component.tsx +201 -0
- package/src/lib/components/globalhealthbar/tooltip/index.ts +72 -0
- package/src/lib/components/healthselectorv2/HealthSelector.component.test.tsx +62 -0
- package/src/lib/components/healthselectorv2/HealthSelector.component.tsx +103 -0
- package/src/lib/components/icon/Icon.component.tsx +280 -0
- package/src/lib/components/infomessage/InfoMessage.component.tsx +47 -0
- package/src/lib/components/infomessage/InfoMessageUtils.test.tsx +110 -0
- package/src/lib/components/infomessage/InfoMessageUtils.ts +39 -0
- package/src/lib/components/input/Input.component.style.ts +141 -0
- package/src/lib/components/input/Input.component.tsx +174 -0
- package/src/lib/components/inputlist/InputButtons.tsx +111 -0
- package/src/lib/components/inputlist/InputList.component.tsx +98 -0
- package/src/lib/components/inputlist/InputList.test.tsx +102 -0
- package/src/lib/components/inputv2/inputv2.tsx +155 -0
- package/src/lib/components/lateralnavbarlayout/LateralNavbarLayout.component.tsx +38 -0
- package/src/lib/components/layout/Layout.component.tsx +46 -0
- package/src/lib/components/layout/v2/AppContainer.tsx +160 -0
- package/src/lib/components/layout/v2/index.tsx +30 -0
- package/src/lib/components/layout/v2/panels.tsx +105 -0
- package/src/lib/components/linechart/LineChart.component.tsx +152 -0
- package/src/lib/components/linetemporalchart/ChartUtil.test.ts +261 -0
- package/src/lib/components/linetemporalchart/ChartUtil.ts +187 -0
- package/src/lib/components/linetemporalchart/LineTemporalChart.component.tsx +797 -0
- package/src/lib/components/linetemporalchart/MetricTimespanProvider.tsx +50 -0
- package/src/lib/components/linetemporalchart/tooltip/index.ts +178 -0
- package/src/lib/components/loader/Loader.component.tsx +71 -0
- package/src/lib/components/modal/Modal.component.tsx +121 -0
- package/src/lib/components/multiselect/MultiSelect.component.tsx +158 -0
- package/src/lib/components/navbar/Navbar.component.tsx +238 -0
- package/src/lib/components/notifications/Notification.component.tsx +160 -0
- package/src/lib/components/notifications/Notifications.component.tsx +73 -0
- package/src/lib/components/prettybytes/PrettyBytes.component.tsx +39 -0
- package/src/lib/components/prettybytes/prettybytes.test.tsx +217 -0
- package/src/lib/components/progressbar/ProgressBar.component.tsx +217 -0
- package/src/lib/components/scrollbarwrapper/ScrollbarWrapper.component.tsx +66 -0
- package/src/lib/components/searchinput/SearchInput.component.tsx +146 -0
- package/src/lib/components/select/Select.component.tsx +98 -0
- package/src/lib/components/selectv2/SelectStyle.ts +267 -0
- package/src/lib/components/selectv2/Selectv2.component.tsx +487 -0
- package/src/lib/components/selectv2/selectv2.test.tsx +277 -0
- package/src/lib/components/sidebar/Sidebar.component.tsx +217 -0
- package/src/lib/components/spacedbox/SpacedBox.ts +116 -0
- package/src/lib/components/sparkline/SparkLine.component.tsx +176 -0
- package/src/lib/components/statuswrapper/Statuswrapper.component.tsx +66 -0
- package/src/lib/components/steppers/Stepper.component.d.ts +70 -0
- package/src/lib/components/steppers/Stepper.component.tsx +62 -0
- package/src/lib/components/steppers/Steppers.component.tsx +157 -0
- package/src/lib/components/tablev2/MultiSelectableContent.tsx +318 -0
- package/src/lib/components/tablev2/Search.tsx +112 -0
- package/src/lib/components/tablev2/SearchWithQueryParams.tsx +38 -0
- package/src/lib/components/tablev2/SingleSelectableContent.tsx +222 -0
- package/src/lib/components/tablev2/TableCommon.tsx +102 -0
- package/src/lib/components/tablev2/TableUtils.test.ts +17 -0
- package/src/lib/components/tablev2/TableUtils.ts +60 -0
- package/src/lib/components/tablev2/Tablestyle.tsx +184 -0
- package/src/lib/components/tablev2/Tablev2.component.tsx +316 -0
- package/src/lib/components/tablev2/Tablev2.test.tsx +136 -0
- package/src/lib/components/tablev2/react-table-config.ts +90 -0
- package/src/lib/components/tablev2/useCheckbox.tsx +62 -0
- package/src/lib/components/tablev2/useSyncedScroll.ts +64 -0
- package/src/lib/components/tabsv2/ScrollButton.tsx +39 -0
- package/src/lib/components/tabsv2/StyledTabs.ts +108 -0
- package/src/lib/components/tabsv2/Tab.ts +27 -0
- package/src/lib/components/tabsv2/Tabsv2.component.tsx +247 -0
- package/src/lib/components/tabsv2/useScrollingTabs.ts +335 -0
- package/src/lib/components/text/Text.component.tsx +194 -0
- package/src/lib/components/textarea/TextArea.component.tsx +106 -0
- package/src/lib/components/textbadge/TextBadge.component.tsx +44 -0
- package/src/lib/components/toast/DurationBasedProgressBar.tsx +45 -0
- package/src/lib/components/toast/Toast.component.tsx +181 -0
- package/src/lib/components/toast/ToastPositionHelpers.ts +38 -0
- package/src/lib/components/toast/ToastProvider.tsx +40 -0
- package/src/lib/components/toast/useMutationsHandler.test.tsx +238 -0
- package/src/lib/components/toast/useMutationsHandler.ts +172 -0
- package/src/lib/components/toast/useToastParameters.ts +59 -0
- package/src/lib/components/toggle/Toggle.component.tsx +128 -0
- package/src/lib/components/tooltip/Tooltip.component.tsx +136 -0
- package/src/lib/components/vegachart/VegaChart.component.tsx +146 -0
- package/src/lib/components/vegachartv2/SyncedCursorCharts.tsx +30 -0
- package/src/lib/components/vegachartv2/VegaChartV2.component.tsx +279 -0
- package/src/lib/hooks.ts +26 -0
- package/src/lib/icons/branding.tsx +55 -0
- package/src/lib/icons/scality-loading.tsx +118 -0
- package/src/lib/index.css +25 -0
- package/src/lib/index.ts +75 -0
- package/src/lib/next.ts +17 -0
- package/src/lib/organisms/attachments/AttachmentConfirmationModal.tsx +311 -0
- package/src/lib/organisms/attachments/AttachmentTable.tsx +728 -0
- package/src/lib/organisms/attachments/AttachmentTypes.ts +16 -0
- package/src/lib/spacing.tsx +108 -0
- package/src/lib/style/fonts/Lato-Bold.woff +0 -0
- package/src/lib/style/fonts/Lato-Bold.woff2 +0 -0
- package/src/lib/style/fonts/Lato-Regular.woff +0 -0
- package/src/lib/style/fonts/Lato-Regular.woff2 +0 -0
- package/src/lib/style/theme.ts +270 -0
- package/src/lib/testUtils.tsx +18 -0
- package/src/lib/utils.ts +57 -0
- package/stories/Button/button.guideline.mdx +199 -0
- package/stories/Button/button.stories.tsx +299 -0
- package/stories/Icon.mdx +31 -0
- package/stories/InfoMessage/infomessage.guideline.mdx +32 -0
- package/stories/InfoMessage/infomessage.stories.tsx +124 -0
- package/stories/Introduction.mdx +32 -0
- package/stories/Select/select.guideline.mdx +91 -0
- package/stories/Select/selectv2.stories.tsx +169 -0
- package/stories/areachart.stories.tsx +121 -0
- package/stories/banner.stories.tsx +75 -0
- package/stories/barchart.stories.tsx +148 -0
- package/stories/box.stories.tsx +114 -0
- package/stories/breadcrumb.stories.tsx +42 -0
- package/stories/card.stories.tsx +195 -0
- package/stories/checkbox.stories.tsx +63 -0
- package/stories/chips.stories.tsx +107 -0
- package/stories/circularprogressbar.stories.tsx +136 -0
- package/stories/cloudprogressbar.stories.tsx +93 -0
- package/stories/collapsiblepanel.stories.tsx +57 -0
- package/stories/color.mdx +43 -0
- package/stories/common.tsx +39 -0
- package/stories/constrainedtext.stories.tsx +51 -0
- package/stories/controls.ts +59 -0
- package/stories/copybutton.stories.tsx +58 -0
- package/stories/data/areachart.ts +122 -0
- package/stories/data/barchart.ts +1497 -0
- package/stories/data/linechart.ts +1516 -0
- package/stories/data/list.ts +802 -0
- package/stories/data/sparklinechart.ts +164 -0
- package/stories/designprinciples.mdx +29 -0
- package/stories/dropdown.stories.tsx +146 -0
- package/stories/dropzone.stories.tsx +49 -0
- package/stories/emptystate.stories.tsx +22 -0
- package/stories/errorpage401.stories.tsx +25 -0
- package/stories/errorpage404.stories.tsx +24 -0
- package/stories/errorpage500.stories.tsx +44 -0
- package/stories/errorpageauth.stories.tsx +31 -0
- package/stories/form.stories.tsx +255 -0
- package/stories/format.mdx +44 -0
- package/stories/formattedate.stories.tsx +58 -0
- package/stories/globalhealthbar.stories.tsx +171 -0
- package/stories/guideline/chart-guideline.mdx +63 -0
- package/stories/guideline/docs-template.mdx +43 -0
- package/stories/guideline/mdxExampleComponents.tsx +57 -0
- package/stories/healthselectorv2.stories.tsx +74 -0
- package/stories/icon.stories.tsx +146 -0
- package/stories/icons.mdx +108 -0
- package/stories/input.stories.tsx +228 -0
- package/stories/inputlist.stories.tsx +57 -0
- package/stories/lateralnavbarlayout.stories.tsx +127 -0
- package/stories/layout.stories.tsx +378 -0
- package/stories/linechart.stories.tsx +319 -0
- package/stories/linecharttemporal.stories.tsx +88 -0
- package/stories/loader.stories.tsx +49 -0
- package/stories/modal.mdx +17 -0
- package/stories/modal.stories.tsx +177 -0
- package/stories/multiselect.stories.tsx +126 -0
- package/stories/navbar.stories.tsx +156 -0
- package/stories/notifications.stories.tsx +199 -0
- package/stories/pictures/icon-design-system.png +0 -0
- package/stories/prettybytes.stories.tsx +51 -0
- package/stories/progressbar.stories.tsx +174 -0
- package/stories/scrollbar.stories.tsx +76 -0
- package/stories/searchinput.stories.tsx +86 -0
- package/stories/select.stories.tsx +52 -0
- package/stories/selectinput.stories.tsx +73 -0
- package/stories/sidebar.stories.tsx +95 -0
- package/stories/spacing.stories.mdx +50 -0
- package/stories/spacing.stories.tsx +116 -0
- package/stories/sparkline.stories.tsx +85 -0
- package/stories/statuswrapper.stories.tsx +108 -0
- package/stories/stepper.stories.tsx +124 -0
- package/stories/steppers.stories.tsx +115 -0
- package/stories/tablev2.stories.tsx +539 -0
- package/stories/tabsv2.stories.tsx +168 -0
- package/stories/text.stories.tsx +138 -0
- package/stories/textarea.stories.tsx +69 -0
- package/stories/textbadge.stories.tsx +27 -0
- package/stories/toast.stories.tsx +144 -0
- package/stories/toggle.stories.tsx +45 -0
- package/stories/tooltip.stories.tsx +170 -0
- package/stories/typography.mdx +28 -0
- package/stories/vegachart.stories.tsx +98 -0
- package/tsconfig.json +18 -0
- package/types/styled.d.ts +6 -0
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
import { useEffect, useContext, useRef } from 'react';
|
|
4
|
+
import vegaEmbed from 'vega-embed';
|
|
5
|
+
import { ThemeContext, createGlobalStyle } from 'styled-components';
|
|
6
|
+
import { getThemePropSelector } from '../../utils';
|
|
7
|
+
export const TOP = 'top';
|
|
8
|
+
export const BOTTOM = 'bottom';
|
|
9
|
+
/* How to theme tooltip:
|
|
10
|
+
https://github.com/vega/vega-tooltip/blob/master/docs/customizing_your_tooltip.md
|
|
11
|
+
*/
|
|
12
|
+
const VegaTooltipTheme = createGlobalStyle `
|
|
13
|
+
#vg-tooltip-element.vg-tooltip.custom-theme {
|
|
14
|
+
padding: 8px;
|
|
15
|
+
position: fixed;
|
|
16
|
+
z-index: 1000;
|
|
17
|
+
font-family: 'Lato';
|
|
18
|
+
font-size: 12px;
|
|
19
|
+
border-radius: 3px;
|
|
20
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
|
|
21
|
+
color: ${getThemePropSelector('textPrimary')};
|
|
22
|
+
background-color: ${getThemePropSelector('backgroundLevel1')};
|
|
23
|
+
border: 1px solid ${getThemePropSelector('border')};
|
|
24
|
+
// customize the title
|
|
25
|
+
h2 {
|
|
26
|
+
color: ${getThemePropSelector('textSecondary')};
|
|
27
|
+
margin-bottom: 10px;
|
|
28
|
+
font-size: 12px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
`;
|
|
32
|
+
function VegaChart({ id, spec, tooltipPosition = BOTTOM, theme = 'custom', }) {
|
|
33
|
+
const themeContext = useContext(ThemeContext);
|
|
34
|
+
const currentBackgroundColor = themeContext && themeContext.brand
|
|
35
|
+
? themeContext.brand.backgroundLevel4
|
|
36
|
+
: themeContext.backgroundLevel4;
|
|
37
|
+
// the background color of the view
|
|
38
|
+
const currentBackgroundColor2 = themeContext && themeContext.brand
|
|
39
|
+
? themeContext.brand.backgroundLevel1
|
|
40
|
+
: themeContext.backgroundLevel1;
|
|
41
|
+
const brandText = themeContext && themeContext.brand
|
|
42
|
+
? themeContext.brand.textPrimary
|
|
43
|
+
: themeContext.textPrimary;
|
|
44
|
+
const themeConfig = {
|
|
45
|
+
config: {
|
|
46
|
+
background: currentBackgroundColor,
|
|
47
|
+
axis: {
|
|
48
|
+
labelColor: brandText,
|
|
49
|
+
titleColor: brandText,
|
|
50
|
+
grid: false,
|
|
51
|
+
domainColor: currentBackgroundColor2,
|
|
52
|
+
},
|
|
53
|
+
title: {
|
|
54
|
+
color: brandText,
|
|
55
|
+
font: 'Lato',
|
|
56
|
+
},
|
|
57
|
+
view: {
|
|
58
|
+
stroke: 'transparent',
|
|
59
|
+
fill: currentBackgroundColor2,
|
|
60
|
+
},
|
|
61
|
+
// the headers provide a title and labels for faceted plots.
|
|
62
|
+
header: {
|
|
63
|
+
labelColor: brandText,
|
|
64
|
+
},
|
|
65
|
+
// the label of max/min
|
|
66
|
+
text: {
|
|
67
|
+
color: brandText,
|
|
68
|
+
font: 'Lato',
|
|
69
|
+
},
|
|
70
|
+
// the up, bottom trend line and verticle line when hover
|
|
71
|
+
rule: {
|
|
72
|
+
color: brandText,
|
|
73
|
+
},
|
|
74
|
+
legend: {
|
|
75
|
+
labelColor: brandText,
|
|
76
|
+
titleColor: brandText,
|
|
77
|
+
},
|
|
78
|
+
},
|
|
79
|
+
};
|
|
80
|
+
const themedSpec = { ...spec, ...themeConfig };
|
|
81
|
+
const vegaInstance = useRef();
|
|
82
|
+
let tooltipOptions = {
|
|
83
|
+
theme: theme,
|
|
84
|
+
};
|
|
85
|
+
if (tooltipPosition === TOP) {
|
|
86
|
+
tooltipOptions = {
|
|
87
|
+
theme: theme,
|
|
88
|
+
offsetX: -85,
|
|
89
|
+
offsetY: -140,
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
useEffect(() => {
|
|
93
|
+
let isMounted = true;
|
|
94
|
+
vegaEmbed(`#${id}`, themedSpec, {
|
|
95
|
+
renderer: 'svg',
|
|
96
|
+
// Override the DEFAULT_OPTIONS https://github.com/vega/vega-tooltip/blob/master/src/defaults.ts
|
|
97
|
+
tooltip: tooltipOptions,
|
|
98
|
+
/* Determines if action links
|
|
99
|
+
("Export as PNG/SVG", "View Source", "View Vega" (only for Vega-Lite), "Open in Vega Editor") are included with the embedded view.
|
|
100
|
+
If the value is true, all action links will be shown and none if the value is false. */
|
|
101
|
+
actions: false,
|
|
102
|
+
})
|
|
103
|
+
.then((result) => {
|
|
104
|
+
vegaInstance.current = result; // result.view contains the Vega view
|
|
105
|
+
})
|
|
106
|
+
.catch((...args) => {
|
|
107
|
+
if (isMounted) {
|
|
108
|
+
console.error(...args); // TODO: we should handle this with a retry or an error state of the component
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
return () => {
|
|
112
|
+
isMounted = false;
|
|
113
|
+
if (vegaInstance.current) {
|
|
114
|
+
vegaInstance.current.view.finalize();
|
|
115
|
+
}
|
|
116
|
+
};
|
|
117
|
+
}, [id, themedSpec, tooltipOptions, vegaInstance]);
|
|
118
|
+
return (_jsx("div", { id: id, className: "sc-vegachart", children: _jsx(VegaTooltipTheme, {}) }));
|
|
119
|
+
}
|
|
120
|
+
export { VegaChart };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const SyncedCursorChartsContext: React.Context<{
|
|
3
|
+
cursorX: number;
|
|
4
|
+
setCursorX: (cursorX: number) => void;
|
|
5
|
+
} | null>;
|
|
6
|
+
export declare const useCursorX: () => {
|
|
7
|
+
cursorX: number;
|
|
8
|
+
setCursorX: (cursorX: number) => void;
|
|
9
|
+
} | null;
|
|
10
|
+
export declare function SyncedCursorCharts({ children }: {
|
|
11
|
+
children: JSX.Element;
|
|
12
|
+
}): JSX.Element;
|
|
13
|
+
//# sourceMappingURL=SyncedCursorCharts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SyncedCursorCharts.d.ts","sourceRoot":"","sources":["../../../src/lib/components/vegachartv2/SyncedCursorCharts.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA8C,MAAM,OAAO,CAAC;AACnE,eAAO,MAAM,yBAAyB;aAC3B,MAAM;0BACO,MAAM,KAAK,IAAI;SACxB,CAAC;AAChB,eAAO,MAAM,UAAU;aACZ,MAAM;0BACO,MAAM,KAAK,IAAI;QAStC,CAAC;AACF,wBAAgB,kBAAkB,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,GAAG,CAAC,OAAO,CAAA;CAAE,eAYzE"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useState, createContext, useContext } from 'react';
|
|
3
|
+
export const SyncedCursorChartsContext = createContext(null);
|
|
4
|
+
export const useCursorX = () => {
|
|
5
|
+
const contextValue = useContext(SyncedCursorChartsContext);
|
|
6
|
+
if (contextValue === null) {
|
|
7
|
+
console.error("Can't use useCursorX() outside SyncedCursorCharts");
|
|
8
|
+
}
|
|
9
|
+
return contextValue;
|
|
10
|
+
};
|
|
11
|
+
export function SyncedCursorCharts({ children }) {
|
|
12
|
+
const [cursorX, setCursorX] = useState(0);
|
|
13
|
+
return (_jsx(SyncedCursorChartsContext.Provider, { value: {
|
|
14
|
+
cursorX,
|
|
15
|
+
setCursorX,
|
|
16
|
+
}, children: children }));
|
|
17
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import * as vega from 'vega';
|
|
3
|
+
export declare const TOP = "top";
|
|
4
|
+
export declare const BOTTOM = "bottom";
|
|
5
|
+
type Position = typeof TOP | typeof BOTTOM;
|
|
6
|
+
type Props = {
|
|
7
|
+
spec: Record<string, any>;
|
|
8
|
+
tooltipPosition?: Position;
|
|
9
|
+
theme?: 'light' | 'dark' | 'custom';
|
|
10
|
+
id?: string;
|
|
11
|
+
onHover?: (dataPoint: any) => void;
|
|
12
|
+
formatTooltip?: (value: any, valueToHtml: (value: any) => string, maxDepth: number) => string;
|
|
13
|
+
};
|
|
14
|
+
export declare const VegaChart: React.ForwardRefExoticComponent<Props & React.RefAttributes<typeof vega.View>>;
|
|
15
|
+
export {};
|
|
16
|
+
//# sourceMappingURL=VegaChartV2.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VegaChartV2.component.d.ts","sourceRoot":"","sources":["../../../src/lib/components/vegachartv2/VegaChartV2.component.tsx"],"names":[],"mappings":"AACA,OAAO,KAMN,MAAM,OAAO,CAAC;AACf,OAAO,KAAK,IAAI,MAAM,MAAM,CAAC;AAM7B,eAAO,MAAM,GAAG,QAAQ,CAAC;AACzB,eAAO,MAAM,MAAM,WAAW,CAAC;AAC/B,KAAK,QAAQ,GAAG,OAAO,GAAG,GAAG,OAAO,MAAM,CAAC;AAC3C,KAAK,KAAK,GAAG;IACX,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC1B,eAAe,CAAC,EAAE,QAAQ,CAAC;IAC3B,KAAK,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,QAAQ,CAAC;IACpC,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,OAAO,CAAC,EAAE,CAAC,SAAS,EAAE,GAAG,KAAK,IAAI,CAAC;IACnC,aAAa,CAAC,EAAE,CACd,KAAK,EAAE,GAAG,EACV,WAAW,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,MAAM,EACnC,QAAQ,EAAE,MAAM,KACb,MAAM,CAAC;CACb,CAAC;AA0PF,eAAO,MAAM,SAAS,gFAAsC,CAAC"}
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
import React, { useEffect, useContext, useRef, useLayoutEffect, useMemo, } from 'react';
|
|
4
|
+
import * as vega from 'vega';
|
|
5
|
+
import vegaEmbed from 'vega-embed';
|
|
6
|
+
import { ThemeContext, createGlobalStyle } from 'styled-components';
|
|
7
|
+
import { getThemePropSelector } from '../../utils';
|
|
8
|
+
import { useCursorX, SyncedCursorChartsContext } from './SyncedCursorCharts';
|
|
9
|
+
import { TooltipHandlerWithPaint } from '../linetemporalchart/tooltip';
|
|
10
|
+
export const TOP = 'top';
|
|
11
|
+
export const BOTTOM = 'bottom';
|
|
12
|
+
/* How to theme tooltip:
|
|
13
|
+
https://github.com/vega/vega-tooltip/blob/master/docs/customizing_your_tooltip.md
|
|
14
|
+
*/
|
|
15
|
+
const VegaTooltipTheme = createGlobalStyle `
|
|
16
|
+
#vg-tooltip-element.vg-tooltip.custom-theme {
|
|
17
|
+
padding: 8px;
|
|
18
|
+
position: fixed;
|
|
19
|
+
z-index: 1000;
|
|
20
|
+
width: calc(100vw/6);
|
|
21
|
+
font-family: 'Lato';
|
|
22
|
+
font-size: 12px;
|
|
23
|
+
border-radius: 3px;
|
|
24
|
+
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
|
|
25
|
+
color: ${getThemePropSelector('textPrimary')};
|
|
26
|
+
background-color: ${getThemePropSelector('backgroundLevel1')};
|
|
27
|
+
border: 1px solid ${getThemePropSelector('border')};
|
|
28
|
+
// customize the title
|
|
29
|
+
h2 {
|
|
30
|
+
color: ${getThemePropSelector('textPrimary')};
|
|
31
|
+
margin-bottom: 10px;
|
|
32
|
+
font-size: 12px;
|
|
33
|
+
}
|
|
34
|
+
table {
|
|
35
|
+
width: 100%;
|
|
36
|
+
}
|
|
37
|
+
table tr td.key {
|
|
38
|
+
color: ${getThemePropSelector('textSecondary')};
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
`;
|
|
42
|
+
function VegaChartInternal({ spec, tooltipPosition = BOTTOM, theme = 'custom', formatTooltip, onHover, }, ref) {
|
|
43
|
+
// $FlowFixMe
|
|
44
|
+
const { cursorX, setCursorX } = useCursorX();
|
|
45
|
+
const themeContext = useContext(ThemeContext);
|
|
46
|
+
// the background color of the view
|
|
47
|
+
const seriesBackgroundColor = themeContext && themeContext.brand
|
|
48
|
+
? themeContext.brand.backgroundLevel1
|
|
49
|
+
: themeContext.backgroundLevel1;
|
|
50
|
+
const brandText = themeContext && themeContext.brand
|
|
51
|
+
? themeContext.brand.textPrimary
|
|
52
|
+
: themeContext.textPrimary;
|
|
53
|
+
const themeConfig = {
|
|
54
|
+
config: {
|
|
55
|
+
background: 'transparent',
|
|
56
|
+
axis: {
|
|
57
|
+
labelColor: brandText,
|
|
58
|
+
titleColor: brandText,
|
|
59
|
+
grid: false,
|
|
60
|
+
domainColor: 'transparent',
|
|
61
|
+
},
|
|
62
|
+
title: {
|
|
63
|
+
color: brandText,
|
|
64
|
+
font: 'Lato',
|
|
65
|
+
},
|
|
66
|
+
view: {
|
|
67
|
+
stroke: 'transparent',
|
|
68
|
+
fill: seriesBackgroundColor,
|
|
69
|
+
},
|
|
70
|
+
// the headers provide a title and labels for faceted plots.
|
|
71
|
+
header: {
|
|
72
|
+
labelColor: brandText,
|
|
73
|
+
},
|
|
74
|
+
// the label of max/min
|
|
75
|
+
text: {
|
|
76
|
+
color: brandText,
|
|
77
|
+
font: 'Lato',
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
};
|
|
81
|
+
const themedSpec = { ...spec, ...themeConfig };
|
|
82
|
+
const vegaInstance = useRef();
|
|
83
|
+
const vegaDOMInstance = useRef(null);
|
|
84
|
+
let tooltipOptions = {
|
|
85
|
+
theme: theme,
|
|
86
|
+
formatTooltip: formatTooltip,
|
|
87
|
+
};
|
|
88
|
+
if (tooltipPosition === TOP) {
|
|
89
|
+
tooltipOptions = {
|
|
90
|
+
theme: theme,
|
|
91
|
+
offsetX: -85,
|
|
92
|
+
offsetY: -140,
|
|
93
|
+
formatTooltip: formatTooltip,
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
const tooltipHandler = useMemo(() => new TooltipHandlerWithPaint(tooltipOptions, onHover), [theme]);
|
|
97
|
+
/*
|
|
98
|
+
useEffect() and useEffectLayout():
|
|
99
|
+
The first effect will only render once, to initalize the chart and add the event lisener.
|
|
100
|
+
The second useEffectLayout is in charge of updating the chart when the `themedSpec` or `tooltipOptions` get updated.
|
|
101
|
+
Note it's important to useEffectLayout for the performance.
|
|
102
|
+
*/
|
|
103
|
+
useEffect(() => {
|
|
104
|
+
let isMounted = true;
|
|
105
|
+
// embed(el, spec[, opt]) the el can be a DOM element or CSS selector. https://github.com/vega/vega-embed
|
|
106
|
+
vegaDOMInstance &&
|
|
107
|
+
vegaDOMInstance.current &&
|
|
108
|
+
vegaEmbed(vegaDOMInstance.current, themedSpec, {
|
|
109
|
+
renderer: 'svg',
|
|
110
|
+
// Override the DEFAULT_OPTIONS https://github.com/vega/vega-tooltip/blob/master/src/defaults.ts
|
|
111
|
+
tooltip: tooltipHandler.call,
|
|
112
|
+
/* Determines if action links
|
|
113
|
+
("Export as PNG/SVG", "View Source", "View Vega" (only for Vega-Lite), "Open in Vega Editor") are included with the embedded view.
|
|
114
|
+
If the value is true, all action links will be shown and none if the value is false. */
|
|
115
|
+
actions: false,
|
|
116
|
+
})
|
|
117
|
+
.then((result) => {
|
|
118
|
+
vegaInstance.current = result;
|
|
119
|
+
// result.view contains the Vega view
|
|
120
|
+
// get the current state of view: result.view.getState()
|
|
121
|
+
const view = result.view;
|
|
122
|
+
if (ref) {
|
|
123
|
+
ref.current = view;
|
|
124
|
+
}
|
|
125
|
+
if (SyncedCursorChartsContext && view) {
|
|
126
|
+
view.addEventListener('mouseover', function (event, item) {
|
|
127
|
+
const currentTime = item &&
|
|
128
|
+
item.datum &&
|
|
129
|
+
item.datum.datum &&
|
|
130
|
+
item.datum.datum.timestamp;
|
|
131
|
+
if (currentTime) {
|
|
132
|
+
setCursorX(currentTime);
|
|
133
|
+
}
|
|
134
|
+
});
|
|
135
|
+
/*When the mouse leaves the chart area, set the cursorX to null*/
|
|
136
|
+
view.addEventListener('mouseleave', function (event, item) {
|
|
137
|
+
setCursorX(0);
|
|
138
|
+
});
|
|
139
|
+
}
|
|
140
|
+
})
|
|
141
|
+
.catch((...args) => {
|
|
142
|
+
if (isMounted) {
|
|
143
|
+
console.error(...args); // TODO: we should handle this with a retry or an error state of the component
|
|
144
|
+
}
|
|
145
|
+
});
|
|
146
|
+
return () => {
|
|
147
|
+
isMounted = false;
|
|
148
|
+
if (vegaInstance.current) {
|
|
149
|
+
vegaInstance.current.view.finalize();
|
|
150
|
+
}
|
|
151
|
+
}; // eslint-disable-next-line react-hooks/exhaustive-deps
|
|
152
|
+
}, [vegaDOMInstance]);
|
|
153
|
+
useLayoutEffect(() => {
|
|
154
|
+
if (vegaInstance.current) {
|
|
155
|
+
const view = vegaInstance.current.view;
|
|
156
|
+
tooltipHandler.options.formatTooltip = formatTooltip;
|
|
157
|
+
tooltipHandler.onHover = onHover;
|
|
158
|
+
view.tooltip(tooltipHandler.call).run();
|
|
159
|
+
tooltipHandler.paint(); // to repaint the tooltip
|
|
160
|
+
}
|
|
161
|
+
}, [formatTooltip, vegaInstance, onHover]);
|
|
162
|
+
useLayoutEffect(() => {
|
|
163
|
+
if (vegaInstance.current) {
|
|
164
|
+
const view = vegaInstance.current.view;
|
|
165
|
+
let changeset = vega
|
|
166
|
+
.changeset()
|
|
167
|
+
.remove(() => true)
|
|
168
|
+
.insert(themedSpec.data.values);
|
|
169
|
+
//only the data.values changes trigger the graph's repaint
|
|
170
|
+
// For some reason source_0 is the default dataset name
|
|
171
|
+
view
|
|
172
|
+
.change('source_0', changeset)
|
|
173
|
+
.runAsync()
|
|
174
|
+
.then(() => {
|
|
175
|
+
// call resize() after the data is loaded to make sure the width is set correctly.
|
|
176
|
+
view.resize().runAsync();
|
|
177
|
+
});
|
|
178
|
+
} // eslint-disable-next-line react-hooks/exhaustive-deps
|
|
179
|
+
}, [
|
|
180
|
+
// eslint-disable-next-line
|
|
181
|
+
JSON.stringify(themedSpec.data.values),
|
|
182
|
+
vegaInstance,
|
|
183
|
+
]);
|
|
184
|
+
useLayoutEffect(() => {
|
|
185
|
+
if (vegaInstance.current && themedSpec.params) {
|
|
186
|
+
const view = vegaInstance.current.view;
|
|
187
|
+
// when the mouse go out, we trigger the event to set cursorX to null
|
|
188
|
+
if (!themedSpec.params.find((param) => param.name === 'cursorX').value ||
|
|
189
|
+
!cursorX) {
|
|
190
|
+
view
|
|
191
|
+
.signal('cursorX', (themedSpec &&
|
|
192
|
+
themedSpec.data &&
|
|
193
|
+
themedSpec.data.values &&
|
|
194
|
+
themedSpec.data.values[0] &&
|
|
195
|
+
themedSpec.data.values[0].timestamp) ||
|
|
196
|
+
Date.now())
|
|
197
|
+
.run();
|
|
198
|
+
view.signal('isCursorDisplayed', false).run();
|
|
199
|
+
}
|
|
200
|
+
else {
|
|
201
|
+
view
|
|
202
|
+
.signal('cursorX', themedSpec.params.find((param) => param.name === 'cursorX').value)
|
|
203
|
+
.run();
|
|
204
|
+
view.signal('isCursorDisplayed', true).run();
|
|
205
|
+
}
|
|
206
|
+
} // eslint-disable-next-line react-hooks/exhaustive-deps
|
|
207
|
+
}, [
|
|
208
|
+
// eslint-disable-next-line
|
|
209
|
+
JSON.stringify(themedSpec),
|
|
210
|
+
vegaInstance,
|
|
211
|
+
]);
|
|
212
|
+
return (_jsx("div", { className: "sc-vegachart", ref: vegaDOMInstance, style: {
|
|
213
|
+
width: '100%',
|
|
214
|
+
}, children: _jsx(VegaTooltipTheme, {}) }));
|
|
215
|
+
} // @ts-expect-error
|
|
216
|
+
export const VegaChart = React.forwardRef(VegaChartInternal);
|
package/dist/hooks.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hooks.d.ts","sourceRoot":"","sources":["../src/lib/hooks.ts"],"names":[],"mappings":"AAEA,wBAAgB,cAAc,CAAC,CAAC,EAC9B,IAAI,EAAE,CAAC,EACP,OAAO,EAAE,CAAC,QAAQ,EAAE,CAAC,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,KAAK,OAAO,YAqBlD"}
|
package/dist/hooks.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { useEffect, useRef } from 'react';
|
|
2
|
+
export function useMemoCompare(next, compare) {
|
|
3
|
+
// Ref for storing previous value
|
|
4
|
+
const previousRef = useRef(null);
|
|
5
|
+
const previous = previousRef.current;
|
|
6
|
+
// Pass previous and next value to compare function
|
|
7
|
+
// to determine whether to consider them equal.
|
|
8
|
+
const isEqual = compare(previous, next);
|
|
9
|
+
// If not equal update previousRef to next value.
|
|
10
|
+
// We only update if not equal so that this hook continues to return
|
|
11
|
+
// the same old value if compare keeps returning true.
|
|
12
|
+
useEffect(() => {
|
|
13
|
+
if (!isEqual) {
|
|
14
|
+
previousRef.current = next;
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
// Finally, if equal then return the previous value
|
|
18
|
+
return isEqual ? previous : next;
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"branding.d.ts","sourceRoot":"","sources":["../../src/lib/icons/branding.tsx"],"names":[],"mappings":";AAEA,QAAA,MAAM,IAAI,mBAkDT,CAAC;AAEF,OAAO,EAAE,IAAI,EAAE,CAAC"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const Logo = () => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "186", height: "49", viewBox: "0 0 186 49", children: [_jsx("path", { fill: "#fff", d: "M72.23 18.19c0-2.03-1.18-3.18-4.53-3.18-3.35 0-4.53 1.15-4.53 3.18v.71c0 1.68 1.09 2.21 1.9 2.47l6.98 2.57c2.27.88 4.17 2.29 4.17 5.04v3.09c0 3.09-2.27 5.75-8.61 5.75-6.43 0-8.61-2.66-8.61-5.75v-2.03c0-.53.27-.71.82-.71h2.26c.45 0 .64.18.64.71v1.68c0 2.03 1.45 3.18 4.89 3.18 3.44 0 4.89-1.15 4.89-3.18v-1.77c0-1.86-1.72-2.48-3.17-3.1l-6.43-2.38a4.98 4.98 0 0 1-3.36-4.6v-2.12c0-3.1 2-5.75 8.16-5.75 6.25 0 8.25 2.65 8.25 5.75v1.68c0 .44-.18.7-.64.7h-2.26c-.55 0-.82-.17-.82-.7zM97.04 32.16c0 3.09-1.91 5.75-8.52 5.75-6.62 0-8.52-2.66-8.52-5.75V17.75c0-3.1 1.9-5.75 8.52-5.75 6.61 0 8.52 2.65 8.52 5.75v1.85c0 .53-.18.71-.73.71h-2.17c-.55 0-.82-.18-.82-.71v-1.23c0-2.04-1.36-3.28-4.8-3.28-3.44 0-4.8 1.24-4.8 3.28v13.26c0 2.03 1.36 3.27 4.8 3.27 3.44 0 4.8-1.24 4.8-3.27v-1.77c0-.44.27-.71.82-.71h2.17c.46 0 .73.27.73.71zM125.81 34.28h9.78c.46 0 .82.18.82.71v1.68c0 .53-.36.71-.82.71h-12.96c-.45 0-.63-.27-.63-.71V12.8c0-.53.18-.8.73-.8h2.35c.45 0 .73.27.73.8zM164.58 12c.46 0 .64.18.64.71v1.68c0 .53-.09.7-.64.7h-5.98v21.58c0 .53-.27.71-.81.71h-2.36c-.45 0-.81-.27-.81-.71V15.09h-5.99c-.54 0-.63-.17-.63-.7v-1.68c0-.53.09-.71.63-.71z" }), _jsx("path", { fill: "#fff", d: "M72.23 18.19c0-2.03-1.18-3.18-4.53-3.18-3.35 0-4.53 1.15-4.53 3.18v.71c0 1.68 1.09 2.21 1.9 2.47l6.98 2.57c2.27.88 4.17 2.29 4.17 5.04v3.09c0 3.09-2.27 5.75-8.61 5.75-6.43 0-8.61-2.66-8.61-5.75v-2.03c0-.53.27-.71.82-.71h2.26c.45 0 .64.18.64.71v1.68c0 2.03 1.45 3.18 4.89 3.18 3.44 0 4.89-1.15 4.89-3.18v-1.77c0-1.86-1.72-2.48-3.17-3.1l-6.43-2.38a4.98 4.98 0 0 1-3.36-4.6v-2.12c0-3.1 2-5.75 8.16-5.75 6.25 0 8.25 2.65 8.25 5.75v1.68c0 .44-.18.7-.64.7h-2.26c-.55 0-.82-.17-.82-.7zM97.04 32.16c0 3.09-1.91 5.75-8.52 5.75-6.62 0-8.52-2.66-8.52-5.75V17.75c0-3.1 1.9-5.75 8.52-5.75 6.61 0 8.52 2.65 8.52 5.75v1.85c0 .53-.18.71-.73.71h-2.17c-.55 0-.82-.18-.82-.71v-1.23c0-2.04-1.36-3.28-4.8-3.28-3.44 0-4.8 1.24-4.8 3.28v13.26c0 2.03 1.36 3.27 4.8 3.27 3.44 0 4.8-1.24 4.8-3.27v-1.77c0-.44.27-.71.82-.71h2.17c.46 0 .73.27.73.71zM125.81 34.28h9.78c.46 0 .82.18.82.71v1.68c0 .53-.36.71-.82.71h-12.96c-.45 0-.63-.27-.63-.71V12.8c0-.53.18-.8.73-.8h2.35c.45 0 .73.27.73.8zM143.72 36.67c0 .53-.19.71-.73.71h-2.36c-.45 0-.63-.27-.63-.71V12.8c0-.53.09-.8.63-.8h2.36c.54 0 .73.27.73.8zM164.58 12c.46 0 .64.18.64.71v1.68c0 .53-.09.7-.64.7h-5.98v21.58c0 .53-.27.71-.81.71h-2.36c-.45 0-.81-.27-.81-.71V15.09h-5.99c-.54 0-.63-.17-.63-.7v-1.68c0-.53.09-.71.63-.71zM175.53 23.76l5.71-11.05c.18-.36.36-.71.82-.71h2.35c.55 0 .82.27.55.71l-7.53 14.59v9.37c0 .44-.18.71-.72.71h-2.36c-.54 0-.63-.27-.63-.71V27.3l-7.61-14.59c-.28-.44 0-.71.54-.71h2.27c.54 0 .63.27.9.71zM110.76 12c.45 0 .73.27.91.71l7.43 23.96c.18.44 0 .71-.54.71h-2.45c-.45 0-.73-.27-.82-.71l-1.72-5.75h-7.97l-1.73 5.75c-.09.44-.36.71-.81.71h-2.45c-.54 0-.72-.27-.54-.71l7.43-23.96c.18-.44.45-.71.91-.71zm-1.18 5.48l-3.17 10.61h6.25z" }), _jsx("path", { fill: "#3d9bd6", d: "M21.25 4.42v7.25h3.99V4.33l5.16 2.92 2-3.36L27.14.97A7.7 7.7 0 0 0 23.15 0c-1.36 0-2.72.35-3.89 1.06L14 3.98l1.99 3.36z" }), _jsx("path", { fill: "#007664", d: "M21.25 4.42v7.25h3.99V4.33l5.16 2.92 2-3.36L27.14.97A7.7 7.7 0 0 0 23.15 0c-1.36 0-2.72.35-3.89 1.06L14 3.98l1.99 3.36z" }), _jsx("path", { fill: "#ee4642", d: "M21.16 44.25V37h3.99v7.25l5.16-2.92 2 3.36-5.17 2.92a7.9 7.9 0 0 1-7.88 0L14 44.69l1.99-3.36z" }), _jsx("path", { fill: "#2aad8e", d: "M40.43 13.28L34 16.9l1.99 3.36 6.44-3.62v5.83h3.99v-5.92c0-1.33-.37-2.65-1.09-3.8a8.82 8.82 0 0 0-2.9-2.83L37.17 7l-1.99 3.36z" }), _jsx("path", { fill: "#d71d4f", d: "M4.99 32.84l6.43-3.63 2 3.36-6.44 3.63 5.17 2.91-2 3.36-5.25-2.92a7.6 7.6 0 0 1-2.81-2.82A7.1 7.1 0 0 1 1 32.92V27h3.99z" }), _jsx("path", { fill: "#9e2569", d: "M4.08 16.64l6.43 3.62 2-3.36-6.44-3.62 5.17-2.92-2-3.36-5.25 2.92a8.72 8.72 0 0 0-2.9 2.83A7.16 7.16 0 0 0 0 16.64v5.92h3.99z" }), _jsx("path", { fill: "#f79836", d: "M40.34 36.2L34 32.57l1.99-3.36 6.44 3.63V27h3.99v5.92c0 1.33-.37 2.57-1.09 3.81a8.69 8.69 0 0 1-2.9 2.82l-5.26 2.92-1.99-3.36z" }), _jsx("path", { fill: "#007664", d: "M24 15v8.22l7.34-4.06z" }), _jsx("path", { fill: "#9e2569", d: "M23.25 15L16 19.16l7.25 4.06z" }), _jsx("path", { fill: "#d71d4f", d: "M22.25 25.07L15 21v8.13z" }), _jsx("path", { fill: "#2aad8e", d: "M24 24.98l7.25 4.07V21z" }), _jsx("path", { fill: "#ee4642", d: "M23.16 26L16 30.07l7.16 4.15z" }), _jsx("path", { fill: "#f79836", d: "M24 26v8.22l7.25-4.15z" })] }));
|
|
3
|
+
export { Logo };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scality-loading.d.ts","sourceRoot":"","sources":["../../src/lib/icons/scality-loading.tsx"],"names":[],"mappings":";AAEA,QAAA,MAAM,UAAU,mBAiHf,CAAC;AAEF,OAAO,EAAE,UAAU,EAAE,CAAC"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const LoaderIcon = () => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 56 56", width: "50", height: "50", children: _jsxs("g", { className: "container", children: [_jsx("path", { d: "M25.80000004768371,5.250000393390657 v8.2 H30.200000047683716 V5.1500003933906555 l5.7,3.3 l2.2,-3.8 l-5.8,-3.3 c-1.3,-0.8 -2.8,-1.1 -4.4,-1.1 c-1.5,0 -3,0.4 -4.3,1.2 l-5.8,3.3 l2.2,3.8 L25.80000004768371,5.250000393390657 z", className: "svg_3", children: _jsx("animate", { attributeName: "opacity", attributeType: "XML", values: "1; 0", begin: "0s", dur: "1s", repeatCount: "indefinite" }) }), _jsx("path", { d: "M46.60000004768372,14.650000393390656 l-7.1,4.1 l2.2,3.8 l7.1,-4.1 l0,6.6 l4.4,0 l0,-6.7 c0,-1.5 -0.4,-3 -1.2,-4.3 c-0.8,-1.3 -1.9,-2.4 -3.2,-3.2 l-5.8,-3.3 l-2.2,3.8 L46.60000004768372,14.650000393390656 z", className: "svg_5", children: _jsx("animate", { attributeName: "opacity", attributeType: "XML", values: "1; 0", begin: "0.3s", dur: "1s", repeatCount: "indefinite" }) }), _jsx("path", { d: "M46.60000004768372,41.25000039339065 L39.60000004768372,37.150000393390656 l2.2,-3.8 l7.1,4.1 l0,-6.6 l4.4,0 l0,6.7 c0,1.5 -0.4,2.9 -1.2,4.3 c-0.8,1.3 -1.9,2.4 -3.2,3.2 l-5.8,3.3 l-2.2,-3.8 L46.60000004768372,41.25000039339065 z", className: "svg_8", children: _jsx("animate", { attributeName: "opacity", attributeType: "XML", values: "1; 0", begin: "0.55s", dur: "1s", repeatCount: "indefinite" }) }), _jsx("path", { d: "M25.80000004768371,50.75000039339065 v-8.2 H30.200000047683716 v8.2 l5.7,-3.3 l2.2,3.8 l-5.7,3.3 c-1.3,0.8 -2.9,1.2 -4.4,1.2 c-1.5,0 -3,-0.4 -4.3,-1.2 l-5.8,-3.3 l2.2,-3.8 L25.80000004768371,50.75000039339065 z", className: "svg_4", children: _jsx("animate", { attributeName: "opacity", attributeType: "XML", values: "1; 0", begin: "0.75s", dur: "1s", repeatCount: "indefinite" }) }), _jsx("path", { d: "M7.2000000476837185,37.45000039339065 l7.1,-4.1 l2.2,3.8 l-7.1,4.1 l5.7,3.3 l-2.2,3.8 l-5.8,-3.3 c-1.3,-0.8 -2.4,-1.9 -3.1,-3.2 c-0.8,-1.3 -1.2,-2.8 -1.2,-4.3 l0,-6.7 l4.4,0 L7.2000000476837185,37.45000039339065 z", className: "svg_6", children: _jsx("animate", { attributeName: "opacity", attributeType: "XML", values: "1; 0", begin: "0.85s", dur: "1s", repeatCount: "indefinite" }) }), _jsx("path", { d: "M7.2000000476837185,18.550000393390654 l7.1,4.1 l2.2,-3.8 l-7.1,-4.1 l5.7,-3.3 l-2.2,-3.8 l-5.8,3.3 c-1.3,0.8 -2.4,1.9 -3.2,3.2 c-0.8,1.3 -1.2,2.8 -1.2,4.4 l0,6.7 l4.4,0 L7.2000000476837185,18.550000393390654 z", className: "svg_7", children: _jsx("animate", { attributeName: "opacity", attributeType: "XML", values: "1; 0", begin: "0.9", dur: "1s", repeatCount: "indefinite" }) }), _jsx("polygon", { points: "28.60000228881836,17.649999976158142 28.60000228881836,26.950003027915955 36.70000076293945,22.34999692440033 ", className: "svg_9" }), _jsx("polygon", { points: "27.39999771118164,17.649999976158142 19.39999771118164,22.34999692440033 27.39999771118164,26.950003027915955 ", className: "svg_10" }), _jsx("polygon", { points: "26.89999771118164,27.950003027915955 18.89999771118164,23.34999692440033 18.89999771118164,32.55000340938568 ", className: "svg_11" }), _jsx("polygon", { points: "29.200000762939453,27.950003027915955 37.20000076293945,32.55000340938568 37.20000076293945,23.450003027915955 ", className: "svg_12" }), _jsx("polygon", { points: "27.39999771118164,29.05000150203705 19.500003814697266,33.650001883506775 27.39999771118164,38.34999883174896 ", className: "svg_13" }), _jsx("polygon", { points: "28.60000228881836,29.05000150203705 28.60000228881836,38.34999883174896 36.60000228881836,33.650001883506775 ", className: "svg_14" })] }) }));
|
|
3
|
+
export { LoaderIcon };
|
package/dist/index.css
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
html,
|
|
2
|
+
body {
|
|
3
|
+
font-family: 'Lato';
|
|
4
|
+
font-size: max(14px, 0.972vw);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
/* Lato-Regular */
|
|
8
|
+
@font-face {
|
|
9
|
+
font-family: 'Lato';
|
|
10
|
+
font-style: normal;
|
|
11
|
+
font-weight: normal;
|
|
12
|
+
src: local(''), url('./style/fonts/Lato-Regular.woff2') format('woff2'),
|
|
13
|
+
/* Chrome 26+, Opera 23+, Firefox 39+ */
|
|
14
|
+
url('./style/fonts/Lato-Regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* Lato-Bold */
|
|
18
|
+
@font-face {
|
|
19
|
+
font-family: 'Lato';
|
|
20
|
+
font-style: normal;
|
|
21
|
+
font-weight: bold;
|
|
22
|
+
src: local(''), url('./style/fonts/Lato-Bold.woff2') format('woff2'),
|
|
23
|
+
/* Chrome 26+, Opera 23+, Firefox 39+ */ url('./style/fonts/Lato-Bold.woff')
|
|
24
|
+
format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
|
25
|
+
}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import '@fortawesome/fontawesome-free/css/all.css';
|
|
2
|
+
import './index.css';
|
|
3
|
+
export { Banner } from './components/banner/Banner.component';
|
|
4
|
+
export { Breadcrumb } from './components/breadcrumb/Breadcrumb.component';
|
|
5
|
+
export { Button } from './components/button/Button.component';
|
|
6
|
+
export { Checkbox } from './components/checkbox/Checkbox.component';
|
|
7
|
+
export { Chips } from './components/chips/Chips.component';
|
|
8
|
+
export { Dropdown } from './components/dropdown/Dropdown.component';
|
|
9
|
+
export { Input } from './components/input/Input.component';
|
|
10
|
+
export { LOADER_SIZE } from './components/constants';
|
|
11
|
+
export { Layout } from './components/layout/Layout.component';
|
|
12
|
+
export { Loader } from './components/loader/Loader.component';
|
|
13
|
+
export { Modal } from './components/modal/Modal.component';
|
|
14
|
+
export { Navbar } from './components/navbar/Navbar.component';
|
|
15
|
+
export { Notifications } from './components/notifications/Notifications.component';
|
|
16
|
+
export { SearchInput } from './components/searchinput/SearchInput.component';
|
|
17
|
+
export { Select } from './components/select/Select.component';
|
|
18
|
+
export { Sidebar } from './components/sidebar/Sidebar.component';
|
|
19
|
+
export { Steppers } from './components/steppers/Steppers.component';
|
|
20
|
+
export { Toggle } from './components/toggle/Toggle.component';
|
|
21
|
+
export { Tooltip } from './components/tooltip/Tooltip.component';
|
|
22
|
+
export { MultiSelect } from './components/multiselect/MultiSelect.component';
|
|
23
|
+
export { VegaChart } from './components/vegachart/VegaChart.component';
|
|
24
|
+
export { LineChart } from './components/linechart/LineChart.component';
|
|
25
|
+
export { ProgressBar } from './components/progressbar/ProgressBar.component';
|
|
26
|
+
export { TextArea } from './components/textarea/TextArea.component';
|
|
27
|
+
export { CloudProgressBar } from './components/cloudprogressbar/CloudProgressBar.component';
|
|
28
|
+
export { Sparkline } from './components/sparkline/SparkLine.component';
|
|
29
|
+
export { BarChart } from './components/barchart/BarChart.component';
|
|
30
|
+
export { CircularProgressBar } from './components/circularprogressbar/CircularProgressBar.component';
|
|
31
|
+
export { AreaChart } from './components/areachart/AreaChart.component';
|
|
32
|
+
export { CollapsiblePanel } from './components/collapsiblepanel/CollapsiblePanel.component';
|
|
33
|
+
export { LateralNavbarLayout } from './components/lateralnavbarlayout/LateralNavbarLayout.component';
|
|
34
|
+
export { GlobalHealthBar } from './components/globalhealthbar/GlobalHealthBar.component';
|
|
35
|
+
export { ConstrainedText } from './components/constrainedtext/Constrainedtext.component';
|
|
36
|
+
export { EmptyState } from './components/emptystate/Emptystate.component';
|
|
37
|
+
export { EmptyTable } from './components/emptytable/Emptytable.component';
|
|
38
|
+
export { ScrollbarWrapper } from './components/scrollbarwrapper/ScrollbarWrapper.component';
|
|
39
|
+
export { ErrorPage401 } from './components/error-pages/ErrorPage401.component';
|
|
40
|
+
export { ErrorPage404 } from './components/error-pages/ErrorPage404.component';
|
|
41
|
+
export { ErrorPage500 } from './components/error-pages/ErrorPage500.component';
|
|
42
|
+
export { ErrorPageAuth } from './components/error-pages/ErrorPageAuth.component';
|
|
43
|
+
export { TextBadge } from './components/textbadge/TextBadge.component';
|
|
44
|
+
export { SpacedBox } from './components/spacedbox/SpacedBox';
|
|
45
|
+
export { Layout as Layout2 } from './components/layout/v2';
|
|
46
|
+
export { TwoPanelLayout } from './components/layout/v2/panels';
|
|
47
|
+
export { AppContainer } from './components/layout/v2/AppContainer';
|
|
48
|
+
export { BasicText, SecondaryText, LargerText, EmphaseText, StatusText, LargeText, SmallerText, ChartTitleText, Text, Link, } from './components/text/Text.component';
|
|
49
|
+
export { Card } from './components/card/Card.component';
|
|
50
|
+
export { PrettyBytes } from './components/prettybytes/PrettyBytes.component';
|
|
51
|
+
export { Icon } from './components/icon/Icon.component';
|
|
52
|
+
export { StatusWrapper } from './components/statuswrapper/Statuswrapper.component';
|
|
53
|
+
export { Stack, Wrap, spacing } from './spacing';
|
|
54
|
+
export { Form, FormSection, FormGroup } from './components/form/Form.component';
|
|
55
|
+
export { FormattedDateTime } from './components/date/FormattedDateTime';
|
|
56
|
+
export { getDateDaysDiff } from './components/date/dateDiffer';
|
|
57
|
+
export { IconHelp } from './components/IconHelper';
|
|
58
|
+
export { Dropzone } from './components/dropzone/Dropzone';
|
|
59
|
+
export { Toast } from './components/toast/Toast.component';
|
|
60
|
+
export { ToastProvider, useToast } from './components/toast/ToastProvider';
|
|
61
|
+
export { useMutationsHandler } from './components/toast/useMutationsHandler';
|
|
62
|
+
export { Stepper } from './components/steppers/Stepper.component';
|
|
63
|
+
export { InfoMessage } from './components/infomessage/InfoMessage.component';
|
|
64
|
+
export { InputList } from './components/inputlist/InputList.component';
|
|
65
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/lib/index.ts"],"names":[],"mappings":"AAAA,OAAO,2CAA2C,CAAC;AACnD,OAAO,aAAa,CAAC;AACrB,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAC9D,OAAO,EAAE,UAAU,EAAE,MAAM,8CAA8C,CAAC;AAC1E,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAC9D,OAAO,EAAE,QAAQ,EAAE,MAAM,0CAA0C,CAAC;AACpE,OAAO,EAAE,KAAK,EAAE,MAAM,oCAAoC,CAAC;AAC3D,OAAO,EAAE,QAAQ,EAAE,MAAM,0CAA0C,CAAC;AACpE,OAAO,EAAE,KAAK,EAAE,MAAM,oCAAoC,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AACrD,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAC9D,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAC9D,OAAO,EAAE,KAAK,EAAE,MAAM,oCAAoC,CAAC;AAC3D,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,oDAAoD,CAAC;AACnF,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAC7E,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAC9D,OAAO,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAC;AACjE,OAAO,EAAE,QAAQ,EAAE,MAAM,0CAA0C,CAAC;AACpE,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAC9D,OAAO,EAAE,OAAO,EAAE,MAAM,wCAAwC,CAAC;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAC7E,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AACvE,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AACvE,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAC7E,OAAO,EAAE,QAAQ,EAAE,MAAM,0CAA0C,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,0DAA0D,CAAC;AAC5F,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AACvE,OAAO,EAAE,QAAQ,EAAE,MAAM,0CAA0C,CAAC;AACpE,OAAO,EAAE,mBAAmB,EAAE,MAAM,gEAAgE,CAAC;AACrG,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AACvE,OAAO,EAAE,gBAAgB,EAAE,MAAM,0DAA0D,CAAC;AAC5F,OAAO,EAAE,mBAAmB,EAAE,MAAM,gEAAgE,CAAC;AACrG,OAAO,EAAE,eAAe,EAAE,MAAM,wDAAwD,CAAC;AACzF,OAAO,EAAE,eAAe,EAAE,MAAM,wDAAwD,CAAC;AACzF,OAAO,EAAE,UAAU,EAAE,MAAM,8CAA8C,CAAC;AAC1E,OAAO,EAAE,UAAU,EAAE,MAAM,8CAA8C,CAAC;AAC1E,OAAO,EAAE,gBAAgB,EAAE,MAAM,0DAA0D,CAAC;AAC5F,OAAO,EAAE,YAAY,EAAE,MAAM,iDAAiD,CAAC;AAC/E,OAAO,EAAE,YAAY,EAAE,MAAM,iDAAiD,CAAC;AAC/E,OAAO,EAAE,YAAY,EAAE,MAAM,iDAAiD,CAAC;AAC/E,OAAO,EAAE,aAAa,EAAE,MAAM,kDAAkD,CAAC;AACjF,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC;AACvE,OAAO,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAC7D,OAAO,EAAE,MAAM,IAAI,OAAO,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAC/D,OAAO,EAAE,YAAY,EAAE,MAAM,qCAAqC,CAAC;AACnE,OAAO,EACL,SAAS,EACT,aAAa,EACb,UAAU,EACV,WAAW,EACX,UAAU,EACV,SAAS,EACT,WAAW,EACX,cAAc,EACd,IAAI,EACJ,IAAI,GACL,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,IAAI,EAAE,MAAM,kCAAkC,CAAC;AACxD,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAC7E,OAAO,EAAE,IAAI,EAAE,MAAM,kCAAkC,CAAC;AACxD,OAAO,EAAE,aAAa,EAAE,MAAM,oDAAoD,CAAC;AACnF,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACjD,OAAO,EAAE,IAAI,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAChF,OAAO,EAAE,iBAAiB,EAAE,MAAM,qCAAqC,CAAC;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;AAC/D,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAC;AACnD,OAAO,EAAE,QAAQ,EAAE,MAAM,gCAAgC,CAAC;AAC1D,OAAO,EAAE,KAAK,EAAE,MAAM,oCAAoC,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AAC3E,OAAO,EAAE,mBAAmB,EAAE,MAAM,wCAAwC,CAAC;AAC7E,OAAO,EAAE,OAAO,EAAE,MAAM,yCAAyC,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,gDAAgD,CAAC;AAC7E,OAAO,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import '@fortawesome/fontawesome-free/css/all.css';
|
|
2
|
+
import './index.css';
|
|
3
|
+
export { Banner } from './components/banner/Banner.component';
|
|
4
|
+
export { Breadcrumb } from './components/breadcrumb/Breadcrumb.component';
|
|
5
|
+
export { Button } from './components/button/Button.component';
|
|
6
|
+
export { Checkbox } from './components/checkbox/Checkbox.component';
|
|
7
|
+
export { Chips } from './components/chips/Chips.component';
|
|
8
|
+
export { Dropdown } from './components/dropdown/Dropdown.component';
|
|
9
|
+
export { Input } from './components/input/Input.component';
|
|
10
|
+
export { LOADER_SIZE } from './components/constants';
|
|
11
|
+
export { Layout } from './components/layout/Layout.component';
|
|
12
|
+
export { Loader } from './components/loader/Loader.component';
|
|
13
|
+
export { Modal } from './components/modal/Modal.component';
|
|
14
|
+
export { Navbar } from './components/navbar/Navbar.component';
|
|
15
|
+
export { Notifications } from './components/notifications/Notifications.component';
|
|
16
|
+
export { SearchInput } from './components/searchinput/SearchInput.component';
|
|
17
|
+
export { Select } from './components/select/Select.component';
|
|
18
|
+
export { Sidebar } from './components/sidebar/Sidebar.component';
|
|
19
|
+
export { Steppers } from './components/steppers/Steppers.component';
|
|
20
|
+
export { Toggle } from './components/toggle/Toggle.component';
|
|
21
|
+
export { Tooltip } from './components/tooltip/Tooltip.component';
|
|
22
|
+
export { MultiSelect } from './components/multiselect/MultiSelect.component';
|
|
23
|
+
export { VegaChart } from './components/vegachart/VegaChart.component';
|
|
24
|
+
export { LineChart } from './components/linechart/LineChart.component';
|
|
25
|
+
export { ProgressBar } from './components/progressbar/ProgressBar.component';
|
|
26
|
+
export { TextArea } from './components/textarea/TextArea.component';
|
|
27
|
+
export { CloudProgressBar } from './components/cloudprogressbar/CloudProgressBar.component';
|
|
28
|
+
export { Sparkline } from './components/sparkline/SparkLine.component';
|
|
29
|
+
export { BarChart } from './components/barchart/BarChart.component';
|
|
30
|
+
export { CircularProgressBar } from './components/circularprogressbar/CircularProgressBar.component';
|
|
31
|
+
export { AreaChart } from './components/areachart/AreaChart.component';
|
|
32
|
+
export { CollapsiblePanel } from './components/collapsiblepanel/CollapsiblePanel.component';
|
|
33
|
+
export { LateralNavbarLayout } from './components/lateralnavbarlayout/LateralNavbarLayout.component';
|
|
34
|
+
export { GlobalHealthBar } from './components/globalhealthbar/GlobalHealthBar.component';
|
|
35
|
+
export { ConstrainedText } from './components/constrainedtext/Constrainedtext.component';
|
|
36
|
+
export { EmptyState } from './components/emptystate/Emptystate.component';
|
|
37
|
+
export { EmptyTable } from './components/emptytable/Emptytable.component';
|
|
38
|
+
export { ScrollbarWrapper } from './components/scrollbarwrapper/ScrollbarWrapper.component';
|
|
39
|
+
export { ErrorPage401 } from './components/error-pages/ErrorPage401.component';
|
|
40
|
+
export { ErrorPage404 } from './components/error-pages/ErrorPage404.component';
|
|
41
|
+
export { ErrorPage500 } from './components/error-pages/ErrorPage500.component';
|
|
42
|
+
export { ErrorPageAuth } from './components/error-pages/ErrorPageAuth.component';
|
|
43
|
+
export { TextBadge } from './components/textbadge/TextBadge.component';
|
|
44
|
+
export { SpacedBox } from './components/spacedbox/SpacedBox';
|
|
45
|
+
export { Layout as Layout2 } from './components/layout/v2';
|
|
46
|
+
export { TwoPanelLayout } from './components/layout/v2/panels';
|
|
47
|
+
export { AppContainer } from './components/layout/v2/AppContainer';
|
|
48
|
+
export { BasicText, SecondaryText, LargerText, EmphaseText, StatusText, LargeText, SmallerText, ChartTitleText, Text, Link, } from './components/text/Text.component';
|
|
49
|
+
export { Card } from './components/card/Card.component';
|
|
50
|
+
export { PrettyBytes } from './components/prettybytes/PrettyBytes.component';
|
|
51
|
+
export { Icon } from './components/icon/Icon.component';
|
|
52
|
+
export { StatusWrapper } from './components/statuswrapper/Statuswrapper.component';
|
|
53
|
+
export { Stack, Wrap, spacing } from './spacing';
|
|
54
|
+
export { Form, FormSection, FormGroup } from './components/form/Form.component';
|
|
55
|
+
export { FormattedDateTime } from './components/date/FormattedDateTime';
|
|
56
|
+
export { getDateDaysDiff } from './components/date/dateDiffer';
|
|
57
|
+
export { IconHelp } from './components/IconHelper';
|
|
58
|
+
export { Dropzone } from './components/dropzone/Dropzone';
|
|
59
|
+
export { Toast } from './components/toast/Toast.component';
|
|
60
|
+
export { ToastProvider, useToast } from './components/toast/ToastProvider';
|
|
61
|
+
export { useMutationsHandler } from './components/toast/useMutationsHandler';
|
|
62
|
+
export { Stepper } from './components/steppers/Stepper.component';
|
|
63
|
+
export { InfoMessage } from './components/infomessage/InfoMessage.component';
|
|
64
|
+
export { InputList } from './components/inputlist/InputList.component';
|