@databiosphere/findable-ui 46.1.3 → 48.1.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/.eslintrc.json +2 -1
- package/.github/copilot-instructions.md +176 -0
- package/.github/workflows/release-please.yml +30 -4
- package/.github/workflows/run-checks.yml +2 -2
- package/.husky/pre-commit +7 -0
- package/.release-please-manifest.json +1 -1
- package/.storybook/main.ts +6 -48
- package/CHANGELOG.md +56 -0
- package/CLAUDE.md +214 -0
- package/README.md +4 -10
- 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 +9 -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 +132 -0
- package/jest.config.js +0 -4
- package/lib/common/utils.js +1 -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 -1
- 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 -1
- 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 -0
- 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 -1
- 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/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 +3 -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/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/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/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 +4 -4
- 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 +9 -3
- 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 +5 -3
- 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/useEntityService.js +1 -2
- package/lib/hooks/useFileLocation.js +1 -1
- 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/types.js +1 -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 +52 -62
- 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 +3 -5
- 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/filters/sort/models/utils.ts +3 -3
- package/src/common/utils.ts +1 -1
- 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 -4
- 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 -3
- 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 -1
- 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 -4
- 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 +16 -16
- 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 +1 -1
- 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 +3 -3
- 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/chartView.stories.tsx +2 -2
- package/src/components/Index/components/EntityView/components/views/ChartView/utils.ts +1 -1
- 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 +12 -10
- 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 +6 -2
- 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 +6 -6
- 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 +21 -21
- 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 +2 -2
- 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 +2 -2
- 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/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 +11 -9
- package/lib/mocks/@storybook/addon-actions.d.ts +0 -9
- package/lib/mocks/@storybook/addon-actions.js +0 -9
- package/src/mocks/@storybook/addon-actions.ts +0 -10
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { JSX, ReactNode, useCallback, useRef } from "react";
|
|
2
2
|
import { NextHistoryState } from "../../../services/beforePopState/types";
|
|
3
3
|
import { useOnPopState } from "../../../services/beforePopState/useOnPopState";
|
|
4
4
|
import { WasPopContext } from "./context";
|
|
@@ -21,7 +21,7 @@ export function WasPopProvider({
|
|
|
21
21
|
}: {
|
|
22
22
|
children: ReactNode;
|
|
23
23
|
}): JSX.Element {
|
|
24
|
-
const popRef = useRef<NextHistoryState | undefined>();
|
|
24
|
+
const popRef = useRef<NextHistoryState | undefined>(undefined);
|
|
25
25
|
|
|
26
26
|
// Pop callback.
|
|
27
27
|
const onBeforePopState = useCallback((state: NextHistoryState) => {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { createContext, JSX, ReactNode, useEffect, useMemo } from "react";
|
|
2
2
|
import { fetchSystemStatusFromURL } from "../entity/api/service";
|
|
3
3
|
import { useAsync } from "../hooks/useAsync";
|
|
4
4
|
import { useCatalog } from "../hooks/useCatalog";
|
|
@@ -41,7 +41,7 @@ export interface SystemStatus {
|
|
|
41
41
|
* System status context.
|
|
42
42
|
*/
|
|
43
43
|
export const SystemStatusContext = createContext<SystemStatus>(
|
|
44
|
-
DEFAULT_SYSTEM_STATUS
|
|
44
|
+
DEFAULT_SYSTEM_STATUS,
|
|
45
45
|
);
|
|
46
46
|
|
|
47
47
|
export interface SystemStatusProps {
|
|
@@ -59,7 +59,7 @@ export function SystemStatusProvider<R>({
|
|
|
59
59
|
// Build system status URL.
|
|
60
60
|
const url = useMemo(
|
|
61
61
|
() => getSystemStatusURL(apiPath, catalog),
|
|
62
|
-
[apiPath, catalog]
|
|
62
|
+
[apiPath, catalog],
|
|
63
63
|
);
|
|
64
64
|
|
|
65
65
|
// System status (raw) response.
|
|
@@ -103,7 +103,7 @@ export function SystemStatusProvider<R>({
|
|
|
103
103
|
*/
|
|
104
104
|
function getSystemStatusURL(
|
|
105
105
|
path: string | undefined,
|
|
106
|
-
catalog: string | undefined
|
|
106
|
+
catalog: string | undefined,
|
|
107
107
|
): string | undefined {
|
|
108
108
|
if (!path || !catalog) return;
|
|
109
109
|
const url = new URL(path);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Args, ArgTypes } from "@storybook/
|
|
1
|
+
import type { Args, ArgTypes } from "@storybook/nextjs-vite";
|
|
2
2
|
import { CONTROL_CONFIG_MAP } from "./constants";
|
|
3
3
|
import { CONTROL_TYPE } from "./types";
|
|
4
4
|
|
|
@@ -10,9 +10,9 @@ import { CONTROL_TYPE } from "./types";
|
|
|
10
10
|
*/
|
|
11
11
|
export function configureControls<TArg = Args>(
|
|
12
12
|
keys: (keyof TArg)[],
|
|
13
|
-
controlType: CONTROL_TYPE
|
|
13
|
+
controlType: CONTROL_TYPE,
|
|
14
14
|
): Partial<ArgTypes<TArg>> {
|
|
15
15
|
return Object.fromEntries(
|
|
16
|
-
keys.map((key) => [key, { control: CONTROL_CONFIG_MAP[controlType] }])
|
|
16
|
+
keys.map((key) => [key, { control: CONTROL_CONFIG_MAP[controlType] }]),
|
|
17
17
|
) as Partial<ArgTypes<TArg>>;
|
|
18
18
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ThemeProvider as EmotionThemeProvider } from "@emotion/react";
|
|
2
2
|
import { CssBaseline, ThemeProvider } from "@mui/material";
|
|
3
|
-
import { Preview } from "@storybook/
|
|
3
|
+
import { Preview } from "@storybook/nextjs-vite";
|
|
4
4
|
import React from "react";
|
|
5
5
|
import { createAppTheme } from "../theme/theme";
|
|
6
6
|
|
|
@@ -7,7 +7,7 @@ import { ThemeProps } from "../../../theme/types";
|
|
|
7
7
|
* @returns Typography styles.
|
|
8
8
|
*/
|
|
9
9
|
export function typographyToCSS(
|
|
10
|
-
variant: keyof ThemeProps["theme"]["typography"]
|
|
10
|
+
variant: keyof ThemeProps["theme"]["typography"],
|
|
11
11
|
) {
|
|
12
12
|
return (props: ThemeProps): SerializedStyles => {
|
|
13
13
|
return css(props.theme.typography[variant]);
|
package/src/tests/utils.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { escapeRegExp } from "../common/utils";
|
|
|
7
7
|
* @returns The button element.
|
|
8
8
|
*/
|
|
9
9
|
export function getButton<T extends HTMLElement = HTMLElement>(
|
|
10
|
-
name: string | RegExp
|
|
10
|
+
name: string | RegExp,
|
|
11
11
|
): T {
|
|
12
12
|
return screen.getByRole("button", { name });
|
|
13
13
|
}
|
|
@@ -18,7 +18,7 @@ export function getButton<T extends HTMLElement = HTMLElement>(
|
|
|
18
18
|
* @returns The input element.
|
|
19
19
|
*/
|
|
20
20
|
export function getLabelText<T extends HTMLElement = HTMLElement>(
|
|
21
|
-
text: string
|
|
21
|
+
text: string,
|
|
22
22
|
): T {
|
|
23
23
|
return screen.getByLabelText(text);
|
|
24
24
|
}
|
|
@@ -47,7 +47,7 @@ export function getRole<T extends HTMLElement = HTMLElement>(role: string): T {
|
|
|
47
47
|
* @returns The element.
|
|
48
48
|
*/
|
|
49
49
|
export function getText<T extends HTMLElement = HTMLElement>(
|
|
50
|
-
text: string | RegExp
|
|
50
|
+
text: string | RegExp,
|
|
51
51
|
): T {
|
|
52
52
|
return screen.getByText(text);
|
|
53
53
|
}
|
|
@@ -7,7 +7,7 @@ import { ThemeOptions } from "@mui/material";
|
|
|
7
7
|
* @returns Breakpoint configuration object with values for xs, sm, md, lg breakpoints.
|
|
8
8
|
*/
|
|
9
9
|
export const breakpoints = (
|
|
10
|
-
themeOptions: ThemeOptions
|
|
10
|
+
themeOptions: ThemeOptions,
|
|
11
11
|
): ThemeOptions["breakpoints"] => ({
|
|
12
12
|
values: {
|
|
13
13
|
lg: 1440,
|
|
@@ -7,7 +7,7 @@ import { ThemeOptions, TypographyVariantsOptions } from "@mui/material";
|
|
|
7
7
|
* @returns Object containing fontFamily (custom or default "Inter").
|
|
8
8
|
*/
|
|
9
9
|
export const fontStyles = (
|
|
10
|
-
themeOptions: ThemeOptions
|
|
10
|
+
themeOptions: ThemeOptions,
|
|
11
11
|
): Pick<TypographyVariantsOptions, "fontFamily"> => {
|
|
12
12
|
const typography = themeOptions.typography || {};
|
|
13
13
|
|
package/src/theme/theme.ts
CHANGED
package/src/utils/database.ts
CHANGED
|
@@ -30,7 +30,7 @@ export const database = (<T>(): DatabaseReturn<T> => {
|
|
|
30
30
|
const entityDetailById = entityDetailByEntityListType.get(entityListType);
|
|
31
31
|
if (!entityDetailById) {
|
|
32
32
|
throw new Error(
|
|
33
|
-
"No database entry for entityListType: " + entityListType
|
|
33
|
+
"No database entry for entityListType: " + entityListType,
|
|
34
34
|
);
|
|
35
35
|
}
|
|
36
36
|
return entityDetailById.get(entityId);
|
|
@@ -39,7 +39,7 @@ export const database = (<T>(): DatabaseReturn<T> => {
|
|
|
39
39
|
const { getId } = getEntityConfigFromConfig(entityListType);
|
|
40
40
|
if (!getId) {
|
|
41
41
|
throw new Error(
|
|
42
|
-
"No getId function configured for entity: " + entityListType
|
|
42
|
+
"No getId function configured for entity: " + entityListType,
|
|
43
43
|
);
|
|
44
44
|
}
|
|
45
45
|
|
|
@@ -16,7 +16,7 @@ export interface SearchParams {
|
|
|
16
16
|
export const fetchQueryParams = (
|
|
17
17
|
filters: Filters,
|
|
18
18
|
catalog: string,
|
|
19
|
-
searchParams: SearchParams | undefined
|
|
19
|
+
searchParams: SearchParams | undefined,
|
|
20
20
|
): URLSearchParams => {
|
|
21
21
|
// Build request params.
|
|
22
22
|
return new URLSearchParams({
|
|
@@ -20,7 +20,7 @@ function isMdxFile(fileName: string): boolean {
|
|
|
20
20
|
export function mapMDXSlugByFilePaths(
|
|
21
21
|
docsDirectory: string,
|
|
22
22
|
dirPath = docsDirectory,
|
|
23
|
-
slugByFilePaths: Map<string, string[]> = new Map()
|
|
23
|
+
slugByFilePaths: Map<string, string[]> = new Map(),
|
|
24
24
|
): Map<string, string[]> {
|
|
25
25
|
const dirents = fs.readdirSync(dirPath, { withFileTypes: true });
|
|
26
26
|
return dirents.reduce((acc, dirent) => {
|
|
@@ -40,7 +40,7 @@ export function mapMDXSlugByFilePaths(
|
|
|
40
40
|
mapMDXSlugByFilePaths(
|
|
41
41
|
docsDirectory,
|
|
42
42
|
path.resolve(dirPath, dirent.name),
|
|
43
|
-
acc
|
|
43
|
+
acc,
|
|
44
44
|
);
|
|
45
45
|
}
|
|
46
46
|
return acc;
|
|
@@ -7,7 +7,7 @@ import { FrontmatterProps } from "./types";
|
|
|
7
7
|
* @returns Frontmatter.
|
|
8
8
|
*/
|
|
9
9
|
export function validateMatter<F extends object>(
|
|
10
|
-
data: matter.GrayMatterFile<string>["data"]
|
|
10
|
+
data: matter.GrayMatterFile<string>["data"],
|
|
11
11
|
): FrontmatterProps<F> | undefined {
|
|
12
12
|
if (
|
|
13
13
|
"title" in data &&
|
|
@@ -1,20 +1,24 @@
|
|
|
1
1
|
import { Plugin } from "unified";
|
|
2
2
|
import { visit } from "unist-util-visit";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { generateUniqueId, isTextNode, slugifyHeading } from "./utils";
|
|
4
|
+
import type { Root, Element, ElementContent } from "hast";
|
|
5
|
+
import type { VFile } from "vfile";
|
|
5
6
|
|
|
6
7
|
/**
|
|
7
8
|
* Rehype plugin to generate an ID for each heading in MDX content.
|
|
8
9
|
* @returns plugin to generate an ID for each heading in MDX content.
|
|
9
10
|
*/
|
|
10
|
-
export
|
|
11
|
-
|
|
11
|
+
export const rehypeSlug: Plugin = () => {
|
|
12
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars -- Required by unified, but not used.
|
|
13
|
+
return (tree: Root, file: VFile) => {
|
|
12
14
|
const setOfIds = new Set<string>();
|
|
13
|
-
visit(tree, "element", (node) => {
|
|
15
|
+
visit(tree, "element", (node: Element) => {
|
|
14
16
|
if (/^h[1-6]$/.test(node.tagName)) {
|
|
15
17
|
const headingText = getHeadingTextValue(node.children);
|
|
16
18
|
const headingSlug = slugifyHeading(headingText);
|
|
17
19
|
const id = generateUniqueId(setOfIds, headingSlug);
|
|
20
|
+
// Defensive nullish check for node.properties.
|
|
21
|
+
node.properties = node.properties ?? {};
|
|
18
22
|
// Add the ID to the heading element.
|
|
19
23
|
node.properties.id = id;
|
|
20
24
|
node.properties.style = "position: relative;";
|
|
@@ -27,10 +31,34 @@ export function rehypeSlug(): Plugin {
|
|
|
27
31
|
value: id,
|
|
28
32
|
},
|
|
29
33
|
],
|
|
34
|
+
children: [],
|
|
30
35
|
name: "AnchorLink",
|
|
31
36
|
type: "mdxJsxFlowElement",
|
|
32
37
|
});
|
|
33
38
|
}
|
|
34
39
|
});
|
|
35
40
|
};
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Returns the value of the heading.
|
|
45
|
+
* @param children - Phrasing content.
|
|
46
|
+
* @param value - List of heading text values.
|
|
47
|
+
* @returns heading text value.
|
|
48
|
+
*/
|
|
49
|
+
export function getHeadingTextValue(
|
|
50
|
+
children: ElementContent[],
|
|
51
|
+
value: string[] = [],
|
|
52
|
+
): string {
|
|
53
|
+
for (const child of children) {
|
|
54
|
+
if (isTextNode(child)) {
|
|
55
|
+
value.push(child.value);
|
|
56
|
+
}
|
|
57
|
+
if ("children" in child && Array.isArray(child.children)) {
|
|
58
|
+
// Recurse into nested children, accumulating text into the shared `value` array.
|
|
59
|
+
// The return value is ignored here because accumulation happens via in-place mutation.
|
|
60
|
+
getHeadingTextValue(child.children, value);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
return value.join("");
|
|
36
64
|
}
|
|
@@ -2,7 +2,7 @@ import { Heading, PhrasingContent, Root } from "mdast";
|
|
|
2
2
|
import { Plugin } from "unified";
|
|
3
3
|
import { visit } from "unist-util-visit";
|
|
4
4
|
import { OutlineItem } from "../../../components/Layout/components/Outline/types";
|
|
5
|
-
import { generateUniqueId, slugifyHeading } from "./utils";
|
|
5
|
+
import { generateUniqueId, isTextNode, slugifyHeading } from "./utils";
|
|
6
6
|
|
|
7
7
|
interface Options {
|
|
8
8
|
depth?: { max?: number; min?: number };
|
|
@@ -19,15 +19,14 @@ interface Options {
|
|
|
19
19
|
* @param options.outline - Outline items.
|
|
20
20
|
* @returns plugin to generate an outline from MDX content.
|
|
21
21
|
*/
|
|
22
|
-
export
|
|
22
|
+
export const remarkHeadings: Plugin<[Options]> = ({
|
|
23
23
|
depth: { max = 3, min = 2 } = {},
|
|
24
24
|
outline,
|
|
25
|
-
}: Options)
|
|
25
|
+
}: Options) => {
|
|
26
26
|
return (tree: Root): void => {
|
|
27
27
|
const setOfIds = new Set<string>();
|
|
28
|
-
visit(tree, "heading", (node) => {
|
|
29
|
-
const
|
|
30
|
-
const { children, depth } = heading;
|
|
28
|
+
visit(tree, "heading", (node: Heading) => {
|
|
29
|
+
const { children, depth } = node;
|
|
31
30
|
|
|
32
31
|
if (depth < min || depth > max) return;
|
|
33
32
|
|
|
@@ -41,7 +40,7 @@ export function remarkHeadings({
|
|
|
41
40
|
});
|
|
42
41
|
});
|
|
43
42
|
};
|
|
44
|
-
}
|
|
43
|
+
};
|
|
45
44
|
|
|
46
45
|
/**
|
|
47
46
|
* Returns the value of the heading.
|
|
@@ -51,13 +50,13 @@ export function remarkHeadings({
|
|
|
51
50
|
*/
|
|
52
51
|
export function getHeadingTextValue(
|
|
53
52
|
children: PhrasingContent[],
|
|
54
|
-
value: string[] = []
|
|
53
|
+
value: string[] = [],
|
|
55
54
|
): string {
|
|
56
55
|
for (const child of children) {
|
|
57
|
-
if (
|
|
56
|
+
if (isTextNode(child)) {
|
|
58
57
|
value.push(child.value);
|
|
59
58
|
}
|
|
60
|
-
if ("children" in child) {
|
|
59
|
+
if ("children" in child && Array.isArray(child.children)) {
|
|
61
60
|
// Recurse into nested children, accumulating text into the shared `value` array.
|
|
62
61
|
// The return value is ignored here because accumulation happens via in-place mutation.
|
|
63
62
|
getHeadingTextValue(child.children, value);
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import slugify from "slugify";
|
|
2
|
+
import { TextNode } from "./types";
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
* Returns node ID, ensuring uniqueness.
|
|
@@ -17,6 +18,17 @@ export function generateUniqueId(setOfIds: Set<string>, slug: string): string {
|
|
|
17
18
|
return id;
|
|
18
19
|
}
|
|
19
20
|
|
|
21
|
+
/**
|
|
22
|
+
* Returns true if the node is a text node.
|
|
23
|
+
* @param node - Node.
|
|
24
|
+
* @returns true if the node is a text node.
|
|
25
|
+
*/
|
|
26
|
+
export function isTextNode<N extends { type: string; value?: string }>(
|
|
27
|
+
node: N,
|
|
28
|
+
): node is N & TextNode {
|
|
29
|
+
return node.type === "text" && typeof node.value === "string";
|
|
30
|
+
}
|
|
31
|
+
|
|
20
32
|
/**
|
|
21
33
|
* Slugify the heading text to generate an ID.
|
|
22
34
|
* @param headingText - Heading text.
|
|
@@ -9,10 +9,10 @@ import { resolveRelativeDirs } from "../files/resolveRelativeDirs";
|
|
|
9
9
|
* @returns Array of path objects suitable for `getStaticPaths`.
|
|
10
10
|
*/
|
|
11
11
|
export function buildStaticPaths(
|
|
12
|
-
relativeDirs: string[]
|
|
12
|
+
relativeDirs: string[],
|
|
13
13
|
): GetStaticPathsResult["paths"] {
|
|
14
14
|
const slugByFilePaths = mapMDXSlugByFilePaths(
|
|
15
|
-
resolveRelativeDirs(relativeDirs)
|
|
15
|
+
resolveRelativeDirs(relativeDirs),
|
|
16
16
|
);
|
|
17
17
|
return [...slugByFilePaths].map(([, slug]) => ({ params: { slug } }));
|
|
18
18
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { SerializeOptions } from "next-mdx-remote/dist/types";
|
|
2
1
|
import { serialize } from "next-mdx-remote/serialize";
|
|
3
2
|
import { GetStaticPropsResult } from "next/types";
|
|
4
3
|
import remarkGfm from "remark-gfm";
|
|
@@ -14,10 +13,10 @@ export async function buildStaticProps<F extends object, P extends object>(
|
|
|
14
13
|
fileName: string | undefined,
|
|
15
14
|
slug: string[] | undefined,
|
|
16
15
|
frontmatterFn = (
|
|
17
|
-
frontmatter: FrontmatterProps<F> | undefined
|
|
16
|
+
frontmatter: FrontmatterProps<F> | undefined,
|
|
18
17
|
): FrontmatterProps<F> | undefined => frontmatter,
|
|
19
|
-
serializeOptions:
|
|
20
|
-
otherProps: P = {} as P
|
|
18
|
+
serializeOptions: Parameters<typeof serialize>[1] = {},
|
|
19
|
+
otherProps: P = {} as P,
|
|
21
20
|
): Promise<
|
|
22
21
|
GetStaticPropsResult<StaticProps<FrontmatterProps<F>, P>> | undefined
|
|
23
22
|
> {
|
|
@@ -9,7 +9,7 @@ import { resolveRelativeDirs } from "../files/resolveRelativeDirs";
|
|
|
9
9
|
*/
|
|
10
10
|
export function buildMDXFilePath(
|
|
11
11
|
dirs: string[],
|
|
12
|
-
slug: string[] | undefined
|
|
12
|
+
slug: string[] | undefined,
|
|
13
13
|
): string | undefined {
|
|
14
14
|
if (!slug) return;
|
|
15
15
|
return resolveRelativeDirs(dirs.concat(slug)).concat(".mdx");
|
|
@@ -23,7 +23,7 @@ export function buildMDXFilePath(
|
|
|
23
23
|
*/
|
|
24
24
|
export function buildMDXSlug(
|
|
25
25
|
props: GetStaticPropsContext,
|
|
26
|
-
section?: string
|
|
26
|
+
section?: string,
|
|
27
27
|
): string[] | undefined {
|
|
28
28
|
const slug = props.params?.slug;
|
|
29
29
|
if (!slug || typeof slug === "string") return;
|
|
@@ -14,7 +14,7 @@ export function replaceParameters(str: string, parameter: Parameter): string {
|
|
|
14
14
|
const regex = new RegExp(`\\{${parameterKey}}`, "g");
|
|
15
15
|
return acc.replace(regex, parameterValue);
|
|
16
16
|
},
|
|
17
|
-
str
|
|
17
|
+
str,
|
|
18
18
|
);
|
|
19
19
|
if (/\{\w+}/.test(result)) {
|
|
20
20
|
throw new Error(`URL still contains path parameters: ${result}`);
|
|
@@ -14,7 +14,7 @@ import { NextRouter } from "next/router";
|
|
|
14
14
|
* @returns A query object compatible with NextRouter.
|
|
15
15
|
*/
|
|
16
16
|
export function stateToUrlQuery<
|
|
17
|
-
S extends Record<string, string | unknown[] | undefined
|
|
17
|
+
S extends Record<string, string | unknown[] | undefined>,
|
|
18
18
|
>(state: S): NextRouter["query"] {
|
|
19
19
|
const query: NextRouter["query"] = {};
|
|
20
20
|
|
package/src/utils/url.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const convertUrlParams = (params: Record<string, string>): string => {
|
|
|
10
10
|
// Delete any key which value is undefined. So the result string will not transform { key: undefined } into
|
|
11
11
|
// 'key=undefined'
|
|
12
12
|
Object.keys(params).forEach(
|
|
13
|
-
(key) => validParams[key] === undefined && delete validParams[key]
|
|
13
|
+
(key) => validParams[key] === undefined && delete validParams[key],
|
|
14
14
|
);
|
|
15
15
|
if (isSSR()) {
|
|
16
16
|
// check if the operation is being executed on server side
|
|
@@ -8,7 +8,7 @@ import { CategoryKeyLabel } from "./entities";
|
|
|
8
8
|
*/
|
|
9
9
|
export function mapCategoryKeyLabel(
|
|
10
10
|
CATEGORY_KEY: Record<string, string>,
|
|
11
|
-
CATEGORY_LABEL: Record<string, string
|
|
11
|
+
CATEGORY_LABEL: Record<string, string>,
|
|
12
12
|
): CategoryKeyLabel {
|
|
13
13
|
const categoryKeyLabel: CategoryKeyLabel = new Map();
|
|
14
14
|
for (const [key, categoryKey] of Object.entries(CATEGORY_KEY)) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Meta, StoryObj } from "@storybook/
|
|
1
|
+
import type { Meta, StoryObj } from "@storybook/nextjs-vite";
|
|
2
2
|
import image from "images/logo.svg";
|
|
3
3
|
import React from "react";
|
|
4
4
|
import { NavBarHero } from "../../components/Layout/components/Nav/components/NavBarHero/navBarHero";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { JSX, ReactNode } from "react";
|
|
2
2
|
import { LayoutStyle } from "../../components/Layout/components/ContentLayout/common/entities";
|
|
3
3
|
import { ContentLayout } from "../../components/Layout/components/ContentLayout/contentLayout";
|
|
4
4
|
import { BaseComponentProps } from "../../components/types";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { JSX } from "react";
|
|
2
2
|
import { DataDictionary } from "../../components/DataDictionary/dataDictionary";
|
|
3
3
|
import { useStateSyncManager } from "../../hooks/stateSyncManager/hook";
|
|
4
4
|
import { DataDictionaryContext } from "../../providers/dataDictionary/context";
|
|
@@ -13,7 +13,7 @@ import { DataDictionaryState } from "../../providers/dataDictionaryState/types";
|
|
|
13
13
|
*/
|
|
14
14
|
export function buildStateSyncManagerContext(
|
|
15
15
|
dataDictionaryState: DataDictionaryState,
|
|
16
|
-
dictionary: string
|
|
16
|
+
dictionary: string,
|
|
17
17
|
): StateSyncManagerContext {
|
|
18
18
|
return {
|
|
19
19
|
command: dataDictionaryState.meta?.command,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Head from "next/head";
|
|
2
2
|
import { useRouter } from "next/router";
|
|
3
|
-
import
|
|
3
|
+
import { JSX, Fragment } from "react";
|
|
4
4
|
import { PARAMS_INDEX_UUID } from "../../common/constants";
|
|
5
5
|
import { Tab, Tabs, TabValue } from "../../components/common/Tabs/tabs";
|
|
6
6
|
import { ComponentCreator } from "../../components/ComponentCreator/ComponentCreator";
|
|
@@ -30,7 +30,7 @@ function getTabs(entity: EntityConfig): Tab[] {
|
|
|
30
30
|
iconPosition,
|
|
31
31
|
label,
|
|
32
32
|
value: route,
|
|
33
|
-
})
|
|
33
|
+
}),
|
|
34
34
|
);
|
|
35
35
|
}
|
|
36
36
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useRouter } from "next/router";
|
|
2
2
|
import type { ParsedUrlQuery } from "querystring";
|
|
3
|
-
import
|
|
3
|
+
import { JSX } from "react";
|
|
4
4
|
import { EntityDetailViewProps } from "views/EntityDetailView/entityDetailView";
|
|
5
5
|
import { PARAMS_INDEX_EXPORT_METHOD } from "../../common/constants";
|
|
6
6
|
import { ComponentCreator } from "../../components/ComponentCreator/ComponentCreator";
|
|
@@ -11,7 +11,7 @@ import { useFetchEntity } from "../../hooks/useFetchEntity";
|
|
|
11
11
|
import { useUpdateURLCatalogParams } from "../../hooks/useUpdateURLCatalogParam";
|
|
12
12
|
|
|
13
13
|
export const EntityExportMethodView = (
|
|
14
|
-
props: EntityDetailViewProps
|
|
14
|
+
props: EntityDetailViewProps,
|
|
15
15
|
): JSX.Element => {
|
|
16
16
|
// Update the catalog param if necessary.
|
|
17
17
|
useUpdateURLCatalogParams();
|
|
@@ -53,7 +53,7 @@ export const EntityExportMethodView = (
|
|
|
53
53
|
*/
|
|
54
54
|
function getExportMethodConfig(
|
|
55
55
|
exportMethods: ExportMethodConfig[],
|
|
56
|
-
query: ParsedUrlQuery
|
|
56
|
+
query: ParsedUrlQuery,
|
|
57
57
|
): ExportMethodConfig | undefined {
|
|
58
58
|
// Determine the selected export method from the URL.
|
|
59
59
|
const exportMethodRoute = query.params?.[PARAMS_INDEX_EXPORT_METHOD];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { JSX } from "react";
|
|
2
2
|
import { EntityDetailViewProps } from "views/EntityDetailView/entityDetailView";
|
|
3
3
|
import { ComponentCreator } from "../../components/ComponentCreator/ComponentCreator";
|
|
4
4
|
import { BackPageView } from "../../components/Layout/components/BackPage/backPageView";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Stack } from "@mui/material";
|
|
2
|
-
import
|
|
2
|
+
import { JSX, useEffect, useMemo } from "react";
|
|
3
3
|
import { AzulEntitiesStaticResponse } from "../../apis/azul/common/entities";
|
|
4
4
|
import { track } from "../../common/analytics/analytics";
|
|
5
5
|
import { EVENT_NAME, EVENT_PARAM } from "../../common/analytics/entities";
|
|
@@ -48,7 +48,7 @@ export const ExploreView = (props: ExploreViewProps): JSX.Element => {
|
|
|
48
48
|
const { entityListType } = props;
|
|
49
49
|
const categoryFilters = useMemo(
|
|
50
50
|
() => buildCategoryFilters(categoryViews, categoryGroups),
|
|
51
|
-
[categoryGroups, categoryViews]
|
|
51
|
+
[categoryGroups, categoryViews],
|
|
52
52
|
);
|
|
53
53
|
const {
|
|
54
54
|
enabled: filterSortEnabled,
|
|
@@ -83,7 +83,7 @@ export const ExploreView = (props: ExploreViewProps): JSX.Element => {
|
|
|
83
83
|
selected: boolean,
|
|
84
84
|
categorySection?: string,
|
|
85
85
|
viewKind?: VIEW_KIND,
|
|
86
|
-
searchTerm?: string
|
|
86
|
+
searchTerm?: string,
|
|
87
87
|
): void => {
|
|
88
88
|
const dispatchType =
|
|
89
89
|
categoryKey === SELECT_CATEGORY_KEY.SAVED_FILTERS
|
|
@@ -182,7 +182,7 @@ export const ExploreView = (props: ExploreViewProps): JSX.Element => {
|
|
|
182
182
|
*/
|
|
183
183
|
function buildCategoryFilters(
|
|
184
184
|
categoryViews: CategoryView[],
|
|
185
|
-
categoryGroups?: CategoryGroup[]
|
|
185
|
+
categoryGroups?: CategoryGroup[],
|
|
186
186
|
): CategoryFilter[] {
|
|
187
187
|
if (!categoryGroups) {
|
|
188
188
|
return [{ categoryViews }];
|
|
@@ -13,7 +13,7 @@ export const useUpdateFilterSort = (): UseUpdateFilterSort => {
|
|
|
13
13
|
|
|
14
14
|
const onFilterSortChange = useCallback(
|
|
15
15
|
(filterSort: FILTER_SORT) => exploreDispatch(updateFilterSort(filterSort)),
|
|
16
|
-
[exploreDispatch]
|
|
16
|
+
[exploreDispatch],
|
|
17
17
|
);
|
|
18
18
|
|
|
19
19
|
return { enabled, filterSort, onFilterSortChange };
|
|
@@ -15,7 +15,7 @@ import { ExploreView } from "./exploreView";
|
|
|
15
15
|
*/
|
|
16
16
|
export function buildStateSyncManagerContext(
|
|
17
17
|
exploreState: ExploreState,
|
|
18
|
-
pageProps: ComponentProps<typeof ExploreView
|
|
18
|
+
pageProps: ComponentProps<typeof ExploreView>,
|
|
19
19
|
): StateSyncManagerContext {
|
|
20
20
|
return {
|
|
21
21
|
command: exploreState.meta?.command,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useRouter } from "next/router";
|
|
2
|
-
import
|
|
2
|
+
import { JSX } from "react";
|
|
3
3
|
import { ComponentCreator } from "../../components/ComponentCreator/ComponentCreator";
|
|
4
4
|
import { BackPageView } from "../../components/Layout/components/BackPage/backPageView";
|
|
5
5
|
import { ExportMethodConfig } from "../../config/entities";
|
|
@@ -36,7 +36,7 @@ export const ExportMethodView = (): JSX.Element => {
|
|
|
36
36
|
*/
|
|
37
37
|
function getExportMethodConfig(
|
|
38
38
|
exportMethods: ExportMethodConfig[],
|
|
39
|
-
pathname: string
|
|
39
|
+
pathname: string,
|
|
40
40
|
): ExportMethodConfig | undefined {
|
|
41
41
|
return exportMethods.find(({ route }) => route === pathname);
|
|
42
42
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { JSX } from "react";
|
|
2
2
|
import { AzulEntityStaticResponse } from "../../apis/azul/common/entities";
|
|
3
3
|
import { ComponentCreator } from "../../components/ComponentCreator/ComponentCreator";
|
|
4
4
|
import { BackPageView } from "../../components/Layout/components/BackPage/backPageView";
|