@databiosphere/findable-ui 6.0.0 → 7.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.
Files changed (630) hide show
  1. package/lib/apis/azul/common/constants.js +4 -7
  2. package/lib/apis/azul/common/entities.js +10 -13
  3. package/lib/apis/azul/common/filterTransformer.js +10 -18
  4. package/lib/apis/azul/common/utils.js +1 -5
  5. package/lib/common/analytics/analytics.js +5 -12
  6. package/lib/common/analytics/entities.js +8 -11
  7. package/lib/common/constants.js +3 -6
  8. package/lib/common/entities.js +2 -5
  9. package/lib/common/selectors.js +2 -5
  10. package/lib/common/utils.js +3 -9
  11. package/lib/components/ComponentCreator/ComponentCreator.js +22 -25
  12. package/lib/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.js +3 -10
  13. package/lib/components/ComponentCreator/components/RenderComponent/renderComponent.js +4 -23
  14. package/lib/components/Detail/components/AccessibilityBadge/accessibilityBadge.js +6 -13
  15. package/lib/components/Detail/components/DetailViewTable/detailViewTable.js +10 -29
  16. package/lib/components/Detail/components/Table/common/utils.js +8 -7
  17. package/lib/components/Detail/components/Table/components/TableBody/tableBody.js +7 -14
  18. package/lib/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.js +8 -35
  19. package/lib/components/Detail/components/Table/components/TableRows/tableRows.js +9 -36
  20. package/lib/components/Detail/components/Table/table.js +26 -26
  21. package/lib/components/Detail/detail.js +4 -11
  22. package/lib/components/Detail/detail.stories.js +28 -35
  23. package/lib/components/Error/error.js +37 -44
  24. package/lib/components/Error/error.stories.js +5 -8
  25. package/lib/components/Error/error.styles.js +12 -18
  26. package/lib/components/ErrorBoundary/errorBoundary.js +2 -9
  27. package/lib/components/ErrorBoundary/index.js +1 -5
  28. package/lib/components/Export/common/entities.js +2 -5
  29. package/lib/components/Export/common/tracking.js +9 -13
  30. package/lib/components/Export/common/utils.js +6 -10
  31. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.js +10 -29
  32. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.styles.js +3 -9
  33. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.js +14 -21
  34. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.js +10 -17
  35. package/lib/components/Export/components/DownloadCurlCommand/downloadCurlCommand.js +18 -45
  36. package/lib/components/Export/components/ExportForm/common/entities.js +1 -2
  37. package/lib/components/Export/components/ExportForm/components/ExportButton/exportButton.js +12 -19
  38. package/lib/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.js +12 -19
  39. package/lib/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.js +34 -61
  40. package/lib/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.js +13 -20
  41. package/lib/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.js +16 -23
  42. package/lib/components/Export/components/ExportForm/exportForm.js +24 -51
  43. package/lib/components/Export/components/ExportForm/exportForm.styles.js +23 -30
  44. package/lib/components/Export/components/ExportMethod/exportMethod.js +21 -28
  45. package/lib/components/Export/components/ExportMethod/exportMethod.stories.js +7 -13
  46. package/lib/components/Export/components/ExportMethod/exportMethod.styles.js +8 -14
  47. package/lib/components/Export/components/ExportSummary/common/utils.js +7 -13
  48. package/lib/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.js +14 -41
  49. package/lib/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.js +12 -19
  50. package/lib/components/Export/components/ExportSummary/exportSummary.js +4 -11
  51. package/lib/components/Export/components/ExportSummary/exportSummary.styles.js +6 -12
  52. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.js +9 -28
  53. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.js +13 -20
  54. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.js +13 -20
  55. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.js +12 -20
  56. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.js +7 -14
  57. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.js +9 -16
  58. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.js +14 -21
  59. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.styles.js +3 -9
  60. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.js +11 -18
  61. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.js +23 -32
  62. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.styles.js +16 -22
  63. package/lib/components/Export/components/ExportToTerra/exportToTerra.js +11 -18
  64. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.js +34 -65
  65. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.js +38 -69
  66. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.js +10 -17
  67. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.styles.js +11 -17
  68. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.js +7 -26
  69. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.js +13 -20
  70. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.js +13 -20
  71. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.styles.js +3 -9
  72. package/lib/components/Export/components/ManifestDownload/manifestDownload.js +10 -17
  73. package/lib/components/Export/export.styles.js +20 -27
  74. package/lib/components/Filter/common/constants.js +4 -7
  75. package/lib/components/Filter/common/entities.js +1 -2
  76. package/lib/components/Filter/common/utils.js +4 -8
  77. package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.js +8 -15
  78. package/lib/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.js +4 -42
  79. package/lib/components/Filter/components/Filter/filter.js +19 -46
  80. package/lib/components/Filter/components/Filter/filter.stories.js +9 -15
  81. package/lib/components/Filter/components/Filter/filter.styles.js +7 -13
  82. package/lib/components/Filter/components/FilterLabel/filterLabel.js +5 -12
  83. package/lib/components/Filter/components/FilterLabel/filterLabel.stories.js +9 -15
  84. package/lib/components/Filter/components/FilterLabel/filterLabel.styles.js +5 -11
  85. package/lib/components/Filter/components/FilterList/filterList.styles.js +5 -11
  86. package/lib/components/Filter/components/FilterMenu/filterMenu.js +21 -49
  87. package/lib/components/Filter/components/FilterMenu/filterMenu.stories.js +9 -15
  88. package/lib/components/Filter/components/FilterMenu/filterMenu.styles.js +9 -15
  89. package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.js +5 -12
  90. package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.styles.js +7 -13
  91. package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.js +9 -35
  92. package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.styles.js +2 -8
  93. package/lib/components/Filter/components/FilterTag/filterTag.js +11 -39
  94. package/lib/components/Filter/components/FilterTag/filterTag.stories.js +7 -13
  95. package/lib/components/Filter/components/FilterTag/filterTag.styles.js +3 -9
  96. package/lib/components/Filter/components/FilterTags/filterTags.js +5 -12
  97. package/lib/components/Filter/components/FilterTags/filterTags.stories.js +9 -15
  98. package/lib/components/Filter/components/FilterTags/filterTags.styles.js +4 -10
  99. package/lib/components/Filter/components/Filters/filters.js +21 -49
  100. package/lib/components/Filter/components/Filters/filters.stories.js +9 -16
  101. package/lib/components/Filter/components/Filters/filters.styles.js +14 -20
  102. package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.js +5 -12
  103. package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.styles.js +5 -11
  104. package/lib/components/Filter/components/SearchAllFilters/common/constants.js +17 -20
  105. package/lib/components/Filter/components/SearchAllFilters/common/entites.js +4 -7
  106. package/lib/components/Filter/components/SearchAllFilters/common/utils.js +1 -5
  107. package/lib/components/Filter/components/SearchAllFilters/components/AutocompletePopper/autocompletePopper.styles.js +7 -13
  108. package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeList/VariableSizeList.js +44 -87
  109. package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.js +19 -46
  110. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.js +42 -60
  111. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.stories.js +9 -16
  112. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.styles.js +5 -11
  113. package/lib/components/Filter/components/SearchAllFiltersSearch/components/SearchCloseButton/searchCloseButton.js +11 -41
  114. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.js +11 -47
  115. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.styles.js +7 -13
  116. package/lib/components/Filter/components/VariableSizeList/VariableSizeList.js +22 -53
  117. package/lib/components/Filter/components/VariableSizeListItem/variableSizeListItem.js +14 -41
  118. package/lib/components/Head/head.js +16 -23
  119. package/lib/components/Index/components/AzulFileDownload/azulFileDownload.js +22 -58
  120. package/lib/components/Index/components/AzulFileDownload/azulFileDownload.stories.js +7 -13
  121. package/lib/components/Index/components/Cell/cell.js +4 -11
  122. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.js +11 -18
  123. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.styles.js +5 -11
  124. package/lib/components/Index/components/Hero/components/Summaries/summaries.js +11 -38
  125. package/lib/components/Index/components/Hero/components/Summaries/summaries.stories.js +7 -13
  126. package/lib/components/Index/components/Hero/components/Summaries/summaries.styles.js +7 -13
  127. package/lib/components/Index/components/Hero/hero.js +10 -17
  128. package/lib/components/Index/components/Hero/hero.stories.js +9 -15
  129. package/lib/components/Index/components/Hero/hero.styles.js +9 -15
  130. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.js +10 -49
  131. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.styles.js +2 -8
  132. package/lib/components/Index/components/NTag/nTag.js +4 -23
  133. package/lib/components/Index/components/NTagCell/nTagCell.js +8 -35
  134. package/lib/components/Index/components/NTagCell/nTagCell.stories.js +7 -13
  135. package/lib/components/Index/components/TitleCell/titleCell.js +9 -28
  136. package/lib/components/Index/components/TitleCell/titleCell.styles.js +5 -11
  137. package/lib/components/Index/index.js +8 -15
  138. package/lib/components/Index/index.stories.js +7 -13
  139. package/lib/components/Index/index.styles.js +4 -10
  140. package/lib/components/Layout/components/AppLayout/appLayout.styles.js +2 -8
  141. package/lib/components/Layout/components/BackPage/backPageView.js +16 -43
  142. package/lib/components/Layout/components/BackPage/backPageView.stories.js +28 -35
  143. package/lib/components/Layout/components/BackPage/backPageView.styles.js +25 -31
  144. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.js +14 -41
  145. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.stories.js +4 -7
  146. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.styles.js +9 -15
  147. package/lib/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.js +5 -24
  148. package/lib/components/Layout/components/ContentLayout/common/constants.js +21 -24
  149. package/lib/components/Layout/components/ContentLayout/common/entities.js +2 -5
  150. package/lib/components/Layout/components/ContentLayout/components/Main/main.js +4 -11
  151. package/lib/components/Layout/components/ContentLayout/contentLayout.js +14 -21
  152. package/lib/components/Layout/components/ContentLayout/contentLayout.styles.js +22 -28
  153. package/lib/components/Layout/components/Floating/floating.js +4 -31
  154. package/lib/components/Layout/components/Footer/footer.js +11 -18
  155. package/lib/components/Layout/components/Footer/footer.stories.js +18 -24
  156. package/lib/components/Layout/components/Footer/footer.styles.js +15 -21
  157. package/lib/components/Layout/components/Header/common/constants.js +6 -9
  158. package/lib/components/Layout/components/Header/common/entities.js +1 -2
  159. package/lib/components/Layout/components/Header/common/utils.js +13 -16
  160. package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.js +4 -11
  161. package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.styles.js +4 -10
  162. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.js +11 -38
  163. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.js +12 -39
  164. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.stories.js +7 -13
  165. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.styles.js +7 -13
  166. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.js +16 -23
  167. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.styles.js +5 -11
  168. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Content/components/Navigation/navigation.styles.js +7 -13
  169. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Content/components/Socials/socials.styles.js +3 -9
  170. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.js +14 -44
  171. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.js +28 -57
  172. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.js +14 -44
  173. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.styles.js +9 -15
  174. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.js +16 -23
  175. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.styles.js +5 -11
  176. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.js +8 -38
  177. package/lib/components/Layout/components/Header/components/Content/components/Logo/logo.js +9 -16
  178. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.js +4 -42
  179. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.js +21 -51
  180. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.styles.js +6 -12
  181. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.js +14 -44
  182. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.styles.js +7 -13
  183. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.js +17 -44
  184. package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.js +21 -47
  185. package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.styles.js +14 -20
  186. package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.js +6 -32
  187. package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.styles.js +6 -12
  188. package/lib/components/Layout/components/Header/components/Content/components/Socials/socials.styles.js +3 -9
  189. package/lib/components/Layout/components/Header/components/Content/content.styles.js +2 -8
  190. package/lib/components/Layout/components/Header/header.js +48 -87
  191. package/lib/components/Layout/components/Header/header.stories.js +21 -27
  192. package/lib/components/Layout/components/Header/header.styles.js +6 -12
  193. package/lib/components/Layout/components/Main/main.js +6 -13
  194. package/lib/components/Layout/components/Main/main.styles.js +5 -11
  195. package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.js +12 -19
  196. package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.styles.js +4 -10
  197. package/lib/components/Layout/components/Nav/nav.js +11 -18
  198. package/lib/components/Layout/components/Nav/nav.stories.js +4 -7
  199. package/lib/components/Layout/components/Nav/nav.styles.js +8 -14
  200. package/lib/components/Layout/components/Outline/common/constants.js +1 -4
  201. package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.js +5 -24
  202. package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.styles.js +9 -15
  203. package/lib/components/Layout/components/Outline/outline.js +12 -51
  204. package/lib/components/Layout/components/Outline/outline.styles.js +16 -22
  205. package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.js +7 -26
  206. package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.styles.js +10 -16
  207. package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.js +8 -15
  208. package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.styles.js +7 -13
  209. package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.js +5 -12
  210. package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.stories.js +7 -13
  211. package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.js +7 -14
  212. package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.styles.js +4 -10
  213. package/lib/components/Layout/components/Sidebar/components/SidebarTools/sidebarTools.styles.js +4 -10
  214. package/lib/components/Layout/components/Sidebar/sidebar.js +13 -40
  215. package/lib/components/Layout/components/Sidebar/sidebar.stories.js +12 -18
  216. package/lib/components/Layout/components/Sidebar/sidebar.styles.js +2 -8
  217. package/lib/components/Links/common/constants.js +1 -4
  218. package/lib/components/Links/common/entities.js +2 -5
  219. package/lib/components/Links/common/utils.js +5 -11
  220. package/lib/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.js +11 -41
  221. package/lib/components/Links/components/Link/link.js +22 -29
  222. package/lib/components/Links/links.js +6 -13
  223. package/lib/components/Links/links.stories.js +7 -13
  224. package/lib/components/Loading/loading.js +13 -20
  225. package/lib/components/Loading/loading.stories.js +11 -17
  226. package/lib/components/Loading/loading.styles.js +20 -26
  227. package/lib/components/Login/login.js +27 -54
  228. package/lib/components/Login/login.stories.js +12 -18
  229. package/lib/components/Login/login.styles.js +15 -21
  230. package/lib/components/NoResults/noResults.js +16 -23
  231. package/lib/components/NoResults/noResults.styles.js +4 -10
  232. package/lib/components/Project/common/entities.js +1 -2
  233. package/lib/components/Project/components/Citation/citation.js +12 -19
  234. package/lib/components/Project/components/Citation/citation.stories.js +4 -7
  235. package/lib/components/Project/components/Citation/citation.styles.js +3 -9
  236. package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.js +8 -15
  237. package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.stories.js +7 -13
  238. package/lib/components/Project/components/Contacts/contacts.js +12 -19
  239. package/lib/components/Project/components/Contacts/contacts.stories.js +7 -13
  240. package/lib/components/Project/components/Contributors/contributors.js +9 -16
  241. package/lib/components/Project/components/Contributors/contributors.stories.js +7 -13
  242. package/lib/components/Project/components/DataCurators/dataCurators.js +5 -12
  243. package/lib/components/Project/components/DataCurators/dataCurators.stories.js +7 -13
  244. package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.js +9 -16
  245. package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.stories.js +6 -12
  246. package/lib/components/Project/components/Description/description.js +6 -13
  247. package/lib/components/Project/components/Description/description.stories.js +7 -13
  248. package/lib/components/Project/components/Details/details.js +9 -36
  249. package/lib/components/Project/components/Details/details.stories.js +7 -13
  250. package/lib/components/Project/components/Publications/publications.js +10 -17
  251. package/lib/components/Project/components/Publications/publications.stories.js +7 -13
  252. package/lib/components/Project/components/Sup/sup.styles.js +2 -8
  253. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.js +15 -42
  254. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.stories.js +7 -13
  255. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.styles.js +4 -10
  256. package/lib/components/Redirect/redirect.js +6 -33
  257. package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.js +9 -39
  258. package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.styles.js +12 -18
  259. package/lib/components/Support/components/SupportRequest/components/Dropzone/dropzone.js +13 -29
  260. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/common/constants.js +17 -20
  261. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/common/entities.js +6 -9
  262. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/common/utils.js +18 -39
  263. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.js +98 -92
  264. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.styles.js +6 -12
  265. package/lib/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.js +12 -19
  266. package/lib/components/Support/components/SupportRequest/supportRequest.js +7 -34
  267. package/lib/components/Support/components/ViewSupport/viewSupport.js +7 -14
  268. package/lib/components/Support/components/ViewSupport/viewSupport.styles.js +8 -14
  269. package/lib/components/Table/common/entities.js +2 -5
  270. package/lib/components/Table/common/gridTable.styles.js +6 -12
  271. package/lib/components/Table/common/utils.js +33 -61
  272. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.js +17 -44
  273. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.stories.js +7 -13
  274. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.styles.js +3 -9
  275. package/lib/components/Table/components/DownloadEntityResults/downloadEntityResults.js +11 -18
  276. package/lib/components/Table/components/Pagination/pagination.js +15 -22
  277. package/lib/components/Table/components/Pagination/pagination.stories.js +7 -13
  278. package/lib/components/Table/components/Pagination/pagination.styles.js +4 -10
  279. package/lib/components/Table/components/PaginationSummary/paginationSummary.js +9 -16
  280. package/lib/components/Table/components/TableBody/tableBody.js +14 -41
  281. package/lib/components/Table/components/TableCell/common/utils.js +3 -7
  282. package/lib/components/Table/components/TableCell/components/BasicCell/basicCell.js +6 -33
  283. package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.js +21 -49
  284. package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.styles.js +14 -34
  285. package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.js +10 -49
  286. package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.styles.js +2 -8
  287. package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.js +4 -23
  288. package/lib/components/Table/components/TableCell/components/NTagCell/nTagCell.js +8 -35
  289. package/lib/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.js +6 -13
  290. package/lib/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.js +7 -14
  291. package/lib/components/Table/components/TableHead/tableHead.js +11 -38
  292. package/lib/components/Table/components/TableRow/tableRow.styles.js +7 -13
  293. package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.js +8 -35
  294. package/lib/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.js +7 -35
  295. package/lib/components/Table/components/TableRows/tableRows.js +8 -35
  296. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/common/constants.js +2 -4
  297. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.d.ts +1 -1
  298. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.js +12 -31
  299. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.styles.js +9 -15
  300. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.d.ts +3 -3
  301. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.js +13 -25
  302. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.styles.js +7 -13
  303. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.js +7 -14
  304. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.styles.js +2 -8
  305. package/lib/components/Table/components/TableToolbar/components/RowPreview/rowPreview.js +8 -11
  306. package/lib/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.js +6 -25
  307. package/lib/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.styles.js +3 -9
  308. package/lib/components/Table/components/TableToolbar/components/RowSelection/rowSelection.js +9 -16
  309. package/lib/components/Table/components/TableToolbar/components/RowSelection/rowSelection.styles.js +2 -8
  310. package/lib/components/Table/components/TableToolbar/tableToolbar.js +21 -48
  311. package/lib/components/Table/components/TableToolbar/tableToolbar.styles.js +7 -13
  312. package/lib/components/Table/features/RowPreview/constants.js +15 -16
  313. package/lib/components/Table/features/RowPreview/entities.js +1 -2
  314. package/lib/components/Table/features/RowPreview/utils.js +5 -13
  315. package/lib/components/Table/features/entities.js +1 -2
  316. package/lib/components/Table/table.js +76 -99
  317. package/lib/components/Table/table.styles.js +7 -13
  318. package/lib/components/TableCreator/common/constants.js +6 -9
  319. package/lib/components/TableCreator/common/entities.js +1 -2
  320. package/lib/components/TableCreator/common/utils.js +7 -6
  321. package/lib/components/TableCreator/tableCreator.js +32 -49
  322. package/lib/components/TableCreator/tableCreator.styles.js +2 -8
  323. package/lib/components/TempError/components/errorBox.js +5 -12
  324. package/lib/components/TempError/index.js +1 -5
  325. package/lib/components/TempError/tempError.js +15 -18
  326. package/lib/components/common/Accordion/accordion.js +11 -50
  327. package/lib/components/common/Accordion/accordion.stories.js +11 -20
  328. package/lib/components/common/Alert/alert.js +5 -12
  329. package/lib/components/common/Alert/alert.stories.js +4 -7
  330. package/lib/components/common/Alert/alert.styles.js +6 -12
  331. package/lib/components/common/Alert/components/AlertText/alertText.styles.js +2 -8
  332. package/lib/components/common/AnchorLink/anchorLink.js +6 -13
  333. package/lib/components/common/AnchorLink/anchorLink.styles.js +5 -11
  334. package/lib/components/common/Banner/banner.js +4 -42
  335. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.js +4 -23
  336. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.styles.js +8 -14
  337. package/lib/components/common/Banner/components/CookieBanner/cookieBanner.js +16 -55
  338. package/lib/components/common/Banner/components/CookieBanner/cookieBanner.styles.js +11 -17
  339. package/lib/components/common/Banner/components/DismissibleBanner/dismissibleBanner.js +8 -47
  340. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.js +6 -45
  341. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.styles.js +5 -11
  342. package/lib/components/common/Banner/components/SystemIndexing/systemIndexing.js +7 -46
  343. package/lib/components/common/Banner/components/SystemStatus/systemStatus.js +7 -46
  344. package/lib/components/common/Breadcrumbs/breadcrumbs.js +7 -14
  345. package/lib/components/common/Breadcrumbs/breadcrumbs.stories.js +11 -17
  346. package/lib/components/common/Button/button.js +4 -42
  347. package/lib/components/common/Button/components/ButtonOutline/buttonOutline.js +4 -42
  348. package/lib/components/common/Button/components/ButtonOutline/buttonOutline.styles.js +10 -16
  349. package/lib/components/common/Button/components/ButtonPrimary/buttonPrimary.js +4 -42
  350. package/lib/components/common/Button/components/ButtonSecondary/buttonSecondary.js +4 -42
  351. package/lib/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.js +4 -42
  352. package/lib/components/common/Button/components/ButtonText/buttonText.js +4 -23
  353. package/lib/components/common/Button/components/ButtonText/buttonText.styles.js +3 -9
  354. package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.js +4 -23
  355. package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.styles.js +3 -9
  356. package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.js +4 -23
  357. package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.styles.js +3 -9
  358. package/lib/components/common/Button/components/CallToActionButton/callToActionButton.js +9 -16
  359. package/lib/components/common/Button/components/CallToActionButton/callToActionButton.stories.js +11 -17
  360. package/lib/components/common/Button/components/DropdownButton/dropdownButton.js +5 -24
  361. package/lib/components/common/Button/components/DropdownButton/dropdownButton.styles.js +9 -29
  362. package/lib/components/common/Button/components/FileDownloadButton/fileDownloadButton.js +6 -33
  363. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.js +12 -19
  364. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.stories.js +6 -9
  365. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.styles.js +3 -9
  366. package/lib/components/common/Button/components/LoginButton/loginButton.js +5 -24
  367. package/lib/components/common/Button/components/LoginButton/loginButton.styles.js +4 -10
  368. package/lib/components/common/Button/components/NavigationButton/navigationButton.js +5 -24
  369. package/lib/components/common/Button/components/NavigationButton/navigationButton.styles.js +5 -11
  370. package/lib/components/common/ButtonGroup/buttonGroup.js +4 -43
  371. package/lib/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.js +5 -12
  372. package/lib/components/common/Card/card.js +24 -51
  373. package/lib/components/common/Card/card.stories.js +8 -14
  374. package/lib/components/common/Card/card.styles.js +6 -12
  375. package/lib/components/common/Card/components/CardAction/cardAction.js +4 -11
  376. package/lib/components/common/Card/components/CardActionArea/cardActionArea.js +10 -17
  377. package/lib/components/common/Card/components/CardActions/cardActions.js +7 -14
  378. package/lib/components/common/Card/components/CardActions/cardActions.styles.js +4 -10
  379. package/lib/components/common/Card/components/CardMedia/cardMedia.js +6 -13
  380. package/lib/components/common/Card/components/CardMedia/cardMedia.styles.js +2 -8
  381. package/lib/components/common/Card/components/CardSecondaryText/cardSecondaryText.js +5 -24
  382. package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.js +5 -24
  383. package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.styles.js +3 -9
  384. package/lib/components/common/Card/components/CardText/cardText.js +5 -24
  385. package/lib/components/common/Card/components/CardTitle/cardTitle.js +5 -24
  386. package/lib/components/common/Card/components/RoundedCard/roundedCard.js +5 -12
  387. package/lib/components/common/Code/code.js +9 -39
  388. package/lib/components/common/Code/code.stories.js +4 -7
  389. package/lib/components/common/Code/code.styles.js +8 -14
  390. package/lib/components/common/CopyToClipboard/copyToClipboard.js +11 -41
  391. package/lib/components/common/CopyToClipboard/copyToClipboard.stories.js +4 -7
  392. package/lib/components/common/CustomIcon/common/constants.js +6 -12
  393. package/lib/components/common/CustomIcon/common/entities.js +1 -2
  394. package/lib/components/common/CustomIcon/components/AddIcon/addIcon.js +5 -24
  395. package/lib/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.js +5 -24
  396. package/lib/components/common/CustomIcon/components/AlertIcon/alertIcon.js +5 -24
  397. package/lib/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.js +5 -24
  398. package/lib/components/common/CustomIcon/components/CheckedIcon/checkedIcon.js +6 -25
  399. package/lib/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.js +5 -24
  400. package/lib/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.js +5 -24
  401. package/lib/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.js +5 -24
  402. package/lib/components/common/CustomIcon/components/DownloadIcon/downloadIcon.js +5 -24
  403. package/lib/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.js +5 -24
  404. package/lib/components/common/CustomIcon/components/ErrorIcon/errorIcon.js +5 -24
  405. package/lib/components/common/CustomIcon/components/FacebookIcon/facebookIcon.js +5 -24
  406. package/lib/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.js +5 -24
  407. package/lib/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.js +6 -25
  408. package/lib/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.js +5 -24
  409. package/lib/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.js +5 -24
  410. package/lib/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.js +5 -24
  411. package/lib/components/common/CustomIcon/components/GoogleIcon/googleIcon.js +8 -27
  412. package/lib/components/common/CustomIcon/components/HelpIcon/helpIcon.js +5 -24
  413. package/lib/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.js +6 -25
  414. package/lib/components/common/CustomIcon/components/InfoIcon/infoIcon.js +5 -24
  415. package/lib/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.js +5 -24
  416. package/lib/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.js +5 -24
  417. package/lib/components/common/CustomIcon/components/LoadingIcon/loadingIcon.js +22 -41
  418. package/lib/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.js +5 -24
  419. package/lib/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.js +5 -24
  420. package/lib/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.js +5 -24
  421. package/lib/components/common/CustomIcon/components/RemoveIcon/removeIcon.js +5 -24
  422. package/lib/components/common/CustomIcon/components/SearchIcon/searchIcon.js +5 -24
  423. package/lib/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.js +5 -24
  424. package/lib/components/common/CustomIcon/components/Segment/segment.js +5 -24
  425. package/lib/components/common/CustomIcon/components/SlackIcon/slackIcon.js +5 -24
  426. package/lib/components/common/CustomIcon/components/SouthIcon/southIcon.js +5 -24
  427. package/lib/components/common/CustomIcon/components/SuccessIcon/successIcon.js +5 -24
  428. package/lib/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.js +5 -24
  429. package/lib/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.js +5 -24
  430. package/lib/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.js +5 -24
  431. package/lib/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.js +5 -24
  432. package/lib/components/common/CustomIcon/components/WarningIcon/warningIcon.js +5 -24
  433. package/lib/components/common/CustomIcon/components/XIcon/xIcon.js +5 -24
  434. package/lib/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.js +5 -24
  435. package/lib/components/common/Dialog/components/DialogTitle/dialogTitle.js +7 -14
  436. package/lib/components/common/Dialog/dialog.js +4 -23
  437. package/lib/components/common/Dot/dot.js +4 -11
  438. package/lib/components/common/Dot/dot.styles.js +2 -8
  439. package/lib/components/common/Drawer/components/DrawerTitle/drawerTitle.js +8 -15
  440. package/lib/components/common/Drawer/components/DrawerTitle/drawerTitle.styles.js +2 -8
  441. package/lib/components/common/Drawer/components/drawer.styles.js +2 -8
  442. package/lib/components/common/Drawer/drawer.js +4 -23
  443. package/lib/components/common/DropdownMenu/common/constants.js +1 -4
  444. package/lib/components/common/DropdownMenu/common/entities.js +1 -2
  445. package/lib/components/common/DropdownMenu/components/MenuItem/menuItem.js +5 -24
  446. package/lib/components/common/DropdownMenu/dropdownMenu.js +8 -47
  447. package/lib/components/common/DropdownMenu/dropdownMenu.styles.js +3 -9
  448. package/lib/components/common/EllipsisContent/ellipsisContent.js +13 -40
  449. package/lib/components/common/EllipsisContent/ellipsisContent.styles.js +6 -12
  450. package/lib/components/common/Form/components/Input/input.js +8 -27
  451. package/lib/components/common/Form/components/Input/input.styles.js +10 -30
  452. package/lib/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.js +4 -23
  453. package/lib/components/common/Form/components/Select/select.js +8 -27
  454. package/lib/components/common/Form/components/Select/select.styles.js +9 -29
  455. package/lib/components/common/Form/components/UploadFile/uploadFile.js +18 -25
  456. package/lib/components/common/Form/components/UploadFile/uploadFile.styles.js +14 -20
  457. package/lib/components/common/Grid/components/GridItem/gridItem.js +4 -23
  458. package/lib/components/common/Grid/grid.js +4 -23
  459. package/lib/components/common/IconBadge/iconBadge.js +7 -14
  460. package/lib/components/common/IconBadge/iconBadge.styles.js +25 -54
  461. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.js +6 -13
  462. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.stories.js +7 -13
  463. package/lib/components/common/IconButton/iconButton.js +5 -24
  464. package/lib/components/common/IconButton/iconButton.styles.js +16 -36
  465. package/lib/components/common/Input/input.js +8 -27
  466. package/lib/components/common/Input/input.styles.js +6 -12
  467. package/lib/components/common/KeyValuePairs/components/KeyElType/keyElType.js +4 -23
  468. package/lib/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.js +4 -23
  469. package/lib/components/common/KeyValuePairs/components/ValueElType/valueElType.js +4 -23
  470. package/lib/components/common/KeyValuePairs/keyValuePairs.js +8 -35
  471. package/lib/components/common/MDXMarkdown/components/Section/mdxSection.styles.js +6 -12
  472. package/lib/components/common/Markdown/markdown.js +4 -11
  473. package/lib/components/common/Paper/paper.js +6 -32
  474. package/lib/components/common/Paper/paper.styles.js +8 -14
  475. package/lib/components/common/Progress/components/CircularProgress/circularProgress.js +8 -27
  476. package/lib/components/common/Progress/components/CircularProgress/circularProgress.styles.js +2 -8
  477. package/lib/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.js +4 -43
  478. package/lib/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.styles.js +9 -15
  479. package/lib/components/common/RadioGroup/radioGroup.js +6 -13
  480. package/lib/components/common/Section/components/CollapsableSection/collapsableSection.js +21 -51
  481. package/lib/components/common/Section/components/CollapsableSection/collapsableSection.styles.js +9 -15
  482. package/lib/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.js +3 -10
  483. package/lib/components/common/Section/components/SectionTitle/sectionTitle.js +4 -11
  484. package/lib/components/common/Section/components/SectionTitle/sectionTitle.stories.js +7 -13
  485. package/lib/components/common/Section/section.styles.js +18 -25
  486. package/lib/components/common/Sections/sections.js +5 -12
  487. package/lib/components/common/Socials/socials.js +7 -33
  488. package/lib/components/common/Socials/socials.stories.js +18 -21
  489. package/lib/components/common/Socials/socials.styles.js +2 -8
  490. package/lib/components/common/Stack/components/Divider/divider.js +4 -23
  491. package/lib/components/common/Stack/components/Divider/divider.styles.js +3 -9
  492. package/lib/components/common/Stack/stack.js +4 -11
  493. package/lib/components/common/StaticImage/staticImage.js +6 -13
  494. package/lib/components/common/StaticImage/staticImage.stories.js +9 -15
  495. package/lib/components/common/StatusBadge/statusBadge.js +8 -46
  496. package/lib/components/common/StatusBadge/statusBadge.stories.js +4 -7
  497. package/lib/components/common/StatusIcon/statusIcon.js +7 -14
  498. package/lib/components/common/StatusIcon/statusIcon.stories.js +11 -17
  499. package/lib/components/common/StatusIcon/statusIcon.styles.js +12 -18
  500. package/lib/components/common/Tabs/tabs.js +5 -12
  501. package/lib/components/common/Tabs/tabs.styles.js +8 -14
  502. package/lib/components/common/Tag/tag.js +4 -11
  503. package/lib/components/common/Tag/tag.stories.js +8 -14
  504. package/lib/components/common/Tag/tag.styles.js +4 -10
  505. package/lib/components/common/Title/title.js +5 -24
  506. package/lib/components/common/Title/title.styles.js +3 -9
  507. package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.js +6 -47
  508. package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.stories.js +7 -13
  509. package/lib/components/common/Typography/TypographyWordBreak/TypographyWordBreak.js +4 -23
  510. package/lib/components/common/Typography/common/entities.js +1 -2
  511. package/lib/config/config.js +2 -7
  512. package/lib/config/entities.d.ts +2 -1
  513. package/lib/config/entities.js +1 -4
  514. package/lib/config/utils.js +9 -17
  515. package/lib/entity/api/service.js +49 -62
  516. package/lib/entity/apicf/service.js +17 -34
  517. package/lib/entity/common/client.js +7 -35
  518. package/lib/entity/common/service.js +10 -24
  519. package/lib/entity/common/utils.js +1 -5
  520. package/lib/entity/service/factory.js +5 -32
  521. package/lib/entity/service/model.js +2 -5
  522. package/lib/entity/tsv/service.js +18 -35
  523. package/lib/hooks/useAsync.js +13 -40
  524. package/lib/hooks/useAuthentication/common/constants.js +7 -10
  525. package/lib/hooks/useAuthentication/common/entities.js +4 -7
  526. package/lib/hooks/useAuthentication/common/utils.js +5 -10
  527. package/lib/hooks/useAuthentication/useAuthentication.js +4 -8
  528. package/lib/hooks/useAuthentication/useAuthenticationComplete.js +16 -43
  529. package/lib/hooks/useAuthentication/useAuthenticationForm.js +7 -11
  530. package/lib/hooks/useAuthentication/useAuthenticationNIHExpiry.js +6 -11
  531. package/lib/hooks/useAuthentication/useAuthenticationStatus.js +6 -11
  532. package/lib/hooks/useAuthentication/useFetchGoogleProfile.js +18 -17
  533. package/lib/hooks/useAuthentication/useFetchTerraNIHProfile.js +19 -18
  534. package/lib/hooks/useAuthentication/useFetchTerraProfile.js +20 -20
  535. package/lib/hooks/useAuthentication/useFetchTerraTermsOfService.js +19 -18
  536. package/lib/hooks/useAuthentication/useTokenClient.js +7 -11
  537. package/lib/hooks/useAuthenticationConfig.js +3 -7
  538. package/lib/hooks/useBreakpointHelper.js +5 -9
  539. package/lib/hooks/useCatalog.js +5 -9
  540. package/lib/hooks/useCategoryFilter.js +7 -13
  541. package/lib/hooks/useConfig.js +4 -8
  542. package/lib/hooks/useCurrentDetailTab.js +7 -12
  543. package/lib/hooks/useDownloadStatus.js +3 -7
  544. package/lib/hooks/useEntityHeadTitle.js +8 -12
  545. package/lib/hooks/useEntityList.js +45 -46
  546. package/lib/hooks/useEntityService.js +38 -25
  547. package/lib/hooks/useExploreMode.js +7 -11
  548. package/lib/hooks/useExploreState.js +4 -8
  549. package/lib/hooks/useExportConfig.js +3 -7
  550. package/lib/hooks/useExportToTerraResponseURL.js +5 -9
  551. package/lib/hooks/useFeatureFlag/common/entities.js +2 -5
  552. package/lib/hooks/useFeatureFlag/common/utils.js +3 -7
  553. package/lib/hooks/useFeatureFlag/useFeatureFlag.js +7 -11
  554. package/lib/hooks/useFetchEntity.js +20 -23
  555. package/lib/hooks/useFetchRequestURL.js +3 -7
  556. package/lib/hooks/useFileLocation.js +7 -11
  557. package/lib/hooks/useFileManifest/common/buildFileManifestRequestURL.js +5 -9
  558. package/lib/hooks/useFileManifest/common/entities.js +4 -7
  559. package/lib/hooks/useFileManifest/common/utils.js +13 -24
  560. package/lib/hooks/useFileManifest/useFetchFilesFacets.js +16 -20
  561. package/lib/hooks/useFileManifest/useFetchSummary.js +14 -18
  562. package/lib/hooks/useFileManifest/useFileManifest.js +5 -9
  563. package/lib/hooks/useFileManifest/useFileManifestDownload.js +15 -19
  564. package/lib/hooks/useFileManifest/useFileManifestSpreadsheet.js +20 -25
  565. package/lib/hooks/useFileManifest/useFileManifestURL.js +3 -7
  566. package/lib/hooks/useFileManifest/useRequestFileManifest.js +9 -13
  567. package/lib/hooks/useFileManifestState.js +4 -8
  568. package/lib/hooks/useLayoutState.js +4 -8
  569. package/lib/hooks/useLocalStorage/common/utils.js +4 -11
  570. package/lib/hooks/useLocalStorage/useLocalStorage.js +6 -10
  571. package/lib/hooks/useLocation.js +3 -7
  572. package/lib/hooks/useRequestFileLocation.js +19 -33
  573. package/lib/hooks/useResetableState.js +4 -8
  574. package/lib/hooks/useResizeObserver.js +15 -21
  575. package/lib/hooks/useScroll.js +3 -7
  576. package/lib/hooks/useSessionTimeout.js +13 -20
  577. package/lib/hooks/useSummary.js +13 -17
  578. package/lib/hooks/useSystemStatus.js +4 -8
  579. package/lib/hooks/useURLFilterParams.js +12 -17
  580. package/lib/hooks/useUpdateURLCatalogParam.js +10 -37
  581. package/lib/hooks/useUpdateURLSearchParams.js +7 -11
  582. package/lib/hooks/useWindowResize.js +5 -9
  583. package/lib/index.js +1 -2
  584. package/lib/providers/authentication.js +37 -65
  585. package/lib/providers/config.js +8 -35
  586. package/lib/providers/exploreState/constants.js +1 -4
  587. package/lib/providers/exploreState/entities.js +1 -2
  588. package/lib/providers/exploreState/initializer/constants.js +7 -10
  589. package/lib/providers/exploreState/initializer/utils.js +45 -30
  590. package/lib/providers/exploreState/payloads/entities.js +1 -2
  591. package/lib/providers/exploreState/utils.js +49 -45
  592. package/lib/providers/exploreState.js +135 -85
  593. package/lib/providers/fileManifestState.js +63 -65
  594. package/lib/providers/layoutState.js +15 -39
  595. package/lib/providers/systemStatus.js +21 -57
  596. package/lib/shared/constants.js +1 -4
  597. package/lib/shared/utils.js +11 -18
  598. package/lib/styles/common/mixins/breakpoints.js +7 -16
  599. package/lib/styles/common/mixins/colors.js +23 -49
  600. package/lib/styles/common/mixins/fonts.js +18 -21
  601. package/lib/styles/common/mixins/shadows.js +2 -7
  602. package/lib/theme/common/breakpoints.js +12 -15
  603. package/lib/theme/common/components.js +231 -162
  604. package/lib/theme/common/palette.js +72 -75
  605. package/lib/theme/common/shadows.js +6 -9
  606. package/lib/theme/common/typography.js +22 -25
  607. package/lib/theme/theme.js +11 -38
  608. package/lib/types/error.js +6 -10
  609. package/lib/utils/database.js +4 -7
  610. package/lib/utils/fetchQueryParams.js +8 -8
  611. package/lib/utils/formatCountSize.js +1 -5
  612. package/lib/utils/formatFileSize.js +1 -5
  613. package/lib/utils/ssr.js +1 -5
  614. package/lib/utils/url.js +4 -8
  615. package/lib/viewModelBuilders/common/entities.js +1 -2
  616. package/lib/viewModelBuilders/common/utils.js +3 -9
  617. package/lib/views/ContentView/contentView.js +4 -11
  618. package/lib/views/ContentView/contentView.stories.js +26 -32
  619. package/lib/views/EntityDetailView/entityDetailView.js +26 -57
  620. package/lib/views/ExploreView/exploreView.js +58 -86
  621. package/lib/views/ExportMethodView/exportMethodView.js +11 -18
  622. package/lib/views/ExportView/exportView.js +13 -20
  623. package/lib/views/LoginView/loginView.js +6 -13
  624. package/package.json +2 -2
  625. package/src/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/common/constants.ts +1 -0
  626. package/src/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.tsx +4 -3
  627. package/src/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.tsx +3 -5
  628. package/src/components/Table/components/TableToolbar/components/RowPreview/rowPreview.tsx +8 -1
  629. package/src/config/entities.ts +2 -1
  630. package/tsconfig.json +3 -3
