@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
package/lib/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
1
2
|
import { Slide as MSlide } from "@mui/material";
|
|
2
|
-
import
|
|
3
|
+
import { forwardRef } from "react";
|
|
3
4
|
export const DrawerTransition = forwardRef(function DrawerTransition({ children, ...props /* Spread props to allow for Mui SlideProps specific prop overrides. */ }, ref) {
|
|
4
|
-
return (
|
|
5
|
+
return (_jsx(MSlide, { direction: "right", easing: "ease-out", ref: ref, unmountOnExit: true, ...props, children: children }));
|
|
5
6
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ReactNode } from "react";
|
|
1
|
+
import { JSX, ReactNode } from "react";
|
|
2
2
|
import { CategoryView } from "../../../../common/categories/views/types";
|
|
3
3
|
import { TrackFilterOpenedFunction } from "../../../../config/entities";
|
|
4
4
|
import { OnFilterFn } from "../../../../hooks/useCategoryFilter";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
1
2
|
import { Grow } from "@mui/material";
|
|
2
|
-
import
|
|
3
|
+
import { useState } from "react";
|
|
3
4
|
import { isRangeCategoryView } from "../../../../common/categories/views/range/typeGuards";
|
|
4
5
|
import { TEST_IDS } from "../../../../tests/testIds";
|
|
5
6
|
import { FilterLabel } from "../FilterLabel/filterLabel";
|
|
@@ -58,10 +59,5 @@ export const Filter = ({ categorySection, categoryView, closeAncestor, onFilter,
|
|
|
58
59
|
setIsOpen(true);
|
|
59
60
|
trackFilterOpened?.({ category: categoryView.key });
|
|
60
61
|
};
|
|
61
|
-
return (
|
|
62
|
-
React.createElement(FilterLabel, { annotation: categoryView.annotation, count: isRangeView ? undefined : categoryView.values.length, disabled: categoryView.isDisabled, isOpen: isOpen, label: categoryView.label, onClick: onOpenFilter, surfaceType: surfaceType }),
|
|
63
|
-
React.createElement(StyledPopover, { anchorPosition: anchorPosition, anchorReference: "anchorPosition", "data-testid": TEST_IDS.FILTER_POPOVER, marginThreshold: 0, onClose: onCloseFilters, open: isOpen, slotProps: slotProps, slots: { transition: TransitionComponent }, surfaceType: surfaceType, transitionDuration: TransitionDuration },
|
|
64
|
-
isDrawer && React.createElement(IconButton, { onClick: onCloseFilters }),
|
|
65
|
-
isRangeView ? (React.createElement(FilterRange, { categoryKey: categoryView.key, categoryLabel: categoryView.label, categorySection: categorySection, max: categoryView.max, min: categoryView.min, selectedMax: categoryView.selectedMax, selectedMin: categoryView.selectedMin, onCloseFilter: onCloseFilter, onFilter: onFilter, surfaceType: surfaceType, unit: categoryView.unit })) : (React.createElement(FilterMenu, { categoryKey: categoryView.key, categoryLabel: categoryView.label, categorySection: categorySection, onCloseFilter: onCloseFilter, onFilter: onFilter, surfaceType: surfaceType, values: categoryView.values }))),
|
|
66
|
-
tags));
|
|
62
|
+
return (_jsxs(_Fragment, { children: [_jsx(FilterLabel, { annotation: categoryView.annotation, count: isRangeView ? undefined : categoryView.values.length, disabled: categoryView.isDisabled, isOpen: isOpen, label: categoryView.label, onClick: onOpenFilter, surfaceType: surfaceType }), _jsxs(StyledPopover, { anchorPosition: anchorPosition, anchorReference: "anchorPosition", "data-testid": TEST_IDS.FILTER_POPOVER, marginThreshold: 0, onClose: onCloseFilters, open: isOpen, slotProps: slotProps, slots: { transition: TransitionComponent }, surfaceType: surfaceType, transitionDuration: TransitionDuration, children: [isDrawer && _jsx(IconButton, { onClick: onCloseFilters }), isRangeView ? (_jsx(FilterRange, { categoryKey: categoryView.key, categoryLabel: categoryView.label, categorySection: categorySection, max: categoryView.max, min: categoryView.min, selectedMax: categoryView.selectedMax, selectedMin: categoryView.selectedMin, onCloseFilter: onCloseFilter, onFilter: onFilter, surfaceType: surfaceType, unit: categoryView.unit })) : (_jsx(FilterMenu, { categoryKey: categoryView.key, categoryLabel: categoryView.label, categorySection: categorySection, onCloseFilter: onCloseFilter, onFilter: onFilter, surfaceType: surfaceType, values: categoryView.values }))] }), tags] }));
|
|
67
63
|
};
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
1
2
|
import { Box } from "@mui/material";
|
|
2
|
-
import React from "react";
|
|
3
3
|
import { Filter } from "../filter";
|
|
4
4
|
import { DISABLED_SELECT_ARGS, RANGE_ARGS, SELECT_ARGS } from "./args";
|
|
5
5
|
const meta = {
|
|
6
6
|
component: Filter,
|
|
7
7
|
decorators: [
|
|
8
|
-
(Story) => (
|
|
9
|
-
React.createElement(Story, null))),
|
|
8
|
+
(Story) => (_jsx(Box, { sx: { width: 248 }, children: _jsx(Story, {}) })),
|
|
10
9
|
],
|
|
11
10
|
};
|
|
12
11
|
export default meta;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { CHIP_PROPS } from "../../../../styles/common/mui/chip";
|
|
3
3
|
import { StyledChip } from "./filterCountChip.styles";
|
|
4
4
|
export const FilterCountChip = ({ className, count, ...props /* MuiChipProps */ }) => {
|
|
5
5
|
if (!count)
|
|
6
6
|
return null;
|
|
7
|
-
return (
|
|
7
|
+
return (_jsx(StyledChip, { className: className, color: CHIP_PROPS.COLOR.PRIMARY, component: "span", label: String(count), variant: CHIP_PROPS.VARIANT.FILLED, ...props }));
|
|
8
8
|
};
|
|
@@ -1,3 +1 @@
|
|
|
1
|
-
export declare const StyledChip: import("@emotion/styled").StyledComponent<import("@mui/material").ChipOwnProps & import("@mui/material").ChipSlotsAndSlotProps & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
2
|
-
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
3
|
-
}, "label" | "style" | "size" | "className" | "classes" | "children" | "disabled" | "sx" | "tabIndex" | "color" | "variant" | "slots" | "slotProps" | "icon" | "avatar" | "clickable" | "deleteIcon" | "onDelete" | "skipFocusWhenDisabled"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
1
|
+
export declare const StyledChip: import("@emotion/styled").StyledComponent<import("@mui/material").ChipOwnProps & import("@mui/material").ChipSlotsAndSlotProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "size" | "label" | "style" | "className" | "classes" | "children" | "disabled" | "sx" | "tabIndex" | "color" | "variant" | "slots" | "slotProps" | "icon" | "avatar" | "clickable" | "deleteIcon" | "onDelete" | "skipFocusWhenDisabled"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
1
2
|
import { ArrowDropDownRounded } from "@mui/icons-material";
|
|
2
|
-
import React from "react";
|
|
3
3
|
import { Tooltip } from "../../../DataDictionary/components/Tooltip/tooltip";
|
|
4
4
|
import { StyledButton } from "./filterLabel.styles";
|
|
5
5
|
export const FilterLabel = ({ annotation, count, disabled = false, isOpen, label, onClick, surfaceType, }) => {
|
|
6
6
|
const filterLabel = count ? `${label}\xa0(${count})` : label; // When the count is present, a non-breaking space is used to prevent it from being on its own line
|
|
7
|
-
return (
|
|
8
|
-
React.createElement(StyledButton, { color: "inherit", disabled: disabled, endIcon: React.createElement(ArrowDropDownRounded, { fontSize: "small" }), fullWidth: true, isOpen: isOpen, onClick: onClick, surfaceType: surfaceType }, filterLabel)));
|
|
7
|
+
return (_jsx(Tooltip, { description: annotation?.description, title: annotation?.label, children: _jsx(StyledButton, { color: "inherit", disabled: disabled, endIcon: _jsx(ArrowDropDownRounded, { fontSize: "small" }), fullWidth: true, isOpen: isOpen, onClick: onClick, surfaceType: surfaceType, children: filterLabel }) }));
|
|
9
8
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { StoryObj } from "@storybook/
|
|
2
|
-
import
|
|
1
|
+
import type { StoryObj } from "@storybook/nextjs-vite";
|
|
2
|
+
import { JSX } from "react";
|
|
3
3
|
import { SURFACE_TYPE } from "../surfaces/types";
|
|
4
4
|
declare const meta: {
|
|
5
5
|
argTypes: {
|
|
@@ -17,13 +17,13 @@ declare const meta: {
|
|
|
17
17
|
};
|
|
18
18
|
};
|
|
19
19
|
component: ({ annotation, count, disabled, isOpen, label, onClick, surfaceType, }: import("./filterLabel").FilterLabelProps) => JSX.Element;
|
|
20
|
-
decorators: ((Story: import("
|
|
20
|
+
decorators: ((Story: import("storybook/internal/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
21
21
|
annotation?: import("../../../../common/entities").DataDictionaryAnnotation | undefined;
|
|
22
22
|
count?: number | undefined;
|
|
23
23
|
disabled?: boolean | undefined;
|
|
24
24
|
isOpen: boolean;
|
|
25
25
|
label: string;
|
|
26
|
-
onClick: (event:
|
|
26
|
+
onClick: (event: import("react").MouseEvent<HTMLButtonElement>) => void;
|
|
27
27
|
surfaceType: SURFACE_TYPE;
|
|
28
28
|
}>) => JSX.Element)[];
|
|
29
29
|
title: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { SURFACE_TYPE } from "../surfaces/types";
|
|
3
3
|
import { FilterLabel } from "./filterLabel";
|
|
4
4
|
const meta = {
|
|
@@ -10,8 +10,7 @@ const meta = {
|
|
|
10
10
|
},
|
|
11
11
|
component: FilterLabel,
|
|
12
12
|
decorators: [
|
|
13
|
-
(Story) => (
|
|
14
|
-
React.createElement(Story, null))),
|
|
13
|
+
(Story) => (_jsx("div", { style: { padding: "8px 12px 8px 16px", width: 264 }, children: _jsx(Story, {}) })),
|
|
15
14
|
],
|
|
16
15
|
title: "Components/Filter/FilterLabel",
|
|
17
16
|
};
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import { FilterLabelProps } from "./filterLabel";
|
|
2
|
-
export declare const StyledButton: import("@emotion/styled").StyledComponent<import("@mui/material").ButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
3
|
-
ref?: ((instance: HTMLButtonElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLButtonElement> | null | undefined;
|
|
4
|
-
}, "style" | "size" | "href" | "className" | "classes" | "action" | "centerRipple" | "children" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "sx" | "tabIndex" | "TouchRippleProps" | "touchRippleRef" | "color" | "disableFocusRipple" | "loading" | "loadingIndicator" | "variant" | "disableElevation" | "endIcon" | "fullWidth" | "loadingPosition" | "startIcon"> & {
|
|
2
|
+
export declare const StyledButton: import("@emotion/styled").StyledComponent<import("@mui/material").ButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "size" | "href" | "style" | "className" | "classes" | "action" | "centerRipple" | "children" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "sx" | "tabIndex" | "TouchRippleProps" | "touchRippleRef" | "color" | "disableFocusRipple" | "loading" | "loadingIndicator" | "variant" | "disableElevation" | "endIcon" | "fullWidth" | "loadingPosition" | "startIcon"> & {
|
|
5
3
|
theme?: import("@emotion/react").Theme;
|
|
6
4
|
} & Pick<FilterLabelProps, "isOpen" | "surfaceType">, {}, {}>;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
export declare const MuiListItemButtonRoot: import("@emotion/
|
|
2
|
-
export declare const MuiListItemTextRoot: import("@emotion/
|
|
3
|
-
export declare const StyledList: import("@emotion/styled").StyledComponent<import("@mui/material").ListOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
4
|
-
ref?: ((instance: HTMLUListElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLUListElement> | null | undefined;
|
|
5
|
-
}, "style" | "className" | "classes" | "children" | "sx" | "dense" | "disablePadding" | "subheader"> & {
|
|
1
|
+
export declare const MuiListItemButtonRoot: import("@emotion/utils").SerializedStyles;
|
|
2
|
+
export declare const MuiListItemTextRoot: import("@emotion/utils").SerializedStyles;
|
|
3
|
+
export declare const StyledList: import("@emotion/styled").StyledComponent<import("@mui/material").ListOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "style" | "className" | "classes" | "children" | "sx" | "dense" | "disablePadding" | "subheader"> & {
|
|
6
4
|
theme?: import("@emotion/react").Theme;
|
|
7
5
|
}, {}, {}>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useState } from "react";
|
|
2
3
|
import { MAX_DISPLAYABLE_LIST_ITEMS } from "../../common/constants";
|
|
3
4
|
import { getSortMatchesFn } from "../../common/utils";
|
|
4
5
|
import { StyledList } from "../FilterList/filterList.styles";
|
|
@@ -13,12 +14,7 @@ export const FilterMenu = ({ categoryKey, categoryLabel, categorySection, menuWi
|
|
|
13
14
|
const isSearchable = surfaceType === SURFACE_TYPE.DRAWER ||
|
|
14
15
|
values.length > MAX_DISPLAYABLE_LIST_ITEMS;
|
|
15
16
|
const matchedItems = applyMenuFilter(values, isSearchable ? searchTerm : "");
|
|
16
|
-
return (
|
|
17
|
-
React.createElement(FilterViewTools, { surfaceType: surfaceType },
|
|
18
|
-
surfaceType === SURFACE_TYPE.DRAWER && (React.createElement(ButtonBase, { onClick: onCloseFilter }, categoryLabel)),
|
|
19
|
-
isSearchable && (React.createElement(FilterMenuSearch, { searchTerm: searchTerm, setSearchTerm: setSearchTerm, surfaceType: surfaceType }))),
|
|
20
|
-
matchedItems.length > 0 ? (React.createElement(VariableSizeList, { categorySection: categorySection, categoryKey: categoryKey, onFilter: onFilter, matchedItems: matchedItems, surfaceType: surfaceType })) : (React.createElement(StyledList, null,
|
|
21
|
-
React.createElement(FilterNoResultsFound, { onClearSearchTerm: () => setSearchTerm("") })))));
|
|
17
|
+
return (_jsxs(FilterView, { menuWidth: menuWidth, children: [_jsxs(FilterViewTools, { surfaceType: surfaceType, children: [surfaceType === SURFACE_TYPE.DRAWER && (_jsx(ButtonBase, { onClick: onCloseFilter, children: categoryLabel })), isSearchable && (_jsx(FilterMenuSearch, { searchTerm: searchTerm, setSearchTerm: setSearchTerm, surfaceType: surfaceType }))] }), matchedItems.length > 0 ? (_jsx(VariableSizeList, { categorySection: categorySection, categoryKey: categoryKey, onFilter: onFilter, matchedItems: matchedItems, surfaceType: surfaceType })) : (_jsx(StyledList, { children: _jsx(FilterNoResultsFound, { onClearSearchTerm: () => setSearchTerm("") }) }))] }));
|
|
22
18
|
};
|
|
23
19
|
export function applyMenuFilter(values, searchTerm) {
|
|
24
20
|
return getSortMatchesFn(searchTerm)(values);
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { StoryObj } from "@storybook/
|
|
1
|
+
import type { StoryObj } from "@storybook/nextjs-vite";
|
|
2
|
+
import { JSX } from "react";
|
|
2
3
|
import { SURFACE_TYPE } from "../surfaces/types";
|
|
3
4
|
declare const meta: {
|
|
4
5
|
argTypes: {
|
|
@@ -22,7 +23,7 @@ declare const meta: {
|
|
|
22
23
|
};
|
|
23
24
|
};
|
|
24
25
|
component: ({ categoryKey, categoryLabel, categorySection, menuWidth, onCloseFilter, onFilter, surfaceType, values, }: import("./filterMenu").FilterMenuProps) => JSX.Element;
|
|
25
|
-
decorators: ((Story: import("
|
|
26
|
+
decorators: ((Story: import("storybook/internal/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
26
27
|
categoryKey: import("../../../../common/entities").CategoryKey;
|
|
27
28
|
categoryLabel: string;
|
|
28
29
|
categorySection?: string | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { SURFACE_TYPE } from "../surfaces/types";
|
|
3
3
|
import { FilterMenu } from "./filterMenu";
|
|
4
4
|
const meta = {
|
|
@@ -10,8 +10,7 @@ const meta = {
|
|
|
10
10
|
},
|
|
11
11
|
component: FilterMenu,
|
|
12
12
|
decorators: [
|
|
13
|
-
(Story) => (
|
|
14
|
-
React.createElement(Story, null))),
|
|
13
|
+
(Story) => (_jsx("div", { style: { backgroundColor: "white" }, children: _jsx(Story, {}) })),
|
|
15
14
|
],
|
|
16
15
|
title: "Components/Filter/FilterMenu",
|
|
17
16
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { SearchIcon } from "../../../common/CustomIcon/components/SearchIcon/searchIcon";
|
|
3
3
|
import { StyledInput as Search } from "./filterMenuSearch.styles";
|
|
4
4
|
export const FilterMenuSearch = ({ searchTerm, setSearchTerm, surfaceType, }) => {
|
|
5
|
-
return (
|
|
5
|
+
return (_jsx(Search, { placeholder: "Search", searchTerm: searchTerm, setSearchTerm: setSearchTerm, StartAdornment: SearchIcon, surfaceType: surfaceType }));
|
|
6
6
|
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import React from "react";
|
|
2
1
|
type OnClearSearchTermFn = () => void;
|
|
3
2
|
export interface FilterNoResultsFoundProps {
|
|
4
3
|
onClearSearchTerm?: OnClearSearchTermFn;
|
|
5
4
|
}
|
|
6
|
-
export declare const FilterNoResultsFound:
|
|
5
|
+
export declare const FilterNoResultsFound: import("react").ForwardRefExoticComponent<FilterNoResultsFoundProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
7
6
|
export {};
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
1
2
|
import { Typography } from "@mui/material";
|
|
2
|
-
import
|
|
3
|
+
import { forwardRef } from "react";
|
|
3
4
|
import { TYPOGRAPHY_PROPS } from "../../../../styles/common/mui/typography";
|
|
4
5
|
import { ButtonTextPrimary } from "../../../common/Button/components/ButtonTextPrimary/buttonTextPrimary";
|
|
5
6
|
import { FilterNoResultsFound as FilterNoResults } from "./filterNoResultsFound.styles";
|
|
6
7
|
export const FilterNoResultsFound = forwardRef(function FilterNoResultsFound({ onClearSearchTerm }, ref) {
|
|
7
|
-
return (
|
|
8
|
-
React.createElement(Typography, { component: "div", variant: TYPOGRAPHY_PROPS.VARIANT.BODY_500 }, "No results found!"),
|
|
9
|
-
React.createElement(Typography, { color: TYPOGRAPHY_PROPS.COLOR.INK_LIGHT, component: "div", mb: onClearSearchTerm ? 2 : 0, mt: 1, variant: TYPOGRAPHY_PROPS.VARIANT.BODY_400 }, "Try adjusting your search or filter to find what you\u2019re looking for."),
|
|
10
|
-
onClearSearchTerm && (React.createElement(ButtonTextPrimary, { onClick: onClearSearchTerm }, "Clear Search"))));
|
|
8
|
+
return (_jsxs(FilterNoResults, { ref: ref, children: [_jsx(Typography, { component: "div", variant: TYPOGRAPHY_PROPS.VARIANT.BODY_500, children: "No results found!" }), _jsx(Typography, { color: TYPOGRAPHY_PROPS.COLOR.INK_LIGHT, component: "div", mb: onClearSearchTerm ? 2 : 0, mt: 1, variant: TYPOGRAPHY_PROPS.VARIANT.BODY_400, children: "Try adjusting your search or filter to find what you\u2019re looking for." }), onClearSearchTerm && (_jsx(ButtonTextPrimary, { onClick: onClearSearchTerm, children: "Clear Search" }))] }));
|
|
11
9
|
});
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import { JSX } from "react";
|
|
1
2
|
import { FilterRangeProps } from "./types";
|
|
2
3
|
export declare const FilterRange: ({ categoryKey, categoryLabel, categorySection, className, max, min, onCloseFilter, onFilter, selectedMax, selectedMin, surfaceType, unit, }: FilterRangeProps) => JSX.Element;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
1
2
|
import { Button, Divider, FormControl, FormHelperText, Grid, InputLabel, OutlinedInput, ToggleButton, ToggleButtonGroup, } from "@mui/material";
|
|
2
|
-
import
|
|
3
|
+
import { Fragment } from "react";
|
|
3
4
|
import { TEST_IDS } from "../../../../tests/testIds";
|
|
4
5
|
import { FilterViewTools } from "../FilterMenu/filterMenu.styles";
|
|
5
6
|
import { ButtonBase } from "../surfaces/drawer/components/ButtonBase/buttonBase";
|
|
@@ -13,42 +14,19 @@ import { getRangeOperator } from "./utils";
|
|
|
13
14
|
export const FilterRange = ({ categoryKey, categoryLabel, categorySection, className, max, min, onCloseFilter, onFilter, selectedMax, selectedMin, surfaceType, unit, }) => {
|
|
14
15
|
const rangeOperator = getRangeOperator({ selectedMax, selectedMin });
|
|
15
16
|
const { clearErrors, formState: { errors }, handleSubmit, onChange, value, } = useFilterRange(rangeOperator);
|
|
16
|
-
return (
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
React.createElement(Grid, null,
|
|
32
|
-
value !== RANGE_OPERATOR.LESS_THAN && (React.createElement(FormControl, { error: !!errors[FIELD_NAME.MIN] },
|
|
33
|
-
React.createElement(InputLabel, { ...INPUT_LABEL_PROPS, htmlFor: FIELD_NAME.MIN },
|
|
34
|
-
value === RANGE_OPERATOR.BETWEEN ? "Min" : "Greater Than",
|
|
35
|
-
unit && ` (${unit})`),
|
|
36
|
-
React.createElement(OutlinedInput, { ...INPUT_PROPS, defaultValue: selectedMin, id: FIELD_NAME.MIN, name: FIELD_NAME.MIN, onFocus: clearErrors, placeholder: "eg. 1" }),
|
|
37
|
-
React.createElement(FormHelperText, null, errors[FIELD_NAME.MIN]
|
|
38
|
-
? errors[FIELD_NAME.MIN]
|
|
39
|
-
: value === RANGE_OPERATOR.BETWEEN
|
|
40
|
-
? `Min allowed: ${min}`
|
|
41
|
-
: `Allowed values: \u2265 ${min} and \u2264 ${max}`))),
|
|
42
|
-
value === RANGE_OPERATOR.BETWEEN && React.createElement(Divider, null),
|
|
43
|
-
value !== RANGE_OPERATOR.GREATER_THAN && (React.createElement(FormControl, { error: !!errors[FIELD_NAME.MAX] },
|
|
44
|
-
React.createElement(InputLabel, { ...INPUT_LABEL_PROPS, htmlFor: FIELD_NAME.MAX },
|
|
45
|
-
value === RANGE_OPERATOR.BETWEEN ? "Max" : "Less Than",
|
|
46
|
-
unit && ` (${unit})`),
|
|
47
|
-
React.createElement(OutlinedInput, { ...INPUT_PROPS, defaultValue: selectedMax, id: FIELD_NAME.MAX, name: FIELD_NAME.MAX, onFocus: clearErrors, placeholder: "eg. 20" }),
|
|
48
|
-
React.createElement(FormHelperText, { color: "inkLight" }, errors[FIELD_NAME.MAX]
|
|
49
|
-
? errors[FIELD_NAME.MAX]
|
|
50
|
-
: value === RANGE_OPERATOR.BETWEEN
|
|
51
|
-
? `Max allowed: ${max}`
|
|
52
|
-
: `Allowed values: \u2265 ${min} and \u2264 ${max}`)))),
|
|
53
|
-
React.createElement(Button, { ...BUTTON_PROPS }, "Filter"))));
|
|
17
|
+
return (_jsxs(Fragment, { children: [surfaceType === SURFACE_TYPE.DRAWER && (_jsx(FilterViewTools, { surfaceType: surfaceType, children: _jsx(ButtonBase, { onClick: onCloseFilter, children: categoryLabel }) })), _jsxs(StyledForm, { className: className, "data-testid": TEST_IDS.FILTER_RANGE, onSubmit: handleSubmit(onFilter, {
|
|
18
|
+
categoryKey,
|
|
19
|
+
categorySection,
|
|
20
|
+
}), surfaceType: surfaceType, children: [_jsxs(ToggleButtonGroup, { ...TOGGLE_BUTTON_GROUP_PROPS, onChange: (e, value) => {
|
|
21
|
+
clearErrors();
|
|
22
|
+
onChange?.(e, value);
|
|
23
|
+
}, value: value, children: [_jsx(ToggleButton, { value: RANGE_OPERATOR.BETWEEN, children: "Between" }), _jsx(ToggleButton, { value: RANGE_OPERATOR.LESS_THAN, children: "Less Than" }), _jsx(Divider, { ...DIVIDER_PROPS }), _jsx(ToggleButton, { value: RANGE_OPERATOR.GREATER_THAN, children: "Greater Than" })] }), _jsxs(Grid, { children: [value !== RANGE_OPERATOR.LESS_THAN && (_jsxs(FormControl, { error: !!errors[FIELD_NAME.MIN], children: [_jsxs(InputLabel, { ...INPUT_LABEL_PROPS, htmlFor: FIELD_NAME.MIN, children: [value === RANGE_OPERATOR.BETWEEN ? "Min" : "Greater Than", unit && ` (${unit})`] }), _jsx(OutlinedInput, { ...INPUT_PROPS, defaultValue: selectedMin, id: FIELD_NAME.MIN, name: FIELD_NAME.MIN, onFocus: clearErrors, placeholder: "eg. 1" }), _jsx(FormHelperText, { children: errors[FIELD_NAME.MIN]
|
|
24
|
+
? errors[FIELD_NAME.MIN]
|
|
25
|
+
: value === RANGE_OPERATOR.BETWEEN
|
|
26
|
+
? `Min allowed: ${min}`
|
|
27
|
+
: `Allowed values: \u2265 ${min} and \u2264 ${max}` })] })), value === RANGE_OPERATOR.BETWEEN && _jsx(Divider, {}), value !== RANGE_OPERATOR.GREATER_THAN && (_jsxs(FormControl, { error: !!errors[FIELD_NAME.MAX], children: [_jsxs(InputLabel, { ...INPUT_LABEL_PROPS, htmlFor: FIELD_NAME.MAX, children: [value === RANGE_OPERATOR.BETWEEN ? "Max" : "Less Than", unit && ` (${unit})`] }), _jsx(OutlinedInput, { ...INPUT_PROPS, defaultValue: selectedMax, id: FIELD_NAME.MAX, name: FIELD_NAME.MAX, onFocus: clearErrors, placeholder: "eg. 20" }), _jsx(FormHelperText, { color: "inkLight", children: errors[FIELD_NAME.MAX]
|
|
28
|
+
? errors[FIELD_NAME.MAX]
|
|
29
|
+
: value === RANGE_OPERATOR.BETWEEN
|
|
30
|
+
? `Max allowed: ${max}`
|
|
31
|
+
: `Allowed values: \u2265 ${min} and \u2264 ${max}` })] }))] }), _jsx(Button, { ...BUTTON_PROPS, children: "Filter" })] })] }));
|
|
54
32
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
1
2
|
import { CloseRounded } from "@mui/icons-material";
|
|
2
3
|
import { Chip, Tooltip } from "@mui/material";
|
|
3
|
-
import
|
|
4
|
+
import { useRef } from "react";
|
|
4
5
|
import { SupersededTag } from "./filterTag.styles";
|
|
5
6
|
const DEFAULT_SLOT_PROPS = {
|
|
6
7
|
popper: {
|
|
@@ -23,6 +24,5 @@ export const FilterTag = ({ label, onRemove, superseded, }) => {
|
|
|
23
24
|
const tagRef = useRef(null);
|
|
24
25
|
const tagLabelElement = tagRef.current?.querySelector(".MuiChip-label");
|
|
25
26
|
const isOverflowed = (tagLabelElement?.offsetWidth ?? 0) < (tagLabelElement?.scrollWidth ?? 0);
|
|
26
|
-
return (
|
|
27
|
-
React.createElement(Tag, { clickable: false, color: "primary", deleteIcon: React.createElement(CloseRounded, { color: "inherit" }), label: label, onClick: onRemove, onDelete: onRemove, ref: tagRef, variant: "filterTag" })));
|
|
27
|
+
return (_jsx(Tooltip, { arrow: true, disableInteractive: true, slotProps: DEFAULT_SLOT_PROPS, title: isOverflowed ? label : null, children: _jsx(Tag, { clickable: false, color: "primary", deleteIcon: _jsx(CloseRounded, { color: "inherit" }), label: label, onClick: onRemove, onDelete: onRemove, ref: tagRef, variant: "filterTag" }) }));
|
|
28
28
|
};
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
export declare const SupersededTag: import("@emotion/styled").StyledComponent<import("@mui/material").ChipOwnProps & import("@mui/material").ChipSlotsAndSlotProps & import("@mui/material/OverridableComponent").CommonProps & Omit<
|
|
2
|
-
ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLDivElement> | null | undefined;
|
|
3
|
-
}, "label" | "style" | "size" | "className" | "classes" | "children" | "disabled" | "sx" | "tabIndex" | "color" | "variant" | "slots" | "slotProps" | "icon" | "avatar" | "clickable" | "deleteIcon" | "onDelete" | "skipFocusWhenDisabled"> & {
|
|
1
|
+
export declare const SupersededTag: import("@emotion/styled").StyledComponent<import("@mui/material").ChipOwnProps & import("@mui/material").ChipSlotsAndSlotProps & import("@mui/material/OverridableComponent").CommonProps & Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "size" | "label" | "style" | "className" | "classes" | "children" | "disabled" | "sx" | "tabIndex" | "color" | "variant" | "slots" | "slotProps" | "icon" | "avatar" | "clickable" | "deleteIcon" | "onDelete" | "skipFocusWhenDisabled"> & {
|
|
4
2
|
theme?: import("@emotion/react").Theme;
|
|
5
3
|
}, {}, {}>;
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
1
2
|
import { Box } from "@mui/material";
|
|
2
|
-
import React from "react";
|
|
3
3
|
import { FilterTag } from "../filterTag";
|
|
4
4
|
import { DEFAULT_ARGS, WITH_ELLIPSIS_ARGS, WITH_RANGE_ARGS } from "./args";
|
|
5
5
|
const meta = {
|
|
6
6
|
component: FilterTag,
|
|
7
7
|
decorators: [
|
|
8
|
-
(Story) => (
|
|
9
|
-
React.createElement(Story, null))),
|
|
8
|
+
(Story) => (_jsx(Box, { sx: { width: 232 }, children: _jsx(Story, {}) })),
|
|
10
9
|
],
|
|
11
10
|
};
|
|
12
11
|
export default meta;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { FilterTag as Tag } from "../FilterTag/filterTag";
|
|
3
3
|
import { FilterTags as Tags } from "./filterTags.styles";
|
|
4
4
|
export const FilterTags = ({ tags }) => {
|
|
5
|
-
return tags && tags.length ? (
|
|
5
|
+
return tags && tags.length ? (_jsx(Tags, { children: tags.map(({ label, onRemove, superseded }, t) => (_jsx(Tag, { label: label, onRemove: onRemove, superseded: superseded }, `${label}${t}`))) })) : null;
|
|
6
6
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { StoryObj } from "@storybook/
|
|
1
|
+
import type { StoryObj } from "@storybook/nextjs-vite";
|
|
2
|
+
import { JSX } from "react";
|
|
2
3
|
declare const meta: {
|
|
3
4
|
argTypes: {
|
|
4
5
|
tags: {
|
|
@@ -8,7 +9,7 @@ declare const meta: {
|
|
|
8
9
|
};
|
|
9
10
|
};
|
|
10
11
|
component: ({ tags }: import("./filterTags").FilterTagsProps) => JSX.Element | null;
|
|
11
|
-
decorators: ((Story: import("
|
|
12
|
+
decorators: ((Story: import("storybook/internal/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
12
13
|
tags?: import("../../../../common/entities").CategoryTag[] | undefined;
|
|
13
14
|
}>) => JSX.Element)[];
|
|
14
15
|
title: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import { FilterTags } from "./filterTags";
|
|
3
3
|
const onRemove = () => {
|
|
4
4
|
// onRemove function
|
|
@@ -9,8 +9,7 @@ const meta = {
|
|
|
9
9
|
},
|
|
10
10
|
component: FilterTags,
|
|
11
11
|
decorators: [
|
|
12
|
-
(Story) => (
|
|
13
|
-
React.createElement(Story, null))),
|
|
12
|
+
(Story) => (_jsx("div", { style: { padding: "8px 12px 8px 16px", width: 264 }, children: _jsx(Story, {}) })),
|
|
14
13
|
],
|
|
15
14
|
title: "Components/Filter/FilterTags",
|
|
16
15
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
1
2
|
import { Divider } from "@mui/material";
|
|
2
|
-
import
|
|
3
|
+
import { Fragment, useEffect, useRef, useState } from "react";
|
|
3
4
|
import { isRangeCategoryView } from "../../../../common/categories/views/range/typeGuards";
|
|
4
5
|
import { useWindowResize } from "../../../../hooks/useWindowResize";
|
|
5
6
|
import { TYPOGRAPHY_PROPS } from "../../../../styles/common/mui/typography";
|
|
@@ -41,7 +42,7 @@ function buildFilterTags(categoryView, onFilter) {
|
|
|
41
42
|
*/
|
|
42
43
|
function renderFilterTags(categoryView, onFilter) {
|
|
43
44
|
const tags = buildFilterTags(categoryView, onFilter);
|
|
44
|
-
return
|
|
45
|
+
return _jsx(FilterTags, { tags: tags });
|
|
45
46
|
}
|
|
46
47
|
export const Filters = ({ categoryFilters, className, disabled = false, onFilter, surfaceType = SURFACE_TYPE.MENU, trackFilterOpened, }) => {
|
|
47
48
|
const { onClose } = useDrawer();
|
|
@@ -51,10 +52,7 @@ export const Filters = ({ categoryFilters, className, disabled = false, onFilter
|
|
|
51
52
|
useEffect(() => {
|
|
52
53
|
setHeight(calculateListHeight(windowHeight, filterListRef.current));
|
|
53
54
|
}, [windowHeight]);
|
|
54
|
-
return (
|
|
55
|
-
i !== 0 && React.createElement(Divider, null),
|
|
56
|
-
label && (React.createElement(StyledTypography, { color: TYPOGRAPHY_PROPS.COLOR.INK_LIGHT, component: "div", variant: TYPOGRAPHY_PROPS.VARIANT.UPPERCASE_500 }, label)),
|
|
57
|
-
categoryViews.map((categoryView) => (React.createElement(Filter, { key: categoryView.key, categorySection: label, categoryView: categoryView, closeAncestor: onClose, onFilter: onFilter, surfaceType: surfaceType, trackFilterOpened: trackFilterOpened, tags: renderFilterTags(categoryView, onFilter) }))))))));
|
|
55
|
+
return (_jsx(FilterList, { className: className, "data-testid": TEST_IDS.FILTERS, disabled: disabled, height: height, ref: filterListRef, surfaceType: surfaceType, children: categoryFilters.map(({ categoryViews, label }, i) => (_jsxs(Fragment, { children: [i !== 0 && _jsx(Divider, {}), label && (_jsx(StyledTypography, { color: TYPOGRAPHY_PROPS.COLOR.INK_LIGHT, component: "div", variant: TYPOGRAPHY_PROPS.VARIANT.UPPERCASE_500, children: label })), categoryViews.map((categoryView) => (_jsx(Filter, { categorySection: label, categoryView: categoryView, closeAncestor: onClose, onFilter: onFilter, surfaceType: surfaceType, trackFilterOpened: trackFilterOpened, tags: renderFilterTags(categoryView, onFilter) }, categoryView.key)))] }, i))) }));
|
|
58
56
|
};
|
|
59
57
|
/**
|
|
60
58
|
* Returns given height of filter list.
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
1
2
|
import { Box } from "@mui/material";
|
|
2
|
-
import React from "react";
|
|
3
3
|
import { Filters } from "../filters";
|
|
4
4
|
import { DEFAULT_ARGS } from "./args";
|
|
5
5
|
const meta = {
|
|
6
6
|
component: Filters,
|
|
7
7
|
decorators: [
|
|
8
|
-
(Story) => (
|
|
9
|
-
React.createElement(Story, null))),
|
|
8
|
+
(Story) => (_jsx(Box, { sx: { width: 264 }, children: _jsx(Story, {}) })),
|
|
10
9
|
],
|
|
11
10
|
};
|
|
12
11
|
export default meta;
|