@databiosphere/findable-ui 47.0.2 → 49.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.husky/pre-commit +7 -0
- package/.release-please-manifest.json +1 -1
- package/.storybook/main.ts +6 -48
- package/CHANGELOG.md +57 -0
- package/CLAUDE.md +214 -0
- package/backend/README.md +64 -0
- package/backend/__init__.py +0 -0
- package/backend/controllers/__init__.py +0 -0
- package/backend/controllers/facets_controller.py +16 -0
- package/backend/controllers/models.py +11 -0
- package/backend/main.py +8 -0
- package/backend/requirements.txt +4 -0
- package/backend/services/__init__.py +0 -0
- package/backend/services/facets_service.py +68 -0
- package/backend/services/models.py +43 -0
- package/docs/TRUSTED_PUBLISHING.md +0 -1
- package/jest.config.js +0 -4
- package/lib/common/categories/config/types.d.ts +2 -1
- package/lib/common/chart/sort/constants.d.ts +5 -0
- package/lib/common/chart/sort/constants.js +9 -0
- package/lib/common/chart/sort/types.d.ts +16 -0
- package/lib/common/chart/sort/types.js +8 -0
- package/lib/common/chart/sort/utils.d.ts +7 -0
- package/lib/common/chart/sort/utils.js +19 -0
- package/lib/common/chart/types.d.ts +5 -0
- package/lib/common/entities.d.ts +2 -1
- package/lib/components/Authentication/components/SessionController/components/GoogleSessionController/SessionController.d.ts +1 -0
- package/lib/components/Authentication/components/SessionController/components/GoogleSessionController/SessionController.js +3 -2
- package/lib/components/Authentication/components/SessionController/components/NextSessionController/SessionController.d.ts +1 -0
- package/lib/components/Authentication/components/SessionController/components/NextSessionController/SessionController.js +3 -2
- package/lib/components/ComponentCreator/ComponentCreator.d.ts +1 -0
- package/lib/components/ComponentCreator/ComponentCreator.js +23 -20
- package/lib/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.d.ts +1 -1
- package/lib/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.js +2 -2
- package/lib/components/ComponentCreator/components/RenderComponent/renderComponent.d.ts +1 -1
- package/lib/components/ComponentCreator/components/RenderComponent/renderComponent.js +2 -2
- package/lib/components/DataDictionary/components/Description/description.d.ts +1 -0
- package/lib/components/DataDictionary/components/Description/description.js +2 -3
- package/lib/components/DataDictionary/components/Description/description.styles.d.ts +1 -3
- package/lib/components/DataDictionary/components/Description/description.styles.js +3 -1
- package/lib/components/DataDictionary/components/Entities/entities.d.ts +1 -0
- package/lib/components/DataDictionary/components/Entities/entities.js +3 -3
- package/lib/components/DataDictionary/components/Entity/entity.d.ts +1 -0
- package/lib/components/DataDictionary/components/Entity/entity.js +2 -9
- package/lib/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.d.ts +1 -0
- package/lib/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.js +2 -4
- package/lib/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.styles.d.ts +2 -4
- package/lib/components/DataDictionary/components/Filters/components/ColumnFilters/columnFilters.d.ts +1 -0
- package/lib/components/DataDictionary/components/Filters/components/ColumnFilters/columnFilters.js +4 -4
- package/lib/components/DataDictionary/components/Filters/filters.d.ts +1 -0
- package/lib/components/DataDictionary/components/Filters/filters.js +2 -4
- package/lib/components/DataDictionary/components/Filters/filters.styles.d.ts +2 -4
- package/lib/components/DataDictionary/components/Filters/stories/constants.js +1 -1
- package/lib/components/DataDictionary/components/Filters/stories/filters.stories.d.ts +1 -1
- package/lib/components/DataDictionary/components/Filters/stories/filters.stories.js +5 -6
- package/lib/components/DataDictionary/components/Layout/components/EntitiesLayout/entitiesLayout.d.ts +1 -2
- package/lib/components/DataDictionary/components/Layout/components/EntitiesLayout/entitiesLayout.js +3 -2
- package/lib/components/DataDictionary/components/Layout/components/FiltersLayout/filtersLayout.d.ts +1 -2
- package/lib/components/DataDictionary/components/Layout/components/FiltersLayout/filtersLayout.js +3 -2
- package/lib/components/DataDictionary/components/Layout/components/OutlineLayout/outlineLayout.d.ts +1 -0
- package/lib/components/DataDictionary/components/Layout/components/OutlineLayout/outlineLayout.js +2 -3
- package/lib/components/DataDictionary/components/Layout/components/TitleLayout/titleLayout.d.ts +1 -0
- package/lib/components/DataDictionary/components/Layout/components/TitleLayout/titleLayout.js +2 -2
- package/lib/components/DataDictionary/components/Outline/components/ContentsTab/contentsTab.d.ts +1 -0
- package/lib/components/DataDictionary/components/Outline/components/ContentsTab/contentsTab.js +2 -2
- package/lib/components/DataDictionary/components/Outline/outline.d.ts +1 -0
- package/lib/components/DataDictionary/components/Outline/outline.js +2 -2
- package/lib/components/DataDictionary/components/Table/components/BasicCell/basicCell.d.ts +1 -1
- package/lib/components/DataDictionary/components/Table/components/BasicCell/basicCell.js +2 -2
- package/lib/components/DataDictionary/components/Table/table.d.ts +1 -0
- package/lib/components/DataDictionary/components/Table/table.js +2 -6
- package/lib/components/DataDictionary/components/Table/table.styles.d.ts +1 -3
- package/lib/components/DataDictionary/components/Title/title.d.ts +1 -0
- package/lib/components/DataDictionary/components/Title/title.js +2 -2
- package/lib/components/DataDictionary/components/Title/title.styles.d.ts +1 -3
- package/lib/components/DataDictionary/components/Tooltip/components/Title/title.d.ts +1 -0
- package/lib/components/DataDictionary/components/Tooltip/components/Title/title.js +2 -4
- package/lib/components/DataDictionary/components/Tooltip/tooltip.d.ts +1 -0
- package/lib/components/DataDictionary/components/Tooltip/tooltip.js +2 -3
- package/lib/components/DataDictionary/dataDictionary.d.ts +1 -0
- package/lib/components/DataDictionary/dataDictionary.js +2 -14
- package/lib/components/DataDictionary/hooks/UseMeasureFilters/hook.js +1 -2
- package/lib/components/DataDictionary/hooks/UseMeasureFilters/types.d.ts +1 -1
- package/lib/components/Detail/components/AccessibilityBadge/accessibilityBadge.d.ts +1 -0
- package/lib/components/Detail/components/AccessibilityBadge/accessibilityBadge.js +2 -3
- package/lib/components/Detail/components/DetailViewTable/detailViewTable.d.ts +1 -1
- package/lib/components/Detail/components/DetailViewTable/detailViewTable.js +2 -5
- package/lib/components/Detail/components/Table/components/TableBody/tableBody.d.ts +1 -0
- package/lib/components/Detail/components/Table/components/TableBody/tableBody.js +2 -2
- package/lib/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.d.ts +1 -0
- package/lib/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.js +7 -7
- package/lib/components/Detail/components/Table/components/TableRows/tableRows.d.ts +1 -0
- package/lib/components/Detail/components/Table/components/TableRows/tableRows.js +11 -10
- package/lib/components/Detail/components/Table/stories/filter/filter.stories.d.ts +1 -1
- package/lib/components/Detail/components/Table/stories/table.stories.d.ts +1 -1
- package/lib/components/Detail/components/Table/table.d.ts +1 -0
- package/lib/components/Detail/components/Table/table.js +2 -5
- package/lib/components/Detail/detail.d.ts +1 -1
- package/lib/components/Detail/detail.js +2 -2
- package/lib/components/Detail/detail.stories.d.ts +2 -2
- package/lib/components/Detail/detail.stories.js +4 -13
- package/lib/components/Error/error.d.ts +1 -0
- package/lib/components/Error/error.js +3 -20
- package/lib/components/Error/error.stories.d.ts +1 -1
- package/lib/components/ErrorBoundary/errorBoundary.d.ts +3 -3
- package/lib/components/ErrorBoundary/errorBoundary.js +2 -2
- package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.d.ts +1 -1
- package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.js +3 -4
- package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.d.ts +1 -1
- package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.js +2 -9
- package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.d.ts +1 -1
- package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.js +2 -6
- package/lib/components/Export/components/DownloadCurlCommand/downloadCurlCommand.d.ts +1 -3
- package/lib/components/Export/components/DownloadCurlCommand/downloadCurlCommand.js +3 -2
- package/lib/components/Export/components/ExportForm/components/ExportButton/exportButton.d.ts +1 -1
- package/lib/components/Export/components/ExportForm/components/ExportButton/exportButton.js +3 -6
- package/lib/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.d.ts +1 -1
- package/lib/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.js +2 -6
- package/lib/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.d.ts +1 -0
- package/lib/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.js +9 -30
- package/lib/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.d.ts +1 -0
- package/lib/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.js +2 -4
- package/lib/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.d.ts +1 -0
- package/lib/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.js +5 -13
- package/lib/components/Export/components/ExportForm/exportForm.d.ts +1 -1
- package/lib/components/Export/components/ExportForm/exportForm.js +3 -10
- package/lib/components/Export/components/ExportForm/exportForm.styles.d.ts +3 -7
- package/lib/components/Export/components/ExportMethod/exportMethod.d.ts +1 -1
- package/lib/components/Export/components/ExportMethod/exportMethod.js +2 -11
- package/lib/components/Export/components/ExportMethod/exportMethod.stories.d.ts +2 -2
- package/lib/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.d.ts +1 -0
- package/lib/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.js +3 -9
- package/lib/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.d.ts +1 -1
- package/lib/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.js +2 -7
- package/lib/components/Export/components/ExportSummary/exportSummary.d.ts +1 -1
- package/lib/components/Export/components/ExportSummary/exportSummary.js +2 -2
- package/lib/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.js +3 -4
- package/lib/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.js +2 -8
- package/lib/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.js +2 -7
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.js +2 -2
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.js +2 -2
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.js +2 -2
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.d.ts +1 -1
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.js +4 -10
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.d.ts +1 -0
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.js +2 -11
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.d.ts +1 -0
- package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.js +2 -10
- package/lib/components/Export/components/ExportToTerra/exportToTerra.d.ts +1 -3
- package/lib/components/Export/components/ExportToTerra/exportToTerra.js +2 -2
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.d.ts +1 -0
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.js +7 -22
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.d.ts +1 -0
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.js +7 -22
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.d.ts +1 -2
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.js +2 -4
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.styles.d.ts +1 -3
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.d.ts +1 -0
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.js +3 -3
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.d.ts +1 -1
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.js +2 -8
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.d.ts +1 -1
- package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.js +2 -8
- package/lib/components/Export/components/ManifestDownload/manifestDownload.d.ts +1 -3
- package/lib/components/Export/components/ManifestDownload/manifestDownload.js +2 -2
- package/lib/components/Export/export.styles.d.ts +1 -1
- package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.d.ts +1 -0
- package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.js +2 -2
- package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.styles.d.ts +1 -3
- package/lib/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.d.ts +1 -2
- package/lib/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.js +3 -2
- package/lib/components/Filter/components/Filter/filter.d.ts +1 -1
- package/lib/components/Filter/components/Filter/filter.js +3 -7
- package/lib/components/Filter/components/Filter/stories/args.js +1 -1
- package/lib/components/Filter/components/Filter/stories/filter.stories.d.ts +1 -1
- package/lib/components/Filter/components/Filter/stories/filter.stories.js +2 -3
- package/lib/components/Filter/components/FilterCountChip/filterCountChip.d.ts +1 -0
- package/lib/components/Filter/components/FilterCountChip/filterCountChip.js +2 -2
- package/lib/components/Filter/components/FilterCountChip/filterCountChip.styles.d.ts +1 -3
- package/lib/components/Filter/components/FilterCountChip/stories/filterCountChip.stories.d.ts +1 -1
- package/lib/components/Filter/components/FilterLabel/filterLabel.d.ts +1 -1
- package/lib/components/Filter/components/FilterLabel/filterLabel.js +2 -3
- package/lib/components/Filter/components/FilterLabel/filterLabel.stories.d.ts +4 -4
- package/lib/components/Filter/components/FilterLabel/filterLabel.stories.js +2 -3
- package/lib/components/Filter/components/FilterLabel/filterLabel.styles.d.ts +1 -3
- package/lib/components/Filter/components/FilterList/filterList.styles.d.ts +3 -5
- package/lib/components/Filter/components/FilterMenu/filterMenu.d.ts +1 -0
- package/lib/components/Filter/components/FilterMenu/filterMenu.js +3 -7
- package/lib/components/Filter/components/FilterMenu/filterMenu.stories.d.ts +3 -2
- package/lib/components/Filter/components/FilterMenu/filterMenu.stories.js +2 -3
- package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.d.ts +1 -0
- package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.js +2 -2
- package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.d.ts +1 -2
- package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.js +3 -5
- package/lib/components/Filter/components/FilterRange/filterRange.d.ts +1 -0
- package/lib/components/Filter/components/FilterRange/filterRange.js +17 -39
- package/lib/components/Filter/components/FilterRange/stories/args.js +1 -1
- package/lib/components/Filter/components/FilterRange/stories/filterRange.stories.d.ts +1 -1
- package/lib/components/Filter/components/FilterTag/filterTag.d.ts +1 -0
- package/lib/components/Filter/components/FilterTag/filterTag.js +3 -3
- package/lib/components/Filter/components/FilterTag/filterTag.styles.d.ts +1 -3
- package/lib/components/Filter/components/FilterTag/stories/args.js +2 -2
- package/lib/components/Filter/components/FilterTag/stories/filterTag.stories.d.ts +1 -1
- package/lib/components/Filter/components/FilterTag/stories/filterTag.stories.js +2 -3
- package/lib/components/Filter/components/FilterTags/filterTags.d.ts +1 -0
- package/lib/components/Filter/components/FilterTags/filterTags.js +2 -2
- package/lib/components/Filter/components/FilterTags/filterTags.stories.d.ts +3 -2
- package/lib/components/Filter/components/FilterTags/filterTags.stories.js +2 -3
- package/lib/components/Filter/components/Filters/filters.d.ts +1 -0
- package/lib/components/Filter/components/Filters/filters.js +4 -6
- package/lib/components/Filter/components/Filters/stories/args.js +1 -1
- package/lib/components/Filter/components/Filters/stories/filters.stories.d.ts +1 -1
- package/lib/components/Filter/components/Filters/stories/filters.stories.js +2 -3
- package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.d.ts +1 -0
- package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.js +3 -3
- package/lib/components/Filter/components/SearchAllFilters/components/OutlinedInput/outlinedInput.d.ts +1 -0
- package/lib/components/Filter/components/SearchAllFilters/components/OutlinedInput/outlinedInput.js +2 -2
- package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeList/VariableSizeList.js +7 -8
- package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.d.ts +2 -2
- package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.js +7 -8
- package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.d.ts +1 -0
- package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.js +7 -7
- package/lib/components/Filter/components/SearchAllFilters/stories/args.js +1 -1
- package/lib/components/Filter/components/SearchAllFilters/stories/searchAllFilters.stories.d.ts +1 -1
- package/lib/components/Filter/components/SearchAllFilters/stories/searchAllFilters.stories.js +4 -5
- package/lib/components/Filter/components/VariableSizeList/VariableSizeList.d.ts +1 -0
- package/lib/components/Filter/components/VariableSizeList/VariableSizeList.js +5 -4
- package/lib/components/Filter/components/VariableSizeListItem/variableSizeListItem.d.ts +1 -1
- package/lib/components/Filter/components/VariableSizeListItem/variableSizeListItem.js +3 -4
- package/lib/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/columnFiltersAdapter.d.ts +1 -0
- package/lib/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/types.d.ts +1 -0
- package/lib/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/utils.js +1 -1
- package/lib/components/Filter/components/controls/Controls/components/FilterSort/filterSort.d.ts +1 -0
- package/lib/components/Filter/components/controls/Controls/components/FilterSort/filterSort.js +3 -13
- package/lib/components/Filter/components/controls/Controls/components/FilterSort/filterSort.styles.d.ts +1 -3
- package/lib/components/Filter/components/controls/Controls/components/FilterSort/stories/filterSort.stories.d.ts +1 -1
- package/lib/components/Filter/components/controls/Controls/controls.d.ts +1 -0
- package/lib/components/Filter/components/controls/Controls/controls.js +2 -5
- package/lib/components/Filter/components/controls/Controls/controls.styles.d.ts +2 -4
- package/lib/components/Filter/components/surfaces/drawer/Drawer/drawer.d.ts +1 -0
- package/lib/components/Filter/components/surfaces/drawer/Drawer/drawer.js +3 -7
- package/lib/components/Filter/components/surfaces/drawer/components/Button/button.d.ts +1 -0
- package/lib/components/Filter/components/surfaces/drawer/components/Button/button.js +2 -4
- package/lib/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.d.ts +1 -0
- package/lib/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.js +2 -4
- package/lib/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.styles.d.ts +1 -3
- package/lib/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.d.ts +1 -0
- package/lib/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.js +2 -3
- package/lib/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.styles.d.ts +1 -3
- package/lib/components/Filter/components/views/select/SelectListItem/selectListItem.d.ts +1 -2
- package/lib/components/Filter/components/views/select/SelectListItem/selectListItem.js +3 -4
- package/lib/components/Filter/components/views/select/components/Checkbox/checkbox.d.ts +1 -0
- package/lib/components/Filter/components/views/select/components/Checkbox/checkbox.js +2 -2
- package/lib/components/Filter/components/views/select/components/ListItemButton/listItemButton.d.ts +2 -5
- package/lib/components/Filter/components/views/select/components/ListItemButton/listItemButton.js +3 -2
- package/lib/components/Filter/components/views/select/components/ListItemButton/listItemButton.styles.d.ts +1 -3
- package/lib/components/Filter/components/views/select/components/ListItemText/components/Count/count.d.ts +1 -0
- package/lib/components/Filter/components/views/select/components/ListItemText/components/Count/count.js +2 -2
- package/lib/components/Filter/components/views/select/components/ListItemText/components/Term/term.d.ts +1 -0
- package/lib/components/Filter/components/views/select/components/ListItemText/components/Term/term.js +2 -2
- package/lib/components/Filter/components/views/select/components/ListItemText/listItemText.d.ts +1 -0
- package/lib/components/Filter/components/views/select/components/ListItemText/listItemText.js +4 -4
- package/lib/components/Head/head.d.ts +1 -0
- package/lib/components/Head/head.js +3 -11
- package/lib/components/Index/components/AzulFileDownload/azulFileDownload.d.ts +1 -0
- package/lib/components/Index/components/AzulFileDownload/azulFileDownload.js +3 -4
- package/lib/components/Index/components/AzulFileDownload/azulFileDownload.stories.d.ts +2 -2
- package/lib/components/Index/components/EntityView/components/controls/ActionButton/actionButton.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/controls/ActionButton/actionButton.js +3 -2
- package/lib/components/Index/components/EntityView/components/controls/ExportButton/exportButton.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/controls/ExportButton/exportButton.js +2 -4
- package/lib/components/Index/components/EntityView/components/controls/ExportButton/exportButton.styles.d.ts +1 -3
- package/lib/components/Index/components/EntityView/components/controls/FilterButton/filterButton.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/controls/FilterButton/filterButton.js +2 -5
- package/lib/components/Index/components/EntityView/components/controls/FilterButton/filterButton.styles.d.ts +1 -3
- package/lib/components/Index/components/EntityView/components/controls/ViewToggle/stories/viewToggle.stories.d.ts +1 -1
- package/lib/components/Index/components/EntityView/components/controls/ViewToggle/viewToggle.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/controls/ViewToggle/viewToggle.js +2 -4
- package/lib/components/Index/components/EntityView/components/layout/Summary/summary.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/layout/Summary/summary.js +3 -5
- package/lib/components/Index/components/EntityView/components/layout/Summary/summary.styles.d.ts +2 -4
- package/lib/components/Index/components/EntityView/components/layout/Title/title.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/layout/Title/title.js +2 -2
- package/lib/components/Index/components/EntityView/components/navigation/Tabs/tabs.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/navigation/Tabs/tabs.js +3 -2
- package/lib/components/Index/components/EntityView/components/slots/EntityListSlot/entityListSlot.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/slots/EntityListSlot/entityListSlot.js +2 -2
- package/lib/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.js +2 -3
- package/lib/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.styles.d.ts +2 -4
- package/lib/components/Index/components/EntityView/components/views/ChartView/chartView.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/views/ChartView/chartView.js +4 -11
- package/lib/components/Index/components/EntityView/components/views/ChartView/chartView.styles.d.ts +2 -4
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.js +13 -14
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.styles.d.ts +1 -3
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UsePlotOptions/hook.js +2 -7
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/args.js +12 -12
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/chart.stories.d.ts +1 -1
- package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/chart.stories.js +2 -3
- package/lib/components/Index/components/EntityView/components/views/ChartView/hooks/UseChartView/types.d.ts +1 -1
- package/lib/components/Index/components/EntityView/components/views/ChartView/stories/args.js +3 -3
- package/lib/components/Index/components/EntityView/components/views/ChartView/stories/chartView.stories.d.ts +1 -1
- package/lib/components/Index/components/EntityView/components/views/ChartView/stories/chartView.stories.js +2 -3
- package/lib/components/Index/components/EntityView/components/views/ChartView/utils.js +1 -1
- package/lib/components/Index/components/EntityView/components/views/TableView/tableView.d.ts +1 -0
- package/lib/components/Index/components/EntityView/components/views/TableView/tableView.js +2 -2
- package/lib/components/Index/index.d.ts +1 -0
- package/lib/components/Index/index.js +2 -16
- package/lib/components/Index/index.styles.d.ts +7 -15
- package/lib/components/Index/table/coreOptions/columns/cellFactory.d.ts +1 -0
- package/lib/components/Index/table/coreOptions/columns/cellFactory.js +2 -2
- package/lib/components/Layout/components/BackPage/backPageView.d.ts +1 -1
- package/lib/components/Layout/components/BackPage/backPageView.js +3 -7
- package/lib/components/Layout/components/BackPage/backPageView.stories.d.ts +2 -2
- package/lib/components/Layout/components/BackPage/backPageView.stories.js +4 -13
- package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.d.ts +1 -1
- package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.js +3 -10
- package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.styles.d.ts +1 -3
- package/lib/components/Layout/components/BackPage/components/BackPageHero/components/Actions/actions.d.ts +1 -1
- package/lib/components/Layout/components/BackPage/components/BackPageHero/components/Actions/actions.js +2 -2
- package/lib/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.d.ts +1 -1
- package/lib/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.js +2 -2
- package/lib/components/Layout/components/BackPage/components/BackPageHero/stories/backPageHero.stories.d.ts +1 -1
- package/lib/components/Layout/components/ContentLayout/components/Main/main.d.ts +1 -1
- package/lib/components/Layout/components/ContentLayout/components/Main/main.js +2 -2
- package/lib/components/Layout/components/ContentLayout/contentLayout.d.ts +1 -1
- package/lib/components/Layout/components/ContentLayout/contentLayout.js +2 -10
- package/lib/components/Layout/components/Floating/floating.d.ts +1 -0
- package/lib/components/Layout/components/Floating/floating.js +3 -2
- package/lib/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/title.d.ts +1 -0
- package/lib/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/title.js +2 -14
- package/lib/components/Layout/components/Footer/components/VersionInfo/versionInfo.d.ts +1 -0
- package/lib/components/Layout/components/Footer/components/VersionInfo/versionInfo.js +2 -3
- package/lib/components/Layout/components/Footer/components/VersionInfo/versionInfo.styles.d.ts +1 -3
- package/lib/components/Layout/components/Footer/footer.d.ts +1 -1
- package/lib/components/Layout/components/Footer/footer.js +3 -9
- package/lib/components/Layout/components/Footer/footer.stories.d.ts +2 -2
- package/lib/components/Layout/components/Footer/footer.stories.js +2 -2
- package/lib/components/Layout/components/Header/components/Announcements/announcements.d.ts +1 -0
- package/lib/components/Layout/components/Header/components/Announcements/announcements.js +2 -2
- package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.js +2 -2
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.js +6 -7
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.d.ts +1 -0
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.js +6 -12
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.styles.d.ts +4 -12
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/Button/button.styles.d.ts +1 -3
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.js +3 -12
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.d.ts +2 -2
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.js +3 -11
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/Button/button.styles.d.ts +1 -3
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.d.ts +1 -0
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.js +3 -6
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.js +5 -7
- package/lib/components/Layout/components/Header/components/Content/components/Logo/logo.d.ts +1 -0
- package/lib/components/Layout/components/Header/components/Content/components/Logo/logo.js +2 -2
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationButtonLabel/navigationButtonLabel.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationButtonLabel/navigationButtonLabel.js +3 -2
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.d.ts +1 -2
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.js +3 -2
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.js +3 -9
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.js +10 -16
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.styles.d.ts +1 -3
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.d.ts +1 -1
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.js +16 -19
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.d.ts +2 -2
- package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.js +10 -14
- package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.d.ts +2 -2
- package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.js +3 -2
- package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.styles.d.ts +1 -3
- package/lib/components/Layout/components/Header/header.d.ts +1 -1
- package/lib/components/Layout/components/Header/header.js +6 -25
- package/lib/components/Layout/components/Header/header.stories.d.ts +1 -1
- package/lib/components/Layout/components/Header/header.stories.js +2 -2
- package/lib/components/Layout/components/Main/main.d.ts +1 -1
- package/lib/components/Layout/components/Main/main.js +2 -2
- package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.d.ts +1 -0
- package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.js +2 -8
- package/lib/components/Layout/components/Nav/nav.d.ts +1 -1
- package/lib/components/Layout/components/Nav/nav.js +4 -9
- package/lib/components/Layout/components/Nav/nav.stories.d.ts +1 -1
- package/lib/components/Layout/components/Nav/nav.styles.d.ts +1 -3
- package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.d.ts +1 -0
- package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.js +2 -2
- package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.styles.d.ts +1 -3
- package/lib/components/Layout/components/Outline/outline.d.ts +1 -0
- package/lib/components/Layout/components/Outline/outline.js +2 -4
- package/lib/components/Layout/components/Outline/outline.styles.d.ts +3 -7
- package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.d.ts +1 -1
- package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.js +2 -5
- package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.d.ts +1 -1
- package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.js +2 -4
- package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.d.ts +1 -0
- package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.js +2 -2
- package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.stories.d.ts +2 -2
- package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.d.ts +1 -1
- package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.js +2 -2
- package/lib/components/Layout/components/Sidebar/sidebar.d.ts +1 -0
- package/lib/components/Layout/components/Sidebar/sidebar.js +3 -3
- package/lib/components/Layout/components/Sidebar/sidebar.stories.d.ts +1 -1
- package/lib/components/Layout/components/Sidebar/sidebar.stories.js +6 -7
- package/lib/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.d.ts +1 -0
- package/lib/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.js +3 -3
- package/lib/components/Links/components/Link/link.d.ts +1 -1
- package/lib/components/Links/components/Link/link.js +5 -9
- package/lib/components/Links/links.d.ts +1 -1
- package/lib/components/Links/links.js +5 -7
- package/lib/components/Links/links.stories.d.ts +2 -2
- package/lib/components/Loading/loading.d.ts +1 -0
- package/lib/components/Loading/loading.js +2 -6
- package/lib/components/Loading/loading.stories.d.ts +1 -1
- package/lib/components/Loading/loading.stories.js +3 -4
- package/lib/components/Login/components/Button/button.d.ts +1 -0
- package/lib/components/Login/components/Button/button.js +2 -2
- package/lib/components/Login/components/Button/button.styles.d.ts +1 -3
- package/lib/components/Login/components/Buttons/buttons.d.ts +1 -0
- package/lib/components/Login/components/Buttons/buttons.js +2 -2
- package/lib/components/Login/components/Section/components/Consent/consent.d.ts +1 -0
- package/lib/components/Login/components/Section/components/Consent/consent.js +2 -4
- package/lib/components/Login/components/Section/components/Consent/consent.styles.d.ts +2 -4
- package/lib/components/Login/components/Section/components/Warning/warning.d.ts +1 -0
- package/lib/components/Login/components/Section/components/Warning/warning.js +2 -2
- package/lib/components/Login/login.d.ts +1 -0
- package/lib/components/Login/login.js +3 -13
- package/lib/components/MarkdownRenderer/components/Anchor/anchor.d.ts +1 -1
- package/lib/components/MarkdownRenderer/components/Anchor/anchor.js +2 -2
- package/lib/components/MarkdownRenderer/components/Table/table.d.ts +1 -1
- package/lib/components/MarkdownRenderer/components/Table/table.js +2 -2
- package/lib/components/MarkdownRenderer/constants.d.ts +2 -2
- package/lib/components/MarkdownRenderer/markdownRenderer.d.ts +1 -12
- package/lib/components/MarkdownRenderer/markdownRenderer.js +16 -19
- package/lib/components/MarkdownRenderer/stories/markdownRenderer.stories.d.ts +1 -1
- package/lib/components/MarkdownRenderer/stories/markdownRenderer.stories.js +3 -4
- package/lib/components/MarkdownRenderer/types.d.ts +2 -3
- package/lib/components/NoResults/noResults.d.ts +1 -0
- package/lib/components/NoResults/noResults.js +3 -8
- package/lib/components/Plot/components/BarX/barX.d.ts +1 -0
- package/lib/components/Plot/components/BarX/barX.js +3 -2
- package/lib/components/Project/components/Citation/citation.d.ts +1 -0
- package/lib/components/Project/components/Citation/citation.js +2 -5
- package/lib/components/Project/components/Citation/citation.stories.d.ts +1 -1
- package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.d.ts +1 -0
- package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.js +2 -4
- package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.stories.d.ts +2 -2
- package/lib/components/Project/components/Contacts/contacts.d.ts +1 -0
- package/lib/components/Project/components/Contacts/contacts.js +3 -8
- package/lib/components/Project/components/Contacts/contacts.stories.d.ts +2 -2
- package/lib/components/Project/components/Contributors/contributors.d.ts +1 -0
- package/lib/components/Project/components/Contributors/contributors.js +2 -8
- package/lib/components/Project/components/Contributors/contributors.stories.d.ts +2 -2
- package/lib/components/Project/components/DataCurators/dataCurators.d.ts +1 -0
- package/lib/components/Project/components/DataCurators/dataCurators.js +2 -2
- package/lib/components/Project/components/DataCurators/dataCurators.stories.d.ts +2 -2
- package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.d.ts +1 -0
- package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.js +4 -10
- package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.stories.d.ts +2 -2
- package/lib/components/Project/components/Description/description.d.ts +1 -0
- package/lib/components/Project/components/Description/description.js +2 -3
- package/lib/components/Project/components/Description/description.stories.d.ts +2 -2
- package/lib/components/Project/components/Details/details.d.ts +1 -0
- package/lib/components/Project/components/Details/details.js +4 -3
- package/lib/components/Project/components/Details/details.stories.d.ts +2 -2
- package/lib/components/Project/components/Publications/publications.d.ts +1 -0
- package/lib/components/Project/components/Publications/publications.js +2 -4
- package/lib/components/Project/components/Publications/publications.stories.d.ts +2 -2
- package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.d.ts +1 -0
- package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.js +3 -9
- package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.stories.d.ts +2 -2
- package/lib/components/Redirect/redirect.d.ts +1 -0
- package/lib/components/Redirect/redirect.js +3 -2
- package/lib/components/Stepper/components/Step/components/StepContent/stepContent.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepContent/stepContent.js +2 -3
- package/lib/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.js +2 -3
- package/lib/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.styles.d.ts +1 -3
- package/lib/components/Stepper/components/Step/components/StepIcon/stepIcon.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepIcon/stepIcon.js +2 -2
- package/lib/components/Stepper/components/Step/components/StepIcon/stories/stepIcon.stories.d.ts +1 -1
- package/lib/components/Stepper/components/Step/components/StepIcon/stories/stepIcon.stories.js +4 -7
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/icon.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/icon.js +2 -3
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/stories/icon.stories.d.ts +1 -1
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/label.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/label.js +2 -2
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/label.styles.d.ts +1 -3
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/stories/label.stories.d.ts +1 -1
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/stories/label.stories.js +3 -5
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Optional/optional.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepLabel/components/Optional/optional.js +2 -2
- package/lib/components/Stepper/components/Step/components/StepLabel/stepLabel.d.ts +1 -0
- package/lib/components/Stepper/components/Step/components/StepLabel/stepLabel.js +2 -2
- package/lib/components/Stepper/components/Step/components/StepLabel/stories/stepLabel.stories.d.ts +1 -1
- package/lib/components/Stepper/components/Step/components/StepLabel/stories/stepLabel.stories.js +6 -6
- package/lib/components/Stepper/components/Step/step.d.ts +1 -0
- package/lib/components/Stepper/components/Step/step.js +2 -2
- package/lib/components/Stepper/components/Step/step.styles.d.ts +1 -3
- package/lib/components/Stepper/components/Step/stories/step.stories.d.ts +1 -1
- package/lib/components/Stepper/components/Step/stories/step.stories.js +10 -11
- package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.d.ts +1 -1
- package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.js +9 -10
- package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.styles.d.ts +1 -3
- package/lib/components/Support/components/SupportRequest/components/Dropzone/dropzone.d.ts +1 -1
- package/lib/components/Support/components/SupportRequest/components/Dropzone/dropzone.js +2 -4
- package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.d.ts +1 -1
- package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.js +4 -17
- package/lib/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.d.ts +1 -1
- package/lib/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.js +2 -6
- package/lib/components/Support/components/SupportRequest/supportRequest.d.ts +1 -0
- package/lib/components/Support/components/SupportRequest/supportRequest.js +3 -2
- package/lib/components/Support/components/ViewSupport/viewSupport.d.ts +1 -0
- package/lib/components/Support/components/ViewSupport/viewSupport.js +2 -3
- package/lib/components/Table/common/gridTable.styles.d.ts +1 -3
- package/lib/components/Table/components/PaginationSummary/paginationSummary.d.ts +1 -0
- package/lib/components/Table/components/PaginationSummary/paginationSummary.js +2 -13
- package/lib/components/Table/components/TableBody/tableBody.d.ts +1 -0
- package/lib/components/Table/components/TableBody/tableBody.js +2 -5
- package/lib/components/Table/components/TableCell/components/BasicCell/basicCell.d.ts +1 -1
- package/lib/components/Table/components/TableCell/components/BasicCell/basicCell.js +4 -3
- package/lib/components/Table/components/TableCell/components/ChipCell/chipCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/ChipCell/chipCell.js +2 -2
- package/lib/components/Table/components/TableCell/components/CodeCell/codeCell.d.ts +1 -1
- package/lib/components/Table/components/TableCell/components/CodeCell/codeCell.js +2 -2
- package/lib/components/Table/components/TableCell/components/CodeCell/codeCell.styles.d.ts +1 -3
- package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.js +9 -17
- package/lib/components/Table/components/TableCell/components/LinkCell/linkCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/LinkCell/linkCell.js +4 -4
- package/lib/components/Table/components/TableCell/components/LinkCell/stories/linkCell.stories.d.ts +1 -1
- package/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell.js +2 -2
- package/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell.styles.js +3 -1
- package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/markdownCell.stories.d.ts +1 -1
- package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/markdownCell.stories.js +3 -4
- package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.js +4 -3
- package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.d.ts +1 -1
- package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.js +2 -2
- package/lib/components/Table/components/TableCell/components/NTagCell/nTagCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/NTagCell/nTagCell.js +4 -3
- package/lib/components/Table/components/TableCell/components/RankedCell/rankedCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/RankedCell/rankedCell.js +5 -10
- package/lib/components/Table/components/TableCell/components/RowPositionCell/rowPositionCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/RowPositionCell/rowPositionCell.js +2 -2
- package/lib/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.d.ts +1 -0
- package/lib/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.js +3 -5
- package/lib/components/Table/components/TableFeatures/ColumnFilter/columnFilter.d.ts +1 -0
- package/lib/components/Table/components/TableFeatures/ColumnFilter/columnFilter.js +16 -23
- package/lib/components/Table/components/TableFeatures/ColumnFilter/columnFilter.styles.d.ts +1 -3
- package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.d.ts +1 -0
- package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.js +4 -2
- package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.styles.d.ts +1 -3
- package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/stories/columFilterTag.stories.d.ts +1 -1
- package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/stories/columFilterTag.stories.js +2 -3
- package/lib/components/Table/components/TableFeatures/GlobalFilter/globalFilter.d.ts +1 -0
- package/lib/components/Table/components/TableFeatures/GlobalFilter/globalFilter.js +2 -2
- package/lib/components/Table/components/TableFeatures/TableDownload/tableDownload.d.ts +1 -0
- package/lib/components/Table/components/TableFeatures/TableDownload/tableDownload.js +2 -2
- package/lib/components/Table/components/TableFeatures/TableDownload/tableDownload.styles.d.ts +1 -3
- package/lib/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.d.ts +1 -0
- package/lib/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.js +2 -2
- package/lib/components/Table/components/TableHead/tableHead.d.ts +1 -0
- package/lib/components/Table/components/TableHead/tableHead.js +7 -8
- package/lib/components/Table/components/TablePagination/stories/args.js +1 -1
- package/lib/components/Table/components/TablePagination/stories/tablePagination.stories.d.ts +1 -1
- package/lib/components/Table/components/TablePagination/tablePagination.d.ts +1 -0
- package/lib/components/Table/components/TablePagination/tablePagination.js +2 -11
- package/lib/components/Table/components/TablePagination/tablePagination.styles.d.ts +2 -4
- package/lib/components/Table/components/TableRow/tableRow.styles.d.ts +1 -3
- package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.d.ts +1 -0
- package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.js +9 -9
- package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.styles.d.ts +1 -3
- package/lib/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.d.ts +1 -0
- package/lib/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.js +3 -3
- package/lib/components/Table/components/TableRows/tableRows.d.ts +1 -0
- package/lib/components/Table/components/TableRows/tableRows.js +16 -15
- package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/columnGrouping.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/columnGrouping.js +4 -4
- package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/menuItems.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/menuItems.js +12 -13
- package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/columnVisibility.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/columnVisibility.js +4 -4
- package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/menuItems.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/menuItems.js +6 -10
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.d.ts +1 -1
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.js +2 -5
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.styles.js +3 -1
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.js +4 -7
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.d.ts +1 -1
- package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.js +2 -4
- package/lib/components/Table/components/TableToolbar/components/RowPreview/rowPreview.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/RowPreview/rowPreview.js +2 -2
- package/lib/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.js +3 -3
- package/lib/components/Table/components/TableToolbar/components/RowSelection/rowSelection.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/components/RowSelection/rowSelection.js +2 -6
- package/lib/components/Table/components/TableToolbar/tableToolbar.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar/tableToolbar.js +3 -11
- package/lib/components/Table/components/TableToolbar/tableToolbar.styles.d.ts +1 -3
- package/lib/components/Table/components/TableToolbar2/tableToolbar2.d.ts +1 -0
- package/lib/components/Table/components/TableToolbar2/tableToolbar2.js +2 -4
- package/lib/components/Table/components/TableToolbar2/tableToolbar2.styles.d.ts +2 -6
- package/lib/components/Table/featureOptions/facetedColumn/getFacetedMinMaxValues.js +2 -1
- package/lib/components/Table/hooks/UseVirtualization/types.d.ts +1 -1
- package/lib/components/Table/table.d.ts +1 -0
- package/lib/components/Table/table.js +3 -9
- package/lib/components/Table/table.styles.d.ts +1 -3
- package/lib/components/TableCreator/tableCreator.d.ts +1 -0
- package/lib/components/TableCreator/tableCreator.js +2 -2
- package/lib/components/TempError/components/errorBox.d.ts +1 -0
- package/lib/components/TempError/components/errorBox.js +2 -4
- package/lib/components/TempError/tempError.d.ts +1 -0
- package/lib/components/TempError/tempError.js +2 -5
- package/lib/components/common/Accordion/accordion.d.ts +1 -1
- package/lib/components/common/Accordion/accordion.js +4 -6
- package/lib/components/common/Accordion/accordion.stories.d.ts +2 -2
- package/lib/components/common/Accordion/accordion.stories.js +2 -5
- package/lib/components/common/Alert/alert.d.ts +1 -2
- package/lib/components/common/Alert/alert.js +3 -2
- package/lib/components/common/AnchorLink/anchorLink.d.ts +1 -1
- package/lib/components/common/AnchorLink/anchorLink.js +2 -3
- package/lib/components/common/AnchorLink/anchorLink.styles.d.ts +2 -28
- package/lib/components/common/Banner/banner.d.ts +1 -2
- package/lib/components/common/Banner/banner.js +3 -2
- package/lib/components/common/Banner/components/CookieBanner/cookieBanner.d.ts +1 -1
- package/lib/components/common/Banner/components/CookieBanner/cookieBanner.js +6 -8
- package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.d.ts +1 -0
- package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.js +2 -3
- package/lib/components/common/Banner/components/SystemIndexing/systemIndexing.d.ts +1 -0
- package/lib/components/common/Banner/components/SystemIndexing/systemIndexing.js +2 -3
- package/lib/components/common/Banner/components/SystemStatus/systemStatus.d.ts +1 -0
- package/lib/components/common/Banner/components/SystemStatus/systemStatus.js +2 -3
- package/lib/components/common/Breadcrumbs/breadcrumbs.d.ts +1 -1
- package/lib/components/common/Breadcrumbs/breadcrumbs.js +4 -3
- package/lib/components/common/Breadcrumbs/breadcrumbs.stories.d.ts +2 -2
- package/lib/components/common/Button/button.d.ts +2 -2
- package/lib/components/common/Button/button.js +3 -2
- package/lib/components/common/Button/components/ButtonOutline/buttonOutline.d.ts +1 -2
- package/lib/components/common/Button/components/ButtonOutline/buttonOutline.js +3 -2
- package/lib/components/common/Button/components/ButtonPrimary/buttonPrimary.d.ts +1 -2
- package/lib/components/common/Button/components/ButtonPrimary/buttonPrimary.js +3 -2
- package/lib/components/common/Button/components/ButtonSecondary/buttonSecondary.d.ts +1 -2
- package/lib/components/common/Button/components/ButtonSecondary/buttonSecondary.js +3 -2
- package/lib/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.d.ts +1 -2
- package/lib/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.js +3 -2
- package/lib/components/common/Button/components/ButtonText/buttonText.d.ts +1 -0
- package/lib/components/common/Button/components/ButtonText/buttonText.js +2 -2
- package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.d.ts +1 -0
- package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.js +2 -2
- package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.d.ts +1 -0
- package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.js +2 -2
- package/lib/components/common/Button/components/CallToActionButton/callToActionButton.d.ts +1 -1
- package/lib/components/common/Button/components/CallToActionButton/callToActionButton.js +3 -4
- package/lib/components/common/Button/components/CallToActionButton/callToActionButton.stories.d.ts +2 -2
- package/lib/components/common/Button/components/DropdownButton/dropdownButton.d.ts +1 -0
- package/lib/components/common/Button/components/DropdownButton/dropdownButton.js +2 -2
- package/lib/components/common/Button/components/DropdownButton/dropdownButton.styles.d.ts +1 -3
- package/lib/components/common/Button/components/FileDownloadButton/fileDownloadButton.d.ts +1 -0
- package/lib/components/common/Button/components/FileDownloadButton/fileDownloadButton.js +3 -2
- package/lib/components/common/Button/components/HelpIconButton/helpIconButton.d.ts +1 -0
- package/lib/components/common/Button/components/HelpIconButton/helpIconButton.js +2 -5
- package/lib/components/common/Button/components/HelpIconButton/helpIconButton.stories.d.ts +2 -2
- package/lib/components/common/Button/components/NavigationButton/navigationButton.d.ts +1 -0
- package/lib/components/common/Button/components/NavigationButton/navigationButton.js +2 -2
- package/lib/components/common/ButtonGroup/buttonGroup.d.ts +1 -1
- package/lib/components/common/ButtonGroup/buttonGroup.js +3 -2
- package/lib/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.d.ts +1 -1
- package/lib/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.js +3 -3
- package/lib/components/common/Card/card.d.ts +1 -1
- package/lib/components/common/Card/card.js +3 -11
- package/lib/components/common/Card/card.stories.d.ts +2 -2
- package/lib/components/common/Card/components/CardAction/cardAction.d.ts +1 -0
- package/lib/components/common/Card/components/CardAction/cardAction.js +2 -2
- package/lib/components/common/Card/components/CardActionArea/cardActionArea.d.ts +1 -1
- package/lib/components/common/Card/components/CardActionArea/cardActionArea.js +2 -2
- package/lib/components/common/Card/components/CardActions/cardActions.d.ts +1 -1
- package/lib/components/common/Card/components/CardActions/cardActions.js +2 -4
- package/lib/components/common/Card/components/CardMedia/cardMedia.d.ts +1 -0
- package/lib/components/common/Card/components/CardMedia/cardMedia.js +2 -3
- package/lib/components/common/Card/components/CardSecondaryText/cardSecondaryText.d.ts +1 -0
- package/lib/components/common/Card/components/CardSecondaryText/cardSecondaryText.js +2 -2
- package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.d.ts +1 -0
- package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.js +2 -2
- package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.styles.d.ts +1 -3
- package/lib/components/common/Card/components/CardText/cardText.d.ts +1 -0
- package/lib/components/common/Card/components/CardText/cardText.js +2 -2
- package/lib/components/common/Card/components/CardTitle/cardTitle.d.ts +1 -0
- package/lib/components/common/Card/components/CardTitle/cardTitle.js +2 -2
- package/lib/components/common/Card/components/RoundedCard/roundedCard.d.ts +1 -1
- package/lib/components/common/Card/components/RoundedCard/roundedCard.js +2 -2
- package/lib/components/common/Code/code.d.ts +1 -0
- package/lib/components/common/Code/code.js +3 -3
- package/lib/components/common/Code/code.stories.d.ts +2 -2
- package/lib/components/common/CopyToClipboard/copyToClipboard.d.ts +1 -0
- package/lib/components/common/CopyToClipboard/copyToClipboard.js +4 -5
- package/lib/components/common/CopyToClipboard/copyToClipboard.stories.d.ts +2 -2
- package/lib/components/common/CustomIcon/components/AddIcon/addIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/AddIcon/addIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/AlertIcon/alertIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/AlertIcon/alertIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/CheckedIcon/checkedIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/CheckedIcon/checkedIcon.js +2 -4
- package/lib/components/common/CustomIcon/components/CloseIcon/closeIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/CloseIcon/closeIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/DownloadIcon/downloadIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/DownloadIcon/downloadIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/ErrorIcon/errorIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/ErrorIcon/errorIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/FacebookIcon/facebookIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/FacebookIcon/facebookIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.js +2 -4
- package/lib/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/GoogleIcon/googleIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/GoogleIcon/googleIcon.js +2 -6
- package/lib/components/common/CustomIcon/components/HelpIcon/helpIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/HelpIcon/helpIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/InProgressIcon/inProgressIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/InProgressIcon/inProgressIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.js +2 -4
- package/lib/components/common/CustomIcon/components/InfoIcon/infoIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/InfoIcon/infoIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/LoadingIcon/loadingIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/LoadingIcon/loadingIcon.js +2 -20
- package/lib/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/RemoveIcon/removeIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/RemoveIcon/removeIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/SearchIcon/searchIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/SearchIcon/searchIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/Segment/segment.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/Segment/segment.js +2 -3
- package/lib/components/common/CustomIcon/components/SlackIcon/slackIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/SlackIcon/slackIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/SouthIcon/southIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/SouthIcon/southIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/SuccessIcon/successIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/SuccessIcon/successIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/UncheckedDisabledIcon/uncheckedDisabledIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/UncheckedDisabledIcon/uncheckedDisabledIcon.js +2 -4
- package/lib/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/WarningIcon/warningIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/WarningIcon/warningIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/XIcon/xIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/XIcon/xIcon.js +2 -3
- package/lib/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.d.ts +1 -0
- package/lib/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.js +2 -3
- package/lib/components/common/Dialog/components/DialogTitle/dialogTitle.d.ts +1 -1
- package/lib/components/common/Dialog/components/DialogTitle/dialogTitle.js +2 -5
- package/lib/components/common/Dialog/dialog.d.ts +1 -1
- package/lib/components/common/Dialog/dialog.js +2 -2
- package/lib/components/common/Dot/dot.d.ts +1 -0
- package/lib/components/common/Dot/dot.js +2 -2
- package/lib/components/common/Drawer/components/DrawerTitle/drawerTitle.d.ts +1 -1
- package/lib/components/common/Drawer/components/DrawerTitle/drawerTitle.js +2 -5
- package/lib/components/common/Drawer/drawer.d.ts +1 -1
- package/lib/components/common/Drawer/drawer.js +2 -2
- package/lib/components/common/Drawer/provider/provider.d.ts +1 -0
- package/lib/components/common/Drawer/provider/provider.js +5 -4
- package/lib/components/common/DropdownMenu/components/MenuItem/menuItem.d.ts +1 -1
- package/lib/components/common/DropdownMenu/components/MenuItem/menuItem.js +2 -3
- package/lib/components/common/DropdownMenu/dropdownMenu.d.ts +1 -0
- package/lib/components/common/DropdownMenu/dropdownMenu.js +3 -4
- package/lib/components/common/EllipsisContent/ellipsisContent.d.ts +1 -1
- package/lib/components/common/EllipsisContent/ellipsisContent.js +3 -5
- package/lib/components/common/Form/components/Input/input.d.ts +1 -0
- package/lib/components/common/Form/components/Input/input.js +2 -4
- package/lib/components/common/Form/components/Input/input.styles.d.ts +1 -3
- package/lib/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.d.ts +1 -0
- package/lib/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.js +2 -2
- package/lib/components/common/Form/components/Select/select.d.ts +1 -1
- package/lib/components/common/Form/components/Select/select.js +2 -4
- package/lib/components/common/Form/components/Select/select.styles.d.ts +1 -3
- package/lib/components/common/Form/components/UploadFile/uploadFile.d.ts +1 -0
- package/lib/components/common/Form/components/UploadFile/uploadFile.js +2 -13
- package/lib/components/common/Form/components/UploadFile/uploadFile.styles.d.ts +1 -3
- package/lib/components/common/Grid/components/GridItem/gridItem.d.ts +1 -1
- package/lib/components/common/Grid/components/GridItem/gridItem.js +2 -2
- package/lib/components/common/Grid/grid.d.ts +1 -1
- package/lib/components/common/Grid/grid.js +2 -2
- package/lib/components/common/IconBadge/iconBadge.d.ts +1 -1
- package/lib/components/common/IconBadge/iconBadge.js +2 -3
- package/lib/components/common/IconButton/iconButton.d.ts +1 -1
- package/lib/components/common/IconButton/iconButton.js +2 -3
- package/lib/components/common/IconButton/iconButton.styles.d.ts +1 -3
- package/lib/components/common/Input/input.d.ts +1 -1
- package/lib/components/common/Input/input.js +2 -4
- package/lib/components/common/Input/input.styles.d.ts +1 -3
- package/lib/components/common/KeyValuePairs/components/KeyElType/keyElType.d.ts +1 -0
- package/lib/components/common/KeyValuePairs/components/KeyElType/keyElType.js +2 -2
- package/lib/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.d.ts +1 -1
- package/lib/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.js +2 -2
- package/lib/components/common/KeyValuePairs/components/ValueElType/valueElType.d.ts +1 -0
- package/lib/components/common/KeyValuePairs/components/ValueElType/valueElType.js +2 -2
- package/lib/components/common/KeyValuePairs/keyValuePairs.d.ts +1 -1
- package/lib/components/common/KeyValuePairs/keyValuePairs.js +7 -8
- package/lib/components/common/LoginDialog/loginDialog.d.ts +1 -0
- package/lib/components/common/LoginDialog/loginDialog.js +2 -12
- package/lib/components/common/Markdown/markdown.d.ts +1 -0
- package/lib/components/common/Markdown/markdown.js +2 -2
- package/lib/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.d.ts +1 -0
- package/lib/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.js +2 -4
- package/lib/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.styles.d.ts +1 -3
- package/lib/components/common/OutlinedInput/components/InputAdornment/components/SearchInputAdornment/searchInputAdornment.d.ts +1 -0
- package/lib/components/common/OutlinedInput/components/InputAdornment/components/SearchInputAdornment/searchInputAdornment.js +2 -3
- package/lib/components/common/OutlinedInput/components/InputAdornment/inputAdornment.styles.d.ts +1 -3
- package/lib/components/common/Paper/components/FlatPaper/flatPaper.d.ts +1 -0
- package/lib/components/common/Paper/components/FlatPaper/flatPaper.js +2 -2
- package/lib/components/common/Paper/components/FlatPaper/flatPaper.styles.d.ts +1 -3
- package/lib/components/common/Paper/components/FluidPaper/fluidPaper.d.ts +1 -0
- package/lib/components/common/Paper/components/FluidPaper/fluidPaper.js +2 -2
- package/lib/components/common/Paper/components/FluidPaper/fluidPaper.styles.d.ts +1 -3
- package/lib/components/common/Paper/components/RoundedPaper/roundedPaper.d.ts +1 -0
- package/lib/components/common/Paper/components/RoundedPaper/roundedPaper.js +2 -2
- package/lib/components/common/Paper/components/RoundedPaper/roundedPaper.styles.d.ts +1 -3
- package/lib/components/common/Paper/paper.d.ts +2 -2
- package/lib/components/common/Paper/paper.js +3 -2
- package/lib/components/common/Progress/components/CircularProgress/circularProgress.d.ts +1 -1
- package/lib/components/common/Progress/components/CircularProgress/circularProgress.js +2 -4
- package/lib/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.d.ts +1 -0
- package/lib/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.js +3 -2
- package/lib/components/common/RadioGroup/radioGroup.d.ts +1 -0
- package/lib/components/common/RadioGroup/radioGroup.js +2 -2
- package/lib/components/common/Section/components/CollapsableSection/collapsableSection.d.ts +1 -1
- package/lib/components/common/Section/components/CollapsableSection/collapsableSection.js +4 -7
- package/lib/components/common/Section/components/CollapsableSection/collapsableSection.styles.d.ts +1 -3
- package/lib/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.d.ts +1 -0
- package/lib/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.js +2 -2
- package/lib/components/common/Section/components/SectionTitle/sectionTitle.d.ts +1 -0
- package/lib/components/common/Section/components/SectionTitle/sectionTitle.js +2 -2
- package/lib/components/common/Section/components/SectionTitle/sectionTitle.stories.d.ts +2 -2
- package/lib/components/common/Section/section.styles.d.ts +4 -4
- package/lib/components/common/Sections/sections.d.ts +1 -1
- package/lib/components/common/Sections/sections.js +2 -3
- package/lib/components/common/Socials/socials.d.ts +2 -2
- package/lib/components/common/Socials/socials.js +3 -3
- package/lib/components/common/Socials/socials.stories.d.ts +1 -1
- package/lib/components/common/Stack/components/Divider/divider.d.ts +1 -1
- package/lib/components/common/Stack/components/Divider/divider.js +2 -2
- package/lib/components/common/Stack/stack.d.ts +1 -1
- package/lib/components/common/Stack/stack.js +2 -2
- package/lib/components/common/StaticImage/staticImage.d.ts +1 -0
- package/lib/components/common/StaticImage/staticImage.js +2 -3
- package/lib/components/common/StaticImage/staticImage.stories.d.ts +2 -2
- package/lib/components/common/StatusBadge/statusBadge.d.ts +1 -2
- package/lib/components/common/StatusBadge/statusBadge.js +3 -2
- package/lib/components/common/StatusBadge/statusBadge.stories.d.ts +1 -1
- package/lib/components/common/StatusIcon/statusIcon.d.ts +1 -1
- package/lib/components/common/StatusIcon/statusIcon.js +2 -3
- package/lib/components/common/StatusIcon/statusIcon.stories.d.ts +2 -2
- package/lib/components/common/Tabs/tabs.d.ts +1 -1
- package/lib/components/common/Tabs/tabs.js +3 -4
- package/lib/components/common/Tabs/tabs.styles.d.ts +1 -3
- package/lib/components/common/Tag/tag.d.ts +1 -0
- package/lib/components/common/Tag/tag.js +2 -2
- package/lib/components/common/Tag/tag.stories.d.ts +2 -2
- package/lib/components/common/Tag/tag.stories.js +2 -2
- package/lib/components/common/Tag/tag.styles.d.ts +2 -6
- package/lib/components/common/Title/title.d.ts +1 -0
- package/lib/components/common/Title/title.js +4 -3
- package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.d.ts +1 -0
- package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.js +3 -2
- package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.stories.d.ts +2 -2
- package/lib/components/common/Typography/TypographyWordBreak/TypographyWordBreak.d.ts +1 -1
- package/lib/components/common/Typography/TypographyWordBreak/TypographyWordBreak.js +2 -2
- package/lib/config/entities.d.ts +1 -1
- package/lib/config/utils.js +2 -6
- package/lib/entity/api/service.js +1 -3
- package/lib/hooks/authentication/session/useSessionIdleTimer.d.ts +1 -1
- package/lib/hooks/useAsync.js +2 -2
- package/lib/hooks/useCategoryFilter.js +1 -1
- package/lib/hooks/useEntityService.js +1 -2
- package/lib/hooks/useFileManifest/common/entities.d.ts +0 -9
- package/lib/hooks/useFileManifest/common/entities.js +1 -9
- package/lib/hooks/useRequestManifest/useRequestManifest.js +1 -2
- package/lib/hooks/useResizeObserver.d.ts +1 -1
- package/lib/hooks/useResizeObserver.js +1 -1
- package/lib/hooks/useWindowResize.js +8 -2
- package/lib/providers/authentication/terra/provider.d.ts +1 -0
- package/lib/providers/authentication/terra/provider.js +4 -3
- package/lib/providers/config.d.ts +2 -2
- package/lib/providers/config.js +4 -3
- package/lib/providers/dataDictionaryState/provider.d.ts +1 -1
- package/lib/providers/dataDictionaryState/provider.js +2 -2
- package/lib/providers/exploreState.d.ts +2 -2
- package/lib/providers/exploreState.js +3 -2
- package/lib/providers/fileManifestState.d.ts +2 -2
- package/lib/providers/fileManifestState.js +4 -3
- package/lib/providers/googleSignInAuthentication/provider.d.ts +1 -0
- package/lib/providers/googleSignInAuthentication/provider.js +2 -5
- package/lib/providers/layoutDimensions/context.js +2 -2
- package/lib/providers/layoutDimensions/provider.d.ts +1 -0
- package/lib/providers/layoutDimensions/provider.js +3 -2
- package/lib/providers/layoutDimensions/types.d.ts +2 -2
- package/lib/providers/loginGuard/provider.d.ts +1 -0
- package/lib/providers/loginGuard/provider.js +3 -4
- package/lib/providers/nextAuthAuthentication/provider.d.ts +1 -0
- package/lib/providers/nextAuthAuthentication/provider.js +2 -5
- package/lib/providers/services/provider.d.ts +1 -1
- package/lib/providers/services/provider.js +2 -2
- package/lib/providers/services/wasPop/provider.d.ts +1 -1
- package/lib/providers/services/wasPop/provider.js +4 -3
- package/lib/providers/systemStatus.d.ts +2 -2
- package/lib/providers/systemStatus.js +4 -3
- package/lib/storybook/controls/constants.d.ts +1 -1
- package/lib/storybook/controls/utils.d.ts +1 -1
- package/lib/storybook/decorators.d.ts +1 -1
- package/lib/storybook/decorators.js +2 -5
- package/lib/storybook/parameters.d.ts +1 -1
- package/lib/utils/mdx/plugins/rehypeSlug.d.ts +9 -1
- package/lib/utils/mdx/plugins/rehypeSlug.js +26 -4
- package/lib/utils/mdx/plugins/remarkHeadings.d.ts +1 -1
- package/lib/utils/mdx/plugins/remarkHeadings.js +6 -7
- package/lib/utils/mdx/plugins/types.d.ts +4 -0
- package/lib/utils/mdx/plugins/utils.d.ts +10 -0
- package/lib/utils/mdx/plugins/utils.js +8 -0
- package/lib/utils/mdx/staticGeneration/staticProps.d.ts +2 -2
- package/lib/views/ContentView/contentView.d.ts +1 -1
- package/lib/views/ContentView/contentView.js +2 -2
- package/lib/views/ContentView/contentView.stories.d.ts +1 -1
- package/lib/views/ContentView/contentView.stories.js +3 -19
- package/lib/views/DataDictionaryView/dataDictionaryView.d.ts +1 -0
- package/lib/views/DataDictionaryView/dataDictionaryView.js +2 -3
- package/lib/views/EntityDetailView/entityDetailView.d.ts +1 -0
- package/lib/views/EntityDetailView/entityDetailView.js +4 -6
- package/lib/views/EntityExportMethodView/entityExportMethodView.d.ts +1 -0
- package/lib/views/EntityExportMethodView/entityExportMethodView.js +3 -3
- package/lib/views/EntityExportView/entityExportView.d.ts +1 -0
- package/lib/views/EntityExportView/entityExportView.js +3 -3
- package/lib/views/ExploreView/exploreView.d.ts +1 -0
- package/lib/views/ExploreView/exploreView.js +3 -11
- package/lib/views/ExportMethodView/exportMethodView.d.ts +1 -0
- package/lib/views/ExportMethodView/exportMethodView.js +2 -2
- package/lib/views/ExportView/exportView.d.ts +1 -0
- package/lib/views/ExportView/exportView.js +2 -2
- package/lib/views/LoginView/loginView.d.ts +1 -0
- package/lib/views/LoginView/loginView.js +2 -2
- package/package.json +50 -59
- package/src/apis/azul/common/filterTransformer.ts +5 -5
- package/src/common/analytics/analytics.ts +1 -1
- package/src/common/categories/config/range/typeGuards.ts +1 -1
- package/src/common/categories/config/types.ts +5 -6
- package/src/common/categories/config/utils.ts +4 -4
- package/src/common/categories/models/range/utils.ts +2 -2
- package/src/common/categories/models/select/utils.ts +2 -2
- package/src/common/categories/views/range/typeGuards.ts +1 -1
- package/src/common/categories/views/range/utils.ts +2 -2
- package/src/common/categories/views/select/typeGuards.ts +1 -1
- package/src/common/chart/sort/constants.ts +13 -0
- package/src/common/chart/sort/types.ts +22 -0
- package/src/common/chart/sort/utils.ts +22 -0
- package/src/common/chart/types.ts +6 -0
- package/src/common/entities.ts +2 -1
- package/src/common/filters/sort/models/utils.ts +3 -3
- package/src/components/Authentication/components/SessionController/components/GoogleSessionController/SessionController.tsx +1 -1
- package/src/components/Authentication/components/SessionController/components/NextSessionController/SessionController.tsx +1 -1
- package/src/components/Authentication/components/SessionController/components/NextSessionController/utils.ts +3 -3
- package/src/components/ComponentCreator/ComponentCreator.tsx +4 -6
- package/src/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.tsx +1 -1
- package/src/components/ComponentCreator/components/RenderComponent/renderComponent.tsx +1 -1
- package/src/components/DataDictionary/common/utils.ts +8 -8
- package/src/components/DataDictionary/components/Description/description.styles.ts +3 -1
- package/src/components/DataDictionary/components/Description/description.tsx +1 -1
- package/src/components/DataDictionary/components/Entities/entities.tsx +1 -1
- package/src/components/DataDictionary/components/Entity/entity.tsx +1 -1
- package/src/components/DataDictionary/components/Entity/utils.ts +1 -1
- package/src/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.tsx +1 -1
- package/src/components/DataDictionary/components/Filters/components/ColumnFilterTags/types.ts +3 -2
- package/src/components/DataDictionary/components/Filters/components/ColumnFilters/columnFilters.tsx +1 -1
- package/src/components/DataDictionary/components/Filters/filters.tsx +1 -1
- package/src/components/DataDictionary/components/Filters/stories/constants.ts +1 -1
- package/src/components/DataDictionary/components/Filters/stories/filters.stories.tsx +3 -3
- package/src/components/DataDictionary/components/Filters/stories/utils.ts +1 -1
- package/src/components/DataDictionary/components/Layout/components/EntitiesLayout/entitiesLayout.tsx +3 -3
- package/src/components/DataDictionary/components/Layout/components/FiltersLayout/filtersLayout.tsx +3 -3
- package/src/components/DataDictionary/components/Layout/components/OutlineLayout/outlineLayout.tsx +1 -1
- package/src/components/DataDictionary/components/Layout/components/TitleLayout/titleLayout.tsx +1 -1
- package/src/components/DataDictionary/components/Outline/components/ContentsTab/contentsTab.tsx +1 -1
- package/src/components/DataDictionary/components/Outline/outline.tsx +1 -1
- package/src/components/DataDictionary/components/Outline/utils.ts +3 -3
- package/src/components/DataDictionary/components/Table/components/BasicCell/basicCell.tsx +2 -2
- package/src/components/DataDictionary/components/Table/hook.ts +1 -1
- package/src/components/DataDictionary/components/Table/options/columnFilters/hook.ts +3 -3
- package/src/components/DataDictionary/components/Table/options/globalFilter/hook.ts +3 -3
- package/src/components/DataDictionary/components/Table/table.tsx +2 -2
- package/src/components/DataDictionary/components/Table/utils.ts +4 -4
- package/src/components/DataDictionary/components/Title/title.tsx +1 -1
- package/src/components/DataDictionary/components/Tooltip/components/Title/title.tsx +1 -1
- package/src/components/DataDictionary/components/Tooltip/tooltip.tsx +1 -1
- package/src/components/DataDictionary/dataDictionary.tsx +1 -1
- package/src/components/DataDictionary/hooks/UseDataDictionaryConfig/hook.ts +2 -2
- package/src/components/DataDictionary/hooks/UseMeasureFilters/hook.ts +1 -1
- package/src/components/DataDictionary/hooks/UseMeasureFilters/types.ts +1 -1
- package/src/components/Detail/components/AccessibilityBadge/accessibilityBadge.tsx +1 -1
- package/src/components/Detail/components/DetailViewTable/detailViewTable.tsx +1 -1
- package/src/components/Detail/components/Table/common/utils.ts +1 -1
- package/src/components/Detail/components/Table/components/TableBody/tableBody.tsx +1 -1
- package/src/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.tsx +1 -1
- package/src/components/Detail/components/Table/components/TableRows/tableRows.tsx +1 -1
- package/src/components/Detail/components/Table/stories/filter/filter.stories.tsx +1 -1
- package/src/components/Detail/components/Table/stories/table.stories.tsx +3 -3
- package/src/components/Detail/components/Table/table.tsx +1 -1
- package/src/components/Detail/detail.stories.tsx +1 -2
- package/src/components/Detail/detail.tsx +1 -1
- package/src/components/Error/error.stories.tsx +1 -1
- package/src/components/Error/error.tsx +8 -9
- package/src/components/ErrorBoundary/errorBoundary.tsx +3 -3
- package/src/components/Export/common/tracking.ts +2 -2
- package/src/components/Export/common/utils.ts +4 -4
- package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.tsx +1 -1
- package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.tsx +1 -1
- package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.tsx +1 -1
- package/src/components/Export/components/DownloadCurlCommand/downloadCurlCommand.tsx +4 -6
- package/src/components/Export/components/ExportForm/common/entities.ts +1 -1
- package/src/components/Export/components/ExportForm/components/ExportButton/exportButton.tsx +1 -1
- package/src/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.tsx +3 -3
- package/src/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.tsx +2 -2
- package/src/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.tsx +1 -1
- package/src/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.tsx +1 -1
- package/src/components/Export/components/ExportForm/exportForm.tsx +3 -3
- package/src/components/Export/components/ExportMethod/exportMethod.stories.tsx +1 -1
- package/src/components/Export/components/ExportMethod/exportMethod.tsx +9 -15
- package/src/components/Export/components/ExportSummary/common/utils.ts +1 -1
- package/src/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.tsx +1 -1
- package/src/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.tsx +1 -1
- package/src/components/Export/components/ExportSummary/exportSummary.tsx +1 -1
- package/src/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.tsx +1 -1
- package/src/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.tsx +1 -1
- package/src/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.tsx +2 -2
- package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.tsx +3 -3
- package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.tsx +2 -2
- package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.tsx +2 -2
- package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.tsx +1 -1
- package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.tsx +2 -2
- package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.tsx +9 -9
- package/src/components/Export/components/ExportToTerra/exportToTerra.tsx +3 -5
- package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.tsx +1 -1
- package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.tsx +1 -1
- package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.tsx +1 -3
- package/src/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.tsx +1 -1
- package/src/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.tsx +1 -1
- package/src/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.tsx +1 -1
- package/src/components/Export/components/ManifestDownload/manifestDownload.tsx +4 -6
- package/src/components/Filter/common/entities.ts +2 -2
- package/src/components/Filter/common/utils.ts +3 -3
- package/src/components/Filter/components/ClearAllFilters/clearAllFilters.tsx +1 -1
- package/src/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.tsx +3 -3
- package/src/components/Filter/components/Filter/filter.tsx +1 -1
- package/src/components/Filter/components/Filter/stories/args.ts +1 -1
- package/src/components/Filter/components/Filter/stories/filter.stories.tsx +2 -2
- package/src/components/Filter/components/FilterCountChip/filterCountChip.tsx +1 -1
- package/src/components/Filter/components/FilterCountChip/stories/filterCountChip.stories.tsx +1 -1
- package/src/components/Filter/components/FilterLabel/filterLabel.stories.tsx +2 -2
- package/src/components/Filter/components/FilterLabel/filterLabel.tsx +1 -1
- package/src/components/Filter/components/FilterMenu/filterMenu.stories.tsx +2 -2
- package/src/components/Filter/components/FilterMenu/filterMenu.tsx +2 -2
- package/src/components/Filter/components/FilterMenuSearch/filterMenuSearch.tsx +1 -1
- package/src/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.tsx +2 -2
- package/src/components/Filter/components/FilterRange/filterRange.tsx +5 -5
- package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/hook.ts +3 -3
- package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/schema.ts +3 -3
- package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/types.ts +1 -1
- package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/utils.ts +2 -2
- package/src/components/Filter/components/FilterRange/stories/args.ts +1 -1
- package/src/components/Filter/components/FilterRange/stories/filterRange.stories.tsx +1 -1
- package/src/components/Filter/components/FilterRange/types.ts +1 -2
- package/src/components/Filter/components/FilterRange/utils.ts +1 -1
- package/src/components/Filter/components/FilterTag/filterTag.tsx +1 -1
- package/src/components/Filter/components/FilterTag/stories/args.ts +2 -2
- package/src/components/Filter/components/FilterTag/stories/filterTag.stories.tsx +2 -2
- package/src/components/Filter/components/FilterTag/utils.ts +3 -3
- package/src/components/Filter/components/FilterTags/filterTags.stories.tsx +2 -2
- package/src/components/Filter/components/FilterTags/filterTags.tsx +1 -1
- package/src/components/Filter/components/Filters/filters.tsx +4 -4
- package/src/components/Filter/components/Filters/stories/args.ts +1 -1
- package/src/components/Filter/components/Filters/stories/filters.stories.tsx +2 -2
- package/src/components/Filter/components/HighlightedLabel/highlightedLabel.tsx +1 -1
- package/src/components/Filter/components/SearchAllFilters/common/utils.ts +1 -1
- package/src/components/Filter/components/SearchAllFilters/components/OutlinedInput/outlinedInput.tsx +2 -2
- package/src/components/Filter/components/SearchAllFilters/components/OutlinedInput/utils.ts +1 -1
- package/src/components/Filter/components/SearchAllFilters/components/VariableSizeList/VariableSizeList.tsx +13 -12
- package/src/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.tsx +5 -5
- package/src/components/Filter/components/SearchAllFilters/searchAllFilters.tsx +22 -23
- package/src/components/Filter/components/SearchAllFilters/stories/args.ts +1 -1
- package/src/components/Filter/components/SearchAllFilters/stories/searchAllFilters.stories.tsx +2 -2
- package/src/components/Filter/components/SearchAllFilters/types.ts +2 -1
- package/src/components/Filter/components/VariableSizeList/VariableSizeList.tsx +7 -7
- package/src/components/Filter/components/VariableSizeListItem/variableSizeListItem.tsx +1 -1
- package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/columnFiltersAdapter.tsx +3 -3
- package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/hooks/UseUpdateFilterSort/hook.ts +3 -3
- package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/hooks/UseUpdateFilterSort/utils.ts +2 -2
- package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/types.ts +4 -2
- package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/utils.ts +17 -17
- package/src/components/Filter/components/controls/Controls/components/FilterSort/filterSort.tsx +1 -1
- package/src/components/Filter/components/controls/Controls/components/FilterSort/stories/filterSort.stories.tsx +1 -1
- package/src/components/Filter/components/controls/Controls/controls.tsx +1 -1
- package/src/components/Filter/components/controls/Controls/types.ts +2 -1
- package/src/components/Filter/components/surfaces/drawer/Drawer/drawer.tsx +1 -1
- package/src/components/Filter/components/surfaces/drawer/Drawer/types.ts +1 -3
- package/src/components/Filter/components/surfaces/drawer/components/Button/button.tsx +1 -1
- package/src/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.tsx +1 -1
- package/src/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.tsx +1 -1
- package/src/components/Filter/components/views/select/SelectListItem/selectListItem.tsx +3 -3
- package/src/components/Filter/components/views/select/components/Checkbox/checkbox.tsx +1 -1
- package/src/components/Filter/components/views/select/components/ListItemButton/listItemButton.tsx +2 -2
- package/src/components/Filter/components/views/select/components/ListItemText/components/Count/count.tsx +1 -1
- package/src/components/Filter/components/views/select/components/ListItemText/components/Term/term.tsx +1 -1
- package/src/components/Filter/components/views/select/components/ListItemText/listItemText.tsx +3 -3
- package/src/components/Head/head.tsx +1 -1
- package/src/components/Index/components/AzulFileDownload/azulFileDownload.stories.tsx +1 -1
- package/src/components/Index/components/AzulFileDownload/azulFileDownload.tsx +1 -1
- package/src/components/Index/components/EntityView/components/controls/ActionButton/actionButton.tsx +1 -1
- package/src/components/Index/components/EntityView/components/controls/ExportButton/exportButton.tsx +1 -1
- package/src/components/Index/components/EntityView/components/controls/FilterButton/filterButton.tsx +1 -1
- package/src/components/Index/components/EntityView/components/controls/ViewToggle/stories/viewToggle.stories.tsx +1 -1
- package/src/components/Index/components/EntityView/components/controls/ViewToggle/viewToggle.tsx +1 -1
- package/src/components/Index/components/EntityView/components/layout/Summary/summary.tsx +1 -1
- package/src/components/Index/components/EntityView/components/layout/Title/title.tsx +1 -1
- package/src/components/Index/components/EntityView/components/navigation/Tabs/common/utils.ts +1 -1
- package/src/components/Index/components/EntityView/components/navigation/Tabs/tabs.tsx +1 -1
- package/src/components/Index/components/EntityView/components/slots/EntityListSlot/entityListSlot.tsx +1 -1
- package/src/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.tsx +1 -1
- package/src/components/Index/components/EntityView/components/views/ChartView/chartView.tsx +9 -3
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/barX/plot.ts +1 -1
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/barX/utils.ts +7 -7
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.tsx +1 -1
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UseBarCount/hook.ts +2 -2
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UseBarCount/utils.ts +3 -3
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UsePlotOptions/hook.ts +5 -10
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/args.ts +12 -12
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/chart.stories.tsx +2 -2
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/types.ts +1 -2
- package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/utils.ts +1 -1
- package/src/components/Index/components/EntityView/components/views/ChartView/hooks/UseChartView/types.ts +1 -1
- package/src/components/Index/components/EntityView/components/views/ChartView/hooks/UseChartView/useChartView.ts +4 -4
- package/src/components/Index/components/EntityView/components/views/ChartView/stories/args.ts +3 -3
- package/src/components/Index/components/EntityView/components/views/ChartView/stories/chartView.stories.tsx +2 -2
- package/src/components/Index/components/EntityView/components/views/ChartView/utils.ts +2 -2
- package/src/components/Index/components/EntityView/components/views/TableView/tableView.tsx +1 -1
- package/src/components/Index/index.tsx +1 -1
- package/src/components/Index/table/coreOptions/columns/cellFactory.tsx +1 -1
- package/src/components/Index/table/hook.ts +7 -7
- package/src/components/Layout/components/BackPage/backPageView.stories.tsx +1 -2
- package/src/components/Layout/components/BackPage/backPageView.tsx +3 -3
- package/src/components/Layout/components/BackPage/components/BackPageHero/backPageHero.tsx +1 -1
- package/src/components/Layout/components/BackPage/components/BackPageHero/components/Actions/actions.tsx +1 -1
- package/src/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.tsx +1 -1
- package/src/components/Layout/components/BackPage/components/BackPageHero/stories/backPageHero.stories.tsx +1 -1
- package/src/components/Layout/components/ContentLayout/components/Main/main.tsx +1 -1
- package/src/components/Layout/components/ContentLayout/contentLayout.styles.ts +1 -1
- package/src/components/Layout/components/ContentLayout/contentLayout.tsx +1 -1
- package/src/components/Layout/components/Floating/floating.tsx +1 -1
- package/src/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/title.tsx +1 -1
- package/src/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/utils.ts +2 -2
- package/src/components/Layout/components/Footer/components/VersionInfo/versionInfo.tsx +1 -1
- package/src/components/Layout/components/Footer/footer.stories.tsx +1 -2
- package/src/components/Layout/components/Footer/footer.tsx +1 -1
- package/src/components/Layout/components/Header/common/entities.ts +1 -1
- package/src/components/Layout/components/Header/common/utils.ts +10 -10
- package/src/components/Layout/components/Header/components/Announcements/announcements.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Actions/actions.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.tsx +2 -2
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.tsx +3 -3
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/common/utils.ts +2 -2
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.tsx +5 -4
- package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Logo/logo.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Navigation/common/utils.ts +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationButtonLabel/navigationButtonLabel.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.tsx +2 -2
- package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.tsx +1 -1
- package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.tsx +3 -3
- package/src/components/Layout/components/Header/components/Content/components/Navigation/navigation.tsx +7 -7
- package/src/components/Layout/components/Header/components/Content/components/Slogan/slogan.tsx +2 -2
- package/src/components/Layout/components/Header/header.stories.tsx +1 -2
- package/src/components/Layout/components/Header/header.tsx +1 -1
- package/src/components/Layout/components/Header/hooks/useHeaderNavigation.ts +1 -1
- package/src/components/Layout/components/Header/hooks/useHeaderVisibility.ts +1 -1
- package/src/components/Layout/components/Main/main.tsx +1 -1
- package/src/components/Layout/components/Nav/components/NavBarHero/navBarHero.tsx +1 -1
- package/src/components/Layout/components/Nav/nav.stories.tsx +1 -1
- package/src/components/Layout/components/Nav/nav.tsx +9 -6
- package/src/components/Layout/components/Outline/components/ContentsTab/contentsTab.tsx +1 -1
- package/src/components/Layout/components/Outline/components/ContentsTab/types.ts +1 -2
- package/src/components/Layout/components/Outline/hooks/UseTabs/hook.ts +1 -1
- package/src/components/Layout/components/Outline/hooks/UseTabs/utils.ts +1 -1
- package/src/components/Layout/components/Outline/outline.tsx +2 -2
- package/src/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.tsx +1 -1
- package/src/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.tsx +1 -1
- package/src/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.stories.tsx +1 -1
- package/src/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.tsx +1 -1
- package/src/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.tsx +1 -1
- package/src/components/Layout/components/Sidebar/sidebar.stories.tsx +2 -2
- package/src/components/Layout/components/Sidebar/sidebar.tsx +1 -1
- package/src/components/Links/common/utils.ts +2 -2
- package/src/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.tsx +11 -9
- package/src/components/Links/components/Link/link.tsx +2 -3
- package/src/components/Links/links.stories.tsx +1 -1
- package/src/components/Links/links.tsx +1 -1
- package/src/components/Loading/loading.stories.tsx +2 -2
- package/src/components/Loading/loading.tsx +1 -1
- package/src/components/Login/components/Button/button.tsx +1 -1
- package/src/components/Login/components/Buttons/buttons.tsx +1 -1
- package/src/components/Login/components/Section/components/Consent/consent.tsx +1 -1
- package/src/components/Login/components/Section/components/Consent/types.ts +2 -1
- package/src/components/Login/components/Section/components/Warning/warning.tsx +1 -1
- package/src/components/Login/hooks/useUserConsent/useUserConsent.ts +1 -1
- package/src/components/Login/hooks/useUserLogin/types.ts +4 -2
- package/src/components/Login/hooks/useUserLogin/useUserLogin.ts +1 -1
- package/src/components/Login/login.tsx +2 -2
- package/src/components/MarkdownRenderer/components/Anchor/anchor.tsx +2 -2
- package/src/components/MarkdownRenderer/components/Table/table.tsx +2 -2
- package/src/components/MarkdownRenderer/constants.ts +2 -2
- package/src/components/MarkdownRenderer/markdownRenderer.tsx +20 -24
- package/src/components/MarkdownRenderer/stories/markdownRenderer.stories.tsx +2 -2
- package/src/components/MarkdownRenderer/types.ts +2 -5
- package/src/components/NoResults/noResults.tsx +1 -1
- package/src/components/Plot/components/BarX/barX.tsx +1 -1
- package/src/components/Project/components/Citation/citation.stories.tsx +1 -1
- package/src/components/Project/components/Citation/citation.tsx +1 -1
- package/src/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.stories.tsx +1 -1
- package/src/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.tsx +1 -1
- package/src/components/Project/components/Contacts/contacts.stories.tsx +1 -1
- package/src/components/Project/components/Contacts/contacts.tsx +3 -8
- package/src/components/Project/components/Contributors/contributors.stories.tsx +1 -1
- package/src/components/Project/components/Contributors/contributors.tsx +1 -1
- package/src/components/Project/components/DataCurators/dataCurators.stories.tsx +1 -1
- package/src/components/Project/components/DataCurators/dataCurators.tsx +1 -1
- package/src/components/Project/components/DataReleasePolicy/dataReleasePolicy.stories.tsx +1 -1
- package/src/components/Project/components/DataReleasePolicy/dataReleasePolicy.tsx +6 -6
- package/src/components/Project/components/Description/description.stories.tsx +1 -1
- package/src/components/Project/components/Description/description.tsx +1 -1
- package/src/components/Project/components/Details/details.stories.tsx +1 -1
- package/src/components/Project/components/Details/details.tsx +1 -1
- package/src/components/Project/components/Publications/publications.stories.tsx +1 -1
- package/src/components/Project/components/Publications/publications.tsx +3 -3
- package/src/components/Project/components/SupplementaryLinks/supplementaryLinks.stories.tsx +1 -1
- package/src/components/Project/components/SupplementaryLinks/supplementaryLinks.tsx +1 -1
- package/src/components/Redirect/redirect.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepContent/stepContent.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepIcon/stepIcon.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepIcon/stories/stepIcon.stories.tsx +2 -2
- package/src/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/icon.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/stories/icon.stories.tsx +2 -2
- package/src/components/Stepper/components/Step/components/StepLabel/components/Label/label.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepLabel/components/Label/stories/label.stories.tsx +5 -2
- package/src/components/Stepper/components/Step/components/StepLabel/components/Optional/optional.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepLabel/stepLabel.tsx +1 -1
- package/src/components/Stepper/components/Step/components/StepLabel/stories/stepLabel.stories.tsx +7 -3
- package/src/components/Stepper/components/Step/step.tsx +1 -1
- package/src/components/Stepper/components/Step/stories/step.stories.tsx +8 -4
- package/src/components/Support/components/SupportRequest/components/Dialog/dialog.tsx +2 -1
- package/src/components/Support/components/SupportRequest/components/Dropzone/dropzone.tsx +1 -1
- package/src/components/Support/components/SupportRequest/components/SupportRequestForm/common/utils.ts +5 -5
- package/src/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.tsx +11 -9
- package/src/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.tsx +1 -1
- package/src/components/Support/components/SupportRequest/supportRequest.tsx +1 -1
- package/src/components/Support/components/ViewSupport/types.ts +1 -2
- package/src/components/Support/components/ViewSupport/viewSupport.tsx +1 -1
- package/src/components/Table/columnDef/accessorFn/typeGuards.ts +1 -1
- package/src/components/Table/columnDef/columnFilters/filterFn.ts +1 -1
- package/src/components/Table/columnDef/globalFilter/filterFn.ts +1 -1
- package/src/components/Table/columnDef/globalFilter/utils.ts +3 -3
- package/src/components/Table/common/typeGuards.ts +1 -1
- package/src/components/Table/common/utils.ts +10 -10
- package/src/components/Table/components/PaginationSummary/paginationSummary.tsx +1 -1
- package/src/components/Table/components/TableBody/tableBody.tsx +1 -1
- package/src/components/Table/components/TableCell/common/utils.ts +2 -2
- package/src/components/Table/components/TableCell/components/BasicCell/basicCell.tsx +1 -1
- package/src/components/Table/components/TableCell/components/ChipCell/chipCell.tsx +2 -2
- package/src/components/Table/components/TableCell/components/CodeCell/codeCell.tsx +2 -2
- package/src/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.tsx +2 -2
- package/src/components/Table/components/TableCell/components/LinkCell/linkCell.tsx +2 -2
- package/src/components/Table/components/TableCell/components/LinkCell/stories/linkCell.stories.tsx +1 -1
- package/src/components/Table/components/TableCell/components/LinkCell/utils.ts +2 -2
- package/src/components/Table/components/TableCell/components/MarkdownCell/markdownCell.styles.ts +3 -1
- package/src/components/Table/components/TableCell/components/MarkdownCell/markdownCell.tsx +2 -2
- package/src/components/Table/components/TableCell/components/MarkdownCell/stories/markdownCell.stories.tsx +2 -2
- package/src/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.tsx +2 -2
- package/src/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.tsx +1 -1
- package/src/components/Table/components/TableCell/components/NTagCell/nTagCell.tsx +1 -1
- package/src/components/Table/components/TableCell/components/RankedCell/rankedCell.tsx +2 -2
- package/src/components/Table/components/TableCell/components/RankedCell/utils.ts +1 -1
- package/src/components/Table/components/TableCell/components/RowPositionCell/rowPositionCell.tsx +1 -1
- package/src/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.tsx +1 -1
- package/src/components/Table/components/TableFeatures/ColumnFilter/columnFilter.tsx +2 -2
- package/src/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.tsx +1 -1
- package/src/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/stories/columFilterTag.stories.tsx +4 -3
- package/src/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/types.ts +1 -2
- package/src/components/Table/components/TableFeatures/ColumnFilter/types.ts +1 -2
- package/src/components/Table/components/TableFeatures/ColumnFilter/utils.ts +1 -1
- package/src/components/Table/components/TableFeatures/ColumnGrouping/utils.ts +2 -2
- package/src/components/Table/components/TableFeatures/ColumnVisibility/utils.ts +1 -1
- package/src/components/Table/components/TableFeatures/GlobalFilter/globalFilter.tsx +1 -1
- package/src/components/Table/components/TableFeatures/GlobalFilter/types.ts +1 -2
- package/src/components/Table/components/TableFeatures/RowSorting/utils.ts +2 -2
- package/src/components/Table/components/TableFeatures/TableDownload/tableDownload.tsx +1 -1
- package/src/components/Table/components/TableFeatures/TableDownload/types.ts +3 -2
- package/src/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.tsx +1 -1
- package/src/components/Table/components/TableHead/tableHead.tsx +1 -1
- package/src/components/Table/components/TableHead/utils.ts +1 -1
- package/src/components/Table/components/TablePagination/stories/args.ts +1 -1
- package/src/components/Table/components/TablePagination/stories/tablePagination.stories.tsx +1 -1
- package/src/components/Table/components/TablePagination/tablePagination.tsx +1 -1
- package/src/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.tsx +1 -1
- package/src/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.tsx +4 -4
- package/src/components/Table/components/TableRows/tableRows.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/ColumnGrouping/columnGrouping.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/menuItems.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/utils.ts +3 -3
- package/src/components/Table/components/TableToolbar/components/ColumnGrouping/utils.ts +2 -2
- package/src/components/Table/components/TableToolbar/components/ColumnVisibility/columnVisibility.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/menuItems.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/utils.ts +4 -4
- package/src/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.styles.ts +3 -1
- package/src/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.tsx +5 -3
- package/src/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.tsx +2 -2
- package/src/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/RowPreview/rowPreview.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.tsx +1 -1
- package/src/components/Table/components/TableToolbar/components/RowSelection/rowSelection.tsx +1 -1
- package/src/components/Table/components/TableToolbar/tableToolbar.tsx +1 -1
- package/src/components/Table/components/TableToolbar2/tableToolbar2.tsx +1 -1
- package/src/components/Table/coreOptions/state/pagination/utils.ts +1 -1
- package/src/components/Table/featureOptions/facetedColumn/getFacetedMinMaxValues.ts +3 -3
- package/src/components/Table/featureOptions/facetedColumn/utils.ts +2 -2
- package/src/components/Table/features/RowPosition/constants.ts +1 -1
- package/src/components/Table/features/RowPosition/utils.ts +3 -3
- package/src/components/Table/features/RowPreview/constants.ts +1 -1
- package/src/components/Table/features/RowPreview/utils.ts +4 -4
- package/src/components/Table/features/RowSelectionValidation/utils.ts +1 -1
- package/src/components/Table/features/TableDownload/constants.ts +1 -1
- package/src/components/Table/features/TableDownload/onDownload/utils.ts +2 -2
- package/src/components/Table/features/TableDownload/utils.ts +1 -1
- package/src/components/Table/features/entities.ts +4 -6
- package/src/components/Table/hooks/UseVirtualization/types.ts +1 -1
- package/src/components/Table/hooks/UseVirtualization/utils.ts +1 -1
- package/src/components/Table/options/updater.ts +1 -1
- package/src/components/Table/table.tsx +1 -1
- package/src/components/TableCreator/common/utils.ts +1 -1
- package/src/components/TableCreator/options/columnTrackSizing/typeGuards.ts +1 -1
- package/src/components/TableCreator/options/columnTrackSizing/utils.ts +2 -2
- package/src/components/TableCreator/options/grouping/hook.ts +1 -1
- package/src/components/TableCreator/options/initialState/columnVisibility.ts +1 -1
- package/src/components/TableCreator/options/initialState/hook.ts +2 -2
- package/src/components/TableCreator/options/rowSelection/hook.ts +1 -1
- package/src/components/TableCreator/options/visibility/hook.ts +1 -1
- package/src/components/TableCreator/tableCreator.tsx +1 -1
- package/src/components/TempError/components/errorBox.tsx +1 -1
- package/src/components/TempError/tempError.tsx +1 -1
- package/src/components/common/Accordion/accordion.stories.tsx +1 -2
- package/src/components/common/Accordion/accordion.tsx +1 -1
- package/src/components/common/Alert/alert.tsx +2 -2
- package/src/components/common/AnchorLink/anchorLink.tsx +1 -1
- package/src/components/common/Banner/banner.tsx +2 -2
- package/src/components/common/Banner/components/CookieBanner/cookieBanner.tsx +2 -3
- package/src/components/common/Banner/components/SessionTimeout/sessionTimeout.tsx +1 -1
- package/src/components/common/Banner/components/SystemIndexing/systemIndexing.tsx +1 -1
- package/src/components/common/Banner/components/SystemStatus/systemStatus.tsx +1 -1
- package/src/components/common/Breadcrumbs/breadcrumbs.stories.tsx +1 -1
- package/src/components/common/Breadcrumbs/breadcrumbs.tsx +2 -2
- package/src/components/common/Button/button.tsx +3 -3
- package/src/components/common/Button/components/ButtonOutline/buttonOutline.tsx +3 -3
- package/src/components/common/Button/components/ButtonPrimary/buttonPrimary.tsx +3 -3
- package/src/components/common/Button/components/ButtonSecondary/buttonSecondary.tsx +3 -3
- package/src/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.tsx +2 -2
- package/src/components/common/Button/components/ButtonText/buttonText.tsx +1 -1
- package/src/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.tsx +1 -1
- package/src/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.tsx +1 -1
- package/src/components/common/Button/components/CallToActionButton/callToActionButton.stories.tsx +1 -1
- package/src/components/common/Button/components/CallToActionButton/callToActionButton.tsx +13 -14
- package/src/components/common/Button/components/DropdownButton/dropdownButton.tsx +1 -1
- package/src/components/common/Button/components/FileDownloadButton/fileDownloadButton.tsx +1 -1
- package/src/components/common/Button/components/HelpIconButton/helpIconButton.stories.tsx +1 -1
- package/src/components/common/Button/components/HelpIconButton/helpIconButton.tsx +9 -10
- package/src/components/common/Button/components/NavigationButton/navigationButton.tsx +5 -3
- package/src/components/common/ButtonGroup/buttonGroup.tsx +1 -1
- package/src/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.tsx +1 -1
- package/src/components/common/Card/card.stories.tsx +1 -1
- package/src/components/common/Card/card.tsx +1 -1
- package/src/components/common/Card/components/CardAction/cardAction.tsx +1 -1
- package/src/components/common/Card/components/CardActionArea/cardActionArea.tsx +2 -2
- package/src/components/common/Card/components/CardActions/cardActions.tsx +1 -1
- package/src/components/common/Card/components/CardMedia/cardMedia.tsx +1 -1
- package/src/components/common/Card/components/CardSecondaryText/cardSecondaryText.tsx +1 -1
- package/src/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.tsx +1 -1
- package/src/components/common/Card/components/CardText/cardText.tsx +1 -1
- package/src/components/common/Card/components/CardTitle/cardTitle.tsx +1 -1
- package/src/components/common/Card/components/RoundedCard/roundedCard.tsx +1 -1
- package/src/components/common/Code/code.stories.tsx +1 -1
- package/src/components/common/Code/code.tsx +1 -1
- package/src/components/common/CopyToClipboard/copyToClipboard.stories.tsx +1 -1
- package/src/components/common/CopyToClipboard/copyToClipboard.tsx +2 -2
- package/src/components/common/CustomIcon/components/AddIcon/addIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/AlertIcon/alertIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/CheckedIcon/checkedIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/CloseIcon/closeIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/DownloadIcon/downloadIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/ErrorIcon/errorIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/FacebookIcon/facebookIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/GoogleIcon/googleIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/HelpIcon/helpIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/InProgressIcon/inProgressIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/InfoIcon/infoIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/LoadingIcon/loadingIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/RemoveIcon/removeIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/SearchIcon/searchIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/Segment/segment.tsx +1 -1
- package/src/components/common/CustomIcon/components/SlackIcon/slackIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/SouthIcon/southIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/SuccessIcon/successIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/UncheckedDisabledIcon/uncheckedDisabledIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/WarningIcon/warningIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/XIcon/xIcon.tsx +1 -1
- package/src/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.tsx +1 -1
- package/src/components/common/Dialog/components/DialogTitle/dialogTitle.tsx +1 -1
- package/src/components/common/Dialog/dialog.tsx +1 -1
- package/src/components/common/Dot/dot.tsx +1 -1
- package/src/components/common/Drawer/components/DrawerTitle/drawerTitle.tsx +1 -1
- package/src/components/common/Drawer/drawer.tsx +1 -1
- package/src/components/common/Drawer/provider/provider.tsx +1 -1
- package/src/components/common/DropdownMenu/components/MenuItem/menuItem.tsx +1 -1
- package/src/components/common/DropdownMenu/dropdownMenu.tsx +6 -4
- package/src/components/common/EllipsisContent/ellipsisContent.tsx +3 -3
- package/src/components/common/Form/components/Input/input.tsx +1 -1
- package/src/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.tsx +1 -1
- package/src/components/common/Form/components/Select/select.tsx +1 -1
- package/src/components/common/Form/components/UploadFile/uploadFile.tsx +3 -3
- package/src/components/common/Grid/components/GridItem/gridItem.tsx +1 -1
- package/src/components/common/Grid/grid.tsx +1 -1
- package/src/components/common/IconBadge/iconBadge.tsx +1 -1
- package/src/components/common/IconButton/iconButton.tsx +1 -1
- package/src/components/common/Input/input.tsx +2 -2
- package/src/components/common/KeyValuePairs/components/KeyElType/keyElType.tsx +1 -1
- package/src/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.tsx +1 -1
- package/src/components/common/KeyValuePairs/components/ValueElType/valueElType.tsx +1 -1
- package/src/components/common/KeyValuePairs/keyValuePairs.tsx +1 -1
- package/src/components/common/Link/typeGuards.ts +6 -6
- package/src/components/common/LoginDialog/loginDialog.tsx +1 -1
- package/src/components/common/Markdown/markdown.tsx +1 -1
- package/src/components/common/Menu/hooks/useMenu.ts +1 -1
- package/src/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.tsx +1 -1
- package/src/components/common/OutlinedInput/components/InputAdornment/components/SearchInputAdornment/searchInputAdornment.tsx +1 -1
- package/src/components/common/Paper/components/FlatPaper/flatPaper.tsx +2 -2
- package/src/components/common/Paper/components/FluidPaper/fluidPaper.tsx +2 -2
- package/src/components/common/Paper/components/RoundedPaper/roundedPaper.tsx +2 -2
- package/src/components/common/Paper/paper.tsx +2 -2
- package/src/components/common/Progress/components/CircularProgress/circularProgress.tsx +1 -1
- package/src/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.tsx +1 -1
- package/src/components/common/RadioGroup/radioGroup.tsx +1 -1
- package/src/components/common/Section/components/CollapsableSection/collapsableSection.tsx +1 -1
- package/src/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.tsx +1 -1
- package/src/components/common/Section/components/SectionTitle/sectionTitle.stories.tsx +1 -1
- package/src/components/common/Section/components/SectionTitle/sectionTitle.tsx +1 -1
- package/src/components/common/Sections/sections.tsx +1 -1
- package/src/components/common/Socials/socials.stories.tsx +1 -1
- package/src/components/common/Socials/socials.tsx +3 -8
- package/src/components/common/Stack/components/Divider/divider.tsx +1 -1
- package/src/components/common/Stack/stack.tsx +1 -1
- package/src/components/common/StaticImage/staticImage.stories.tsx +1 -1
- package/src/components/common/StaticImage/staticImage.tsx +1 -1
- package/src/components/common/StatusBadge/statusBadge.stories.tsx +1 -1
- package/src/components/common/StatusBadge/statusBadge.tsx +3 -3
- package/src/components/common/StatusIcon/statusIcon.stories.tsx +1 -1
- package/src/components/common/StatusIcon/statusIcon.tsx +1 -1
- package/src/components/common/Tabs/tabs.tsx +4 -4
- package/src/components/common/Tag/tag.stories.tsx +1 -2
- package/src/components/common/Tag/tag.tsx +1 -1
- package/src/components/common/Title/title.tsx +1 -1
- package/src/components/common/ToggleButtonGroup/hooks/UseToggleButtonGroup/hook.ts +2 -2
- package/src/components/common/ToggleButtonGroup/toggleButtonGroup.stories.tsx +1 -1
- package/src/components/common/ToggleButtonGroup/toggleButtonGroup.tsx +5 -5
- package/src/components/common/Typography/TypographyWordBreak/TypographyWordBreak.tsx +1 -1
- package/src/config/entities.ts +7 -7
- package/src/config/utils.ts +3 -3
- package/src/entity/api/service.ts +10 -10
- package/src/entity/apicf/service.ts +2 -2
- package/src/entity/common/client.ts +1 -1
- package/src/entity/common/service.ts +4 -4
- package/src/entity/service/model.ts +6 -6
- package/src/entity/tsv/service.ts +4 -4
- package/src/hooks/authentication/auth/useAuthReducer.ts +2 -2
- package/src/hooks/authentication/authentication/useAuthenticationReducer.ts +2 -2
- package/src/hooks/authentication/credentials/useCredentialsReducer.ts +1 -1
- package/src/hooks/authentication/providers/useProviders.ts +1 -1
- package/src/hooks/authentication/session/useSessionActive.ts +2 -2
- package/src/hooks/authentication/session/useSessionIdleTimer.ts +1 -2
- package/src/hooks/authentication/terra/useAuthenticationForm.ts +4 -4
- package/src/hooks/authentication/terra/useAuthenticationNIHExpiry.ts +1 -1
- package/src/hooks/authentication/token/useTokenReducer.ts +1 -1
- package/src/hooks/stateSyncManager/hook.ts +1 -1
- package/src/hooks/stateSyncManager/hooks/UseBeforePopState/hook.ts +1 -1
- package/src/hooks/stateSyncManager/hooks/UseStateSync/utils.ts +4 -4
- package/src/hooks/useAsync.ts +10 -10
- package/src/hooks/useBreakpointHelper.ts +2 -2
- package/src/hooks/useCategoryFilter.ts +22 -22
- package/src/hooks/useCurrentBreakpoint.ts +1 -1
- package/src/hooks/useEntityHeadTitle.ts +2 -2
- package/src/hooks/useEntityList.ts +5 -5
- package/src/hooks/useEntityService.ts +4 -4
- package/src/hooks/useExportToTerraResponseURL.ts +1 -1
- package/src/hooks/useFetchEntity.tsx +4 -4
- package/src/hooks/useFetchRequestURL.ts +1 -1
- package/src/hooks/useFileLocation.ts +1 -1
- package/src/hooks/useFileManifest/common/entities.ts +0 -11
- package/src/hooks/useFileManifest/common/utils.ts +13 -13
- package/src/hooks/useFileManifest/useFetchFilesFacets.ts +2 -2
- package/src/hooks/useFileManifest/useFetchSummary.ts +1 -1
- package/src/hooks/useFileManifest/useFileManifest.ts +1 -1
- package/src/hooks/useFileManifest/useFileManifestDownload.ts +5 -5
- package/src/hooks/useFileManifest/useFileManifestFileCount.ts +4 -4
- package/src/hooks/useFileManifest/useFileManifestFormat.ts +1 -1
- package/src/hooks/useFileManifest/useFileManifestSpreadsheet.ts +3 -3
- package/src/hooks/useHtmlStyle/hook.ts +1 -1
- package/src/hooks/useRequestFileLocation.ts +6 -6
- package/src/hooks/useRequestManifest/useRequestManifest.ts +2 -2
- package/src/hooks/useRequestManifest/utils.ts +6 -6
- package/src/hooks/useResetableState.ts +1 -1
- package/src/hooks/useResizeObserver.ts +7 -7
- package/src/hooks/useRouteHistory.ts +4 -4
- package/src/hooks/useURLFilterParams.ts +4 -4
- package/src/hooks/useWindowResize.ts +7 -2
- package/src/providers/authentication/auth/actions.ts +1 -1
- package/src/providers/authentication/auth/dispatch.ts +2 -2
- package/src/providers/authentication/authentication/actions.ts +1 -1
- package/src/providers/authentication/authentication/dispatch.ts +1 -1
- package/src/providers/authentication/authentication/reducer.ts +1 -1
- package/src/providers/authentication/authentication/utils.ts +1 -1
- package/src/providers/authentication/credentials/actions.ts +1 -1
- package/src/providers/authentication/credentials/dispatch.ts +1 -1
- package/src/providers/authentication/credentials/reducer.ts +1 -1
- package/src/providers/authentication/terra/hooks/useFetchProfiles.ts +3 -3
- package/src/providers/authentication/terra/hooks/useFetchTerraNIHProfile.ts +3 -3
- package/src/providers/authentication/terra/hooks/useFetchTerraProfile.ts +3 -3
- package/src/providers/authentication/terra/hooks/useFetchTerraTermsOfService.ts +3 -3
- package/src/providers/authentication/terra/hooks/utils.ts +2 -2
- package/src/providers/authentication/terra/provider.tsx +1 -1
- package/src/providers/authentication/terra/utils.ts +2 -2
- package/src/providers/authentication/token/reducer.ts +1 -1
- package/src/providers/config.tsx +1 -1
- package/src/providers/dataDictionaryState/actions/clearMeta/action.ts +1 -1
- package/src/providers/dataDictionaryState/actions/stateToUrl/action.ts +1 -1
- package/src/providers/dataDictionaryState/actions/updateColumnFilters/action.ts +1 -1
- package/src/providers/dataDictionaryState/actions/updateColumnFilters/dispatch.ts +1 -1
- package/src/providers/dataDictionaryState/actions/updateColumnFilters/utils.ts +3 -3
- package/src/providers/dataDictionaryState/actions/updateGlobalFilter/action.ts +1 -1
- package/src/providers/dataDictionaryState/actions/updateGlobalFilter/dispatch.ts +1 -1
- package/src/providers/dataDictionaryState/actions/updateGlobalFilter/utils.ts +3 -3
- package/src/providers/dataDictionaryState/actions/urlToState/action.ts +2 -2
- package/src/providers/dataDictionaryState/dictionaries/state.ts +2 -2
- package/src/providers/dataDictionaryState/dictionaries/utils.ts +1 -1
- package/src/providers/dataDictionaryState/hooks/UseDataDictionaryReducer/hook.ts +1 -1
- package/src/providers/dataDictionaryState/initializer/utils.ts +2 -2
- package/src/providers/dataDictionaryState/provider.tsx +1 -1
- package/src/providers/dataDictionaryState/reducer.ts +1 -1
- package/src/providers/exploreState/actions/clearMeta/action.ts +1 -1
- package/src/providers/exploreState/actions/stateToUrl/action.ts +1 -1
- package/src/providers/exploreState/actions/updateFilterSort/action.ts +1 -1
- package/src/providers/exploreState/actions/updateFilterSort/dispatch.ts +1 -1
- package/src/providers/exploreState/actions/updateFilterSort/utils.ts +1 -1
- package/src/providers/exploreState/actions/updateGrouping/action.ts +2 -2
- package/src/providers/exploreState/actions/updateGrouping/dispatch.ts +1 -1
- package/src/providers/exploreState/actions/updateGrouping/utils.ts +1 -1
- package/src/providers/exploreState/actions/updateVisibility/action.ts +3 -3
- package/src/providers/exploreState/actions/updateVisibility/dispatch.ts +1 -1
- package/src/providers/exploreState/actions/updateVisibility/utils.ts +1 -1
- package/src/providers/exploreState/actions/urlToState/action.ts +4 -4
- package/src/providers/exploreState/actions/urlToState/utils.ts +1 -1
- package/src/providers/exploreState/entities/query/buildQuery.ts +3 -3
- package/src/providers/exploreState/entities/state.ts +1 -1
- package/src/providers/exploreState/initializer/utils.ts +13 -13
- package/src/providers/exploreState/utils.ts +19 -19
- package/src/providers/exploreState.tsx +26 -25
- package/src/providers/fileManifestState.tsx +13 -12
- package/src/providers/googleSignInAuthentication/hooks/useGoogleSignInService.ts +2 -2
- package/src/providers/googleSignInAuthentication/provider.tsx +1 -1
- package/src/providers/googleSignInAuthentication/service/service.ts +3 -3
- package/src/providers/layoutDimensions/context.tsx +2 -2
- package/src/providers/layoutDimensions/provider.tsx +1 -1
- package/src/providers/layoutDimensions/types.ts +2 -2
- package/src/providers/loginGuard/provider.tsx +2 -2
- package/src/providers/nextAuthAuthentication/hooks/useNextAuthService.ts +2 -2
- package/src/providers/nextAuthAuthentication/provider.tsx +1 -1
- package/src/providers/services/provider.tsx +1 -1
- package/src/providers/services/wasPop/provider.tsx +2 -2
- package/src/providers/systemStatus.tsx +4 -4
- package/src/storybook/controls/constants.ts +1 -1
- package/src/storybook/controls/utils.ts +3 -3
- package/src/storybook/decorators.tsx +1 -1
- package/src/storybook/parameters.ts +1 -1
- package/src/styles/common/mixins/typography.ts +1 -1
- package/src/tests/utils.ts +3 -3
- package/src/theme/common/breakpoints.ts +1 -1
- package/src/theme/common/fontStyles.ts +1 -1
- package/src/theme/theme.ts +2 -2
- package/src/utils/database.ts +2 -2
- package/src/utils/fetchQueryParams.ts +1 -1
- package/src/utils/mdx/files/mapMDXSlugByFilePaths.ts +2 -2
- package/src/utils/mdx/frontmatter/validateMatter.ts +1 -1
- package/src/utils/mdx/plugins/rehypeSlug.ts +33 -5
- package/src/utils/mdx/plugins/remarkHeadings.ts +9 -10
- package/src/utils/mdx/plugins/types.ts +4 -0
- package/src/utils/mdx/plugins/utils.ts +12 -0
- package/src/utils/mdx/staticGeneration/staticPaths.ts +2 -2
- package/src/utils/mdx/staticGeneration/staticProps.ts +3 -4
- package/src/utils/mdx/staticGeneration/types.ts +1 -1
- package/src/utils/mdx/staticGeneration/utils.ts +2 -2
- package/src/utils/parseJsonQueryParam.ts +1 -1
- package/src/utils/replaceParameters.ts +1 -1
- package/src/utils/stateToUrlQuery.ts +1 -1
- package/src/utils/url.ts +1 -1
- package/src/viewModelBuilders/common/utils.ts +1 -1
- package/src/views/ContentView/contentView.stories.tsx +1 -1
- package/src/views/ContentView/contentView.tsx +1 -1
- package/src/views/DataDictionaryView/dataDictionaryView.tsx +1 -1
- package/src/views/DataDictionaryView/utils.ts +1 -1
- package/src/views/EntityDetailView/entityDetailView.tsx +3 -5
- package/src/views/EntityExportMethodView/entityExportMethodView.tsx +3 -3
- package/src/views/EntityExportView/entityExportView.tsx +1 -1
- package/src/views/ExploreView/exploreView.tsx +4 -4
- package/src/views/ExploreView/hooks/UseUpdateFilterSort/hook.ts +1 -1
- package/src/views/ExploreView/utils.ts +1 -1
- package/src/views/ExportMethodView/exportMethodView.tsx +2 -2
- package/src/views/ExportView/exportView.tsx +1 -1
- package/src/views/LoginView/loginView.tsx +1 -1
- package/tests/azulFileDownload.test.tsx +4 -5
- package/tests/buildCategoryViews.test.ts +15 -15
- package/tests/buildRequestFilters.test.ts +3 -3
- package/tests/buildRequestManifest.test.ts +8 -8
- package/tests/chart.test.tsx +2 -2
- package/tests/chartSortUtils.test.ts +119 -0
- package/tests/chartView.test.tsx +2 -2
- package/tests/dataDictionaryColumnFilters.test.tsx +3 -3
- package/tests/filter.test.tsx +1 -1
- package/tests/filterMenu.test.ts +1 -1
- package/tests/filterRange.test.tsx +21 -21
- package/tests/filterSortUtils.test.ts +1 -1
- package/tests/filters.test.tsx +1 -1
- package/tests/getFacetedMinMaxValues.test.ts +1 -1
- package/tests/getProfileStatus.test.ts +34 -34
- package/tests/linkCell.test.tsx +6 -6
- package/tests/markdownCell.test.tsx +2 -2
- package/tests/provider.test.tsx +15 -17
- package/tests/rowSelectionValidation.test.ts +11 -11
- package/tests/tableFilter.test.tsx +1 -1
- package/tests/terraProfileProvider.test.tsx +17 -21
- package/tests/theme.test.ts +13 -13
- package/tests/useFileLocation.test.ts +3 -3
- package/tests/useRequestManifest.test.ts +10 -12
- package/tests/useSessionActive.test.ts +9 -10
- package/tests/useWindowResize.test.ts +130 -0
- package/tests/viewModelBuilders_utils.test.ts +1 -1
- package/tests/viewToggle.test.tsx +5 -7
- package/tsconfig.json +2 -2
- package/types/data-explorer-ui.d.ts +4 -3
- package/lib/components/DataDictionary/components/Table/columns/columnDef.d.ts +0 -6
- package/lib/components/DataDictionary/components/Table/columns/columnDef.js +0 -33
- package/lib/components/DataDictionary/components/Table/columns/columnIdentifier.d.ts +0 -5
- package/lib/components/DataDictionary/components/Table/columns/columnIdentifier.js +0 -5
- package/lib/components/DataDictionary/components/Table/columns/types.d.ts +0 -2
- package/lib/components/DataDictionary/components/Table/components/BasicCell/types.d.ts +0 -4
- package/lib/components/DataDictionary/hooks/UseDataDictionary/hook.d.ts +0 -4
- package/lib/components/DataDictionary/hooks/UseDataDictionary/hook.js +0 -23
- package/lib/components/DataDictionary/hooks/UseDataDictionary/types.d.ts +0 -8
- package/lib/components/DataDictionary/hooks/UseDataDictionary/types.js +0 -1
- package/lib/components/DataDictionary/hooks/UseLayoutSpacing/hook.d.ts +0 -2
- package/lib/components/DataDictionary/hooks/UseLayoutSpacing/hook.js +0 -10
- package/lib/components/DataDictionary/hooks/UseLayoutSpacing/types.d.ts +0 -7
- package/lib/components/DataDictionary/hooks/UseLayoutSpacing/types.js +0 -1
- package/lib/components/Detail/components/Table/components/TableHead/tableHead.d.ts +0 -8
- package/lib/components/Detail/components/Table/components/TableHead/tableHead.js +0 -36
- package/lib/components/Filter/components/Filter/filter.stories.d.ts +0 -25
- package/lib/components/Filter/components/Filter/filter.stories.js +0 -42
- package/lib/components/Filter/components/FilterTag/filterTag.stories.d.ts +0 -16
- package/lib/components/Filter/components/FilterTag/filterTag.stories.js +0 -17
- package/lib/components/Filter/components/Filters/filters.stories.d.ts +0 -6
- package/lib/components/Filter/components/Filters/filters.stories.js +0 -91
- package/lib/components/Filter/components/SearchAllFilters/components/AutocompletePopper/autocompletePopper.styles.d.ts +0 -3
- package/lib/components/Filter/components/SearchAllFilters/components/AutocompletePopper/autocompletePopper.styles.js +0 -15
- package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.stories.d.ts +0 -6
- package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.stories.js +0 -82
- package/lib/components/Filter/components/SearchAllFiltersSearch/components/SearchCloseButton/searchCloseButton.d.ts +0 -1
- package/lib/components/Filter/components/SearchAllFiltersSearch/components/SearchCloseButton/searchCloseButton.js +0 -14
- package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.d.ts +0 -2
- package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.js +0 -12
- package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.styles.d.ts +0 -5
- package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.styles.js +0 -34
- package/lib/components/Index/components/Cell/cell.d.ts +0 -7
- package/lib/components/Index/components/Cell/cell.js +0 -10
- package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.d.ts +0 -2
- package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.js +0 -20
- package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.styles.d.ts +0 -13
- package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.styles.js +0 -12
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/constants.d.ts +0 -10
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/constants.js +0 -10
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/plot.d.ts +0 -3
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/plot.js +0 -91
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/utils.d.ts +0 -132
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/utils.js +0 -230
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.d.ts +0 -2
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.js +0 -7
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.styles.d.ts +0 -3
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.styles.js +0 -29
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/constants.d.ts +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/constants.js +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/args.d.ts +0 -4
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/args.js +0 -70
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/chart.stories.d.ts +0 -7
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/chart.stories.js +0 -18
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/types.d.ts +0 -6
- package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/types.js +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/constants.d.ts +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/constants.js +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/types.d.ts +0 -7
- package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/types.js +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/useChartView.d.ts +0 -3
- package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/useChartView.js +0 -11
- package/lib/components/Index/components/EntitiesView/components/ChartView/stories/args.d.ts +0 -3
- package/lib/components/Index/components/EntitiesView/components/ChartView/stories/args.js +0 -97
- package/lib/components/Index/components/EntitiesView/components/ChartView/stories/chartView.stories.d.ts +0 -6
- package/lib/components/Index/components/EntitiesView/components/ChartView/stories/chartView.stories.js +0 -15
- package/lib/components/Index/components/EntitiesView/components/ChartView/types.d.ts +0 -8
- package/lib/components/Index/components/EntitiesView/components/ChartView/types.js +0 -1
- package/lib/components/Index/components/EntitiesView/components/ChartView/utils.d.ts +0 -14
- package/lib/components/Index/components/EntitiesView/components/ChartView/utils.js +0 -23
- package/lib/components/Index/components/EntitiesView/components/EntityList/entityList.d.ts +0 -3
- package/lib/components/Index/components/EntitiesView/components/EntityList/entityList.js +0 -14
- package/lib/components/Index/components/EntitiesView/components/EntityList/types.d.ts +0 -6
- package/lib/components/Index/components/EntitiesView/components/EntityList/types.js +0 -1
- package/lib/components/Index/components/EntitiesView/constants.d.ts +0 -1
- package/lib/components/Index/components/EntitiesView/constants.js +0 -1
- package/lib/components/Index/components/EntitiesView/entitiesView.d.ts +0 -2
- package/lib/components/Index/components/EntitiesView/entitiesView.js +0 -15
- package/lib/components/Index/components/EntitiesView/entitiesView.styles.d.ts +0 -3
- package/lib/components/Index/components/EntitiesView/entitiesView.styles.js +0 -20
- package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/hook.d.ts +0 -2
- package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/hook.js +0 -14
- package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/types.d.ts +0 -13
- package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/types.js +0 -5
- package/lib/components/Index/components/EntitiesView/stories/entitiesView.stories.d.ts +0 -8
- package/lib/components/Index/components/EntitiesView/stories/entitiesView.stories.js +0 -50
- package/lib/components/Index/components/EntitiesView/types.d.ts +0 -8
- package/lib/components/Index/components/EntitiesView/types.js +0 -1
- package/lib/components/Index/components/Hero/components/ExportButton/exportButton.d.ts +0 -1
- package/lib/components/Index/components/Hero/components/ExportButton/exportButton.js +0 -13
- package/lib/components/Index/components/Hero/components/ExportButton/exportButton.styles.d.ts +0 -3
- package/lib/components/Index/components/Hero/components/ExportButton/exportButton.styles.js +0 -13
- package/lib/components/Index/components/Hero/components/Summaries/stories/summaries.stories.d.ts +0 -6
- package/lib/components/Index/components/Hero/components/Summaries/stories/summaries.stories.js +0 -14
- package/lib/components/Index/components/Hero/components/Summaries/summaries.d.ts +0 -9
- package/lib/components/Index/components/Hero/components/Summaries/summaries.js +0 -12
- package/lib/components/Index/components/Hero/components/Summaries/summaries.stories.d.ts +0 -13
- package/lib/components/Index/components/Hero/components/Summaries/summaries.stories.js +0 -18
- package/lib/components/Index/components/Hero/components/Summaries/summaries.styles.d.ts +0 -7
- package/lib/components/Index/components/Hero/components/Summaries/summaries.styles.js +0 -26
- package/lib/components/Index/components/Hero/hero.d.ts +0 -11
- package/lib/components/Index/components/Hero/hero.js +0 -12
- package/lib/components/Index/components/Hero/hero.stories.d.ts +0 -23
- package/lib/components/Index/components/Hero/hero.stories.js +0 -22
- package/lib/components/Index/components/Hero/hero.styles.d.ts +0 -16
- package/lib/components/Index/components/Hero/hero.styles.js +0 -44
- package/lib/components/Index/components/Hero/stories/hero.stories.d.ts +0 -6
- package/lib/components/Index/components/Hero/stories/hero.stories.js +0 -16
- package/lib/components/Index/components/NTag/components/Tooltip/tooltip.d.ts +0 -8
- package/lib/components/Index/components/NTag/components/Tooltip/tooltip.js +0 -57
- package/lib/components/Index/components/NTag/components/Tooltip/tooltip.styles.d.ts +0 -4
- package/lib/components/Index/components/NTag/components/Tooltip/tooltip.styles.js +0 -10
- package/lib/components/Index/components/NTag/nTag.d.ts +0 -10
- package/lib/components/Index/components/NTag/nTag.js +0 -8
- package/lib/components/Index/components/NTagCell/nTagCell.d.ts +0 -11
- package/lib/components/Index/components/NTagCell/nTagCell.js +0 -29
- package/lib/components/Index/components/NTagCell/nTagCell.stories.d.ts +0 -5
- package/lib/components/Index/components/NTagCell/nTagCell.stories.js +0 -16
- package/lib/components/Index/components/Tabs/common/utils.d.ts +0 -8
- package/lib/components/Index/components/Tabs/common/utils.js +0 -19
- package/lib/components/Index/components/Tabs/tabs.d.ts +0 -1
- package/lib/components/Index/components/Tabs/tabs.js +0 -20
- package/lib/components/Index/components/TitleCell/titleCell.d.ts +0 -6
- package/lib/components/Index/components/TitleCell/titleCell.js +0 -10
- package/lib/components/Index/components/TitleCell/titleCell.styles.d.ts +0 -3
- package/lib/components/Index/components/TitleCell/titleCell.styles.js +0 -6
- package/lib/components/Index/index.stories.d.ts +0 -6
- package/lib/components/Index/index.stories.js +0 -26
- package/lib/components/Index/stories/index.stories.d.ts +0 -6
- package/lib/components/Index/stories/index.stories.js +0 -17
- package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.stories.d.ts +0 -6
- package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.stories.js +0 -10
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.stories.d.ts +0 -5
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.stories.js +0 -29
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.d.ts +0 -6
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.js +0 -13
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.styles.d.ts +0 -36
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.styles.js +0 -9
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.d.ts +0 -5
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.js +0 -10
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.styles.d.ts +0 -36
- package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.styles.js +0 -9
- package/lib/components/Layout/components/Header/hooks/useMeasureHeader.d.ts +0 -5
- package/lib/components/Layout/components/Header/hooks/useMeasureHeader.js +0 -19
- package/lib/components/Layout/components/Outline/common/constants.d.ts +0 -2
- package/lib/components/Layout/components/Outline/common/constants.js +0 -1
- package/lib/components/Login/login.stories.d.ts +0 -6
- package/lib/components/Login/login.stories.js +0 -31
- package/lib/components/Table/components/CheckboxMenu/checkboxMenu.d.ts +0 -16
- package/lib/components/Table/components/CheckboxMenu/checkboxMenu.js +0 -28
- package/lib/components/Table/components/CheckboxMenu/checkboxMenu.stories.d.ts +0 -5
- package/lib/components/Table/components/CheckboxMenu/checkboxMenu.stories.js +0 -46
- package/lib/components/Table/components/CheckboxMenu/checkboxMenu.styles.d.ts +0 -3
- package/lib/components/Table/components/CheckboxMenu/checkboxMenu.styles.js +0 -21
- package/lib/components/Table/components/DownloadEntityResults/downloadEntityResults.d.ts +0 -6
- package/lib/components/Table/components/DownloadEntityResults/downloadEntityResults.js +0 -17
- package/lib/components/Table/components/EntityViewToggle/entityViewToggle.d.ts +0 -2
- package/lib/components/Table/components/EntityViewToggle/entityViewToggle.js +0 -37
- package/lib/components/Table/components/Pagination/pagination.d.ts +0 -9
- package/lib/components/Table/components/Pagination/pagination.js +0 -19
- package/lib/components/Table/components/Pagination/pagination.stories.d.ts +0 -28
- package/lib/components/Table/components/Pagination/pagination.stories.js +0 -24
- package/lib/components/Table/components/Pagination/pagination.styles.d.ts +0 -4
- package/lib/components/Table/components/Pagination/pagination.styles.js +0 -15
- package/lib/components/Table/components/TableBody/hooks/virtualizer/constants.d.ts +0 -3
- package/lib/components/Table/components/TableBody/hooks/virtualizer/constants.js +0 -3
- package/lib/components/Table/components/TableBody/hooks/virtualizer/hook.d.ts +0 -8
- package/lib/components/Table/components/TableBody/hooks/virtualizer/hook.js +0 -18
- package/lib/components/Table/components/TableBody/hooks/virtualizer/types.d.ts +0 -4
- package/lib/components/Table/components/TableBody/hooks/virtualizer/types.js +0 -1
- package/lib/components/Table/components/TableBody/utils.d.ts +0 -12
- package/lib/components/Table/components/TableBody/utils.js +0 -17
- package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/types.d.ts +0 -3
- package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/types.js +0 -1
- package/lib/components/Table/components/TableCell/components/MarkdownCell/types.d.ts +0 -3
- package/lib/components/Table/components/TableCell/components/MarkdownCell/types.js +0 -1
- package/lib/components/TableCreator/common/constants.d.ts +0 -6
- package/lib/components/TableCreator/common/constants.js +0 -19
- package/lib/components/TableCreator/common/entities.d.ts +0 -5
- package/lib/components/TableCreator/common/entities.js +0 -1
- package/lib/components/TableCreator/tableCreator.styles.d.ts +0 -4
- package/lib/components/TableCreator/tableCreator.styles.js +0 -4
- package/lib/components/common/Alert/alert.stories.d.ts +0 -6
- package/lib/components/common/Alert/alert.stories.js +0 -36
- package/lib/components/common/Alert/components/AlertText/alertText.styles.d.ts +0 -4
- package/lib/components/common/Alert/components/AlertText/alertText.styles.js +0 -19
- package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.d.ts +0 -7
- package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.js +0 -5
- package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.styles.d.ts +0 -3
- package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.styles.js +0 -19
- package/lib/components/common/Banner/components/DismissibleBanner/dismissibleBanner.d.ts +0 -10
- package/lib/components/common/Banner/components/DismissibleBanner/dismissibleBanner.js +0 -16
- package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.styles.d.ts +0 -3
- package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.styles.js +0 -21
- package/lib/components/common/Button/components/LoginButton/loginButton.d.ts +0 -3
- package/lib/components/common/Button/components/LoginButton/loginButton.js +0 -6
- package/lib/components/common/Button/components/LoginButton/loginButton.styles.d.ts +0 -7
- package/lib/components/common/Button/components/LoginButton/loginButton.styles.js +0 -11
- package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.d.ts +0 -5
- package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.js +0 -10
- package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.stories.d.ts +0 -3
- package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.stories.js +0 -9
- package/lib/hooks/useAuthentication/common/constants.d.ts +0 -4
- package/lib/hooks/useAuthentication/common/constants.js +0 -19
- package/lib/hooks/useAuthentication/common/entities.d.ts +0 -25
- package/lib/hooks/useAuthentication/common/entities.js +0 -11
- package/lib/hooks/useAuthentication/common/utils.d.ts +0 -15
- package/lib/hooks/useAuthentication/common/utils.js +0 -25
- package/lib/hooks/useAuthentication/useAuthentication.d.ts +0 -6
- package/lib/hooks/useAuthentication/useAuthentication.js +0 -9
- package/lib/hooks/useAuthentication/useAuthenticationComplete.d.ts +0 -6
- package/lib/hooks/useAuthentication/useAuthenticationComplete.js +0 -55
- package/lib/hooks/useAuthentication/useAuthenticationForm.d.ts +0 -20
- package/lib/hooks/useAuthentication/useAuthenticationForm.js +0 -88
- package/lib/hooks/useAuthentication/useAuthenticationNIHExpiry.d.ts +0 -18
- package/lib/hooks/useAuthentication/useAuthenticationNIHExpiry.js +0 -50
- package/lib/hooks/useAuthentication/useAuthenticationStatus.d.ts +0 -20
- package/lib/hooks/useAuthentication/useAuthenticationStatus.js +0 -32
- package/lib/hooks/useAuthentication/useFetchGoogleProfile.d.ts +0 -21
- package/lib/hooks/useAuthentication/useFetchGoogleProfile.js +0 -41
- package/lib/hooks/useAuthentication/useFetchTerraNIHProfile.d.ts +0 -18
- package/lib/hooks/useAuthentication/useFetchTerraNIHProfile.js +0 -62
- package/lib/hooks/useAuthentication/useFetchTerraProfile.d.ts +0 -24
- package/lib/hooks/useAuthentication/useFetchTerraProfile.js +0 -62
- package/lib/hooks/useAuthentication/useFetchTerraTermsOfService.d.ts +0 -15
- package/lib/hooks/useAuthentication/useFetchTerraTermsOfService.js +0 -62
- package/lib/hooks/useAuthentication/useTokenClient.d.ts +0 -11
- package/lib/hooks/useAuthentication/useTokenClient.js +0 -29
- package/lib/hooks/useAuthenticationConfig.d.ts +0 -6
- package/lib/hooks/useAuthenticationConfig.js +0 -14
- package/lib/hooks/useCategoryConfigs.d.ts +0 -6
- package/lib/hooks/useCategoryConfigs.js +0 -17
- package/lib/hooks/useEntityListRelatedView.d.ts +0 -15
- package/lib/hooks/useEntityListRelatedView.js +0 -62
- package/lib/hooks/useExploreMode.d.ts +0 -14
- package/lib/hooks/useExploreMode.js +0 -20
- package/lib/hooks/useFileManifest/common/buildFileManifestRequestURL.d.ts +0 -15
- package/lib/hooks/useFileManifest/common/buildFileManifestRequestURL.js +0 -27
- package/lib/hooks/useFileManifest/useFileManifestURL.d.ts +0 -5
- package/lib/hooks/useFileManifest/useFileManifestURL.js +0 -11
- package/lib/hooks/useFileManifest/useRequestFileManifest.d.ts +0 -9
- package/lib/hooks/useFileManifest/useRequestFileManifest.js +0 -37
- package/lib/hooks/useLayoutState.d.ts +0 -6
- package/lib/hooks/useLayoutState.js +0 -9
- package/lib/hooks/useMenu.d.ts +0 -10
- package/lib/hooks/useMenu.js +0 -17
- package/lib/hooks/useMenuWithPosition.d.ts +0 -14
- package/lib/hooks/useMenuWithPosition.js +0 -33
- package/lib/hooks/useScroll.d.ts +0 -10
- package/lib/hooks/useScroll.js +0 -12
- package/lib/hooks/useSessionTimeout.d.ts +0 -11
- package/lib/hooks/useSessionTimeout.js +0 -28
- package/lib/mocks/@storybook/addon-actions.d.ts +0 -9
- package/lib/mocks/@storybook/addon-actions.js +0 -9
- package/lib/providers/authentication.d.ts +0 -51
- package/lib/providers/authentication.js +0 -110
- package/lib/providers/layoutState.d.ts +0 -40
- package/lib/providers/layoutState.js +0 -47
- package/lib/styles/common/mixins/colors.d.ts +0 -25
- package/lib/styles/common/mixins/colors.js +0 -32
- package/lib/styles/common/mixins/fonts.d.ts +0 -16
- package/lib/styles/common/mixins/fonts.js +0 -30
- package/lib/styles/common/mixins/shadows.d.ts +0 -3
- package/lib/styles/common/mixins/shadows.js +0 -4
- package/lib/styles/common/mui/palette.d.ts +0 -47
- package/lib/styles/common/mui/palette.js +0 -47
- package/lib/theme/common/entities.d.ts +0 -6
- package/lib/theme/common/entities.js +0 -1
- package/src/mocks/@storybook/addon-actions.ts +0 -10
- /package/lib/{components/DataDictionary/components/Table/columns → common/chart}/types.js +0 -0
- /package/lib/{components/DataDictionary/components/Table/components/BasicCell → utils/mdx/plugins}/types.js +0 -0
package/.husky/pre-commit
CHANGED
package/.storybook/main.ts
CHANGED
|
@@ -1,52 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import * as path from "path";
|
|
1
|
+
import { defineMain } from "@storybook/nextjs-vite/node";
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
export default defineMain({
|
|
4
|
+
framework: "@storybook/nextjs-vite",
|
|
5
|
+
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
|
|
7
6
|
core: {
|
|
7
|
+
builder: "@storybook/builder-vite",
|
|
8
8
|
disableTelemetry: true,
|
|
9
9
|
},
|
|
10
|
-
|
|
11
|
-
addons: [
|
|
12
|
-
"@storybook/addon-links",
|
|
13
|
-
"@storybook/addon-essentials",
|
|
14
|
-
"@storybook/addon-interactions",
|
|
15
|
-
"@storybook/addon-mdx-gfm",
|
|
16
|
-
],
|
|
17
|
-
typescript: {
|
|
18
|
-
reactDocgen: "react-docgen-typescript",
|
|
19
|
-
reactDocgenTypescriptOptions: {
|
|
20
|
-
shouldExtractLiteralValuesFromEnum: true,
|
|
21
|
-
// Filter out third-party props from node_modules except @mui packages
|
|
22
|
-
propFilter: (prop: any) =>
|
|
23
|
-
prop.parent
|
|
24
|
-
? !/node_modules\/(?!@mui)/.test(prop.parent.fileName)
|
|
25
|
-
: true,
|
|
26
|
-
},
|
|
27
|
-
},
|
|
28
|
-
framework: {
|
|
29
|
-
name: "@storybook/nextjs",
|
|
30
|
-
options: {},
|
|
31
|
-
},
|
|
32
|
-
webpackFinal: async (config: any) => {
|
|
33
|
-
return {
|
|
34
|
-
...config,
|
|
35
|
-
resolve: {
|
|
36
|
-
...config.resolve,
|
|
37
|
-
alias: {
|
|
38
|
-
...config.resolve.alias,
|
|
39
|
-
app: path.resolve(__dirname, "../src"),
|
|
40
|
-
//images: path.resolve(__dirname, "../images"),
|
|
41
|
-
"@emotion/core": toPath("node_modules/@emotion/react"),
|
|
42
|
-
"emotion-theming": toPath("node_modules/@emotion/react"),
|
|
43
|
-
},
|
|
44
|
-
},
|
|
45
|
-
};
|
|
46
|
-
},
|
|
47
|
-
docs: {
|
|
48
|
-
autodocs: true,
|
|
49
|
-
},
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
export default config;
|
|
10
|
+
});
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,62 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [49.0.0](https://github.com/DataBiosphere/findable-ui/compare/v48.1.0...v49.0.0) (2026-02-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* chartview: add configurable bar sort order ([#772](https://github.com/DataBiosphere/findable-ui/issues/772)) (#773)
|
|
9
|
+
* remove unused filemanifesttype prop and type definitions from export components ([#767](https://github.com/DataBiosphere/findable-ui/issues/767)) (#768)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* chartview: add configurable bar sort order ([#772](https://github.com/DataBiosphere/findable-ui/issues/772)) ([#773](https://github.com/DataBiosphere/findable-ui/issues/773)) ([bea776a](https://github.com/DataBiosphere/findable-ui/commit/bea776a987a612d30a0010f29af128946f4aad48))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* remove unused filemanifesttype prop and type definitions from export components ([#767](https://github.com/DataBiosphere/findable-ui/issues/767)) ([#768](https://github.com/DataBiosphere/findable-ui/issues/768)) ([4da929f](https://github.com/DataBiosphere/findable-ui/commit/4da929fcfd3acaccdb60f269bbffa8be033fdec3))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Chores
|
|
22
|
+
|
|
23
|
+
* remove debug code ([#762](https://github.com/DataBiosphere/findable-ui/issues/762)) ([#765](https://github.com/DataBiosphere/findable-ui/issues/765)) ([6a6b8f5](https://github.com/DataBiosphere/findable-ui/commit/6a6b8f5087bf972397fa4104f946b41eae03a0da))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Code Refactoring
|
|
27
|
+
|
|
28
|
+
* render null instead of empty fragment when hideTabs is true ([#770](https://github.com/DataBiosphere/findable-ui/issues/770)) ([#771](https://github.com/DataBiosphere/findable-ui/issues/771)) ([62733b7](https://github.com/DataBiosphere/findable-ui/commit/62733b7fb271fa6be4a29b7c7d545272a1c3e9ef))
|
|
29
|
+
|
|
30
|
+
## [48.1.0](https://github.com/DataBiosphere/findable-ui/compare/v48.0.0...v48.1.0) (2026-01-11)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Features
|
|
34
|
+
|
|
35
|
+
* add debug messages to rp ([#762](https://github.com/DataBiosphere/findable-ui/issues/762)) ([#763](https://github.com/DataBiosphere/findable-ui/issues/763)) ([eb1454a](https://github.com/DataBiosphere/findable-ui/commit/eb1454a22bc27efa85e3b672330a32a775ae9763))
|
|
36
|
+
|
|
37
|
+
## [48.0.0](https://github.com/DataBiosphere/findable-ui/compare/v47.0.2...v48.0.0) (2026-01-06)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### ⚠ BREAKING CHANGES
|
|
41
|
+
|
|
42
|
+
* next.js to v15.x (step towards v16) ([#714](https://github.com/DataBiosphere/findable-ui/issues/714)) (#759)
|
|
43
|
+
|
|
44
|
+
### Features
|
|
45
|
+
|
|
46
|
+
* added facets endpoint [#737](https://github.com/DataBiosphere/findable-ui/issues/737) ([#741](https://github.com/DataBiosphere/findable-ui/issues/741)) ([c7d4445](https://github.com/DataBiosphere/findable-ui/commit/c7d444576d3c609c5212cb8cf7a18bb64f48df4d))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Bug Fixes
|
|
50
|
+
|
|
51
|
+
* fix "window is not defined" error in usewindowresize hook ([#742](https://github.com/DataBiosphere/findable-ui/issues/742)) ([#743](https://github.com/DataBiosphere/findable-ui/issues/743)) ([44c42a2](https://github.com/DataBiosphere/findable-ui/commit/44c42a2fb7163f710ab07991a0faef1470438559))
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### Chores
|
|
55
|
+
|
|
56
|
+
* add claude.md for ([#739](https://github.com/DataBiosphere/findable-ui/issues/739)) ([#740](https://github.com/DataBiosphere/findable-ui/issues/740)) ([969b484](https://github.com/DataBiosphere/findable-ui/commit/969b4844b83725128133abf83c378125a8d78880))
|
|
57
|
+
* next.js to v15.x (step towards v16) ([#714](https://github.com/DataBiosphere/findable-ui/issues/714)) ([#759](https://github.com/DataBiosphere/findable-ui/issues/759)) ([b312990](https://github.com/DataBiosphere/findable-ui/commit/b31299036707559f07271e38fc978ae8a513c157))
|
|
58
|
+
* upgrade storybook to latest version ([#733](https://github.com/DataBiosphere/findable-ui/issues/733)) ([#734](https://github.com/DataBiosphere/findable-ui/issues/734)) ([b419e22](https://github.com/DataBiosphere/findable-ui/commit/b419e2226768c6182191a0936955b7ed98cfcfc3))
|
|
59
|
+
|
|
3
60
|
## [47.0.2](https://github.com/DataBiosphere/findable-ui/compare/v47.0.1...v47.0.2) (2025-12-11)
|
|
4
61
|
|
|
5
62
|
|
package/CLAUDE.md
ADDED
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
# CLAUDE.md
|
|
2
|
+
|
|
3
|
+
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
4
|
+
|
|
5
|
+
## Repository Overview
|
|
6
|
+
|
|
7
|
+
This is a TypeScript library package (`@databiosphere/findable-ui`) that provides reusable UI components and utilities for Data Biosphere applications, particularly the Data Browser. It compiles TypeScript source from `src/` to JavaScript in `lib/` for distribution as an npm package.
|
|
8
|
+
|
|
9
|
+
**Key Facts:**
|
|
10
|
+
|
|
11
|
+
- **Node Version:** 22.12.0 (enforced by package.json)
|
|
12
|
+
- **UI Framework:** React 18 with Material-UI v7 and Emotion for styling
|
|
13
|
+
- **Build System:** TypeScript compiler (`tsc`) with strict mode enabled
|
|
14
|
+
- **Import Pattern:** External apps import as `@databiosphere/findable-ui/lib/<path>`
|
|
15
|
+
|
|
16
|
+
## Development Commands
|
|
17
|
+
|
|
18
|
+
### Essential Commands
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
# Install dependencies (use ci for clean install)
|
|
22
|
+
npm ci
|
|
23
|
+
|
|
24
|
+
# Compile TypeScript to lib/ directory
|
|
25
|
+
npx tsc
|
|
26
|
+
|
|
27
|
+
# Run all validation checks
|
|
28
|
+
npm run check-format # Prettier formatting check
|
|
29
|
+
npm run lint # ESLint with TypeScript and SonarJS plugins
|
|
30
|
+
npm run test # Jest with React Testing Library
|
|
31
|
+
npm run test-compile # TypeScript compilation check (no emit)
|
|
32
|
+
|
|
33
|
+
# Development tools
|
|
34
|
+
npm run storybook # Launch Storybook on port 6006
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Running Single Tests
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
# Run specific test file
|
|
41
|
+
npm test -- path/to/file.test.ts
|
|
42
|
+
|
|
43
|
+
# Run tests in watch mode
|
|
44
|
+
npm test -- --watch
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Local Development with Data Browser
|
|
48
|
+
|
|
49
|
+
When developing alongside the Data Browser:
|
|
50
|
+
|
|
51
|
+
1. Clone both repos in the same parent directory
|
|
52
|
+
2. In findable-ui: `npm update && npx tsc`
|
|
53
|
+
3. In data-browser/explorer: `npm link ../findable-ui`
|
|
54
|
+
4. Rerun `npm link` if you install/uninstall packages (symlink gets removed)
|
|
55
|
+
5. May need to comment out `@tanstack/react-table` in Data Browser's `next.config.mjs` webpack config
|
|
56
|
+
|
|
57
|
+
**Important:** Run `npx tsc` whenever you make changes to source files that need testing in consuming apps.
|
|
58
|
+
|
|
59
|
+
## Code Architecture
|
|
60
|
+
|
|
61
|
+
### Directory Structure
|
|
62
|
+
|
|
63
|
+
- **`/src`** - TypeScript source (compiles to `/lib`)
|
|
64
|
+
- `/components` - React UI components (organized by feature)
|
|
65
|
+
- `/hooks` - Custom React hooks (useAsync, useExploreMode, etc.)
|
|
66
|
+
- `/providers` - React context providers for state management
|
|
67
|
+
- `/theme` - MUI theme configuration
|
|
68
|
+
- `/config` - Configuration entities and utilities
|
|
69
|
+
- `/apis` - API client code (e.g., Azul API integration)
|
|
70
|
+
- `/entity` - Entity service layer (api, service, common, tsv, apicf subdirectories)
|
|
71
|
+
- `/viewModelBuilders` - Transform API responses to view models
|
|
72
|
+
- `/views` - Page-level components
|
|
73
|
+
- `/utils` - Utility functions
|
|
74
|
+
- `/types` - TypeScript type definitions
|
|
75
|
+
- `/routes` - Routing utilities
|
|
76
|
+
- `/services` - Business logic services
|
|
77
|
+
- `/common` - Shared utilities (analytics, categories, filters, etc.)
|
|
78
|
+
- `/styles` - Global styles
|
|
79
|
+
- **`/tests`** - Jest test files (separate from src, not co-located)
|
|
80
|
+
- **`/lib`** - Compiled JavaScript output (git-ignored, generated by tsc)
|
|
81
|
+
|
|
82
|
+
### Key Architectural Patterns
|
|
83
|
+
|
|
84
|
+
**Entity Service Layer:** The `/entity` directory contains a service-oriented architecture for data fetching and transformation:
|
|
85
|
+
|
|
86
|
+
- `api/` - API-based entity services
|
|
87
|
+
- `service/` - Service factory and models
|
|
88
|
+
- `common/` - Shared client utilities
|
|
89
|
+
- `tsv/` - TSV-specific services
|
|
90
|
+
- `apicf/` - API custom field services
|
|
91
|
+
|
|
92
|
+
**Configuration-Driven Components:** Many components are driven by config objects defined in `/config/entities.ts`. This includes analytics, authentication, export methods, and layout configuration.
|
|
93
|
+
|
|
94
|
+
**Provider Architecture:** State management uses React Context providers (authentication, exploreState, fileManifestState, dataDictionary, etc.) located in `/providers`.
|
|
95
|
+
|
|
96
|
+
**Analytics:** Google Analytics 4 integration via `src/common/analytics/`. Events are defined in entities.ts and tracked via the `track` function. See `src/common/analytics/readme-analytics.md` for event inventory.
|
|
97
|
+
|
|
98
|
+
## Code Style Requirements
|
|
99
|
+
|
|
100
|
+
### TypeScript Standards
|
|
101
|
+
|
|
102
|
+
**Strict Mode Enforcement:**
|
|
103
|
+
|
|
104
|
+
- All TypeScript strict checks enabled
|
|
105
|
+
- **Explicit return types required** for all functions (except `.styles.ts(x)` files)
|
|
106
|
+
- No `any` type (exceptions allowed in test files)
|
|
107
|
+
- Strict null checks enforced
|
|
108
|
+
|
|
109
|
+
**Sorting Requirements (ESLint enforced):**
|
|
110
|
+
|
|
111
|
+
- Object keys must be sorted alphabetically
|
|
112
|
+
- Destructured keys must be sorted
|
|
113
|
+
- Interface properties must be sorted
|
|
114
|
+
- String enums must be sorted
|
|
115
|
+
- Imports auto-organized by prettier-plugin-organize-imports
|
|
116
|
+
|
|
117
|
+
**File Naming:** Use kebab-case (e.g., `my-component.tsx`)
|
|
118
|
+
|
|
119
|
+
### JSDoc Documentation
|
|
120
|
+
|
|
121
|
+
**Required for all functions:**
|
|
122
|
+
|
|
123
|
+
```typescript
|
|
124
|
+
/**
|
|
125
|
+
* Transforms a route by removing inactivity parameters.
|
|
126
|
+
* @param routes - Array of route strings to transform.
|
|
127
|
+
* @returns The first non-login route without inactivity param, or undefined.
|
|
128
|
+
*/
|
|
129
|
+
function transformRoute(routes: string[]): string | undefined {
|
|
130
|
+
// implementation
|
|
131
|
+
}
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
**Requirements:**
|
|
135
|
+
|
|
136
|
+
- Function description
|
|
137
|
+
- `@param` tags with descriptions (hyphen required before description)
|
|
138
|
+
- `@returns` tag with description
|
|
139
|
+
|
|
140
|
+
### React Patterns
|
|
141
|
+
|
|
142
|
+
- Use functional components with hooks
|
|
143
|
+
- **react-hooks/exhaustive-deps is enforced** - include all dependencies in useEffect, useCallback, useMemo
|
|
144
|
+
- Styling: Use Emotion styled components in `.styles.ts` or `.styles.tsx` files
|
|
145
|
+
- Component structure: Keep components focused and single-responsibility
|
|
146
|
+
|
|
147
|
+
## Testing
|
|
148
|
+
|
|
149
|
+
**Test Location:** Tests live in `/tests` directory (not co-located with source)
|
|
150
|
+
|
|
151
|
+
**Test Framework:** Jest with `@testing-library/react` in jsdom environment
|
|
152
|
+
|
|
153
|
+
**Test Naming:** Use `.test.ts` or `.test.tsx` extension
|
|
154
|
+
|
|
155
|
+
**Global Mocks:** Pre-configured for ResizeObserver, TextEncoder, TextDecoder (see `tests/setup.ts`)
|
|
156
|
+
|
|
157
|
+
**Test Structure:**
|
|
158
|
+
|
|
159
|
+
```typescript
|
|
160
|
+
describe("ComponentName", () => {
|
|
161
|
+
it("should do something specific", () => {
|
|
162
|
+
// Arrange
|
|
163
|
+
const input = "test";
|
|
164
|
+
|
|
165
|
+
// Act
|
|
166
|
+
const result = functionUnderTest(input);
|
|
167
|
+
|
|
168
|
+
// Assert
|
|
169
|
+
expect(result).toBe("expected");
|
|
170
|
+
});
|
|
171
|
+
});
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
## Dependency Management
|
|
175
|
+
|
|
176
|
+
**This is a library package - use peer dependencies carefully.**
|
|
177
|
+
|
|
178
|
+
**Peer Dependencies:** Consuming applications must provide:
|
|
179
|
+
|
|
180
|
+
- React 18.3+
|
|
181
|
+
- Material-UI v7 (@mui/material, @mui/icons-material)
|
|
182
|
+
- Next.js 14.2+ and next-auth
|
|
183
|
+
- Emotion (@emotion/react, @emotion/styled)
|
|
184
|
+
- TanStack Table and Virtual
|
|
185
|
+
- Various utilities (ky, uuid, yup, etc.)
|
|
186
|
+
|
|
187
|
+
**Critical:** New dependencies should go in `peerDependencies` or `devDependencies`, NOT `dependencies`.
|
|
188
|
+
|
|
189
|
+
## Pre-Commit and CI Checks
|
|
190
|
+
|
|
191
|
+
**All PRs must pass:**
|
|
192
|
+
|
|
193
|
+
- Prettier formatting (`npm run check-format`)
|
|
194
|
+
- ESLint with no errors (`npm run lint`)
|
|
195
|
+
- All Jest tests passing (`npm test`)
|
|
196
|
+
- TypeScript compilation (`npm run test-compile`)
|
|
197
|
+
|
|
198
|
+
**Husky hooks:** Pre-commit hooks configured in `.husky/`
|
|
199
|
+
|
|
200
|
+
## Common Pitfalls
|
|
201
|
+
|
|
202
|
+
1. **Don't import from lib/** - Always import from `src/` during development
|
|
203
|
+
2. **Don't add to dependencies** - Use peerDependencies or devDependencies
|
|
204
|
+
3. **Don't disable ESLint rules** without justification
|
|
205
|
+
4. **Don't skip JSDoc** - Required for all public functions
|
|
206
|
+
5. **Don't commit lib/ directory** - It's build output and git-ignored
|
|
207
|
+
6. **Don't skip return types** - Explicit return types required (except .styles files)
|
|
208
|
+
7. **Maintain backward compatibility** - This is a library; breaking changes require major version bumps
|
|
209
|
+
|
|
210
|
+
## Special Notes
|
|
211
|
+
|
|
212
|
+
- **Release Management:** Uses release-please for automated versioning and changelog
|
|
213
|
+
- **Storybook:** Available for component development and visual testing
|
|
214
|
+
- **Import Paths:** Base URL is `./src` (configured in tsconfig.json), allowing absolute imports within src
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Findable Backend (FastAPI)
|
|
2
|
+
|
|
3
|
+
This folder contains a minimal FastAPI backend that exposes a stubbed **query-to-facets** endpoint for experimentation and PoC work.
|
|
4
|
+
|
|
5
|
+
## Requirements
|
|
6
|
+
|
|
7
|
+
- Python 3.9+
|
|
8
|
+
- `pip`
|
|
9
|
+
|
|
10
|
+
## Set up a Python virtual environment
|
|
11
|
+
|
|
12
|
+
From the repo root:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
python -m venv backend/.venv
|
|
16
|
+
source backend/.venv/bin/activate
|
|
17
|
+
python -m pip install --upgrade pip
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Install dependencies
|
|
21
|
+
|
|
22
|
+
From the repo root:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pip install -r backend/requirements.txt
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Run the server
|
|
29
|
+
|
|
30
|
+
From the repo root:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
uvicorn backend.main:app --reload
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
The app will start on `http://127.0.0.1:8000` by default.
|
|
37
|
+
|
|
38
|
+
## Format code
|
|
39
|
+
|
|
40
|
+
From the repo root:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
python -m black backend
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### Endpoint
|
|
47
|
+
|
|
48
|
+
- **Method:** `POST`
|
|
49
|
+
- **Path:** `/api/v0/facets`
|
|
50
|
+
- **Request body:**
|
|
51
|
+
|
|
52
|
+
```json
|
|
53
|
+
{ "query": "string" }
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
- **Example request:**
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
curl -sS -X POST "http://127.0.0.1:8000/api/v0/facets" \
|
|
60
|
+
-H "Content-Type: application/json" \
|
|
61
|
+
-d '{ "query": "public bam files for latino patients with diabetes" }'
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
- **Response:** currently returns a **hard-coded** JSON structure representing resolved facets for the query. This is intentionally stubbed for PoC and will be replaced by a real implementation later.
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
from fastapi import APIRouter
|
|
2
|
+
|
|
3
|
+
from backend.services.facets_service import compute_facets_from_query
|
|
4
|
+
from backend.services.models import FacetsResponse
|
|
5
|
+
|
|
6
|
+
from backend.controllers.models import FacetsRequest
|
|
7
|
+
|
|
8
|
+
router = APIRouter(prefix="/api/v0/facets", tags=["facets"])
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@router.post("")
|
|
12
|
+
def get_facets(payload: FacetsRequest) -> FacetsResponse:
|
|
13
|
+
"""
|
|
14
|
+
Return a stubbed query-to-facets response for PoC purposes.
|
|
15
|
+
"""
|
|
16
|
+
return compute_facets_from_query()
|
package/backend/main.py
ADDED
|
File without changes
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from backend.services.models import FacetsResponse
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def compute_facets_from_query() -> FacetsResponse:
|
|
7
|
+
"""Return a stubbed query-to-facets response for PoC purposes.
|
|
8
|
+
|
|
9
|
+
This function will later be replaced by a real implementation that uses
|
|
10
|
+
LLM-backed intent parsing and facet resolution.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
return FacetsResponse.model_validate(
|
|
14
|
+
{
|
|
15
|
+
"query": "public bam files for latino foobar patients with diabetes or foobaz",
|
|
16
|
+
"facets": [
|
|
17
|
+
{
|
|
18
|
+
"facet": "Access",
|
|
19
|
+
"selectedValues": [
|
|
20
|
+
{
|
|
21
|
+
"term": "Granted",
|
|
22
|
+
"mention": "public",
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"facet": "Diagnosis",
|
|
28
|
+
"selectedValues": [
|
|
29
|
+
{
|
|
30
|
+
"term": "MONDO:0005015",
|
|
31
|
+
"mention": "diabetes", # Mention resolved but value does not exist in dev
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"term": "unknown",
|
|
35
|
+
"mention": "foobaz", # Mention resolved to a disease but does not match a known term
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"facet": "File Format",
|
|
41
|
+
"selectedValues": [
|
|
42
|
+
{
|
|
43
|
+
"term": ".bam",
|
|
44
|
+
"mention": "bam",
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"facet": "Reported Ethnicity",
|
|
50
|
+
"selectedValues": [
|
|
51
|
+
{
|
|
52
|
+
"term": "Hispanic or Latino",
|
|
53
|
+
"mention": "latino",
|
|
54
|
+
},
|
|
55
|
+
],
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"facet": "unknown",
|
|
59
|
+
"selectedValues": [
|
|
60
|
+
{
|
|
61
|
+
"term": "unknown",
|
|
62
|
+
"mention": "foobar", # Mention not resolved to a facet or facet term
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
}
|
|
68
|
+
)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
from pydantic import BaseModel
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
# Model of a selected facet value and its mention (that is, the original query text that resolved to the value).
|
|
5
|
+
class SelectedValue(BaseModel):
|
|
6
|
+
"""
|
|
7
|
+
Represents a selected facet value and its mention in the original query text.
|
|
8
|
+
|
|
9
|
+
Attributes:
|
|
10
|
+
term (str): The resolved facet value.
|
|
11
|
+
mention (str): The original query text that resolved to the value.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
term: str
|
|
15
|
+
mention: str
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# Model of a selected facet and its resolved values.
|
|
19
|
+
class FacetSelection(BaseModel):
|
|
20
|
+
"""
|
|
21
|
+
Represents a selected facet and its resolved values.
|
|
22
|
+
|
|
23
|
+
Attributes:
|
|
24
|
+
facet (str): The name of the facet.
|
|
25
|
+
selectedValues (list[SelectedValue]): The list of selected values for this facet.
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
facet: str
|
|
29
|
+
selectedValues: list[SelectedValue]
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
# Model of the selected facets for a given query, resolved and normalized via LLM.
|
|
33
|
+
class FacetsResponse(BaseModel):
|
|
34
|
+
"""
|
|
35
|
+
Represents the selected facets for a given query, resolved and normalized via LLM.
|
|
36
|
+
|
|
37
|
+
Attributes:
|
|
38
|
+
query (str): The original query string.
|
|
39
|
+
facets (list[FacetSelection]): The list of selected facets and their values.
|
|
40
|
+
"""
|
|
41
|
+
|
|
42
|
+
query: str
|
|
43
|
+
facets: list[FacetSelection]
|
|
@@ -50,7 +50,6 @@ To enable trusted publishing for this package on npm, you need to:
|
|
|
50
50
|
|
|
51
51
|
1. **Log in to npm** and navigate to the package settings for `@databiosphere/findable-ui`
|
|
52
52
|
2. **Add a GitHub Actions Publishing Workflow**:
|
|
53
|
-
|
|
54
53
|
- Go to the package's publishing settings
|
|
55
54
|
- Click "Add GitHub Actions Publishing Workflow"
|
|
56
55
|
- Configure the trusted publisher with:
|
package/jest.config.js
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
2
2
|
module.exports = {
|
|
3
|
-
moduleNameMapper: {
|
|
4
|
-
"^@storybook/addon-actions$":
|
|
5
|
-
"<rootDir>/src/mocks/@storybook/addon-actions.ts",
|
|
6
|
-
},
|
|
7
3
|
preset: "ts-jest/presets/js-with-ts-esm",
|
|
8
4
|
setupFiles: ["<rootDir>/tests/setup.ts"],
|
|
9
5
|
testEnvironment: "jest-environment-jsdom",
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Chart } from "../../chart/types";
|
|
1
2
|
import { CategoryKey, DataDictionaryAnnotation, SelectCategoryValueView } from "../../entities";
|
|
2
3
|
import { RangeViewKind } from "../views/range/types";
|
|
3
4
|
import { SelectViewKind } from "../views/select/types";
|
|
@@ -23,6 +24,6 @@ export interface RangeCategoryConfig extends CommonCategoryConfig, RangeViewKind
|
|
|
23
24
|
* Select category config.
|
|
24
25
|
*/
|
|
25
26
|
export interface SelectCategoryConfig extends CommonCategoryConfig, SelectViewKind {
|
|
26
|
-
|
|
27
|
+
chart?: Chart;
|
|
27
28
|
mapSelectCategoryValue?: (selectCategoryValue: SelectCategoryValueView) => SelectCategoryValueView;
|
|
28
29
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { sortCategoryValueViewsAlpha, sortCategoryValueViewsCount, } from "../../filters/sort/models/utils";
|
|
2
|
+
import { CHART_SORT } from "./types";
|
|
3
|
+
/**
|
|
4
|
+
* Map of chart sort options to their corresponding sort functions.
|
|
5
|
+
*/
|
|
6
|
+
export const CHART_SORT_FN = {
|
|
7
|
+
[CHART_SORT.ALPHA]: sortCategoryValueViewsAlpha,
|
|
8
|
+
[CHART_SORT.COUNT]: sortCategoryValueViewsCount,
|
|
9
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { SelectCategoryValueView } from "../../entities";
|
|
2
|
+
/**
|
|
3
|
+
* Chart sorting options for select categories.
|
|
4
|
+
*/
|
|
5
|
+
export declare enum CHART_SORT {
|
|
6
|
+
ALPHA = "ALPHA",
|
|
7
|
+
COUNT = "COUNT"
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Sorting function type for select category values.
|
|
11
|
+
*/
|
|
12
|
+
export type ChartSortFn = (a: SelectCategoryValueView, b: SelectCategoryValueView) => number;
|
|
13
|
+
/**
|
|
14
|
+
* Chart sort options - either a preset (ALPHA, COUNT) or a custom sort function.
|
|
15
|
+
*/
|
|
16
|
+
export type ChartSortOptions = CHART_SORT | ChartSortFn;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ChartSortOptions, ChartSortFn } from "./types";
|
|
2
|
+
/**
|
|
3
|
+
* Resolves chart sort options to a sorting function.
|
|
4
|
+
* @param chartSortOptions - Chart sort option (ALPHA, COUNT, or custom function).
|
|
5
|
+
* @returns Sorting function to use for chart data.
|
|
6
|
+
*/
|
|
7
|
+
export declare function getChartSortFn(chartSortOptions?: ChartSortOptions): ChartSortFn;
|