@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
|
@@ -28,7 +28,7 @@ describe("MarkdownCell", () => {
|
|
|
28
28
|
expect(anchorEl.getAttribute("href")).toBe("https://www.example.com");
|
|
29
29
|
expect(anchorEl.getAttribute("target")).toBe(ANCHOR_TARGET.BLANK);
|
|
30
30
|
expect(anchorEl.getAttribute("rel")).toBe(
|
|
31
|
-
REL_ATTRIBUTE.NO_OPENER_NO_REFERRER
|
|
31
|
+
REL_ATTRIBUTE.NO_OPENER_NO_REFERRER,
|
|
32
32
|
);
|
|
33
33
|
expect(anchorEl).toHaveClass("MuiLink-root");
|
|
34
34
|
});
|
|
@@ -42,7 +42,7 @@ describe("MarkdownCell", () => {
|
|
|
42
42
|
columnDef: { meta: { components: { a: STYLED_ANCHOR } } },
|
|
43
43
|
} as unknown as Column<unknown, string>
|
|
44
44
|
}
|
|
45
|
-
|
|
45
|
+
/>,
|
|
46
46
|
);
|
|
47
47
|
const anchorEl = await screen.findByText("example link");
|
|
48
48
|
expect(anchorEl).toHaveStyleRule("background-color", "green");
|
package/tests/provider.test.tsx
CHANGED
|
@@ -15,7 +15,7 @@ jest.unstable_mockModule(
|
|
|
15
15
|
"../src/hooks/authentication/config/useAuthenticationConfig",
|
|
16
16
|
() => ({
|
|
17
17
|
useAuthenticationConfig: jest.fn(),
|
|
18
|
-
})
|
|
18
|
+
}),
|
|
19
19
|
);
|
|
20
20
|
|
|
21
21
|
const TEST_ID_LOGIN_DIALOG = "login-dialog";
|
|
@@ -29,18 +29,16 @@ jest.unstable_mockModule(
|
|
|
29
29
|
{open ? TEXT_DIALOG_OPEN : TEXT_DIALOG_CLOSED}
|
|
30
30
|
</div>
|
|
31
31
|
),
|
|
32
|
-
})
|
|
32
|
+
}),
|
|
33
33
|
);
|
|
34
34
|
|
|
35
35
|
const { useConfig } = await import("../src/hooks/useConfig");
|
|
36
36
|
const { useAuth } = await import("../src/providers/authentication/auth/hook");
|
|
37
|
-
const { useAuthenticationConfig } =
|
|
38
|
-
"../src/hooks/authentication/config/useAuthenticationConfig"
|
|
39
|
-
);
|
|
37
|
+
const { useAuthenticationConfig } =
|
|
38
|
+
await import("../src/hooks/authentication/config/useAuthenticationConfig");
|
|
40
39
|
|
|
41
|
-
const { LoginGuardProvider } =
|
|
42
|
-
"../src/providers/loginGuard/provider"
|
|
43
|
-
);
|
|
40
|
+
const { LoginGuardProvider } =
|
|
41
|
+
await import("../src/providers/loginGuard/provider");
|
|
44
42
|
|
|
45
43
|
const TEXT_BUTTON_EXPORT = "export";
|
|
46
44
|
|
|
@@ -64,12 +62,12 @@ describe("LoginGuardProvider", () => {
|
|
|
64
62
|
render(
|
|
65
63
|
<LoginGuardProvider>
|
|
66
64
|
<div data-testid="child">child component</div>
|
|
67
|
-
</LoginGuardProvider
|
|
65
|
+
</LoginGuardProvider>,
|
|
68
66
|
);
|
|
69
67
|
|
|
70
68
|
expect(screen.getByTestId("child")).toBeTruthy();
|
|
71
69
|
expect(screen.getByTestId(TEST_ID_LOGIN_DIALOG).textContent).toBe(
|
|
72
|
-
TEXT_DIALOG_CLOSED
|
|
70
|
+
TEXT_DIALOG_CLOSED,
|
|
73
71
|
);
|
|
74
72
|
});
|
|
75
73
|
|
|
@@ -90,7 +88,7 @@ describe("LoginGuardProvider", () => {
|
|
|
90
88
|
</button>
|
|
91
89
|
)}
|
|
92
90
|
</LoginGuardContext.Consumer>
|
|
93
|
-
</LoginGuardProvider
|
|
91
|
+
</LoginGuardProvider>,
|
|
94
92
|
);
|
|
95
93
|
|
|
96
94
|
// Click button requiring login.
|
|
@@ -103,7 +101,7 @@ describe("LoginGuardProvider", () => {
|
|
|
103
101
|
|
|
104
102
|
// Login dialog should not be open.
|
|
105
103
|
expect(screen.getByTestId(TEST_ID_LOGIN_DIALOG).textContent).toBe(
|
|
106
|
-
TEXT_DIALOG_CLOSED
|
|
104
|
+
TEXT_DIALOG_CLOSED,
|
|
107
105
|
);
|
|
108
106
|
});
|
|
109
107
|
|
|
@@ -126,7 +124,7 @@ describe("LoginGuardProvider", () => {
|
|
|
126
124
|
</button>
|
|
127
125
|
)}
|
|
128
126
|
</LoginGuardContext.Consumer>
|
|
129
|
-
</LoginGuardProvider
|
|
127
|
+
</LoginGuardProvider>,
|
|
130
128
|
);
|
|
131
129
|
|
|
132
130
|
// Click button requiring login.
|
|
@@ -139,7 +137,7 @@ describe("LoginGuardProvider", () => {
|
|
|
139
137
|
|
|
140
138
|
// Login dialog should not be open.
|
|
141
139
|
expect(screen.getByTestId(TEST_ID_LOGIN_DIALOG).textContent).toBe(
|
|
142
|
-
TEXT_DIALOG_CLOSED
|
|
140
|
+
TEXT_DIALOG_CLOSED,
|
|
143
141
|
);
|
|
144
142
|
});
|
|
145
143
|
|
|
@@ -155,7 +153,7 @@ describe("LoginGuardProvider", () => {
|
|
|
155
153
|
</button>
|
|
156
154
|
)}
|
|
157
155
|
</LoginGuardContext.Consumer>
|
|
158
|
-
</LoginGuardProvider
|
|
156
|
+
</LoginGuardProvider>,
|
|
159
157
|
);
|
|
160
158
|
|
|
161
159
|
// Click button requiring login.
|
|
@@ -168,7 +166,7 @@ describe("LoginGuardProvider", () => {
|
|
|
168
166
|
|
|
169
167
|
// User is not authenticated; login dialog should be open.
|
|
170
168
|
expect(screen.getByTestId(TEST_ID_LOGIN_DIALOG).textContent).toBe(
|
|
171
|
-
TEXT_DIALOG_OPEN
|
|
169
|
+
TEXT_DIALOG_OPEN,
|
|
172
170
|
);
|
|
173
171
|
|
|
174
172
|
// Simulate user authentication.
|
|
@@ -182,7 +180,7 @@ describe("LoginGuardProvider", () => {
|
|
|
182
180
|
rerender(
|
|
183
181
|
<LoginGuardProvider>
|
|
184
182
|
<div />
|
|
185
|
-
</LoginGuardProvider
|
|
183
|
+
</LoginGuardProvider>,
|
|
186
184
|
);
|
|
187
185
|
|
|
188
186
|
// Callback should be called (in useEffect called on re-render).
|
|
@@ -58,7 +58,7 @@ const createTable = (
|
|
|
58
58
|
tableOptions?: Omit<
|
|
59
59
|
TableOptions<RowData>,
|
|
60
60
|
"columns" | "data" | "getCoreRowModel"
|
|
61
|
-
|
|
61
|
+
>,
|
|
62
62
|
): RenderHookResult<Table<RowData>, unknown> => {
|
|
63
63
|
return renderHook(() =>
|
|
64
64
|
useReactTable({
|
|
@@ -68,7 +68,7 @@ const createTable = (
|
|
|
68
68
|
enableRowSelectionValidation: true,
|
|
69
69
|
getCoreRowModel: getCoreRowModel(),
|
|
70
70
|
...tableOptions,
|
|
71
|
-
})
|
|
71
|
+
}),
|
|
72
72
|
);
|
|
73
73
|
};
|
|
74
74
|
|
|
@@ -95,7 +95,7 @@ describe("RowSelectionValidation Feature", () => {
|
|
|
95
95
|
expect(ROW_SELECTION_VALIDATION).toHaveProperty("getDefaultOptions");
|
|
96
96
|
expect(typeof ROW_SELECTION_VALIDATION.createRow).toBe("function");
|
|
97
97
|
expect(typeof ROW_SELECTION_VALIDATION.getDefaultOptions).toBe(
|
|
98
|
-
"function"
|
|
98
|
+
"function",
|
|
99
99
|
);
|
|
100
100
|
});
|
|
101
101
|
|
|
@@ -113,14 +113,14 @@ describe("RowSelectionValidation Feature", () => {
|
|
|
113
113
|
expect(
|
|
114
114
|
getSelectionValidation(
|
|
115
115
|
firstRowWithoutValidation,
|
|
116
|
-
tableWithoutValidation
|
|
117
|
-
)
|
|
116
|
+
tableWithoutValidation,
|
|
117
|
+
),
|
|
118
118
|
).toBeUndefined();
|
|
119
119
|
});
|
|
120
120
|
|
|
121
121
|
test("should return validation message when validation function is provided", () => {
|
|
122
122
|
expect(
|
|
123
|
-
getSelectionValidation(firstRowWithValidation, tableWithValidation)
|
|
123
|
+
getSelectionValidation(firstRowWithValidation, tableWithValidation),
|
|
124
124
|
).toBe(VALIDATION_MESSAGE.INVALID);
|
|
125
125
|
});
|
|
126
126
|
|
|
@@ -156,7 +156,7 @@ describe("RowSelectionValidation Feature", () => {
|
|
|
156
156
|
expect(getSelectionValidation(rows[0], table)).toBeUndefined();
|
|
157
157
|
expect(getSelectionValidation(rows[2], table)).toBeUndefined();
|
|
158
158
|
expect(getSelectionValidation(rows[1], table)).toBe(
|
|
159
|
-
VALIDATION_MESSAGE.INVALID
|
|
159
|
+
VALIDATION_MESSAGE.INVALID,
|
|
160
160
|
);
|
|
161
161
|
expect(getRowSelectionValidation).toHaveBeenCalledTimes(3);
|
|
162
162
|
});
|
|
@@ -174,13 +174,13 @@ describe("RowSelectionValidation Feature", () => {
|
|
|
174
174
|
|
|
175
175
|
test("should return undefined when no validation function is configured", () => {
|
|
176
176
|
expect(
|
|
177
|
-
firstRowWithoutValidation.getSelectionValidation()
|
|
177
|
+
firstRowWithoutValidation.getSelectionValidation(),
|
|
178
178
|
).toBeUndefined();
|
|
179
179
|
});
|
|
180
180
|
|
|
181
181
|
test("should return validation message when validation function is configured", () => {
|
|
182
182
|
expect(firstRowWithValidation.getSelectionValidation()).toBe(
|
|
183
|
-
VALIDATION_MESSAGE.INVALID
|
|
183
|
+
VALIDATION_MESSAGE.INVALID,
|
|
184
184
|
);
|
|
185
185
|
});
|
|
186
186
|
});
|
|
@@ -240,11 +240,11 @@ describe("RowSelectionValidation Feature", () => {
|
|
|
240
240
|
|
|
241
241
|
expect(rows[0].getSelectionValidation?.()).toBe(VALIDATION_MESSAGE.VALID);
|
|
242
242
|
expect(rows[1].getSelectionValidation?.()).toBe(
|
|
243
|
-
VALIDATION_MESSAGE.INVALID
|
|
243
|
+
VALIDATION_MESSAGE.INVALID,
|
|
244
244
|
);
|
|
245
245
|
expect(rows[2].getSelectionValidation?.()).toBeUndefined();
|
|
246
246
|
expect(rows[3].getSelectionValidation?.()).toBe(
|
|
247
|
-
VALIDATION_MESSAGE.INVALID
|
|
247
|
+
VALIDATION_MESSAGE.INVALID,
|
|
248
248
|
);
|
|
249
249
|
});
|
|
250
250
|
});
|
|
@@ -34,7 +34,7 @@ describe("Table - Filtering", () => {
|
|
|
34
34
|
const cell = row.querySelectorAll("td")[COLUMN_INDEX.STRING];
|
|
35
35
|
const text = cell.textContent;
|
|
36
36
|
expect(text).toMatch(
|
|
37
|
-
/Coronary Artery Disease Study|Myocardial Infarction Study
|
|
37
|
+
/Coronary Artery Disease Study|Myocardial Infarction Study/,
|
|
38
38
|
);
|
|
39
39
|
expect(text).not.toMatch(/Myocardial Infarction Study X/);
|
|
40
40
|
});
|
|
@@ -27,33 +27,29 @@ jest.unstable_mockModule(
|
|
|
27
27
|
"../src/providers/authentication/authentication/hook",
|
|
28
28
|
() => ({
|
|
29
29
|
useAuthentication: jest.fn(),
|
|
30
|
-
})
|
|
30
|
+
}),
|
|
31
31
|
);
|
|
32
32
|
jest.unstable_mockModule(
|
|
33
33
|
"../src/providers/authentication/credentials/hook",
|
|
34
34
|
() => ({
|
|
35
35
|
useCredentials: jest.fn(),
|
|
36
|
-
})
|
|
36
|
+
}),
|
|
37
37
|
);
|
|
38
38
|
jest.unstable_mockModule(
|
|
39
39
|
"../src/providers/authentication/terra/hooks/useFetchProfiles",
|
|
40
40
|
() => ({
|
|
41
41
|
useFetchProfiles: jest.fn(),
|
|
42
|
-
})
|
|
42
|
+
}),
|
|
43
43
|
);
|
|
44
44
|
|
|
45
|
-
const { useAuthentication } =
|
|
46
|
-
"../src/providers/authentication/authentication/hook"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
);
|
|
51
|
-
const {
|
|
52
|
-
"../src/providers/authentication/terra/
|
|
53
|
-
);
|
|
54
|
-
const { TerraProfileProvider } = await import(
|
|
55
|
-
"../src/providers/authentication/terra/provider"
|
|
56
|
-
);
|
|
45
|
+
const { useAuthentication } =
|
|
46
|
+
await import("../src/providers/authentication/authentication/hook");
|
|
47
|
+
const { useCredentials } =
|
|
48
|
+
await import("../src/providers/authentication/credentials/hook");
|
|
49
|
+
const { useFetchProfiles } =
|
|
50
|
+
await import("../src/providers/authentication/terra/hooks/useFetchProfiles");
|
|
51
|
+
const { TerraProfileProvider } =
|
|
52
|
+
await import("../src/providers/authentication/terra/provider");
|
|
57
53
|
|
|
58
54
|
const MOCK_AUTHENTICATION_DISPATCH = jest.fn();
|
|
59
55
|
const MOCK_CREDENTIALS_DISPATCH = jest.fn();
|
|
@@ -85,7 +81,7 @@ describe("TerraProfileProvider", () => {
|
|
|
85
81
|
render(
|
|
86
82
|
<TerraProfileProvider token={TOKEN}>
|
|
87
83
|
<div>Child Component</div>
|
|
88
|
-
</TerraProfileProvider
|
|
84
|
+
</TerraProfileProvider>,
|
|
89
85
|
);
|
|
90
86
|
expect(MOCK_AUTHENTICATION_DISPATCH).not.toHaveBeenCalled();
|
|
91
87
|
expect(MOCK_CREDENTIALS_DISPATCH).not.toHaveBeenCalled();
|
|
@@ -96,10 +92,10 @@ describe("TerraProfileProvider", () => {
|
|
|
96
92
|
render(
|
|
97
93
|
<TerraProfileProvider token={TOKEN}>
|
|
98
94
|
<div>Child Component</div>
|
|
99
|
-
</TerraProfileProvider
|
|
95
|
+
</TerraProfileProvider>,
|
|
100
96
|
);
|
|
101
97
|
expect(MOCK_AUTHENTICATION_DISPATCH).toHaveBeenCalledWith(
|
|
102
|
-
authenticationComplete()
|
|
98
|
+
authenticationComplete(),
|
|
103
99
|
);
|
|
104
100
|
expect(MOCK_CREDENTIALS_DISPATCH).not.toHaveBeenCalled();
|
|
105
101
|
});
|
|
@@ -109,13 +105,13 @@ describe("TerraProfileProvider", () => {
|
|
|
109
105
|
render(
|
|
110
106
|
<TerraProfileProvider token={TOKEN}>
|
|
111
107
|
<div>Child Component</div>
|
|
112
|
-
</TerraProfileProvider
|
|
108
|
+
</TerraProfileProvider>,
|
|
113
109
|
);
|
|
114
110
|
expect(MOCK_AUTHENTICATION_DISPATCH).toHaveBeenCalledWith(
|
|
115
|
-
authenticationComplete()
|
|
111
|
+
authenticationComplete(),
|
|
116
112
|
);
|
|
117
113
|
expect(MOCK_CREDENTIALS_DISPATCH).toHaveBeenCalledWith(
|
|
118
|
-
updateCredentials(TOKEN)
|
|
114
|
+
updateCredentials(TOKEN),
|
|
119
115
|
);
|
|
120
116
|
});
|
|
121
117
|
});
|
package/tests/theme.test.ts
CHANGED
|
@@ -175,14 +175,14 @@ describe("Theme Configuration", () => {
|
|
|
175
175
|
|
|
176
176
|
// Check ends with font-family.
|
|
177
177
|
expect(fontValue).toMatch(
|
|
178
|
-
new RegExp(`${typographyValue.fontFamily}\\)$`)
|
|
178
|
+
new RegExp(`${typographyValue.fontFamily}\\)$`),
|
|
179
179
|
);
|
|
180
180
|
|
|
181
181
|
// Full pattern test.
|
|
182
182
|
expect(fontValue).toMatch(
|
|
183
183
|
new RegExp(
|
|
184
|
-
`^var\\(--font-${variant},\\s+\\d+\\s+\\d+px\\/\\d+px\\s+${typographyValue.fontFamily}\\)
|
|
185
|
-
)
|
|
184
|
+
`^var\\(--font-${variant},\\s+\\d+\\s+\\d+px\\/\\d+px\\s+${typographyValue.fontFamily}\\)$`,
|
|
185
|
+
),
|
|
186
186
|
);
|
|
187
187
|
});
|
|
188
188
|
});
|
|
@@ -209,7 +209,7 @@ describe("Theme Configuration", () => {
|
|
|
209
209
|
|
|
210
210
|
// Full pattern test.
|
|
211
211
|
expect((vars.palette as any)[color][shade]).toEqual(
|
|
212
|
-
`var(--palette-${color}-${shade}, ${value})
|
|
212
|
+
`var(--palette-${color}-${shade}, ${value})`,
|
|
213
213
|
);
|
|
214
214
|
});
|
|
215
215
|
});
|
|
@@ -270,10 +270,10 @@ describe("Theme Configuration", () => {
|
|
|
270
270
|
|
|
271
271
|
// Confirm that breakpoint-based custom styles are present.
|
|
272
272
|
expect(
|
|
273
|
-
hasBreakpointKey(styleKeys, CUSTOM_BREAKPOINTS.values.xs)
|
|
273
|
+
hasBreakpointKey(styleKeys, CUSTOM_BREAKPOINTS.values.xs),
|
|
274
274
|
).toBeTruthy();
|
|
275
275
|
expect(
|
|
276
|
-
hasBreakpointKey(styleKeys, CUSTOM_BREAKPOINTS.values.lg)
|
|
276
|
+
hasBreakpointKey(styleKeys, CUSTOM_BREAKPOINTS.values.lg),
|
|
277
277
|
).toBeTruthy();
|
|
278
278
|
}
|
|
279
279
|
});
|
|
@@ -291,7 +291,7 @@ describe("Theme Configuration", () => {
|
|
|
291
291
|
|
|
292
292
|
it("should apply default background color", () => {
|
|
293
293
|
expect(theme.palette.background.default).toEqual(
|
|
294
|
-
DEFAULT_PALETTE_BACKGROUND.default
|
|
294
|
+
DEFAULT_PALETTE_BACKGROUND.default,
|
|
295
295
|
);
|
|
296
296
|
});
|
|
297
297
|
|
|
@@ -328,7 +328,7 @@ describe("Theme Configuration", () => {
|
|
|
328
328
|
|
|
329
329
|
it("should apply custom primary color when specified", () => {
|
|
330
330
|
expect(customTheme.palette.primary.main).toEqual(
|
|
331
|
-
CUSTOM_PALETTE_PRIMARY.main
|
|
331
|
+
CUSTOM_PALETTE_PRIMARY.main,
|
|
332
332
|
);
|
|
333
333
|
// Validate that primary dark and lightest are not overridden.
|
|
334
334
|
validatePaletteColor(customTheme.palette.primary, {
|
|
@@ -376,7 +376,7 @@ describe("Theme Configuration", () => {
|
|
|
376
376
|
expect("body-400" in customTheme.typography).toBe(true);
|
|
377
377
|
validateTypographyStyle(
|
|
378
378
|
customTheme.typography["body-400"],
|
|
379
|
-
CUSTOM_BODY_400
|
|
379
|
+
CUSTOM_BODY_400,
|
|
380
380
|
);
|
|
381
381
|
});
|
|
382
382
|
|
|
@@ -403,7 +403,7 @@ describe("Theme Configuration", () => {
|
|
|
403
403
|
*/
|
|
404
404
|
function filterTypographyVariants(value: string): boolean {
|
|
405
405
|
return !/fontFamily|fontSize|fontWeightLight|fontWeightRegular|fontWeightMedium|fontWeightBold|htmlFontSize|allVariants/.test(
|
|
406
|
-
value
|
|
406
|
+
value,
|
|
407
407
|
);
|
|
408
408
|
}
|
|
409
409
|
|
|
@@ -415,7 +415,7 @@ function filterTypographyVariants(value: string): boolean {
|
|
|
415
415
|
*/
|
|
416
416
|
function hasBreakpointKey(keys: string[], breakpoint: number): boolean {
|
|
417
417
|
return keys.some(
|
|
418
|
-
(key) => /^@media/.test(key) && key.includes(String(breakpoint))
|
|
418
|
+
(key) => /^@media/.test(key) && key.includes(String(breakpoint)),
|
|
419
419
|
);
|
|
420
420
|
}
|
|
421
421
|
|
|
@@ -441,7 +441,7 @@ function isPaletteColor(color: unknown): color is PaletteColor {
|
|
|
441
441
|
*/
|
|
442
442
|
function validatePaletteColor(
|
|
443
443
|
actual: unknown,
|
|
444
|
-
expected: Record<string, string
|
|
444
|
+
expected: Record<string, string>,
|
|
445
445
|
): void {
|
|
446
446
|
expect(isPaletteColor(actual)).toBe(true);
|
|
447
447
|
for (const [key, value] of Object.entries(expected)) {
|
|
@@ -457,7 +457,7 @@ function validatePaletteColor(
|
|
|
457
457
|
*/
|
|
458
458
|
export function validateTypographyStyle(
|
|
459
459
|
actual: TypographyStyle,
|
|
460
|
-
expected: TypographyStyle
|
|
460
|
+
expected: TypographyStyle,
|
|
461
461
|
): void {
|
|
462
462
|
for (const [key, value] of Object.entries(expected)) {
|
|
463
463
|
expect(actual[key]).toEqual(value);
|
|
@@ -18,17 +18,17 @@ describe("useFileLocation", () => {
|
|
|
18
18
|
});
|
|
19
19
|
test("url is invalid", () => {
|
|
20
20
|
expect(() => buildFetchFileUrl(URL_INVALID)).toThrowError(
|
|
21
|
-
`Invalid file URL: ${URL_INVALID}
|
|
21
|
+
`Invalid file URL: ${URL_INVALID}`,
|
|
22
22
|
);
|
|
23
23
|
});
|
|
24
24
|
test("url with 'fetch' prepended in path", () => {
|
|
25
25
|
expect(buildFetchFileUrl(URL_WITH_FETCH_PREPEND)).toEqual(
|
|
26
|
-
URL_WITH_FETCH_PREPEND
|
|
26
|
+
URL_WITH_FETCH_PREPEND,
|
|
27
27
|
);
|
|
28
28
|
});
|
|
29
29
|
test("url without 'fetch' prepended in path", () => {
|
|
30
30
|
expect(buildFetchFileUrl(URL_WITHOUT_FETCH_PREPEND)).toEqual(
|
|
31
|
-
URL_WITH_FETCH_PREPEND
|
|
31
|
+
URL_WITH_FETCH_PREPEND,
|
|
32
32
|
);
|
|
33
33
|
});
|
|
34
34
|
});
|
|
@@ -24,12 +24,10 @@ jest.unstable_mockModule("../src/hooks/useFileManifestState", () => ({
|
|
|
24
24
|
|
|
25
25
|
const { useConfig } = await import("../src/hooks/useConfig");
|
|
26
26
|
const { useCatalog } = await import("../src/hooks/useCatalog");
|
|
27
|
-
const { useFileManifestState } =
|
|
28
|
-
"../src/hooks/useFileManifestState"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"../src/hooks/useRequestManifest/useRequestManifest"
|
|
32
|
-
);
|
|
27
|
+
const { useFileManifestState } =
|
|
28
|
+
await import("../src/hooks/useFileManifestState");
|
|
29
|
+
const { useRequestManifest } =
|
|
30
|
+
await import("../src/hooks/useRequestManifest/useRequestManifest");
|
|
33
31
|
|
|
34
32
|
const MOCK_USE_CATALOG = useCatalog as jest.MockedFunction<typeof useCatalog>;
|
|
35
33
|
const MOCK_USE_CONFIG = useConfig as jest.MockedFunction<
|
|
@@ -57,7 +55,7 @@ describe("useRequestManifest", () => {
|
|
|
57
55
|
test("requestMethod is always METHOD.PUT regardless of conditions", () => {
|
|
58
56
|
MOCK_USE_CATALOG.mockReturnValue(undefined);
|
|
59
57
|
const { result } = renderHook(() =>
|
|
60
|
-
useRequestManifest(undefined, FORM_FACET.INITIAL_SET)
|
|
58
|
+
useRequestManifest(undefined, FORM_FACET.INITIAL_SET),
|
|
61
59
|
);
|
|
62
60
|
expect(result.current.requestMethod).toEqual(METHOD.PUT);
|
|
63
61
|
expect(result.current.requestParams).toBeUndefined();
|
|
@@ -148,8 +146,8 @@ describe("useRequestManifest", () => {
|
|
|
148
146
|
const { result } = renderHook(() =>
|
|
149
147
|
useRequestManifest(
|
|
150
148
|
MANIFEST_DOWNLOAD_FORMAT.VERBATIM_PFB,
|
|
151
|
-
FORM_FACET.SUBSET
|
|
152
|
-
)
|
|
149
|
+
FORM_FACET.SUBSET,
|
|
150
|
+
),
|
|
153
151
|
);
|
|
154
152
|
expect(result.current.requestMethod).toEqual(METHOD.PUT);
|
|
155
153
|
expect(result.current.requestParams).toBeDefined();
|
|
@@ -160,8 +158,8 @@ describe("useRequestManifest", () => {
|
|
|
160
158
|
const { result } = renderHook(() =>
|
|
161
159
|
useRequestManifest(
|
|
162
160
|
MANIFEST_DOWNLOAD_FORMAT.VERBATIM_PFB,
|
|
163
|
-
FORM_FACET.COMPLETE_SET
|
|
164
|
-
)
|
|
161
|
+
FORM_FACET.COMPLETE_SET,
|
|
162
|
+
),
|
|
165
163
|
);
|
|
166
164
|
expect(result.current.requestMethod).toEqual(METHOD.PUT);
|
|
167
165
|
expect(result.current.requestParams).toBeDefined();
|
|
@@ -195,7 +193,7 @@ function testRequestManifest({
|
|
|
195
193
|
formFacet?: FormFacet;
|
|
196
194
|
}): void {
|
|
197
195
|
const { result } = renderHook(() =>
|
|
198
|
-
useRequestManifest(fileManifestFormat, formFacet)
|
|
196
|
+
useRequestManifest(fileManifestFormat, formFacet),
|
|
199
197
|
);
|
|
200
198
|
expect(result.current.requestMethod).toEqual(expectedMethod);
|
|
201
199
|
expect(result.current.requestParams).toEqual(expectedParams);
|
|
@@ -52,9 +52,8 @@ jest.unstable_mockModule("../src/hooks/useRouteHistory", () => ({
|
|
|
52
52
|
|
|
53
53
|
const Router = (await import("next/router")).default;
|
|
54
54
|
const { useRouteHistory } = await import("../src/hooks/useRouteHistory");
|
|
55
|
-
const { useSessionActive } =
|
|
56
|
-
"../src/hooks/authentication/session/useSessionActive"
|
|
57
|
-
);
|
|
55
|
+
const { useSessionActive } =
|
|
56
|
+
await import("../src/hooks/authentication/session/useSessionActive");
|
|
58
57
|
|
|
59
58
|
const MOCK_USE_ROUTE_HISTORY = useRouteHistory as jest.MockedFunction<
|
|
60
59
|
typeof useRouteHistory
|
|
@@ -66,21 +65,21 @@ describe("useSessionActive", () => {
|
|
|
66
65
|
MOCK_USE_ROUTE_HISTORY.mockReturnValue({
|
|
67
66
|
callbackUrl: jest.fn(
|
|
68
67
|
(transformFn?: TransformRouteFn | undefined) =>
|
|
69
|
-
transformFn?.(ROUTES) ?? ROOT_PATH
|
|
68
|
+
transformFn?.(ROUTES) ?? ROOT_PATH,
|
|
70
69
|
),
|
|
71
70
|
});
|
|
72
71
|
});
|
|
73
72
|
|
|
74
73
|
test("does not redirect if auth status and authentication status is PENDING", () => {
|
|
75
74
|
renderHook(() =>
|
|
76
|
-
useSessionActive(AUTH_STATE_PENDING, AUTHENTICATION_STATE_PENDING)
|
|
75
|
+
useSessionActive(AUTH_STATE_PENDING, AUTHENTICATION_STATE_PENDING),
|
|
77
76
|
);
|
|
78
77
|
expect(Router.push).not.toHaveBeenCalled();
|
|
79
78
|
});
|
|
80
79
|
|
|
81
80
|
test("does not redirect if auth status is PENDING and authentication status is SETTLED", () => {
|
|
82
81
|
renderHook(() =>
|
|
83
|
-
useSessionActive(AUTH_STATE_PENDING, AUTHENTICATION_STATE_SETTLED)
|
|
82
|
+
useSessionActive(AUTH_STATE_PENDING, AUTHENTICATION_STATE_SETTLED),
|
|
84
83
|
);
|
|
85
84
|
expect(Router.push).not.toHaveBeenCalled();
|
|
86
85
|
});
|
|
@@ -89,8 +88,8 @@ describe("useSessionActive", () => {
|
|
|
89
88
|
renderHook(() =>
|
|
90
89
|
useSessionActive(
|
|
91
90
|
AUTH_STATE_UNAUTHENTICATED_SETTLED,
|
|
92
|
-
AUTHENTICATION_STATE_SETTLED
|
|
93
|
-
)
|
|
91
|
+
AUTHENTICATION_STATE_SETTLED,
|
|
92
|
+
),
|
|
94
93
|
);
|
|
95
94
|
expect(Router.push).toHaveBeenCalled();
|
|
96
95
|
});
|
|
@@ -99,8 +98,8 @@ describe("useSessionActive", () => {
|
|
|
99
98
|
renderHook(() =>
|
|
100
99
|
useSessionActive(
|
|
101
100
|
AUTH_STATE_AUTHENTICATED_SETTLED,
|
|
102
|
-
AUTHENTICATION_STATE_SETTLED
|
|
103
|
-
)
|
|
101
|
+
AUTHENTICATION_STATE_SETTLED,
|
|
102
|
+
),
|
|
104
103
|
);
|
|
105
104
|
expect(Router.push).toHaveBeenCalledWith(ROUTES[1]);
|
|
106
105
|
});
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { jest } from "@jest/globals";
|
|
2
|
+
import { act, renderHook } from "@testing-library/react";
|
|
3
|
+
|
|
4
|
+
const { useWindowResize } = await import("../src/hooks/useWindowResize");
|
|
5
|
+
|
|
6
|
+
describe("useWindowResize", () => {
|
|
7
|
+
beforeEach(() => {
|
|
8
|
+
jest.useFakeTimers();
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
afterEach(() => {
|
|
12
|
+
jest.clearAllTimers();
|
|
13
|
+
jest.useRealTimers();
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
test("returns current window dimensions", () => {
|
|
17
|
+
// Set window dimensions
|
|
18
|
+
Object.defineProperty(window, "innerWidth", {
|
|
19
|
+
configurable: true,
|
|
20
|
+
value: 1024,
|
|
21
|
+
writable: true,
|
|
22
|
+
});
|
|
23
|
+
Object.defineProperty(window, "innerHeight", {
|
|
24
|
+
configurable: true,
|
|
25
|
+
value: 768,
|
|
26
|
+
writable: true,
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
const { result } = renderHook(() => useWindowResize());
|
|
30
|
+
|
|
31
|
+
expect(result.current).toEqual({ height: 768, width: 1024 });
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
test("updates dimensions on window resize", () => {
|
|
35
|
+
// Set initial dimensions
|
|
36
|
+
Object.defineProperty(window, "innerWidth", {
|
|
37
|
+
configurable: true,
|
|
38
|
+
value: 1024,
|
|
39
|
+
writable: true,
|
|
40
|
+
});
|
|
41
|
+
Object.defineProperty(window, "innerHeight", {
|
|
42
|
+
configurable: true,
|
|
43
|
+
value: 768,
|
|
44
|
+
writable: true,
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
const { result } = renderHook(() => useWindowResize(100));
|
|
48
|
+
|
|
49
|
+
expect(result.current).toEqual({ height: 768, width: 1024 });
|
|
50
|
+
|
|
51
|
+
// Simulate window resize
|
|
52
|
+
act(() => {
|
|
53
|
+
Object.defineProperty(window, "innerWidth", {
|
|
54
|
+
configurable: true,
|
|
55
|
+
value: 1920,
|
|
56
|
+
writable: true,
|
|
57
|
+
});
|
|
58
|
+
Object.defineProperty(window, "innerHeight", {
|
|
59
|
+
configurable: true,
|
|
60
|
+
value: 1080,
|
|
61
|
+
writable: true,
|
|
62
|
+
});
|
|
63
|
+
window.dispatchEvent(new Event("resize"));
|
|
64
|
+
|
|
65
|
+
// Fast-forward timeout
|
|
66
|
+
jest.advanceTimersByTime(100);
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
expect(result.current).toEqual({ height: 1080, width: 1920 });
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
test("debounces resize events with the specified timeout", () => {
|
|
73
|
+
Object.defineProperty(window, "innerWidth", {
|
|
74
|
+
configurable: true,
|
|
75
|
+
value: 1024,
|
|
76
|
+
writable: true,
|
|
77
|
+
});
|
|
78
|
+
Object.defineProperty(window, "innerHeight", {
|
|
79
|
+
configurable: true,
|
|
80
|
+
value: 768,
|
|
81
|
+
writable: true,
|
|
82
|
+
});
|
|
83
|
+
|
|
84
|
+
const { result } = renderHook(() => useWindowResize(200));
|
|
85
|
+
|
|
86
|
+
// Simulate multiple rapid resize events
|
|
87
|
+
act(() => {
|
|
88
|
+
Object.defineProperty(window, "innerWidth", {
|
|
89
|
+
configurable: true,
|
|
90
|
+
value: 1920,
|
|
91
|
+
writable: true,
|
|
92
|
+
});
|
|
93
|
+
Object.defineProperty(window, "innerHeight", {
|
|
94
|
+
configurable: true,
|
|
95
|
+
value: 1080,
|
|
96
|
+
writable: true,
|
|
97
|
+
});
|
|
98
|
+
window.dispatchEvent(new Event("resize"));
|
|
99
|
+
|
|
100
|
+
// Fast-forward only 100ms - should not update yet
|
|
101
|
+
jest.advanceTimersByTime(100);
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
// Should still have initial dimensions
|
|
105
|
+
expect(result.current).toEqual({ height: 768, width: 1024 });
|
|
106
|
+
|
|
107
|
+
act(() => {
|
|
108
|
+
// Fast-forward remaining 100ms
|
|
109
|
+
jest.advanceTimersByTime(100);
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
// Now should have updated dimensions
|
|
113
|
+
expect(result.current).toEqual({ height: 1080, width: 1920 });
|
|
114
|
+
});
|
|
115
|
+
|
|
116
|
+
test("cleans up event listener on unmount", () => {
|
|
117
|
+
const removeEventListenerSpy = jest.spyOn(window, "removeEventListener");
|
|
118
|
+
|
|
119
|
+
const { unmount } = renderHook(() => useWindowResize());
|
|
120
|
+
|
|
121
|
+
unmount();
|
|
122
|
+
|
|
123
|
+
expect(removeEventListenerSpy).toHaveBeenCalledWith(
|
|
124
|
+
"resize",
|
|
125
|
+
expect.any(Function),
|
|
126
|
+
);
|
|
127
|
+
|
|
128
|
+
removeEventListenerSpy.mockRestore();
|
|
129
|
+
});
|
|
130
|
+
});
|