@databiosphere/findable-ui 0.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 (1737) hide show
  1. package/.eslintignore +5 -0
  2. package/.eslintrc.json +78 -0
  3. package/.github/workflows/run-checks.yml +18 -0
  4. package/.husky/commit-msg +18 -0
  5. package/.husky/pre-commit +36 -0
  6. package/.prettierignore +18 -0
  7. package/.prettierrc.json +1 -0
  8. package/.storybook/main.ts +46 -0
  9. package/.storybook/preview-head.html +4 -0
  10. package/.storybook/preview.js +39 -0
  11. package/LICENSE +201 -0
  12. package/README.md +31 -0
  13. package/commitlint.config.js +1 -0
  14. package/jest.config.js +5 -0
  15. package/lib/apis/azul/common/constants.d.ts +10 -0
  16. package/lib/apis/azul/common/constants.js +13 -0
  17. package/lib/apis/azul/common/entities.d.ts +161 -0
  18. package/lib/apis/azul/common/entities.js +57 -0
  19. package/lib/apis/azul/common/filterTransformer.d.ts +22 -0
  20. package/lib/apis/azul/common/filterTransformer.js +112 -0
  21. package/lib/apis/azul/common/utils.d.ts +7 -0
  22. package/lib/apis/azul/common/utils.js +21 -0
  23. package/lib/common/analytics/analytics.d.ts +17 -0
  24. package/lib/common/analytics/analytics.js +41 -0
  25. package/lib/common/analytics/entities.d.ts +69 -0
  26. package/lib/common/analytics/entities.js +47 -0
  27. package/lib/common/constants.d.ts +12 -0
  28. package/lib/common/constants.js +18 -0
  29. package/lib/common/entities.d.ts +90 -0
  30. package/lib/common/entities.js +12 -0
  31. package/lib/common/selectors.d.ts +2 -0
  32. package/lib/common/selectors.js +5 -0
  33. package/lib/common/utils.d.ts +18 -0
  34. package/lib/common/utils.js +35 -0
  35. package/lib/components/ComponentCreator/ComponentCreator.d.ts +16 -0
  36. package/lib/components/ComponentCreator/ComponentCreator.js +49 -0
  37. package/lib/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.d.ts +9 -0
  38. package/lib/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.js +11 -0
  39. package/lib/components/ComponentCreator/components/RenderComponent/renderComponent.d.ts +8 -0
  40. package/lib/components/ComponentCreator/components/RenderComponent/renderComponent.js +24 -0
  41. package/lib/components/Detail/components/AccessibilityBadge/accessibilityBadge.d.ts +8 -0
  42. package/lib/components/Detail/components/AccessibilityBadge/accessibilityBadge.js +18 -0
  43. package/lib/components/Detail/components/DetailViewTable/detailViewTable.d.ts +14 -0
  44. package/lib/components/Detail/components/DetailViewTable/detailViewTable.js +18 -0
  45. package/lib/components/Detail/components/Table/common/utils.d.ts +7 -0
  46. package/lib/components/Detail/components/Table/common/utils.js +15 -0
  47. package/lib/components/Detail/components/Table/components/TableBody/tableBody.d.ts +10 -0
  48. package/lib/components/Detail/components/Table/components/TableBody/tableBody.js +15 -0
  49. package/lib/components/Detail/components/Table/components/TableHead/tableHead.d.ts +8 -0
  50. package/lib/components/Detail/components/Table/components/TableHead/tableHead.js +36 -0
  51. package/lib/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.d.ts +6 -0
  52. package/lib/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.js +40 -0
  53. package/lib/components/Detail/components/Table/components/TableRows/tableRows.d.ts +8 -0
  54. package/lib/components/Detail/components/Table/components/TableRows/tableRows.js +41 -0
  55. package/lib/components/Detail/components/Table/table.d.ts +17 -0
  56. package/lib/components/Detail/components/Table/table.js +33 -0
  57. package/lib/components/Detail/detail.d.ts +9 -0
  58. package/lib/components/Detail/detail.js +12 -0
  59. package/lib/components/Detail/detail.stories.d.ts +3 -0
  60. package/lib/components/Detail/detail.stories.js +49 -0
  61. package/lib/components/Error/error.d.ts +8 -0
  62. package/lib/components/Error/error.js +50 -0
  63. package/lib/components/Error/error.stories.d.ts +7 -0
  64. package/lib/components/Error/error.stories.js +28 -0
  65. package/lib/components/Error/error.styles.d.ts +27 -0
  66. package/lib/components/Error/error.styles.js +44 -0
  67. package/lib/components/ErrorBoundary/errorBoundary.d.ts +19 -0
  68. package/lib/components/ErrorBoundary/errorBoundary.js +28 -0
  69. package/lib/components/ErrorBoundary/index.d.ts +1 -0
  70. package/lib/components/ErrorBoundary/index.js +5 -0
  71. package/lib/components/Export/common/entities.d.ts +43 -0
  72. package/lib/components/Export/common/entities.js +11 -0
  73. package/lib/components/Export/common/tracking.d.ts +7 -0
  74. package/lib/components/Export/common/tracking.js +28 -0
  75. package/lib/components/Export/common/utils.d.ts +9 -0
  76. package/lib/components/Export/common/utils.js +36 -0
  77. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.d.ts +11 -0
  78. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.js +36 -0
  79. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.styles.d.ts +4 -0
  80. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.styles.js +11 -0
  81. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.d.ts +14 -0
  82. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.js +22 -0
  83. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.d.ts +6 -0
  84. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.js +18 -0
  85. package/lib/components/Export/components/DownloadCurlCommand/downloadCurlCommand.d.ts +17 -0
  86. package/lib/components/Export/components/DownloadCurlCommand/downloadCurlCommand.js +76 -0
  87. package/lib/components/Export/components/ExportForm/common/entities.d.ts +6 -0
  88. package/lib/components/Export/components/ExportForm/common/entities.js +2 -0
  89. package/lib/components/Export/components/ExportForm/components/ExportButton/exportButton.d.ts +7 -0
  90. package/lib/components/Export/components/ExportForm/components/ExportButton/exportButton.js +20 -0
  91. package/lib/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.d.ts +7 -0
  92. package/lib/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.js +20 -0
  93. package/lib/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.d.ts +12 -0
  94. package/lib/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.js +80 -0
  95. package/lib/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.d.ts +7 -0
  96. package/lib/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.js +27 -0
  97. package/lib/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.d.ts +11 -0
  98. package/lib/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.js +29 -0
  99. package/lib/components/Export/components/ExportForm/exportForm.d.ts +17 -0
  100. package/lib/components/Export/components/ExportForm/exportForm.js +106 -0
  101. package/lib/components/Export/components/ExportForm/exportForm.styles.d.ts +45 -0
  102. package/lib/components/Export/components/ExportForm/exportForm.styles.js +101 -0
  103. package/lib/components/Export/components/ExportMethod/exportMethod.d.ts +10 -0
  104. package/lib/components/Export/components/ExportMethod/exportMethod.js +29 -0
  105. package/lib/components/Export/components/ExportMethod/exportMethod.stories.d.ts +3 -0
  106. package/lib/components/Export/components/ExportMethod/exportMethod.stories.js +26 -0
  107. package/lib/components/Export/components/ExportMethod/exportMethod.styles.d.ts +8 -0
  108. package/lib/components/Export/components/ExportMethod/exportMethod.styles.js +17 -0
  109. package/lib/components/Export/components/ExportSummary/common/utils.d.ts +20 -0
  110. package/lib/components/Export/components/ExportSummary/common/utils.js +53 -0
  111. package/lib/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.d.ts +7 -0
  112. package/lib/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.js +42 -0
  113. package/lib/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.d.ts +8 -0
  114. package/lib/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.js +20 -0
  115. package/lib/components/Export/components/ExportSummary/exportSummary.d.ts +5 -0
  116. package/lib/components/Export/components/ExportSummary/exportSummary.js +12 -0
  117. package/lib/components/Export/components/ExportSummary/exportSummary.styles.d.ts +9 -0
  118. package/lib/components/Export/components/ExportSummary/exportSummary.styles.js +26 -0
  119. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.d.ts +11 -0
  120. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.js +35 -0
  121. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.d.ts +14 -0
  122. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.js +21 -0
  123. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.d.ts +6 -0
  124. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.js +23 -0
  125. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.d.ts +7 -0
  126. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.js +34 -0
  127. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.d.ts +7 -0
  128. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.js +17 -0
  129. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.d.ts +7 -0
  130. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.js +22 -0
  131. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.d.ts +10 -0
  132. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.js +22 -0
  133. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.styles.d.ts +7 -0
  134. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.styles.js +15 -0
  135. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.d.ts +2 -0
  136. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.js +49 -0
  137. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.d.ts +2 -0
  138. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.js +51 -0
  139. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.styles.d.ts +17 -0
  140. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.styles.js +62 -0
  141. package/lib/components/Export/components/ExportToTerra/exportToTerra.d.ts +18 -0
  142. package/lib/components/Export/components/ExportToTerra/exportToTerra.js +20 -0
  143. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.d.ts +6 -0
  144. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.js +77 -0
  145. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.d.ts +6 -0
  146. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.js +84 -0
  147. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.d.ts +9 -0
  148. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.js +18 -0
  149. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.styles.d.ts +14 -0
  150. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.styles.js +38 -0
  151. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.d.ts +9 -0
  152. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.js +33 -0
  153. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.d.ts +12 -0
  154. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.js +21 -0
  155. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.d.ts +6 -0
  156. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.js +21 -0
  157. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.styles.d.ts +3 -0
  158. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.styles.js +16 -0
  159. package/lib/components/Export/components/ManifestDownload/manifestDownload.d.ts +16 -0
  160. package/lib/components/Export/components/ManifestDownload/manifestDownload.js +28 -0
  161. package/lib/components/Export/export.styles.d.ts +27 -0
  162. package/lib/components/Export/export.styles.js +37 -0
  163. package/lib/components/Filter/common/constants.d.ts +4 -0
  164. package/lib/components/Filter/common/constants.js +7 -0
  165. package/lib/components/Filter/common/entities.d.ts +36 -0
  166. package/lib/components/Filter/common/entities.js +2 -0
  167. package/lib/components/Filter/common/utils.d.ts +7 -0
  168. package/lib/components/Filter/common/utils.js +75 -0
  169. package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.d.ts +2 -0
  170. package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.js +21 -0
  171. package/lib/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.d.ts +3 -0
  172. package/lib/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.js +43 -0
  173. package/lib/components/Filter/components/Filter/filter.d.ts +14 -0
  174. package/lib/components/Filter/components/Filter/filter.js +84 -0
  175. package/lib/components/Filter/components/Filter/filter.stories.d.ts +3 -0
  176. package/lib/components/Filter/components/Filter/filter.stories.js +47 -0
  177. package/lib/components/Filter/components/Filter/filter.styles.d.ts +3 -0
  178. package/lib/components/Filter/components/Filter/filter.styles.js +24 -0
  179. package/lib/components/Filter/components/FilterLabel/filterLabel.d.ts +8 -0
  180. package/lib/components/Filter/components/FilterLabel/filterLabel.js +14 -0
  181. package/lib/components/Filter/components/FilterLabel/filterLabel.stories.d.ts +3 -0
  182. package/lib/components/Filter/components/FilterLabel/filterLabel.stories.js +28 -0
  183. package/lib/components/Filter/components/FilterLabel/filterLabel.styles.d.ts +36 -0
  184. package/lib/components/Filter/components/FilterLabel/filterLabel.styles.js +40 -0
  185. package/lib/components/Filter/components/FilterList/filterList.styles.d.ts +13 -0
  186. package/lib/components/Filter/components/FilterList/filterList.styles.js +44 -0
  187. package/lib/components/Filter/components/FilterMenu/filterMenu.d.ts +16 -0
  188. package/lib/components/Filter/components/FilterMenu/filterMenu.js +53 -0
  189. package/lib/components/Filter/components/FilterMenu/filterMenu.stories.d.ts +3 -0
  190. package/lib/components/Filter/components/FilterMenu/filterMenu.stories.js +122 -0
  191. package/lib/components/Filter/components/FilterMenu/filterMenu.styles.d.ts +50 -0
  192. package/lib/components/Filter/components/FilterMenu/filterMenu.styles.js +30 -0
  193. package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.d.ts +7 -0
  194. package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.js +13 -0
  195. package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.styles.d.ts +3 -0
  196. package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.styles.js +21 -0
  197. package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.d.ts +7 -0
  198. package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.js +36 -0
  199. package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.styles.d.ts +5 -0
  200. package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.styles.js +12 -0
  201. package/lib/components/Filter/components/FilterTag/filterTag.d.ts +7 -0
  202. package/lib/components/Filter/components/FilterTag/filterTag.js +56 -0
  203. package/lib/components/Filter/components/FilterTag/filterTag.stories.d.ts +3 -0
  204. package/lib/components/Filter/components/FilterTag/filterTag.stories.js +22 -0
  205. package/lib/components/Filter/components/FilterTag/filterTag.styles.d.ts +22 -0
  206. package/lib/components/Filter/components/FilterTag/filterTag.styles.js +11 -0
  207. package/lib/components/Filter/components/FilterTags/filterTags.d.ts +6 -0
  208. package/lib/components/Filter/components/FilterTags/filterTags.js +13 -0
  209. package/lib/components/Filter/components/FilterTags/filterTags.stories.d.ts +3 -0
  210. package/lib/components/Filter/components/FilterTags/filterTags.stories.js +58 -0
  211. package/lib/components/Filter/components/FilterTags/filterTags.styles.d.ts +5 -0
  212. package/lib/components/Filter/components/FilterTags/filterTags.styles.js +23 -0
  213. package/lib/components/Filter/components/Filters/filters.d.ts +16 -0
  214. package/lib/components/Filter/components/Filters/filters.js +85 -0
  215. package/lib/components/Filter/components/Filters/filters.stories.d.ts +6 -0
  216. package/lib/components/Filter/components/Filters/filters.stories.js +98 -0
  217. package/lib/components/Filter/components/Filters/filters.styles.d.ts +10 -0
  218. package/lib/components/Filter/components/Filters/filters.styles.js +33 -0
  219. package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.d.ts +8 -0
  220. package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.js +40 -0
  221. package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.styles.d.ts +10 -0
  222. package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.styles.js +25 -0
  223. package/lib/components/Filter/components/SearchAllFilters/common/constants.d.ts +18 -0
  224. package/lib/components/Filter/components/SearchAllFilters/common/constants.js +55 -0
  225. package/lib/components/Filter/components/SearchAllFilters/common/entites.d.ts +33 -0
  226. package/lib/components/Filter/components/SearchAllFilters/common/entites.js +15 -0
  227. package/lib/components/Filter/components/SearchAllFilters/common/utils.d.ts +6 -0
  228. package/lib/components/Filter/components/SearchAllFilters/common/utils.js +16 -0
  229. package/lib/components/Filter/components/SearchAllFilters/components/AutocompletePopper/autocompletePopper.styles.d.ts +13 -0
  230. package/lib/components/Filter/components/SearchAllFilters/components/AutocompletePopper/autocompletePopper.styles.js +21 -0
  231. package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeList/VariableSizeList.d.ts +17 -0
  232. package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeList/VariableSizeList.js +198 -0
  233. package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.d.ts +12 -0
  234. package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.js +58 -0
  235. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.d.ts +19 -0
  236. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.js +117 -0
  237. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.stories.d.ts +6 -0
  238. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.stories.js +89 -0
  239. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.styles.d.ts +2 -0
  240. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.styles.js +20 -0
  241. package/lib/components/Filter/components/SearchAllFiltersSearch/components/SearchCloseButton/searchCloseButton.d.ts +2 -0
  242. package/lib/components/Filter/components/SearchAllFiltersSearch/components/SearchCloseButton/searchCloseButton.js +44 -0
  243. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.d.ts +3 -0
  244. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.js +48 -0
  245. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.styles.d.ts +5 -0
  246. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.styles.js +41 -0
  247. package/lib/components/Filter/components/VariableSizeList/VariableSizeList.d.ts +18 -0
  248. package/lib/components/Filter/components/VariableSizeList/VariableSizeList.js +107 -0
  249. package/lib/components/Filter/components/VariableSizeListItem/variableSizeListItem.d.ts +14 -0
  250. package/lib/components/Filter/components/VariableSizeListItem/variableSizeListItem.js +48 -0
  251. package/lib/components/Head/head.d.ts +5 -0
  252. package/lib/components/Head/head.js +37 -0
  253. package/lib/components/Index/components/AzulFileDownload/azulFileDownload.d.ts +5 -0
  254. package/lib/components/Index/components/AzulFileDownload/azulFileDownload.js +97 -0
  255. package/lib/components/Index/components/AzulFileDownload/azulFileDownload.stories.d.ts +3 -0
  256. package/lib/components/Index/components/AzulFileDownload/azulFileDownload.stories.js +17 -0
  257. package/lib/components/Index/components/Cell/cell.d.ts +5 -0
  258. package/lib/components/Index/components/Cell/cell.js +14 -0
  259. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.d.ts +2 -0
  260. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.js +19 -0
  261. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.styles.d.ts +4 -0
  262. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.styles.js +19 -0
  263. package/lib/components/Index/components/Hero/components/Summaries/summaries.d.ts +9 -0
  264. package/lib/components/Index/components/Hero/components/Summaries/summaries.js +39 -0
  265. package/lib/components/Index/components/Hero/components/Summaries/summaries.stories.d.ts +3 -0
  266. package/lib/components/Index/components/Hero/components/Summaries/summaries.stories.js +24 -0
  267. package/lib/components/Index/components/Hero/components/Summaries/summaries.styles.d.ts +8 -0
  268. package/lib/components/Index/components/Hero/components/Summaries/summaries.styles.js +32 -0
  269. package/lib/components/Index/components/Hero/hero.d.ts +11 -0
  270. package/lib/components/Index/components/Hero/hero.js +19 -0
  271. package/lib/components/Index/components/Hero/hero.stories.d.ts +3 -0
  272. package/lib/components/Index/components/Hero/hero.stories.js +26 -0
  273. package/lib/components/Index/components/Hero/hero.styles.d.ts +17 -0
  274. package/lib/components/Index/components/Hero/hero.styles.js +50 -0
  275. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.d.ts +6 -0
  276. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.js +93 -0
  277. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.styles.d.ts +5 -0
  278. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.styles.js +16 -0
  279. package/lib/components/Index/components/NTag/nTag.d.ts +7 -0
  280. package/lib/components/Index/components/NTag/nTag.js +24 -0
  281. package/lib/components/Index/components/NTagCell/nTagCell.d.ts +7 -0
  282. package/lib/components/Index/components/NTagCell/nTagCell.js +52 -0
  283. package/lib/components/Index/components/NTagCell/nTagCell.stories.d.ts +3 -0
  284. package/lib/components/Index/components/NTagCell/nTagCell.stories.js +22 -0
  285. package/lib/components/Index/components/TitleCell/titleCell.d.ts +6 -0
  286. package/lib/components/Index/components/TitleCell/titleCell.js +29 -0
  287. package/lib/components/Index/components/TitleCell/titleCell.styles.d.ts +3 -0
  288. package/lib/components/Index/components/TitleCell/titleCell.styles.js +12 -0
  289. package/lib/components/Index/index.d.ts +12 -0
  290. package/lib/components/Index/index.js +21 -0
  291. package/lib/components/Index/index.stories.d.ts +6 -0
  292. package/lib/components/Index/index.stories.js +30 -0
  293. package/lib/components/Index/index.styles.d.ts +9 -0
  294. package/lib/components/Index/index.styles.js +20 -0
  295. package/lib/components/Layout/components/AppLayout/appLayout.styles.d.ts +5 -0
  296. package/lib/components/Layout/components/AppLayout/appLayout.styles.js +13 -0
  297. package/lib/components/Layout/components/BackPage/backPageView.d.ts +9 -0
  298. package/lib/components/Layout/components/BackPage/backPageView.js +48 -0
  299. package/lib/components/Layout/components/BackPage/backPageView.stories.d.ts +3 -0
  300. package/lib/components/Layout/components/BackPage/backPageView.stories.js +48 -0
  301. package/lib/components/Layout/components/BackPage/backPageView.styles.d.ts +47 -0
  302. package/lib/components/Layout/components/BackPage/backPageView.styles.js +143 -0
  303. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.d.ts +14 -0
  304. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.js +43 -0
  305. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.stories.d.ts +6 -0
  306. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.stories.js +13 -0
  307. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.styles.d.ts +20 -0
  308. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.styles.js +38 -0
  309. package/lib/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.d.ts +5 -0
  310. package/lib/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.js +25 -0
  311. package/lib/components/Layout/components/ContentLayout/common/constants.d.ts +5 -0
  312. package/lib/components/Layout/components/ContentLayout/common/constants.js +24 -0
  313. package/lib/components/Layout/components/ContentLayout/common/entities.d.ts +11 -0
  314. package/lib/components/Layout/components/ContentLayout/common/entities.js +9 -0
  315. package/lib/components/Layout/components/ContentLayout/components/Main/main.d.ts +6 -0
  316. package/lib/components/Layout/components/ContentLayout/components/Main/main.js +12 -0
  317. package/lib/components/Layout/components/ContentLayout/contentLayout.d.ts +10 -0
  318. package/lib/components/Layout/components/ContentLayout/contentLayout.js +31 -0
  319. package/lib/components/Layout/components/ContentLayout/contentLayout.styles.d.ts +38 -0
  320. package/lib/components/Layout/components/ContentLayout/contentLayout.styles.js +111 -0
  321. package/lib/components/Layout/components/Floating/floating.d.ts +6 -0
  322. package/lib/components/Layout/components/Floating/floating.js +32 -0
  323. package/lib/components/Layout/components/Footer/footer.d.ts +10 -0
  324. package/lib/components/Layout/components/Footer/footer.js +21 -0
  325. package/lib/components/Layout/components/Footer/footer.stories.d.ts +6 -0
  326. package/lib/components/Layout/components/Footer/footer.stories.js +69 -0
  327. package/lib/components/Layout/components/Footer/footer.styles.d.ts +12 -0
  328. package/lib/components/Layout/components/Footer/footer.styles.js +55 -0
  329. package/lib/components/Layout/components/Header/common/constants.d.ts +14 -0
  330. package/lib/components/Layout/components/Header/common/constants.js +17 -0
  331. package/lib/components/Layout/components/Header/common/entities.d.ts +6 -0
  332. package/lib/components/Layout/components/Header/common/entities.js +2 -0
  333. package/lib/components/Layout/components/Header/common/utils.d.ts +22 -0
  334. package/lib/components/Layout/components/Header/common/utils.js +75 -0
  335. package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.d.ts +6 -0
  336. package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.js +12 -0
  337. package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.styles.d.ts +5 -0
  338. package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.styles.js +19 -0
  339. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.d.ts +6 -0
  340. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.js +41 -0
  341. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.d.ts +7 -0
  342. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.js +57 -0
  343. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.stories.d.ts +3 -0
  344. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.stories.js +35 -0
  345. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.styles.d.ts +86 -0
  346. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.styles.js +34 -0
  347. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.d.ts +6 -0
  348. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.js +27 -0
  349. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.styles.d.ts +36 -0
  350. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.styles.js +15 -0
  351. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Content/components/Navigation/navigation.styles.d.ts +7 -0
  352. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Content/components/Navigation/navigation.styles.js +35 -0
  353. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Content/components/Socials/socials.styles.d.ts +4 -0
  354. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Content/components/Socials/socials.styles.js +12 -0
  355. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.d.ts +11 -0
  356. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.js +48 -0
  357. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.d.ts +10 -0
  358. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.js +64 -0
  359. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.d.ts +9 -0
  360. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.js +83 -0
  361. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.styles.d.ts +12 -0
  362. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.styles.js +39 -0
  363. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.d.ts +5 -0
  364. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.js +24 -0
  365. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.styles.d.ts +36 -0
  366. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.styles.js +15 -0
  367. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.d.ts +7 -0
  368. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.js +39 -0
  369. package/lib/components/Layout/components/Header/components/Content/components/Logo/logo.d.ts +13 -0
  370. package/lib/components/Layout/components/Header/components/Content/components/Logo/logo.js +17 -0
  371. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.d.ts +3 -0
  372. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.js +43 -0
  373. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.d.ts +10 -0
  374. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.js +61 -0
  375. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.styles.d.ts +8 -0
  376. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.styles.js +20 -0
  377. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.d.ts +10 -0
  378. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.js +55 -0
  379. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.styles.d.ts +11 -0
  380. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.styles.js +70 -0
  381. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.d.ts +11 -0
  382. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.js +51 -0
  383. package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.d.ts +22 -0
  384. package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.js +51 -0
  385. package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.styles.d.ts +10 -0
  386. package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.styles.js +54 -0
  387. package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.d.ts +7 -0
  388. package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.js +33 -0
  389. package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.styles.d.ts +20 -0
  390. package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.styles.js +30 -0
  391. package/lib/components/Layout/components/Header/components/Content/components/Socials/socials.styles.d.ts +4 -0
  392. package/lib/components/Layout/components/Header/components/Content/components/Socials/socials.styles.js +13 -0
  393. package/lib/components/Layout/components/Header/components/Content/content.styles.d.ts +5 -0
  394. package/lib/components/Layout/components/Header/components/Content/content.styles.js +14 -0
  395. package/lib/components/Layout/components/Header/header.d.ts +18 -0
  396. package/lib/components/Layout/components/Header/header.js +108 -0
  397. package/lib/components/Layout/components/Header/header.stories.d.ts +6 -0
  398. package/lib/components/Layout/components/Header/header.stories.js +102 -0
  399. package/lib/components/Layout/components/Header/header.styles.d.ts +2 -0
  400. package/lib/components/Layout/components/Header/header.styles.js +27 -0
  401. package/lib/components/Layout/components/Main/main.d.ts +6 -0
  402. package/lib/components/Layout/components/Main/main.js +15 -0
  403. package/lib/components/Layout/components/Main/main.styles.d.ts +15 -0
  404. package/lib/components/Layout/components/Main/main.styles.js +19 -0
  405. package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.d.ts +8 -0
  406. package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.js +21 -0
  407. package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.styles.d.ts +13 -0
  408. package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.styles.js +28 -0
  409. package/lib/components/Layout/components/Nav/nav.d.ts +11 -0
  410. package/lib/components/Layout/components/Nav/nav.js +21 -0
  411. package/lib/components/Layout/components/Nav/nav.stories.d.ts +6 -0
  412. package/lib/components/Layout/components/Nav/nav.stories.js +34 -0
  413. package/lib/components/Layout/components/Nav/nav.styles.d.ts +17 -0
  414. package/lib/components/Layout/components/Nav/nav.styles.js +55 -0
  415. package/lib/components/Layout/components/Outline/common/constants.d.ts +2 -0
  416. package/lib/components/Layout/components/Outline/common/constants.js +4 -0
  417. package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.d.ts +7 -0
  418. package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.js +25 -0
  419. package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.styles.d.ts +33 -0
  420. package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.styles.js +22 -0
  421. package/lib/components/Layout/components/Outline/outline.d.ts +13 -0
  422. package/lib/components/Layout/components/Outline/outline.js +73 -0
  423. package/lib/components/Layout/components/Outline/outline.styles.d.ts +111 -0
  424. package/lib/components/Layout/components/Outline/outline.styles.js +62 -0
  425. package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.d.ts +8 -0
  426. package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.js +28 -0
  427. package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.styles.d.ts +8 -0
  428. package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.styles.js +38 -0
  429. package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.d.ts +7 -0
  430. package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.js +22 -0
  431. package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.styles.d.ts +3 -0
  432. package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.styles.js +24 -0
  433. package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.d.ts +5 -0
  434. package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.js +13 -0
  435. package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.stories.d.ts +3 -0
  436. package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.stories.js +20 -0
  437. package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.d.ts +5 -0
  438. package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.js +15 -0
  439. package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.styles.d.ts +9 -0
  440. package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.styles.js +21 -0
  441. package/lib/components/Layout/components/Sidebar/components/SidebarTools/sidebarTools.styles.d.ts +5 -0
  442. package/lib/components/Layout/components/Sidebar/components/SidebarTools/sidebarTools.styles.js +23 -0
  443. package/lib/components/Layout/components/Sidebar/sidebar.d.ts +7 -0
  444. package/lib/components/Layout/components/Sidebar/sidebar.js +48 -0
  445. package/lib/components/Layout/components/Sidebar/sidebar.stories.d.ts +8 -0
  446. package/lib/components/Layout/components/Sidebar/sidebar.stories.js +44 -0
  447. package/lib/components/Layout/components/Sidebar/sidebar.styles.d.ts +5 -0
  448. package/lib/components/Layout/components/Sidebar/sidebar.styles.js +13 -0
  449. package/lib/components/Links/common/entities.d.ts +4 -0
  450. package/lib/components/Links/common/entities.js +8 -0
  451. package/lib/components/Links/common/utils.d.ts +6 -0
  452. package/lib/components/Links/common/utils.js +12 -0
  453. package/lib/components/Links/components/Link/link.d.ts +13 -0
  454. package/lib/components/Links/components/Link/link.js +22 -0
  455. package/lib/components/Links/links.d.ts +7 -0
  456. package/lib/components/Links/links.js +18 -0
  457. package/lib/components/Links/links.stories.d.ts +3 -0
  458. package/lib/components/Links/links.stories.js +27 -0
  459. package/lib/components/Loading/loading.d.ts +21 -0
  460. package/lib/components/Loading/loading.js +46 -0
  461. package/lib/components/Loading/loading.stories.d.ts +3 -0
  462. package/lib/components/Loading/loading.stories.js +36 -0
  463. package/lib/components/Loading/loading.styles.d.ts +13 -0
  464. package/lib/components/Loading/loading.styles.js +77 -0
  465. package/lib/components/Login/login.d.ts +9 -0
  466. package/lib/components/Login/login.js +70 -0
  467. package/lib/components/Login/login.stories.d.ts +6 -0
  468. package/lib/components/Login/login.stories.js +37 -0
  469. package/lib/components/Login/login.styles.d.ts +33 -0
  470. package/lib/components/Login/login.styles.js +52 -0
  471. package/lib/components/NoResults/noResults.d.ts +9 -0
  472. package/lib/components/NoResults/noResults.js +24 -0
  473. package/lib/components/NoResults/noResults.styles.d.ts +13 -0
  474. package/lib/components/NoResults/noResults.styles.js +16 -0
  475. package/lib/components/Project/common/entities.d.ts +44 -0
  476. package/lib/components/Project/common/entities.js +2 -0
  477. package/lib/components/Project/components/Citation/citation.d.ts +6 -0
  478. package/lib/components/Project/components/Citation/citation.js +20 -0
  479. package/lib/components/Project/components/Citation/citation.stories.d.ts +6 -0
  480. package/lib/components/Project/components/Citation/citation.stories.js +19 -0
  481. package/lib/components/Project/components/Citation/citation.styles.d.ts +9 -0
  482. package/lib/components/Project/components/Citation/citation.styles.js +26 -0
  483. package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.d.ts +6 -0
  484. package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.js +16 -0
  485. package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.stories.d.ts +3 -0
  486. package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.stories.js +33 -0
  487. package/lib/components/Project/components/Contacts/contacts.d.ts +6 -0
  488. package/lib/components/Project/components/Contacts/contacts.js +20 -0
  489. package/lib/components/Project/components/Contacts/contacts.stories.d.ts +3 -0
  490. package/lib/components/Project/components/Contacts/contacts.stories.js +31 -0
  491. package/lib/components/Project/components/Contributors/contributors.d.ts +6 -0
  492. package/lib/components/Project/components/Contributors/contributors.js +20 -0
  493. package/lib/components/Project/components/Contributors/contributors.stories.d.ts +3 -0
  494. package/lib/components/Project/components/Contributors/contributors.stories.js +38 -0
  495. package/lib/components/Project/components/DataCurators/dataCurators.d.ts +6 -0
  496. package/lib/components/Project/components/DataCurators/dataCurators.js +13 -0
  497. package/lib/components/Project/components/DataCurators/dataCurators.stories.d.ts +3 -0
  498. package/lib/components/Project/components/DataCurators/dataCurators.stories.js +20 -0
  499. package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.d.ts +2 -0
  500. package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.js +20 -0
  501. package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.stories.d.ts +3 -0
  502. package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.stories.js +14 -0
  503. package/lib/components/Project/components/Description/description.d.ts +6 -0
  504. package/lib/components/Project/components/Description/description.js +14 -0
  505. package/lib/components/Project/components/Description/description.stories.d.ts +3 -0
  506. package/lib/components/Project/components/Description/description.stories.js +17 -0
  507. package/lib/components/Project/components/Details/details.d.ts +7 -0
  508. package/lib/components/Project/components/Details/details.js +45 -0
  509. package/lib/components/Project/components/Details/details.stories.d.ts +3 -0
  510. package/lib/components/Project/components/Details/details.stories.js +29 -0
  511. package/lib/components/Project/components/Publications/publications.d.ts +6 -0
  512. package/lib/components/Project/components/Publications/publications.js +18 -0
  513. package/lib/components/Project/components/Publications/publications.stories.d.ts +3 -0
  514. package/lib/components/Project/components/Publications/publications.stories.js +28 -0
  515. package/lib/components/Project/components/Sup/sup.styles.d.ts +5 -0
  516. package/lib/components/Project/components/Sup/sup.styles.js +10 -0
  517. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.d.ts +6 -0
  518. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.js +45 -0
  519. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.stories.d.ts +3 -0
  520. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.stories.js +29 -0
  521. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.styles.d.ts +13 -0
  522. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.styles.js +22 -0
  523. package/lib/components/Redirect/redirect.d.ts +6 -0
  524. package/lib/components/Redirect/redirect.js +36 -0
  525. package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.d.ts +6 -0
  526. package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.js +53 -0
  527. package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.styles.d.ts +40 -0
  528. package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.styles.js +34 -0
  529. package/lib/components/Support/components/SupportRequest/components/Dropzone/dropzone.d.ts +7 -0
  530. package/lib/components/Support/components/SupportRequest/components/Dropzone/dropzone.js +34 -0
  531. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/common/constants.d.ts +40 -0
  532. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/common/constants.js +42 -0
  533. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/common/entities.d.ts +54 -0
  534. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/common/entities.js +29 -0
  535. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/common/utils.d.ts +23 -0
  536. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/common/utils.js +95 -0
  537. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.d.ts +7 -0
  538. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.js +166 -0
  539. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.styles.d.ts +11 -0
  540. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.styles.js +16 -0
  541. package/lib/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.d.ts +6 -0
  542. package/lib/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.js +20 -0
  543. package/lib/components/Support/components/SupportRequest/supportRequest.d.ts +11 -0
  544. package/lib/components/Support/components/SupportRequest/supportRequest.js +35 -0
  545. package/lib/components/Support/components/ViewSupport/viewSupport.d.ts +13 -0
  546. package/lib/components/Support/components/ViewSupport/viewSupport.js +15 -0
  547. package/lib/components/Support/components/ViewSupport/viewSupport.styles.d.ts +5 -0
  548. package/lib/components/Support/components/ViewSupport/viewSupport.styles.js +31 -0
  549. package/lib/components/Table/common/entities.d.ts +4 -0
  550. package/lib/components/Table/common/entities.js +8 -0
  551. package/lib/components/Table/common/gridTable.styles.d.ts +16 -0
  552. package/lib/components/Table/common/gridTable.styles.js +39 -0
  553. package/lib/components/Table/common/utils.d.ts +123 -0
  554. package/lib/components/Table/common/utils.js +399 -0
  555. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.d.ts +17 -0
  556. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.js +55 -0
  557. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.stories.d.ts +3 -0
  558. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.stories.js +52 -0
  559. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.styles.d.ts +3 -0
  560. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.styles.js +27 -0
  561. package/lib/components/Table/components/DownloadEntityResults/downloadEntityResults.d.ts +7 -0
  562. package/lib/components/Table/components/DownloadEntityResults/downloadEntityResults.js +24 -0
  563. package/lib/components/Table/components/EntityViewToggle/entityViewToggle.d.ts +2 -0
  564. package/lib/components/Table/components/EntityViewToggle/entityViewToggle.js +37 -0
  565. package/lib/components/Table/components/Pagination/pagination.d.ts +10 -0
  566. package/lib/components/Table/components/Pagination/pagination.js +26 -0
  567. package/lib/components/Table/components/Pagination/pagination.stories.d.ts +3 -0
  568. package/lib/components/Table/components/Pagination/pagination.stories.js +26 -0
  569. package/lib/components/Table/components/Pagination/pagination.styles.d.ts +5 -0
  570. package/lib/components/Table/components/Pagination/pagination.styles.js +21 -0
  571. package/lib/components/Table/components/PaginationSummary/paginationSummary.d.ts +7 -0
  572. package/lib/components/Table/components/PaginationSummary/paginationSummary.js +19 -0
  573. package/lib/components/Table/components/TableBody/tableBody.d.ts +8 -0
  574. package/lib/components/Table/components/TableBody/tableBody.js +64 -0
  575. package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.d.ts +6 -0
  576. package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.js +55 -0
  577. package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.styles.d.ts +20 -0
  578. package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.styles.js +63 -0
  579. package/lib/components/Table/components/TableHead/tableHead.d.ts +8 -0
  580. package/lib/components/Table/components/TableHead/tableHead.js +38 -0
  581. package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.d.ts +8 -0
  582. package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.js +40 -0
  583. package/lib/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.d.ts +7 -0
  584. package/lib/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.js +61 -0
  585. package/lib/components/Table/components/TableRows/tableRows.d.ts +8 -0
  586. package/lib/components/Table/components/TableRows/tableRows.js +41 -0
  587. package/lib/components/Table/components/TableToolbar/tableToolbar.d.ts +10 -0
  588. package/lib/components/Table/components/TableToolbar/tableToolbar.js +58 -0
  589. package/lib/components/Table/components/TableToolbar/tableToolbar.styles.d.ts +8 -0
  590. package/lib/components/Table/components/TableToolbar/tableToolbar.styles.js +20 -0
  591. package/lib/components/Table/table.d.ts +30 -0
  592. package/lib/components/Table/table.js +236 -0
  593. package/lib/components/Table/table.styles.d.ts +17 -0
  594. package/lib/components/Table/table.styles.js +21 -0
  595. package/lib/components/TableCreator/tableCreator.d.ts +17 -0
  596. package/lib/components/TableCreator/tableCreator.js +73 -0
  597. package/lib/components/TempError/components/errorBox.d.ts +7 -0
  598. package/lib/components/TempError/components/errorBox.js +13 -0
  599. package/lib/components/TempError/index.d.ts +1 -0
  600. package/lib/components/TempError/index.js +5 -0
  601. package/lib/components/TempError/tempError.d.ts +7 -0
  602. package/lib/components/TempError/tempError.js +19 -0
  603. package/lib/components/common/Accordion/accordion.d.ts +8 -0
  604. package/lib/components/common/Accordion/accordion.js +54 -0
  605. package/lib/components/common/Accordion/accordion.stories.d.ts +7 -0
  606. package/lib/components/common/Accordion/accordion.stories.js +28 -0
  607. package/lib/components/common/Alert/alert.d.ts +12 -0
  608. package/lib/components/common/Alert/alert.js +14 -0
  609. package/lib/components/common/Alert/alert.stories.d.ts +6 -0
  610. package/lib/components/common/Alert/alert.stories.js +39 -0
  611. package/lib/components/common/Alert/alert.styles.d.ts +13 -0
  612. package/lib/components/common/Alert/alert.styles.js +32 -0
  613. package/lib/components/common/AnchorLink/anchorLink.d.ts +7 -0
  614. package/lib/components/common/AnchorLink/anchorLink.js +14 -0
  615. package/lib/components/common/AnchorLink/anchorLink.styles.d.ts +33 -0
  616. package/lib/components/common/AnchorLink/anchorLink.styles.js +19 -0
  617. package/lib/components/common/Banner/banner.d.ts +7 -0
  618. package/lib/components/common/Banner/banner.js +43 -0
  619. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.d.ts +7 -0
  620. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.js +24 -0
  621. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.styles.d.ts +3 -0
  622. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.styles.js +25 -0
  623. package/lib/components/common/Banner/components/CookieBanner/cookieBanner.d.ts +9 -0
  624. package/lib/components/common/Banner/components/CookieBanner/cookieBanner.js +76 -0
  625. package/lib/components/common/Banner/components/CookieBanner/cookieBanner.styles.d.ts +4 -0
  626. package/lib/components/common/Banner/components/CookieBanner/cookieBanner.styles.js +53 -0
  627. package/lib/components/common/Banner/components/DismissibleBanner/dismissibleBanner.d.ts +10 -0
  628. package/lib/components/common/Banner/components/DismissibleBanner/dismissibleBanner.js +55 -0
  629. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.d.ts +7 -0
  630. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.js +46 -0
  631. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.styles.d.ts +3 -0
  632. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.styles.js +27 -0
  633. package/lib/components/common/Banner/components/SystemIndexing/systemIndexing.d.ts +8 -0
  634. package/lib/components/common/Banner/components/SystemIndexing/systemIndexing.js +51 -0
  635. package/lib/components/common/Banner/components/SystemStatus/systemStatus.d.ts +8 -0
  636. package/lib/components/common/Banner/components/SystemStatus/systemStatus.js +51 -0
  637. package/lib/components/common/Breadcrumbs/breadcrumbs.d.ts +11 -0
  638. package/lib/components/common/Breadcrumbs/breadcrumbs.js +15 -0
  639. package/lib/components/common/Breadcrumbs/breadcrumbs.stories.d.ts +5 -0
  640. package/lib/components/common/Breadcrumbs/breadcrumbs.stories.js +56 -0
  641. package/lib/components/common/Button/button.d.ts +10 -0
  642. package/lib/components/common/Button/button.js +43 -0
  643. package/lib/components/common/Button/components/ButtonOutline/buttonOutline.d.ts +3 -0
  644. package/lib/components/common/Button/components/ButtonOutline/buttonOutline.js +43 -0
  645. package/lib/components/common/Button/components/ButtonOutline/buttonOutline.styles.d.ts +4 -0
  646. package/lib/components/common/Button/components/ButtonOutline/buttonOutline.styles.js +23 -0
  647. package/lib/components/common/Button/components/ButtonPrimary/buttonPrimary.d.ts +3 -0
  648. package/lib/components/common/Button/components/ButtonPrimary/buttonPrimary.js +43 -0
  649. package/lib/components/common/Button/components/ButtonSecondary/buttonSecondary.d.ts +3 -0
  650. package/lib/components/common/Button/components/ButtonSecondary/buttonSecondary.js +43 -0
  651. package/lib/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.d.ts +3 -0
  652. package/lib/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.js +43 -0
  653. package/lib/components/common/Button/components/ButtonText/buttonText.d.ts +4 -0
  654. package/lib/components/common/Button/components/ButtonText/buttonText.js +24 -0
  655. package/lib/components/common/Button/components/ButtonText/buttonText.styles.d.ts +4 -0
  656. package/lib/components/common/Button/components/ButtonText/buttonText.styles.js +18 -0
  657. package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.d.ts +4 -0
  658. package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.js +24 -0
  659. package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.styles.d.ts +4 -0
  660. package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.styles.js +14 -0
  661. package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.d.ts +4 -0
  662. package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.js +24 -0
  663. package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.styles.d.ts +4 -0
  664. package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.styles.js +19 -0
  665. package/lib/components/common/Button/components/CallToActionButton/callToActionButton.d.ts +14 -0
  666. package/lib/components/common/Button/components/CallToActionButton/callToActionButton.js +18 -0
  667. package/lib/components/common/Button/components/CallToActionButton/callToActionButton.stories.d.ts +4 -0
  668. package/lib/components/common/Button/components/CallToActionButton/callToActionButton.stories.js +33 -0
  669. package/lib/components/common/Button/components/DropdownButton/dropdownButton.d.ts +4 -0
  670. package/lib/components/common/Button/components/DropdownButton/dropdownButton.js +25 -0
  671. package/lib/components/common/Button/components/DropdownButton/dropdownButton.styles.d.ts +4 -0
  672. package/lib/components/common/Button/components/DropdownButton/dropdownButton.styles.js +16 -0
  673. package/lib/components/common/Button/components/FileDownloadButton/fileDownloadButton.d.ts +6 -0
  674. package/lib/components/common/Button/components/FileDownloadButton/fileDownloadButton.js +41 -0
  675. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.d.ts +9 -0
  676. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.js +20 -0
  677. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.stories.d.ts +6 -0
  678. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.stories.js +22 -0
  679. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.styles.d.ts +1 -0
  680. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.styles.js +13 -0
  681. package/lib/components/common/Button/components/LoginButton/loginButton.d.ts +4 -0
  682. package/lib/components/common/Button/components/LoginButton/loginButton.js +25 -0
  683. package/lib/components/common/Button/components/LoginButton/loginButton.styles.d.ts +8 -0
  684. package/lib/components/common/Button/components/LoginButton/loginButton.styles.js +17 -0
  685. package/lib/components/common/Button/components/NavigationButton/navigationButton.d.ts +6 -0
  686. package/lib/components/common/Button/components/NavigationButton/navigationButton.js +25 -0
  687. package/lib/components/common/Button/components/NavigationButton/navigationButton.styles.d.ts +8 -0
  688. package/lib/components/common/Button/components/NavigationButton/navigationButton.styles.js +31 -0
  689. package/lib/components/common/ButtonGroup/buttonGroup.d.ts +17 -0
  690. package/lib/components/common/ButtonGroup/buttonGroup.js +44 -0
  691. package/lib/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.d.ts +11 -0
  692. package/lib/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.js +13 -0
  693. package/lib/components/common/Card/card.d.ts +15 -0
  694. package/lib/components/common/Card/card.js +53 -0
  695. package/lib/components/common/Card/card.stories.d.ts +8 -0
  696. package/lib/components/common/Card/card.stories.js +40 -0
  697. package/lib/components/common/Card/card.styles.d.ts +11 -0
  698. package/lib/components/common/Card/card.styles.js +19 -0
  699. package/lib/components/common/Card/components/CardAction/cardAction.d.ts +8 -0
  700. package/lib/components/common/Card/components/CardAction/cardAction.js +12 -0
  701. package/lib/components/common/Card/components/CardActionArea/cardActionArea.d.ts +6 -0
  702. package/lib/components/common/Card/components/CardActionArea/cardActionArea.js +28 -0
  703. package/lib/components/common/Card/components/CardActions/cardActions.d.ts +5 -0
  704. package/lib/components/common/Card/components/CardActions/cardActions.js +15 -0
  705. package/lib/components/common/Card/components/CardActions/cardActions.styles.d.ts +5 -0
  706. package/lib/components/common/Card/components/CardActions/cardActions.styles.js +14 -0
  707. package/lib/components/common/Card/components/CardMedia/cardMedia.d.ts +6 -0
  708. package/lib/components/common/Card/components/CardMedia/cardMedia.js +14 -0
  709. package/lib/components/common/Card/components/CardMedia/cardMedia.styles.d.ts +5 -0
  710. package/lib/components/common/Card/components/CardMedia/cardMedia.styles.js +16 -0
  711. package/lib/components/common/Card/components/CardSecondaryText/cardSecondaryText.d.ts +5 -0
  712. package/lib/components/common/Card/components/CardSecondaryText/cardSecondaryText.js +25 -0
  713. package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.d.ts +5 -0
  714. package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.js +25 -0
  715. package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.styles.d.ts +6 -0
  716. package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.styles.js +11 -0
  717. package/lib/components/common/Card/components/CardText/cardText.d.ts +5 -0
  718. package/lib/components/common/Card/components/CardText/cardText.js +25 -0
  719. package/lib/components/common/Card/components/CardTitle/cardTitle.d.ts +5 -0
  720. package/lib/components/common/Card/components/CardTitle/cardTitle.js +25 -0
  721. package/lib/components/common/Card/components/RoundedCard/roundedCard.d.ts +5 -0
  722. package/lib/components/common/Card/components/RoundedCard/roundedCard.js +13 -0
  723. package/lib/components/common/Code/code.d.ts +6 -0
  724. package/lib/components/common/Code/code.js +52 -0
  725. package/lib/components/common/Code/code.stories.d.ts +5 -0
  726. package/lib/components/common/Code/code.stories.js +14 -0
  727. package/lib/components/common/Code/code.styles.d.ts +9 -0
  728. package/lib/components/common/Code/code.styles.js +58 -0
  729. package/lib/components/common/CopyToClipboard/copyToClipboard.d.ts +5 -0
  730. package/lib/components/common/CopyToClipboard/copyToClipboard.js +57 -0
  731. package/lib/components/common/CopyToClipboard/copyToClipboard.stories.d.ts +6 -0
  732. package/lib/components/common/CopyToClipboard/copyToClipboard.stories.js +18 -0
  733. package/lib/components/common/CustomIcon/common/constants.d.ts +5 -0
  734. package/lib/components/common/CustomIcon/common/constants.js +12 -0
  735. package/lib/components/common/CustomIcon/common/entities.d.ts +5 -0
  736. package/lib/components/common/CustomIcon/common/entities.js +2 -0
  737. package/lib/components/common/CustomIcon/components/AddIcon/addIcon.d.ts +6 -0
  738. package/lib/components/common/CustomIcon/components/AddIcon/addIcon.js +28 -0
  739. package/lib/components/common/CustomIcon/components/AlertIcon/alertIcon.d.ts +6 -0
  740. package/lib/components/common/CustomIcon/components/AlertIcon/alertIcon.js +28 -0
  741. package/lib/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.d.ts +6 -0
  742. package/lib/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.js +28 -0
  743. package/lib/components/common/CustomIcon/components/CheckedIcon/checkedIcon.d.ts +6 -0
  744. package/lib/components/common/CustomIcon/components/CheckedIcon/checkedIcon.js +29 -0
  745. package/lib/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.d.ts +6 -0
  746. package/lib/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.js +28 -0
  747. package/lib/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.d.ts +6 -0
  748. package/lib/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.js +28 -0
  749. package/lib/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.d.ts +6 -0
  750. package/lib/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.js +28 -0
  751. package/lib/components/common/CustomIcon/components/DownloadIcon/downloadIcon.d.ts +6 -0
  752. package/lib/components/common/CustomIcon/components/DownloadIcon/downloadIcon.js +28 -0
  753. package/lib/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.d.ts +6 -0
  754. package/lib/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.js +28 -0
  755. package/lib/components/common/CustomIcon/components/ErrorIcon/errorIcon.d.ts +6 -0
  756. package/lib/components/common/CustomIcon/components/ErrorIcon/errorIcon.js +28 -0
  757. package/lib/components/common/CustomIcon/components/FacebookIcon/facebookIcon.d.ts +6 -0
  758. package/lib/components/common/CustomIcon/components/FacebookIcon/facebookIcon.js +28 -0
  759. package/lib/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.d.ts +6 -0
  760. package/lib/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.js +28 -0
  761. package/lib/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.d.ts +6 -0
  762. package/lib/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.js +29 -0
  763. package/lib/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.d.ts +6 -0
  764. package/lib/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.js +28 -0
  765. package/lib/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.d.ts +3 -0
  766. package/lib/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.js +25 -0
  767. package/lib/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.d.ts +6 -0
  768. package/lib/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.js +28 -0
  769. package/lib/components/common/CustomIcon/components/GoogleIcon/googleIcon.d.ts +6 -0
  770. package/lib/components/common/CustomIcon/components/GoogleIcon/googleIcon.js +31 -0
  771. package/lib/components/common/CustomIcon/components/HelpIcon/helpIcon.d.ts +6 -0
  772. package/lib/components/common/CustomIcon/components/HelpIcon/helpIcon.js +28 -0
  773. package/lib/components/common/CustomIcon/components/InfoIcon/infoIcon.d.ts +6 -0
  774. package/lib/components/common/CustomIcon/components/InfoIcon/infoIcon.js +28 -0
  775. package/lib/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.d.ts +6 -0
  776. package/lib/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.js +28 -0
  777. package/lib/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.d.ts +6 -0
  778. package/lib/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.js +28 -0
  779. package/lib/components/common/CustomIcon/components/LoadingIcon/loadingIcon.d.ts +6 -0
  780. package/lib/components/common/CustomIcon/components/LoadingIcon/loadingIcon.js +45 -0
  781. package/lib/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.d.ts +6 -0
  782. package/lib/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.js +28 -0
  783. package/lib/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.d.ts +6 -0
  784. package/lib/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.js +28 -0
  785. package/lib/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.d.ts +6 -0
  786. package/lib/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.js +28 -0
  787. package/lib/components/common/CustomIcon/components/RemoveIcon/removeIcon.d.ts +6 -0
  788. package/lib/components/common/CustomIcon/components/RemoveIcon/removeIcon.js +28 -0
  789. package/lib/components/common/CustomIcon/components/SearchIcon/searchIcon.d.ts +6 -0
  790. package/lib/components/common/CustomIcon/components/SearchIcon/searchIcon.js +28 -0
  791. package/lib/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.d.ts +6 -0
  792. package/lib/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.js +28 -0
  793. package/lib/components/common/CustomIcon/components/Segment/segment.d.ts +3 -0
  794. package/lib/components/common/CustomIcon/components/Segment/segment.js +25 -0
  795. package/lib/components/common/CustomIcon/components/SlackIcon/slackIcon.d.ts +6 -0
  796. package/lib/components/common/CustomIcon/components/SlackIcon/slackIcon.js +28 -0
  797. package/lib/components/common/CustomIcon/components/SouthIcon/southIcon.d.ts +6 -0
  798. package/lib/components/common/CustomIcon/components/SouthIcon/southIcon.js +28 -0
  799. package/lib/components/common/CustomIcon/components/SuccessIcon/successIcon.d.ts +6 -0
  800. package/lib/components/common/CustomIcon/components/SuccessIcon/successIcon.js +28 -0
  801. package/lib/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.d.ts +6 -0
  802. package/lib/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.js +28 -0
  803. package/lib/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.d.ts +6 -0
  804. package/lib/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.js +28 -0
  805. package/lib/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.d.ts +6 -0
  806. package/lib/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.js +28 -0
  807. package/lib/components/common/CustomIcon/components/WarningIcon/warningIcon.d.ts +6 -0
  808. package/lib/components/common/CustomIcon/components/WarningIcon/warningIcon.js +28 -0
  809. package/lib/components/common/CustomIcon/components/XIcon/xIcon.d.ts +6 -0
  810. package/lib/components/common/CustomIcon/components/XIcon/xIcon.js +28 -0
  811. package/lib/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.d.ts +6 -0
  812. package/lib/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.js +28 -0
  813. package/lib/components/common/Dialog/components/DialogTitle/dialogTitle.d.ts +7 -0
  814. package/lib/components/common/Dialog/components/DialogTitle/dialogTitle.js +16 -0
  815. package/lib/components/common/Dot/dot.d.ts +5 -0
  816. package/lib/components/common/Dot/dot.js +12 -0
  817. package/lib/components/common/Dot/dot.styles.d.ts +5 -0
  818. package/lib/components/common/Dot/dot.styles.js +16 -0
  819. package/lib/components/common/EllipsisContent/ellipsisContent.d.ts +6 -0
  820. package/lib/components/common/EllipsisContent/ellipsisContent.js +189 -0
  821. package/lib/components/common/EllipsisContent/ellipsisContent.styles.d.ts +15 -0
  822. package/lib/components/common/EllipsisContent/ellipsisContent.styles.js +22 -0
  823. package/lib/components/common/Form/components/Input/input.d.ts +11 -0
  824. package/lib/components/common/Form/components/Input/input.js +28 -0
  825. package/lib/components/common/Form/components/Input/input.styles.d.ts +24 -0
  826. package/lib/components/common/Form/components/Input/input.styles.js +69 -0
  827. package/lib/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.d.ts +4 -0
  828. package/lib/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.js +24 -0
  829. package/lib/components/common/Form/components/Select/select.d.ts +12 -0
  830. package/lib/components/common/Form/components/Select/select.js +28 -0
  831. package/lib/components/common/Form/components/Select/select.styles.d.ts +24 -0
  832. package/lib/components/common/Form/components/Select/select.styles.js +40 -0
  833. package/lib/components/common/Form/components/UploadFile/uploadFile.d.ts +16 -0
  834. package/lib/components/common/Form/components/UploadFile/uploadFile.js +42 -0
  835. package/lib/components/common/Form/components/UploadFile/uploadFile.styles.d.ts +48 -0
  836. package/lib/components/common/Form/components/UploadFile/uploadFile.styles.js +49 -0
  837. package/lib/components/common/Grid/components/GridItem/gridItem.d.ts +10 -0
  838. package/lib/components/common/Grid/components/GridItem/gridItem.js +27 -0
  839. package/lib/components/common/Grid/grid.d.ts +10 -0
  840. package/lib/components/common/Grid/grid.js +27 -0
  841. package/lib/components/common/IconBadge/iconBadge.d.ts +17 -0
  842. package/lib/components/common/IconBadge/iconBadge.js +20 -0
  843. package/lib/components/common/IconBadge/iconBadge.styles.d.ts +10 -0
  844. package/lib/components/common/IconBadge/iconBadge.styles.js +69 -0
  845. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.d.ts +5 -0
  846. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.js +17 -0
  847. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.stories.d.ts +3 -0
  848. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.stories.js +15 -0
  849. package/lib/components/common/IconButton/iconButton.d.ts +12 -0
  850. package/lib/components/common/IconButton/iconButton.js +25 -0
  851. package/lib/components/common/IconButton/iconButton.styles.d.ts +16 -0
  852. package/lib/components/common/IconButton/iconButton.styles.js +90 -0
  853. package/lib/components/common/Input/input.d.ts +14 -0
  854. package/lib/components/common/Input/input.js +38 -0
  855. package/lib/components/common/Input/input.styles.d.ts +27 -0
  856. package/lib/components/common/Input/input.styles.js +35 -0
  857. package/lib/components/common/KeyValuePairs/components/KeyElType/keyElType.d.ts +8 -0
  858. package/lib/components/common/KeyValuePairs/components/KeyElType/keyElType.js +24 -0
  859. package/lib/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.d.ts +14 -0
  860. package/lib/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.js +24 -0
  861. package/lib/components/common/KeyValuePairs/components/ValueElType/valueElType.d.ts +8 -0
  862. package/lib/components/common/KeyValuePairs/components/ValueElType/valueElType.js +24 -0
  863. package/lib/components/common/KeyValuePairs/keyValuePairs.d.ts +18 -0
  864. package/lib/components/common/KeyValuePairs/keyValuePairs.js +38 -0
  865. package/lib/components/common/MDXMarkdown/components/Section/mdxSection.styles.d.ts +5 -0
  866. package/lib/components/common/MDXMarkdown/components/Section/mdxSection.styles.js +32 -0
  867. package/lib/components/common/Markdown/markdown.d.ts +5 -0
  868. package/lib/components/common/Markdown/markdown.js +13 -0
  869. package/lib/components/common/Paper/paper.d.ts +24 -0
  870. package/lib/components/common/Paper/paper.js +41 -0
  871. package/lib/components/common/Paper/paper.styles.d.ts +30 -0
  872. package/lib/components/common/Paper/paper.styles.js +71 -0
  873. package/lib/components/common/RadioGroup/radioGroup.d.ts +17 -0
  874. package/lib/components/common/RadioGroup/radioGroup.js +14 -0
  875. package/lib/components/common/Section/components/CollapsableSection/collapsableSection.d.ts +7 -0
  876. package/lib/components/common/Section/components/CollapsableSection/collapsableSection.js +74 -0
  877. package/lib/components/common/Section/components/CollapsableSection/collapsableSection.styles.d.ts +43 -0
  878. package/lib/components/common/Section/components/CollapsableSection/collapsableSection.styles.js +41 -0
  879. package/lib/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.d.ts +5 -0
  880. package/lib/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.js +11 -0
  881. package/lib/components/common/Section/components/SectionTitle/sectionTitle.d.ts +6 -0
  882. package/lib/components/common/Section/components/SectionTitle/sectionTitle.js +12 -0
  883. package/lib/components/common/Section/components/SectionTitle/sectionTitle.stories.d.ts +3 -0
  884. package/lib/components/common/Section/components/SectionTitle/sectionTitle.stories.js +20 -0
  885. package/lib/components/common/Section/section.styles.d.ts +29 -0
  886. package/lib/components/common/Section/section.styles.js +62 -0
  887. package/lib/components/common/Sections/sections.d.ts +6 -0
  888. package/lib/components/common/Sections/sections.js +13 -0
  889. package/lib/components/common/Socials/socials.d.ts +15 -0
  890. package/lib/components/common/Socials/socials.js +34 -0
  891. package/lib/components/common/Socials/socials.stories.d.ts +7 -0
  892. package/lib/components/common/Socials/socials.stories.js +59 -0
  893. package/lib/components/common/Socials/socials.styles.d.ts +5 -0
  894. package/lib/components/common/Socials/socials.styles.js +10 -0
  895. package/lib/components/common/Stack/components/Divider/divider.d.ts +11 -0
  896. package/lib/components/common/Stack/components/Divider/divider.js +29 -0
  897. package/lib/components/common/Stack/components/Divider/divider.styles.d.ts +11 -0
  898. package/lib/components/common/Stack/components/Divider/divider.styles.js +11 -0
  899. package/lib/components/common/Stack/stack.d.ts +18 -0
  900. package/lib/components/common/Stack/stack.js +12 -0
  901. package/lib/components/common/StaticImage/staticImage.d.ts +14 -0
  902. package/lib/components/common/StaticImage/staticImage.js +19 -0
  903. package/lib/components/common/StaticImage/staticImage.stories.d.ts +3 -0
  904. package/lib/components/common/StaticImage/staticImage.stories.js +26 -0
  905. package/lib/components/common/StatusBadge/statusBadge.d.ts +10 -0
  906. package/lib/components/common/StatusBadge/statusBadge.js +53 -0
  907. package/lib/components/common/StatusBadge/statusBadge.stories.d.ts +7 -0
  908. package/lib/components/common/StatusBadge/statusBadge.stories.js +16 -0
  909. package/lib/components/common/StatusIcon/statusIcon.d.ts +19 -0
  910. package/lib/components/common/StatusIcon/statusIcon.js +23 -0
  911. package/lib/components/common/StatusIcon/statusIcon.stories.d.ts +3 -0
  912. package/lib/components/common/StatusIcon/statusIcon.stories.js +23 -0
  913. package/lib/components/common/StatusIcon/statusIcon.styles.d.ts +10 -0
  914. package/lib/components/common/StatusIcon/statusIcon.styles.js +47 -0
  915. package/lib/components/common/Tabs/tabs.d.ts +19 -0
  916. package/lib/components/common/Tabs/tabs.js +13 -0
  917. package/lib/components/common/Tabs/tabs.styles.d.ts +43 -0
  918. package/lib/components/common/Tabs/tabs.styles.js +45 -0
  919. package/lib/components/common/Tag/tag.d.ts +6 -0
  920. package/lib/components/common/Tag/tag.js +12 -0
  921. package/lib/components/common/Tag/tag.stories.d.ts +3 -0
  922. package/lib/components/common/Tag/tag.stories.js +21 -0
  923. package/lib/components/common/Tag/tag.styles.d.ts +6 -0
  924. package/lib/components/common/Tag/tag.styles.js +17 -0
  925. package/lib/components/common/Title/title.d.ts +7 -0
  926. package/lib/components/common/Title/title.js +25 -0
  927. package/lib/components/common/Title/title.styles.d.ts +1 -0
  928. package/lib/components/common/Title/title.styles.js +12 -0
  929. package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.d.ts +17 -0
  930. package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.js +70 -0
  931. package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.stories.d.ts +3 -0
  932. package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.stories.js +38 -0
  933. package/lib/components/common/Typography/TypographyWordBreak/TypographyWordBreak.d.ts +5 -0
  934. package/lib/components/common/Typography/TypographyWordBreak/TypographyWordBreak.js +24 -0
  935. package/lib/config/config.d.ts +11 -0
  936. package/lib/config/config.js +20 -0
  937. package/lib/config/entities.d.ts +366 -0
  938. package/lib/config/entities.js +10 -0
  939. package/lib/config/utils.d.ts +31 -0
  940. package/lib/config/utils.js +98 -0
  941. package/lib/entity/api/service.d.ts +63 -0
  942. package/lib/entity/api/service.js +147 -0
  943. package/lib/entity/apicf/service.d.ts +29 -0
  944. package/lib/entity/apicf/service.js +71 -0
  945. package/lib/entity/common/client.d.ts +12 -0
  946. package/lib/entity/common/client.js +65 -0
  947. package/lib/entity/common/service.d.ts +15 -0
  948. package/lib/entity/common/service.js +38 -0
  949. package/lib/entity/common/utils.d.ts +7 -0
  950. package/lib/entity/common/utils.js +14 -0
  951. package/lib/entity/service/factory.d.ts +7 -0
  952. package/lib/entity/service/factory.js +64 -0
  953. package/lib/entity/service/model.d.ts +27 -0
  954. package/lib/entity/service/model.js +12 -0
  955. package/lib/entity/tsv/service.d.ts +9 -0
  956. package/lib/entity/tsv/service.js +47 -0
  957. package/lib/hooks/useAsync.d.ts +25 -0
  958. package/lib/hooks/useAsync.js +89 -0
  959. package/lib/hooks/useAuthentication/common/constants.d.ts +4 -0
  960. package/lib/hooks/useAuthentication/common/constants.js +22 -0
  961. package/lib/hooks/useAuthentication/common/entities.d.ts +25 -0
  962. package/lib/hooks/useAuthentication/common/entities.js +14 -0
  963. package/lib/hooks/useAuthentication/common/utils.d.ts +15 -0
  964. package/lib/hooks/useAuthentication/common/utils.js +30 -0
  965. package/lib/hooks/useAuthentication/useAuthentication.d.ts +6 -0
  966. package/lib/hooks/useAuthentication/useAuthentication.js +13 -0
  967. package/lib/hooks/useAuthentication/useAuthenticationComplete.d.ts +6 -0
  968. package/lib/hooks/useAuthentication/useAuthenticationComplete.js +82 -0
  969. package/lib/hooks/useAuthentication/useAuthenticationForm.d.ts +20 -0
  970. package/lib/hooks/useAuthentication/useAuthenticationForm.js +92 -0
  971. package/lib/hooks/useAuthentication/useAuthenticationNIHExpiry.d.ts +18 -0
  972. package/lib/hooks/useAuthentication/useAuthenticationNIHExpiry.js +55 -0
  973. package/lib/hooks/useAuthentication/useAuthenticationStatus.d.ts +20 -0
  974. package/lib/hooks/useAuthentication/useAuthenticationStatus.js +37 -0
  975. package/lib/hooks/useAuthentication/useFetchGoogleProfile.d.ts +21 -0
  976. package/lib/hooks/useAuthentication/useFetchGoogleProfile.js +40 -0
  977. package/lib/hooks/useAuthentication/useFetchTerraNIHProfile.d.ts +18 -0
  978. package/lib/hooks/useAuthentication/useFetchTerraNIHProfile.js +61 -0
  979. package/lib/hooks/useAuthentication/useFetchTerraProfile.d.ts +24 -0
  980. package/lib/hooks/useAuthentication/useFetchTerraProfile.js +62 -0
  981. package/lib/hooks/useAuthentication/useFetchTerraTermsOfService.d.ts +15 -0
  982. package/lib/hooks/useAuthentication/useFetchTerraTermsOfService.js +61 -0
  983. package/lib/hooks/useAuthentication/useTokenClient.d.ts +11 -0
  984. package/lib/hooks/useAuthentication/useTokenClient.js +33 -0
  985. package/lib/hooks/useAuthenticationConfig.d.ts +6 -0
  986. package/lib/hooks/useAuthenticationConfig.js +18 -0
  987. package/lib/hooks/useBreakpointHelper.d.ts +14 -0
  988. package/lib/hooks/useBreakpointHelper.js +18 -0
  989. package/lib/hooks/useCatalog.d.ts +5 -0
  990. package/lib/hooks/useCatalog.js +18 -0
  991. package/lib/hooks/useCategoryConfigs.d.ts +6 -0
  992. package/lib/hooks/useCategoryConfigs.js +17 -0
  993. package/lib/hooks/useCategoryFilter.d.ts +35 -0
  994. package/lib/hooks/useCategoryFilter.js +158 -0
  995. package/lib/hooks/useConfig.d.ts +6 -0
  996. package/lib/hooks/useConfig.js +13 -0
  997. package/lib/hooks/useCurrentDetailTab.d.ts +13 -0
  998. package/lib/hooks/useCurrentDetailTab.js +24 -0
  999. package/lib/hooks/useDownloadStatus.d.ts +10 -0
  1000. package/lib/hooks/useDownloadStatus.js +27 -0
  1001. package/lib/hooks/useEntityHeadTitle.d.ts +7 -0
  1002. package/lib/hooks/useEntityHeadTitle.js +54 -0
  1003. package/lib/hooks/useEntityList.d.ts +8 -0
  1004. package/lib/hooks/useEntityList.js +169 -0
  1005. package/lib/hooks/useEntityListRelatedView.d.ts +15 -0
  1006. package/lib/hooks/useEntityListRelatedView.js +62 -0
  1007. package/lib/hooks/useEntityService.d.ts +17 -0
  1008. package/lib/hooks/useEntityService.js +43 -0
  1009. package/lib/hooks/useExploreMode.d.ts +14 -0
  1010. package/lib/hooks/useExploreMode.js +24 -0
  1011. package/lib/hooks/useExploreState.d.ts +6 -0
  1012. package/lib/hooks/useExploreState.js +13 -0
  1013. package/lib/hooks/useExportConfig.d.ts +6 -0
  1014. package/lib/hooks/useExportConfig.js +16 -0
  1015. package/lib/hooks/useExportToTerraResponseURL.d.ts +8 -0
  1016. package/lib/hooks/useExportToTerraResponseURL.js +22 -0
  1017. package/lib/hooks/useFeatureFlag/common/entities.d.ts +4 -0
  1018. package/lib/hooks/useFeatureFlag/common/entities.js +8 -0
  1019. package/lib/hooks/useFeatureFlag/common/utils.d.ts +5 -0
  1020. package/lib/hooks/useFeatureFlag/common/utils.js +21 -0
  1021. package/lib/hooks/useFeatureFlag/useFeatureFlag.d.ts +6 -0
  1022. package/lib/hooks/useFeatureFlag/useFeatureFlag.js +20 -0
  1023. package/lib/hooks/useFetchEntity.d.ts +13 -0
  1024. package/lib/hooks/useFetchEntity.js +58 -0
  1025. package/lib/hooks/useFetchRequestURL.d.ts +8 -0
  1026. package/lib/hooks/useFetchRequestURL.js +18 -0
  1027. package/lib/hooks/useFileLocation.d.ts +5 -0
  1028. package/lib/hooks/useFileLocation.js +30 -0
  1029. package/lib/hooks/useFileManifest/common/buildFileManifestRequestURL.d.ts +15 -0
  1030. package/lib/hooks/useFileManifest/common/buildFileManifestRequestURL.js +31 -0
  1031. package/lib/hooks/useFileManifest/common/entities.d.ts +55 -0
  1032. package/lib/hooks/useFileManifest/common/entities.js +17 -0
  1033. package/lib/hooks/useFileManifest/common/utils.d.ts +45 -0
  1034. package/lib/hooks/useFileManifest/common/utils.js +161 -0
  1035. package/lib/hooks/useFileManifest/useFetchFilesFacets.d.ts +12 -0
  1036. package/lib/hooks/useFileManifest/useFetchFilesFacets.js +46 -0
  1037. package/lib/hooks/useFileManifest/useFetchSummary.d.ts +10 -0
  1038. package/lib/hooks/useFileManifest/useFetchSummary.js +38 -0
  1039. package/lib/hooks/useFileManifest/useFileManifest.d.ts +7 -0
  1040. package/lib/hooks/useFileManifest/useFileManifest.js +16 -0
  1041. package/lib/hooks/useFileManifest/useFileManifestDownload.d.ts +14 -0
  1042. package/lib/hooks/useFileManifest/useFileManifestDownload.js +92 -0
  1043. package/lib/hooks/useFileManifest/useFileManifestSpreadsheet.d.ts +14 -0
  1044. package/lib/hooks/useFileManifest/useFileManifestSpreadsheet.js +77 -0
  1045. package/lib/hooks/useFileManifest/useFileManifestURL.d.ts +5 -0
  1046. package/lib/hooks/useFileManifest/useFileManifestURL.js +15 -0
  1047. package/lib/hooks/useFileManifest/useRequestFileManifest.d.ts +9 -0
  1048. package/lib/hooks/useFileManifest/useRequestFileManifest.js +41 -0
  1049. package/lib/hooks/useFileManifestState.d.ts +6 -0
  1050. package/lib/hooks/useFileManifestState.js +13 -0
  1051. package/lib/hooks/useLayoutState.d.ts +6 -0
  1052. package/lib/hooks/useLayoutState.js +13 -0
  1053. package/lib/hooks/useLocalStorage/common/utils.d.ts +12 -0
  1054. package/lib/hooks/useLocalStorage/common/utils.js +27 -0
  1055. package/lib/hooks/useLocalStorage/useLocalStorage.d.ts +6 -0
  1056. package/lib/hooks/useLocalStorage/useLocalStorage.js +18 -0
  1057. package/lib/hooks/useLocation.d.ts +13 -0
  1058. package/lib/hooks/useLocation.js +22 -0
  1059. package/lib/hooks/useRequestFileLocation.d.ts +35 -0
  1060. package/lib/hooks/useRequestFileLocation.js +111 -0
  1061. package/lib/hooks/useResetableState.d.ts +7 -0
  1062. package/lib/hooks/useResetableState.js +17 -0
  1063. package/lib/hooks/useResizeObserver.d.ts +43 -0
  1064. package/lib/hooks/useResizeObserver.js +87 -0
  1065. package/lib/hooks/useScroll.d.ts +10 -0
  1066. package/lib/hooks/useScroll.js +16 -0
  1067. package/lib/hooks/useSessionTimeout.d.ts +11 -0
  1068. package/lib/hooks/useSessionTimeout.js +28 -0
  1069. package/lib/hooks/useSummary.d.ts +11 -0
  1070. package/lib/hooks/useSummary.js +37 -0
  1071. package/lib/hooks/useSystemStatus.d.ts +6 -0
  1072. package/lib/hooks/useSystemStatus.js +13 -0
  1073. package/lib/hooks/useURLFilterParams.d.ts +14 -0
  1074. package/lib/hooks/useURLFilterParams.js +39 -0
  1075. package/lib/hooks/useUpdateURLCatalogParam.d.ts +4 -0
  1076. package/lib/hooks/useUpdateURLCatalogParam.js +48 -0
  1077. package/lib/hooks/useUpdateURLSearchParams.d.ts +4 -0
  1078. package/lib/hooks/useUpdateURLSearchParams.js +21 -0
  1079. package/lib/hooks/useWindowResize.d.ts +10 -0
  1080. package/lib/hooks/useWindowResize.js +42 -0
  1081. package/lib/index.d.ts +1 -0
  1082. package/lib/index.js +2 -0
  1083. package/lib/providers/authentication.d.ts +51 -0
  1084. package/lib/providers/authentication.js +138 -0
  1085. package/lib/providers/config.d.ts +15 -0
  1086. package/lib/providers/config.js +47 -0
  1087. package/lib/providers/exploreState/constants.d.ts +3 -0
  1088. package/lib/providers/exploreState/constants.js +28 -0
  1089. package/lib/providers/exploreState/payloads/entities.d.ts +46 -0
  1090. package/lib/providers/exploreState/payloads/entities.js +2 -0
  1091. package/lib/providers/exploreState/utils.d.ts +36 -0
  1092. package/lib/providers/exploreState/utils.js +72 -0
  1093. package/lib/providers/exploreState.d.ts +209 -0
  1094. package/lib/providers/exploreState.js +209 -0
  1095. package/lib/providers/fileManifestState.d.ts +147 -0
  1096. package/lib/providers/fileManifestState.js +228 -0
  1097. package/lib/providers/layoutState.d.ts +40 -0
  1098. package/lib/providers/layoutState.js +71 -0
  1099. package/lib/providers/systemStatus.d.ts +32 -0
  1100. package/lib/providers/systemStatus.js +102 -0
  1101. package/lib/shared/constants.d.ts +1 -0
  1102. package/lib/shared/constants.js +4 -0
  1103. package/lib/shared/utils.d.ts +21 -0
  1104. package/lib/shared/utils.js +41 -0
  1105. package/lib/styles/common/mixins/breakpoints.d.ts +7 -0
  1106. package/lib/styles/common/mixins/breakpoints.js +16 -0
  1107. package/lib/styles/common/mixins/colors.d.ts +24 -0
  1108. package/lib/styles/common/mixins/colors.js +56 -0
  1109. package/lib/styles/common/mixins/fonts.d.ts +16 -0
  1110. package/lib/styles/common/mixins/fonts.js +33 -0
  1111. package/lib/styles/common/mixins/shadows.d.ts +3 -0
  1112. package/lib/styles/common/mixins/shadows.js +9 -0
  1113. package/lib/theme/common/breakpoints.d.ts +29 -0
  1114. package/lib/theme/common/breakpoints.js +40 -0
  1115. package/lib/theme/common/components.d.ts +245 -0
  1116. package/lib/theme/common/components.js +1417 -0
  1117. package/lib/theme/common/palette.d.ts +178 -0
  1118. package/lib/theme/common/palette.js +226 -0
  1119. package/lib/theme/common/shadows.d.ts +28 -0
  1120. package/lib/theme/common/shadows.js +35 -0
  1121. package/lib/theme/common/typography.d.ts +66 -0
  1122. package/lib/theme/common/typography.js +170 -0
  1123. package/lib/theme/theme.d.ts +14 -0
  1124. package/lib/theme/theme.js +137 -0
  1125. package/lib/types/error.d.ts +7 -0
  1126. package/lib/types/error.js +19 -0
  1127. package/lib/utils/database.d.ts +19 -0
  1128. package/lib/utils/database.js +36 -0
  1129. package/lib/utils/fetchQueryParams.d.ts +12 -0
  1130. package/lib/utils/fetchQueryParams.js +17 -0
  1131. package/lib/utils/formatCountSize.d.ts +6 -0
  1132. package/lib/utils/formatCountSize.js +28 -0
  1133. package/lib/utils/formatFileSize.d.ts +6 -0
  1134. package/lib/utils/formatFileSize.js +27 -0
  1135. package/lib/utils/ssr.d.ts +5 -0
  1136. package/lib/utils/ssr.js +9 -0
  1137. package/lib/utils/url.d.ts +6 -0
  1138. package/lib/utils/url.js +21 -0
  1139. package/lib/viewModelBuilders/common/entities.d.ts +4 -0
  1140. package/lib/viewModelBuilders/common/entities.js +2 -0
  1141. package/lib/viewModelBuilders/common/utils.d.ts +21 -0
  1142. package/lib/viewModelBuilders/common/utils.js +45 -0
  1143. package/lib/views/ContentView/contentView.d.ts +9 -0
  1144. package/lib/views/ContentView/contentView.js +12 -0
  1145. package/lib/views/ContentView/contentView.stories.d.ts +6 -0
  1146. package/lib/views/ContentView/contentView.stories.js +47 -0
  1147. package/lib/views/EntityDetailView/entityDetailView.d.ts +6 -0
  1148. package/lib/views/EntityDetailView/entityDetailView.js +85 -0
  1149. package/lib/views/ExploreView/exploreView.d.ts +4 -0
  1150. package/lib/views/ExploreView/exploreView.js +230 -0
  1151. package/lib/views/ExportMethodView/exportMethodView.d.ts +2 -0
  1152. package/lib/views/ExportMethodView/exportMethodView.js +30 -0
  1153. package/lib/views/ExportView/exportView.d.ts +4 -0
  1154. package/lib/views/ExportView/exportView.js +23 -0
  1155. package/lib/views/LoginView/loginView.d.ts +2 -0
  1156. package/lib/views/LoginView/loginView.js +14 -0
  1157. package/package.json +87 -0
  1158. package/src/apis/azul/common/constants.ts +12 -0
  1159. package/src/apis/azul/common/entities.ts +184 -0
  1160. package/src/apis/azul/common/filterTransformer.ts +149 -0
  1161. package/src/apis/azul/common/utils.ts +19 -0
  1162. package/src/common/analytics/analytics.ts +42 -0
  1163. package/src/common/analytics/entities.ts +73 -0
  1164. package/src/common/constants.ts +16 -0
  1165. package/src/common/entities.ts +103 -0
  1166. package/src/common/selectors.ts +3 -0
  1167. package/src/common/utils.ts +30 -0
  1168. package/src/components/ComponentCreator/ComponentCreator.tsx +68 -0
  1169. package/src/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.tsx +17 -0
  1170. package/src/components/ComponentCreator/components/RenderComponent/renderComponent.tsx +17 -0
  1171. package/src/components/Detail/components/AccessibilityBadge/accessibilityBadge.tsx +30 -0
  1172. package/src/components/Detail/components/DetailViewTable/detailViewTable.tsx +46 -0
  1173. package/src/components/Detail/components/Table/common/utils.ts +20 -0
  1174. package/src/components/Detail/components/Table/components/TableBody/tableBody.tsx +29 -0
  1175. package/src/components/Detail/components/Table/components/TableHead/tableHead.tsx +34 -0
  1176. package/src/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.tsx +28 -0
  1177. package/src/components/Detail/components/Table/components/TableRows/tableRows.tsx +36 -0
  1178. package/src/components/Detail/components/Table/table.tsx +74 -0
  1179. package/src/components/Detail/detail.stories.tsx +62 -0
  1180. package/src/components/Detail/detail.tsx +28 -0
  1181. package/src/components/Error/error.stories.tsx +33 -0
  1182. package/src/components/Error/error.styles.ts +47 -0
  1183. package/src/components/Error/error.tsx +111 -0
  1184. package/src/components/ErrorBoundary/errorBoundary.tsx +46 -0
  1185. package/src/components/ErrorBoundary/index.ts +1 -0
  1186. package/src/components/Export/common/entities.ts +53 -0
  1187. package/src/components/Export/common/tracking.ts +30 -0
  1188. package/src/components/Export/common/utils.ts +45 -0
  1189. package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.styles.ts +6 -0
  1190. package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.tsx +52 -0
  1191. package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.tsx +62 -0
  1192. package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.tsx +25 -0
  1193. package/src/components/Export/components/DownloadCurlCommand/downloadCurlCommand.tsx +118 -0
  1194. package/src/components/Export/components/ExportForm/common/entities.ts +13 -0
  1195. package/src/components/Export/components/ExportForm/components/ExportButton/exportButton.tsx +36 -0
  1196. package/src/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.tsx +59 -0
  1197. package/src/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.tsx +129 -0
  1198. package/src/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.tsx +51 -0
  1199. package/src/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.tsx +64 -0
  1200. package/src/components/Export/components/ExportForm/exportForm.styles.ts +106 -0
  1201. package/src/components/Export/components/ExportForm/exportForm.tsx +139 -0
  1202. package/src/components/Export/components/ExportMethod/exportMethod.stories.tsx +26 -0
  1203. package/src/components/Export/components/ExportMethod/exportMethod.styles.ts +13 -0
  1204. package/src/components/Export/components/ExportMethod/exportMethod.tsx +54 -0
  1205. package/src/components/Export/components/ExportSummary/common/utils.ts +55 -0
  1206. package/src/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.tsx +41 -0
  1207. package/src/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.tsx +31 -0
  1208. package/src/components/Export/components/ExportSummary/exportSummary.styles.ts +22 -0
  1209. package/src/components/Export/components/ExportSummary/exportSummary.tsx +12 -0
  1210. package/src/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.tsx +47 -0
  1211. package/src/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.tsx +52 -0
  1212. package/src/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.tsx +35 -0
  1213. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.tsx +67 -0
  1214. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.tsx +41 -0
  1215. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.tsx +42 -0
  1216. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.styles.ts +10 -0
  1217. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.tsx +64 -0
  1218. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.tsx +62 -0
  1219. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.styles.ts +65 -0
  1220. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.tsx +101 -0
  1221. package/src/components/Export/components/ExportToTerra/exportToTerra.tsx +56 -0
  1222. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.tsx +122 -0
  1223. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.tsx +129 -0
  1224. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.styles.ts +34 -0
  1225. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.tsx +26 -0
  1226. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.tsx +37 -0
  1227. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.tsx +47 -0
  1228. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.styles.ts +11 -0
  1229. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.tsx +40 -0
  1230. package/src/components/Export/components/ManifestDownload/manifestDownload.tsx +67 -0
  1231. package/src/components/Export/export.styles.ts +40 -0
  1232. package/src/components/Filter/common/constants.ts +5 -0
  1233. package/src/components/Filter/common/entities.ts +46 -0
  1234. package/src/components/Filter/common/utils.ts +84 -0
  1235. package/src/components/Filter/components/ClearAllFilters/clearAllFilters.tsx +19 -0
  1236. package/src/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.tsx +24 -0
  1237. package/src/components/Filter/components/Filter/filter.stories.tsx +51 -0
  1238. package/src/components/Filter/components/Filter/filter.styles.ts +19 -0
  1239. package/src/components/Filter/components/Filter/filter.tsx +116 -0
  1240. package/src/components/Filter/components/FilterLabel/filterLabel.stories.tsx +31 -0
  1241. package/src/components/Filter/components/FilterLabel/filterLabel.styles.ts +35 -0
  1242. package/src/components/Filter/components/FilterLabel/filterLabel.tsx +30 -0
  1243. package/src/components/Filter/components/FilterList/filterList.styles.ts +39 -0
  1244. package/src/components/Filter/components/FilterMenu/filterMenu.stories.tsx +125 -0
  1245. package/src/components/Filter/components/FilterMenu/filterMenu.styles.ts +31 -0
  1246. package/src/components/Filter/components/FilterMenu/filterMenu.tsx +82 -0
  1247. package/src/components/Filter/components/FilterMenuSearch/filterMenuSearch.styles.ts +16 -0
  1248. package/src/components/Filter/components/FilterMenuSearch/filterMenuSearch.tsx +23 -0
  1249. package/src/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.styles.ts +7 -0
  1250. package/src/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.tsx +40 -0
  1251. package/src/components/Filter/components/FilterTag/filterTag.stories.tsx +22 -0
  1252. package/src/components/Filter/components/FilterTag/filterTag.styles.ts +6 -0
  1253. package/src/components/Filter/components/FilterTag/filterTag.tsx +59 -0
  1254. package/src/components/Filter/components/FilterTags/filterTags.stories.tsx +62 -0
  1255. package/src/components/Filter/components/FilterTags/filterTags.styles.ts +18 -0
  1256. package/src/components/Filter/components/FilterTags/filterTags.tsx +23 -0
  1257. package/src/components/Filter/components/Filters/filters.stories.tsx +101 -0
  1258. package/src/components/Filter/components/Filters/filters.styles.ts +34 -0
  1259. package/src/components/Filter/components/Filters/filters.tsx +118 -0
  1260. package/src/components/Filter/components/HighlightedLabel/highlightedLabel.styles.ts +27 -0
  1261. package/src/components/Filter/components/HighlightedLabel/highlightedLabel.tsx +44 -0
  1262. package/src/components/Filter/components/SearchAllFilters/common/constants.ts +62 -0
  1263. package/src/components/Filter/components/SearchAllFilters/common/entites.ts +44 -0
  1264. package/src/components/Filter/components/SearchAllFilters/common/utils.ts +15 -0
  1265. package/src/components/Filter/components/SearchAllFilters/components/AutocompletePopper/autocompletePopper.styles.ts +16 -0
  1266. package/src/components/Filter/components/SearchAllFilters/components/VariableSizeList/VariableSizeList.tsx +313 -0
  1267. package/src/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.tsx +85 -0
  1268. package/src/components/Filter/components/SearchAllFilters/searchAllFilters.stories.tsx +92 -0
  1269. package/src/components/Filter/components/SearchAllFilters/searchAllFilters.styles.ts +15 -0
  1270. package/src/components/Filter/components/SearchAllFilters/searchAllFilters.tsx +185 -0
  1271. package/src/components/Filter/components/SearchAllFiltersSearch/components/SearchCloseButton/searchCloseButton.tsx +29 -0
  1272. package/src/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.styles.ts +36 -0
  1273. package/src/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.tsx +29 -0
  1274. package/src/components/Filter/components/VariableSizeList/VariableSizeList.tsx +178 -0
  1275. package/src/components/Filter/components/VariableSizeListItem/variableSizeListItem.tsx +72 -0
  1276. package/src/components/Head/head.tsx +69 -0
  1277. package/src/components/Index/components/AzulFileDownload/azulFileDownload.stories.tsx +17 -0
  1278. package/src/components/Index/components/AzulFileDownload/azulFileDownload.tsx +84 -0
  1279. package/src/components/Index/components/Cell/cell.tsx +18 -0
  1280. package/src/components/Index/components/Hero/components/ExportButton/exportButton.styles.ts +14 -0
  1281. package/src/components/Index/components/Hero/components/ExportButton/exportButton.tsx +20 -0
  1282. package/src/components/Index/components/Hero/components/Summaries/summaries.stories.tsx +24 -0
  1283. package/src/components/Index/components/Hero/components/Summaries/summaries.styles.ts +31 -0
  1284. package/src/components/Index/components/Hero/components/Summaries/summaries.tsx +35 -0
  1285. package/src/components/Index/components/Hero/hero.stories.tsx +24 -0
  1286. package/src/components/Index/components/Hero/hero.styles.ts +55 -0
  1287. package/src/components/Index/components/Hero/hero.tsx +40 -0
  1288. package/src/components/Index/components/NTag/components/Tooltip/tooltip.styles.ts +11 -0
  1289. package/src/components/Index/components/NTag/components/Tooltip/tooltip.tsx +86 -0
  1290. package/src/components/Index/components/NTag/nTag.tsx +21 -0
  1291. package/src/components/Index/components/NTagCell/nTagCell.stories.tsx +22 -0
  1292. package/src/components/Index/components/NTagCell/nTagCell.tsx +55 -0
  1293. package/src/components/Index/components/TitleCell/titleCell.styles.ts +7 -0
  1294. package/src/components/Index/components/TitleCell/titleCell.tsx +22 -0
  1295. package/src/components/Index/index.stories.tsx +29 -0
  1296. package/src/components/Index/index.styles.ts +19 -0
  1297. package/src/components/Index/index.tsx +37 -0
  1298. package/src/components/Layout/components/AppLayout/appLayout.styles.ts +8 -0
  1299. package/src/components/Layout/components/BackPage/backPageView.stories.tsx +61 -0
  1300. package/src/components/Layout/components/BackPage/backPageView.styles.ts +150 -0
  1301. package/src/components/Layout/components/BackPage/backPageView.tsx +50 -0
  1302. package/src/components/Layout/components/BackPage/components/BackPageHero/backPageHero.stories.tsx +16 -0
  1303. package/src/components/Layout/components/BackPage/components/BackPageHero/backPageHero.styles.ts +35 -0
  1304. package/src/components/Layout/components/BackPage/components/BackPageHero/backPageHero.tsx +50 -0
  1305. package/src/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.tsx +24 -0
  1306. package/src/components/Layout/components/ContentLayout/common/constants.ts +25 -0
  1307. package/src/components/Layout/components/ContentLayout/common/entities.ts +13 -0
  1308. package/src/components/Layout/components/ContentLayout/components/Main/main.tsx +11 -0
  1309. package/src/components/Layout/components/ContentLayout/contentLayout.styles.ts +152 -0
  1310. package/src/components/Layout/components/ContentLayout/contentLayout.tsx +71 -0
  1311. package/src/components/Layout/components/Floating/floating.tsx +15 -0
  1312. package/src/components/Layout/components/Footer/footer.stories.tsx +68 -0
  1313. package/src/components/Layout/components/Footer/footer.styles.ts +53 -0
  1314. package/src/components/Layout/components/Footer/footer.tsx +54 -0
  1315. package/src/components/Layout/components/Header/common/constants.ts +17 -0
  1316. package/src/components/Layout/components/Header/common/entities.ts +7 -0
  1317. package/src/components/Layout/components/Header/common/utils.ts +84 -0
  1318. package/src/components/Layout/components/Header/components/Content/components/Actions/actions.styles.ts +14 -0
  1319. package/src/components/Layout/components/Header/components/Content/components/Actions/actions.tsx +14 -0
  1320. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.tsx +35 -0
  1321. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.stories.tsx +35 -0
  1322. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.styles.ts +39 -0
  1323. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.tsx +69 -0
  1324. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.styles.ts +10 -0
  1325. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.tsx +47 -0
  1326. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Content/components/Navigation/navigation.styles.ts +34 -0
  1327. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Content/components/Socials/socials.styles.ts +7 -0
  1328. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.tsx +54 -0
  1329. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.tsx +80 -0
  1330. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.styles.ts +37 -0
  1331. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.tsx +116 -0
  1332. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.styles.ts +10 -0
  1333. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.tsx +33 -0
  1334. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.tsx +30 -0
  1335. package/src/components/Layout/components/Header/components/Content/components/Logo/logo.tsx +48 -0
  1336. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.tsx +22 -0
  1337. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.styles.ts +16 -0
  1338. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.tsx +79 -0
  1339. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.styles.ts +71 -0
  1340. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.tsx +63 -0
  1341. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.tsx +85 -0
  1342. package/src/components/Layout/components/Header/components/Content/components/Navigation/navigation.styles.ts +59 -0
  1343. package/src/components/Layout/components/Header/components/Content/components/Navigation/navigation.tsx +103 -0
  1344. package/src/components/Layout/components/Header/components/Content/components/Slogan/slogan.styles.ts +26 -0
  1345. package/src/components/Layout/components/Header/components/Content/components/Slogan/slogan.tsx +27 -0
  1346. package/src/components/Layout/components/Header/components/Content/components/Socials/socials.styles.ts +8 -0
  1347. package/src/components/Layout/components/Header/components/Content/content.styles.ts +9 -0
  1348. package/src/components/Layout/components/Header/header.stories.tsx +102 -0
  1349. package/src/components/Layout/components/Header/header.styles.ts +23 -0
  1350. package/src/components/Layout/components/Header/header.tsx +178 -0
  1351. package/src/components/Layout/components/Main/main.styles.ts +20 -0
  1352. package/src/components/Layout/components/Main/main.tsx +18 -0
  1353. package/src/components/Layout/components/Nav/components/NavBarHero/navBarHero.styles.ts +25 -0
  1354. package/src/components/Layout/components/Nav/components/NavBarHero/navBarHero.tsx +43 -0
  1355. package/src/components/Layout/components/Nav/nav.stories.tsx +36 -0
  1356. package/src/components/Layout/components/Nav/nav.styles.ts +55 -0
  1357. package/src/components/Layout/components/Nav/nav.tsx +36 -0
  1358. package/src/components/Layout/components/Outline/common/constants.ts +3 -0
  1359. package/src/components/Layout/components/Outline/components/ContentsTab/contentsTab.styles.ts +17 -0
  1360. package/src/components/Layout/components/Outline/components/ContentsTab/contentsTab.tsx +26 -0
  1361. package/src/components/Layout/components/Outline/outline.styles.ts +68 -0
  1362. package/src/components/Layout/components/Outline/outline.tsx +72 -0
  1363. package/src/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.styles.ts +40 -0
  1364. package/src/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.tsx +26 -0
  1365. package/src/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.styles.ts +19 -0
  1366. package/src/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.tsx +45 -0
  1367. package/src/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.stories.tsx +20 -0
  1368. package/src/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.tsx +15 -0
  1369. package/src/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.styles.ts +20 -0
  1370. package/src/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.tsx +21 -0
  1371. package/src/components/Layout/components/Sidebar/components/SidebarTools/sidebarTools.styles.ts +18 -0
  1372. package/src/components/Layout/components/Sidebar/sidebar.stories.tsx +50 -0
  1373. package/src/components/Layout/components/Sidebar/sidebar.styles.ts +8 -0
  1374. package/src/components/Layout/components/Sidebar/sidebar.tsx +43 -0
  1375. package/src/components/Links/common/entities.ts +4 -0
  1376. package/src/components/Links/common/utils.ts +8 -0
  1377. package/src/components/Links/components/Link/link.tsx +64 -0
  1378. package/src/components/Links/links.stories.tsx +28 -0
  1379. package/src/components/Links/links.tsx +30 -0
  1380. package/src/components/Loading/loading.stories.tsx +41 -0
  1381. package/src/components/Loading/loading.styles.ts +83 -0
  1382. package/src/components/Loading/loading.tsx +73 -0
  1383. package/src/components/Login/login.stories.tsx +43 -0
  1384. package/src/components/Login/login.styles.ts +56 -0
  1385. package/src/components/Login/login.tsx +89 -0
  1386. package/src/components/NoResults/noResults.styles.ts +12 -0
  1387. package/src/components/NoResults/noResults.tsx +43 -0
  1388. package/src/components/Project/common/entities.ts +50 -0
  1389. package/src/components/Project/components/Citation/citation.stories.tsx +21 -0
  1390. package/src/components/Project/components/Citation/citation.styles.ts +22 -0
  1391. package/src/components/Project/components/Citation/citation.tsx +37 -0
  1392. package/src/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.stories.tsx +34 -0
  1393. package/src/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.tsx +30 -0
  1394. package/src/components/Project/components/Contacts/contacts.stories.tsx +31 -0
  1395. package/src/components/Project/components/Contacts/contacts.tsx +33 -0
  1396. package/src/components/Project/components/Contributors/contributors.stories.tsx +38 -0
  1397. package/src/components/Project/components/Contributors/contributors.tsx +31 -0
  1398. package/src/components/Project/components/DataCurators/dataCurators.stories.tsx +20 -0
  1399. package/src/components/Project/components/DataCurators/dataCurators.tsx +26 -0
  1400. package/src/components/Project/components/DataReleasePolicy/dataReleasePolicy.stories.tsx +14 -0
  1401. package/src/components/Project/components/DataReleasePolicy/dataReleasePolicy.tsx +22 -0
  1402. package/src/components/Project/components/Description/description.stories.tsx +18 -0
  1403. package/src/components/Project/components/Description/description.tsx +18 -0
  1404. package/src/components/Project/components/Details/details.stories.tsx +31 -0
  1405. package/src/components/Project/components/Details/details.tsx +45 -0
  1406. package/src/components/Project/components/Publications/publications.stories.tsx +30 -0
  1407. package/src/components/Project/components/Publications/publications.tsx +43 -0
  1408. package/src/components/Project/components/Sup/sup.styles.tsx +5 -0
  1409. package/src/components/Project/components/SupplementaryLinks/supplementaryLinks.stories.tsx +29 -0
  1410. package/src/components/Project/components/SupplementaryLinks/supplementaryLinks.styles.ts +19 -0
  1411. package/src/components/Project/components/SupplementaryLinks/supplementaryLinks.tsx +54 -0
  1412. package/src/components/Redirect/redirect.tsx +20 -0
  1413. package/src/components/Support/components/SupportRequest/components/Dialog/dialog.styles.ts +34 -0
  1414. package/src/components/Support/components/SupportRequest/components/Dialog/dialog.tsx +56 -0
  1415. package/src/components/Support/components/SupportRequest/components/Dropzone/dropzone.tsx +40 -0
  1416. package/src/components/Support/components/SupportRequest/components/SupportRequestForm/common/constants.ts +44 -0
  1417. package/src/components/Support/components/SupportRequest/components/SupportRequestForm/common/entities.ts +65 -0
  1418. package/src/components/Support/components/SupportRequest/components/SupportRequestForm/common/utils.ts +96 -0
  1419. package/src/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.styles.ts +12 -0
  1420. package/src/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.tsx +306 -0
  1421. package/src/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.tsx +37 -0
  1422. package/src/components/Support/components/SupportRequest/supportRequest.tsx +33 -0
  1423. package/src/components/Support/components/ViewSupport/viewSupport.styles.ts +30 -0
  1424. package/src/components/Support/components/ViewSupport/viewSupport.tsx +29 -0
  1425. package/src/components/Table/common/entities.ts +4 -0
  1426. package/src/components/Table/common/gridTable.styles.ts +38 -0
  1427. package/src/components/Table/common/utils.ts +490 -0
  1428. package/src/components/Table/components/CheckboxMenu/checkboxMenu.stories.tsx +54 -0
  1429. package/src/components/Table/components/CheckboxMenu/checkboxMenu.styles.ts +22 -0
  1430. package/src/components/Table/components/CheckboxMenu/checkboxMenu.tsx +85 -0
  1431. package/src/components/Table/components/DownloadEntityResults/downloadEntityResults.tsx +37 -0
  1432. package/src/components/Table/components/EntityViewToggle/entityViewToggle.tsx +36 -0
  1433. package/src/components/Table/components/Pagination/pagination.stories.tsx +26 -0
  1434. package/src/components/Table/components/Pagination/pagination.styles.ts +16 -0
  1435. package/src/components/Table/components/Pagination/pagination.tsx +48 -0
  1436. package/src/components/Table/components/PaginationSummary/paginationSummary.tsx +25 -0
  1437. package/src/components/Table/components/TableBody/tableBody.tsx +59 -0
  1438. package/src/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.styles.ts +52 -0
  1439. package/src/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.tsx +67 -0
  1440. package/src/components/Table/components/TableHead/tableHead.tsx +42 -0
  1441. package/src/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.tsx +35 -0
  1442. package/src/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.tsx +61 -0
  1443. package/src/components/Table/components/TableRows/tableRows.tsx +40 -0
  1444. package/src/components/Table/components/TableToolbar/tableToolbar.styles.ts +16 -0
  1445. package/src/components/Table/components/TableToolbar/tableToolbar.tsx +72 -0
  1446. package/src/components/Table/table.styles.ts +21 -0
  1447. package/src/components/Table/table.tsx +321 -0
  1448. package/src/components/TableCreator/tableCreator.tsx +91 -0
  1449. package/src/components/TempError/components/errorBox.tsx +15 -0
  1450. package/src/components/TempError/index.ts +1 -0
  1451. package/src/components/TempError/tempError.tsx +25 -0
  1452. package/src/components/common/Accordion/accordion.stories.tsx +35 -0
  1453. package/src/components/common/Accordion/accordion.tsx +41 -0
  1454. package/src/components/common/Alert/alert.stories.tsx +41 -0
  1455. package/src/components/common/Alert/alert.styles.ts +28 -0
  1456. package/src/components/common/Alert/alert.tsx +39 -0
  1457. package/src/components/common/AnchorLink/anchorLink.styles.ts +14 -0
  1458. package/src/components/common/AnchorLink/anchorLink.tsx +19 -0
  1459. package/src/components/common/Banner/banner.tsx +22 -0
  1460. package/src/components/common/Banner/components/BannerPrimary/bannerPrimary.styles.ts +20 -0
  1461. package/src/components/common/Banner/components/BannerPrimary/bannerPrimary.tsx +27 -0
  1462. package/src/components/common/Banner/components/CookieBanner/cookieBanner.styles.ts +48 -0
  1463. package/src/components/common/Banner/components/CookieBanner/cookieBanner.tsx +85 -0
  1464. package/src/components/common/Banner/components/DismissibleBanner/dismissibleBanner.tsx +44 -0
  1465. package/src/components/common/Banner/components/SessionTimeout/sessionTimeout.styles.ts +22 -0
  1466. package/src/components/common/Banner/components/SessionTimeout/sessionTimeout.tsx +26 -0
  1467. package/src/components/common/Banner/components/SystemIndexing/systemIndexing.tsx +33 -0
  1468. package/src/components/common/Banner/components/SystemStatus/systemStatus.tsx +33 -0
  1469. package/src/components/common/Breadcrumbs/breadcrumbs.stories.tsx +58 -0
  1470. package/src/components/common/Breadcrumbs/breadcrumbs.tsx +45 -0
  1471. package/src/components/common/Button/button.tsx +37 -0
  1472. package/src/components/common/Button/components/ButtonOutline/buttonOutline.styles.ts +18 -0
  1473. package/src/components/common/Button/components/ButtonOutline/buttonOutline.tsx +23 -0
  1474. package/src/components/common/Button/components/ButtonPrimary/buttonPrimary.tsx +13 -0
  1475. package/src/components/common/Button/components/ButtonSecondary/buttonSecondary.tsx +15 -0
  1476. package/src/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.tsx +14 -0
  1477. package/src/components/common/Button/components/ButtonText/buttonText.styles.ts +13 -0
  1478. package/src/components/common/Button/components/ButtonText/buttonText.tsx +8 -0
  1479. package/src/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.styles.ts +9 -0
  1480. package/src/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.tsx +8 -0
  1481. package/src/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.styles.ts +14 -0
  1482. package/src/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.tsx +8 -0
  1483. package/src/components/common/Button/components/CallToActionButton/callToActionButton.stories.tsx +36 -0
  1484. package/src/components/common/Button/components/CallToActionButton/callToActionButton.tsx +51 -0
  1485. package/src/components/common/Button/components/DropdownButton/dropdownButton.styles.ts +11 -0
  1486. package/src/components/common/Button/components/DropdownButton/dropdownButton.tsx +18 -0
  1487. package/src/components/common/Button/components/FileDownloadButton/fileDownloadButton.tsx +27 -0
  1488. package/src/components/common/Button/components/HelpIconButton/helpIconButton.stories.tsx +25 -0
  1489. package/src/components/common/Button/components/HelpIconButton/helpIconButton.styles.ts +8 -0
  1490. package/src/components/common/Button/components/HelpIconButton/helpIconButton.tsx +40 -0
  1491. package/src/components/common/Button/components/LoginButton/loginButton.styles.ts +13 -0
  1492. package/src/components/common/Button/components/LoginButton/loginButton.tsx +16 -0
  1493. package/src/components/common/Button/components/NavigationButton/navigationButton.styles.ts +31 -0
  1494. package/src/components/common/Button/components/NavigationButton/navigationButton.tsx +26 -0
  1495. package/src/components/common/ButtonGroup/buttonGroup.tsx +50 -0
  1496. package/src/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.tsx +32 -0
  1497. package/src/components/common/Card/card.stories.tsx +43 -0
  1498. package/src/components/common/Card/card.styles.ts +15 -0
  1499. package/src/components/common/Card/card.tsx +67 -0
  1500. package/src/components/common/Card/components/CardAction/cardAction.tsx +17 -0
  1501. package/src/components/common/Card/components/CardActionArea/cardActionArea.tsx +35 -0
  1502. package/src/components/common/Card/components/CardActions/cardActions.styles.ts +9 -0
  1503. package/src/components/common/Card/components/CardActions/cardActions.tsx +16 -0
  1504. package/src/components/common/Card/components/CardMedia/cardMedia.styles.ts +11 -0
  1505. package/src/components/common/Card/components/CardMedia/cardMedia.tsx +23 -0
  1506. package/src/components/common/Card/components/CardSecondaryText/cardSecondaryText.tsx +22 -0
  1507. package/src/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.styles.ts +6 -0
  1508. package/src/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.tsx +22 -0
  1509. package/src/components/common/Card/components/CardText/cardText.tsx +18 -0
  1510. package/src/components/common/Card/components/CardTitle/cardTitle.tsx +18 -0
  1511. package/src/components/common/Card/components/RoundedCard/roundedCard.tsx +11 -0
  1512. package/src/components/common/Code/code.stories.tsx +17 -0
  1513. package/src/components/common/Code/code.styles.ts +61 -0
  1514. package/src/components/common/Code/code.tsx +38 -0
  1515. package/src/components/common/CopyToClipboard/copyToClipboard.stories.tsx +20 -0
  1516. package/src/components/common/CopyToClipboard/copyToClipboard.tsx +50 -0
  1517. package/src/components/common/CustomIcon/common/constants.ts +14 -0
  1518. package/src/components/common/CustomIcon/common/entities.ts +6 -0
  1519. package/src/components/common/CustomIcon/components/AddIcon/addIcon.tsx +22 -0
  1520. package/src/components/common/CustomIcon/components/AlertIcon/alertIcon.tsx +22 -0
  1521. package/src/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.tsx +22 -0
  1522. package/src/components/common/CustomIcon/components/CheckedIcon/checkedIcon.tsx +26 -0
  1523. package/src/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.tsx +22 -0
  1524. package/src/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.tsx +22 -0
  1525. package/src/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.tsx +22 -0
  1526. package/src/components/common/CustomIcon/components/DownloadIcon/downloadIcon.tsx +22 -0
  1527. package/src/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.tsx +22 -0
  1528. package/src/components/common/CustomIcon/components/ErrorIcon/errorIcon.tsx +22 -0
  1529. package/src/components/common/CustomIcon/components/FacebookIcon/facebookIcon.tsx +22 -0
  1530. package/src/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.tsx +22 -0
  1531. package/src/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.tsx +23 -0
  1532. package/src/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.tsx +28 -0
  1533. package/src/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.tsx +18 -0
  1534. package/src/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.tsx +22 -0
  1535. package/src/components/common/CustomIcon/components/GoogleIcon/googleIcon.tsx +34 -0
  1536. package/src/components/common/CustomIcon/components/HelpIcon/helpIcon.tsx +22 -0
  1537. package/src/components/common/CustomIcon/components/InfoIcon/infoIcon.tsx +22 -0
  1538. package/src/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.tsx +22 -0
  1539. package/src/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.tsx +22 -0
  1540. package/src/components/common/CustomIcon/components/LoadingIcon/loadingIcon.tsx +108 -0
  1541. package/src/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.tsx +22 -0
  1542. package/src/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.tsx +24 -0
  1543. package/src/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.tsx +27 -0
  1544. package/src/components/common/CustomIcon/components/RemoveIcon/removeIcon.tsx +22 -0
  1545. package/src/components/common/CustomIcon/components/SearchIcon/searchIcon.tsx +22 -0
  1546. package/src/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.tsx +22 -0
  1547. package/src/components/common/CustomIcon/components/Segment/segment.tsx +18 -0
  1548. package/src/components/common/CustomIcon/components/SlackIcon/slackIcon.tsx +22 -0
  1549. package/src/components/common/CustomIcon/components/SouthIcon/southIcon.tsx +22 -0
  1550. package/src/components/common/CustomIcon/components/SuccessIcon/successIcon.tsx +22 -0
  1551. package/src/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.tsx +27 -0
  1552. package/src/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.tsx +27 -0
  1553. package/src/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.tsx +22 -0
  1554. package/src/components/common/CustomIcon/components/WarningIcon/warningIcon.tsx +22 -0
  1555. package/src/components/common/CustomIcon/components/XIcon/xIcon.tsx +22 -0
  1556. package/src/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.tsx +22 -0
  1557. package/src/components/common/Dialog/components/DialogTitle/dialogTitle.tsx +26 -0
  1558. package/src/components/common/Dot/dot.styles.ts +11 -0
  1559. package/src/components/common/Dot/dot.tsx +10 -0
  1560. package/src/components/common/EllipsisContent/ellipsisContent.styles.ts +24 -0
  1561. package/src/components/common/EllipsisContent/ellipsisContent.tsx +204 -0
  1562. package/src/components/common/Form/components/Input/input.styles.ts +55 -0
  1563. package/src/components/common/Form/components/Input/input.tsx +37 -0
  1564. package/src/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.tsx +10 -0
  1565. package/src/components/common/Form/components/Select/select.styles.ts +26 -0
  1566. package/src/components/common/Form/components/Select/select.tsx +37 -0
  1567. package/src/components/common/Form/components/UploadFile/uploadFile.styles.ts +62 -0
  1568. package/src/components/common/Form/components/UploadFile/uploadFile.tsx +88 -0
  1569. package/src/components/common/Grid/components/GridItem/gridItem.tsx +25 -0
  1570. package/src/components/common/Grid/grid.tsx +25 -0
  1571. package/src/components/common/IconBadge/iconBadge.styles.ts +58 -0
  1572. package/src/components/common/IconBadge/iconBadge.tsx +32 -0
  1573. package/src/components/common/IconButton/components/LoadingIconButton/loadingIconButton.stories.tsx +15 -0
  1574. package/src/components/common/IconButton/components/LoadingIconButton/loadingIconButton.tsx +15 -0
  1575. package/src/components/common/IconButton/iconButton.styles.ts +90 -0
  1576. package/src/components/common/IconButton/iconButton.tsx +34 -0
  1577. package/src/components/common/Input/input.styles.ts +36 -0
  1578. package/src/components/common/Input/input.tsx +62 -0
  1579. package/src/components/common/KeyValuePairs/components/KeyElType/keyElType.tsx +21 -0
  1580. package/src/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.tsx +34 -0
  1581. package/src/components/common/KeyValuePairs/components/ValueElType/valueElType.tsx +21 -0
  1582. package/src/components/common/KeyValuePairs/keyValuePairs.tsx +45 -0
  1583. package/src/components/common/MDXMarkdown/components/Section/mdxSection.styles.ts +31 -0
  1584. package/src/components/common/Markdown/markdown.tsx +13 -0
  1585. package/src/components/common/Paper/paper.styles.ts +71 -0
  1586. package/src/components/common/Paper/paper.tsx +38 -0
  1587. package/src/components/common/RadioGroup/radioGroup.tsx +58 -0
  1588. package/src/components/common/Section/components/CollapsableSection/collapsableSection.styles.ts +38 -0
  1589. package/src/components/common/Section/components/CollapsableSection/collapsableSection.tsx +81 -0
  1590. package/src/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.tsx +11 -0
  1591. package/src/components/common/Section/components/SectionTitle/sectionTitle.stories.tsx +20 -0
  1592. package/src/components/common/Section/components/SectionTitle/sectionTitle.tsx +24 -0
  1593. package/src/components/common/Section/section.styles.ts +66 -0
  1594. package/src/components/common/Sections/sections.tsx +18 -0
  1595. package/src/components/common/Socials/socials.stories.tsx +61 -0
  1596. package/src/components/common/Socials/socials.styles.ts +5 -0
  1597. package/src/components/common/Socials/socials.tsx +53 -0
  1598. package/src/components/common/Stack/components/Divider/divider.styles.tsx +6 -0
  1599. package/src/components/common/Stack/components/Divider/divider.tsx +25 -0
  1600. package/src/components/common/Stack/stack.tsx +44 -0
  1601. package/src/components/common/StaticImage/staticImage.stories.tsx +26 -0
  1602. package/src/components/common/StaticImage/staticImage.tsx +35 -0
  1603. package/src/components/common/StatusBadge/statusBadge.stories.tsx +18 -0
  1604. package/src/components/common/StatusBadge/statusBadge.tsx +35 -0
  1605. package/src/components/common/StatusIcon/statusIcon.stories.tsx +23 -0
  1606. package/src/components/common/StatusIcon/statusIcon.styles.ts +50 -0
  1607. package/src/components/common/StatusIcon/statusIcon.tsx +33 -0
  1608. package/src/components/common/Tabs/tabs.styles.ts +48 -0
  1609. package/src/components/common/Tabs/tabs.tsx +58 -0
  1610. package/src/components/common/Tag/tag.stories.tsx +21 -0
  1611. package/src/components/common/Tag/tag.styles.ts +13 -0
  1612. package/src/components/common/Tag/tag.tsx +15 -0
  1613. package/src/components/common/Title/title.styles.ts +7 -0
  1614. package/src/components/common/Title/title.tsx +34 -0
  1615. package/src/components/common/ToggleButtonGroup/toggleButtonGroup.stories.tsx +38 -0
  1616. package/src/components/common/ToggleButtonGroup/toggleButtonGroup.tsx +87 -0
  1617. package/src/components/common/Typography/TypographyWordBreak/TypographyWordBreak.tsx +22 -0
  1618. package/src/config/config.ts +19 -0
  1619. package/src/config/entities.ts +443 -0
  1620. package/src/config/utils.ts +104 -0
  1621. package/src/entity/api/service.ts +198 -0
  1622. package/src/entity/apicf/service.ts +73 -0
  1623. package/src/entity/common/client.ts +48 -0
  1624. package/src/entity/common/service.ts +42 -0
  1625. package/src/entity/common/utils.ts +14 -0
  1626. package/src/entity/service/factory.ts +44 -0
  1627. package/src/entity/service/model.ts +72 -0
  1628. package/src/entity/tsv/service.ts +49 -0
  1629. package/src/hooks/useAsync.ts +100 -0
  1630. package/src/hooks/useAuthentication/common/constants.ts +22 -0
  1631. package/src/hooks/useAuthentication/common/entities.ts +34 -0
  1632. package/src/hooks/useAuthentication/common/utils.ts +31 -0
  1633. package/src/hooks/useAuthentication/useAuthentication.tsx +10 -0
  1634. package/src/hooks/useAuthentication/useAuthenticationComplete.ts +66 -0
  1635. package/src/hooks/useAuthentication/useAuthenticationForm.ts +125 -0
  1636. package/src/hooks/useAuthentication/useAuthenticationNIHExpiry.ts +62 -0
  1637. package/src/hooks/useAuthentication/useAuthenticationStatus.ts +49 -0
  1638. package/src/hooks/useAuthentication/useFetchGoogleProfile.ts +68 -0
  1639. package/src/hooks/useAuthentication/useFetchTerraNIHProfile.ts +93 -0
  1640. package/src/hooks/useAuthentication/useFetchTerraProfile.ts +100 -0
  1641. package/src/hooks/useAuthentication/useFetchTerraTermsOfService.ts +89 -0
  1642. package/src/hooks/useAuthentication/useTokenClient.ts +54 -0
  1643. package/src/hooks/useAuthenticationConfig.ts +18 -0
  1644. package/src/hooks/useBreakpointHelper.ts +24 -0
  1645. package/src/hooks/useCatalog.ts +17 -0
  1646. package/src/hooks/useCategoryConfigs.ts +17 -0
  1647. package/src/hooks/useCategoryFilter.ts +266 -0
  1648. package/src/hooks/useConfig.tsx +10 -0
  1649. package/src/hooks/useCurrentDetailTab.ts +29 -0
  1650. package/src/hooks/useDownloadStatus.ts +31 -0
  1651. package/src/hooks/useEntityHeadTitle.ts +62 -0
  1652. package/src/hooks/useEntityList.ts +212 -0
  1653. package/src/hooks/useEntityListRelatedView.ts +78 -0
  1654. package/src/hooks/useEntityService.ts +75 -0
  1655. package/src/hooks/useExploreMode.ts +23 -0
  1656. package/src/hooks/useExploreState.tsx +13 -0
  1657. package/src/hooks/useExportConfig.ts +16 -0
  1658. package/src/hooks/useExportToTerraResponseURL.ts +25 -0
  1659. package/src/hooks/useFeatureFlag/common/entities.ts +4 -0
  1660. package/src/hooks/useFeatureFlag/common/utils.ts +17 -0
  1661. package/src/hooks/useFeatureFlag/useFeatureFlag.ts +19 -0
  1662. package/src/hooks/useFetchEntity.tsx +81 -0
  1663. package/src/hooks/useFetchRequestURL.ts +20 -0
  1664. package/src/hooks/useFileLocation.ts +35 -0
  1665. package/src/hooks/useFileManifest/common/buildFileManifestRequestURL.ts +45 -0
  1666. package/src/hooks/useFileManifest/common/entities.ts +69 -0
  1667. package/src/hooks/useFileManifest/common/utils.ts +218 -0
  1668. package/src/hooks/useFileManifest/useFetchFilesFacets.ts +58 -0
  1669. package/src/hooks/useFileManifest/useFetchSummary.ts +46 -0
  1670. package/src/hooks/useFileManifest/useFileManifest.ts +19 -0
  1671. package/src/hooks/useFileManifest/useFileManifestDownload.ts +120 -0
  1672. package/src/hooks/useFileManifest/useFileManifestSpreadsheet.ts +95 -0
  1673. package/src/hooks/useFileManifest/useFileManifestURL.ts +12 -0
  1674. package/src/hooks/useFileManifest/useRequestFileManifest.ts +46 -0
  1675. package/src/hooks/useFileManifestState.ts +13 -0
  1676. package/src/hooks/useLayoutState.ts +13 -0
  1677. package/src/hooks/useLocalStorage/common/utils.ts +19 -0
  1678. package/src/hooks/useLocalStorage/useLocalStorage.ts +17 -0
  1679. package/src/hooks/useLocation.ts +25 -0
  1680. package/src/hooks/useRequestFileLocation.ts +159 -0
  1681. package/src/hooks/useResetableState.ts +18 -0
  1682. package/src/hooks/useResizeObserver.ts +111 -0
  1683. package/src/hooks/useScroll.ts +21 -0
  1684. package/src/hooks/useSessionTimeout.ts +34 -0
  1685. package/src/hooks/useSummary.ts +47 -0
  1686. package/src/hooks/useSystemStatus.ts +10 -0
  1687. package/src/hooks/useURLFilterParams.ts +57 -0
  1688. package/src/hooks/useUpdateURLCatalogParam.ts +21 -0
  1689. package/src/hooks/useUpdateURLSearchParams.ts +19 -0
  1690. package/src/hooks/useWindowResize.ts +47 -0
  1691. package/src/images/logo.svg +3 -0
  1692. package/src/index.ts +1 -0
  1693. package/src/providers/authentication.tsx +181 -0
  1694. package/src/providers/config.tsx +50 -0
  1695. package/src/providers/exploreState/constants.ts +28 -0
  1696. package/src/providers/exploreState/payloads/entities.ts +64 -0
  1697. package/src/providers/exploreState/utils.ts +93 -0
  1698. package/src/providers/exploreState.tsx +514 -0
  1699. package/src/providers/fileManifestState.tsx +470 -0
  1700. package/src/providers/layoutState.tsx +94 -0
  1701. package/src/providers/systemStatus.tsx +112 -0
  1702. package/src/shared/constants.ts +1 -0
  1703. package/src/shared/utils.ts +43 -0
  1704. package/src/styles/common/mixins/breakpoints.ts +20 -0
  1705. package/src/styles/common/mixins/colors.ts +68 -0
  1706. package/src/styles/common/mixins/fonts.ts +52 -0
  1707. package/src/styles/common/mixins/shadows.ts +7 -0
  1708. package/src/theme/common/breakpoints.ts +41 -0
  1709. package/src/theme/common/components.ts +1563 -0
  1710. package/src/theme/common/palette.ts +242 -0
  1711. package/src/theme/common/shadows.ts +34 -0
  1712. package/src/theme/common/typography.ts +200 -0
  1713. package/src/theme/theme.ts +125 -0
  1714. package/src/types/error.ts +21 -0
  1715. package/src/utils/database.ts +58 -0
  1716. package/src/utils/fetchQueryParams.ts +27 -0
  1717. package/src/utils/formatCountSize.ts +27 -0
  1718. package/src/utils/formatFileSize.ts +26 -0
  1719. package/src/utils/ssr.ts +5 -0
  1720. package/src/utils/url.ts +20 -0
  1721. package/src/viewModelBuilders/common/entities.ts +4 -0
  1722. package/src/viewModelBuilders/common/utils.ts +45 -0
  1723. package/src/views/ContentView/contentView.stories.tsx +105 -0
  1724. package/src/views/ContentView/contentView.tsx +26 -0
  1725. package/src/views/EntityDetailView/entityDetailView.tsx +86 -0
  1726. package/src/views/ExploreView/exploreView.tsx +337 -0
  1727. package/src/views/ExportMethodView/exportMethodView.tsx +42 -0
  1728. package/src/views/ExportView/exportView.tsx +32 -0
  1729. package/src/views/LoginView/loginView.tsx +18 -0
  1730. package/tests/authentication.test.ts +136 -0
  1731. package/tests/filterMenu.test.ts +100 -0
  1732. package/tests/tsconfig.json +7 -0
  1733. package/tests/useAuthenticationStatus.test.ts +155 -0
  1734. package/tests/viewModelBuilders_utils.test.ts +58 -0
  1735. package/tsconfig.json +22 -0
  1736. package/types/data-explorer-ui.d.ts +250 -0
  1737. package/types/global.d.ts +17 -0