@@ -1,13 +1,10 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.sanitizeStringArray = exports.sanitizeString = exports.mapCategoryKeyLabel = void 0;
4
1
  /**
5
2
  * Map category key to category label.
6
3
  * @param CATEGORY_KEY - Category key.
7
4
  * @param CATEGORY_LABEL - Category label.
8
5
  * @returns map of category key to category label.
9
6
  */
10
- function mapCategoryKeyLabel(CATEGORY_KEY, CATEGORY_LABEL) {
7
+ export function mapCategoryKeyLabel(CATEGORY_KEY, CATEGORY_LABEL) {
11
8
  const categoryKeyLabel = new Map();
12
9
  for (const [key, categoryKey] of Object.entries(CATEGORY_KEY)) {
13
10
  const categoryLabel = CATEGORY_LABEL[key];
@@ -15,13 +12,12 @@ function mapCategoryKeyLabel(CATEGORY_KEY, CATEGORY_LABEL) {
15
12
  }
16
13
  return categoryKeyLabel;
17
14
  }
18
- exports.mapCategoryKeyLabel = mapCategoryKeyLabel;
19
15
  /**
20
16
  * Sanitizes a string for display i.e. any empty, null or undefined value is sanitized to "Unspecified".
21
17
  * @param str - String to sanitize.
22
18
  * @returns the string or sanitized string value.
23
19
  */
24
- function sanitizeString(str) {
20
+ export function sanitizeString(str) {
25
21
  if (str === "" || str === null || str === undefined) {
26
22
  return "Unspecified";
27
23
  }
@@ -29,17 +25,15 @@ function sanitizeString(str) {
29
25
  return str;
30
26
  }
31
27
  }
32
- exports.sanitizeString = sanitizeString;
33
28
  /**
34
29
  * Sanitizes a string array for display i.e. any string element within the string array that is an empty, null or
35
30
  * undefined value is sanitized to "Unspecified".
36
31
  * @param strArray - String array to sanitize.
37
32
  * @returns the string array, sanitized.
38
33
  */
39
- function sanitizeStringArray(strArray) {
34
+ export function sanitizeStringArray(strArray) {
40
35
  if (!strArray || strArray.length === 0) {
41
36
  return ["Unspecified"];
42
37
  }
43
38
  return strArray.map(sanitizeString);
44
39
  }
45
- exports.sanitizeStringArray = sanitizeStringArray;
@@ -1,12 +1,5 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
1
+ import React from "react";
2
+ import { ContentLayout } from "../../components/Layout/components/ContentLayout/contentLayout";
3
+ export const ContentView = ({ content, layoutStyle, navigation, outline, }) => {
4
+ return (React.createElement(ContentLayout, { content: content, layoutStyle: layoutStyle, navigation: navigation, outline: outline }));
4
5
  };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.ContentView = void 0;
7
- const react_1 = __importDefault(require("react"));
8
- const contentLayout_1 = require("../../components/Layout/components/ContentLayout/contentLayout");
9
- const ContentView = ({ content, layoutStyle, navigation, outline, }) => {
10
- return (react_1.default.createElement(contentLayout_1.ContentLayout, { content: content, layoutStyle: layoutStyle, navigation: navigation, outline: outline }));
11
- };
12
- exports.ContentView = ContentView;
@@ -1,41 +1,35 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.ContentViewStory = void 0;
7
- const logo_svg_1 = __importDefault(require("images/logo.svg"));
8
- const react_1 = __importDefault(require("react"));
9
- const navBarHero_1 = require("../../components/Layout/components/Nav/components/NavBarHero/navBarHero");
10
- const nav_1 = require("../../components/Layout/components/Nav/nav");
11
- const contentView_1 = require("./contentView");
12
- exports.default = {
13
- component: contentView_1.ContentView,
1
+ import image from "images/logo.svg";
2
+ import React from "react";
3
+ import { NavBarHero } from "../../components/Layout/components/Nav/components/NavBarHero/navBarHero";
4
+ import { Nav } from "../../components/Layout/components/Nav/nav";
5
+ import { ContentView } from "./contentView";
6
+ export default {
7
+ component: ContentView,
14
8
  parameters: {
15
9
  layout: "fullscreen",
16
10
  },
17
11
  title: "Views/ContentView",
18
12
  };
19
- exports.ContentViewStory = {
13
+ export const ContentViewStory = {
20
14
  args: {
21
- content: (react_1.default.createElement("div", null,
22
- react_1.default.createElement("h1", null, "Clinical Sequencing Evidence-Generating Research"),
23
- react_1.default.createElement("p", null, "The Clinical Sequencing Evidence-Generating Research (CSER) consortium is a national multi-site research program funded by the National Human Genome Research Institute (NHGRI), the National Cancer Institute (NCI) and the National Institute on Minority Health and Health Disparities (NIMHD)."),
24
- react_1.default.createElement("p", null, "Prioritizing engagement of traditionally underrepresented populations in genomics research, CSER\u2019s seven clinical sites seek to study the effectiveness of integrating genome sequencing into the clinical care of diverse and medically underserved individuals. CSER\u2019s research goals include measuring sequencing\u2019s clinical utility through patient and familial responses to genomic testing and evaluating patient-provider-laboratory interactions that influence the use of sequencing. Drawing from the expertise of clinicians, scientists, ethicists, bioinformaticians, economists, and legal scholars, CSER is poised to develop and share best practices in areas such as the discovery and interpretation of genomic variants, return of results, healthcare utilization, health outcomes and metrics, and the ethical, legal, and social implications of sequencing in diverse populations."),
25
- react_1.default.createElement("h2", null),
26
- react_1.default.createElement("p", null, "In CSER, we aim to improve the use of genetic information in medicine and reduce barriers to genetic services among underserved groups. Our research seeks to better understand connections between genes, other drivers of health and disease, and health outcomes. We have worked with study participants and community partners to help make our research more inclusive. We still have much more work to do to ensure that our findings are applied in fair and just ways. We also acknowledge the need for more diversity among our own researchers. As we publish the results of CSER, we commit to carrying efforts forward to make sure people of all backgrounds benefit from genomic research and medicine."),
27
- react_1.default.createElement("h3", null, "Clinical sequencing evidence-generating research (cser) sites:"),
28
- react_1.default.createElement("p", null, "In CSER, we aim to improve the use of genetic information in medicine and reduce barriers to genetic services among underserved groups. Our research seeks to better understand connections between genes, other drivers of health and disease, and health outcomes. We have worked with study participants and community partners to help make our research more inclusive. We still have much more work to do to ensure that our findings are applied in fair and just ways. We also acknowledge the need for more diversity among our own researchers. As we publish the results of CSER, we commit to carrying efforts forward to make sure people of all backgrounds benefit from genomic research and medicine."),
29
- react_1.default.createElement("ul", null,
30
- react_1.default.createElement("li", null, "CHARM, Kaiser Permanente Northwest"),
31
- react_1.default.createElement("li", null, "KidsCanSeq, Baylor College of Medicine"),
32
- react_1.default.createElement("li", null, "NCGENES 2, University of North Carolina, Chapel Hill"),
33
- react_1.default.createElement("li", null, "NYCKidSeq, Icahn School of Medicine at Mount Sinai"),
34
- react_1.default.createElement("li", null, "P3EGS, University of California, San Francisco"),
35
- react_1.default.createElement("li", null, "SouthSeq, HudsonAlpha Institute for Biotechnology"),
36
- react_1.default.createElement("li", null, "ClinSeq A2, NHGRI Intramural"),
37
- react_1.default.createElement("li", null, "CSER Coordinating Center, University of Washington, Seattle")))),
38
- navigation: (react_1.default.createElement(nav_1.Nav, { Hero: react_1.default.createElement(navBarHero_1.NavBarHero, { byline: "Active August, 2020 to July, 2023", logo: Object.assign(Object.assign({}, logo_svg_1.default), { height: 40 }), slogan: "Clinical Sequencing Evidence-Generating Research" }), navigation: [
15
+ content: (React.createElement("div", null,
16
+ React.createElement("h1", null, "Clinical Sequencing Evidence-Generating Research"),
17
+ React.createElement("p", null, "The Clinical Sequencing Evidence-Generating Research (CSER) consortium is a national multi-site research program funded by the National Human Genome Research Institute (NHGRI), the National Cancer Institute (NCI) and the National Institute on Minority Health and Health Disparities (NIMHD)."),
18
+ React.createElement("p", null, "Prioritizing engagement of traditionally underrepresented populations in genomics research, CSER\u2019s seven clinical sites seek to study the effectiveness of integrating genome sequencing into the clinical care of diverse and medically underserved individuals. CSER\u2019s research goals include measuring sequencing\u2019s clinical utility through patient and familial responses to genomic testing and evaluating patient-provider-laboratory interactions that influence the use of sequencing. Drawing from the expertise of clinicians, scientists, ethicists, bioinformaticians, economists, and legal scholars, CSER is poised to develop and share best practices in areas such as the discovery and interpretation of genomic variants, return of results, healthcare utilization, health outcomes and metrics, and the ethical, legal, and social implications of sequencing in diverse populations."),
19
+ React.createElement("h2", null),
20
+ React.createElement("p", null, "In CSER, we aim to improve the use of genetic information in medicine and reduce barriers to genetic services among underserved groups. Our research seeks to better understand connections between genes, other drivers of health and disease, and health outcomes. We have worked with study participants and community partners to help make our research more inclusive. We still have much more work to do to ensure that our findings are applied in fair and just ways. We also acknowledge the need for more diversity among our own researchers. As we publish the results of CSER, we commit to carrying efforts forward to make sure people of all backgrounds benefit from genomic research and medicine."),
21
+ React.createElement("h3", null, "Clinical sequencing evidence-generating research (cser) sites:"),
22
+ React.createElement("p", null, "In CSER, we aim to improve the use of genetic information in medicine and reduce barriers to genetic services among underserved groups. Our research seeks to better understand connections between genes, other drivers of health and disease, and health outcomes. We have worked with study participants and community partners to help make our research more inclusive. We still have much more work to do to ensure that our findings are applied in fair and just ways. We also acknowledge the need for more diversity among our own researchers. As we publish the results of CSER, we commit to carrying efforts forward to make sure people of all backgrounds benefit from genomic research and medicine."),
23
+ React.createElement("ul", null,
24
+ React.createElement("li", null, "CHARM, Kaiser Permanente Northwest"),
25
+ React.createElement("li", null, "KidsCanSeq, Baylor College of Medicine"),
26
+ React.createElement("li", null, "NCGENES 2, University of North Carolina, Chapel Hill"),
27
+ React.createElement("li", null, "NYCKidSeq, Icahn School of Medicine at Mount Sinai"),
28
+ React.createElement("li", null, "P3EGS, University of California, San Francisco"),
29
+ React.createElement("li", null, "SouthSeq, HudsonAlpha Institute for Biotechnology"),
30
+ React.createElement("li", null, "ClinSeq A2, NHGRI Intramural"),
31
+ React.createElement("li", null, "CSER Coordinating Center, University of Washington, Seattle")))),
32
+ navigation: (React.createElement(Nav, { Hero: React.createElement(NavBarHero, { byline: "Active August, 2020 to July, 2023", logo: { ...image, height: 40 }, slogan: "Clinical Sequencing Evidence-Generating Research" }), navigation: [
39
33
  { active: true, label: "About", url: "/" },
40
34
  { label: "News", url: "/" },
41
35
  { label: "Projects", url: "/" },
@@ -1,44 +1,15 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- var __importDefault = (this && this.__importDefault) || function (mod) {
26
- return (mod && mod.__esModule) ? mod : { "default": mod };
27
- };
28
- Object.defineProperty(exports, "__esModule", { value: true });
29
- exports.EntityDetailView = void 0;
30
- const head_1 = __importDefault(require("next/head"));
31
- const router_1 = require("next/router");
32
- const react_1 = __importStar(require("react"));
33
- const constants_1 = require("../../common/constants");
34
- const tabs_1 = require("../../components/common/Tabs/tabs");
35
- const ComponentCreator_1 = require("../../components/ComponentCreator/ComponentCreator");
36
- const detail_1 = require("../../components/Detail/detail");
37
- const useConfig_1 = require("../../hooks/useConfig");
38
- const useCurrentDetailTab_1 = require("../../hooks/useCurrentDetailTab");
39
- const useEntityHeadTitle_1 = require("../../hooks/useEntityHeadTitle");
40
- const useFetchEntity_1 = require("../../hooks/useFetchEntity");
41
- const useUpdateURLCatalogParam_1 = require("../../hooks/useUpdateURLCatalogParam");
1
+ import Head from "next/head";
2
+ import { useRouter } from "next/router";
3
+ import React, { Fragment } from "react";
4
+ import { PARAMS_INDEX_UUID } from "../../common/constants";
5
+ import { Tabs } from "../../components/common/Tabs/tabs";
6
+ import { ComponentCreator } from "../../components/ComponentCreator/ComponentCreator";
7
+ import { Detail as DetailView } from "../../components/Detail/detail";
8
+ import { useConfig } from "../../hooks/useConfig";
9
+ import { useCurrentDetailTab } from "../../hooks/useCurrentDetailTab";
10
+ import { useEntityHeadTitle } from "../../hooks/useEntityHeadTitle";
11
+ import { useFetchEntity } from "../../hooks/useFetchEntity";
12
+ import { useUpdateURLCatalogParams } from "../../hooks/useUpdateURLCatalogParam";
42
13
  /**
43
14
  * Returns tabs to be used as a prop for the Tabs component.
44
15
  * @param entity - Entity config related to the /explore/projects route.
@@ -52,22 +23,21 @@ function getTabs(entity) {
52
23
  value: route,
53
24
  }));
54
25
  }
55
- const EntityDetailView = (props) => {
56
- var _a;
57
- (0, useUpdateURLCatalogParam_1.useUpdateURLCatalogParams)();
58
- const { currentTab, route: tabRoute } = (0, useCurrentDetailTab_1.useCurrentDetailTab)();
59
- const { response } = (0, useFetchEntity_1.useFetchEntity)(props);
60
- const { push, query } = (0, router_1.useRouter)();
61
- const { entityConfig } = (0, useConfig_1.useConfig)();
26
+ export const EntityDetailView = (props) => {
27
+ useUpdateURLCatalogParams();
28
+ const { currentTab, route: tabRoute } = useCurrentDetailTab();
29
+ const { response } = useFetchEntity(props);
30
+ const { push, query } = useRouter();
31
+ const { entityConfig } = useConfig();
62
32
  const { mainColumn, sideColumn } = currentTab;
63
33
  const { detail, route: entityRoute } = entityConfig;
64
34
  const { detailOverviews, top } = detail;
65
- const uuid = (_a = query.params) === null || _a === void 0 ? void 0 : _a[constants_1.PARAMS_INDEX_UUID];
66
- const isDetailOverview = detailOverviews === null || detailOverviews === void 0 ? void 0 : detailOverviews.includes(currentTab.label);
35
+ const uuid = query.params?.[PARAMS_INDEX_UUID];
36
+ const isDetailOverview = detailOverviews?.includes(currentTab.label);
67
37
  const tabs = getTabs(entityConfig);
68
- const title = (0, useEntityHeadTitle_1.useEntityHeadTitle)(response);
38
+ const title = useEntityHeadTitle(response);
69
39
  if (!response) {
70
- return react_1.default.createElement("span", null); //TODO: return the loading UI component
40
+ return React.createElement("span", null); //TODO: return the loading UI component
71
41
  }
72
42
  /**
73
43
  * Callback fired when selected tab value changes.
@@ -77,9 +47,8 @@ const EntityDetailView = (props) => {
77
47
  const onTabChange = (tabValue) => {
78
48
  push(`/${entityRoute}/${uuid}/${tabValue}`);
79
49
  };
80
- return (react_1.default.createElement(react_1.Fragment, null,
81
- title && (react_1.default.createElement(head_1.default, null,
82
- react_1.default.createElement("title", null, title))),
83
- react_1.default.createElement(detail_1.Detail, { isDetailOverview: isDetailOverview, mainColumn: react_1.default.createElement(ComponentCreator_1.ComponentCreator, { components: mainColumn, response: response }), sideColumn: sideColumn ? (react_1.default.createElement(ComponentCreator_1.ComponentCreator, { components: sideColumn, response: response })) : undefined, Tabs: react_1.default.createElement(tabs_1.Tabs, { onTabChange: onTabChange, tabs: tabs, value: tabRoute }), top: react_1.default.createElement(ComponentCreator_1.ComponentCreator, { components: top, response: response }) })));
50
+ return (React.createElement(Fragment, null,
51
+ title && (React.createElement(Head, null,
52
+ React.createElement("title", null, title))),
53
+ React.createElement(DetailView, { isDetailOverview: isDetailOverview, mainColumn: React.createElement(ComponentCreator, { components: mainColumn, response: response }), sideColumn: sideColumn ? (React.createElement(ComponentCreator, { components: sideColumn, response: response })) : undefined, Tabs: React.createElement(Tabs, { onTabChange: onTabChange, tabs: tabs, value: tabRoute }), top: React.createElement(ComponentCreator, { components: top, response: response }) })));
84
54
  };
85
- exports.EntityDetailView = EntityDetailView;
@@ -1,52 +1,26 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- Object.defineProperty(exports, "__esModule", { value: true });
26
- exports.ExploreView = void 0;
27
- const router_1 = require("next/router");
28
- const react_1 = __importStar(require("react"));
29
- const analytics_1 = require("../../common/analytics/analytics");
30
- const entities_1 = require("../../common/analytics/entities");
31
- const tabs_1 = require("../../components/common/Tabs/tabs");
32
- const ComponentCreator_1 = require("../../components/ComponentCreator/ComponentCreator");
33
- const clearAllFilters_1 = require("../../components/Filter/components/ClearAllFilters/clearAllFilters");
34
- const filters_1 = require("../../components/Filter/components/Filters/filters");
35
- const searchAllFilters_1 = require("../../components/Filter/components/SearchAllFilters/searchAllFilters");
36
- const index_1 = require("../../components/Index/index");
37
- const sidebarButton_1 = require("../../components/Layout/components/Sidebar/components/SidebarButton/sidebarButton");
38
- const sidebarLabel_1 = require("../../components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel");
39
- const sidebarTools_styles_1 = require("../../components/Layout/components/Sidebar/components/SidebarTools/sidebarTools.styles");
40
- const sidebar_1 = require("../../components/Layout/components/Sidebar/sidebar");
41
- const tableCreator_1 = require("../../components/TableCreator/tableCreator");
42
- const useBreakpointHelper_1 = require("../../hooks/useBreakpointHelper");
43
- const useConfig_1 = require("../../hooks/useConfig");
44
- const useEntityList_1 = require("../../hooks/useEntityList");
45
- const useExploreState_1 = require("../../hooks/useExploreState");
46
- const useSummary_1 = require("../../hooks/useSummary");
47
- const exploreState_1 = require("../../providers/exploreState");
48
- const constants_1 = require("../../providers/exploreState/constants");
49
- const breakpoints_1 = require("../../theme/common/breakpoints");
1
+ import { useRouter } from "next/router";
2
+ import React, { useEffect, useMemo, useState } from "react";
3
+ import { track } from "../../common/analytics/analytics";
4
+ import { EVENT_NAME, EVENT_PARAM } from "../../common/analytics/entities";
5
+ import { Tabs } from "../../components/common/Tabs/tabs";
6
+ import { ComponentCreator } from "../../components/ComponentCreator/ComponentCreator";
7
+ import { ClearAllFilters } from "../../components/Filter/components/ClearAllFilters/clearAllFilters";
8
+ import { Filters, } from "../../components/Filter/components/Filters/filters";
9
+ import { SearchAllFilters } from "../../components/Filter/components/SearchAllFilters/searchAllFilters";
10
+ import { Index as IndexView } from "../../components/Index/index";
11
+ import { SidebarButton } from "../../components/Layout/components/Sidebar/components/SidebarButton/sidebarButton";
12
+ import { SidebarLabel } from "../../components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel";
13
+ import { SidebarTools } from "../../components/Layout/components/Sidebar/components/SidebarTools/sidebarTools.styles";
14
+ import { Sidebar } from "../../components/Layout/components/Sidebar/sidebar";
15
+ import { TableCreator } from "../../components/TableCreator/tableCreator";
16
+ import { BREAKPOINT_FN_NAME, useBreakpointHelper, } from "../../hooks/useBreakpointHelper";
17
+ import { useConfig } from "../../hooks/useConfig";
18
+ import { useEntityList } from "../../hooks/useEntityList";
19
+ import { useExploreState } from "../../hooks/useExploreState";
20
+ import { useSummary } from "../../hooks/useSummary";
21
+ import { ExploreActionKind } from "../../providers/exploreState";
22
+ import { SELECT_CATEGORY_KEY } from "../../providers/exploreState/constants";
23
+ import { DESKTOP_SM } from "../../theme/common/breakpoints";
50
24
  /**
51
25
  * Returns tabs to be used as a prop for the Tabs component.
52
26
  * @param entities - Entities config.
@@ -60,21 +34,21 @@ function getTabs(entities) {
60
34
  value: route,
61
35
  }));
62
36
  }
63
- const ExploreView = (props) => {
64
- const [isDrawerOpen, setIsDrawerOpen] = (0, react_1.useState)(false);
65
- const tabletDown = (0, useBreakpointHelper_1.useBreakpointHelper)(useBreakpointHelper_1.BREAKPOINT_FN_NAME.DOWN, breakpoints_1.DESKTOP_SM);
66
- const { config, entityConfig } = (0, useConfig_1.useConfig)(); // Get app level config.
67
- const { exploreDispatch, exploreState } = (0, useExploreState_1.useExploreState)(); // Get the useReducer state and dispatch for "Explore".
37
+ export const ExploreView = (props) => {
38
+ const [isDrawerOpen, setIsDrawerOpen] = useState(false);
39
+ const tabletDown = useBreakpointHelper(BREAKPOINT_FN_NAME.DOWN, DESKTOP_SM);
40
+ const { config, entityConfig } = useConfig(); // Get app level config.
41
+ const { exploreDispatch, exploreState } = useExploreState(); // Get the useReducer state and dispatch for "Explore".
68
42
  const { entities, explorerTitle, summaryConfig, trackingConfig } = config;
69
43
  const { listView } = entityConfig;
70
44
  const { listHero, subTitleHero } = listView || {};
71
45
  const { categoryGroups, categoryViews, filterCount, tabValue } = exploreState;
72
- const { push } = (0, router_1.useRouter)();
46
+ const { push } = useRouter();
73
47
  const tabs = getTabs(entities);
74
- const { response: summaryResponse } = (0, useSummary_1.useSummary)(); // Fetch summary.
75
- (0, useEntityList_1.useEntityList)(props); // Fetch entities.
48
+ const { response: summaryResponse } = useSummary(); // Fetch summary.
49
+ useEntityList(props); // Fetch entities.
76
50
  const { entityListType } = props;
77
- const categoryFilters = (0, react_1.useMemo)(() => buildCategoryFilters(categoryViews, categoryGroups), [categoryGroups, categoryViews]);
51
+ const categoryFilters = useMemo(() => buildCategoryFilters(categoryViews, categoryGroups), [categoryGroups, categoryViews]);
78
52
  /**
79
53
  * Closes filter drawer.
80
54
  */
@@ -91,10 +65,9 @@ const ExploreView = (props) => {
91
65
  * @param searchTerm - Search term used to find the value.
92
66
  */
93
67
  const onFilterChange = (fromSearchAll, categoryKey, selectedCategoryValue, selected, categorySection, searchTerm) => {
94
- var _a;
95
- const dispatchType = categoryKey === constants_1.SELECT_CATEGORY_KEY.SAVED_FILTERS
96
- ? exploreState_1.ExploreActionKind.ApplySavedFilter
97
- : exploreState_1.ExploreActionKind.UpdateFilter;
68
+ const dispatchType = categoryKey === SELECT_CATEGORY_KEY.SAVED_FILTERS
69
+ ? ExploreActionKind.ApplySavedFilter
70
+ : ExploreActionKind.UpdateFilter;
98
71
  exploreDispatch({
99
72
  payload: {
100
73
  categoryKey,
@@ -103,19 +76,19 @@ const ExploreView = (props) => {
103
76
  },
104
77
  type: dispatchType,
105
78
  });
106
- (_a = trackingConfig === null || trackingConfig === void 0 ? void 0 : trackingConfig.trackFilterApplied) === null || _a === void 0 ? void 0 : _a.call(trackingConfig, {
79
+ trackingConfig?.trackFilterApplied?.({
107
80
  category: categoryKey,
108
81
  fromSearchAll,
109
- searchTerm: searchTerm !== null && searchTerm !== void 0 ? searchTerm : "",
110
- section: categorySection !== null && categorySection !== void 0 ? categorySection : "",
82
+ searchTerm: searchTerm ?? "",
83
+ section: categorySection ?? "",
111
84
  selected,
112
85
  value: selectedCategoryValue,
113
86
  });
114
87
  // Execute GTM tracking.
115
88
  if (selected) {
116
- (0, analytics_1.track)(entities_1.EVENT_NAME.FILTER_SELECTED, {
117
- [entities_1.EVENT_PARAM.FILTER_NAME]: categoryKey,
118
- [entities_1.EVENT_PARAM.FILTER_VALUE]: selectedCategoryValue,
89
+ track(EVENT_NAME.FILTER_SELECTED, {
90
+ [EVENT_PARAM.FILTER_NAME]: categoryKey,
91
+ [EVENT_PARAM.FILTER_VALUE]: selectedCategoryValue,
119
92
  });
120
93
  }
121
94
  };
@@ -137,27 +110,26 @@ const ExploreView = (props) => {
137
110
  /**
138
111
  * Dispatch a SelectedEntityType action when entityListType changes.
139
112
  */
140
- (0, react_1.useEffect)(() => {
113
+ useEffect(() => {
141
114
  if (entityListType) {
142
115
  exploreDispatch({
143
116
  payload: entityListType,
144
- type: exploreState_1.ExploreActionKind.SelectEntityType,
117
+ type: ExploreActionKind.SelectEntityType,
145
118
  });
146
- (0, analytics_1.track)(entities_1.EVENT_NAME.ENTITY_SELECTED, {
147
- [entities_1.EVENT_PARAM.ENTITY_NAME]: entityListType,
119
+ track(EVENT_NAME.ENTITY_SELECTED, {
120
+ [EVENT_PARAM.ENTITY_NAME]: entityListType,
148
121
  });
149
122
  }
150
123
  }, [entityListType, exploreDispatch]);
151
- return (react_1.default.createElement(react_1.default.Fragment, null,
152
- categoryViews && !!categoryViews.length && (react_1.default.createElement(sidebar_1.Sidebar, { drawerOpen: isDrawerOpen, onDrawerClose: onCloseDrawer },
153
- react_1.default.createElement(sidebarTools_styles_1.SidebarTools, null,
154
- react_1.default.createElement(sidebarLabel_1.SidebarLabel, { label: "Filters" }),
155
- react_1.default.createElement(clearAllFilters_1.ClearAllFilters, null),
156
- react_1.default.createElement(searchAllFilters_1.SearchAllFilters, { categoryViews: categoryViews, drawerOpen: isDrawerOpen, onFilter: onFilterChange.bind(null, true) })),
157
- react_1.default.createElement(filters_1.Filters, { categoryFilters: categoryFilters, closeAncestor: onCloseDrawer, onFilter: onFilterChange.bind(null, false), trackFilterOpened: trackingConfig === null || trackingConfig === void 0 ? void 0 : trackingConfig.trackFilterOpened }))),
158
- react_1.default.createElement(index_1.Index, { className: props.className, List: renderList(exploreState, entityConfig, entityListType), ListHero: renderComponent(listHero), SideBarButton: tabletDown ? (react_1.default.createElement(sidebarButton_1.SidebarButton, { count: filterCount, label: "Filter", onClick: onOpenDrawer })) : undefined, SubTitleHero: renderComponent(subTitleHero), Summaries: renderSummary(summaryConfig, summaryResponse), Tabs: react_1.default.createElement(tabs_1.Tabs, { onTabChange: onTabChange, tabs: tabs, value: tabValue }), title: explorerTitle })));
124
+ return (React.createElement(React.Fragment, null,
125
+ categoryViews && !!categoryViews.length && (React.createElement(Sidebar, { drawerOpen: isDrawerOpen, onDrawerClose: onCloseDrawer },
126
+ React.createElement(SidebarTools, null,
127
+ React.createElement(SidebarLabel, { label: "Filters" }),
128
+ React.createElement(ClearAllFilters, null),
129
+ React.createElement(SearchAllFilters, { categoryViews: categoryViews, drawerOpen: isDrawerOpen, onFilter: onFilterChange.bind(null, true) })),
130
+ React.createElement(Filters, { categoryFilters: categoryFilters, closeAncestor: onCloseDrawer, onFilter: onFilterChange.bind(null, false), trackFilterOpened: trackingConfig?.trackFilterOpened }))),
131
+ React.createElement(IndexView, { className: props.className, List: renderList(exploreState, entityConfig, entityListType), ListHero: renderComponent(listHero), SideBarButton: tabletDown ? (React.createElement(SidebarButton, { count: filterCount, label: "Filter", onClick: onOpenDrawer })) : undefined, SubTitleHero: renderComponent(subTitleHero), Summaries: renderSummary(summaryConfig, summaryResponse), Tabs: React.createElement(Tabs, { onTabChange: onTabChange, tabs: tabs, value: tabValue }), title: explorerTitle })));
159
132
  };
160
- exports.ExploreView = ExploreView;
161
133
  /**
162
134
  * Builds the category views into category views grouped by the given category group configuration.
163
135
  * @param selectCategoryViews - View models of categories to display.
@@ -193,7 +165,7 @@ function renderComponent(componentsConfig, response) {
193
165
  if (!componentsConfig) {
194
166
  return;
195
167
  }
196
- return react_1.default.createElement(ComponentCreator_1.ComponentCreator, { components: componentsConfig, response: response });
168
+ return React.createElement(ComponentCreator, { components: componentsConfig, response: response });
197
169
  }
198
170
  /**
199
171
  * Render either a loading view, empty result set notification or the table itself.
@@ -207,14 +179,14 @@ function renderList(exploreState, entityConfig, entityListType) {
207
179
  const { getId: getRowId, list, listView } = entityConfig;
208
180
  const { columns: columnsConfig, defaultSort } = list;
209
181
  if (!exploreState || !tabValue) {
210
- return react_1.default.createElement(react_1.default.Fragment, null); //TODO: return the loading UI component
182
+ return React.createElement(React.Fragment, null); //TODO: return the loading UI component
211
183
  }
212
184
  if (entityListType !== tabValue) {
213
185
  // required currently for client-side fetching as the pre-rendered page
214
186
  // loads with the previous tabs data on the first render after switching tabs. (or similar)
215
- return react_1.default.createElement(react_1.default.Fragment, null);
187
+ return React.createElement(React.Fragment, null);
216
188
  }
217
- return (react_1.default.createElement(tableCreator_1.TableCreator, { columns: columnsConfig, defaultSort: defaultSort, getRowId: getRowId, items: listItems !== null && listItems !== void 0 ? listItems : [], listView: listView, loading: loading }));
189
+ return (React.createElement(TableCreator, { columns: columnsConfig, defaultSort: defaultSort, getRowId: getRowId, items: listItems ?? [], listView: listView, loading: loading }));
218
190
  }
219
191
  /**
220
192
  * Renders Summaries component when all the following requirements are fulfilled:
@@ -230,5 +202,5 @@ function renderSummary(summaryConfig, summaryResponse) {
230
202
  return;
231
203
  }
232
204
  /* Render the Summaries component. */
233
- return (react_1.default.createElement(ComponentCreator_1.ComponentCreator, { components: summaryConfig.components, response: summaryResponse }));
205
+ return (React.createElement(ComponentCreator, { components: summaryConfig.components, response: summaryResponse }));
234
206
  }
@@ -1,24 +1,17 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.ExportMethodView = void 0;
7
- const router_1 = require("next/router");
8
- const react_1 = __importDefault(require("react"));
9
- const ComponentCreator_1 = require("../../components/ComponentCreator/ComponentCreator");
10
- const backPageView_1 = require("../../components/Layout/components/BackPage/backPageView");
11
- const useExportConfig_1 = require("../../hooks/useExportConfig");
12
- const useUpdateURLSearchParams_1 = require("../../hooks/useUpdateURLSearchParams");
13
- const ExportMethodView = () => {
14
- (0, useUpdateURLSearchParams_1.useUpdateURLSearchParams)();
15
- const { pathname } = (0, router_1.useRouter)();
16
- const { exportMethods, tabs } = (0, useExportConfig_1.useExportConfig)();
1
+ import { useRouter } from "next/router";
2
+ import React from "react";
3
+ import { ComponentCreator } from "../../components/ComponentCreator/ComponentCreator";
4
+ import { BackPageView } from "../../components/Layout/components/BackPage/backPageView";
5
+ import { useExportConfig } from "../../hooks/useExportConfig";
6
+ import { useUpdateURLSearchParams } from "../../hooks/useUpdateURLSearchParams";
7
+ export const ExportMethodView = () => {
8
+ useUpdateURLSearchParams();
9
+ const { pathname } = useRouter();
10
+ const { exportMethods, tabs } = useExportConfig();
17
11
  const { sideColumn } = tabs[0];
18
12
  const { mainColumn, top } = getExportMethodConfig(exportMethods, pathname) || {};
19
- return (react_1.default.createElement(backPageView_1.BackPageView, { mainColumn: react_1.default.createElement(ComponentCreator_1.ComponentCreator, { components: mainColumn || [], response: {} }), sideColumn: sideColumn ? (react_1.default.createElement(ComponentCreator_1.ComponentCreator, { components: sideColumn, response: {} })) : undefined, top: react_1.default.createElement(ComponentCreator_1.ComponentCreator, { components: top || [], response: {} }) }));
13
+ return (React.createElement(BackPageView, { mainColumn: React.createElement(ComponentCreator, { components: mainColumn || [], response: {} }), sideColumn: sideColumn ? (React.createElement(ComponentCreator, { components: sideColumn, response: {} })) : undefined, top: React.createElement(ComponentCreator, { components: top || [], response: {} }) }));
20
14
  };
21
- exports.ExportMethodView = ExportMethodView;
22
15
  /**
23
16
  * Returns the export method configuration for the given pathname.
24
17
  * @param exportMethods - Export methods config.
@@ -1,23 +1,16 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.ExportView = void 0;
7
- const react_1 = __importDefault(require("react"));
8
- const ComponentCreator_1 = require("../../components/ComponentCreator/ComponentCreator");
9
- const backPageView_1 = require("../../components/Layout/components/BackPage/backPageView");
10
- const useExploreState_1 = require("../../hooks/useExploreState");
11
- const useExportConfig_1 = require("../../hooks/useExportConfig");
12
- const useRequestFileManifest_1 = require("../../hooks/useFileManifest/useRequestFileManifest");
13
- const useUpdateURLSearchParams_1 = require("../../hooks/useUpdateURLSearchParams");
14
- const ExportView = (props) => {
15
- const { exploreState: { filterState }, } = (0, useExploreState_1.useExploreState)();
16
- (0, useUpdateURLSearchParams_1.useUpdateURLSearchParams)();
17
- (0, useRequestFileManifest_1.useRequestFileManifest)(undefined, filterState, undefined);
18
- const { tabs, top } = (0, useExportConfig_1.useExportConfig)();
1
+ import React from "react";
2
+ import { ComponentCreator } from "../../components/ComponentCreator/ComponentCreator";
3
+ import { BackPageView } from "../../components/Layout/components/BackPage/backPageView";
4
+ import { useExploreState } from "../../hooks/useExploreState";
5
+ import { useExportConfig } from "../../hooks/useExportConfig";
6
+ import { useRequestFileManifest } from "../../hooks/useFileManifest/useRequestFileManifest";
7
+ import { useUpdateURLSearchParams } from "../../hooks/useUpdateURLSearchParams";
8
+ export const ExportView = (props) => {
9
+ const { exploreState: { filterState }, } = useExploreState();
10
+ useUpdateURLSearchParams();
11
+ useRequestFileManifest(undefined, filterState, undefined);
12
+ const { tabs, top } = useExportConfig();
19
13
  const currentTab = tabs[0];
20
14
  const { mainColumn, sideColumn } = currentTab;
21
- return (react_1.default.createElement(backPageView_1.BackPageView, { mainColumn: react_1.default.createElement(ComponentCreator_1.ComponentCreator, { components: mainColumn, response: props }), sideColumn: sideColumn ? (react_1.default.createElement(ComponentCreator_1.ComponentCreator, { components: sideColumn, response: props })) : undefined, top: react_1.default.createElement(ComponentCreator_1.ComponentCreator, { components: top, response: props }) }));
15
+ return (React.createElement(BackPageView, { mainColumn: React.createElement(ComponentCreator, { components: mainColumn, response: props }), sideColumn: sideColumn ? (React.createElement(ComponentCreator, { components: sideColumn, response: props })) : undefined, top: React.createElement(ComponentCreator, { components: top, response: props }) }));
22
16
  };
23
- exports.ExportView = ExportView;
@@ -1,14 +1,7 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
1
+ import React from "react";
2
+ import { Login } from "../../components/Login/login";
3
+ import { useAuthenticationConfig } from "../../hooks/useAuthenticationConfig";
4
+ export const LoginView = () => {
5
+ const { googleGISAuthConfig, termsOfService, text, title, warning } = useAuthenticationConfig();
6
+ return (React.createElement(Login, { isGoogle: !!googleGISAuthConfig, termsOfService: termsOfService, text: text, title: title, warning: warning }));
4
7
  };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.LoginView = void 0;
7
- const react_1 = __importDefault(require("react"));
8
- const login_1 = require("../../components/Login/login");
9
- const useAuthenticationConfig_1 = require("../../hooks/useAuthenticationConfig");
10
- const LoginView = () => {
11
- const { googleGISAuthConfig, termsOfService, text, title, warning } = (0, useAuthenticationConfig_1.useAuthenticationConfig)();
12
- return (react_1.default.createElement(login_1.Login, { isGoogle: !!googleGISAuthConfig, termsOfService: termsOfService, text: text, title: title, warning: warning }));
13
- };
14
- exports.LoginView = LoginView;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databiosphere/findable-ui",
3
- "version": "6.0.0",
3
+ "version": "7.0.0",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "jest",
@@ -66,7 +66,7 @@
66
66
  "@emotion/styled": "11.11.0",
67
67
  "@mui/icons-material": "5.14.1",
68
68
  "@mui/material": "5.14.1",
69
- "@tanstack/react-table": "^8.17.3",
69
+ "@tanstack/react-table": "^8.19.2",
70
70
  "@tanstack/react-virtual": "^3.0.0-beta.59",
71
71
  "axios": "^1.6.7",
72
72
  "copy-to-clipboard": "3.3.1",
@@ -4,6 +4,7 @@ export const DEFAULT_DRAWER_PROPS: Partial<MDrawerProps> = {
4
4
  PaperProps: {
5
5
  elevation: 2,
6
6
  },
7
+ SlideProps: { appear: true },
7
8
  anchor: "right",
8
9
  disableEnforceFocus: true,
9
10
  disableScrollLock: true,