@databiosphere/findable-ui 47.0.2 → 49.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.husky/pre-commit +7 -0
- package/.release-please-manifest.json +1 -1
- package/.storybook/main.ts +6 -48
- package/CHANGELOG.md +57 -0
- package/CLAUDE.md +214 -0
- package/backend/README.md +64 -0
- package/backend/__init__.py +0 -0
- package/backend/controllers/__init__.py +0 -0
- package/backend/controllers/facets_controller.py +16 -0
- package/backend/controllers/models.py +11 -0
- package/backend/main.py +8 -0
- package/backend/requirements.txt +4 -0
- package/backend/services/__init__.py +0 -0
- package/backend/services/facets_service.py +68 -0
- package/backend/services/models.py +43 -0
- package/docs/TRUSTED_PUBLISHING.md +0 -1
- package/jest.config.js +0 -4
- package/lib/common/categories/config/types.d.ts +2 -1
- package/lib/common/chart/sort/constants.d.ts +5 -0
- package/lib/common/chart/sort/constants.js +9 -0
- package/lib/common/chart/sort/types.d.ts +16 -0
- package/lib/common/chart/sort/types.js +8 -0
- package/lib/common/chart/sort/utils.d.ts +7 -0
- package/lib/common/chart/sort/utils.js +19 -0
- package/lib/common/chart/types.d.ts +5 -0
- package/lib/common/entities.d.ts +2 -1
- package/lib/components/Authentication/components/SessionController/components/GoogleSessionController/SessionController.d.ts +1 -0
- package/lib/components/Authentication/components/SessionController/components/GoogleSessionController/SessionController.js +3 -2
- package/lib/components/Authentication/components/SessionController/components/NextSessionController/SessionController.d.ts +1 -0
- package/lib/components/Authentication/components/SessionController/components/NextSessionController/SessionController.js +3 -2
- package/lib/components/ComponentCreator/ComponentCreator.d.ts +1 -0
- package/lib/components/ComponentCreator/ComponentCreator.js +23 -20
- package/lib/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.d.ts +1 -1
- package/lib/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.js +2 -2
- package/lib/components/ComponentCreator/components/RenderComponent/renderComponent.d.ts +1 -1
- package/lib/components/ComponentCreator/components/RenderComponent/renderComponent.js +2 -2
- package/lib/components/DataDictionary/components/Description/description.d.ts +1 -0
- package/lib/components/DataDictionary/components/Description/description.js +2 -3
- package/lib/components/DataDictionary/components/Description/description.styles.d.ts +1 -3
- package/lib/components/DataDictionary/components/Description/description.styles.js +3 -1
- package/lib/components/DataDictionary/components/Entities/entities.d.ts +1 -0
- package/lib/components/DataDictionary/components/Entities/entities.js +3 -3
- package/lib/components/DataDictionary/components/Entity/entity.d.ts +1 -0
- package/lib/components/DataDictionary/components/Entity/entity.js +2 -9
- package/lib/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.d.ts +1 -0
- package/lib/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.js +2 -4
- package/lib/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.styles.d.ts +2 -4
- package/lib/components/DataDictionary/components/Filters/components/ColumnFilters/columnFilters.d.ts +1 -0
- package/lib/components/DataDictionary/components/Filters/components/ColumnFilters/columnFilters.js +4 -4
- package/lib/components/DataDictionary/components/Filters/filters.d.ts +1 -0
- package/lib/components/DataDictionary/components/Filters/filters.js +2 -4
- package/lib/components/DataDictionary/components/Filters/filters.styles.d.ts +2 -4
- package/lib/components/DataDictionary/components/Filters/stories/constants.js +1 -1
- package/lib/components/DataDictionary/components/Filters/stories/filters.stories.d.ts +1 -1
- package/lib/components/DataDictionary/components/Filters/stories/filters.stories.js +5 -6
- package/lib/components/DataDictionary/components/Layout/components/EntitiesLayout/entitiesLayout.d.ts +1 -2
- package/lib/components/DataDictionary/components/Layout/components/EntitiesLayout/entitiesLayout.js +3 -2
- package/lib/components/DataDictionary/components/Layout/components/FiltersLayout/filtersLayout.d.ts +1 -2
- package/lib/components/DataDictionary/components/Layout/components/FiltersLayout/filtersLayout.js +3 -2
- package/lib/components/DataDictionary/components/Layout/components/OutlineLayout/outlineLayout.d.ts +1 -0
- package/lib/components/DataDictionary/components/Layout/components/OutlineLayout/outlineLayout.js +2 -3
- package/lib/components/DataDictionary/components/Layout/components/TitleLayout/titleLayout.d.ts +1 -0
- package/lib/components/DataDictionary/components/Layout/components/TitleLayout/titleLayout.js +2 -2
- package/lib/components/DataDictionary/components/Outline/components/ContentsTab/contentsTab.d.ts +1 -0
- package/lib/components/DataDictionary/components/Outline/components/ContentsTab/contentsTab.js +2 -2
- package/lib/components/DataDictionary/components/Outline/outline.d.ts +1 -0
- package/lib/components/DataDictionary/components/Outline/outline.js +2 -2
- package/lib/components/DataDictionary/components/Table/components/BasicCell/basicCell.d.ts +1 -1
- package/lib/components/DataDictionary/components/Table/components/BasicCell/basicCell.js +2 -2
- package/lib/components/DataDictionary/components/Table/table.d.ts +1 -0
- package/lib/components/DataDictionary/components/Table/table.js +2 -6
- package/lib/components/DataDictionary/components/Table/table.styles.d.ts +1 -3
- package/lib/components/DataDictionary/components/Title/title.d.ts +1 -0
- package/lib/components/DataDictionary/components/Title/title.js +2 -2
- package/lib/components/DataDictionary/components/Title/title.styles.d.ts +1 -3
- package/lib/components/DataDictionary/components/Tooltip/components/Title/title.d.ts +1 -0
- package/lib/components/DataDictionary/components/Tooltip/components/Title/title.js +2 -4
- package/lib/components/DataDictionary/components/Tooltip/tooltip.d.ts +1 -0
- package/lib/components/DataDictionary/components/Tooltip/tooltip.js +2 -3
- package/lib/components/DataDictionary/dataDictionary.d.ts +1 -0
- package/lib/components/DataDictionary/dataDictionary.js +2 -14
- package/lib/components/DataDictionary/hooks/UseMeasureFilters/hook.js +1 -2
- package/lib/components/DataDictionary/hooks/UseMeasureFilters/types.d.ts +1 -1
- package/lib/components/Detail/components/AccessibilityBadge/accessibilityBadge.d.ts +1 -0
- package/lib/components/Detail/components/AccessibilityBadge/accessibilityBadge.js +2 -3
- package/lib/components/Detail/components/DetailViewTable/detailViewTable.d.ts +1 -1
- package/lib/components/Detail/components/DetailViewTable/detailViewTable.js +2 -5
- package/lib/components/Detail/components/Table/components/TableBody/tableBody.d.ts +1 -0
- package/lib/components/Detail/components/Table/components/TableBody/tableBody.js +2 -2
- package/lib/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.d.ts +1 -0
- package/lib/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.js +7 -7
- package/lib/components/Detail/components/Table/components/TableRows/tableRows.d.ts +1 -0
- package/lib/components/Detail/components/Table/components/TableRows/tableRows.js +11 -10
- package/lib/components/Detail/components/Table/stories/filter/filter.stories.d.ts +1 -1
- package/lib/components/Detail/components/Table/stories/table.stories.d.ts +1 -1
- package/lib/components/Detail/components/Table/table.d.ts +1 -0
- package/lib/components/Detail/components/Table/table.js +2 -5
- package/lib/components/Detail/detail.d.ts +1 -1
- package/lib/components/Detail/detail.js +2 -2
- package/lib/components/Detail/detail.stories.d.ts +2 -2
- package/lib/components/Detail/detail.stories.js +4 -13
- package/lib/components/Error/error.d.ts +1 -0
- package/lib/components/Error/error.js +3 -20
- package/lib/components/Error/error.stories.d.ts +1 -1
- package/lib/components/ErrorBoundary/errorBoundary.d.ts +3 -3
- package/lib/components/ErrorBoundary/errorBoundary.js +2 -2
- package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.d.ts +1 -1
- package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.js +3 -4
- package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.d.ts +1 -1
- package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.js +2 -9
- package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.d.ts +1 -1
- package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.js +2 -6
- package/lib/components/Export/components/DownloadCurlCommand/downloadCurlCommand.d.ts +1 -3
- package/lib/components/Export/components/DownloadCurlCommand/downloadCurlCommand.js +3 -2
- package/lib/components/Export/components/ExportForm/components/ExportButton/exportButton.d.ts +1 -1
- package/lib/components/Export/components/ExportForm/components/ExportButton/exportButton.js +3 -6
- package/lib/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.d.ts +1 -1
- package/lib/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.js +2 -6
- package/lib/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.d.ts +1 -0
- package/lib/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.js +9 -30
- package/lib/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.d.ts +1 -0
- package/lib/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.js +2 -4
- package/lib/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.d.ts +1 -0
- package/lib/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.js +5 -13
- package/lib/components/Export/components/ExportForm/exportForm.d.ts +1 -1
- package/lib/components/Export/components/ExportForm/exportForm.js +3 -10
- package/lib/components/Export/components/ExportForm/exportForm.styles.d.ts +3 -7
- package/lib/components/Export/components/ExportMethod/exportMethod.d.ts +1 -1
- package/lib/components/Export/components/ExportMethod/exportMethod.js +2 -11
- package/lib/components/Export/components/ExportMethod/exportMethod.stories.d.ts +2 -2
- package/lib/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.d.ts +1 -0
- package/lib/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.js +3 -9
- package/lib/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.d.ts +1 -1
- package/lib/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.js +2 -7
- package/lib/components/Export/components/ExportSummary/exportSummary.d.ts +1 -1
- package/lib/components/Export/components/ExportSummary/exportSummary.js +2 -2
- package/lib/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.js +3 -4
- package/lib/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.js +2 -8
- package/lib/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.js +2 -7
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.js +2 -2
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.js +2 -2
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.js +2 -2
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.js +4 -10
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.d.ts +1 -0
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.js +2 -11
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.d.ts +1 -0
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.js +2 -10
- package/lib/components/Export/components/ExportToTerra/exportToTerra.d.ts +1 -3
- package/lib/components/Export/components/ExportToTerra/exportToTerra.js +2 -2
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.d.ts +1 -0
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.js +7 -22
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.d.ts +1 -0
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.js +7 -22
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.d.ts +1 -2
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.js +2 -4
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.styles.d.ts +1 -3
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.d.ts +1 -0
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.js +3 -3
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.d.ts +1 -1
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.js +2 -8
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.d.ts +1 -1
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.js +2 -8
- package/lib/components/Export/components/ManifestDownload/manifestDownload.d.ts +1 -3
- package/lib/components/Export/components/ManifestDownload/manifestDownload.js +2 -2
- package/lib/components/Export/export.styles.d.ts +1 -1
- package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.d.ts +1 -0
- package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.js +2 -2
- package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.styles.d.ts +1 -3
- package/lib/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.d.ts +1 -2
- package/lib/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.js +3 -2
- package/lib/components/Filter/components/Filter/filter.d.ts +1 -1
- package/lib/components/Filter/components/Filter/filter.js +3 -7
- package/lib/components/Filter/components/Filter/stories/args.js +1 -1
- package/lib/components/Filter/components/Filter/stories/filter.stories.d.ts +1 -1
- package/lib/components/Filter/components/Filter/stories/filter.stories.js +2 -3
- package/lib/components/Filter/components/FilterCountChip/filterCountChip.d.ts +1 -0
- package/lib/components/Filter/components/FilterCountChip/filterCountChip.js +2 -2
- package/lib/components/Filter/components/FilterCountChip/filterCountChip.styles.d.ts +1 -3
- package/lib/components/Filter/components/FilterCountChip/stories/filterCountChip.stories.d.ts +1 -1
- package/lib/components/Filter/components/FilterLabel/filterLabel.d.ts +1 -1
- package/lib/components/Filter/components/FilterLabel/filterLabel.js +2 -3
- package/lib/components/Filter/components/FilterLabel/filterLabel.stories.d.ts +4 -4
- package/lib/components/Filter/components/FilterLabel/filterLabel.stories.js +2 -3
- package/lib/components/Filter/components/FilterLabel/filterLabel.styles.d.ts +1 -3
- package/lib/components/Filter/components/FilterList/filterList.styles.d.ts +3 -5
- package/lib/components/Filter/components/FilterMenu/filterMenu.d.ts +1 -0
- package/lib/components/Filter/components/FilterMenu/filterMenu.js +3 -7
- package/lib/components/Filter/components/FilterMenu/filterMenu.stories.d.ts +3 -2
- package/lib/components/Filter/components/FilterMenu/filterMenu.stories.js +2 -3
- package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.d.ts +1 -0
- package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.js +2 -2
- package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.d.ts +1 -2
- package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.js +3 -5
- package/lib/components/Filter/components/FilterRange/filterRange.d.ts +1 -0
- package/lib/components/Filter/components/FilterRange/filterRange.js +17 -39
- package/lib/components/Filter/components/FilterRange/stories/args.js +1 -1
- package/lib/components/Filter/components/FilterRange/stories/filterRange.stories.d.ts +1 -1
- package/lib/components/Filter/components/FilterTag/filterTag.d.ts +1 -0
- package/lib/components/Filter/components/FilterTag/filterTag.js +3 -3
- package/lib/components/Filter/components/FilterTag/filterTag.styles.d.ts +1 -3
- package/lib/components/Filter/components/FilterTag/stories/args.js +2 -2
- package/lib/components/Filter/components/FilterTag/stories/filterTag.stories.d.ts +1 -1
- package/lib/components/Filter/components/FilterTag/stories/filterTag.stories.js +2 -3
- package/lib/components/Filter/components/FilterTags/filterTags.d.ts +1 -0
- package/lib/components/Filter/components/FilterTags/filterTags.js +2 -2
- package/lib/components/Filter/components/FilterTags/filterTags.stories.d.ts +3 -2
- package/lib/components/Filter/components/FilterTags/filterTags.stories.js +2 -3
- package/lib/components/Filter/components/Filters/filters.d.ts +1 -0
- package/lib/components/Filter/components/Filters/filters.js +4 -6
- package/lib/components/Filter/components/Filters/stories/args.js +1 -1
- package/lib/components/Filter/components/Filters/stories/filters.stories.d.ts +1 -1
- package/lib/components/Filter/components/Filters/stories/filters.stories.js +2 -3
- package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.d.ts +1 -0
- package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.js +3 -3
- package/lib/components/Filter/components/SearchAllFilters/components/OutlinedInput/outlinedInput.d.ts +1 -0
- package/lib/components/Filter/components/SearchAllFilters/components/OutlinedInput/outlinedInput.js +2 -2
- package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeList/VariableSizeList.js +7 -8
- package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.d.ts +2 -2
- package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.js +7 -8
- package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.d.ts +1 -0
- package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.js +7 -7
- package/lib/components/Filter/components/SearchAllFilters/stories/args.js +1 -1
- package/lib/components/Filter/components/SearchAllFilters/stories/searchAllFilters.stories.d.ts +1 -1
- package/lib/components/Filter/components/SearchAllFilters/stories/searchAllFilters.stories.js +4 -5
- package/lib/components/Filter/components/VariableSizeList/VariableSizeList.d.ts +1 -0
- package/lib/components/Filter/components/VariableSizeList/VariableSizeList.js +5 -4
- package/lib/components/Filter/components/VariableSizeListItem/variableSizeListItem.d.ts +1 -1
- package/lib/components/Filter/components/VariableSizeListItem/variableSizeListItem.js +3 -4
- package/lib/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/columnFiltersAdapter.d.ts +1 -0
- package/lib/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/types.d.ts +1 -0
- package/lib/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/utils.js +1 -1
- package/lib/components/Filter/components/controls/Controls/components/FilterSort/filterSort.d.ts +1 -0
- package/lib/components/Filter/components/controls/Controls/components/FilterSort/filterSort.js +3 -13
- package/lib/components/Filter/components/controls/Controls/components/FilterSort/filterSort.styles.d.ts +1 -3
- package/lib/components/Filter/components/controls/Controls/components/FilterSort/stories/filterSort.stories.d.ts +1 -1
- package/lib/components/Filter/components/controls/Controls/controls.d.ts +1 -0
- package/lib/components/Filter/components/controls/Controls/controls.js +2 -5
- package/lib/components/Filter/components/controls/Controls/controls.styles.d.ts +2 -4
- package/lib/components/Filter/components/surfaces/drawer/Drawer/drawer.d.ts +1 -0
- package/lib/components/Filter/components/surfaces/drawer/Drawer/drawer.js +3 -7
- package/lib/components/Filter/components/surfaces/drawer/components/Button/button.d.ts +1 -0
- package/lib/components/Filter/components/surfaces/drawer/components/Button/button.js +2 -4
- package/lib/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.d.ts +1 -0
- package/lib/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.js +2 -4
- package/lib/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.styles.d.ts +1 -3
- package/lib/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.d.ts +1 -0
- package/lib/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.js +2 -3
- package/lib/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.styles.d.ts +1 -3
- package/lib/components/Filter/components/views/select/SelectListItem/selectListItem.d.ts +1 -2
- package/lib/components/Filter/components/views/select/SelectListItem/selectListItem.js +3 -4
- package/lib/components/Filter/components/views/select/components/Checkbox/checkbox.d.ts +1 -0
- package/lib/components/Filter/components/views/select/components/Checkbox/checkbox.js +2 -2
- package/lib/components/Filter/components/views/select/components/ListItemButton/listItemButton.d.ts +2 -5
- package/lib/components/Filter/components/views/select/components/ListItemButton/listItemButton.js +3 -2
- package/lib/components/Filter/components/views/select/components/ListItemButton/listItemButton.styles.d.ts +1 -3
- package/lib/components/Filter/components/views/select/components/ListItemText/components/Count/count.d.ts +1 -0
- package/lib/components/Filter/components/views/select/components/ListItemText/components/Count/count.js +2 -2
- package/lib/components/Filter/components/views/select/components/ListItemText/components/Term/term.d.ts +1 -0
- package/lib/components/Filter/components/views/select/components/ListItemText/components/Term/term.js +2 -2
- package/lib/components/Filter/components/views/select/components/ListItemText/listItemText.d.ts +1 -0
- package/lib/components/Filter/components/views/select/components/ListItemText/listItemText.js +4 -4
- package/lib/components/Head/head.d.ts +1 -0
- package/lib/components/Head/head.js +3 -11
- package/lib/components/Index/components/AzulFileDownload/azulFileDownload.d.ts +1 -0
- package/lib/components/Index/components/AzulFileDownload/azulFileDownload.js +3 -4
- package/lib/components/Index/components/AzulFileDownload/azulFileDownload.stories.d.ts +2 -2
- package/lib/components/Index/components/EntityView/components/controls/ActionButton/actionButton.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/controls/ActionButton/actionButton.js +3 -2
- package/lib/components/Index/components/EntityView/components/controls/ExportButton/exportButton.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/controls/ExportButton/exportButton.js +2 -4
- package/lib/components/Index/components/EntityView/components/controls/ExportButton/exportButton.styles.d.ts +1 -3
- package/lib/components/Index/components/EntityView/components/controls/FilterButton/filterButton.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/controls/FilterButton/filterButton.js +2 -5
- package/lib/components/Index/components/EntityView/components/controls/FilterButton/filterButton.styles.d.ts +1 -3
- package/lib/components/Index/components/EntityView/components/controls/ViewToggle/stories/viewToggle.stories.d.ts +1 -1
- package/lib/components/Index/components/EntityView/components/controls/ViewToggle/viewToggle.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/controls/ViewToggle/viewToggle.js +2 -4
- package/lib/components/Index/components/EntityView/components/layout/Summary/summary.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/layout/Summary/summary.js +3 -5
- package/lib/components/Index/components/EntityView/components/layout/Summary/summary.styles.d.ts +2 -4
- package/lib/components/Index/components/EntityView/components/layout/Title/title.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/layout/Title/title.js +2 -2
- package/lib/components/Index/components/EntityView/components/navigation/Tabs/tabs.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/navigation/Tabs/tabs.js +3 -2
- package/lib/components/Index/components/EntityView/components/slots/EntityListSlot/entityListSlot.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/slots/EntityListSlot/entityListSlot.js +2 -2
- package/lib/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.js +2 -3
- package/lib/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.styles.d.ts +2 -4
- package/lib/components/Index/components/EntityView/components/views/ChartView/chartView.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/views/ChartView/chartView.js +4 -11
- package/lib/components/Index/components/EntityView/components/views/ChartView/chartView.styles.d.ts +2 -4
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.js +13 -14
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.styles.d.ts +1 -3
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UsePlotOptions/hook.js +2 -7
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/args.js +12 -12
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/chart.stories.d.ts +1 -1
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/chart.stories.js +2 -3
- package/lib/components/Index/components/EntityView/components/views/ChartView/hooks/UseChartView/types.d.ts +1 -1
- package/lib/components/Index/components/EntityView/components/views/ChartView/stories/args.js +3 -3
- package/lib/components/Index/components/EntityView/components/views/ChartView/stories/chartView.stories.d.ts +1 -1
- package/lib/components/Index/components/EntityView/components/views/ChartView/stories/chartView.stories.js +2 -3
- package/lib/components/Index/components/EntityView/components/views/ChartView/utils.js +1 -1
- package/lib/components/Index/components/EntityView/components/views/TableView/tableView.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/views/TableView/tableView.js +2 -2
- package/lib/components/Index/index.d.ts +1 -0
- package/lib/components/Index/index.js +2 -16
- package/lib/components/Index/index.styles.d.ts +7 -15
- package/lib/components/Index/table/coreOptions/columns/cellFactory.d.ts +1 -0
- package/lib/components/Index/table/coreOptions/columns/cellFactory.js +2 -2
- package/lib/components/Layout/components/BackPage/backPageView.d.ts +1 -1
- package/lib/components/Layout/components/BackPage/backPageView.js +3 -7
- package/lib/components/Layout/components/BackPage/backPageView.stories.d.ts +2 -2
- package/lib/components/Layout/components/BackPage/backPageView.stories.js +4 -13
- package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.d.ts +1 -1
- package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.js +3 -10
- package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.styles.d.ts +1 -3
- package/lib/components/Layout/components/BackPage/components/BackPageHero/components/Actions/actions.d.ts +1 -1
- package/lib/components/Layout/components/BackPage/components/BackPageHero/components/Actions/actions.js +2 -2
- package/lib/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.d.ts +1 -1
- package/lib/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.js +2 -2
- package/lib/components/Layout/components/BackPage/components/BackPageHero/stories/backPageHero.stories.d.ts +1 -1
- package/lib/components/Layout/components/ContentLayout/components/Main/main.d.ts +1 -1
- package/lib/components/Layout/components/ContentLayout/components/Main/main.js +2 -2
- package/lib/components/Layout/components/ContentLayout/contentLayout.d.ts +1 -1
- package/lib/components/Layout/components/ContentLayout/contentLayout.js +2 -10
- package/lib/components/Layout/components/Floating/floating.d.ts +1 -0
- package/lib/components/Layout/components/Floating/floating.js +3 -2
- package/lib/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/title.d.ts +1 -0
- package/lib/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/title.js +2 -14
- package/lib/components/Layout/components/Footer/components/VersionInfo/versionInfo.d.ts +1 -0
- package/lib/components/Layout/components/Footer/components/VersionInfo/versionInfo.js +2 -3
- package/lib/components/Layout/components/Footer/components/VersionInfo/versionInfo.styles.d.ts +1 -3
- package/lib/components/Layout/components/Footer/footer.d.ts +1 -1
- package/lib/components/Layout/components/Footer/footer.js +3 -9
- package/lib/components/Layout/components/Footer/footer.stories.d.ts +2 -2
- package/lib/components/Layout/components/Footer/footer.stories.js +2 -2
- package/lib/components/Layout/components/Header/components/Announcements/announcements.d.ts +1 -0
- package/lib/components/Layout/components/Header/components/Announcements/announcements.js +2 -2
- package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.js +2 -2
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.js +6 -7
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.d.ts +1 -0
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.js +6 -12
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.styles.d.ts +4 -12
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/Button/button.styles.d.ts +1 -3
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.js +3 -12
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.d.ts +2 -2
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.js +3 -11
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/Button/button.styles.d.ts +1 -3
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.d.ts +1 -0
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.js +3 -6
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.js +5 -7
- package/lib/components/Layout/components/Header/components/Content/components/Logo/logo.d.ts +1 -0
- package/lib/components/Layout/components/Header/components/Content/components/Logo/logo.js +2 -2
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationButtonLabel/navigationButtonLabel.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationButtonLabel/navigationButtonLabel.js +3 -2
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.d.ts +1 -2
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.js +3 -2
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.js +3 -9
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.js +10 -16
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.styles.d.ts +1 -3
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.js +16 -19
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.d.ts +2 -2
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.js +10 -14
- package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.d.ts +2 -2
- package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.js +3 -2
- package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.styles.d.ts +1 -3
- package/lib/components/Layout/components/Header/header.d.ts +1 -1
- package/lib/components/Layout/components/Header/header.js +6 -25
- package/lib/components/Layout/components/Header/header.stories.d.ts +1 -1
- package/lib/components/Layout/components/Header/header.stories.js +2 -2
- package/lib/components/Layout/components/Main/main.d.ts +1 -1
- package/lib/components/Layout/components/Main/main.js +2 -2
- package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.d.ts +1 -0
- package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.js +2 -8
- package/lib/components/Layout/components/Nav/nav.d.ts +1 -1
- package/lib/components/Layout/components/Nav/nav.js +4 -9
- package/lib/components/Layout/components/Nav/nav.stories.d.ts +1 -1
- package/lib/components/Layout/components/Nav/nav.styles.d.ts +1 -3
- package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.d.ts +1 -0
- package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.js +2 -2
- package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.styles.d.ts +1 -3
- package/lib/components/Layout/components/Outline/outline.d.ts +1 -0
- package/lib/components/Layout/components/Outline/outline.js +2 -4
- package/lib/components/Layout/components/Outline/outline.styles.d.ts +3 -7
- package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.d.ts +1 -1
- package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.js +2 -5
- package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.d.ts +1 -1
- package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.js +2 -4
- package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.d.ts +1 -0
- package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.js +2 -2
- package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.stories.d.ts +2 -2
- package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.d.ts +1 -1
- package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.js +2 -2
- package/lib/components/Layout/components/Sidebar/sidebar.d.ts +1 -0
- package/lib/components/Layout/components/Sidebar/sidebar.js +3 -3
- package/lib/components/Layout/components/Sidebar/sidebar.stories.d.ts +1 -1
- package/lib/components/Layout/components/Sidebar/sidebar.stories.js +6 -7
- package/lib/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.d.ts +1 -0
- package/lib/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.js +3 -3
- package/lib/components/Links/components/Link/link.d.ts +1 -1
- package/lib/components/Links/components/Link/link.js +5 -9
- package/lib/components/Links/links.d.ts +1 -1
- package/lib/components/Links/links.js +5 -7
- package/lib/components/Links/links.stories.d.ts +2 -2
- package/lib/components/Loading/loading.d.ts +1 -0
- package/lib/components/Loading/loading.js +2 -6
- package/lib/components/Loading/loading.stories.d.ts +1 -1
- package/lib/components/Loading/loading.stories.js +3 -4
- package/lib/components/Login/components/Button/button.d.ts +1 -0
- package/lib/components/Login/components/Button/button.js +2 -2
- package/lib/components/Login/components/Button/button.styles.d.ts +1 -3
- package/lib/components/Login/components/Buttons/buttons.d.ts +1 -0
- package/lib/components/Login/components/Buttons/buttons.js +2 -2
- package/lib/components/Login/components/Section/components/Consent/consent.d.ts +1 -0
- package/lib/components/Login/components/Section/components/Consent/consent.js +2 -4
- package/lib/components/Login/components/Section/components/Consent/consent.styles.d.ts +2 -4
- package/lib/components/Login/components/Section/components/Warning/warning.d.ts +1 -0
- package/lib/components/Login/components/Section/components/Warning/warning.js +2 -2
- package/lib/components/Login/login.d.ts +1 -0
- package/lib/components/Login/login.js +3 -13
- package/lib/components/MarkdownRenderer/components/Anchor/anchor.d.ts +1 -1
- package/lib/components/MarkdownRenderer/components/Anchor/anchor.js +2 -2
- package/lib/components/MarkdownRenderer/components/Table/table.d.ts +1 -1
- package/lib/components/MarkdownRenderer/components/Table/table.js +2 -2
- package/lib/components/MarkdownRenderer/constants.d.ts +2 -2
- package/lib/components/MarkdownRenderer/markdownRenderer.d.ts +1 -12
- package/lib/components/MarkdownRenderer/markdownRenderer.js +16 -19
- package/lib/components/MarkdownRenderer/stories/markdownRenderer.stories.d.ts +1 -1
- package/lib/components/MarkdownRenderer/stories/markdownRenderer.stories.js +3 -4
- package/lib/components/MarkdownRenderer/types.d.ts +2 -3
- package/lib/components/NoResults/noResults.d.ts +1 -0
- package/lib/components/NoResults/noResults.js +3 -8
- package/lib/components/Plot/components/BarX/barX.d.ts +1 -0
- package/lib/components/Plot/components/BarX/barX.js +3 -2
- package/lib/components/Project/components/Citation/citation.d.ts +1 -0
- package/lib/components/Project/components/Citation/citation.js +2 -5
- package/lib/components/Project/components/Citation/citation.stories.d.ts +1 -1
- package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.d.ts +1 -0
- package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.js +2 -4
- package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.stories.d.ts +2 -2
- package/lib/components/Project/components/Contacts/contacts.d.ts +1 -0
- package/lib/components/Project/components/Contacts/contacts.js +3 -8
- package/lib/components/Project/components/Contacts/contacts.stories.d.ts +2 -2
- package/lib/components/Project/components/Contributors/contributors.d.ts +1 -0
- package/lib/components/Project/components/Contributors/contributors.js +2 -8
- package/lib/components/Project/components/Contributors/contributors.stories.d.ts +2 -2
- package/lib/components/Project/components/DataCurators/dataCurators.d.ts +1 -0
- package/lib/components/Project/components/DataCurators/dataCurators.js +2 -2
- package/lib/components/Project/components/DataCurators/dataCurators.stories.d.ts +2 -2
- package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.d.ts +1 -0
- package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.js +4 -10
- package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.stories.d.ts +2 -2
- package/lib/components/Project/components/Description/description.d.ts +1 -0
- package/lib/components/Project/components/Description/description.js +2 -3
- package/lib/components/Project/components/Description/description.stories.d.ts +2 -2
- package/lib/components/Project/components/Details/details.d.ts +1 -0
- package/lib/components/Project/components/Details/details.js +4 -3
- package/lib/components/Project/components/Details/details.stories.d.ts +2 -2
- package/lib/components/Project/components/Publications/publications.d.ts +1 -0
- package/lib/components/Project/components/Publications/publications.js +2 -4
- package/lib/components/Project/components/Publications/publications.stories.d.ts +2 -2
- package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.d.ts +1 -0
- package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.js +3 -9
- package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.stories.d.ts +2 -2
- package/lib/components/Redirect/redirect.d.ts +1 -0
- package/lib/components/Redirect/redirect.js +3 -2
- package/lib/components/Stepper/components/Step/components/StepContent/stepContent.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepContent/stepContent.js +2 -3
- package/lib/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.js +2 -3
- package/lib/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.styles.d.ts +1 -3
- package/lib/components/Stepper/components/Step/components/StepIcon/stepIcon.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepIcon/stepIcon.js +2 -2
- package/lib/components/Stepper/components/Step/components/StepIcon/stories/stepIcon.stories.d.ts +1 -1
- package/lib/components/Stepper/components/Step/components/StepIcon/stories/stepIcon.stories.js +4 -7
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/icon.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/icon.js +2 -3
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/stories/icon.stories.d.ts +1 -1
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/label.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/label.js +2 -2
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/label.styles.d.ts +1 -3
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/stories/label.stories.d.ts +1 -1
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/stories/label.stories.js +3 -5
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Optional/optional.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Optional/optional.js +2 -2
- package/lib/components/Stepper/components/Step/components/StepLabel/stepLabel.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepLabel/stepLabel.js +2 -2
- package/lib/components/Stepper/components/Step/components/StepLabel/stories/stepLabel.stories.d.ts +1 -1
- package/lib/components/Stepper/components/Step/components/StepLabel/stories/stepLabel.stories.js +6 -6
- package/lib/components/Stepper/components/Step/step.d.ts +1 -0
- package/lib/components/Stepper/components/Step/step.js +2 -2
- package/lib/components/Stepper/components/Step/step.styles.d.ts +1 -3
- package/lib/components/Stepper/components/Step/stories/step.stories.d.ts +1 -1
- package/lib/components/Stepper/components/Step/stories/step.stories.js +10 -11
- package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.d.ts +1 -1
- package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.js +9 -10
- package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.styles.d.ts +1 -3
- package/lib/components/Support/components/SupportRequest/components/Dropzone/dropzone.d.ts +1 -1
- package/lib/components/Support/components/SupportRequest/components/Dropzone/dropzone.js +2 -4
- package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.d.ts +1 -1
- package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.js +4 -17
- package/lib/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.d.ts +1 -1
- package/lib/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.js +2 -6
- package/lib/components/Support/components/SupportRequest/supportRequest.d.ts +1 -0
- package/lib/components/Support/components/SupportRequest/supportRequest.js +3 -2
- package/lib/components/Support/components/ViewSupport/viewSupport.d.ts +1 -0
- package/lib/components/Support/components/ViewSupport/viewSupport.js +2 -3
- package/lib/components/Table/common/gridTable.styles.d.ts +1 -3
- package/lib/components/Table/components/PaginationSummary/paginationSummary.d.ts +1 -0
- package/lib/components/Table/components/PaginationSummary/paginationSummary.js +2 -13
- package/lib/components/Table/components/TableBody/tableBody.d.ts +1 -0
- package/lib/components/Table/components/TableBody/tableBody.js +2 -5
- package/lib/components/Table/components/TableCell/components/BasicCell/basicCell.d.ts +1 -1
- package/lib/components/Table/components/TableCell/components/BasicCell/basicCell.js +4 -3
- package/lib/components/Table/components/TableCell/components/ChipCell/chipCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/ChipCell/chipCell.js +2 -2
- package/lib/components/Table/components/TableCell/components/CodeCell/codeCell.d.ts +1 -1
- package/lib/components/Table/components/TableCell/components/CodeCell/codeCell.js +2 -2
- package/lib/components/Table/components/TableCell/components/CodeCell/codeCell.styles.d.ts +1 -3
- package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.js +9 -17
- package/lib/components/Table/components/TableCell/components/LinkCell/linkCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/LinkCell/linkCell.js +4 -4
- package/lib/components/Table/components/TableCell/components/LinkCell/stories/linkCell.stories.d.ts +1 -1
- package/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell.js +2 -2
- package/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell.styles.js +3 -1
- package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/markdownCell.stories.d.ts +1 -1
- package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/markdownCell.stories.js +3 -4
- package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.js +4 -3
- package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.d.ts +1 -1
- package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.js +2 -2
- package/lib/components/Table/components/TableCell/components/NTagCell/nTagCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/NTagCell/nTagCell.js +4 -3
- package/lib/components/Table/components/TableCell/components/RankedCell/rankedCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/RankedCell/rankedCell.js +5 -10
- package/lib/components/Table/components/TableCell/components/RowPositionCell/rowPositionCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/RowPositionCell/rowPositionCell.js +2 -2
- package/lib/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.js +3 -5
- package/lib/components/Table/components/TableFeatures/ColumnFilter/columnFilter.d.ts +1 -0
- package/lib/components/Table/components/TableFeatures/ColumnFilter/columnFilter.js +16 -23
- package/lib/components/Table/components/TableFeatures/ColumnFilter/columnFilter.styles.d.ts +1 -3
- package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.d.ts +1 -0
- package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.js +4 -2
- package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.styles.d.ts +1 -3
- package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/stories/columFilterTag.stories.d.ts +1 -1
- package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/stories/columFilterTag.stories.js +2 -3
- package/lib/components/Table/components/TableFeatures/GlobalFilter/globalFilter.d.ts +1 -0
- package/lib/components/Table/components/TableFeatures/GlobalFilter/globalFilter.js +2 -2
- package/lib/components/Table/components/TableFeatures/TableDownload/tableDownload.d.ts +1 -0
- package/lib/components/Table/components/TableFeatures/TableDownload/tableDownload.js +2 -2
- package/lib/components/Table/components/TableFeatures/TableDownload/tableDownload.styles.d.ts +1 -3
- package/lib/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.d.ts +1 -0
- package/lib/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.js +2 -2
- package/lib/components/Table/components/TableHead/tableHead.d.ts +1 -0
- package/lib/components/Table/components/TableHead/tableHead.js +7 -8
- package/lib/components/Table/components/TablePagination/stories/args.js +1 -1
- package/lib/components/Table/components/TablePagination/stories/tablePagination.stories.d.ts +1 -1
- package/lib/components/Table/components/TablePagination/tablePagination.d.ts +1 -0
- package/lib/components/Table/components/TablePagination/tablePagination.js +2 -11
- package/lib/components/Table/components/TablePagination/tablePagination.styles.d.ts +2 -4
- package/lib/components/Table/components/TableRow/tableRow.styles.d.ts +1 -3
- package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.d.ts +1 -0
- package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.js +9 -9
- package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.styles.d.ts +1 -3
- package/lib/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.d.ts +1 -0
- package/lib/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.js +3 -3
- package/lib/components/Table/components/TableRows/tableRows.d.ts +1 -0
- package/lib/components/Table/components/TableRows/tableRows.js +16 -15
- package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/columnGrouping.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/columnGrouping.js +4 -4
- package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/menuItems.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/menuItems.js +12 -13
- package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/columnVisibility.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/columnVisibility.js +4 -4
- package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/menuItems.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/menuItems.js +6 -10
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.d.ts +1 -1
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.js +2 -5
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.styles.js +3 -1
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.js +4 -7
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.d.ts +1 -1
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.js +2 -4
- package/lib/components/Table/components/TableToolbar/components/RowPreview/rowPreview.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/RowPreview/rowPreview.js +2 -2
- package/lib/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.js +3 -3
- package/lib/components/Table/components/TableToolbar/components/RowSelection/rowSelection.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/RowSelection/rowSelection.js +2 -6
- package/lib/components/Table/components/TableToolbar/tableToolbar.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/tableToolbar.js +3 -11
- package/lib/components/Table/components/TableToolbar/tableToolbar.styles.d.ts +1 -3
- package/lib/components/Table/components/TableToolbar2/tableToolbar2.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar2/tableToolbar2.js +2 -4
- package/lib/components/Table/components/TableToolbar2/tableToolbar2.styles.d.ts +2 -6
- package/lib/components/Table/featureOptions/facetedColumn/getFacetedMinMaxValues.js +2 -1
- package/lib/components/Table/hooks/UseVirtualization/types.d.ts +1 -1
- package/lib/components/Table/table.d.ts +1 -0
- package/lib/components/Table/table.js +3 -9
- package/lib/components/Table/table.styles.d.ts +1 -3
- package/lib/components/TableCreator/tableCreator.d.ts +1 -0
- package/lib/components/TableCreator/tableCreator.js +2 -2
- package/lib/components/TempError/components/errorBox.d.ts +1 -0
- package/lib/components/TempError/components/errorBox.js +2 -4
- package/lib/components/TempError/tempError.d.ts +1 -0
- package/lib/components/TempError/tempError.js +2 -5
- package/lib/components/common/Accordion/accordion.d.ts +1 -1
- package/lib/components/common/Accordion/accordion.js +4 -6
- package/lib/components/common/Accordion/accordion.stories.d.ts +2 -2
- package/lib/components/common/Accordion/accordion.stories.js +2 -5
- package/lib/components/common/Alert/alert.d.ts +1 -2
- package/lib/components/common/Alert/alert.js +3 -2
- package/lib/components/common/AnchorLink/anchorLink.d.ts +1 -1
- package/lib/components/common/AnchorLink/anchorLink.js +2 -3
- package/lib/components/common/AnchorLink/anchorLink.styles.d.ts +2 -28
- package/lib/components/common/Banner/banner.d.ts +1 -2
- package/lib/components/common/Banner/banner.js +3 -2
- package/lib/components/common/Banner/components/CookieBanner/cookieBanner.d.ts +1 -1
- package/lib/components/common/Banner/components/CookieBanner/cookieBanner.js +6 -8
- package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.d.ts +1 -0
- package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.js +2 -3
- package/lib/components/common/Banner/components/SystemIndexing/systemIndexing.d.ts +1 -0
- package/lib/components/common/Banner/components/SystemIndexing/systemIndexing.js +2 -3
- package/lib/components/common/Banner/components/SystemStatus/systemStatus.d.ts +1 -0
- package/lib/components/common/Banner/components/SystemStatus/systemStatus.js +2 -3
- package/lib/components/common/Breadcrumbs/breadcrumbs.d.ts +1 -1
- package/lib/components/common/Breadcrumbs/breadcrumbs.js +4 -3
- package/lib/components/common/Breadcrumbs/breadcrumbs.stories.d.ts +2 -2
- package/lib/components/common/Button/button.d.ts +2 -2
- package/lib/components/common/Button/button.js +3 -2
- package/lib/components/common/Button/components/ButtonOutline/buttonOutline.d.ts +1 -2
- package/lib/components/common/Button/components/ButtonOutline/buttonOutline.js +3 -2
- package/lib/components/common/Button/components/ButtonPrimary/buttonPrimary.d.ts +1 -2
- package/lib/components/common/Button/components/ButtonPrimary/buttonPrimary.js +3 -2
- package/lib/components/common/Button/components/ButtonSecondary/buttonSecondary.d.ts +1 -2
- package/lib/components/common/Button/components/ButtonSecondary/buttonSecondary.js +3 -2
- package/lib/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.d.ts +1 -2
- package/lib/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.js +3 -2
- package/lib/components/common/Button/components/ButtonText/buttonText.d.ts +1 -0
- package/lib/components/common/Button/components/ButtonText/buttonText.js +2 -2
- package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.d.ts +1 -0
- package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.js +2 -2
- package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.d.ts +1 -0
- package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.js +2 -2
- package/lib/components/common/Button/components/CallToActionButton/callToActionButton.d.ts +1 -1
- package/lib/components/common/Button/components/CallToActionButton/callToActionButton.js +3 -4
- package/lib/components/common/Button/components/CallToActionButton/callToActionButton.stories.d.ts +2 -2
- package/lib/components/common/Button/components/DropdownButton/dropdownButton.d.ts +1 -0
- package/lib/components/common/Button/components/DropdownButton/dropdownButton.js +2 -2
- package/lib/components/common/Button/components/DropdownButton/dropdownButton.styles.d.ts +1 -3
- package/lib/components/common/Button/components/FileDownloadButton/fileDownloadButton.d.ts +1 -0
- package/lib/components/common/Button/components/FileDownloadButton/fileDownloadButton.js +3 -2
- package/lib/components/common/Button/components/HelpIconButton/helpIconButton.d.ts +1 -0
- package/lib/components/common/Button/components/HelpIconButton/helpIconButton.js +2 -5
- package/lib/components/common/Button/components/HelpIconButton/helpIconButton.stories.d.ts +2 -2
- package/lib/components/common/Button/components/NavigationButton/navigationButton.d.ts +1 -0
- package/lib/components/common/Button/components/NavigationButton/navigationButton.js +2 -2
- package/lib/components/common/ButtonGroup/buttonGroup.d.ts +1 -1
- package/lib/components/common/ButtonGroup/buttonGroup.js +3 -2
- package/lib/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.d.ts +1 -1
- package/lib/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.js +3 -3
- package/lib/components/common/Card/card.d.ts +1 -1
- package/lib/components/common/Card/card.js +3 -11
- package/lib/components/common/Card/card.stories.d.ts +2 -2
- package/lib/components/common/Card/components/CardAction/cardAction.d.ts +1 -0
- package/lib/components/common/Card/components/CardAction/cardAction.js +2 -2
- package/lib/components/common/Card/components/CardActionArea/cardActionArea.d.ts +1 -1
- package/lib/components/common/Card/components/CardActionArea/cardActionArea.js +2 -2
- package/lib/components/common/Card/components/CardActions/cardActions.d.ts +1 -1
- package/lib/components/common/Card/components/CardActions/cardActions.js +2 -4
- package/lib/components/common/Card/components/CardMedia/cardMedia.d.ts +1 -0
- package/lib/components/common/Card/components/CardMedia/cardMedia.js +2 -3
- package/lib/components/common/Card/components/CardSecondaryText/cardSecondaryText.d.ts +1 -0
- package/lib/components/common/Card/components/CardSecondaryText/cardSecondaryText.js +2 -2
- package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.d.ts +1 -0
- package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.js +2 -2
- package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.styles.d.ts +1 -3
- package/lib/components/common/Card/components/CardText/cardText.d.ts +1 -0
- package/lib/components/common/Card/components/CardText/cardText.js +2 -2
- package/lib/components/common/Card/components/CardTitle/cardTitle.d.ts +1 -0
- package/lib/components/common/Card/components/CardTitle/cardTitle.js +2 -2
- package/lib/components/common/Card/components/RoundedCard/roundedCard.d.ts +1 -1
- package/lib/components/common/Card/components/RoundedCard/roundedCard.js +2 -2
- package/lib/components/common/Code/code.d.ts +1 -0
- package/lib/components/common/Code/code.js +3 -3
- package/lib/components/common/Code/code.stories.d.ts +2 -2
- package/lib/components/common/CopyToClipboard/copyToClipboard.d.ts +1 -0
- package/lib/components/common/CopyToClipboard/copyToClipboard.js +4 -5
- package/lib/components/common/CopyToClipboard/copyToClipboard.stories.d.ts +2 -2
- package/lib/components/common/CustomIcon/components/AddIcon/addIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/AddIcon/addIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/AlertIcon/alertIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/AlertIcon/alertIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/CheckedIcon/checkedIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/CheckedIcon/checkedIcon.js +2 -4
- package/lib/components/common/CustomIcon/components/CloseIcon/closeIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/CloseIcon/closeIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/DownloadIcon/downloadIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/DownloadIcon/downloadIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/ErrorIcon/errorIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/ErrorIcon/errorIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/FacebookIcon/facebookIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/FacebookIcon/facebookIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.js +2 -4
- package/lib/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/GoogleIcon/googleIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/GoogleIcon/googleIcon.js +2 -6
- package/lib/components/common/CustomIcon/components/HelpIcon/helpIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/HelpIcon/helpIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/InProgressIcon/inProgressIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/InProgressIcon/inProgressIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.js +2 -4
- package/lib/components/common/CustomIcon/components/InfoIcon/infoIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/InfoIcon/infoIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/LoadingIcon/loadingIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/LoadingIcon/loadingIcon.js +2 -20
- package/lib/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/RemoveIcon/removeIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/RemoveIcon/removeIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/SearchIcon/searchIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/SearchIcon/searchIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/Segment/segment.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/Segment/segment.js +2 -3
- package/lib/components/common/CustomIcon/components/SlackIcon/slackIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/SlackIcon/slackIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/SouthIcon/southIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/SouthIcon/southIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/SuccessIcon/successIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/SuccessIcon/successIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/UncheckedDisabledIcon/uncheckedDisabledIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/UncheckedDisabledIcon/uncheckedDisabledIcon.js +2 -4
- package/lib/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/WarningIcon/warningIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/WarningIcon/warningIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/XIcon/xIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/XIcon/xIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.js +2 -3
- package/lib/components/common/Dialog/components/DialogTitle/dialogTitle.d.ts +1 -1
- package/lib/components/common/Dialog/components/DialogTitle/dialogTitle.js +2 -5
- package/lib/components/common/Dialog/dialog.d.ts +1 -1
- package/lib/components/common/Dialog/dialog.js +2 -2
- package/lib/components/common/Dot/dot.d.ts +1 -0
- package/lib/components/common/Dot/dot.js +2 -2
- package/lib/components/common/Drawer/components/DrawerTitle/drawerTitle.d.ts +1 -1
- package/lib/components/common/Drawer/components/DrawerTitle/drawerTitle.js +2 -5
- package/lib/components/common/Drawer/drawer.d.ts +1 -1
- package/lib/components/common/Drawer/drawer.js +2 -2
- package/lib/components/common/Drawer/provider/provider.d.ts +1 -0
- package/lib/components/common/Drawer/provider/provider.js +5 -4
- package/lib/components/common/DropdownMenu/components/MenuItem/menuItem.d.ts +1 -1
- package/lib/components/common/DropdownMenu/components/MenuItem/menuItem.js +2 -3
- package/lib/components/common/DropdownMenu/dropdownMenu.d.ts +1 -0
- package/lib/components/common/DropdownMenu/dropdownMenu.js +3 -4
- package/lib/components/common/EllipsisContent/ellipsisContent.d.ts +1 -1
- package/lib/components/common/EllipsisContent/ellipsisContent.js +3 -5
- package/lib/components/common/Form/components/Input/input.d.ts +1 -0
- package/lib/components/common/Form/components/Input/input.js +2 -4
- package/lib/components/common/Form/components/Input/input.styles.d.ts +1 -3
- package/lib/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.d.ts +1 -0
- package/lib/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.js +2 -2
- package/lib/components/common/Form/components/Select/select.d.ts +1 -1
- package/lib/components/common/Form/components/Select/select.js +2 -4
- package/lib/components/common/Form/components/Select/select.styles.d.ts +1 -3
- package/lib/components/common/Form/components/UploadFile/uploadFile.d.ts +1 -0
- package/lib/components/common/Form/components/UploadFile/uploadFile.js +2 -13
- package/lib/components/common/Form/components/UploadFile/uploadFile.styles.d.ts +1 -3
- package/lib/components/common/Grid/components/GridItem/gridItem.d.ts +1 -1
- package/lib/components/common/Grid/components/GridItem/gridItem.js +2 -2
- package/lib/components/common/Grid/grid.d.ts +1 -1
- package/lib/components/common/Grid/grid.js +2 -2
- package/lib/components/common/IconBadge/iconBadge.d.ts +1 -1
- package/lib/components/common/IconBadge/iconBadge.js +2 -3
- package/lib/components/common/IconButton/iconButton.d.ts +1 -1
- package/lib/components/common/IconButton/iconButton.js +2 -3
- package/lib/components/common/IconButton/iconButton.styles.d.ts +1 -3
- package/lib/components/common/Input/input.d.ts +1 -1
- package/lib/components/common/Input/input.js +2 -4
- package/lib/components/common/Input/input.styles.d.ts +1 -3
- package/lib/components/common/KeyValuePairs/components/KeyElType/keyElType.d.ts +1 -0
- package/lib/components/common/KeyValuePairs/components/KeyElType/keyElType.js +2 -2
- package/lib/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.d.ts +1 -1
- package/lib/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.js +2 -2
- package/lib/components/common/KeyValuePairs/components/ValueElType/valueElType.d.ts +1 -0
- package/lib/components/common/KeyValuePairs/components/ValueElType/valueElType.js +2 -2
- package/lib/components/common/KeyValuePairs/keyValuePairs.d.ts +1 -1
- package/lib/components/common/KeyValuePairs/keyValuePairs.js +7 -8
- package/lib/components/common/LoginDialog/loginDialog.d.ts +1 -0
- package/lib/components/common/LoginDialog/loginDialog.js +2 -12
- package/lib/components/common/Markdown/markdown.d.ts +1 -0
- package/lib/components/common/Markdown/markdown.js +2 -2
- package/lib/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.d.ts +1 -0
- package/lib/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.js +2 -4
- package/lib/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.styles.d.ts +1 -3
- package/lib/components/common/OutlinedInput/components/InputAdornment/components/SearchInputAdornment/searchInputAdornment.d.ts +1 -0
- package/lib/components/common/OutlinedInput/components/InputAdornment/components/SearchInputAdornment/searchInputAdornment.js +2 -3
- package/lib/components/common/OutlinedInput/components/InputAdornment/inputAdornment.styles.d.ts +1 -3
- package/lib/components/common/Paper/components/FlatPaper/flatPaper.d.ts +1 -0
- package/lib/components/common/Paper/components/FlatPaper/flatPaper.js +2 -2
- package/lib/components/common/Paper/components/FlatPaper/flatPaper.styles.d.ts +1 -3
- package/lib/components/common/Paper/components/FluidPaper/fluidPaper.d.ts +1 -0
- package/lib/components/common/Paper/components/FluidPaper/fluidPaper.js +2 -2
- package/lib/components/common/Paper/components/FluidPaper/fluidPaper.styles.d.ts +1 -3
- package/lib/components/common/Paper/components/RoundedPaper/roundedPaper.d.ts +1 -0
- package/lib/components/common/Paper/components/RoundedPaper/roundedPaper.js +2 -2
- package/lib/components/common/Paper/components/RoundedPaper/roundedPaper.styles.d.ts +1 -3
- package/lib/components/common/Paper/paper.d.ts +2 -2
- package/lib/components/common/Paper/paper.js +3 -2
- package/lib/components/common/Progress/components/CircularProgress/circularProgress.d.ts +1 -1
- package/lib/components/common/Progress/components/CircularProgress/circularProgress.js +2 -4
- package/lib/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.d.ts +1 -0
- package/lib/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.js +3 -2
- package/lib/components/common/RadioGroup/radioGroup.d.ts +1 -0
- package/lib/components/common/RadioGroup/radioGroup.js +2 -2
- package/lib/components/common/Section/components/CollapsableSection/collapsableSection.d.ts +1 -1
- package/lib/components/common/Section/components/CollapsableSection/collapsableSection.js +4 -7
- package/lib/components/common/Section/components/CollapsableSection/collapsableSection.styles.d.ts +1 -3
- package/lib/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.d.ts +1 -0
- package/lib/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.js +2 -2
- package/lib/components/common/Section/components/SectionTitle/sectionTitle.d.ts +1 -0
- package/lib/components/common/Section/components/SectionTitle/sectionTitle.js +2 -2
- package/lib/components/common/Section/components/SectionTitle/sectionTitle.stories.d.ts +2 -2
- package/lib/components/common/Section/section.styles.d.ts +4 -4
- package/lib/components/common/Sections/sections.d.ts +1 -1
- package/lib/components/common/Sections/sections.js +2 -3
- package/lib/components/common/Socials/socials.d.ts +2 -2
- package/lib/components/common/Socials/socials.js +3 -3
- package/lib/components/common/Socials/socials.stories.d.ts +1 -1
- package/lib/components/common/Stack/components/Divider/divider.d.ts +1 -1
- package/lib/components/common/Stack/components/Divider/divider.js +2 -2
- package/lib/components/common/Stack/stack.d.ts +1 -1
- package/lib/components/common/Stack/stack.js +2 -2
- package/lib/components/common/StaticImage/staticImage.d.ts +1 -0
- package/lib/components/common/StaticImage/staticImage.js +2 -3
- package/lib/components/common/StaticImage/staticImage.stories.d.ts +2 -2
- package/lib/components/common/StatusBadge/statusBadge.d.ts +1 -2
- package/lib/components/common/StatusBadge/statusBadge.js +3 -2
- package/lib/components/common/StatusBadge/statusBadge.stories.d.ts +1 -1
- package/lib/components/common/StatusIcon/statusIcon.d.ts +1 -1
- package/lib/components/common/StatusIcon/statusIcon.js +2 -3
- package/lib/components/common/StatusIcon/statusIcon.stories.d.ts +2 -2
- package/lib/components/common/Tabs/tabs.d.ts +1 -1
- package/lib/components/common/Tabs/tabs.js +3 -4
- package/lib/components/common/Tabs/tabs.styles.d.ts +1 -3
- package/lib/components/common/Tag/tag.d.ts +1 -0
- package/lib/components/common/Tag/tag.js +2 -2
- package/lib/components/common/Tag/tag.stories.d.ts +2 -2
- package/lib/components/common/Tag/tag.stories.js +2 -2
- package/lib/components/common/Tag/tag.styles.d.ts +2 -6
- package/lib/components/common/Title/title.d.ts +1 -0
- package/lib/components/common/Title/title.js +4 -3
- package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.d.ts +1 -0
- package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.js +3 -2
- package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.stories.d.ts +2 -2
- package/lib/components/common/Typography/TypographyWordBreak/TypographyWordBreak.d.ts +1 -1
- package/lib/components/common/Typography/TypographyWordBreak/TypographyWordBreak.js +2 -2
- package/lib/config/entities.d.ts +1 -1
- package/lib/config/utils.js +2 -6
- package/lib/entity/api/service.js +1 -3
- package/lib/hooks/authentication/session/useSessionIdleTimer.d.ts +1 -1
- package/lib/hooks/useAsync.js +2 -2
- package/lib/hooks/useCategoryFilter.js +1 -1
- package/lib/hooks/useEntityService.js +1 -2
- package/lib/hooks/useFileManifest/common/entities.d.ts +0 -9
- package/lib/hooks/useFileManifest/common/entities.js +1 -9
- package/lib/hooks/useRequestManifest/useRequestManifest.js +1 -2
- package/lib/hooks/useResizeObserver.d.ts +1 -1
- package/lib/hooks/useResizeObserver.js +1 -1
- package/lib/hooks/useWindowResize.js +8 -2
- package/lib/providers/authentication/terra/provider.d.ts +1 -0
- package/lib/providers/authentication/terra/provider.js +4 -3
- package/lib/providers/config.d.ts +2 -2
- package/lib/providers/config.js +4 -3
- package/lib/providers/dataDictionaryState/provider.d.ts +1 -1
- package/lib/providers/dataDictionaryState/provider.js +2 -2
- package/lib/providers/exploreState.d.ts +2 -2
- package/lib/providers/exploreState.js +3 -2
- package/lib/providers/fileManifestState.d.ts +2 -2
- package/lib/providers/fileManifestState.js +4 -3
- package/lib/providers/googleSignInAuthentication/provider.d.ts +1 -0
- package/lib/providers/googleSignInAuthentication/provider.js +2 -5
- package/lib/providers/layoutDimensions/context.js +2 -2
- package/lib/providers/layoutDimensions/provider.d.ts +1 -0
- package/lib/providers/layoutDimensions/provider.js +3 -2
- package/lib/providers/layoutDimensions/types.d.ts +2 -2
- package/lib/providers/loginGuard/provider.d.ts +1 -0
- package/lib/providers/loginGuard/provider.js +3 -4
- package/lib/providers/nextAuthAuthentication/provider.d.ts +1 -0
- package/lib/providers/nextAuthAuthentication/provider.js +2 -5
- package/lib/providers/services/provider.d.ts +1 -1
- package/lib/providers/services/provider.js +2 -2
- package/lib/providers/services/wasPop/provider.d.ts +1 -1
- package/lib/providers/services/wasPop/provider.js +4 -3
- package/lib/providers/systemStatus.d.ts +2 -2
- package/lib/providers/systemStatus.js +4 -3
- package/lib/storybook/controls/constants.d.ts +1 -1
- package/lib/storybook/controls/utils.d.ts +1 -1
- package/lib/storybook/decorators.d.ts +1 -1
- package/lib/storybook/decorators.js +2 -5
- package/lib/storybook/parameters.d.ts +1 -1
- package/lib/utils/mdx/plugins/rehypeSlug.d.ts +9 -1
- package/lib/utils/mdx/plugins/rehypeSlug.js +26 -4
- package/lib/utils/mdx/plugins/remarkHeadings.d.ts +1 -1
- package/lib/utils/mdx/plugins/remarkHeadings.js +6 -7
- package/lib/utils/mdx/plugins/types.d.ts +4 -0
- package/lib/utils/mdx/plugins/utils.d.ts +10 -0
- package/lib/utils/mdx/plugins/utils.js +8 -0
- package/lib/utils/mdx/staticGeneration/staticProps.d.ts +2 -2
- package/lib/views/ContentView/contentView.d.ts +1 -1
- package/lib/views/ContentView/contentView.js +2 -2
- package/lib/views/ContentView/contentView.stories.d.ts +1 -1
- package/lib/views/ContentView/contentView.stories.js +3 -19
- package/lib/views/DataDictionaryView/dataDictionaryView.d.ts +1 -0
- package/lib/views/DataDictionaryView/dataDictionaryView.js +2 -3
- package/lib/views/EntityDetailView/entityDetailView.d.ts +1 -0
- package/lib/views/EntityDetailView/entityDetailView.js +4 -6
- package/lib/views/EntityExportMethodView/entityExportMethodView.d.ts +1 -0
- package/lib/views/EntityExportMethodView/entityExportMethodView.js +3 -3
- package/lib/views/EntityExportView/entityExportView.d.ts +1 -0
- package/lib/views/EntityExportView/entityExportView.js +3 -3
- package/lib/views/ExploreView/exploreView.d.ts +1 -0
- package/lib/views/ExploreView/exploreView.js +3 -11
- package/lib/views/ExportMethodView/exportMethodView.d.ts +1 -0
- package/lib/views/ExportMethodView/exportMethodView.js +2 -2
- package/lib/views/ExportView/exportView.d.ts +1 -0
- package/lib/views/ExportView/exportView.js +2 -2
- package/lib/views/LoginView/loginView.d.ts +1 -0
- package/lib/views/LoginView/loginView.js +2 -2
- package/package.json +50 -59
- package/src/apis/azul/common/filterTransformer.ts +5 -5
- package/src/common/analytics/analytics.ts +1 -1
- package/src/common/categories/config/range/typeGuards.ts +1 -1
- package/src/common/categories/config/types.ts +5 -6
- package/src/common/categories/config/utils.ts +4 -4
- package/src/common/categories/models/range/utils.ts +2 -2
- package/src/common/categories/models/select/utils.ts +2 -2
- package/src/common/categories/views/range/typeGuards.ts +1 -1
- package/src/common/categories/views/range/utils.ts +2 -2
- package/src/common/categories/views/select/typeGuards.ts +1 -1
- package/src/common/chart/sort/constants.ts +13 -0
- package/src/common/chart/sort/types.ts +22 -0
- package/src/common/chart/sort/utils.ts +22 -0
- package/src/common/chart/types.ts +6 -0
- package/src/common/entities.ts +2 -1
- package/src/common/filters/sort/models/utils.ts +3 -3
- package/src/components/Authentication/components/SessionController/components/GoogleSessionController/SessionController.tsx +1 -1
- package/src/components/Authentication/components/SessionController/components/NextSessionController/SessionController.tsx +1 -1
- package/src/components/Authentication/components/SessionController/components/NextSessionController/utils.ts +3 -3
- package/src/components/ComponentCreator/ComponentCreator.tsx +4 -6
- package/src/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.tsx +1 -1
- package/src/components/ComponentCreator/components/RenderComponent/renderComponent.tsx +1 -1
- package/src/components/DataDictionary/common/utils.ts +8 -8
- package/src/components/DataDictionary/components/Description/description.styles.ts +3 -1
- package/src/components/DataDictionary/components/Description/description.tsx +1 -1
- package/src/components/DataDictionary/components/Entities/entities.tsx +1 -1
- package/src/components/DataDictionary/components/Entity/entity.tsx +1 -1
- package/src/components/DataDictionary/components/Entity/utils.ts +1 -1
- package/src/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.tsx +1 -1
- package/src/components/DataDictionary/components/Filters/components/ColumnFilterTags/types.ts +3 -2
- package/src/components/DataDictionary/components/Filters/components/ColumnFilters/columnFilters.tsx +1 -1
- package/src/components/DataDictionary/components/Filters/filters.tsx +1 -1
- package/src/components/DataDictionary/components/Filters/stories/constants.ts +1 -1
- package/src/components/DataDictionary/components/Filters/stories/filters.stories.tsx +3 -3
- package/src/components/DataDictionary/components/Filters/stories/utils.ts +1 -1
- package/src/components/DataDictionary/components/Layout/components/EntitiesLayout/entitiesLayout.tsx +3 -3
- package/src/components/DataDictionary/components/Layout/components/FiltersLayout/filtersLayout.tsx +3 -3
- package/src/components/DataDictionary/components/Layout/components/OutlineLayout/outlineLayout.tsx +1 -1
- package/src/components/DataDictionary/components/Layout/components/TitleLayout/titleLayout.tsx +1 -1
- package/src/components/DataDictionary/components/Outline/components/ContentsTab/contentsTab.tsx +1 -1
- package/src/components/DataDictionary/components/Outline/outline.tsx +1 -1
- package/src/components/DataDictionary/components/Outline/utils.ts +3 -3
- package/src/components/DataDictionary/components/Table/components/BasicCell/basicCell.tsx +2 -2
- package/src/components/DataDictionary/components/Table/hook.ts +1 -1
- package/src/components/DataDictionary/components/Table/options/columnFilters/hook.ts +3 -3
- package/src/components/DataDictionary/components/Table/options/globalFilter/hook.ts +3 -3
- package/src/components/DataDictionary/components/Table/table.tsx +2 -2
- package/src/components/DataDictionary/components/Table/utils.ts +4 -4
- package/src/components/DataDictionary/components/Title/title.tsx +1 -1
- package/src/components/DataDictionary/components/Tooltip/components/Title/title.tsx +1 -1
- package/src/components/DataDictionary/components/Tooltip/tooltip.tsx +1 -1
- package/src/components/DataDictionary/dataDictionary.tsx +1 -1
- package/src/components/DataDictionary/hooks/UseDataDictionaryConfig/hook.ts +2 -2
- package/src/components/DataDictionary/hooks/UseMeasureFilters/hook.ts +1 -1
- package/src/components/DataDictionary/hooks/UseMeasureFilters/types.ts +1 -1
- package/src/components/Detail/components/AccessibilityBadge/accessibilityBadge.tsx +1 -1
- package/src/components/Detail/components/DetailViewTable/detailViewTable.tsx +1 -1
- package/src/components/Detail/components/Table/common/utils.ts +1 -1
- package/src/components/Detail/components/Table/components/TableBody/tableBody.tsx +1 -1
- package/src/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.tsx +1 -1
- package/src/components/Detail/components/Table/components/TableRows/tableRows.tsx +1 -1
- package/src/components/Detail/components/Table/stories/filter/filter.stories.tsx +1 -1
- package/src/components/Detail/components/Table/stories/table.stories.tsx +3 -3
- package/src/components/Detail/components/Table/table.tsx +1 -1
- package/src/components/Detail/detail.stories.tsx +1 -2
- package/src/components/Detail/detail.tsx +1 -1
- package/src/components/Error/error.stories.tsx +1 -1
- package/src/components/Error/error.tsx +8 -9
- package/src/components/ErrorBoundary/errorBoundary.tsx +3 -3
- package/src/components/Export/common/tracking.ts +2 -2
- package/src/components/Export/common/utils.ts +4 -4
- package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.tsx +1 -1
- package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.tsx +1 -1
- package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.tsx +1 -1
- package/src/components/Export/components/DownloadCurlCommand/downloadCurlCommand.tsx +4 -6
- package/src/components/Export/components/ExportForm/common/entities.ts +1 -1
- package/src/components/Export/components/ExportForm/components/ExportButton/exportButton.tsx +1 -1
- package/src/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.tsx +3 -3
- package/src/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.tsx +2 -2
- package/src/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.tsx +1 -1
- package/src/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.tsx +1 -1
- package/src/components/Export/components/ExportForm/exportForm.tsx +3 -3
- package/src/components/Export/components/ExportMethod/exportMethod.stories.tsx +1 -1
- package/src/components/Export/components/ExportMethod/exportMethod.tsx +9 -15
- package/src/components/Export/components/ExportSummary/common/utils.ts +1 -1
- package/src/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.tsx +1 -1
- package/src/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.tsx +1 -1
- package/src/components/Export/components/ExportSummary/exportSummary.tsx +1 -1
- package/src/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.tsx +1 -1
- package/src/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.tsx +1 -1
- package/src/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.tsx +2 -2
- package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.tsx +3 -3
- package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.tsx +2 -2
- package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.tsx +2 -2
- package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.tsx +1 -1
- package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.tsx +2 -2
- package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.tsx +9 -9
- package/src/components/Export/components/ExportToTerra/exportToTerra.tsx +3 -5
- package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.tsx +1 -1
- package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.tsx +1 -1
- package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.tsx +1 -3
- package/src/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.tsx +1 -1
- package/src/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.tsx +1 -1
- package/src/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.tsx +1 -1
- package/src/components/Export/components/ManifestDownload/manifestDownload.tsx +4 -6
- package/src/components/Filter/common/entities.ts +2 -2
- package/src/components/Filter/common/utils.ts +3 -3
- package/src/components/Filter/components/ClearAllFilters/clearAllFilters.tsx +1 -1
- package/src/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.tsx +3 -3
- package/src/components/Filter/components/Filter/filter.tsx +1 -1
- package/src/components/Filter/components/Filter/stories/args.ts +1 -1
- package/src/components/Filter/components/Filter/stories/filter.stories.tsx +2 -2
- package/src/components/Filter/components/FilterCountChip/filterCountChip.tsx +1 -1
- package/src/components/Filter/components/FilterCountChip/stories/filterCountChip.stories.tsx +1 -1
- package/src/components/Filter/components/FilterLabel/filterLabel.stories.tsx +2 -2
- package/src/components/Filter/components/FilterLabel/filterLabel.tsx +1 -1
- package/src/components/Filter/components/FilterMenu/filterMenu.stories.tsx +2 -2
- package/src/components/Filter/components/FilterMenu/filterMenu.tsx +2 -2
- package/src/components/Filter/components/FilterMenuSearch/filterMenuSearch.tsx +1 -1
- package/src/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.tsx +2 -2
- package/src/components/Filter/components/FilterRange/filterRange.tsx +5 -5
- package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/hook.ts +3 -3
- package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/schema.ts +3 -3
- package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/types.ts +1 -1
- package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/utils.ts +2 -2
- package/src/components/Filter/components/FilterRange/stories/args.ts +1 -1
- package/src/components/Filter/components/FilterRange/stories/filterRange.stories.tsx +1 -1
- package/src/components/Filter/components/FilterRange/types.ts +1 -2
- package/src/components/Filter/components/FilterRange/utils.ts +1 -1
- package/src/components/Filter/components/FilterTag/filterTag.tsx +1 -1
- package/src/components/Filter/components/FilterTag/stories/args.ts +2 -2
- package/src/components/Filter/components/FilterTag/stories/filterTag.stories.tsx +2 -2
- package/src/components/Filter/components/FilterTag/utils.ts +3 -3
- package/src/components/Filter/components/FilterTags/filterTags.stories.tsx +2 -2
- package/src/components/Filter/components/FilterTags/filterTags.tsx +1 -1
- package/src/components/Filter/components/Filters/filters.tsx +4 -4
- package/src/components/Filter/components/Filters/stories/args.ts +1 -1
- package/src/components/Filter/components/Filters/stories/filters.stories.tsx +2 -2
- package/src/components/Filter/components/HighlightedLabel/highlightedLabel.tsx +1 -1
- package/src/components/Filter/components/SearchAllFilters/common/utils.ts +1 -1
- package/src/components/Filter/components/SearchAllFilters/components/OutlinedInput/outlinedInput.tsx +2 -2
- package/src/components/Filter/components/SearchAllFilters/components/OutlinedInput/utils.ts +1 -1
- package/src/components/Filter/components/SearchAllFilters/components/VariableSizeList/VariableSizeList.tsx +13 -12
- package/src/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.tsx +5 -5
- package/src/components/Filter/components/SearchAllFilters/searchAllFilters.tsx +22 -23
- package/src/components/Filter/components/SearchAllFilters/stories/args.ts +1 -1
- package/src/components/Filter/components/SearchAllFilters/stories/searchAllFilters.stories.tsx +2 -2
- package/src/components/Filter/components/SearchAllFilters/types.ts +2 -1
- package/src/components/Filter/components/VariableSizeList/VariableSizeList.tsx +7 -7
- package/src/components/Filter/components/VariableSizeListItem/variableSizeListItem.tsx +1 -1
- package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/columnFiltersAdapter.tsx +3 -3
- package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/hooks/UseUpdateFilterSort/hook.ts +3 -3
- package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/hooks/UseUpdateFilterSort/utils.ts +2 -2
- package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/types.ts +4 -2
- package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/utils.ts +17 -17
- package/src/components/Filter/components/controls/Controls/components/FilterSort/filterSort.tsx +1 -1
- package/src/components/Filter/components/controls/Controls/components/FilterSort/stories/filterSort.stories.tsx +1 -1
- package/src/components/Filter/components/controls/Controls/controls.tsx +1 -1
- package/src/components/Filter/components/controls/Controls/types.ts +2 -1
- package/src/components/Filter/components/surfaces/drawer/Drawer/drawer.tsx +1 -1
- package/src/components/Filter/components/surfaces/drawer/Drawer/types.ts +1 -3
- package/src/components/Filter/components/surfaces/drawer/components/Button/button.tsx +1 -1
- package/src/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.tsx +1 -1
- package/src/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.tsx +1 -1
- package/src/components/Filter/components/views/select/SelectListItem/selectListItem.tsx +3 -3
- package/src/components/Filter/components/views/select/components/Checkbox/checkbox.tsx +1 -1
- package/src/components/Filter/components/views/select/components/ListItemButton/listItemButton.tsx +2 -2
- package/src/components/Filter/components/views/select/components/ListItemText/components/Count/count.tsx +1 -1
- package/src/components/Filter/components/views/select/components/ListItemText/components/Term/term.tsx +1 -1
- package/src/components/Filter/components/views/select/components/ListItemText/listItemText.tsx +3 -3
- package/src/components/Head/head.tsx +1 -1
- package/src/components/Index/components/AzulFileDownload/azulFileDownload.stories.tsx +1 -1
- package/src/components/Index/components/AzulFileDownload/azulFileDownload.tsx +1 -1
- package/src/components/Index/components/EntityView/components/controls/ActionButton/actionButton.tsx +1 -1
- package/src/components/Index/components/EntityView/components/controls/ExportButton/exportButton.tsx +1 -1
- package/src/components/Index/components/EntityView/components/controls/FilterButton/filterButton.tsx +1 -1
- package/src/components/Index/components/EntityView/components/controls/ViewToggle/stories/viewToggle.stories.tsx +1 -1
- package/src/components/Index/components/EntityView/components/controls/ViewToggle/viewToggle.tsx +1 -1
- package/src/components/Index/components/EntityView/components/layout/Summary/summary.tsx +1 -1
- package/src/components/Index/components/EntityView/components/layout/Title/title.tsx +1 -1
- package/src/components/Index/components/EntityView/components/navigation/Tabs/common/utils.ts +1 -1
- package/src/components/Index/components/EntityView/components/navigation/Tabs/tabs.tsx +1 -1
- package/src/components/Index/components/EntityView/components/slots/EntityListSlot/entityListSlot.tsx +1 -1
- package/src/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.tsx +1 -1
- package/src/components/Index/components/EntityView/components/views/ChartView/chartView.tsx +9 -3
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/barX/plot.ts +1 -1
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/barX/utils.ts +7 -7
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.tsx +1 -1
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UseBarCount/hook.ts +2 -2
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UseBarCount/utils.ts +3 -3
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UsePlotOptions/hook.ts +5 -10
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/args.ts +12 -12
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/chart.stories.tsx +2 -2
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/types.ts +1 -2
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/utils.ts +1 -1
- package/src/components/Index/components/EntityView/components/views/ChartView/hooks/UseChartView/types.ts +1 -1
- package/src/components/Index/components/EntityView/components/views/ChartView/hooks/UseChartView/useChartView.ts +4 -4
- package/src/components/Index/components/EntityView/components/views/ChartView/stories/args.ts +3 -3
- package/src/components/Index/components/EntityView/components/views/ChartView/stories/chartView.stories.tsx +2 -2
- package/src/components/Index/components/EntityView/components/views/ChartView/utils.ts +2 -2
- package/src/components/Index/components/EntityView/components/views/TableView/tableView.tsx +1 -1
- package/src/components/Index/index.tsx +1 -1
- package/src/components/Index/table/coreOptions/columns/cellFactory.tsx +1 -1
- package/src/components/Index/table/hook.ts +7 -7
- package/src/components/Layout/components/BackPage/backPageView.stories.tsx +1 -2
- package/src/components/Layout/components/BackPage/backPageView.tsx +3 -3
- package/src/components/Layout/components/BackPage/components/BackPageHero/backPageHero.tsx +1 -1
- package/src/components/Layout/components/BackPage/components/BackPageHero/components/Actions/actions.tsx +1 -1
- package/src/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.tsx +1 -1
- package/src/components/Layout/components/BackPage/components/BackPageHero/stories/backPageHero.stories.tsx +1 -1
- package/src/components/Layout/components/ContentLayout/components/Main/main.tsx +1 -1
- package/src/components/Layout/components/ContentLayout/contentLayout.styles.ts +1 -1
- package/src/components/Layout/components/ContentLayout/contentLayout.tsx +1 -1
- package/src/components/Layout/components/Floating/floating.tsx +1 -1
- package/src/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/title.tsx +1 -1
- package/src/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/utils.ts +2 -2
- package/src/components/Layout/components/Footer/components/VersionInfo/versionInfo.tsx +1 -1
- package/src/components/Layout/components/Footer/footer.stories.tsx +1 -2
- package/src/components/Layout/components/Footer/footer.tsx +1 -1
- package/src/components/Layout/components/Header/common/entities.ts +1 -1
- package/src/components/Layout/components/Header/common/utils.ts +10 -10
- package/src/components/Layout/components/Header/components/Announcements/announcements.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Actions/actions.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.tsx +2 -2
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.tsx +3 -3
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/common/utils.ts +2 -2
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.tsx +5 -4
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Logo/logo.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Navigation/common/utils.ts +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationButtonLabel/navigationButtonLabel.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.tsx +2 -2
- package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.tsx +3 -3
- package/src/components/Layout/components/Header/components/Content/components/Navigation/navigation.tsx +7 -7
- package/src/components/Layout/components/Header/components/Content/components/Slogan/slogan.tsx +2 -2
- package/src/components/Layout/components/Header/header.stories.tsx +1 -2
- package/src/components/Layout/components/Header/header.tsx +1 -1
- package/src/components/Layout/components/Header/hooks/useHeaderNavigation.ts +1 -1
- package/src/components/Layout/components/Header/hooks/useHeaderVisibility.ts +1 -1
- package/src/components/Layout/components/Main/main.tsx +1 -1
- package/src/components/Layout/components/Nav/components/NavBarHero/navBarHero.tsx +1 -1
- package/src/components/Layout/components/Nav/nav.stories.tsx +1 -1
- package/src/components/Layout/components/Nav/nav.tsx +9 -6
- package/src/components/Layout/components/Outline/components/ContentsTab/contentsTab.tsx +1 -1
- package/src/components/Layout/components/Outline/components/ContentsTab/types.ts +1 -2
- package/src/components/Layout/components/Outline/hooks/UseTabs/hook.ts +1 -1
- package/src/components/Layout/components/Outline/hooks/UseTabs/utils.ts +1 -1
- package/src/components/Layout/components/Outline/outline.tsx +2 -2
- package/src/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.tsx +1 -1
- package/src/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.tsx +1 -1
- package/src/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.stories.tsx +1 -1
- package/src/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.tsx +1 -1
- package/src/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.tsx +1 -1
- package/src/components/Layout/components/Sidebar/sidebar.stories.tsx +2 -2
- package/src/components/Layout/components/Sidebar/sidebar.tsx +1 -1
- package/src/components/Links/common/utils.ts +2 -2
- package/src/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.tsx +11 -9
- package/src/components/Links/components/Link/link.tsx +2 -3
- package/src/components/Links/links.stories.tsx +1 -1
- package/src/components/Links/links.tsx +1 -1
- package/src/components/Loading/loading.stories.tsx +2 -2
- package/src/components/Loading/loading.tsx +1 -1
- package/src/components/Login/components/Button/button.tsx +1 -1
- package/src/components/Login/components/Buttons/buttons.tsx +1 -1
- package/src/components/Login/components/Section/components/Consent/consent.tsx +1 -1
- package/src/components/Login/components/Section/components/Consent/types.ts +2 -1
- package/src/components/Login/components/Section/components/Warning/warning.tsx +1 -1
- package/src/components/Login/hooks/useUserConsent/useUserConsent.ts +1 -1
- package/src/components/Login/hooks/useUserLogin/types.ts +4 -2
- package/src/components/Login/hooks/useUserLogin/useUserLogin.ts +1 -1
- package/src/components/Login/login.tsx +2 -2
- package/src/components/MarkdownRenderer/components/Anchor/anchor.tsx +2 -2
- package/src/components/MarkdownRenderer/components/Table/table.tsx +2 -2
- package/src/components/MarkdownRenderer/constants.ts +2 -2
- package/src/components/MarkdownRenderer/markdownRenderer.tsx +20 -24
- package/src/components/MarkdownRenderer/stories/markdownRenderer.stories.tsx +2 -2
- package/src/components/MarkdownRenderer/types.ts +2 -5
- package/src/components/NoResults/noResults.tsx +1 -1
- package/src/components/Plot/components/BarX/barX.tsx +1 -1
- package/src/components/Project/components/Citation/citation.stories.tsx +1 -1
- package/src/components/Project/components/Citation/citation.tsx +1 -1
- package/src/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.stories.tsx +1 -1
- package/src/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.tsx +1 -1
- package/src/components/Project/components/Contacts/contacts.stories.tsx +1 -1
- package/src/components/Project/components/Contacts/contacts.tsx +3 -8
- package/src/components/Project/components/Contributors/contributors.stories.tsx +1 -1
- package/src/components/Project/components/Contributors/contributors.tsx +1 -1
- package/src/components/Project/components/DataCurators/dataCurators.stories.tsx +1 -1
- package/src/components/Project/components/DataCurators/dataCurators.tsx +1 -1
- package/src/components/Project/components/DataReleasePolicy/dataReleasePolicy.stories.tsx +1 -1
- package/src/components/Project/components/DataReleasePolicy/dataReleasePolicy.tsx +6 -6
- package/src/components/Project/components/Description/description.stories.tsx +1 -1
- package/src/components/Project/components/Description/description.tsx +1 -1
- package/src/components/Project/components/Details/details.stories.tsx +1 -1
- package/src/components/Project/components/Details/details.tsx +1 -1
- package/src/components/Project/components/Publications/publications.stories.tsx +1 -1
- package/src/components/Project/components/Publications/publications.tsx +3 -3
- package/src/components/Project/components/SupplementaryLinks/supplementaryLinks.stories.tsx +1 -1
- package/src/components/Project/components/SupplementaryLinks/supplementaryLinks.tsx +1 -1
- package/src/components/Redirect/redirect.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepContent/stepContent.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepIcon/stepIcon.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepIcon/stories/stepIcon.stories.tsx +2 -2
- package/src/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/icon.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/stories/icon.stories.tsx +2 -2
- package/src/components/Stepper/components/Step/components/StepLabel/components/Label/label.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepLabel/components/Label/stories/label.stories.tsx +5 -2
- package/src/components/Stepper/components/Step/components/StepLabel/components/Optional/optional.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepLabel/stepLabel.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepLabel/stories/stepLabel.stories.tsx +7 -3
- package/src/components/Stepper/components/Step/step.tsx +1 -1
- package/src/components/Stepper/components/Step/stories/step.stories.tsx +8 -4
- package/src/components/Support/components/SupportRequest/components/Dialog/dialog.tsx +2 -1
- package/src/components/Support/components/SupportRequest/components/Dropzone/dropzone.tsx +1 -1
- package/src/components/Support/components/SupportRequest/components/SupportRequestForm/common/utils.ts +5 -5
- package/src/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.tsx +11 -9
- package/src/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.tsx +1 -1
- package/src/components/Support/components/SupportRequest/supportRequest.tsx +1 -1
- package/src/components/Support/components/ViewSupport/types.ts +1 -2
- package/src/components/Support/components/ViewSupport/viewSupport.tsx +1 -1
- package/src/components/Table/columnDef/accessorFn/typeGuards.ts +1 -1
- package/src/components/Table/columnDef/columnFilters/filterFn.ts +1 -1
- package/src/components/Table/columnDef/globalFilter/filterFn.ts +1 -1
- package/src/components/Table/columnDef/globalFilter/utils.ts +3 -3
- package/src/components/Table/common/typeGuards.ts +1 -1
- package/src/components/Table/common/utils.ts +10 -10
- package/src/components/Table/components/PaginationSummary/paginationSummary.tsx +1 -1
- package/src/components/Table/components/TableBody/tableBody.tsx +1 -1
- package/src/components/Table/components/TableCell/common/utils.ts +2 -2
- package/src/components/Table/components/TableCell/components/BasicCell/basicCell.tsx +1 -1
- package/src/components/Table/components/TableCell/components/ChipCell/chipCell.tsx +2 -2
- package/src/components/Table/components/TableCell/components/CodeCell/codeCell.tsx +2 -2
- package/src/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.tsx +2 -2
- package/src/components/Table/components/TableCell/components/LinkCell/linkCell.tsx +2 -2
- package/src/components/Table/components/TableCell/components/LinkCell/stories/linkCell.stories.tsx +1 -1
- package/src/components/Table/components/TableCell/components/LinkCell/utils.ts +2 -2
- package/src/components/Table/components/TableCell/components/MarkdownCell/markdownCell.styles.ts +3 -1
- package/src/components/Table/components/TableCell/components/MarkdownCell/markdownCell.tsx +2 -2
- package/src/components/Table/components/TableCell/components/MarkdownCell/stories/markdownCell.stories.tsx +2 -2
- package/src/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.tsx +2 -2
- package/src/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.tsx +1 -1
- package/src/components/Table/components/TableCell/components/NTagCell/nTagCell.tsx +1 -1
- package/src/components/Table/components/TableCell/components/RankedCell/rankedCell.tsx +2 -2
- package/src/components/Table/components/TableCell/components/RankedCell/utils.ts +1 -1
- package/src/components/Table/components/TableCell/components/RowPositionCell/rowPositionCell.tsx +1 -1
- package/src/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.tsx +1 -1
- package/src/components/Table/components/TableFeatures/ColumnFilter/columnFilter.tsx +2 -2
- package/src/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.tsx +1 -1
- package/src/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/stories/columFilterTag.stories.tsx +4 -3
- package/src/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/types.ts +1 -2
- package/src/components/Table/components/TableFeatures/ColumnFilter/types.ts +1 -2
- package/src/components/Table/components/TableFeatures/ColumnFilter/utils.ts +1 -1
- package/src/components/Table/components/TableFeatures/ColumnGrouping/utils.ts +2 -2
- package/src/components/Table/components/TableFeatures/ColumnVisibility/utils.ts +1 -1
- package/src/components/Table/components/TableFeatures/GlobalFilter/globalFilter.tsx +1 -1
- package/src/components/Table/components/TableFeatures/GlobalFilter/types.ts +1 -2
- package/src/components/Table/components/TableFeatures/RowSorting/utils.ts +2 -2
- package/src/components/Table/components/TableFeatures/TableDownload/tableDownload.tsx +1 -1
- package/src/components/Table/components/TableFeatures/TableDownload/types.ts +3 -2
- package/src/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.tsx +1 -1
- package/src/components/Table/components/TableHead/tableHead.tsx +1 -1
- package/src/components/Table/components/TableHead/utils.ts +1 -1
- package/src/components/Table/components/TablePagination/stories/args.ts +1 -1
- package/src/components/Table/components/TablePagination/stories/tablePagination.stories.tsx +1 -1
- package/src/components/Table/components/TablePagination/tablePagination.tsx +1 -1
- package/src/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.tsx +1 -1
- package/src/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.tsx +4 -4
- package/src/components/Table/components/TableRows/tableRows.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/ColumnGrouping/columnGrouping.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/menuItems.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/utils.ts +3 -3
- package/src/components/Table/components/TableToolbar/components/ColumnGrouping/utils.ts +2 -2
- package/src/components/Table/components/TableToolbar/components/ColumnVisibility/columnVisibility.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/menuItems.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/utils.ts +4 -4
- package/src/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.styles.ts +3 -1
- package/src/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.tsx +5 -3
- package/src/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.tsx +2 -2
- package/src/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/RowPreview/rowPreview.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/RowSelection/rowSelection.tsx +1 -1
- package/src/components/Table/components/TableToolbar/tableToolbar.tsx +1 -1
- package/src/components/Table/components/TableToolbar2/tableToolbar2.tsx +1 -1
- package/src/components/Table/coreOptions/state/pagination/utils.ts +1 -1
- package/src/components/Table/featureOptions/facetedColumn/getFacetedMinMaxValues.ts +3 -3
- package/src/components/Table/featureOptions/facetedColumn/utils.ts +2 -2
- package/src/components/Table/features/RowPosition/constants.ts +1 -1
- package/src/components/Table/features/RowPosition/utils.ts +3 -3
- package/src/components/Table/features/RowPreview/constants.ts +1 -1
- package/src/components/Table/features/RowPreview/utils.ts +4 -4
- package/src/components/Table/features/RowSelectionValidation/utils.ts +1 -1
- package/src/components/Table/features/TableDownload/constants.ts +1 -1
- package/src/components/Table/features/TableDownload/onDownload/utils.ts +2 -2
- package/src/components/Table/features/TableDownload/utils.ts +1 -1
- package/src/components/Table/features/entities.ts +4 -6
- package/src/components/Table/hooks/UseVirtualization/types.ts +1 -1
- package/src/components/Table/hooks/UseVirtualization/utils.ts +1 -1
- package/src/components/Table/options/updater.ts +1 -1
- package/src/components/Table/table.tsx +1 -1
- package/src/components/TableCreator/common/utils.ts +1 -1
- package/src/components/TableCreator/options/columnTrackSizing/typeGuards.ts +1 -1
- package/src/components/TableCreator/options/columnTrackSizing/utils.ts +2 -2
- package/src/components/TableCreator/options/grouping/hook.ts +1 -1
- package/src/components/TableCreator/options/initialState/columnVisibility.ts +1 -1
- package/src/components/TableCreator/options/initialState/hook.ts +2 -2
- package/src/components/TableCreator/options/rowSelection/hook.ts +1 -1
- package/src/components/TableCreator/options/visibility/hook.ts +1 -1
- package/src/components/TableCreator/tableCreator.tsx +1 -1
- package/src/components/TempError/components/errorBox.tsx +1 -1
- package/src/components/TempError/tempError.tsx +1 -1
- package/src/components/common/Accordion/accordion.stories.tsx +1 -2
- package/src/components/common/Accordion/accordion.tsx +1 -1
- package/src/components/common/Alert/alert.tsx +2 -2
- package/src/components/common/AnchorLink/anchorLink.tsx +1 -1
- package/src/components/common/Banner/banner.tsx +2 -2
- package/src/components/common/Banner/components/CookieBanner/cookieBanner.tsx +2 -3
- package/src/components/common/Banner/components/SessionTimeout/sessionTimeout.tsx +1 -1
- package/src/components/common/Banner/components/SystemIndexing/systemIndexing.tsx +1 -1
- package/src/components/common/Banner/components/SystemStatus/systemStatus.tsx +1 -1
- package/src/components/common/Breadcrumbs/breadcrumbs.stories.tsx +1 -1
- package/src/components/common/Breadcrumbs/breadcrumbs.tsx +2 -2
- package/src/components/common/Button/button.tsx +3 -3
- package/src/components/common/Button/components/ButtonOutline/buttonOutline.tsx +3 -3
- package/src/components/common/Button/components/ButtonPrimary/buttonPrimary.tsx +3 -3
- package/src/components/common/Button/components/ButtonSecondary/buttonSecondary.tsx +3 -3
- package/src/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.tsx +2 -2
- package/src/components/common/Button/components/ButtonText/buttonText.tsx +1 -1
- package/src/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.tsx +1 -1
- package/src/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.tsx +1 -1
- package/src/components/common/Button/components/CallToActionButton/callToActionButton.stories.tsx +1 -1
- package/src/components/common/Button/components/CallToActionButton/callToActionButton.tsx +13 -14
- package/src/components/common/Button/components/DropdownButton/dropdownButton.tsx +1 -1
- package/src/components/common/Button/components/FileDownloadButton/fileDownloadButton.tsx +1 -1
- package/src/components/common/Button/components/HelpIconButton/helpIconButton.stories.tsx +1 -1
- package/src/components/common/Button/components/HelpIconButton/helpIconButton.tsx +9 -10
- package/src/components/common/Button/components/NavigationButton/navigationButton.tsx +5 -3
- package/src/components/common/ButtonGroup/buttonGroup.tsx +1 -1
- package/src/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.tsx +1 -1
- package/src/components/common/Card/card.stories.tsx +1 -1
- package/src/components/common/Card/card.tsx +1 -1
- package/src/components/common/Card/components/CardAction/cardAction.tsx +1 -1
- package/src/components/common/Card/components/CardActionArea/cardActionArea.tsx +2 -2
- package/src/components/common/Card/components/CardActions/cardActions.tsx +1 -1
- package/src/components/common/Card/components/CardMedia/cardMedia.tsx +1 -1
- package/src/components/common/Card/components/CardSecondaryText/cardSecondaryText.tsx +1 -1
- package/src/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.tsx +1 -1
- package/src/components/common/Card/components/CardText/cardText.tsx +1 -1
- package/src/components/common/Card/components/CardTitle/cardTitle.tsx +1 -1
- package/src/components/common/Card/components/RoundedCard/roundedCard.tsx +1 -1
- package/src/components/common/Code/code.stories.tsx +1 -1
- package/src/components/common/Code/code.tsx +1 -1
- package/src/components/common/CopyToClipboard/copyToClipboard.stories.tsx +1 -1
- package/src/components/common/CopyToClipboard/copyToClipboard.tsx +2 -2
- package/src/components/common/CustomIcon/components/AddIcon/addIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/AlertIcon/alertIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/CheckedIcon/checkedIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/CloseIcon/closeIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/DownloadIcon/downloadIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/ErrorIcon/errorIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/FacebookIcon/facebookIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/GoogleIcon/googleIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/HelpIcon/helpIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/InProgressIcon/inProgressIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/InfoIcon/infoIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/LoadingIcon/loadingIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/RemoveIcon/removeIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/SearchIcon/searchIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/Segment/segment.tsx +1 -1
- package/src/components/common/CustomIcon/components/SlackIcon/slackIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/SouthIcon/southIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/SuccessIcon/successIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/UncheckedDisabledIcon/uncheckedDisabledIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/WarningIcon/warningIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/XIcon/xIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.tsx +1 -1
- package/src/components/common/Dialog/components/DialogTitle/dialogTitle.tsx +1 -1
- package/src/components/common/Dialog/dialog.tsx +1 -1
- package/src/components/common/Dot/dot.tsx +1 -1
- package/src/components/common/Drawer/components/DrawerTitle/drawerTitle.tsx +1 -1
- package/src/components/common/Drawer/drawer.tsx +1 -1
- package/src/components/common/Drawer/provider/provider.tsx +1 -1
- package/src/components/common/DropdownMenu/components/MenuItem/menuItem.tsx +1 -1
- package/src/components/common/DropdownMenu/dropdownMenu.tsx +6 -4
- package/src/components/common/EllipsisContent/ellipsisContent.tsx +3 -3
- package/src/components/common/Form/components/Input/input.tsx +1 -1
- package/src/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.tsx +1 -1
- package/src/components/common/Form/components/Select/select.tsx +1 -1
- package/src/components/common/Form/components/UploadFile/uploadFile.tsx +3 -3
- package/src/components/common/Grid/components/GridItem/gridItem.tsx +1 -1
- package/src/components/common/Grid/grid.tsx +1 -1
- package/src/components/common/IconBadge/iconBadge.tsx +1 -1
- package/src/components/common/IconButton/iconButton.tsx +1 -1
- package/src/components/common/Input/input.tsx +2 -2
- package/src/components/common/KeyValuePairs/components/KeyElType/keyElType.tsx +1 -1
- package/src/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.tsx +1 -1
- package/src/components/common/KeyValuePairs/components/ValueElType/valueElType.tsx +1 -1
- package/src/components/common/KeyValuePairs/keyValuePairs.tsx +1 -1
- package/src/components/common/Link/typeGuards.ts +6 -6
- package/src/components/common/LoginDialog/loginDialog.tsx +1 -1
- package/src/components/common/Markdown/markdown.tsx +1 -1
- package/src/components/common/Menu/hooks/useMenu.ts +1 -1
- package/src/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.tsx +1 -1
- package/src/components/common/OutlinedInput/components/InputAdornment/components/SearchInputAdornment/searchInputAdornment.tsx +1 -1
- package/src/components/common/Paper/components/FlatPaper/flatPaper.tsx +2 -2
- package/src/components/common/Paper/components/FluidPaper/fluidPaper.tsx +2 -2
- package/src/components/common/Paper/components/RoundedPaper/roundedPaper.tsx +2 -2
- package/src/components/common/Paper/paper.tsx +2 -2
- package/src/components/common/Progress/components/CircularProgress/circularProgress.tsx +1 -1
- package/src/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.tsx +1 -1
- package/src/components/common/RadioGroup/radioGroup.tsx +1 -1
- package/src/components/common/Section/components/CollapsableSection/collapsableSection.tsx +1 -1
- package/src/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.tsx +1 -1
- package/src/components/common/Section/components/SectionTitle/sectionTitle.stories.tsx +1 -1
- package/src/components/common/Section/components/SectionTitle/sectionTitle.tsx +1 -1
- package/src/components/common/Sections/sections.tsx +1 -1
- package/src/components/common/Socials/socials.stories.tsx +1 -1
- package/src/components/common/Socials/socials.tsx +3 -8
- package/src/components/common/Stack/components/Divider/divider.tsx +1 -1
- package/src/components/common/Stack/stack.tsx +1 -1
- package/src/components/common/StaticImage/staticImage.stories.tsx +1 -1
- package/src/components/common/StaticImage/staticImage.tsx +1 -1
- package/src/components/common/StatusBadge/statusBadge.stories.tsx +1 -1
- package/src/components/common/StatusBadge/statusBadge.tsx +3 -3
- package/src/components/common/StatusIcon/statusIcon.stories.tsx +1 -1
- package/src/components/common/StatusIcon/statusIcon.tsx +1 -1
- package/src/components/common/Tabs/tabs.tsx +4 -4
- package/src/components/common/Tag/tag.stories.tsx +1 -2
- package/src/components/common/Tag/tag.tsx +1 -1
- package/src/components/common/Title/title.tsx +1 -1
- package/src/components/common/ToggleButtonGroup/hooks/UseToggleButtonGroup/hook.ts +2 -2
- package/src/components/common/ToggleButtonGroup/toggleButtonGroup.stories.tsx +1 -1
- package/src/components/common/ToggleButtonGroup/toggleButtonGroup.tsx +5 -5
- package/src/components/common/Typography/TypographyWordBreak/TypographyWordBreak.tsx +1 -1
- package/src/config/entities.ts +7 -7
- package/src/config/utils.ts +3 -3
- package/src/entity/api/service.ts +10 -10
- package/src/entity/apicf/service.ts +2 -2
- package/src/entity/common/client.ts +1 -1
- package/src/entity/common/service.ts +4 -4
- package/src/entity/service/model.ts +6 -6
- package/src/entity/tsv/service.ts +4 -4
- package/src/hooks/authentication/auth/useAuthReducer.ts +2 -2
- package/src/hooks/authentication/authentication/useAuthenticationReducer.ts +2 -2
- package/src/hooks/authentication/credentials/useCredentialsReducer.ts +1 -1
- package/src/hooks/authentication/providers/useProviders.ts +1 -1
- package/src/hooks/authentication/session/useSessionActive.ts +2 -2
- package/src/hooks/authentication/session/useSessionIdleTimer.ts +1 -2
- package/src/hooks/authentication/terra/useAuthenticationForm.ts +4 -4
- package/src/hooks/authentication/terra/useAuthenticationNIHExpiry.ts +1 -1
- package/src/hooks/authentication/token/useTokenReducer.ts +1 -1
- package/src/hooks/stateSyncManager/hook.ts +1 -1
- package/src/hooks/stateSyncManager/hooks/UseBeforePopState/hook.ts +1 -1
- package/src/hooks/stateSyncManager/hooks/UseStateSync/utils.ts +4 -4
- package/src/hooks/useAsync.ts +10 -10
- package/src/hooks/useBreakpointHelper.ts +2 -2
- package/src/hooks/useCategoryFilter.ts +22 -22
- package/src/hooks/useCurrentBreakpoint.ts +1 -1
- package/src/hooks/useEntityHeadTitle.ts +2 -2
- package/src/hooks/useEntityList.ts +5 -5
- package/src/hooks/useEntityService.ts +4 -4
- package/src/hooks/useExportToTerraResponseURL.ts +1 -1
- package/src/hooks/useFetchEntity.tsx +4 -4
- package/src/hooks/useFetchRequestURL.ts +1 -1
- package/src/hooks/useFileLocation.ts +1 -1
- package/src/hooks/useFileManifest/common/entities.ts +0 -11
- package/src/hooks/useFileManifest/common/utils.ts +13 -13
- package/src/hooks/useFileManifest/useFetchFilesFacets.ts +2 -2
- package/src/hooks/useFileManifest/useFetchSummary.ts +1 -1
- package/src/hooks/useFileManifest/useFileManifest.ts +1 -1
- package/src/hooks/useFileManifest/useFileManifestDownload.ts +5 -5
- package/src/hooks/useFileManifest/useFileManifestFileCount.ts +4 -4
- package/src/hooks/useFileManifest/useFileManifestFormat.ts +1 -1
- package/src/hooks/useFileManifest/useFileManifestSpreadsheet.ts +3 -3
- package/src/hooks/useHtmlStyle/hook.ts +1 -1
- package/src/hooks/useRequestFileLocation.ts +6 -6
- package/src/hooks/useRequestManifest/useRequestManifest.ts +2 -2
- package/src/hooks/useRequestManifest/utils.ts +6 -6
- package/src/hooks/useResetableState.ts +1 -1
- package/src/hooks/useResizeObserver.ts +7 -7
- package/src/hooks/useRouteHistory.ts +4 -4
- package/src/hooks/useURLFilterParams.ts +4 -4
- package/src/hooks/useWindowResize.ts +7 -2
- package/src/providers/authentication/auth/actions.ts +1 -1
- package/src/providers/authentication/auth/dispatch.ts +2 -2
- package/src/providers/authentication/authentication/actions.ts +1 -1
- package/src/providers/authentication/authentication/dispatch.ts +1 -1
- package/src/providers/authentication/authentication/reducer.ts +1 -1
- package/src/providers/authentication/authentication/utils.ts +1 -1
- package/src/providers/authentication/credentials/actions.ts +1 -1
- package/src/providers/authentication/credentials/dispatch.ts +1 -1
- package/src/providers/authentication/credentials/reducer.ts +1 -1
- package/src/providers/authentication/terra/hooks/useFetchProfiles.ts +3 -3
- package/src/providers/authentication/terra/hooks/useFetchTerraNIHProfile.ts +3 -3
- package/src/providers/authentication/terra/hooks/useFetchTerraProfile.ts +3 -3
- package/src/providers/authentication/terra/hooks/useFetchTerraTermsOfService.ts +3 -3
- package/src/providers/authentication/terra/hooks/utils.ts +2 -2
- package/src/providers/authentication/terra/provider.tsx +1 -1
- package/src/providers/authentication/terra/utils.ts +2 -2
- package/src/providers/authentication/token/reducer.ts +1 -1
- package/src/providers/config.tsx +1 -1
- package/src/providers/dataDictionaryState/actions/clearMeta/action.ts +1 -1
- package/src/providers/dataDictionaryState/actions/stateToUrl/action.ts +1 -1
- package/src/providers/dataDictionaryState/actions/updateColumnFilters/action.ts +1 -1
- package/src/providers/dataDictionaryState/actions/updateColumnFilters/dispatch.ts +1 -1
- package/src/providers/dataDictionaryState/actions/updateColumnFilters/utils.ts +3 -3
- package/src/providers/dataDictionaryState/actions/updateGlobalFilter/action.ts +1 -1
- package/src/providers/dataDictionaryState/actions/updateGlobalFilter/dispatch.ts +1 -1
- package/src/providers/dataDictionaryState/actions/updateGlobalFilter/utils.ts +3 -3
- package/src/providers/dataDictionaryState/actions/urlToState/action.ts +2 -2
- package/src/providers/dataDictionaryState/dictionaries/state.ts +2 -2
- package/src/providers/dataDictionaryState/dictionaries/utils.ts +1 -1
- package/src/providers/dataDictionaryState/hooks/UseDataDictionaryReducer/hook.ts +1 -1
- package/src/providers/dataDictionaryState/initializer/utils.ts +2 -2
- package/src/providers/dataDictionaryState/provider.tsx +1 -1
- package/src/providers/dataDictionaryState/reducer.ts +1 -1
- package/src/providers/exploreState/actions/clearMeta/action.ts +1 -1
- package/src/providers/exploreState/actions/stateToUrl/action.ts +1 -1
- package/src/providers/exploreState/actions/updateFilterSort/action.ts +1 -1
- package/src/providers/exploreState/actions/updateFilterSort/dispatch.ts +1 -1
- package/src/providers/exploreState/actions/updateFilterSort/utils.ts +1 -1
- package/src/providers/exploreState/actions/updateGrouping/action.ts +2 -2
- package/src/providers/exploreState/actions/updateGrouping/dispatch.ts +1 -1
- package/src/providers/exploreState/actions/updateGrouping/utils.ts +1 -1
- package/src/providers/exploreState/actions/updateVisibility/action.ts +3 -3
- package/src/providers/exploreState/actions/updateVisibility/dispatch.ts +1 -1
- package/src/providers/exploreState/actions/updateVisibility/utils.ts +1 -1
- package/src/providers/exploreState/actions/urlToState/action.ts +4 -4
- package/src/providers/exploreState/actions/urlToState/utils.ts +1 -1
- package/src/providers/exploreState/entities/query/buildQuery.ts +3 -3
- package/src/providers/exploreState/entities/state.ts +1 -1
- package/src/providers/exploreState/initializer/utils.ts +13 -13
- package/src/providers/exploreState/utils.ts +19 -19
- package/src/providers/exploreState.tsx +26 -25
- package/src/providers/fileManifestState.tsx +13 -12
- package/src/providers/googleSignInAuthentication/hooks/useGoogleSignInService.ts +2 -2
- package/src/providers/googleSignInAuthentication/provider.tsx +1 -1
- package/src/providers/googleSignInAuthentication/service/service.ts +3 -3
- package/src/providers/layoutDimensions/context.tsx +2 -2
- package/src/providers/layoutDimensions/provider.tsx +1 -1
- package/src/providers/layoutDimensions/types.ts +2 -2
- package/src/providers/loginGuard/provider.tsx +2 -2
- package/src/providers/nextAuthAuthentication/hooks/useNextAuthService.ts +2 -2
- package/src/providers/nextAuthAuthentication/provider.tsx +1 -1
- package/src/providers/services/provider.tsx +1 -1
- package/src/providers/services/wasPop/provider.tsx +2 -2
- package/src/providers/systemStatus.tsx +4 -4
- package/src/storybook/controls/constants.ts +1 -1
- package/src/storybook/controls/utils.ts +3 -3
- package/src/storybook/decorators.tsx +1 -1
- package/src/storybook/parameters.ts +1 -1
- package/src/styles/common/mixins/typography.ts +1 -1
- package/src/tests/utils.ts +3 -3
- package/src/theme/common/breakpoints.ts +1 -1
- package/src/theme/common/fontStyles.ts +1 -1
- package/src/theme/theme.ts +2 -2
- package/src/utils/database.ts +2 -2
- package/src/utils/fetchQueryParams.ts +1 -1
- package/src/utils/mdx/files/mapMDXSlugByFilePaths.ts +2 -2
- package/src/utils/mdx/frontmatter/validateMatter.ts +1 -1
- package/src/utils/mdx/plugins/rehypeSlug.ts +33 -5
- package/src/utils/mdx/plugins/remarkHeadings.ts +9 -10
- package/src/utils/mdx/plugins/types.ts +4 -0
- package/src/utils/mdx/plugins/utils.ts +12 -0
- package/src/utils/mdx/staticGeneration/staticPaths.ts +2 -2
- package/src/utils/mdx/staticGeneration/staticProps.ts +3 -4
- package/src/utils/mdx/staticGeneration/types.ts +1 -1
- package/src/utils/mdx/staticGeneration/utils.ts +2 -2
- package/src/utils/parseJsonQueryParam.ts +1 -1
- package/src/utils/replaceParameters.ts +1 -1
- package/src/utils/stateToUrlQuery.ts +1 -1
- package/src/utils/url.ts +1 -1
- package/src/viewModelBuilders/common/utils.ts +1 -1
- package/src/views/ContentView/contentView.stories.tsx +1 -1
- package/src/views/ContentView/contentView.tsx +1 -1
- package/src/views/DataDictionaryView/dataDictionaryView.tsx +1 -1
- package/src/views/DataDictionaryView/utils.ts +1 -1
- package/src/views/EntityDetailView/entityDetailView.tsx +3 -5
- package/src/views/EntityExportMethodView/entityExportMethodView.tsx +3 -3
- package/src/views/EntityExportView/entityExportView.tsx +1 -1
- package/src/views/ExploreView/exploreView.tsx +4 -4
- package/src/views/ExploreView/hooks/UseUpdateFilterSort/hook.ts +1 -1
- package/src/views/ExploreView/utils.ts +1 -1
- package/src/views/ExportMethodView/exportMethodView.tsx +2 -2
- package/src/views/ExportView/exportView.tsx +1 -1
- package/src/views/LoginView/loginView.tsx +1 -1
- package/tests/azulFileDownload.test.tsx +4 -5
- package/tests/buildCategoryViews.test.ts +15 -15
- package/tests/buildRequestFilters.test.ts +3 -3
- package/tests/buildRequestManifest.test.ts +8 -8
- package/tests/chart.test.tsx +2 -2
- package/tests/chartSortUtils.test.ts +119 -0
- package/tests/chartView.test.tsx +2 -2
- package/tests/dataDictionaryColumnFilters.test.tsx +3 -3
- package/tests/filter.test.tsx +1 -1
- package/tests/filterMenu.test.ts +1 -1
- package/tests/filterRange.test.tsx +21 -21
- package/tests/filterSortUtils.test.ts +1 -1
- package/tests/filters.test.tsx +1 -1
- package/tests/getFacetedMinMaxValues.test.ts +1 -1
- package/tests/getProfileStatus.test.ts +34 -34
- package/tests/linkCell.test.tsx +6 -6
- package/tests/markdownCell.test.tsx +2 -2
- package/tests/provider.test.tsx +15 -17
- package/tests/rowSelectionValidation.test.ts +11 -11
- package/tests/tableFilter.test.tsx +1 -1
- package/tests/terraProfileProvider.test.tsx +17 -21
- package/tests/theme.test.ts +13 -13
- package/tests/useFileLocation.test.ts +3 -3
- package/tests/useRequestManifest.test.ts +10 -12
- package/tests/useSessionActive.test.ts +9 -10
- package/tests/useWindowResize.test.ts +130 -0
- package/tests/viewModelBuilders_utils.test.ts +1 -1
- package/tests/viewToggle.test.tsx +5 -7
- package/tsconfig.json +2 -2
- package/types/data-explorer-ui.d.ts +4 -3
- package/lib/components/DataDictionary/components/Table/columns/columnDef.d.ts +0 -6
- package/lib/components/DataDictionary/components/Table/columns/columnDef.js +0 -33
- package/lib/components/DataDictionary/components/Table/columns/columnIdentifier.d.ts +0 -5
- package/lib/components/DataDictionary/components/Table/columns/columnIdentifier.js +0 -5
- package/lib/components/DataDictionary/components/Table/columns/types.d.ts +0 -2
- package/lib/components/DataDictionary/components/Table/components/BasicCell/types.d.ts +0 -4
- package/lib/components/DataDictionary/hooks/UseDataDictionary/hook.d.ts +0 -4
- package/lib/components/DataDictionary/hooks/UseDataDictionary/hook.js +0 -23
- package/lib/components/DataDictionary/hooks/UseDataDictionary/types.d.ts +0 -8
- package/lib/components/DataDictionary/hooks/UseDataDictionary/types.js +0 -1
- package/lib/components/DataDictionary/hooks/UseLayoutSpacing/hook.d.ts +0 -2
- package/lib/components/DataDictionary/hooks/UseLayoutSpacing/hook.js +0 -10
- package/lib/components/DataDictionary/hooks/UseLayoutSpacing/types.d.ts +0 -7
- package/lib/components/DataDictionary/hooks/UseLayoutSpacing/types.js +0 -1
- package/lib/components/Detail/components/Table/components/TableHead/tableHead.d.ts +0 -8
- package/lib/components/Detail/components/Table/components/TableHead/tableHead.js +0 -36
- package/lib/components/Filter/components/Filter/filter.stories.d.ts +0 -25
- package/lib/components/Filter/components/Filter/filter.stories.js +0 -42
- package/lib/components/Filter/components/FilterTag/filterTag.stories.d.ts +0 -16
- package/lib/components/Filter/components/FilterTag/filterTag.stories.js +0 -17
- package/lib/components/Filter/components/Filters/filters.stories.d.ts +0 -6
- package/lib/components/Filter/components/Filters/filters.stories.js +0 -91
- package/lib/components/Filter/components/SearchAllFilters/components/AutocompletePopper/autocompletePopper.styles.d.ts +0 -3
- package/lib/components/Filter/components/SearchAllFilters/components/AutocompletePopper/autocompletePopper.styles.js +0 -15
- package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.stories.d.ts +0 -6
- package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.stories.js +0 -82
- package/lib/components/Filter/components/SearchAllFiltersSearch/components/SearchCloseButton/searchCloseButton.d.ts +0 -1
- package/lib/components/Filter/components/SearchAllFiltersSearch/components/SearchCloseButton/searchCloseButton.js +0 -14
- package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.d.ts +0 -2
- package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.js +0 -12
- package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.styles.d.ts +0 -5
- package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.styles.js +0 -34
- package/lib/components/Index/components/Cell/cell.d.ts +0 -7
- package/lib/components/Index/components/Cell/cell.js +0 -10
- package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.d.ts +0 -2
- package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.js +0 -20
- package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.styles.d.ts +0 -13
- package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.styles.js +0 -12
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/constants.d.ts +0 -10
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/constants.js +0 -10
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/plot.d.ts +0 -3
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/plot.js +0 -91
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/utils.d.ts +0 -132
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/utils.js +0 -230
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.d.ts +0 -2
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.js +0 -7
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.styles.d.ts +0 -3
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.styles.js +0 -29
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/constants.d.ts +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/constants.js +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/args.d.ts +0 -4
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/args.js +0 -70
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/chart.stories.d.ts +0 -7
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/chart.stories.js +0 -18
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/types.d.ts +0 -6
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/types.js +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/constants.d.ts +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/constants.js +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/types.d.ts +0 -7
- package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/types.js +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/useChartView.d.ts +0 -3
- package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/useChartView.js +0 -11
- package/lib/components/Index/components/EntitiesView/components/ChartView/stories/args.d.ts +0 -3
- package/lib/components/Index/components/EntitiesView/components/ChartView/stories/args.js +0 -97
- package/lib/components/Index/components/EntitiesView/components/ChartView/stories/chartView.stories.d.ts +0 -6
- package/lib/components/Index/components/EntitiesView/components/ChartView/stories/chartView.stories.js +0 -15
- package/lib/components/Index/components/EntitiesView/components/ChartView/types.d.ts +0 -8
- package/lib/components/Index/components/EntitiesView/components/ChartView/types.js +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/utils.d.ts +0 -14
- package/lib/components/Index/components/EntitiesView/components/ChartView/utils.js +0 -23
- package/lib/components/Index/components/EntitiesView/components/EntityList/entityList.d.ts +0 -3
- package/lib/components/Index/components/EntitiesView/components/EntityList/entityList.js +0 -14
- package/lib/components/Index/components/EntitiesView/components/EntityList/types.d.ts +0 -6
- package/lib/components/Index/components/EntitiesView/components/EntityList/types.js +0 -1
- package/lib/components/Index/components/EntitiesView/constants.d.ts +0 -1
- package/lib/components/Index/components/EntitiesView/constants.js +0 -1
- package/lib/components/Index/components/EntitiesView/entitiesView.d.ts +0 -2
- package/lib/components/Index/components/EntitiesView/entitiesView.js +0 -15
- package/lib/components/Index/components/EntitiesView/entitiesView.styles.d.ts +0 -3
- package/lib/components/Index/components/EntitiesView/entitiesView.styles.js +0 -20
- package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/hook.d.ts +0 -2
- package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/hook.js +0 -14
- package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/types.d.ts +0 -13
- package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/types.js +0 -5
- package/lib/components/Index/components/EntitiesView/stories/entitiesView.stories.d.ts +0 -8
- package/lib/components/Index/components/EntitiesView/stories/entitiesView.stories.js +0 -50
- package/lib/components/Index/components/EntitiesView/types.d.ts +0 -8
- package/lib/components/Index/components/EntitiesView/types.js +0 -1
- package/lib/components/Index/components/Hero/components/ExportButton/exportButton.d.ts +0 -1
- package/lib/components/Index/components/Hero/components/ExportButton/exportButton.js +0 -13
- package/lib/components/Index/components/Hero/components/ExportButton/exportButton.styles.d.ts +0 -3
- package/lib/components/Index/components/Hero/components/ExportButton/exportButton.styles.js +0 -13
- package/lib/components/Index/components/Hero/components/Summaries/stories/summaries.stories.d.ts +0 -6
- package/lib/components/Index/components/Hero/components/Summaries/stories/summaries.stories.js +0 -14
- package/lib/components/Index/components/Hero/components/Summaries/summaries.d.ts +0 -9
- package/lib/components/Index/components/Hero/components/Summaries/summaries.js +0 -12
- package/lib/components/Index/components/Hero/components/Summaries/summaries.stories.d.ts +0 -13
- package/lib/components/Index/components/Hero/components/Summaries/summaries.stories.js +0 -18
- package/lib/components/Index/components/Hero/components/Summaries/summaries.styles.d.ts +0 -7
- package/lib/components/Index/components/Hero/components/Summaries/summaries.styles.js +0 -26
- package/lib/components/Index/components/Hero/hero.d.ts +0 -11
- package/lib/components/Index/components/Hero/hero.js +0 -12
- package/lib/components/Index/components/Hero/hero.stories.d.ts +0 -23
- package/lib/components/Index/components/Hero/hero.stories.js +0 -22
- package/lib/components/Index/components/Hero/hero.styles.d.ts +0 -16
- package/lib/components/Index/components/Hero/hero.styles.js +0 -44
- package/lib/components/Index/components/Hero/stories/hero.stories.d.ts +0 -6
- package/lib/components/Index/components/Hero/stories/hero.stories.js +0 -16
- package/lib/components/Index/components/NTag/components/Tooltip/tooltip.d.ts +0 -8
- package/lib/components/Index/components/NTag/components/Tooltip/tooltip.js +0 -57
- package/lib/components/Index/components/NTag/components/Tooltip/tooltip.styles.d.ts +0 -4
- package/lib/components/Index/components/NTag/components/Tooltip/tooltip.styles.js +0 -10
- package/lib/components/Index/components/NTag/nTag.d.ts +0 -10
- package/lib/components/Index/components/NTag/nTag.js +0 -8
- package/lib/components/Index/components/NTagCell/nTagCell.d.ts +0 -11
- package/lib/components/Index/components/NTagCell/nTagCell.js +0 -29
- package/lib/components/Index/components/NTagCell/nTagCell.stories.d.ts +0 -5
- package/lib/components/Index/components/NTagCell/nTagCell.stories.js +0 -16
- package/lib/components/Index/components/Tabs/common/utils.d.ts +0 -8
- package/lib/components/Index/components/Tabs/common/utils.js +0 -19
- package/lib/components/Index/components/Tabs/tabs.d.ts +0 -1
- package/lib/components/Index/components/Tabs/tabs.js +0 -20
- package/lib/components/Index/components/TitleCell/titleCell.d.ts +0 -6
- package/lib/components/Index/components/TitleCell/titleCell.js +0 -10
- package/lib/components/Index/components/TitleCell/titleCell.styles.d.ts +0 -3
- package/lib/components/Index/components/TitleCell/titleCell.styles.js +0 -6
- package/lib/components/Index/index.stories.d.ts +0 -6
- package/lib/components/Index/index.stories.js +0 -26
- package/lib/components/Index/stories/index.stories.d.ts +0 -6
- package/lib/components/Index/stories/index.stories.js +0 -17
- package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.stories.d.ts +0 -6
- package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.stories.js +0 -10
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.stories.d.ts +0 -5
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.stories.js +0 -29
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.d.ts +0 -6
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.js +0 -13
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.styles.d.ts +0 -36
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.styles.js +0 -9
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.d.ts +0 -5
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.js +0 -10
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.styles.d.ts +0 -36
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.styles.js +0 -9
- package/lib/components/Layout/components/Header/hooks/useMeasureHeader.d.ts +0 -5
- package/lib/components/Layout/components/Header/hooks/useMeasureHeader.js +0 -19
- package/lib/components/Layout/components/Outline/common/constants.d.ts +0 -2
- package/lib/components/Layout/components/Outline/common/constants.js +0 -1
- package/lib/components/Login/login.stories.d.ts +0 -6
- package/lib/components/Login/login.stories.js +0 -31
- package/lib/components/Table/components/CheckboxMenu/checkboxMenu.d.ts +0 -16
- package/lib/components/Table/components/CheckboxMenu/checkboxMenu.js +0 -28
- package/lib/components/Table/components/CheckboxMenu/checkboxMenu.stories.d.ts +0 -5
- package/lib/components/Table/components/CheckboxMenu/checkboxMenu.stories.js +0 -46
- package/lib/components/Table/components/CheckboxMenu/checkboxMenu.styles.d.ts +0 -3
- package/lib/components/Table/components/CheckboxMenu/checkboxMenu.styles.js +0 -21
- package/lib/components/Table/components/DownloadEntityResults/downloadEntityResults.d.ts +0 -6
- package/lib/components/Table/components/DownloadEntityResults/downloadEntityResults.js +0 -17
- package/lib/components/Table/components/EntityViewToggle/entityViewToggle.d.ts +0 -2
- package/lib/components/Table/components/EntityViewToggle/entityViewToggle.js +0 -37
- package/lib/components/Table/components/Pagination/pagination.d.ts +0 -9
- package/lib/components/Table/components/Pagination/pagination.js +0 -19
- package/lib/components/Table/components/Pagination/pagination.stories.d.ts +0 -28
- package/lib/components/Table/components/Pagination/pagination.stories.js +0 -24
- package/lib/components/Table/components/Pagination/pagination.styles.d.ts +0 -4
- package/lib/components/Table/components/Pagination/pagination.styles.js +0 -15
- package/lib/components/Table/components/TableBody/hooks/virtualizer/constants.d.ts +0 -3
- package/lib/components/Table/components/TableBody/hooks/virtualizer/constants.js +0 -3
- package/lib/components/Table/components/TableBody/hooks/virtualizer/hook.d.ts +0 -8
- package/lib/components/Table/components/TableBody/hooks/virtualizer/hook.js +0 -18
- package/lib/components/Table/components/TableBody/hooks/virtualizer/types.d.ts +0 -4
- package/lib/components/Table/components/TableBody/hooks/virtualizer/types.js +0 -1
- package/lib/components/Table/components/TableBody/utils.d.ts +0 -12
- package/lib/components/Table/components/TableBody/utils.js +0 -17
- package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/types.d.ts +0 -3
- package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/types.js +0 -1
- package/lib/components/Table/components/TableCell/components/MarkdownCell/types.d.ts +0 -3
- package/lib/components/Table/components/TableCell/components/MarkdownCell/types.js +0 -1
- package/lib/components/TableCreator/common/constants.d.ts +0 -6
- package/lib/components/TableCreator/common/constants.js +0 -19
- package/lib/components/TableCreator/common/entities.d.ts +0 -5
- package/lib/components/TableCreator/common/entities.js +0 -1
- package/lib/components/TableCreator/tableCreator.styles.d.ts +0 -4
- package/lib/components/TableCreator/tableCreator.styles.js +0 -4
- package/lib/components/common/Alert/alert.stories.d.ts +0 -6
- package/lib/components/common/Alert/alert.stories.js +0 -36
- package/lib/components/common/Alert/components/AlertText/alertText.styles.d.ts +0 -4
- package/lib/components/common/Alert/components/AlertText/alertText.styles.js +0 -19
- package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.d.ts +0 -7
- package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.js +0 -5
- package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.styles.d.ts +0 -3
- package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.styles.js +0 -19
- package/lib/components/common/Banner/components/DismissibleBanner/dismissibleBanner.d.ts +0 -10
- package/lib/components/common/Banner/components/DismissibleBanner/dismissibleBanner.js +0 -16
- package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.styles.d.ts +0 -3
- package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.styles.js +0 -21
- package/lib/components/common/Button/components/LoginButton/loginButton.d.ts +0 -3
- package/lib/components/common/Button/components/LoginButton/loginButton.js +0 -6
- package/lib/components/common/Button/components/LoginButton/loginButton.styles.d.ts +0 -7
- package/lib/components/common/Button/components/LoginButton/loginButton.styles.js +0 -11
- package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.d.ts +0 -5
- package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.js +0 -10
- package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.stories.d.ts +0 -3
- package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.stories.js +0 -9
- package/lib/hooks/useAuthentication/common/constants.d.ts +0 -4
- package/lib/hooks/useAuthentication/common/constants.js +0 -19
- package/lib/hooks/useAuthentication/common/entities.d.ts +0 -25
- package/lib/hooks/useAuthentication/common/entities.js +0 -11
- package/lib/hooks/useAuthentication/common/utils.d.ts +0 -15
- package/lib/hooks/useAuthentication/common/utils.js +0 -25
- package/lib/hooks/useAuthentication/useAuthentication.d.ts +0 -6
- package/lib/hooks/useAuthentication/useAuthentication.js +0 -9
- package/lib/hooks/useAuthentication/useAuthenticationComplete.d.ts +0 -6
- package/lib/hooks/useAuthentication/useAuthenticationComplete.js +0 -55
- package/lib/hooks/useAuthentication/useAuthenticationForm.d.ts +0 -20
- package/lib/hooks/useAuthentication/useAuthenticationForm.js +0 -88
- package/lib/hooks/useAuthentication/useAuthenticationNIHExpiry.d.ts +0 -18
- package/lib/hooks/useAuthentication/useAuthenticationNIHExpiry.js +0 -50
- package/lib/hooks/useAuthentication/useAuthenticationStatus.d.ts +0 -20
- package/lib/hooks/useAuthentication/useAuthenticationStatus.js +0 -32
- package/lib/hooks/useAuthentication/useFetchGoogleProfile.d.ts +0 -21
- package/lib/hooks/useAuthentication/useFetchGoogleProfile.js +0 -41
- package/lib/hooks/useAuthentication/useFetchTerraNIHProfile.d.ts +0 -18
- package/lib/hooks/useAuthentication/useFetchTerraNIHProfile.js +0 -62
- package/lib/hooks/useAuthentication/useFetchTerraProfile.d.ts +0 -24
- package/lib/hooks/useAuthentication/useFetchTerraProfile.js +0 -62
- package/lib/hooks/useAuthentication/useFetchTerraTermsOfService.d.ts +0 -15
- package/lib/hooks/useAuthentication/useFetchTerraTermsOfService.js +0 -62
- package/lib/hooks/useAuthentication/useTokenClient.d.ts +0 -11
- package/lib/hooks/useAuthentication/useTokenClient.js +0 -29
- package/lib/hooks/useAuthenticationConfig.d.ts +0 -6
- package/lib/hooks/useAuthenticationConfig.js +0 -14
- package/lib/hooks/useCategoryConfigs.d.ts +0 -6
- package/lib/hooks/useCategoryConfigs.js +0 -17
- package/lib/hooks/useEntityListRelatedView.d.ts +0 -15
- package/lib/hooks/useEntityListRelatedView.js +0 -62
- package/lib/hooks/useExploreMode.d.ts +0 -14
- package/lib/hooks/useExploreMode.js +0 -20
- package/lib/hooks/useFileManifest/common/buildFileManifestRequestURL.d.ts +0 -15
- package/lib/hooks/useFileManifest/common/buildFileManifestRequestURL.js +0 -27
- package/lib/hooks/useFileManifest/useFileManifestURL.d.ts +0 -5
- package/lib/hooks/useFileManifest/useFileManifestURL.js +0 -11
- package/lib/hooks/useFileManifest/useRequestFileManifest.d.ts +0 -9
- package/lib/hooks/useFileManifest/useRequestFileManifest.js +0 -37
- package/lib/hooks/useLayoutState.d.ts +0 -6
- package/lib/hooks/useLayoutState.js +0 -9
- package/lib/hooks/useMenu.d.ts +0 -10
- package/lib/hooks/useMenu.js +0 -17
- package/lib/hooks/useMenuWithPosition.d.ts +0 -14
- package/lib/hooks/useMenuWithPosition.js +0 -33
- package/lib/hooks/useScroll.d.ts +0 -10
- package/lib/hooks/useScroll.js +0 -12
- package/lib/hooks/useSessionTimeout.d.ts +0 -11
- package/lib/hooks/useSessionTimeout.js +0 -28
- package/lib/mocks/@storybook/addon-actions.d.ts +0 -9
- package/lib/mocks/@storybook/addon-actions.js +0 -9
- package/lib/providers/authentication.d.ts +0 -51
- package/lib/providers/authentication.js +0 -110
- package/lib/providers/layoutState.d.ts +0 -40
- package/lib/providers/layoutState.js +0 -47
- package/lib/styles/common/mixins/colors.d.ts +0 -25
- package/lib/styles/common/mixins/colors.js +0 -32
- package/lib/styles/common/mixins/fonts.d.ts +0 -16
- package/lib/styles/common/mixins/fonts.js +0 -30
- package/lib/styles/common/mixins/shadows.d.ts +0 -3
- package/lib/styles/common/mixins/shadows.js +0 -4
- package/lib/styles/common/mui/palette.d.ts +0 -47
- package/lib/styles/common/mui/palette.js +0 -47
- package/lib/theme/common/entities.d.ts +0 -6
- package/lib/theme/common/entities.js +0 -1
- package/src/mocks/@storybook/addon-actions.ts +0 -10
- /package/lib/{components/DataDictionary/components/Table/columns → common/chart}/types.js +0 -0
- /package/lib/{components/DataDictionary/components/Table/components/BasicCell → utils/mdx/plugins}/types.js +0 -0
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { useEffect, useState } from "react";
|
|
2
|
-
import { FileManifestActionKind } from "../../providers/fileManifestState";
|
|
3
|
-
import { useFileManifestState } from "../useFileManifestState";
|
|
4
|
-
/**
|
|
5
|
-
* Initializes and fetches file manifest comprising file facets and summary for the given file manifest format.
|
|
6
|
-
* @param fileManifestFormat - File manifest format.
|
|
7
|
-
* @param initialFilters - Filters to initialize file manifest request.
|
|
8
|
-
* @param fileSummaryFacetName - File summary facet name.
|
|
9
|
-
*/
|
|
10
|
-
export const useRequestFileManifest = (fileManifestFormat, initialFilters = [], fileSummaryFacetName) => {
|
|
11
|
-
// Initial file manifest filter.
|
|
12
|
-
const [initFilters] = useState(() => initialFilters);
|
|
13
|
-
// File manifest state.
|
|
14
|
-
const { fileManifestDispatch } = useFileManifestState();
|
|
15
|
-
// Fetches file manifest with the given file manifest filters, format.
|
|
16
|
-
useEffect(() => {
|
|
17
|
-
fileManifestDispatch({
|
|
18
|
-
payload: {
|
|
19
|
-
fileManifestFormat,
|
|
20
|
-
fileSummaryFacetName,
|
|
21
|
-
filters: initFilters,
|
|
22
|
-
},
|
|
23
|
-
type: FileManifestActionKind.FetchFileManifest,
|
|
24
|
-
});
|
|
25
|
-
return () => {
|
|
26
|
-
fileManifestDispatch({
|
|
27
|
-
payload: undefined,
|
|
28
|
-
type: FileManifestActionKind.ClearFileManifest,
|
|
29
|
-
});
|
|
30
|
-
};
|
|
31
|
-
}, [
|
|
32
|
-
fileManifestDispatch,
|
|
33
|
-
fileManifestFormat,
|
|
34
|
-
fileSummaryFacetName,
|
|
35
|
-
initFilters,
|
|
36
|
-
]);
|
|
37
|
-
};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { useContext } from "react";
|
|
2
|
-
import { LayoutStateContext, } from "../providers/layoutState";
|
|
3
|
-
/**
|
|
4
|
-
* Returns layout state context.
|
|
5
|
-
* @returns layout state context.
|
|
6
|
-
*/
|
|
7
|
-
export const useLayoutState = () => {
|
|
8
|
-
return useContext(LayoutStateContext);
|
|
9
|
-
};
|
package/lib/hooks/useMenu.d.ts
DELETED
package/lib/hooks/useMenu.js
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { useCallback, useState } from "react";
|
|
2
|
-
/**
|
|
3
|
-
* Menu functionality for menu dropdown.
|
|
4
|
-
* @returns menu functionality.
|
|
5
|
-
*/
|
|
6
|
-
export const useMenu = () => {
|
|
7
|
-
const [open, setOpen] = useState(false);
|
|
8
|
-
// Closes header menu.
|
|
9
|
-
const onClose = useCallback(() => {
|
|
10
|
-
setOpen(false);
|
|
11
|
-
}, []);
|
|
12
|
-
// Opens header menu.
|
|
13
|
-
const onOpen = useCallback(() => {
|
|
14
|
-
setOpen(true);
|
|
15
|
-
}, []);
|
|
16
|
-
return { onClose, onOpen, open };
|
|
17
|
-
};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { MenuProps as MMenuProps } from "@mui/material";
|
|
2
|
-
import { MouseEvent } from "react";
|
|
3
|
-
export interface UseMenuWithPosition {
|
|
4
|
-
anchorEl: MMenuProps["anchorEl"];
|
|
5
|
-
onClose: () => void;
|
|
6
|
-
onOpen: (event: MouseEvent<HTMLElement>) => void;
|
|
7
|
-
onToggleOpen: (event: MouseEvent<HTMLElement>) => void;
|
|
8
|
-
open: boolean;
|
|
9
|
-
}
|
|
10
|
-
/**
|
|
11
|
-
* Menu functionality for menu dropdown, with menu position.
|
|
12
|
-
* @returns menu functionality.
|
|
13
|
-
*/
|
|
14
|
-
export declare const useMenuWithPosition: () => UseMenuWithPosition;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { useCallback, useMemo, useState } from "react";
|
|
2
|
-
/**
|
|
3
|
-
* Menu functionality for menu dropdown, with menu position.
|
|
4
|
-
* @returns menu functionality.
|
|
5
|
-
*/
|
|
6
|
-
export const useMenuWithPosition = () => {
|
|
7
|
-
const [anchorEl, setAnchorEl] = useState(null);
|
|
8
|
-
const open = useMemo(() => Boolean(anchorEl), [anchorEl]);
|
|
9
|
-
// Closes header menu.
|
|
10
|
-
const onClose = useCallback(() => {
|
|
11
|
-
setAnchorEl(null);
|
|
12
|
-
}, []);
|
|
13
|
-
// Opens header menu.
|
|
14
|
-
const onOpen = useCallback((event) => {
|
|
15
|
-
setAnchorEl(event.currentTarget);
|
|
16
|
-
}, []);
|
|
17
|
-
// Toggles menu open/close.
|
|
18
|
-
const onToggleOpen = useCallback((event) => {
|
|
19
|
-
if (open) {
|
|
20
|
-
setAnchorEl(null);
|
|
21
|
-
}
|
|
22
|
-
else {
|
|
23
|
-
setAnchorEl(event.currentTarget);
|
|
24
|
-
}
|
|
25
|
-
}, [open]);
|
|
26
|
-
return {
|
|
27
|
-
anchorEl,
|
|
28
|
-
onClose,
|
|
29
|
-
onOpen,
|
|
30
|
-
onToggleOpen,
|
|
31
|
-
open,
|
|
32
|
-
};
|
|
33
|
-
};
|
package/lib/hooks/useScroll.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
type ScrollType = "top" | "bottom";
|
|
2
|
-
type UseScrollReturn = () => void;
|
|
3
|
-
/**
|
|
4
|
-
* Hook used to scroll the to top or bottom of the page.
|
|
5
|
-
* This hook can only be used on the client-side.
|
|
6
|
-
* @param scrollType - top or bottom of the page. Default = top
|
|
7
|
-
* @returns scroll function
|
|
8
|
-
*/
|
|
9
|
-
export declare const useScroll: (scrollType?: ScrollType) => UseScrollReturn;
|
|
10
|
-
export {};
|
package/lib/hooks/useScroll.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { useCallback } from "react";
|
|
2
|
-
/**
|
|
3
|
-
* Hook used to scroll the to top or bottom of the page.
|
|
4
|
-
* This hook can only be used on the client-side.
|
|
5
|
-
* @param scrollType - top or bottom of the page. Default = top
|
|
6
|
-
* @returns scroll function
|
|
7
|
-
*/
|
|
8
|
-
export const useScroll = (scrollType = "top") => {
|
|
9
|
-
return useCallback(() => window.scrollTo({
|
|
10
|
-
top: scrollType === "top" ? 0 : document.body.scrollHeight,
|
|
11
|
-
}), [scrollType]);
|
|
12
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export declare const INACTIVITY_PARAM = "inactivityTimeout";
|
|
2
|
-
interface UseSessionTimeout {
|
|
3
|
-
clearSessionTimeout: () => void;
|
|
4
|
-
isSessionTimeout: boolean;
|
|
5
|
-
}
|
|
6
|
-
/**
|
|
7
|
-
* Session timeout hook.
|
|
8
|
-
* @returns flag indicating if the session has timed out.
|
|
9
|
-
*/
|
|
10
|
-
export declare const useSessionTimeout: () => UseSessionTimeout;
|
|
11
|
-
export {};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import Router from "next/router";
|
|
2
|
-
import { useCallback, useEffect, useState } from "react";
|
|
3
|
-
import { useConfig } from "./useConfig";
|
|
4
|
-
import { useLocation } from "./useLocation";
|
|
5
|
-
export const INACTIVITY_PARAM = "inactivityTimeout";
|
|
6
|
-
/**
|
|
7
|
-
* Session timeout hook.
|
|
8
|
-
* @returns flag indicating if the session has timed out.
|
|
9
|
-
*/
|
|
10
|
-
export const useSessionTimeout = () => {
|
|
11
|
-
const { config: { redirectRootToPath }, } = useConfig();
|
|
12
|
-
const [isSessionTimeout, setIsSessionTimeout] = useState(false);
|
|
13
|
-
// Get the session timeout from URL parameters.
|
|
14
|
-
const { search } = useLocation() || {};
|
|
15
|
-
const sessionTimeout = search?.get(INACTIVITY_PARAM);
|
|
16
|
-
// Clears session timeout state.
|
|
17
|
-
const clearSessionTimeout = useCallback(() => {
|
|
18
|
-
setIsSessionTimeout(false);
|
|
19
|
-
Router.replace(redirectRootToPath);
|
|
20
|
-
}, [redirectRootToPath]);
|
|
21
|
-
useEffect(() => {
|
|
22
|
-
setIsSessionTimeout(sessionTimeout === "true");
|
|
23
|
-
}, [sessionTimeout]);
|
|
24
|
-
return {
|
|
25
|
-
clearSessionTimeout,
|
|
26
|
-
isSessionTimeout,
|
|
27
|
-
};
|
|
28
|
-
};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { jest } from "@jest/globals";
|
|
2
|
-
/**
|
|
3
|
-
* Mock for Storybook's @storybook/addon-actions function.
|
|
4
|
-
* The mock keeps the same function signature as the real Storybook action,
|
|
5
|
-
* does not trigger any Storybook logic, and simply returns a Jest mock function
|
|
6
|
-
* for use in tests.
|
|
7
|
-
* @returns A Jest mock function.
|
|
8
|
-
*/
|
|
9
|
-
export declare const action: () => jest.Mock;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { jest } from "@jest/globals";
|
|
2
|
-
/**
|
|
3
|
-
* Mock for Storybook's @storybook/addon-actions function.
|
|
4
|
-
* The mock keeps the same function signature as the real Storybook action,
|
|
5
|
-
* does not trigger any Storybook logic, and simply returns a Jest mock function
|
|
6
|
-
* for use in tests.
|
|
7
|
-
* @returns A Jest mock function.
|
|
8
|
-
*/
|
|
9
|
-
export const action = () => jest.fn();
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import React, { ReactNode } from "react";
|
|
2
|
-
import { AUTHENTICATION_STATUS, LoginStatus } from "../hooks/useAuthentication/common/entities";
|
|
3
|
-
import { UserProfile } from "../hooks/useAuthentication/useFetchGoogleProfile";
|
|
4
|
-
import { TerraNIHResponse } from "../hooks/useAuthentication/useFetchTerraNIHProfile";
|
|
5
|
-
import { TerraResponse } from "../hooks/useAuthentication/useFetchTerraProfile";
|
|
6
|
-
import { TerraTermsOfServiceResponse } from "../hooks/useAuthentication/useFetchTerraTermsOfService";
|
|
7
|
-
export declare const ROUTE_LOGIN = "/login";
|
|
8
|
-
type AuthenticateUserFn = () => void;
|
|
9
|
-
type RequestAuthenticationFn = () => void;
|
|
10
|
-
/**
|
|
11
|
-
* Model of authentication context.
|
|
12
|
-
*/
|
|
13
|
-
export interface AuthContextProps {
|
|
14
|
-
authenticateUser: AuthenticateUserFn;
|
|
15
|
-
authenticationStatus: AUTHENTICATION_STATUS;
|
|
16
|
-
isAuthenticated: boolean;
|
|
17
|
-
isEnabled: boolean;
|
|
18
|
-
requestAuthentication: RequestAuthenticationFn;
|
|
19
|
-
terraNIHProfileLoginStatus: LoginStatus<TerraNIHResponse>;
|
|
20
|
-
terraProfileLoginStatus: LoginStatus<TerraResponse>;
|
|
21
|
-
terraTOSLoginStatus: LoginStatus<TerraTermsOfServiceResponse>;
|
|
22
|
-
token?: string;
|
|
23
|
-
userProfile?: UserProfile;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Auth context for storing and using auth-related state.
|
|
27
|
-
*/
|
|
28
|
-
export declare const AuthContext: React.Context<AuthContextProps>;
|
|
29
|
-
interface Props {
|
|
30
|
-
children: ReactNode | ReactNode[];
|
|
31
|
-
sessionTimeout?: number;
|
|
32
|
-
}
|
|
33
|
-
/**
|
|
34
|
-
* Auth provider for consuming components to subscribe to changes in auth-related state.
|
|
35
|
-
* @param props - Component inputs.
|
|
36
|
-
* @param props.children - Set of children components that can possibly consume the query provider.
|
|
37
|
-
* @param props.sessionTimeout - If provided, will set the value for a session timeout (in milliseconds).
|
|
38
|
-
* @returns Provider element to be used by consumers to both update authentication state and subscribe to changes in authentication state.
|
|
39
|
-
*/
|
|
40
|
-
export declare function AuthProvider({ children, sessionTimeout }: Props): JSX.Element;
|
|
41
|
-
/**
|
|
42
|
-
* Token is released for the following conditions:
|
|
43
|
-
* - Terra endpoint is configured and the terms of service response is successful, or
|
|
44
|
-
* - Terra endpoint is not configured and the user profile response is successful.
|
|
45
|
-
* @param userProfileLoginStatus - User profile login status.
|
|
46
|
-
* @param terraProfileLoginStatus - Terra profile login status.
|
|
47
|
-
* @param terraTOSLoginStatus - Terra terms of service login status.
|
|
48
|
-
* @returns true if the token should be released.
|
|
49
|
-
*/
|
|
50
|
-
export declare function shouldReleaseToken(userProfileLoginStatus: LoginStatus<UserProfile>, terraProfileLoginStatus: LoginStatus<TerraResponse>, terraTOSLoginStatus: LoginStatus<TerraTermsOfServiceResponse>): boolean;
|
|
51
|
-
export {};
|
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
import Router, { useRouter } from "next/router";
|
|
2
|
-
import React, { createContext, useCallback } from "react";
|
|
3
|
-
import { useIdleTimer } from "react-idle-timer";
|
|
4
|
-
import { LOGIN_STATUS_NOT_STARTED } from "../hooks/useAuthentication/common/constants";
|
|
5
|
-
import { AUTHENTICATION_STATUS, } from "../hooks/useAuthentication/common/entities";
|
|
6
|
-
import { useAuthenticationComplete } from "../hooks/useAuthentication/useAuthenticationComplete";
|
|
7
|
-
import { useAuthenticationStatus } from "../hooks/useAuthentication/useAuthenticationStatus";
|
|
8
|
-
import { useFetchGoogleProfile, } from "../hooks/useAuthentication/useFetchGoogleProfile";
|
|
9
|
-
import { useFetchTerraNIHProfile, } from "../hooks/useAuthentication/useFetchTerraNIHProfile";
|
|
10
|
-
import { useFetchTerraProfile, } from "../hooks/useAuthentication/useFetchTerraProfile";
|
|
11
|
-
import { useFetchTerraTermsOfService, } from "../hooks/useAuthentication/useFetchTerraTermsOfService";
|
|
12
|
-
import { useTokenClient } from "../hooks/useAuthentication/useTokenClient";
|
|
13
|
-
import { useConfig } from "../hooks/useConfig";
|
|
14
|
-
import { INACTIVITY_PARAM } from "../hooks/useSessionTimeout";
|
|
15
|
-
// Template constants
|
|
16
|
-
export const ROUTE_LOGIN = "/login";
|
|
17
|
-
/**
|
|
18
|
-
* Auth context for storing and using auth-related state.
|
|
19
|
-
*/
|
|
20
|
-
export const AuthContext = createContext({
|
|
21
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-function -- allow dummy function for default state.
|
|
22
|
-
authenticateUser: () => { },
|
|
23
|
-
authenticationStatus: AUTHENTICATION_STATUS.INCOMPLETE,
|
|
24
|
-
isAuthenticated: false,
|
|
25
|
-
isEnabled: false,
|
|
26
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-function -- allow dummy function for default state.
|
|
27
|
-
requestAuthentication: () => { },
|
|
28
|
-
terraNIHProfileLoginStatus: LOGIN_STATUS_NOT_STARTED,
|
|
29
|
-
terraProfileLoginStatus: LOGIN_STATUS_NOT_STARTED,
|
|
30
|
-
terraTOSLoginStatus: LOGIN_STATUS_NOT_STARTED,
|
|
31
|
-
token: undefined,
|
|
32
|
-
userProfile: undefined,
|
|
33
|
-
});
|
|
34
|
-
/**
|
|
35
|
-
* Auth provider for consuming components to subscribe to changes in auth-related state.
|
|
36
|
-
* @param props - Component inputs.
|
|
37
|
-
* @param props.children - Set of children components that can possibly consume the query provider.
|
|
38
|
-
* @param props.sessionTimeout - If provided, will set the value for a session timeout (in milliseconds).
|
|
39
|
-
* @returns Provider element to be used by consumers to both update authentication state and subscribe to changes in authentication state.
|
|
40
|
-
*/
|
|
41
|
-
export function AuthProvider({ children, sessionTimeout }) {
|
|
42
|
-
const { config } = useConfig();
|
|
43
|
-
const { authentication, redirectRootToPath } = config;
|
|
44
|
-
const { basePath } = useRouter();
|
|
45
|
-
const { token, tokenClient } = useTokenClient();
|
|
46
|
-
const terraNIHProfileLoginStatus = useFetchTerraNIHProfile(token);
|
|
47
|
-
const terraProfileLoginStatus = useFetchTerraProfile(token);
|
|
48
|
-
const terraTOSLoginStatus = useFetchTerraTermsOfService(token);
|
|
49
|
-
const userProfileLoginStatus = useFetchGoogleProfile(token);
|
|
50
|
-
const isEnabled = Boolean(authentication);
|
|
51
|
-
const isAuthenticated = userProfileLoginStatus.isSuccess;
|
|
52
|
-
const releaseToken = shouldReleaseToken(userProfileLoginStatus, terraProfileLoginStatus, terraTOSLoginStatus);
|
|
53
|
-
const authenticationStatus = useAuthenticationStatus(userProfileLoginStatus, terraProfileLoginStatus, terraTOSLoginStatus, terraNIHProfileLoginStatus);
|
|
54
|
-
// Handle completion of authentication process.
|
|
55
|
-
useAuthenticationComplete(authenticationStatus);
|
|
56
|
-
/**
|
|
57
|
-
* If sessionTimeout is set and user is authenticated, the app will reload and redirect to
|
|
58
|
-
* origin, including base path, root path, and query param.
|
|
59
|
-
*/
|
|
60
|
-
useIdleTimer({
|
|
61
|
-
onIdle: () => isAuthenticated &&
|
|
62
|
-
sessionTimeout &&
|
|
63
|
-
(window.location.href =
|
|
64
|
-
window.location.origin +
|
|
65
|
-
basePath +
|
|
66
|
-
redirectRootToPath +
|
|
67
|
-
"?" +
|
|
68
|
-
`${INACTIVITY_PARAM}=true`),
|
|
69
|
-
timeout: sessionTimeout,
|
|
70
|
-
});
|
|
71
|
-
/**
|
|
72
|
-
* Requests access token and authenticates user.
|
|
73
|
-
*/
|
|
74
|
-
const authenticateUser = useCallback(() => {
|
|
75
|
-
tokenClient.requestAccessToken();
|
|
76
|
-
}, [tokenClient]);
|
|
77
|
-
/**
|
|
78
|
-
* Navigates to login page.
|
|
79
|
-
*/
|
|
80
|
-
const requestAuthentication = useCallback(() => {
|
|
81
|
-
Router.push(ROUTE_LOGIN);
|
|
82
|
-
}, []);
|
|
83
|
-
return (React.createElement(AuthContext.Provider, { value: {
|
|
84
|
-
authenticateUser,
|
|
85
|
-
authenticationStatus,
|
|
86
|
-
isAuthenticated,
|
|
87
|
-
isEnabled,
|
|
88
|
-
requestAuthentication,
|
|
89
|
-
terraNIHProfileLoginStatus,
|
|
90
|
-
terraProfileLoginStatus,
|
|
91
|
-
terraTOSLoginStatus,
|
|
92
|
-
token: releaseToken ? token : undefined,
|
|
93
|
-
userProfile: userProfileLoginStatus.response,
|
|
94
|
-
} }, children));
|
|
95
|
-
}
|
|
96
|
-
/**
|
|
97
|
-
* Token is released for the following conditions:
|
|
98
|
-
* - Terra endpoint is configured and the terms of service response is successful, or
|
|
99
|
-
* - Terra endpoint is not configured and the user profile response is successful.
|
|
100
|
-
* @param userProfileLoginStatus - User profile login status.
|
|
101
|
-
* @param terraProfileLoginStatus - Terra profile login status.
|
|
102
|
-
* @param terraTOSLoginStatus - Terra terms of service login status.
|
|
103
|
-
* @returns true if the token should be released.
|
|
104
|
-
*/
|
|
105
|
-
export function shouldReleaseToken(userProfileLoginStatus, terraProfileLoginStatus, terraTOSLoginStatus) {
|
|
106
|
-
if (terraProfileLoginStatus.isSupported) {
|
|
107
|
-
return terraTOSLoginStatus.isSuccess;
|
|
108
|
-
}
|
|
109
|
-
return userProfileLoginStatus.isSuccess;
|
|
110
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import React, { Dispatch, ReactNode } from "react";
|
|
2
|
-
export declare const DEFAULT_LAYOUT_STATE: {
|
|
3
|
-
headerHeight: number;
|
|
4
|
-
};
|
|
5
|
-
/**
|
|
6
|
-
* Layout state.
|
|
7
|
-
*/
|
|
8
|
-
export type LayoutState = {
|
|
9
|
-
headerHeight: number;
|
|
10
|
-
};
|
|
11
|
-
/**
|
|
12
|
-
* Model of layout state context.
|
|
13
|
-
*/
|
|
14
|
-
export type LayoutStateContextProps = {
|
|
15
|
-
layoutDispatch: Dispatch<LayoutAction>;
|
|
16
|
-
layoutState: LayoutState;
|
|
17
|
-
};
|
|
18
|
-
export declare const LayoutStateContext: React.Context<LayoutStateContextProps>;
|
|
19
|
-
export interface LayoutStateProps {
|
|
20
|
-
children: ReactNode | ReactNode[];
|
|
21
|
-
}
|
|
22
|
-
export declare function LayoutStateProvider({ children, }: LayoutStateProps): JSX.Element;
|
|
23
|
-
/**
|
|
24
|
-
* Layout action kind.
|
|
25
|
-
*/
|
|
26
|
-
export declare enum LayoutActionKind {
|
|
27
|
-
UpdateHeaderHeight = "UPDATE_HEADER_HEIGHT"
|
|
28
|
-
}
|
|
29
|
-
/**
|
|
30
|
-
* Layout action.
|
|
31
|
-
*/
|
|
32
|
-
export type LayoutAction = UpdateHeaderHeightAction;
|
|
33
|
-
/**
|
|
34
|
-
* Update header height action.
|
|
35
|
-
*/
|
|
36
|
-
type UpdateHeaderHeightAction = {
|
|
37
|
-
payload?: number;
|
|
38
|
-
type: LayoutActionKind.UpdateHeaderHeight;
|
|
39
|
-
};
|
|
40
|
-
export {};
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import React, { createContext, useReducer } from "react";
|
|
2
|
-
import { HEADER_HEIGHT } from "../components/Layout/components/Header/common/constants";
|
|
3
|
-
// Default layout state.
|
|
4
|
-
export const DEFAULT_LAYOUT_STATE = {
|
|
5
|
-
headerHeight: HEADER_HEIGHT + 1, // 1px for bottom border.
|
|
6
|
-
};
|
|
7
|
-
export const LayoutStateContext = createContext({
|
|
8
|
-
// eslint-disable-next-line @typescript-eslint/no-empty-function -- allow dummy function for default state.
|
|
9
|
-
layoutDispatch: () => { },
|
|
10
|
-
layoutState: DEFAULT_LAYOUT_STATE,
|
|
11
|
-
});
|
|
12
|
-
export function LayoutStateProvider({ children, }) {
|
|
13
|
-
// Layout state.
|
|
14
|
-
const [layoutState, layoutDispatch] = useReducer((s, a) => layoutReducer(s, a), DEFAULT_LAYOUT_STATE);
|
|
15
|
-
return (React.createElement(LayoutStateContext.Provider, { value: {
|
|
16
|
-
layoutDispatch,
|
|
17
|
-
layoutState,
|
|
18
|
-
} }, children));
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* Layout action kind.
|
|
22
|
-
*/
|
|
23
|
-
export var LayoutActionKind;
|
|
24
|
-
(function (LayoutActionKind) {
|
|
25
|
-
LayoutActionKind["UpdateHeaderHeight"] = "UPDATE_HEADER_HEIGHT";
|
|
26
|
-
})(LayoutActionKind || (LayoutActionKind = {}));
|
|
27
|
-
/**
|
|
28
|
-
* Layout reducer.
|
|
29
|
-
* @param state - Layout state.
|
|
30
|
-
* @param action - Layout action.
|
|
31
|
-
* @returns layout state.
|
|
32
|
-
*/
|
|
33
|
-
function layoutReducer(state, action) {
|
|
34
|
-
const { payload, type } = action;
|
|
35
|
-
// eslint-disable-next-line sonarjs/no-small-switch -- allow small switch.
|
|
36
|
-
switch (type) {
|
|
37
|
-
// Updates header height.
|
|
38
|
-
case LayoutActionKind.UpdateHeaderHeight: {
|
|
39
|
-
return {
|
|
40
|
-
...state,
|
|
41
|
-
headerHeight: payload ?? state.headerHeight,
|
|
42
|
-
};
|
|
43
|
-
}
|
|
44
|
-
default:
|
|
45
|
-
return state;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { CommonColors, PaletteColor } from "@mui/material/styles";
|
|
2
|
-
import { ThemeProps } from "../../../theme/theme";
|
|
3
|
-
export declare const alertLight: ({ theme }: ThemeProps) => PaletteColor["light"];
|
|
4
|
-
export declare const alertLightest: ({ theme, }: ThemeProps) => PaletteColor["lightest"];
|
|
5
|
-
export declare const alertMain: ({ theme }: ThemeProps) => PaletteColor["main"];
|
|
6
|
-
export declare const errorMain: ({ theme }: ThemeProps) => PaletteColor["main"];
|
|
7
|
-
export declare const infoLight: ({ theme }: ThemeProps) => PaletteColor["light"];
|
|
8
|
-
export declare const infoLightest: ({ theme }: ThemeProps) => PaletteColor["lightest"];
|
|
9
|
-
export declare const infoMain: ({ theme }: ThemeProps) => PaletteColor["main"];
|
|
10
|
-
export declare const inkLight: ({ theme }: ThemeProps) => PaletteColor["light"];
|
|
11
|
-
export declare const inkMain: ({ theme }: ThemeProps) => PaletteColor["main"];
|
|
12
|
-
export declare const primaryDark: ({ theme }: ThemeProps) => PaletteColor["dark"];
|
|
13
|
-
export declare const primaryLightest: ({ theme, }: ThemeProps) => PaletteColor["lightest"];
|
|
14
|
-
export declare const primaryMain: ({ theme }: ThemeProps) => PaletteColor["main"];
|
|
15
|
-
export declare const smokeDark: ({ theme }: ThemeProps) => PaletteColor["dark"];
|
|
16
|
-
export declare const smokeLight: ({ theme }: ThemeProps) => PaletteColor["light"];
|
|
17
|
-
export declare const smokeLightest: ({ theme, }: ThemeProps) => PaletteColor["lightest"];
|
|
18
|
-
export declare const smokeMain: ({ theme }: ThemeProps) => PaletteColor["main"];
|
|
19
|
-
export declare const successLight: ({ theme }: ThemeProps) => PaletteColor["light"];
|
|
20
|
-
export declare const successLightest: ({ theme, }: ThemeProps) => PaletteColor["lightest"];
|
|
21
|
-
export declare const successMain: ({ theme }: ThemeProps) => PaletteColor["main"];
|
|
22
|
-
export declare const warningLight: ({ theme }: ThemeProps) => PaletteColor["light"];
|
|
23
|
-
export declare const warningLightest: ({ theme, }: ThemeProps) => PaletteColor["lightest"];
|
|
24
|
-
export declare const warningMain: ({ theme }: ThemeProps) => PaletteColor["main"];
|
|
25
|
-
export declare const white: ({ theme }: ThemeProps) => CommonColors["white"];
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
// Alert
|
|
2
|
-
export const alertLight = ({ theme }) => theme.palette.alert.light;
|
|
3
|
-
export const alertLightest = ({ theme, }) => theme.palette.alert.lightest;
|
|
4
|
-
export const alertMain = ({ theme }) => theme.palette.alert.main;
|
|
5
|
-
// Error
|
|
6
|
-
export const errorMain = ({ theme }) => theme.palette.error.main;
|
|
7
|
-
// Info
|
|
8
|
-
export const infoLight = ({ theme }) => theme.palette.info.light;
|
|
9
|
-
export const infoLightest = ({ theme }) => theme.palette.info.lightest;
|
|
10
|
-
export const infoMain = ({ theme }) => theme.palette.info.main;
|
|
11
|
-
// Ink
|
|
12
|
-
export const inkLight = ({ theme }) => theme.palette.ink.light;
|
|
13
|
-
export const inkMain = ({ theme }) => theme.palette.ink.main;
|
|
14
|
-
// Primary
|
|
15
|
-
export const primaryDark = ({ theme }) => theme.palette.primary.dark;
|
|
16
|
-
export const primaryLightest = ({ theme, }) => theme.palette.primary.lightest;
|
|
17
|
-
export const primaryMain = ({ theme }) => theme.palette.primary.main;
|
|
18
|
-
// Smoke
|
|
19
|
-
export const smokeDark = ({ theme }) => theme.palette.smoke.dark;
|
|
20
|
-
export const smokeLight = ({ theme }) => theme.palette.smoke.light;
|
|
21
|
-
export const smokeLightest = ({ theme, }) => theme.palette.smoke.lightest;
|
|
22
|
-
export const smokeMain = ({ theme }) => theme.palette.smoke.main;
|
|
23
|
-
// Success
|
|
24
|
-
export const successLight = ({ theme }) => theme.palette.success.light;
|
|
25
|
-
export const successLightest = ({ theme, }) => theme.palette.success.lightest;
|
|
26
|
-
export const successMain = ({ theme }) => theme.palette.success.main;
|
|
27
|
-
// Warning
|
|
28
|
-
export const warningLight = ({ theme }) => theme.palette.warning.light;
|
|
29
|
-
export const warningLightest = ({ theme, }) => theme.palette.warning.lightest;
|
|
30
|
-
export const warningMain = ({ theme }) => theme.palette.warning.main;
|
|
31
|
-
// White
|
|
32
|
-
export const white = ({ theme }) => theme.palette.common.white;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { SerializedStyles } from "@emotion/react";
|
|
2
|
-
export declare const textBody400: (props: any) => SerializedStyles;
|
|
3
|
-
export declare const textBody4002Lines: (props: any) => SerializedStyles;
|
|
4
|
-
export declare const textBody500: (props: any) => SerializedStyles;
|
|
5
|
-
export declare const textBody5002Lines: (props: any) => SerializedStyles;
|
|
6
|
-
export declare const textBodyLarge400: (props: any) => SerializedStyles;
|
|
7
|
-
export declare const textBodyLarge4002Lines: (props: any) => SerializedStyles;
|
|
8
|
-
export declare const textBodyLarge500: (props: any) => SerializedStyles;
|
|
9
|
-
export declare const textBodySmall400: (props: any) => SerializedStyles;
|
|
10
|
-
export declare const textBodySmall4002Lines: (props: any) => SerializedStyles;
|
|
11
|
-
export declare const textBodySmall500: (props: any) => SerializedStyles;
|
|
12
|
-
export declare const textHeading: (props: any) => SerializedStyles;
|
|
13
|
-
export declare const textHeadingLarge: (props: any) => SerializedStyles;
|
|
14
|
-
export declare const textHeadingSmall: (props: any) => SerializedStyles;
|
|
15
|
-
export declare const textHeadingXLarge: (props: any) => SerializedStyles;
|
|
16
|
-
export declare const textUppercase500: (props: any) => SerializedStyles;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { css } from "@emotion/react";
|
|
2
|
-
import { TEXT_BODY_400, TEXT_BODY_400_2_LINES, TEXT_BODY_500, TEXT_BODY_500_2_LINES, TEXT_BODY_LARGE_400, TEXT_BODY_LARGE_400_2_LINES, TEXT_BODY_LARGE_500, TEXT_BODY_SMALL_400, TEXT_BODY_SMALL_400_2_LINES, TEXT_BODY_SMALL_500, TEXT_HEADING, TEXT_HEADING_LARGE, TEXT_HEADING_SMALL, TEXT_HEADING_XLARGE, TEXT_UPPERCASE_500, } from "../../../theme/common/typography";
|
|
3
|
-
/**
|
|
4
|
-
* Returns typography style for the specified typography variant.
|
|
5
|
-
* @param TYPOGRAPHY - Typography variant name.
|
|
6
|
-
* @returns typography styles for the variant.
|
|
7
|
-
*/
|
|
8
|
-
function typographyToCSS(TYPOGRAPHY) {
|
|
9
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- TODO revisit any.
|
|
10
|
-
return (props) => {
|
|
11
|
-
return css `
|
|
12
|
-
${props.theme.typography[TYPOGRAPHY]}
|
|
13
|
-
`;
|
|
14
|
-
};
|
|
15
|
-
}
|
|
16
|
-
export const textBody400 = typographyToCSS(TEXT_BODY_400);
|
|
17
|
-
export const textBody4002Lines = typographyToCSS(TEXT_BODY_400_2_LINES);
|
|
18
|
-
export const textBody500 = typographyToCSS(TEXT_BODY_500);
|
|
19
|
-
export const textBody5002Lines = typographyToCSS(TEXT_BODY_500_2_LINES);
|
|
20
|
-
export const textBodyLarge400 = typographyToCSS(TEXT_BODY_LARGE_400);
|
|
21
|
-
export const textBodyLarge4002Lines = typographyToCSS(TEXT_BODY_LARGE_400_2_LINES);
|
|
22
|
-
export const textBodyLarge500 = typographyToCSS(TEXT_BODY_LARGE_500);
|
|
23
|
-
export const textBodySmall400 = typographyToCSS(TEXT_BODY_SMALL_400);
|
|
24
|
-
export const textBodySmall4002Lines = typographyToCSS(TEXT_BODY_SMALL_400_2_LINES);
|
|
25
|
-
export const textBodySmall500 = typographyToCSS(TEXT_BODY_SMALL_500);
|
|
26
|
-
export const textHeading = typographyToCSS(TEXT_HEADING);
|
|
27
|
-
export const textHeadingLarge = typographyToCSS(TEXT_HEADING_LARGE);
|
|
28
|
-
export const textHeadingSmall = typographyToCSS(TEXT_HEADING_SMALL);
|
|
29
|
-
export const textHeadingXLarge = typographyToCSS(TEXT_HEADING_XLARGE);
|
|
30
|
-
export const textUppercase500 = typographyToCSS(TEXT_UPPERCASE_500);
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
export declare const PALETTE: {
|
|
2
|
-
readonly ALERT_LIGHT: "var(--mui-palette-alert-light)";
|
|
3
|
-
readonly ALERT_LIGHTEST: "var(--mui-palette-alert-lightest)";
|
|
4
|
-
readonly ALERT_MAIN: "var(--mui-palette-alert-main)";
|
|
5
|
-
readonly BACKGROUND_DEFAULT: "var(--mui-palette-background-default)";
|
|
6
|
-
readonly BACKGROUND_PAPER: "var(--mui-palette-background-paper)";
|
|
7
|
-
readonly COMMON_BACKGROUND: "var(--mui-palette-common-background)";
|
|
8
|
-
readonly COMMON_BLACK: "var(--mui-palette-common-black)";
|
|
9
|
-
readonly COMMON_WHITE: "var(--mui-palette-common-white)";
|
|
10
|
-
readonly ERROR_CONTRAST_TEXT: "var(--mui-palette-error-contrastText)";
|
|
11
|
-
readonly ERROR_DARK: "var(--mui-palette-error-dark)";
|
|
12
|
-
readonly ERROR_LIGHT: "var(--mui-palette-error-light)";
|
|
13
|
-
readonly ERROR_MAIN: "var(--mui-palette-error-main)";
|
|
14
|
-
readonly INFO_CONTRAST_TEXT: "var(--mui-palette-info-contrastText)";
|
|
15
|
-
readonly INFO_DARK: "var(--mui-palette-info-dark)";
|
|
16
|
-
readonly INFO_LIGHT: "var(--mui-palette-info-light)";
|
|
17
|
-
readonly INFO_LIGHTEST: "var(--mui-palette-info-lightest)";
|
|
18
|
-
readonly INFO_MAIN: "var(--mui-palette-info-main)";
|
|
19
|
-
readonly INK_LIGHT: "var(--mui-palette-ink-light)";
|
|
20
|
-
readonly INK_MAIN: "var(--mui-palette-ink-main)";
|
|
21
|
-
readonly PRIMARY_CONTRAST_TEXT: "var(--mui-palette-primary-contrastText)";
|
|
22
|
-
readonly PRIMARY_DARK: "var(--mui-palette-primary-dark)";
|
|
23
|
-
readonly PRIMARY_LIGHT: "var(--mui-palette-primary-light)";
|
|
24
|
-
readonly PRIMARY_LIGHTEST: "var(--mui-palette-primary-lightest)";
|
|
25
|
-
readonly PRIMARY_MAIN: "var(--mui-palette-primary-main)";
|
|
26
|
-
readonly SECONDARY_CONTRAST_TEXT: "var(--mui-palette-secondary-contrastText)";
|
|
27
|
-
readonly SECONDARY_DARK: "var(--mui-palette-secondary-dark)";
|
|
28
|
-
readonly SECONDARY_LIGHT: "var(--mui-palette-secondary-light)";
|
|
29
|
-
readonly SECONDARY_MAIN: "var(--mui-palette-secondary-main)";
|
|
30
|
-
readonly SMOKE_DARK: "var(--mui-palette-smoke-dark)";
|
|
31
|
-
readonly SMOKE_LIGHT: "var(--mui-palette-smoke-light)";
|
|
32
|
-
readonly SMOKE_LIGHTEST: "var(--mui-palette-smoke-lightest)";
|
|
33
|
-
readonly SMOKE_MAIN: "var(--mui-palette-smoke-main)";
|
|
34
|
-
readonly SUCCESS_CONTRAST_TEXT: "var(--mui-palette-success-contrastText)";
|
|
35
|
-
readonly SUCCESS_DARK: "var(--mui-palette-success-dark)";
|
|
36
|
-
readonly SUCCESS_LIGHT: "var(--mui-palette-success-light)";
|
|
37
|
-
readonly SUCCESS_LIGHTEST: "var(--mui-palette-success-lightest)";
|
|
38
|
-
readonly SUCCESS_MAIN: "var(--mui-palette-success-main)";
|
|
39
|
-
readonly TEXT_DISABLED: "var(--mui-palette-text-disabled)";
|
|
40
|
-
readonly TEXT_PRIMARY: "var(--mui-palette-text-primary)";
|
|
41
|
-
readonly TEXT_SECONDARY: "var(--mui-palette-text-secondary)";
|
|
42
|
-
readonly WARNING_CONTRAST_TEXT: "var(--mui-palette-warning-contrastText)";
|
|
43
|
-
readonly WARNING_DARK: "var(--mui-palette-warning-dark)";
|
|
44
|
-
readonly WARNING_LIGHT: "var(--mui-palette-warning-light)";
|
|
45
|
-
readonly WARNING_LIGHTEST: "var(--mui-palette-warning-lightest)";
|
|
46
|
-
readonly WARNING_MAIN: "var(--mui-palette-warning-main)";
|
|
47
|
-
};
|