@@ -0,0 +1,1563 @@
1
+ import { Components, Theme } from "@mui/material";
2
+ import { ErrorIcon } from "../../components/common/CustomIcon/components/ErrorIcon/errorIcon";
3
+ import { InfoIcon } from "../../components/common/CustomIcon/components/InfoIcon/infoIcon";
4
+ import { SuccessIcon } from "../../components/common/CustomIcon/components/SuccessIcon/successIcon";
5
+ import { WarningIcon } from "../../components/common/CustomIcon/components/WarningIcon/warningIcon";
6
+ import { DropDownIcon } from "../../components/common/Form/components/Select/components/DropDownIcon/dropDownIcon";
7
+ import { desktopUp, mobileUp, tabletUp } from "./breakpoints";
8
+ import {
9
+ alpha32,
10
+ alpha60,
11
+ alpha64,
12
+ alpha80,
13
+ black04,
14
+ black08,
15
+ white,
16
+ } from "./palette";
17
+ import { strokeBottom, strokeTop } from "./shadows";
18
+ import {
19
+ TEXT_BODY_400,
20
+ TEXT_BODY_400_2_LINES,
21
+ TEXT_BODY_500,
22
+ TEXT_BODY_LARGE_500,
23
+ TEXT_BODY_SMALL_400,
24
+ TEXT_BODY_SMALL_500,
25
+ TEXT_HEADING,
26
+ } from "./typography";
27
+
28
+ // Constants
29
+ const FLEX_START = "flex-start";
30
+
31
+ /**
32
+ * MuiAccordion Component
33
+ * @param theme - Theme.
34
+ * @returns MuiAccordion component theme styles.
35
+ */
36
+ export const MuiAccordion = (theme: Theme): Components["MuiAccordion"] => {
37
+ return {
38
+ defaultProps: {
39
+ disableGutters: true,
40
+ elevation: 0,
41
+ square: true,
42
+ },
43
+ styleOverrides: {
44
+ root: {
45
+ backgroundColor: "transparent",
46
+ boxShadow: `${strokeTop} ${theme.palette.smoke.main}, ${strokeBottom} ${theme.palette.smoke.main}`,
47
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
48
+ "&:before": {
49
+ display: "none",
50
+ },
51
+ "&:nth-of-type(n+2)": {
52
+ boxShadow: `${strokeBottom} ${theme.palette.smoke.main}`,
53
+ },
54
+ },
55
+ },
56
+ };
57
+ };
58
+
59
+ /**
60
+ * MuiAccordionDetails Component
61
+ */
62
+ export const MuiAccordionDetails: Components["MuiAccordionDetails"] = {
63
+ styleOverrides: {
64
+ root: {
65
+ marginBottom: 16,
66
+ padding: "0 32px",
67
+ },
68
+ },
69
+ };
70
+
71
+ /**
72
+ * MuiAccordionSummary Component
73
+ */
74
+ export const MuiAccordionSummary: Components["MuiAccordionSummary"] = {
75
+ styleOverrides: {
76
+ content: {
77
+ margin: "16px 0",
78
+ },
79
+ root: {
80
+ flexDirection: "row-reverse",
81
+ gap: 8,
82
+ padding: 0,
83
+ },
84
+ },
85
+ };
86
+
87
+ /**
88
+ * MuiAlert Component
89
+ * @param theme - Theme.
90
+ * @returns MuiAlert component theme styles.
91
+ */
92
+ export const MuiAlert = (theme: Theme): Components["MuiAlert"] => {
93
+ return {
94
+ defaultProps: {
95
+ iconMapping: {
96
+ error: ErrorIcon({ fontSize: "small" }),
97
+ info: InfoIcon({ fontSize: "small" }),
98
+ success: SuccessIcon({ fontSize: "small" }),
99
+ warning: WarningIcon({ fontSize: "small" }),
100
+ },
101
+ },
102
+ styleOverrides: {
103
+ icon: {
104
+ opacity: 1,
105
+ padding: "2px 0",
106
+ },
107
+ message: {
108
+ display: "grid",
109
+ gap: 4,
110
+ padding: 0,
111
+ },
112
+ root: {
113
+ ...theme.typography[TEXT_BODY_400_2_LINES],
114
+ borderRadius: 8,
115
+ boxShadow: theme.shadows[1], // elevation01
116
+ color: theme.palette.ink.main,
117
+ },
118
+ standard: {
119
+ alignItems: FLEX_START,
120
+ padding: 20,
121
+ },
122
+ standardError: {
123
+ backgroundColor: theme.palette.alert.lightest,
124
+ border: `1px solid ${theme.palette.alert.main}${alpha32}`,
125
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
126
+ "& .MuiAlert-icon": {
127
+ color: theme.palette.alert.main,
128
+ },
129
+ },
130
+ standardInfo: {
131
+ backgroundColor: theme.palette.info.lightest,
132
+ border: `1px solid ${theme.palette.info.main}${alpha32}`,
133
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
134
+ "& .MuiAlert-icon": {
135
+ color: theme.palette.info.main,
136
+ },
137
+ },
138
+ standardSuccess: {
139
+ backgroundColor: theme.palette.success.lightest,
140
+ border: `1px solid ${theme.palette.success.main}${alpha32}`,
141
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
142
+ "& .MuiAlert-icon": {
143
+ color: theme.palette.success.main,
144
+ },
145
+ },
146
+ standardWarning: {
147
+ backgroundColor: theme.palette.warning.lightest,
148
+ border: `1px solid ${theme.palette.warning.main}${alpha32}`,
149
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
150
+ "& .MuiAlert-icon": {
151
+ color: theme.palette.warning.main,
152
+ },
153
+ },
154
+ },
155
+ variants: [
156
+ {
157
+ props: { severity: "info", variant: "neutral" },
158
+ style: {
159
+ backgroundColor: theme.palette.smoke.light,
160
+ padding: 16,
161
+ },
162
+ },
163
+ {
164
+ props: { variant: "banner" },
165
+ style: {
166
+ padding: 16,
167
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
168
+ "& .MuiAlert-icon": {
169
+ padding: 0,
170
+ },
171
+ "& .MuiAlertTitle-root": {
172
+ ...theme.typography[TEXT_BODY_500],
173
+ },
174
+ },
175
+ },
176
+ {
177
+ props: { severity: "error", variant: "banner" },
178
+ style: {
179
+ backgroundColor: theme.palette.alert.lightest,
180
+ border: `1px solid ${theme.palette.alert.main}${alpha32}`,
181
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
182
+ "& .MuiAlert-icon": {
183
+ color: theme.palette.alert.main,
184
+ },
185
+ },
186
+ },
187
+ {
188
+ props: { severity: "info", variant: "banner" },
189
+ style: {
190
+ backgroundColor: theme.palette.info.lightest,
191
+ border: `1px solid ${theme.palette.info.main}${alpha32}`,
192
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
193
+ "& .MuiAlert-icon": {
194
+ color: theme.palette.info.main,
195
+ },
196
+ },
197
+ },
198
+ {
199
+ props: { severity: "success", variant: "banner" },
200
+ style: {
201
+ backgroundColor: theme.palette.success.lightest,
202
+ border: `1px solid ${theme.palette.success.main}${alpha32}`,
203
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
204
+ "& .MuiAlert-icon": {
205
+ color: theme.palette.success.main,
206
+ },
207
+ },
208
+ },
209
+ {
210
+ props: { severity: "warning", variant: "banner" },
211
+ style: {
212
+ backgroundColor: theme.palette.warning.lightest,
213
+ border: `1px solid ${theme.palette.warning.main}${alpha32}`,
214
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
215
+ "& .MuiAlert-icon": {
216
+ color: theme.palette.warning.main,
217
+ },
218
+ },
219
+ },
220
+ ],
221
+ };
222
+ };
223
+
224
+ /**
225
+ * MuiAlertTitle Component
226
+ * @param theme - Theme.
227
+ * @returns MuiAlertTitle component theme styles.
228
+ */
229
+ export const MuiAlertTitle = (theme: Theme): Components["MuiAlertTitle"] => {
230
+ return {
231
+ styleOverrides: {
232
+ root: {
233
+ ...theme.typography[TEXT_BODY_LARGE_500],
234
+ margin: 0,
235
+ },
236
+ },
237
+ };
238
+ };
239
+
240
+ /**
241
+ * MuiAppBar Component
242
+ */
243
+ export const MuiAppBar: Components["MuiAppBar"] = {
244
+ defaultProps: {
245
+ color: "default",
246
+ elevation: 0,
247
+ position: "static",
248
+ },
249
+ styleOverrides: {
250
+ colorDefault: {
251
+ backgroundColor: white,
252
+ },
253
+ },
254
+ };
255
+
256
+ /**
257
+ * MuiBackdrop Component
258
+ * @param theme - Theme.
259
+ * @returns MuiBackdrop component theme styles.
260
+ */
261
+ export const MuiBackdrop = (theme: Theme): Components["MuiBackdrop"] => {
262
+ return {
263
+ styleOverrides: {
264
+ invisible: {
265
+ backgroundColor: "transparent",
266
+ },
267
+ root: {
268
+ backgroundColor: `${theme.palette.ink.main}${alpha80}`,
269
+ },
270
+ },
271
+ };
272
+ };
273
+
274
+ /**
275
+ * MuiBreadcrumbs Component
276
+ * @param theme - Theme.
277
+ * @returns MuiBreadcrumbs component theme styles.
278
+ */
279
+ export const MuiBreadcrumbs = (theme: Theme): Components["MuiBreadcrumbs"] => {
280
+ return {
281
+ styleOverrides: {
282
+ li: {
283
+ ...theme.typography[TEXT_BODY_SMALL_400],
284
+ margin: 0,
285
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
286
+ "& .MuiLink-root": {
287
+ color: "inherit",
288
+ },
289
+ "& .MuiTypography-root": {
290
+ color: "inherit",
291
+ font: "inherit",
292
+ },
293
+ },
294
+ ol: {
295
+ gap: 2,
296
+ },
297
+ root: {
298
+ color: theme.palette.ink.light,
299
+ },
300
+ separator: {
301
+ margin: 0,
302
+ },
303
+ },
304
+ };
305
+ };
306
+
307
+ /**
308
+ * MuiButton Component
309
+ * @param theme - Theme.
310
+ * @returns MuiButton component theme styles.
311
+ */
312
+ export const MuiButton = (theme: Theme): Components["MuiButton"] => {
313
+ return {
314
+ defaultProps: {
315
+ disableRipple: true,
316
+ disableTouchRipple: true,
317
+ },
318
+ styleOverrides: {
319
+ containedPrimary: {
320
+ backgroundColor: theme.palette.primary.main,
321
+ boxShadow: `0 1px 0 0 ${theme.palette.primary.dark}`,
322
+ color: theme.palette.common.white,
323
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
324
+ "&:hover": {
325
+ backgroundColor: theme.palette.primary.dark,
326
+ boxShadow: `0 1px 0 0 ${theme.palette.primary.dark}`,
327
+ },
328
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
329
+ "&:active": {
330
+ backgroundColor: theme.palette.primary.dark,
331
+ boxShadow: "none",
332
+ },
333
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
334
+ "&.Mui-disabled": {
335
+ backgroundColor: theme.palette.primary.main,
336
+ boxShadow: `0 1px 0 0 ${theme.palette.primary.dark}`,
337
+ color: theme.palette.common.white,
338
+ opacity: 0.5,
339
+ },
340
+ },
341
+ containedSecondary: {
342
+ backgroundColor: theme.palette.common.white,
343
+ boxShadow: `inset 0 0 0 1px ${theme.palette.smoke.dark}, 0 1px 0 0 ${black08}`,
344
+ color: theme.palette.ink.main,
345
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
346
+ "&.Mui-focusVisible": {
347
+ backgroundColor: theme.palette.common.white,
348
+ boxShadow: `inset 0 0 0 1px ${theme.palette.smoke.dark}, 0 1px 0 0 ${black08}`,
349
+ },
350
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
351
+ "&:hover": {
352
+ backgroundColor: theme.palette.smoke.lightest,
353
+ boxShadow: `inset 0 0 0 1px ${theme.palette.smoke.dark}, 0 1px 0 0 ${black08}`,
354
+ },
355
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
356
+ "&:active": {
357
+ backgroundColor: theme.palette.smoke.lightest,
358
+ boxShadow: `inset 0 0 0 1px ${theme.palette.smoke.dark}`,
359
+ },
360
+ "&:disabled": {
361
+ backgroundColor: theme.palette.common.white,
362
+ boxShadow: `inset 0 0 0 1px ${theme.palette.smoke.dark}, 0 1px 0 0 ${black08}`,
363
+ color: theme.palette.ink.main,
364
+ opacity: 0.5,
365
+ },
366
+ },
367
+ endIcon: {
368
+ margin: 0,
369
+ },
370
+ outlinedSecondary: {
371
+ backgroundColor: "transparent",
372
+ border: "none",
373
+ boxShadow: `inset 0 0 0 1px ${theme.palette.ink.main}${alpha32}`,
374
+ color: theme.palette.ink.main,
375
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
376
+ "&:hover": {
377
+ backgroundColor: "transparent",
378
+ border: "none",
379
+ boxShadow: `inset 0 0 0 1px ${theme.palette.ink.main}${alpha64}`,
380
+ },
381
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
382
+ "&:disabled": {
383
+ backgroundColor: "transparent",
384
+ border: "none",
385
+ boxShadow: `inset 0 0 0 1px ${theme.palette.ink.main}${alpha32}`,
386
+ color: theme.palette.ink.main,
387
+ opacity: 0.5,
388
+ },
389
+ },
390
+ root: {
391
+ ...theme.typography[TEXT_BODY_500],
392
+ gap: 4,
393
+ letterSpacing: "normal",
394
+ padding: "10px 16px",
395
+ textTransform: "capitalize",
396
+ },
397
+ sizeSmall: {
398
+ padding: "6px 12px",
399
+ },
400
+ startIcon: {
401
+ marginRight: 0,
402
+ },
403
+ text: {
404
+ alignSelf: "center",
405
+ minWidth: 0,
406
+ padding: 0,
407
+ },
408
+ textPrimary: {
409
+ color: theme.palette.primary.main,
410
+ },
411
+ },
412
+ variants: [
413
+ {
414
+ props: {
415
+ variant: "nav",
416
+ },
417
+ style: {
418
+ ...theme.typography[TEXT_BODY_500],
419
+ color: theme.palette.ink.main,
420
+ minWidth: 0,
421
+ textTransform: "capitalize",
422
+ whiteSpace: "nowrap",
423
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
424
+ "&:hover": {
425
+ backgroundColor: theme.palette.smoke.light,
426
+ },
427
+ },
428
+ },
429
+ ],
430
+ };
431
+ };
432
+
433
+ /**
434
+ * MuiButtonBase Component
435
+ * @param theme - Theme.
436
+ * @returns MuiButtonBase component theme styles.
437
+ */
438
+ export const MuiButtonBase = (theme: Theme): Components["MuiButtonBase"] => {
439
+ return {
440
+ defaultProps: {
441
+ disableRipple: true,
442
+ disableTouchRipple: true,
443
+ },
444
+ styleOverrides: {
445
+ root: {
446
+ flex: "none",
447
+ fontFamily: theme.typography.fontFamily,
448
+ },
449
+ },
450
+ };
451
+ };
452
+
453
+ /**
454
+ * MuiButtonGroup Component
455
+ * @param theme - Theme.
456
+ * @returns MuiButtonGroup component theme styles.
457
+ */
458
+ export const MuiButtonGroup = (theme: Theme): Components["MuiButtonGroup"] => {
459
+ return {
460
+ defaultProps: {
461
+ disableElevation: true,
462
+ disableRipple: true,
463
+ },
464
+ styleOverrides: {
465
+ grouped: {
466
+ minWidth: 0,
467
+ padding: "6px 8px",
468
+ },
469
+ groupedContainedPrimary: {
470
+ borderColor: theme.palette.primary.dark,
471
+ boxShadow: `0 1px 0 0 ${theme.palette.primary.dark}`,
472
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
473
+ "&:hover": {
474
+ boxShadow: `0 1px 0 0 ${theme.palette.primary.dark}`,
475
+ },
476
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
477
+ "&:active": {
478
+ boxShadow: "none",
479
+ },
480
+ },
481
+ },
482
+ };
483
+ };
484
+
485
+ /**
486
+ * MuiCard Component
487
+ */
488
+ export const MuiCard: Components["MuiCard"] = {
489
+ styleOverrides: {
490
+ root: {
491
+ borderRadius: 8,
492
+ },
493
+ },
494
+ };
495
+
496
+ /**
497
+ * MuiCheckbox Component
498
+ * @param theme - Theme.
499
+ * @returns MuiCheckbox component theme styles.
500
+ */
501
+ export const MuiCheckbox = (theme: Theme): Components["MuiCheckbox"] => {
502
+ return {
503
+ defaultProps: {
504
+ size: "xsmall",
505
+ },
506
+ styleOverrides: {
507
+ root: {
508
+ color: theme.palette.smoke.dark,
509
+ padding: 0,
510
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
511
+ "&.Mui-disabled": {
512
+ color: theme.palette.smoke.dark,
513
+ },
514
+ },
515
+ },
516
+ variants: [
517
+ {
518
+ props: {
519
+ size: "xsmall",
520
+ },
521
+ style: {
522
+ fontSize: "18px",
523
+ },
524
+ },
525
+ ],
526
+ };
527
+ };
528
+
529
+ /**
530
+ * MuiChip Component
531
+ * @param theme - Theme.
532
+ * @returns MuiChip component theme styles.
533
+ */
534
+ export const MuiChip = (theme: Theme): Components["MuiChip"] => {
535
+ return {
536
+ defaultProps: {
537
+ size: "small",
538
+ },
539
+ styleOverrides: {
540
+ deleteIcon: {
541
+ color: "inherit",
542
+ margin: "0 -2px 0 0",
543
+ },
544
+ },
545
+ variants: [
546
+ {
547
+ props: { color: "default" },
548
+ style: {
549
+ backgroundColor: theme.palette.smoke.main,
550
+ color: theme.palette.ink.main,
551
+ },
552
+ },
553
+ {
554
+ props: { color: "error" },
555
+ style: {
556
+ backgroundColor: theme.palette.alert.light,
557
+ color: theme.palette.alert.main,
558
+ },
559
+ },
560
+ {
561
+ props: { color: "info" },
562
+ style: {
563
+ backgroundColor: theme.palette.info.light,
564
+ color: theme.palette.info.main,
565
+ },
566
+ },
567
+ {
568
+ props: { color: "success" },
569
+ style: {
570
+ backgroundColor: theme.palette.success.light,
571
+ color: theme.palette.success.main,
572
+ },
573
+ },
574
+ {
575
+ props: { color: "warning" },
576
+ style: {
577
+ backgroundColor: theme.palette.warning.light,
578
+ color: theme.palette.warning.main,
579
+ },
580
+ },
581
+ {
582
+ props: { variant: "filterTag" },
583
+ style: {
584
+ ...theme.typography[TEXT_BODY_SMALL_500],
585
+ cursor: "pointer", // "pointer" cursor required to restore "clickable" ui
586
+ gap: 2,
587
+ height: 24,
588
+ justifySelf: FLEX_START,
589
+ padding: "0 8px",
590
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
591
+ "& .MuiChip-label": {
592
+ padding: 0,
593
+ },
594
+ },
595
+ },
596
+ {
597
+ props: { variant: "ntag" },
598
+ style: {
599
+ ...theme.typography[TEXT_BODY_SMALL_400],
600
+ backgroundColor: theme.palette.smoke.main,
601
+ boxShadow: `0 0 0 2px ${white}`,
602
+ height: 24,
603
+ },
604
+ },
605
+ {
606
+ props: { variant: "status" },
607
+ style: {
608
+ ...theme.typography[TEXT_BODY_SMALL_500],
609
+ boxShadow: `0 0 0 2px ${white}`,
610
+ height: 20,
611
+ maxWidth: "fit-content",
612
+ },
613
+ },
614
+ ],
615
+ };
616
+ };
617
+
618
+ /**
619
+ * MuiCssBaseline Component
620
+ * @param theme - Theme.
621
+ * @returns MuiCssBaseline component theme styles.
622
+ */
623
+ export const MuiCssBaseline = (theme: Theme): Components["MuiCssBaseline"] => {
624
+ return {
625
+ styleOverrides: {
626
+ a: {
627
+ color: theme.palette.primary.main,
628
+ textDecoration: "none",
629
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
630
+ "&:hover": {
631
+ textDecoration: "underline",
632
+ },
633
+ },
634
+ body: {
635
+ fontFamily: theme.typography.fontFamily,
636
+ },
637
+ code: {
638
+ ...theme.typography[TEXT_BODY_400_2_LINES],
639
+ fontFamily: "Roboto Mono, monospace",
640
+ fontSize: 12,
641
+ },
642
+ img: {
643
+ display: "block",
644
+ },
645
+ p: {
646
+ margin: "0 0 8px",
647
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
648
+ "&:last-child": {
649
+ margin: 0,
650
+ },
651
+ },
652
+ pre: {
653
+ margin: 0,
654
+ whiteSpace: "pre-wrap",
655
+ wordBreak: "break-word",
656
+ },
657
+ strong: {
658
+ fontWeight: 500,
659
+ },
660
+ },
661
+ };
662
+ };
663
+
664
+ /**
665
+ * MuiDialog Component
666
+ * @param theme - Theme.
667
+ * @returns MuiDialog component theme styles.
668
+ */
669
+ export const MuiDialog = (theme: Theme): Components["MuiDialog"] => {
670
+ return {
671
+ styleOverrides: {
672
+ paper: {
673
+ boxShadow: theme.shadows[2], // elevation02
674
+ },
675
+ root: {
676
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
677
+ "& .MuiBackdrop-root": {
678
+ backgroundColor: `${theme.palette.ink.main}${alpha60}`,
679
+ },
680
+ },
681
+ },
682
+ };
683
+ };
684
+
685
+ /**
686
+ * MuiDialogActions Component
687
+ */
688
+ export const MuiDialogActions: Components["MuiDialogActions"] = {
689
+ styleOverrides: {
690
+ root: {
691
+ padding: 20,
692
+ },
693
+ },
694
+ };
695
+
696
+ /**
697
+ * MuiDialogContent Component
698
+ * @param theme - Theme.
699
+ * @returns MuiDialogContent component theme styles.
700
+ */
701
+ export const MuiDialogContent = (
702
+ theme: Theme
703
+ ): Components["MuiDialogContent"] => {
704
+ return {
705
+ styleOverrides: {
706
+ root: {
707
+ borderColor: theme.palette.smoke.main,
708
+ padding: 20,
709
+ },
710
+ },
711
+ };
712
+ };
713
+
714
+ /**
715
+ * MuiDialogTitle Component
716
+ * @param theme - Theme.
717
+ * @returns MuiDialogTitle component theme styles.
718
+ */
719
+ export const MuiDialogTitle = (theme: Theme): Components["MuiDialogTitle"] => {
720
+ return {
721
+ styleOverrides: {
722
+ root: {
723
+ ...theme.typography[TEXT_HEADING],
724
+ alignItems: "center",
725
+ display: "grid",
726
+ gridAutoFlow: "column",
727
+ padding: 20,
728
+ [tabletUp]: {},
729
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
730
+ "& .MuiIconButton-edgeEnd": {
731
+ alignSelf: FLEX_START,
732
+ justifySelf: "flex-end",
733
+ },
734
+ },
735
+ },
736
+ };
737
+ };
738
+
739
+ /**
740
+ * MuiDivider Component
741
+ * @param theme - Theme.
742
+ * @returns MuiDivider component theme styles.
743
+ */
744
+ export const MuiDivider = (theme: Theme): Components["MuiDivider"] => {
745
+ return {
746
+ styleOverrides: {
747
+ root: {
748
+ borderColor: theme.palette.smoke.main,
749
+ },
750
+ },
751
+ };
752
+ };
753
+
754
+ /**
755
+ * MuiDrawer Component
756
+ */
757
+ export const MuiDrawer: Components["MuiDrawer"] = {
758
+ styleOverrides: {
759
+ paper: {
760
+ overflowY: "visible", // required; allows backdrop button to render outside of drawer container
761
+ },
762
+ },
763
+ };
764
+
765
+ /**
766
+ * MuiFormControlLabel Component
767
+ * @param theme - Theme.
768
+ * @returns MuiFormControlLabel component theme styles.
769
+ */
770
+ export const MuiFormControlLabel = (
771
+ theme: Theme
772
+ ): Components["MuiFormControlLabel"] => {
773
+ return {
774
+ styleOverrides: {
775
+ label: {
776
+ ...theme.typography[TEXT_BODY_400],
777
+ },
778
+ root: {
779
+ gap: 8,
780
+ margin: 0,
781
+ },
782
+ },
783
+ };
784
+ };
785
+
786
+ /**
787
+ * MuiFormGroup Component
788
+ */
789
+ export const MuiFormGroup: Components["MuiFormGroup"] = {
790
+ styleOverrides: {
791
+ root: {
792
+ alignItems: FLEX_START,
793
+ gap: 12,
794
+ },
795
+ },
796
+ };
797
+
798
+ /**
799
+ * MuiFormHelperText Component
800
+ * @param theme - Theme.
801
+ * @returns MuiFormHelperText component theme styles.
802
+ */
803
+ export const MuiFormHelperText = (
804
+ theme: Theme
805
+ ): Components["MuiFormHelperText"] => {
806
+ return {
807
+ styleOverrides: {
808
+ root: {
809
+ ...theme.typography[TEXT_BODY_SMALL_400],
810
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
811
+ "&.Mui-error": {
812
+ color: theme.palette.alert.main,
813
+ },
814
+ },
815
+ },
816
+ };
817
+ };
818
+
819
+ /**
820
+ * MuiIconButton Component
821
+ * @param theme - Theme.
822
+ * @returns MuiIconButton component theme styles.
823
+ */
824
+ export const MuiIconButton = (theme: Theme): Components["MuiIconButton"] => {
825
+ return {
826
+ defaultProps: {
827
+ disableRipple: true,
828
+ },
829
+ styleOverrides: {
830
+ root: {
831
+ borderRadius: 4,
832
+ },
833
+ sizeLarge: {
834
+ padding: 10,
835
+ },
836
+ sizeSmall: {
837
+ padding: 6,
838
+ },
839
+ },
840
+ variants: [
841
+ {
842
+ props: {
843
+ color: "ink",
844
+ },
845
+ style: {
846
+ color: theme.palette.ink.main,
847
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
848
+ "&:hover": {
849
+ backgroundColor: theme.palette.smoke.light,
850
+ },
851
+ },
852
+ },
853
+ {
854
+ props: {
855
+ color: "inkLight",
856
+ },
857
+ style: {
858
+ color: theme.palette.ink.light,
859
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
860
+ "&:hover": {
861
+ backgroundColor: theme.palette.smoke.light,
862
+ },
863
+ },
864
+ },
865
+ {
866
+ props: {
867
+ edge: "end",
868
+ size: "small",
869
+ },
870
+ style: {
871
+ marginRight: -6,
872
+ },
873
+ },
874
+ {
875
+ props: {
876
+ size: "xlarge",
877
+ },
878
+ style: {
879
+ padding: 14,
880
+ },
881
+ },
882
+ {
883
+ props: {
884
+ size: "xsmall",
885
+ },
886
+ style: {
887
+ padding: 4,
888
+ },
889
+ },
890
+ {
891
+ props: {
892
+ edge: "end",
893
+ size: "xsmall",
894
+ },
895
+ style: {
896
+ marginRight: -4,
897
+ },
898
+ },
899
+ {
900
+ props: {
901
+ size: "xxsmall",
902
+ },
903
+ style: {
904
+ padding: 0,
905
+ },
906
+ },
907
+ ],
908
+ };
909
+ };
910
+
911
+ /**
912
+ * MuiInputBase Component
913
+ * @param theme - Theme.
914
+ * @returns MuiInputBase component theme styles.
915
+ */
916
+ export const MuiInputBase = (theme: Theme): Components["MuiInputBase"] => {
917
+ return {
918
+ styleOverrides: {
919
+ adornedStart: {
920
+ gap: 8,
921
+ },
922
+ multiline: {
923
+ height: "unset",
924
+ },
925
+ root: {
926
+ ...theme.typography[TEXT_BODY_400],
927
+ fontSize: 16, // overrides default 14px to prevent IOS zoom on focus.
928
+ height: 40,
929
+ letterSpacing: "normal",
930
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
931
+ [tabletUp]: {
932
+ fontSize: theme.typography[TEXT_BODY_400].fontSize,
933
+ },
934
+ },
935
+ },
936
+ };
937
+ };
938
+
939
+ /**
940
+ * MuiLink Component
941
+ */
942
+ export const MuiLink: Components["MuiLink"] = {
943
+ defaultProps: {
944
+ underline: "hover",
945
+ },
946
+ };
947
+
948
+ /**
949
+ * MuiListItemButton Component
950
+ * @param theme - Theme.
951
+ * @returns MuiListItemButton component theme styles.
952
+ */
953
+ export const MuiListItemButton = (
954
+ theme: Theme
955
+ ): Components["MuiListItemButton"] => {
956
+ return {
957
+ styleOverrides: {
958
+ root: {
959
+ ...theme.typography[TEXT_BODY_400],
960
+ minHeight: "unset",
961
+ padding: "10px 16px",
962
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
963
+ "&:hover": {
964
+ backgroundColor: theme.palette.smoke.light,
965
+ },
966
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
967
+ "&.Mui-selected": {
968
+ backgroundColor: "unset",
969
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
970
+ "&:hover": {
971
+ backgroundColor: theme.palette.smoke.light,
972
+ },
973
+ },
974
+ },
975
+ },
976
+ };
977
+ };
978
+
979
+ /**
980
+ * MuiListItemText Component
981
+ */
982
+ export const MuiListItemText: Components["MuiListItemText"] = {
983
+ styleOverrides: {
984
+ root: {
985
+ margin: 0,
986
+ },
987
+ },
988
+ };
989
+
990
+ /**
991
+ * MuiListSubheader Component
992
+ * @param theme - Theme.
993
+ * @returns MuiListSubheader component theme styles.
994
+ */
995
+ export const MuiListSubheader = (
996
+ theme: Theme
997
+ ): Components["MuiListSubheader"] => {
998
+ return {
999
+ defaultProps: { disableSticky: true },
1000
+ styleOverrides: {
1001
+ root: {
1002
+ ...theme.typography[TEXT_BODY_500],
1003
+ color: theme.palette.ink.main,
1004
+ },
1005
+ },
1006
+ };
1007
+ };
1008
+
1009
+ /**
1010
+ * MuiMenuItem Component
1011
+ * @param theme - Theme.
1012
+ * @returns MuiMenuItem component theme styles.
1013
+ */
1014
+ export const MuiMenuItem = (theme: Theme): Components["MuiMenuItem"] => {
1015
+ return {
1016
+ defaultProps: { disableRipple: true },
1017
+ styleOverrides: {
1018
+ root: {
1019
+ ...theme.typography[TEXT_BODY_400],
1020
+ minHeight: "unset",
1021
+ padding: "10px 16px",
1022
+ },
1023
+ },
1024
+ };
1025
+ };
1026
+
1027
+ /**
1028
+ * MuiOutlinedInput Component
1029
+ * @param theme - Theme.
1030
+ * @returns MuiOutlinedInput component theme styles.
1031
+ */
1032
+ export const MuiOutlinedInput = (
1033
+ theme: Theme
1034
+ ): Components["MuiOutlinedInput"] => {
1035
+ return {
1036
+ styleOverrides: {
1037
+ input: {
1038
+ color: theme.palette.ink.light,
1039
+ height: 20,
1040
+ padding: "10px 14px 10px 0",
1041
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1042
+ "&:focus": {
1043
+ color: theme.palette.ink.main,
1044
+ },
1045
+ },
1046
+ notchedOutline: {
1047
+ borderColor: theme.palette.smoke.dark,
1048
+ },
1049
+ root: {
1050
+ backgroundColor: white,
1051
+ boxShadow: `inset 0 2px 0 0 ${black04}`,
1052
+ paddingLeft: 12,
1053
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1054
+ "& .MuiSvgIcon-root": {
1055
+ color: theme.palette.ink.light, // Adornment e.g. "SearchIcon".
1056
+ },
1057
+ "&:hover": {
1058
+ "& .MuiOutlinedInput-notchedOutline": {
1059
+ borderColor: theme.palette.smoke.dark,
1060
+ },
1061
+ },
1062
+ // eslint-disable-next-line sort-keys -- disabling key order for specificity
1063
+ "&.Mui-focused": {
1064
+ "& .MuiOutlinedInput-notchedOutline": {
1065
+ borderColor: theme.palette.ink.main,
1066
+ borderWidth: 1,
1067
+ },
1068
+ "& .MuiSvgIcon-root": {
1069
+ color: theme.palette.ink.main, // Adornment e.g. "SearchIcon".
1070
+ },
1071
+ },
1072
+ // eslint-disable-next-line sort-keys -- disabling key order for specificity
1073
+ "&.Mui-disabled": {
1074
+ "& .MuiOutlinedInput-notchedOutline": {
1075
+ borderColor: theme.palette.smoke.dark,
1076
+ borderWidth: 1,
1077
+ },
1078
+ "& .MuiSvgIcon-root": {
1079
+ color: theme.palette.ink.light,
1080
+ },
1081
+ },
1082
+ "&.Mui-error": {
1083
+ backgroundColor: theme.palette.alert.lightest,
1084
+ // eslint-disable-next-line sort-keys -- disabling key order for specificity
1085
+ "& .MuiOutlinedInput-notchedOutline": {
1086
+ borderColor: theme.palette.alert.main,
1087
+ borderWidth: 1,
1088
+ },
1089
+ },
1090
+ },
1091
+ },
1092
+ };
1093
+ };
1094
+
1095
+ /**
1096
+ * MuiPaper Component
1097
+ * @param theme - Theme.
1098
+ * @returns MuiPaper component theme styles.
1099
+ */
1100
+ export const MuiPaper = (theme: Theme): Components["MuiPaper"] => {
1101
+ return {
1102
+ variants: [
1103
+ {
1104
+ props: { variant: "footer" },
1105
+ style: {
1106
+ backgroundColor: theme.palette.smoke.light,
1107
+ boxShadow: `${strokeTop} ${theme.palette.smoke.main}, ${strokeBottom} ${theme.palette.smoke.main}`,
1108
+ },
1109
+ },
1110
+ {
1111
+ props: { variant: "menu" },
1112
+ style: {
1113
+ borderColor: theme.palette.smoke.dark,
1114
+ borderRadius: 8,
1115
+ borderStyle: "solid",
1116
+ borderWidth: 1,
1117
+ boxShadow: theme.shadows[2], // elevation02
1118
+ },
1119
+ },
1120
+ {
1121
+ props: { variant: "panel" },
1122
+ style: {
1123
+ borderColor: theme.palette.smoke.main,
1124
+ borderStyle: "solid",
1125
+ borderWidth: 1,
1126
+ boxShadow: theme.shadows[1], // elevation01
1127
+ },
1128
+ },
1129
+ {
1130
+ props: { variant: "searchbar" },
1131
+ style: {
1132
+ alignSelf: FLEX_START,
1133
+ borderColor: theme.palette.smoke.main,
1134
+ borderRadius: 0,
1135
+ borderStyle: "solid",
1136
+ borderWidth: "0 0 1px 0",
1137
+ boxShadow: theme.shadows[1], // elevation01,
1138
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1139
+ "&.MuiDialog-paper": {
1140
+ marginLeft: 0,
1141
+ marginRight: 0,
1142
+ maxWidth: "100%",
1143
+ width: "100%",
1144
+ },
1145
+ },
1146
+ },
1147
+ ],
1148
+ };
1149
+ };
1150
+
1151
+ /**
1152
+ * MuiRadio Component
1153
+ * @param theme - Theme.
1154
+ * @returns MuiRadio component theme styles.
1155
+ */
1156
+ export const MuiRadio = (theme: Theme): Components["MuiRadio"] => {
1157
+ return {
1158
+ defaultProps: {
1159
+ disableRipple: true,
1160
+ },
1161
+ styleOverrides: {
1162
+ root: {
1163
+ color: theme.palette.smoke.dark,
1164
+ padding: 0,
1165
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1166
+ "&.Mui-disabled": {
1167
+ color: theme.palette.smoke.dark,
1168
+ opacity: "50%",
1169
+ },
1170
+ "&.MuiRadio-colorDefault": {
1171
+ color: theme.palette.ink.light,
1172
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1173
+ "&.Mui-disabled": {
1174
+ color: theme.palette.smoke.main,
1175
+ opacity: "100%",
1176
+ },
1177
+ },
1178
+ "&:hover": {
1179
+ backgroundColor: "transparent",
1180
+ },
1181
+ },
1182
+ },
1183
+ };
1184
+ };
1185
+
1186
+ /**
1187
+ * MuiSelect Component
1188
+ */
1189
+ export const MuiSelect: Components["MuiSelect"] = {
1190
+ defaultProps: {
1191
+ IconComponent: DropDownIcon,
1192
+ },
1193
+ styleOverrides: {
1194
+ select: {
1195
+ minHeight: "unset",
1196
+ paddingRight: "36px !important", // Overrides MuiSelect css selector specificity.
1197
+ },
1198
+ },
1199
+ };
1200
+
1201
+ /**
1202
+ * MuiSvgIcon Component
1203
+ * @param theme - Theme.
1204
+ * @returns MuiSvgIcon component theme styles.
1205
+ */
1206
+ export const MuiSvgIcon = (theme: Theme): Components["MuiSvgIcon"] => {
1207
+ return {
1208
+ styleOverrides: {
1209
+ fontSizeLarge: {
1210
+ fontSize: "32px",
1211
+ },
1212
+ fontSizeSmall: {
1213
+ fontSize: "20px",
1214
+ },
1215
+ root: {
1216
+ "&.MuiSelect-icon": {
1217
+ color: theme.palette.ink.main,
1218
+ right: 8,
1219
+ },
1220
+ },
1221
+ },
1222
+ variants: [
1223
+ {
1224
+ props: {
1225
+ color: "inkLight",
1226
+ },
1227
+ style: {
1228
+ color: theme.palette.ink.light,
1229
+ },
1230
+ },
1231
+ {
1232
+ props: {
1233
+ color: "inkMain",
1234
+ },
1235
+ style: {
1236
+ color: theme.palette.ink.main,
1237
+ },
1238
+ },
1239
+ {
1240
+ props: {
1241
+ fontSize: "medium",
1242
+ },
1243
+ style: {
1244
+ fontSize: "24px",
1245
+ },
1246
+ },
1247
+ {
1248
+ props: {
1249
+ fontSize: "xsmall",
1250
+ },
1251
+ style: {
1252
+ fontSize: "18px",
1253
+ },
1254
+ },
1255
+ {
1256
+ props: {
1257
+ fontSize: "xxlarge",
1258
+ },
1259
+ style: {
1260
+ fontSize: "40px",
1261
+ },
1262
+ },
1263
+ {
1264
+ props: {
1265
+ fontSize: "xxsmall",
1266
+ },
1267
+ style: {
1268
+ fontSize: "16px",
1269
+ },
1270
+ },
1271
+ ],
1272
+ };
1273
+ };
1274
+
1275
+ /**
1276
+ * MuiTab Component
1277
+ * @param theme - Theme.
1278
+ * @returns MuiTab component theme styles.
1279
+ */
1280
+ export const MuiTab = (theme: Theme): Components["MuiTab"] => {
1281
+ return {
1282
+ styleOverrides: {
1283
+ labelIcon: {
1284
+ gap: 8,
1285
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1286
+ "& > img": {
1287
+ maxHeight: 20, // Tab image max height.
1288
+ },
1289
+ },
1290
+ root: {
1291
+ ...theme.typography[TEXT_BODY_500],
1292
+ color: theme.palette.ink.light,
1293
+ marginBottom: 3,
1294
+ minHeight: "unset",
1295
+ minWidth: "unset",
1296
+ opacity: 1,
1297
+ padding: 12,
1298
+ textTransform: "capitalize",
1299
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1300
+ "&.Mui-selected": {
1301
+ color: theme.palette.ink.main,
1302
+ },
1303
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1304
+ "& > .MuiTab-iconWrapper": {
1305
+ marginRight: 0,
1306
+ },
1307
+ },
1308
+ },
1309
+ };
1310
+ };
1311
+
1312
+ /**
1313
+ * MuiTableCell Component
1314
+ * @param theme - Theme.
1315
+ * @returns MuiTableCell component theme styles.
1316
+ */
1317
+ export const MuiTableCell = (theme: Theme): Components["MuiTableCell"] => {
1318
+ return {
1319
+ styleOverrides: {
1320
+ body: {
1321
+ ...theme.typography[TEXT_BODY_400],
1322
+ },
1323
+ head: {
1324
+ ...theme.typography[TEXT_BODY_SMALL_500],
1325
+ padding: "20px",
1326
+ },
1327
+ root: {
1328
+ padding: "18px 20px",
1329
+ },
1330
+ sizeSmall: {
1331
+ padding: "14px 20px",
1332
+ },
1333
+ stickyHeader: {
1334
+ boxShadow: `0 1px 0 ${theme.palette.smoke.main}`,
1335
+ },
1336
+ },
1337
+ };
1338
+ };
1339
+
1340
+ /**
1341
+ * MuiTableSortLabel Component
1342
+ */
1343
+ export const MuiTableSortLabel: Components["MuiTableSortLabel"] = {
1344
+ styleOverrides: {
1345
+ icon: {
1346
+ fontSize: 20,
1347
+ margin: 0,
1348
+ transition: "none",
1349
+ },
1350
+ root: {
1351
+ flex: 1,
1352
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1353
+ "&.Mui-active": {
1354
+ color: "inherit",
1355
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1356
+ "& .MuiTableSortLabel-icon": {
1357
+ color: "inherit",
1358
+ },
1359
+ },
1360
+ "&:hover": {
1361
+ color: "inherit",
1362
+ opacity: 0.6,
1363
+ },
1364
+ },
1365
+ },
1366
+ };
1367
+
1368
+ /**
1369
+ * MuiTabs Component
1370
+ * @param theme - Theme.
1371
+ * @returns MuiTabs component theme styles.
1372
+ */
1373
+ export const MuiTabs = (theme: Theme): Components["MuiTabs"] => {
1374
+ return {
1375
+ defaultProps: {
1376
+ textColor: "inherit",
1377
+ variant: "scrollable",
1378
+ },
1379
+ styleOverrides: {
1380
+ flexContainer: {
1381
+ gap: 8,
1382
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1383
+ "&:not(.MuiTabs-flexContainerVertical)": {
1384
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1385
+ ".MuiTab-root": {
1386
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1387
+ "&:hover": {
1388
+ color: theme.palette.ink.main,
1389
+ overflow: "visible",
1390
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1391
+ "&:after": {
1392
+ backgroundColor: theme.palette.smoke.dark,
1393
+ borderRadius: "12px 12px 0 0",
1394
+ bottom: -3,
1395
+ content: '""',
1396
+ height: 3,
1397
+ left: 0,
1398
+ position: "absolute",
1399
+ width: "100%",
1400
+ },
1401
+ },
1402
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1403
+ "&.Mui-selected": {
1404
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1405
+ "&:hover": {
1406
+ overflow: "unset",
1407
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1408
+ "&:after": {
1409
+ content: "none",
1410
+ },
1411
+ },
1412
+ },
1413
+ },
1414
+ },
1415
+ },
1416
+ indicator: {
1417
+ borderTopLeftRadius: 12,
1418
+ borderTopRightRadius: 12,
1419
+ height: 3,
1420
+ },
1421
+ root: {
1422
+ boxShadow: `${strokeBottom} ${theme.palette.smoke.main}`,
1423
+ minHeight: "unset",
1424
+ position: "relative", // Positions scroll fuzz.
1425
+ },
1426
+ scroller: {
1427
+ margin: 0,
1428
+ padding: "0 8px",
1429
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1430
+ [tabletUp]: {
1431
+ padding: 0,
1432
+ },
1433
+ },
1434
+ },
1435
+ };
1436
+ };
1437
+
1438
+ /**
1439
+ * MuiToggleButton Component
1440
+ * @param theme - Theme.
1441
+ * @returns MuiToggleButton component theme styles.
1442
+ */
1443
+ export const MuiToggleButton = (
1444
+ theme: Theme
1445
+ ): Components["MuiToggleButton"] => {
1446
+ return {
1447
+ styleOverrides: {
1448
+ root: {
1449
+ ...theme.typography[TEXT_BODY_500],
1450
+ backgroundColor: theme.palette.smoke.main,
1451
+ border: "none",
1452
+ borderRadius: 4,
1453
+ color: theme.palette.ink.main,
1454
+ flex: 1,
1455
+ padding: "8px 12px",
1456
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1457
+ "&:hover": {
1458
+ backgroundColor: theme.palette.smoke.lightest,
1459
+ },
1460
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1461
+ "&.Mui-selected": {
1462
+ backgroundColor: white,
1463
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1464
+ "&:hover": {
1465
+ backgroundColor: white,
1466
+ },
1467
+ },
1468
+ },
1469
+ },
1470
+ };
1471
+ };
1472
+
1473
+ /**
1474
+ * MuiToggleButtonGroup Component
1475
+ * @param theme - Theme.
1476
+ * @returns MuiToggleButtonGroup component theme styles.
1477
+ */
1478
+ export const MuiToggleButtonGroup = (
1479
+ theme: Theme
1480
+ ): Components["MuiToggleButtonGroup"] => {
1481
+ return {
1482
+ styleOverrides: {
1483
+ grouped: {
1484
+ border: "none !important", // Overrides "grouped" css selector specificity.
1485
+ borderRadius: "4px !important", // Overrides "grouped" css selector specificity.
1486
+ margin: "0 !important", // Overrides "grouped" css selector specificity.
1487
+ },
1488
+ root: {
1489
+ backgroundColor: theme.palette.smoke.main,
1490
+ borderRadius: 6,
1491
+ color: theme.palette.ink.main,
1492
+ display: "grid",
1493
+ gridAutoColumns: "1fr",
1494
+ gridAutoFlow: "column",
1495
+ padding: 2,
1496
+ },
1497
+ },
1498
+ };
1499
+ };
1500
+
1501
+ /**
1502
+ * MuiToolbar Component
1503
+ */
1504
+ export const MuiToolbar: Components["MuiToolbar"] = {
1505
+ styleOverrides: {
1506
+ root: {
1507
+ [mobileUp]: {
1508
+ paddingLeft: 12,
1509
+ paddingRight: 12,
1510
+ },
1511
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1512
+ [desktopUp]: {
1513
+ paddingLeft: 16,
1514
+ paddingRight: 16,
1515
+ },
1516
+ },
1517
+ },
1518
+ };
1519
+
1520
+ /**
1521
+ * MuiTooltip Component
1522
+ * @param theme - Theme.
1523
+ * @returns MuiTooltip component theme styles.
1524
+ */
1525
+ export const MuiTooltip = (theme: Theme): Components["MuiTooltip"] => {
1526
+ return {
1527
+ defaultProps: {
1528
+ enterTouchDelay: 0,
1529
+ leaveTouchDelay: 4000,
1530
+ placement: "top",
1531
+ },
1532
+ styleOverrides: {
1533
+ arrow: {
1534
+ color: theme.palette.ink.main,
1535
+ // eslint-disable-next-line sort-keys -- disabling key order for readability
1536
+ "&:before": {
1537
+ borderRadius: 1,
1538
+ },
1539
+ },
1540
+ tooltip: {
1541
+ ...theme.typography[TEXT_BODY_SMALL_400],
1542
+ backgroundColor: theme.palette.ink.main,
1543
+ boxShadow: theme.shadows[2], // elevation02
1544
+ boxSizing: "content-box",
1545
+ padding: "8px 12px",
1546
+ },
1547
+ },
1548
+ };
1549
+ };
1550
+
1551
+ /**
1552
+ * MuiTypography Component
1553
+ */
1554
+ export const MuiTypography: Components["MuiTypography"] = {
1555
+ defaultProps: {
1556
+ variant: "inherit",
1557
+ },
1558
+ styleOverrides: {
1559
+ gutterBottom: {
1560
+ marginBottom: 8,
1561
+ },
1562
+ },
1563
+ };