@databiosphere/findable-ui 47.0.2 → 49.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2001) hide show
  1. package/.husky/pre-commit +7 -0
  2. package/.release-please-manifest.json +1 -1
  3. package/.storybook/main.ts +6 -48
  4. package/CHANGELOG.md +57 -0
  5. package/CLAUDE.md +214 -0
  6. package/backend/README.md +64 -0
  7. package/backend/__init__.py +0 -0
  8. package/backend/controllers/__init__.py +0 -0
  9. package/backend/controllers/facets_controller.py +16 -0
  10. package/backend/controllers/models.py +11 -0
  11. package/backend/main.py +8 -0
  12. package/backend/requirements.txt +4 -0
  13. package/backend/services/__init__.py +0 -0
  14. package/backend/services/facets_service.py +68 -0
  15. package/backend/services/models.py +43 -0
  16. package/docs/TRUSTED_PUBLISHING.md +0 -1
  17. package/jest.config.js +0 -4
  18. package/lib/common/categories/config/types.d.ts +2 -1
  19. package/lib/common/chart/sort/constants.d.ts +5 -0
  20. package/lib/common/chart/sort/constants.js +9 -0
  21. package/lib/common/chart/sort/types.d.ts +16 -0
  22. package/lib/common/chart/sort/types.js +8 -0
  23. package/lib/common/chart/sort/utils.d.ts +7 -0
  24. package/lib/common/chart/sort/utils.js +19 -0
  25. package/lib/common/chart/types.d.ts +5 -0
  26. package/lib/common/entities.d.ts +2 -1
  27. package/lib/components/Authentication/components/SessionController/components/GoogleSessionController/SessionController.d.ts +1 -0
  28. package/lib/components/Authentication/components/SessionController/components/GoogleSessionController/SessionController.js +3 -2
  29. package/lib/components/Authentication/components/SessionController/components/NextSessionController/SessionController.d.ts +1 -0
  30. package/lib/components/Authentication/components/SessionController/components/NextSessionController/SessionController.js +3 -2
  31. package/lib/components/ComponentCreator/ComponentCreator.d.ts +1 -0
  32. package/lib/components/ComponentCreator/ComponentCreator.js +23 -20
  33. package/lib/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.d.ts +1 -1
  34. package/lib/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.js +2 -2
  35. package/lib/components/ComponentCreator/components/RenderComponent/renderComponent.d.ts +1 -1
  36. package/lib/components/ComponentCreator/components/RenderComponent/renderComponent.js +2 -2
  37. package/lib/components/DataDictionary/components/Description/description.d.ts +1 -0
  38. package/lib/components/DataDictionary/components/Description/description.js +2 -3
  39. package/lib/components/DataDictionary/components/Description/description.styles.d.ts +1 -3
  40. package/lib/components/DataDictionary/components/Description/description.styles.js +3 -1
  41. package/lib/components/DataDictionary/components/Entities/entities.d.ts +1 -0
  42. package/lib/components/DataDictionary/components/Entities/entities.js +3 -3
  43. package/lib/components/DataDictionary/components/Entity/entity.d.ts +1 -0
  44. package/lib/components/DataDictionary/components/Entity/entity.js +2 -9
  45. package/lib/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.d.ts +1 -0
  46. package/lib/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.js +2 -4
  47. package/lib/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.styles.d.ts +2 -4
  48. package/lib/components/DataDictionary/components/Filters/components/ColumnFilters/columnFilters.d.ts +1 -0
  49. package/lib/components/DataDictionary/components/Filters/components/ColumnFilters/columnFilters.js +4 -4
  50. package/lib/components/DataDictionary/components/Filters/filters.d.ts +1 -0
  51. package/lib/components/DataDictionary/components/Filters/filters.js +2 -4
  52. package/lib/components/DataDictionary/components/Filters/filters.styles.d.ts +2 -4
  53. package/lib/components/DataDictionary/components/Filters/stories/constants.js +1 -1
  54. package/lib/components/DataDictionary/components/Filters/stories/filters.stories.d.ts +1 -1
  55. package/lib/components/DataDictionary/components/Filters/stories/filters.stories.js +5 -6
  56. package/lib/components/DataDictionary/components/Layout/components/EntitiesLayout/entitiesLayout.d.ts +1 -2
  57. package/lib/components/DataDictionary/components/Layout/components/EntitiesLayout/entitiesLayout.js +3 -2
  58. package/lib/components/DataDictionary/components/Layout/components/FiltersLayout/filtersLayout.d.ts +1 -2
  59. package/lib/components/DataDictionary/components/Layout/components/FiltersLayout/filtersLayout.js +3 -2
  60. package/lib/components/DataDictionary/components/Layout/components/OutlineLayout/outlineLayout.d.ts +1 -0
  61. package/lib/components/DataDictionary/components/Layout/components/OutlineLayout/outlineLayout.js +2 -3
  62. package/lib/components/DataDictionary/components/Layout/components/TitleLayout/titleLayout.d.ts +1 -0
  63. package/lib/components/DataDictionary/components/Layout/components/TitleLayout/titleLayout.js +2 -2
  64. package/lib/components/DataDictionary/components/Outline/components/ContentsTab/contentsTab.d.ts +1 -0
  65. package/lib/components/DataDictionary/components/Outline/components/ContentsTab/contentsTab.js +2 -2
  66. package/lib/components/DataDictionary/components/Outline/outline.d.ts +1 -0
  67. package/lib/components/DataDictionary/components/Outline/outline.js +2 -2
  68. package/lib/components/DataDictionary/components/Table/components/BasicCell/basicCell.d.ts +1 -1
  69. package/lib/components/DataDictionary/components/Table/components/BasicCell/basicCell.js +2 -2
  70. package/lib/components/DataDictionary/components/Table/table.d.ts +1 -0
  71. package/lib/components/DataDictionary/components/Table/table.js +2 -6
  72. package/lib/components/DataDictionary/components/Table/table.styles.d.ts +1 -3
  73. package/lib/components/DataDictionary/components/Title/title.d.ts +1 -0
  74. package/lib/components/DataDictionary/components/Title/title.js +2 -2
  75. package/lib/components/DataDictionary/components/Title/title.styles.d.ts +1 -3
  76. package/lib/components/DataDictionary/components/Tooltip/components/Title/title.d.ts +1 -0
  77. package/lib/components/DataDictionary/components/Tooltip/components/Title/title.js +2 -4
  78. package/lib/components/DataDictionary/components/Tooltip/tooltip.d.ts +1 -0
  79. package/lib/components/DataDictionary/components/Tooltip/tooltip.js +2 -3
  80. package/lib/components/DataDictionary/dataDictionary.d.ts +1 -0
  81. package/lib/components/DataDictionary/dataDictionary.js +2 -14
  82. package/lib/components/DataDictionary/hooks/UseMeasureFilters/hook.js +1 -2
  83. package/lib/components/DataDictionary/hooks/UseMeasureFilters/types.d.ts +1 -1
  84. package/lib/components/Detail/components/AccessibilityBadge/accessibilityBadge.d.ts +1 -0
  85. package/lib/components/Detail/components/AccessibilityBadge/accessibilityBadge.js +2 -3
  86. package/lib/components/Detail/components/DetailViewTable/detailViewTable.d.ts +1 -1
  87. package/lib/components/Detail/components/DetailViewTable/detailViewTable.js +2 -5
  88. package/lib/components/Detail/components/Table/components/TableBody/tableBody.d.ts +1 -0
  89. package/lib/components/Detail/components/Table/components/TableBody/tableBody.js +2 -2
  90. package/lib/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.d.ts +1 -0
  91. package/lib/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.js +7 -7
  92. package/lib/components/Detail/components/Table/components/TableRows/tableRows.d.ts +1 -0
  93. package/lib/components/Detail/components/Table/components/TableRows/tableRows.js +11 -10
  94. package/lib/components/Detail/components/Table/stories/filter/filter.stories.d.ts +1 -1
  95. package/lib/components/Detail/components/Table/stories/table.stories.d.ts +1 -1
  96. package/lib/components/Detail/components/Table/table.d.ts +1 -0
  97. package/lib/components/Detail/components/Table/table.js +2 -5
  98. package/lib/components/Detail/detail.d.ts +1 -1
  99. package/lib/components/Detail/detail.js +2 -2
  100. package/lib/components/Detail/detail.stories.d.ts +2 -2
  101. package/lib/components/Detail/detail.stories.js +4 -13
  102. package/lib/components/Error/error.d.ts +1 -0
  103. package/lib/components/Error/error.js +3 -20
  104. package/lib/components/Error/error.stories.d.ts +1 -1
  105. package/lib/components/ErrorBoundary/errorBoundary.d.ts +3 -3
  106. package/lib/components/ErrorBoundary/errorBoundary.js +2 -2
  107. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.d.ts +1 -1
  108. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.js +3 -4
  109. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.d.ts +1 -1
  110. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.js +2 -9
  111. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.d.ts +1 -1
  112. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.js +2 -6
  113. package/lib/components/Export/components/DownloadCurlCommand/downloadCurlCommand.d.ts +1 -3
  114. package/lib/components/Export/components/DownloadCurlCommand/downloadCurlCommand.js +3 -2
  115. package/lib/components/Export/components/ExportForm/components/ExportButton/exportButton.d.ts +1 -1
  116. package/lib/components/Export/components/ExportForm/components/ExportButton/exportButton.js +3 -6
  117. package/lib/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.d.ts +1 -1
  118. package/lib/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.js +2 -6
  119. package/lib/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.d.ts +1 -0
  120. package/lib/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.js +9 -30
  121. package/lib/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.d.ts +1 -0
  122. package/lib/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.js +2 -4
  123. package/lib/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.d.ts +1 -0
  124. package/lib/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.js +5 -13
  125. package/lib/components/Export/components/ExportForm/exportForm.d.ts +1 -1
  126. package/lib/components/Export/components/ExportForm/exportForm.js +3 -10
  127. package/lib/components/Export/components/ExportForm/exportForm.styles.d.ts +3 -7
  128. package/lib/components/Export/components/ExportMethod/exportMethod.d.ts +1 -1
  129. package/lib/components/Export/components/ExportMethod/exportMethod.js +2 -11
  130. package/lib/components/Export/components/ExportMethod/exportMethod.stories.d.ts +2 -2
  131. package/lib/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.d.ts +1 -0
  132. package/lib/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.js +3 -9
  133. package/lib/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.d.ts +1 -1
  134. package/lib/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.js +2 -7
  135. package/lib/components/Export/components/ExportSummary/exportSummary.d.ts +1 -1
  136. package/lib/components/Export/components/ExportSummary/exportSummary.js +2 -2
  137. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.d.ts +1 -1
  138. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.js +3 -4
  139. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.d.ts +1 -1
  140. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.js +2 -8
  141. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.d.ts +1 -1
  142. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.js +2 -7
  143. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.d.ts +1 -1
  144. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.js +2 -2
  145. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.d.ts +1 -1
  146. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.js +2 -2
  147. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.d.ts +1 -1
  148. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.js +2 -2
  149. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.d.ts +1 -1
  150. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.js +4 -10
  151. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.d.ts +1 -0
  152. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.js +2 -11
  153. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.d.ts +1 -0
  154. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.js +2 -10
  155. package/lib/components/Export/components/ExportToTerra/exportToTerra.d.ts +1 -3
  156. package/lib/components/Export/components/ExportToTerra/exportToTerra.js +2 -2
  157. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.d.ts +1 -0
  158. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.js +7 -22
  159. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.d.ts +1 -0
  160. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.js +7 -22
  161. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.d.ts +1 -2
  162. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.js +2 -4
  163. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.styles.d.ts +1 -3
  164. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.d.ts +1 -0
  165. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.js +3 -3
  166. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.d.ts +1 -1
  167. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.js +2 -8
  168. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.d.ts +1 -1
  169. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.js +2 -8
  170. package/lib/components/Export/components/ManifestDownload/manifestDownload.d.ts +1 -3
  171. package/lib/components/Export/components/ManifestDownload/manifestDownload.js +2 -2
  172. package/lib/components/Export/export.styles.d.ts +1 -1
  173. package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.d.ts +1 -0
  174. package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.js +2 -2
  175. package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.styles.d.ts +1 -3
  176. package/lib/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.d.ts +1 -2
  177. package/lib/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.js +3 -2
  178. package/lib/components/Filter/components/Filter/filter.d.ts +1 -1
  179. package/lib/components/Filter/components/Filter/filter.js +3 -7
  180. package/lib/components/Filter/components/Filter/stories/args.js +1 -1
  181. package/lib/components/Filter/components/Filter/stories/filter.stories.d.ts +1 -1
  182. package/lib/components/Filter/components/Filter/stories/filter.stories.js +2 -3
  183. package/lib/components/Filter/components/FilterCountChip/filterCountChip.d.ts +1 -0
  184. package/lib/components/Filter/components/FilterCountChip/filterCountChip.js +2 -2
  185. package/lib/components/Filter/components/FilterCountChip/filterCountChip.styles.d.ts +1 -3
  186. package/lib/components/Filter/components/FilterCountChip/stories/filterCountChip.stories.d.ts +1 -1
  187. package/lib/components/Filter/components/FilterLabel/filterLabel.d.ts +1 -1
  188. package/lib/components/Filter/components/FilterLabel/filterLabel.js +2 -3
  189. package/lib/components/Filter/components/FilterLabel/filterLabel.stories.d.ts +4 -4
  190. package/lib/components/Filter/components/FilterLabel/filterLabel.stories.js +2 -3
  191. package/lib/components/Filter/components/FilterLabel/filterLabel.styles.d.ts +1 -3
  192. package/lib/components/Filter/components/FilterList/filterList.styles.d.ts +3 -5
  193. package/lib/components/Filter/components/FilterMenu/filterMenu.d.ts +1 -0
  194. package/lib/components/Filter/components/FilterMenu/filterMenu.js +3 -7
  195. package/lib/components/Filter/components/FilterMenu/filterMenu.stories.d.ts +3 -2
  196. package/lib/components/Filter/components/FilterMenu/filterMenu.stories.js +2 -3
  197. package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.d.ts +1 -0
  198. package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.js +2 -2
  199. package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.d.ts +1 -2
  200. package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.js +3 -5
  201. package/lib/components/Filter/components/FilterRange/filterRange.d.ts +1 -0
  202. package/lib/components/Filter/components/FilterRange/filterRange.js +17 -39
  203. package/lib/components/Filter/components/FilterRange/stories/args.js +1 -1
  204. package/lib/components/Filter/components/FilterRange/stories/filterRange.stories.d.ts +1 -1
  205. package/lib/components/Filter/components/FilterTag/filterTag.d.ts +1 -0
  206. package/lib/components/Filter/components/FilterTag/filterTag.js +3 -3
  207. package/lib/components/Filter/components/FilterTag/filterTag.styles.d.ts +1 -3
  208. package/lib/components/Filter/components/FilterTag/stories/args.js +2 -2
  209. package/lib/components/Filter/components/FilterTag/stories/filterTag.stories.d.ts +1 -1
  210. package/lib/components/Filter/components/FilterTag/stories/filterTag.stories.js +2 -3
  211. package/lib/components/Filter/components/FilterTags/filterTags.d.ts +1 -0
  212. package/lib/components/Filter/components/FilterTags/filterTags.js +2 -2
  213. package/lib/components/Filter/components/FilterTags/filterTags.stories.d.ts +3 -2
  214. package/lib/components/Filter/components/FilterTags/filterTags.stories.js +2 -3
  215. package/lib/components/Filter/components/Filters/filters.d.ts +1 -0
  216. package/lib/components/Filter/components/Filters/filters.js +4 -6
  217. package/lib/components/Filter/components/Filters/stories/args.js +1 -1
  218. package/lib/components/Filter/components/Filters/stories/filters.stories.d.ts +1 -1
  219. package/lib/components/Filter/components/Filters/stories/filters.stories.js +2 -3
  220. package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.d.ts +1 -0
  221. package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.js +3 -3
  222. package/lib/components/Filter/components/SearchAllFilters/components/OutlinedInput/outlinedInput.d.ts +1 -0
  223. package/lib/components/Filter/components/SearchAllFilters/components/OutlinedInput/outlinedInput.js +2 -2
  224. package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeList/VariableSizeList.js +7 -8
  225. package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.d.ts +2 -2
  226. package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.js +7 -8
  227. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.d.ts +1 -0
  228. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.js +7 -7
  229. package/lib/components/Filter/components/SearchAllFilters/stories/args.js +1 -1
  230. package/lib/components/Filter/components/SearchAllFilters/stories/searchAllFilters.stories.d.ts +1 -1
  231. package/lib/components/Filter/components/SearchAllFilters/stories/searchAllFilters.stories.js +4 -5
  232. package/lib/components/Filter/components/VariableSizeList/VariableSizeList.d.ts +1 -0
  233. package/lib/components/Filter/components/VariableSizeList/VariableSizeList.js +5 -4
  234. package/lib/components/Filter/components/VariableSizeListItem/variableSizeListItem.d.ts +1 -1
  235. package/lib/components/Filter/components/VariableSizeListItem/variableSizeListItem.js +3 -4
  236. package/lib/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/columnFiltersAdapter.d.ts +1 -0
  237. package/lib/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/types.d.ts +1 -0
  238. package/lib/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/utils.js +1 -1
  239. package/lib/components/Filter/components/controls/Controls/components/FilterSort/filterSort.d.ts +1 -0
  240. package/lib/components/Filter/components/controls/Controls/components/FilterSort/filterSort.js +3 -13
  241. package/lib/components/Filter/components/controls/Controls/components/FilterSort/filterSort.styles.d.ts +1 -3
  242. package/lib/components/Filter/components/controls/Controls/components/FilterSort/stories/filterSort.stories.d.ts +1 -1
  243. package/lib/components/Filter/components/controls/Controls/controls.d.ts +1 -0
  244. package/lib/components/Filter/components/controls/Controls/controls.js +2 -5
  245. package/lib/components/Filter/components/controls/Controls/controls.styles.d.ts +2 -4
  246. package/lib/components/Filter/components/surfaces/drawer/Drawer/drawer.d.ts +1 -0
  247. package/lib/components/Filter/components/surfaces/drawer/Drawer/drawer.js +3 -7
  248. package/lib/components/Filter/components/surfaces/drawer/components/Button/button.d.ts +1 -0
  249. package/lib/components/Filter/components/surfaces/drawer/components/Button/button.js +2 -4
  250. package/lib/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.d.ts +1 -0
  251. package/lib/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.js +2 -4
  252. package/lib/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.styles.d.ts +1 -3
  253. package/lib/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.d.ts +1 -0
  254. package/lib/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.js +2 -3
  255. package/lib/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.styles.d.ts +1 -3
  256. package/lib/components/Filter/components/views/select/SelectListItem/selectListItem.d.ts +1 -2
  257. package/lib/components/Filter/components/views/select/SelectListItem/selectListItem.js +3 -4
  258. package/lib/components/Filter/components/views/select/components/Checkbox/checkbox.d.ts +1 -0
  259. package/lib/components/Filter/components/views/select/components/Checkbox/checkbox.js +2 -2
  260. package/lib/components/Filter/components/views/select/components/ListItemButton/listItemButton.d.ts +2 -5
  261. package/lib/components/Filter/components/views/select/components/ListItemButton/listItemButton.js +3 -2
  262. package/lib/components/Filter/components/views/select/components/ListItemButton/listItemButton.styles.d.ts +1 -3
  263. package/lib/components/Filter/components/views/select/components/ListItemText/components/Count/count.d.ts +1 -0
  264. package/lib/components/Filter/components/views/select/components/ListItemText/components/Count/count.js +2 -2
  265. package/lib/components/Filter/components/views/select/components/ListItemText/components/Term/term.d.ts +1 -0
  266. package/lib/components/Filter/components/views/select/components/ListItemText/components/Term/term.js +2 -2
  267. package/lib/components/Filter/components/views/select/components/ListItemText/listItemText.d.ts +1 -0
  268. package/lib/components/Filter/components/views/select/components/ListItemText/listItemText.js +4 -4
  269. package/lib/components/Head/head.d.ts +1 -0
  270. package/lib/components/Head/head.js +3 -11
  271. package/lib/components/Index/components/AzulFileDownload/azulFileDownload.d.ts +1 -0
  272. package/lib/components/Index/components/AzulFileDownload/azulFileDownload.js +3 -4
  273. package/lib/components/Index/components/AzulFileDownload/azulFileDownload.stories.d.ts +2 -2
  274. package/lib/components/Index/components/EntityView/components/controls/ActionButton/actionButton.d.ts +1 -0
  275. package/lib/components/Index/components/EntityView/components/controls/ActionButton/actionButton.js +3 -2
  276. package/lib/components/Index/components/EntityView/components/controls/ExportButton/exportButton.d.ts +1 -0
  277. package/lib/components/Index/components/EntityView/components/controls/ExportButton/exportButton.js +2 -4
  278. package/lib/components/Index/components/EntityView/components/controls/ExportButton/exportButton.styles.d.ts +1 -3
  279. package/lib/components/Index/components/EntityView/components/controls/FilterButton/filterButton.d.ts +1 -0
  280. package/lib/components/Index/components/EntityView/components/controls/FilterButton/filterButton.js +2 -5
  281. package/lib/components/Index/components/EntityView/components/controls/FilterButton/filterButton.styles.d.ts +1 -3
  282. package/lib/components/Index/components/EntityView/components/controls/ViewToggle/stories/viewToggle.stories.d.ts +1 -1
  283. package/lib/components/Index/components/EntityView/components/controls/ViewToggle/viewToggle.d.ts +1 -0
  284. package/lib/components/Index/components/EntityView/components/controls/ViewToggle/viewToggle.js +2 -4
  285. package/lib/components/Index/components/EntityView/components/layout/Summary/summary.d.ts +1 -0
  286. package/lib/components/Index/components/EntityView/components/layout/Summary/summary.js +3 -5
  287. package/lib/components/Index/components/EntityView/components/layout/Summary/summary.styles.d.ts +2 -4
  288. package/lib/components/Index/components/EntityView/components/layout/Title/title.d.ts +1 -0
  289. package/lib/components/Index/components/EntityView/components/layout/Title/title.js +2 -2
  290. package/lib/components/Index/components/EntityView/components/navigation/Tabs/tabs.d.ts +1 -0
  291. package/lib/components/Index/components/EntityView/components/navigation/Tabs/tabs.js +3 -2
  292. package/lib/components/Index/components/EntityView/components/slots/EntityListSlot/entityListSlot.d.ts +1 -0
  293. package/lib/components/Index/components/EntityView/components/slots/EntityListSlot/entityListSlot.js +2 -2
  294. package/lib/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.d.ts +1 -0
  295. package/lib/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.js +2 -3
  296. package/lib/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.styles.d.ts +2 -4
  297. package/lib/components/Index/components/EntityView/components/views/ChartView/chartView.d.ts +1 -0
  298. package/lib/components/Index/components/EntityView/components/views/ChartView/chartView.js +4 -11
  299. package/lib/components/Index/components/EntityView/components/views/ChartView/chartView.styles.d.ts +2 -4
  300. package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.d.ts +1 -0
  301. package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.js +13 -14
  302. package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.styles.d.ts +1 -3
  303. package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UsePlotOptions/hook.js +2 -7
  304. package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/args.js +12 -12
  305. package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/chart.stories.d.ts +1 -1
  306. package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/chart.stories.js +2 -3
  307. package/lib/components/Index/components/EntityView/components/views/ChartView/hooks/UseChartView/types.d.ts +1 -1
  308. package/lib/components/Index/components/EntityView/components/views/ChartView/stories/args.js +3 -3
  309. package/lib/components/Index/components/EntityView/components/views/ChartView/stories/chartView.stories.d.ts +1 -1
  310. package/lib/components/Index/components/EntityView/components/views/ChartView/stories/chartView.stories.js +2 -3
  311. package/lib/components/Index/components/EntityView/components/views/ChartView/utils.js +1 -1
  312. package/lib/components/Index/components/EntityView/components/views/TableView/tableView.d.ts +1 -0
  313. package/lib/components/Index/components/EntityView/components/views/TableView/tableView.js +2 -2
  314. package/lib/components/Index/index.d.ts +1 -0
  315. package/lib/components/Index/index.js +2 -16
  316. package/lib/components/Index/index.styles.d.ts +7 -15
  317. package/lib/components/Index/table/coreOptions/columns/cellFactory.d.ts +1 -0
  318. package/lib/components/Index/table/coreOptions/columns/cellFactory.js +2 -2
  319. package/lib/components/Layout/components/BackPage/backPageView.d.ts +1 -1
  320. package/lib/components/Layout/components/BackPage/backPageView.js +3 -7
  321. package/lib/components/Layout/components/BackPage/backPageView.stories.d.ts +2 -2
  322. package/lib/components/Layout/components/BackPage/backPageView.stories.js +4 -13
  323. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.d.ts +1 -1
  324. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.js +3 -10
  325. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.styles.d.ts +1 -3
  326. package/lib/components/Layout/components/BackPage/components/BackPageHero/components/Actions/actions.d.ts +1 -1
  327. package/lib/components/Layout/components/BackPage/components/BackPageHero/components/Actions/actions.js +2 -2
  328. package/lib/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.d.ts +1 -1
  329. package/lib/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.js +2 -2
  330. package/lib/components/Layout/components/BackPage/components/BackPageHero/stories/backPageHero.stories.d.ts +1 -1
  331. package/lib/components/Layout/components/ContentLayout/components/Main/main.d.ts +1 -1
  332. package/lib/components/Layout/components/ContentLayout/components/Main/main.js +2 -2
  333. package/lib/components/Layout/components/ContentLayout/contentLayout.d.ts +1 -1
  334. package/lib/components/Layout/components/ContentLayout/contentLayout.js +2 -10
  335. package/lib/components/Layout/components/Floating/floating.d.ts +1 -0
  336. package/lib/components/Layout/components/Floating/floating.js +3 -2
  337. package/lib/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/title.d.ts +1 -0
  338. package/lib/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/title.js +2 -14
  339. package/lib/components/Layout/components/Footer/components/VersionInfo/versionInfo.d.ts +1 -0
  340. package/lib/components/Layout/components/Footer/components/VersionInfo/versionInfo.js +2 -3
  341. package/lib/components/Layout/components/Footer/components/VersionInfo/versionInfo.styles.d.ts +1 -3
  342. package/lib/components/Layout/components/Footer/footer.d.ts +1 -1
  343. package/lib/components/Layout/components/Footer/footer.js +3 -9
  344. package/lib/components/Layout/components/Footer/footer.stories.d.ts +2 -2
  345. package/lib/components/Layout/components/Footer/footer.stories.js +2 -2
  346. package/lib/components/Layout/components/Header/components/Announcements/announcements.d.ts +1 -0
  347. package/lib/components/Layout/components/Header/components/Announcements/announcements.js +2 -2
  348. package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.d.ts +1 -1
  349. package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.js +2 -2
  350. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.d.ts +1 -1
  351. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.js +6 -7
  352. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.d.ts +1 -0
  353. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.js +6 -12
  354. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.styles.d.ts +4 -12
  355. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/Button/button.styles.d.ts +1 -3
  356. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.d.ts +1 -1
  357. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.js +3 -12
  358. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.d.ts +2 -2
  359. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.js +3 -11
  360. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/Button/button.styles.d.ts +1 -3
  361. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.d.ts +1 -0
  362. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.js +3 -6
  363. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.d.ts +1 -1
  364. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.js +5 -7
  365. package/lib/components/Layout/components/Header/components/Content/components/Logo/logo.d.ts +1 -0
  366. package/lib/components/Layout/components/Header/components/Content/components/Logo/logo.js +2 -2
  367. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationButtonLabel/navigationButtonLabel.d.ts +1 -1
  368. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationButtonLabel/navigationButtonLabel.js +3 -2
  369. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.d.ts +1 -2
  370. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.js +3 -2
  371. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.d.ts +1 -1
  372. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.js +3 -9
  373. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.d.ts +1 -1
  374. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.js +10 -16
  375. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.styles.d.ts +1 -3
  376. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.d.ts +1 -1
  377. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.js +16 -19
  378. package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.d.ts +2 -2
  379. package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.js +10 -14
  380. package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.d.ts +2 -2
  381. package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.js +3 -2
  382. package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.styles.d.ts +1 -3
  383. package/lib/components/Layout/components/Header/header.d.ts +1 -1
  384. package/lib/components/Layout/components/Header/header.js +6 -25
  385. package/lib/components/Layout/components/Header/header.stories.d.ts +1 -1
  386. package/lib/components/Layout/components/Header/header.stories.js +2 -2
  387. package/lib/components/Layout/components/Main/main.d.ts +1 -1
  388. package/lib/components/Layout/components/Main/main.js +2 -2
  389. package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.d.ts +1 -0
  390. package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.js +2 -8
  391. package/lib/components/Layout/components/Nav/nav.d.ts +1 -1
  392. package/lib/components/Layout/components/Nav/nav.js +4 -9
  393. package/lib/components/Layout/components/Nav/nav.stories.d.ts +1 -1
  394. package/lib/components/Layout/components/Nav/nav.styles.d.ts +1 -3
  395. package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.d.ts +1 -0
  396. package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.js +2 -2
  397. package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.styles.d.ts +1 -3
  398. package/lib/components/Layout/components/Outline/outline.d.ts +1 -0
  399. package/lib/components/Layout/components/Outline/outline.js +2 -4
  400. package/lib/components/Layout/components/Outline/outline.styles.d.ts +3 -7
  401. package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.d.ts +1 -1
  402. package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.js +2 -5
  403. package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.d.ts +1 -1
  404. package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.js +2 -4
  405. package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.d.ts +1 -0
  406. package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.js +2 -2
  407. package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.stories.d.ts +2 -2
  408. package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.d.ts +1 -1
  409. package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.js +2 -2
  410. package/lib/components/Layout/components/Sidebar/sidebar.d.ts +1 -0
  411. package/lib/components/Layout/components/Sidebar/sidebar.js +3 -3
  412. package/lib/components/Layout/components/Sidebar/sidebar.stories.d.ts +1 -1
  413. package/lib/components/Layout/components/Sidebar/sidebar.stories.js +6 -7
  414. package/lib/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.d.ts +1 -0
  415. package/lib/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.js +3 -3
  416. package/lib/components/Links/components/Link/link.d.ts +1 -1
  417. package/lib/components/Links/components/Link/link.js +5 -9
  418. package/lib/components/Links/links.d.ts +1 -1
  419. package/lib/components/Links/links.js +5 -7
  420. package/lib/components/Links/links.stories.d.ts +2 -2
  421. package/lib/components/Loading/loading.d.ts +1 -0
  422. package/lib/components/Loading/loading.js +2 -6
  423. package/lib/components/Loading/loading.stories.d.ts +1 -1
  424. package/lib/components/Loading/loading.stories.js +3 -4
  425. package/lib/components/Login/components/Button/button.d.ts +1 -0
  426. package/lib/components/Login/components/Button/button.js +2 -2
  427. package/lib/components/Login/components/Button/button.styles.d.ts +1 -3
  428. package/lib/components/Login/components/Buttons/buttons.d.ts +1 -0
  429. package/lib/components/Login/components/Buttons/buttons.js +2 -2
  430. package/lib/components/Login/components/Section/components/Consent/consent.d.ts +1 -0
  431. package/lib/components/Login/components/Section/components/Consent/consent.js +2 -4
  432. package/lib/components/Login/components/Section/components/Consent/consent.styles.d.ts +2 -4
  433. package/lib/components/Login/components/Section/components/Warning/warning.d.ts +1 -0
  434. package/lib/components/Login/components/Section/components/Warning/warning.js +2 -2
  435. package/lib/components/Login/login.d.ts +1 -0
  436. package/lib/components/Login/login.js +3 -13
  437. package/lib/components/MarkdownRenderer/components/Anchor/anchor.d.ts +1 -1
  438. package/lib/components/MarkdownRenderer/components/Anchor/anchor.js +2 -2
  439. package/lib/components/MarkdownRenderer/components/Table/table.d.ts +1 -1
  440. package/lib/components/MarkdownRenderer/components/Table/table.js +2 -2
  441. package/lib/components/MarkdownRenderer/constants.d.ts +2 -2
  442. package/lib/components/MarkdownRenderer/markdownRenderer.d.ts +1 -12
  443. package/lib/components/MarkdownRenderer/markdownRenderer.js +16 -19
  444. package/lib/components/MarkdownRenderer/stories/markdownRenderer.stories.d.ts +1 -1
  445. package/lib/components/MarkdownRenderer/stories/markdownRenderer.stories.js +3 -4
  446. package/lib/components/MarkdownRenderer/types.d.ts +2 -3
  447. package/lib/components/NoResults/noResults.d.ts +1 -0
  448. package/lib/components/NoResults/noResults.js +3 -8
  449. package/lib/components/Plot/components/BarX/barX.d.ts +1 -0
  450. package/lib/components/Plot/components/BarX/barX.js +3 -2
  451. package/lib/components/Project/components/Citation/citation.d.ts +1 -0
  452. package/lib/components/Project/components/Citation/citation.js +2 -5
  453. package/lib/components/Project/components/Citation/citation.stories.d.ts +1 -1
  454. package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.d.ts +1 -0
  455. package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.js +2 -4
  456. package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.stories.d.ts +2 -2
  457. package/lib/components/Project/components/Contacts/contacts.d.ts +1 -0
  458. package/lib/components/Project/components/Contacts/contacts.js +3 -8
  459. package/lib/components/Project/components/Contacts/contacts.stories.d.ts +2 -2
  460. package/lib/components/Project/components/Contributors/contributors.d.ts +1 -0
  461. package/lib/components/Project/components/Contributors/contributors.js +2 -8
  462. package/lib/components/Project/components/Contributors/contributors.stories.d.ts +2 -2
  463. package/lib/components/Project/components/DataCurators/dataCurators.d.ts +1 -0
  464. package/lib/components/Project/components/DataCurators/dataCurators.js +2 -2
  465. package/lib/components/Project/components/DataCurators/dataCurators.stories.d.ts +2 -2
  466. package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.d.ts +1 -0
  467. package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.js +4 -10
  468. package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.stories.d.ts +2 -2
  469. package/lib/components/Project/components/Description/description.d.ts +1 -0
  470. package/lib/components/Project/components/Description/description.js +2 -3
  471. package/lib/components/Project/components/Description/description.stories.d.ts +2 -2
  472. package/lib/components/Project/components/Details/details.d.ts +1 -0
  473. package/lib/components/Project/components/Details/details.js +4 -3
  474. package/lib/components/Project/components/Details/details.stories.d.ts +2 -2
  475. package/lib/components/Project/components/Publications/publications.d.ts +1 -0
  476. package/lib/components/Project/components/Publications/publications.js +2 -4
  477. package/lib/components/Project/components/Publications/publications.stories.d.ts +2 -2
  478. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.d.ts +1 -0
  479. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.js +3 -9
  480. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.stories.d.ts +2 -2
  481. package/lib/components/Redirect/redirect.d.ts +1 -0
  482. package/lib/components/Redirect/redirect.js +3 -2
  483. package/lib/components/Stepper/components/Step/components/StepContent/stepContent.d.ts +1 -0
  484. package/lib/components/Stepper/components/Step/components/StepContent/stepContent.js +2 -3
  485. package/lib/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.d.ts +1 -0
  486. package/lib/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.js +2 -3
  487. package/lib/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.styles.d.ts +1 -3
  488. package/lib/components/Stepper/components/Step/components/StepIcon/stepIcon.d.ts +1 -0
  489. package/lib/components/Stepper/components/Step/components/StepIcon/stepIcon.js +2 -2
  490. package/lib/components/Stepper/components/Step/components/StepIcon/stories/stepIcon.stories.d.ts +1 -1
  491. package/lib/components/Stepper/components/Step/components/StepIcon/stories/stepIcon.stories.js +4 -7
  492. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/icon.d.ts +1 -0
  493. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/icon.js +2 -3
  494. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/stories/icon.stories.d.ts +1 -1
  495. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/label.d.ts +1 -0
  496. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/label.js +2 -2
  497. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/label.styles.d.ts +1 -3
  498. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/stories/label.stories.d.ts +1 -1
  499. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/stories/label.stories.js +3 -5
  500. package/lib/components/Stepper/components/Step/components/StepLabel/components/Optional/optional.d.ts +1 -0
  501. package/lib/components/Stepper/components/Step/components/StepLabel/components/Optional/optional.js +2 -2
  502. package/lib/components/Stepper/components/Step/components/StepLabel/stepLabel.d.ts +1 -0
  503. package/lib/components/Stepper/components/Step/components/StepLabel/stepLabel.js +2 -2
  504. package/lib/components/Stepper/components/Step/components/StepLabel/stories/stepLabel.stories.d.ts +1 -1
  505. package/lib/components/Stepper/components/Step/components/StepLabel/stories/stepLabel.stories.js +6 -6
  506. package/lib/components/Stepper/components/Step/step.d.ts +1 -0
  507. package/lib/components/Stepper/components/Step/step.js +2 -2
  508. package/lib/components/Stepper/components/Step/step.styles.d.ts +1 -3
  509. package/lib/components/Stepper/components/Step/stories/step.stories.d.ts +1 -1
  510. package/lib/components/Stepper/components/Step/stories/step.stories.js +10 -11
  511. package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.d.ts +1 -1
  512. package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.js +9 -10
  513. package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.styles.d.ts +1 -3
  514. package/lib/components/Support/components/SupportRequest/components/Dropzone/dropzone.d.ts +1 -1
  515. package/lib/components/Support/components/SupportRequest/components/Dropzone/dropzone.js +2 -4
  516. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.d.ts +1 -1
  517. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.js +4 -17
  518. package/lib/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.d.ts +1 -1
  519. package/lib/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.js +2 -6
  520. package/lib/components/Support/components/SupportRequest/supportRequest.d.ts +1 -0
  521. package/lib/components/Support/components/SupportRequest/supportRequest.js +3 -2
  522. package/lib/components/Support/components/ViewSupport/viewSupport.d.ts +1 -0
  523. package/lib/components/Support/components/ViewSupport/viewSupport.js +2 -3
  524. package/lib/components/Table/common/gridTable.styles.d.ts +1 -3
  525. package/lib/components/Table/components/PaginationSummary/paginationSummary.d.ts +1 -0
  526. package/lib/components/Table/components/PaginationSummary/paginationSummary.js +2 -13
  527. package/lib/components/Table/components/TableBody/tableBody.d.ts +1 -0
  528. package/lib/components/Table/components/TableBody/tableBody.js +2 -5
  529. package/lib/components/Table/components/TableCell/components/BasicCell/basicCell.d.ts +1 -1
  530. package/lib/components/Table/components/TableCell/components/BasicCell/basicCell.js +4 -3
  531. package/lib/components/Table/components/TableCell/components/ChipCell/chipCell.d.ts +1 -0
  532. package/lib/components/Table/components/TableCell/components/ChipCell/chipCell.js +2 -2
  533. package/lib/components/Table/components/TableCell/components/CodeCell/codeCell.d.ts +1 -1
  534. package/lib/components/Table/components/TableCell/components/CodeCell/codeCell.js +2 -2
  535. package/lib/components/Table/components/TableCell/components/CodeCell/codeCell.styles.d.ts +1 -3
  536. package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.d.ts +1 -0
  537. package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.js +9 -17
  538. package/lib/components/Table/components/TableCell/components/LinkCell/linkCell.d.ts +1 -0
  539. package/lib/components/Table/components/TableCell/components/LinkCell/linkCell.js +4 -4
  540. package/lib/components/Table/components/TableCell/components/LinkCell/stories/linkCell.stories.d.ts +1 -1
  541. package/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell.d.ts +1 -0
  542. package/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell.js +2 -2
  543. package/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell.styles.js +3 -1
  544. package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/markdownCell.stories.d.ts +1 -1
  545. package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/markdownCell.stories.js +3 -4
  546. package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.d.ts +1 -0
  547. package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.js +4 -3
  548. package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.d.ts +1 -1
  549. package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.js +2 -2
  550. package/lib/components/Table/components/TableCell/components/NTagCell/nTagCell.d.ts +1 -0
  551. package/lib/components/Table/components/TableCell/components/NTagCell/nTagCell.js +4 -3
  552. package/lib/components/Table/components/TableCell/components/RankedCell/rankedCell.d.ts +1 -0
  553. package/lib/components/Table/components/TableCell/components/RankedCell/rankedCell.js +5 -10
  554. package/lib/components/Table/components/TableCell/components/RowPositionCell/rowPositionCell.d.ts +1 -0
  555. package/lib/components/Table/components/TableCell/components/RowPositionCell/rowPositionCell.js +2 -2
  556. package/lib/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.d.ts +1 -0
  557. package/lib/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.js +3 -5
  558. package/lib/components/Table/components/TableFeatures/ColumnFilter/columnFilter.d.ts +1 -0
  559. package/lib/components/Table/components/TableFeatures/ColumnFilter/columnFilter.js +16 -23
  560. package/lib/components/Table/components/TableFeatures/ColumnFilter/columnFilter.styles.d.ts +1 -3
  561. package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.d.ts +1 -0
  562. package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.js +4 -2
  563. package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.styles.d.ts +1 -3
  564. package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/stories/columFilterTag.stories.d.ts +1 -1
  565. package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/stories/columFilterTag.stories.js +2 -3
  566. package/lib/components/Table/components/TableFeatures/GlobalFilter/globalFilter.d.ts +1 -0
  567. package/lib/components/Table/components/TableFeatures/GlobalFilter/globalFilter.js +2 -2
  568. package/lib/components/Table/components/TableFeatures/TableDownload/tableDownload.d.ts +1 -0
  569. package/lib/components/Table/components/TableFeatures/TableDownload/tableDownload.js +2 -2
  570. package/lib/components/Table/components/TableFeatures/TableDownload/tableDownload.styles.d.ts +1 -3
  571. package/lib/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.d.ts +1 -0
  572. package/lib/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.js +2 -2
  573. package/lib/components/Table/components/TableHead/tableHead.d.ts +1 -0
  574. package/lib/components/Table/components/TableHead/tableHead.js +7 -8
  575. package/lib/components/Table/components/TablePagination/stories/args.js +1 -1
  576. package/lib/components/Table/components/TablePagination/stories/tablePagination.stories.d.ts +1 -1
  577. package/lib/components/Table/components/TablePagination/tablePagination.d.ts +1 -0
  578. package/lib/components/Table/components/TablePagination/tablePagination.js +2 -11
  579. package/lib/components/Table/components/TablePagination/tablePagination.styles.d.ts +2 -4
  580. package/lib/components/Table/components/TableRow/tableRow.styles.d.ts +1 -3
  581. package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.d.ts +1 -0
  582. package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.js +9 -9
  583. package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.styles.d.ts +1 -3
  584. package/lib/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.d.ts +1 -0
  585. package/lib/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.js +3 -3
  586. package/lib/components/Table/components/TableRows/tableRows.d.ts +1 -0
  587. package/lib/components/Table/components/TableRows/tableRows.js +16 -15
  588. package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/columnGrouping.d.ts +1 -0
  589. package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/columnGrouping.js +4 -4
  590. package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/menuItems.d.ts +1 -0
  591. package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/menuItems.js +12 -13
  592. package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/columnVisibility.d.ts +1 -0
  593. package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/columnVisibility.js +4 -4
  594. package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/menuItems.d.ts +1 -0
  595. package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/menuItems.js +6 -10
  596. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.d.ts +1 -1
  597. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.js +2 -5
  598. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.styles.js +3 -1
  599. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.d.ts +1 -0
  600. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.js +4 -7
  601. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.d.ts +1 -1
  602. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.js +2 -4
  603. package/lib/components/Table/components/TableToolbar/components/RowPreview/rowPreview.d.ts +1 -0
  604. package/lib/components/Table/components/TableToolbar/components/RowPreview/rowPreview.js +2 -2
  605. package/lib/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.d.ts +1 -0
  606. package/lib/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.js +3 -3
  607. package/lib/components/Table/components/TableToolbar/components/RowSelection/rowSelection.d.ts +1 -0
  608. package/lib/components/Table/components/TableToolbar/components/RowSelection/rowSelection.js +2 -6
  609. package/lib/components/Table/components/TableToolbar/tableToolbar.d.ts +1 -0
  610. package/lib/components/Table/components/TableToolbar/tableToolbar.js +3 -11
  611. package/lib/components/Table/components/TableToolbar/tableToolbar.styles.d.ts +1 -3
  612. package/lib/components/Table/components/TableToolbar2/tableToolbar2.d.ts +1 -0
  613. package/lib/components/Table/components/TableToolbar2/tableToolbar2.js +2 -4
  614. package/lib/components/Table/components/TableToolbar2/tableToolbar2.styles.d.ts +2 -6
  615. package/lib/components/Table/featureOptions/facetedColumn/getFacetedMinMaxValues.js +2 -1
  616. package/lib/components/Table/hooks/UseVirtualization/types.d.ts +1 -1
  617. package/lib/components/Table/table.d.ts +1 -0
  618. package/lib/components/Table/table.js +3 -9
  619. package/lib/components/Table/table.styles.d.ts +1 -3
  620. package/lib/components/TableCreator/tableCreator.d.ts +1 -0
  621. package/lib/components/TableCreator/tableCreator.js +2 -2
  622. package/lib/components/TempError/components/errorBox.d.ts +1 -0
  623. package/lib/components/TempError/components/errorBox.js +2 -4
  624. package/lib/components/TempError/tempError.d.ts +1 -0
  625. package/lib/components/TempError/tempError.js +2 -5
  626. package/lib/components/common/Accordion/accordion.d.ts +1 -1
  627. package/lib/components/common/Accordion/accordion.js +4 -6
  628. package/lib/components/common/Accordion/accordion.stories.d.ts +2 -2
  629. package/lib/components/common/Accordion/accordion.stories.js +2 -5
  630. package/lib/components/common/Alert/alert.d.ts +1 -2
  631. package/lib/components/common/Alert/alert.js +3 -2
  632. package/lib/components/common/AnchorLink/anchorLink.d.ts +1 -1
  633. package/lib/components/common/AnchorLink/anchorLink.js +2 -3
  634. package/lib/components/common/AnchorLink/anchorLink.styles.d.ts +2 -28
  635. package/lib/components/common/Banner/banner.d.ts +1 -2
  636. package/lib/components/common/Banner/banner.js +3 -2
  637. package/lib/components/common/Banner/components/CookieBanner/cookieBanner.d.ts +1 -1
  638. package/lib/components/common/Banner/components/CookieBanner/cookieBanner.js +6 -8
  639. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.d.ts +1 -0
  640. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.js +2 -3
  641. package/lib/components/common/Banner/components/SystemIndexing/systemIndexing.d.ts +1 -0
  642. package/lib/components/common/Banner/components/SystemIndexing/systemIndexing.js +2 -3
  643. package/lib/components/common/Banner/components/SystemStatus/systemStatus.d.ts +1 -0
  644. package/lib/components/common/Banner/components/SystemStatus/systemStatus.js +2 -3
  645. package/lib/components/common/Breadcrumbs/breadcrumbs.d.ts +1 -1
  646. package/lib/components/common/Breadcrumbs/breadcrumbs.js +4 -3
  647. package/lib/components/common/Breadcrumbs/breadcrumbs.stories.d.ts +2 -2
  648. package/lib/components/common/Button/button.d.ts +2 -2
  649. package/lib/components/common/Button/button.js +3 -2
  650. package/lib/components/common/Button/components/ButtonOutline/buttonOutline.d.ts +1 -2
  651. package/lib/components/common/Button/components/ButtonOutline/buttonOutline.js +3 -2
  652. package/lib/components/common/Button/components/ButtonPrimary/buttonPrimary.d.ts +1 -2
  653. package/lib/components/common/Button/components/ButtonPrimary/buttonPrimary.js +3 -2
  654. package/lib/components/common/Button/components/ButtonSecondary/buttonSecondary.d.ts +1 -2
  655. package/lib/components/common/Button/components/ButtonSecondary/buttonSecondary.js +3 -2
  656. package/lib/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.d.ts +1 -2
  657. package/lib/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.js +3 -2
  658. package/lib/components/common/Button/components/ButtonText/buttonText.d.ts +1 -0
  659. package/lib/components/common/Button/components/ButtonText/buttonText.js +2 -2
  660. package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.d.ts +1 -0
  661. package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.js +2 -2
  662. package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.d.ts +1 -0
  663. package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.js +2 -2
  664. package/lib/components/common/Button/components/CallToActionButton/callToActionButton.d.ts +1 -1
  665. package/lib/components/common/Button/components/CallToActionButton/callToActionButton.js +3 -4
  666. package/lib/components/common/Button/components/CallToActionButton/callToActionButton.stories.d.ts +2 -2
  667. package/lib/components/common/Button/components/DropdownButton/dropdownButton.d.ts +1 -0
  668. package/lib/components/common/Button/components/DropdownButton/dropdownButton.js +2 -2
  669. package/lib/components/common/Button/components/DropdownButton/dropdownButton.styles.d.ts +1 -3
  670. package/lib/components/common/Button/components/FileDownloadButton/fileDownloadButton.d.ts +1 -0
  671. package/lib/components/common/Button/components/FileDownloadButton/fileDownloadButton.js +3 -2
  672. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.d.ts +1 -0
  673. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.js +2 -5
  674. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.stories.d.ts +2 -2
  675. package/lib/components/common/Button/components/NavigationButton/navigationButton.d.ts +1 -0
  676. package/lib/components/common/Button/components/NavigationButton/navigationButton.js +2 -2
  677. package/lib/components/common/ButtonGroup/buttonGroup.d.ts +1 -1
  678. package/lib/components/common/ButtonGroup/buttonGroup.js +3 -2
  679. package/lib/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.d.ts +1 -1
  680. package/lib/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.js +3 -3
  681. package/lib/components/common/Card/card.d.ts +1 -1
  682. package/lib/components/common/Card/card.js +3 -11
  683. package/lib/components/common/Card/card.stories.d.ts +2 -2
  684. package/lib/components/common/Card/components/CardAction/cardAction.d.ts +1 -0
  685. package/lib/components/common/Card/components/CardAction/cardAction.js +2 -2
  686. package/lib/components/common/Card/components/CardActionArea/cardActionArea.d.ts +1 -1
  687. package/lib/components/common/Card/components/CardActionArea/cardActionArea.js +2 -2
  688. package/lib/components/common/Card/components/CardActions/cardActions.d.ts +1 -1
  689. package/lib/components/common/Card/components/CardActions/cardActions.js +2 -4
  690. package/lib/components/common/Card/components/CardMedia/cardMedia.d.ts +1 -0
  691. package/lib/components/common/Card/components/CardMedia/cardMedia.js +2 -3
  692. package/lib/components/common/Card/components/CardSecondaryText/cardSecondaryText.d.ts +1 -0
  693. package/lib/components/common/Card/components/CardSecondaryText/cardSecondaryText.js +2 -2
  694. package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.d.ts +1 -0
  695. package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.js +2 -2
  696. package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.styles.d.ts +1 -3
  697. package/lib/components/common/Card/components/CardText/cardText.d.ts +1 -0
  698. package/lib/components/common/Card/components/CardText/cardText.js +2 -2
  699. package/lib/components/common/Card/components/CardTitle/cardTitle.d.ts +1 -0
  700. package/lib/components/common/Card/components/CardTitle/cardTitle.js +2 -2
  701. package/lib/components/common/Card/components/RoundedCard/roundedCard.d.ts +1 -1
  702. package/lib/components/common/Card/components/RoundedCard/roundedCard.js +2 -2
  703. package/lib/components/common/Code/code.d.ts +1 -0
  704. package/lib/components/common/Code/code.js +3 -3
  705. package/lib/components/common/Code/code.stories.d.ts +2 -2
  706. package/lib/components/common/CopyToClipboard/copyToClipboard.d.ts +1 -0
  707. package/lib/components/common/CopyToClipboard/copyToClipboard.js +4 -5
  708. package/lib/components/common/CopyToClipboard/copyToClipboard.stories.d.ts +2 -2
  709. package/lib/components/common/CustomIcon/components/AddIcon/addIcon.d.ts +1 -0
  710. package/lib/components/common/CustomIcon/components/AddIcon/addIcon.js +2 -3
  711. package/lib/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.d.ts +1 -0
  712. package/lib/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.js +2 -3
  713. package/lib/components/common/CustomIcon/components/AlertIcon/alertIcon.d.ts +1 -0
  714. package/lib/components/common/CustomIcon/components/AlertIcon/alertIcon.js +2 -3
  715. package/lib/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.d.ts +1 -0
  716. package/lib/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.js +2 -3
  717. package/lib/components/common/CustomIcon/components/CheckedIcon/checkedIcon.d.ts +1 -0
  718. package/lib/components/common/CustomIcon/components/CheckedIcon/checkedIcon.js +2 -4
  719. package/lib/components/common/CustomIcon/components/CloseIcon/closeIcon.d.ts +1 -0
  720. package/lib/components/common/CustomIcon/components/CloseIcon/closeIcon.js +2 -3
  721. package/lib/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.d.ts +1 -0
  722. package/lib/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.js +2 -3
  723. package/lib/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.d.ts +1 -0
  724. package/lib/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.js +2 -3
  725. package/lib/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.d.ts +1 -0
  726. package/lib/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.js +2 -3
  727. package/lib/components/common/CustomIcon/components/DownloadIcon/downloadIcon.d.ts +1 -0
  728. package/lib/components/common/CustomIcon/components/DownloadIcon/downloadIcon.js +2 -3
  729. package/lib/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.d.ts +1 -0
  730. package/lib/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.js +2 -3
  731. package/lib/components/common/CustomIcon/components/ErrorIcon/errorIcon.d.ts +1 -0
  732. package/lib/components/common/CustomIcon/components/ErrorIcon/errorIcon.js +2 -3
  733. package/lib/components/common/CustomIcon/components/FacebookIcon/facebookIcon.d.ts +1 -0
  734. package/lib/components/common/CustomIcon/components/FacebookIcon/facebookIcon.js +2 -3
  735. package/lib/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.d.ts +1 -0
  736. package/lib/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.js +2 -3
  737. package/lib/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.d.ts +1 -0
  738. package/lib/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.js +2 -4
  739. package/lib/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.d.ts +1 -0
  740. package/lib/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.js +2 -3
  741. package/lib/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.d.ts +1 -0
  742. package/lib/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.js +2 -3
  743. package/lib/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.d.ts +1 -0
  744. package/lib/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.js +2 -3
  745. package/lib/components/common/CustomIcon/components/GoogleIcon/googleIcon.d.ts +1 -0
  746. package/lib/components/common/CustomIcon/components/GoogleIcon/googleIcon.js +2 -6
  747. package/lib/components/common/CustomIcon/components/HelpIcon/helpIcon.d.ts +1 -0
  748. package/lib/components/common/CustomIcon/components/HelpIcon/helpIcon.js +2 -3
  749. package/lib/components/common/CustomIcon/components/InProgressIcon/inProgressIcon.d.ts +1 -0
  750. package/lib/components/common/CustomIcon/components/InProgressIcon/inProgressIcon.js +2 -3
  751. package/lib/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.d.ts +1 -0
  752. package/lib/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.js +2 -4
  753. package/lib/components/common/CustomIcon/components/InfoIcon/infoIcon.d.ts +1 -0
  754. package/lib/components/common/CustomIcon/components/InfoIcon/infoIcon.js +2 -3
  755. package/lib/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.d.ts +1 -0
  756. package/lib/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.js +2 -3
  757. package/lib/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.d.ts +1 -0
  758. package/lib/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.js +2 -3
  759. package/lib/components/common/CustomIcon/components/LoadingIcon/loadingIcon.d.ts +1 -0
  760. package/lib/components/common/CustomIcon/components/LoadingIcon/loadingIcon.js +2 -20
  761. package/lib/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.d.ts +1 -0
  762. package/lib/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.js +2 -3
  763. package/lib/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.d.ts +1 -0
  764. package/lib/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.js +2 -3
  765. package/lib/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.d.ts +1 -0
  766. package/lib/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.js +2 -3
  767. package/lib/components/common/CustomIcon/components/RemoveIcon/removeIcon.d.ts +1 -0
  768. package/lib/components/common/CustomIcon/components/RemoveIcon/removeIcon.js +2 -3
  769. package/lib/components/common/CustomIcon/components/SearchIcon/searchIcon.d.ts +1 -0
  770. package/lib/components/common/CustomIcon/components/SearchIcon/searchIcon.js +2 -3
  771. package/lib/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.d.ts +1 -0
  772. package/lib/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.js +2 -3
  773. package/lib/components/common/CustomIcon/components/Segment/segment.d.ts +1 -0
  774. package/lib/components/common/CustomIcon/components/Segment/segment.js +2 -3
  775. package/lib/components/common/CustomIcon/components/SlackIcon/slackIcon.d.ts +1 -0
  776. package/lib/components/common/CustomIcon/components/SlackIcon/slackIcon.js +2 -3
  777. package/lib/components/common/CustomIcon/components/SouthIcon/southIcon.d.ts +1 -0
  778. package/lib/components/common/CustomIcon/components/SouthIcon/southIcon.js +2 -3
  779. package/lib/components/common/CustomIcon/components/SuccessIcon/successIcon.d.ts +1 -0
  780. package/lib/components/common/CustomIcon/components/SuccessIcon/successIcon.js +2 -3
  781. package/lib/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.d.ts +1 -0
  782. package/lib/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.js +2 -3
  783. package/lib/components/common/CustomIcon/components/UncheckedDisabledIcon/uncheckedDisabledIcon.d.ts +1 -0
  784. package/lib/components/common/CustomIcon/components/UncheckedDisabledIcon/uncheckedDisabledIcon.js +2 -4
  785. package/lib/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.d.ts +1 -0
  786. package/lib/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.js +2 -3
  787. package/lib/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.d.ts +1 -0
  788. package/lib/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.js +2 -3
  789. package/lib/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.d.ts +1 -0
  790. package/lib/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.js +2 -3
  791. package/lib/components/common/CustomIcon/components/WarningIcon/warningIcon.d.ts +1 -0
  792. package/lib/components/common/CustomIcon/components/WarningIcon/warningIcon.js +2 -3
  793. package/lib/components/common/CustomIcon/components/XIcon/xIcon.d.ts +1 -0
  794. package/lib/components/common/CustomIcon/components/XIcon/xIcon.js +2 -3
  795. package/lib/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.d.ts +1 -0
  796. package/lib/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.js +2 -3
  797. package/lib/components/common/Dialog/components/DialogTitle/dialogTitle.d.ts +1 -1
  798. package/lib/components/common/Dialog/components/DialogTitle/dialogTitle.js +2 -5
  799. package/lib/components/common/Dialog/dialog.d.ts +1 -1
  800. package/lib/components/common/Dialog/dialog.js +2 -2
  801. package/lib/components/common/Dot/dot.d.ts +1 -0
  802. package/lib/components/common/Dot/dot.js +2 -2
  803. package/lib/components/common/Drawer/components/DrawerTitle/drawerTitle.d.ts +1 -1
  804. package/lib/components/common/Drawer/components/DrawerTitle/drawerTitle.js +2 -5
  805. package/lib/components/common/Drawer/drawer.d.ts +1 -1
  806. package/lib/components/common/Drawer/drawer.js +2 -2
  807. package/lib/components/common/Drawer/provider/provider.d.ts +1 -0
  808. package/lib/components/common/Drawer/provider/provider.js +5 -4
  809. package/lib/components/common/DropdownMenu/components/MenuItem/menuItem.d.ts +1 -1
  810. package/lib/components/common/DropdownMenu/components/MenuItem/menuItem.js +2 -3
  811. package/lib/components/common/DropdownMenu/dropdownMenu.d.ts +1 -0
  812. package/lib/components/common/DropdownMenu/dropdownMenu.js +3 -4
  813. package/lib/components/common/EllipsisContent/ellipsisContent.d.ts +1 -1
  814. package/lib/components/common/EllipsisContent/ellipsisContent.js +3 -5
  815. package/lib/components/common/Form/components/Input/input.d.ts +1 -0
  816. package/lib/components/common/Form/components/Input/input.js +2 -4
  817. package/lib/components/common/Form/components/Input/input.styles.d.ts +1 -3
  818. package/lib/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.d.ts +1 -0
  819. package/lib/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.js +2 -2
  820. package/lib/components/common/Form/components/Select/select.d.ts +1 -1
  821. package/lib/components/common/Form/components/Select/select.js +2 -4
  822. package/lib/components/common/Form/components/Select/select.styles.d.ts +1 -3
  823. package/lib/components/common/Form/components/UploadFile/uploadFile.d.ts +1 -0
  824. package/lib/components/common/Form/components/UploadFile/uploadFile.js +2 -13
  825. package/lib/components/common/Form/components/UploadFile/uploadFile.styles.d.ts +1 -3
  826. package/lib/components/common/Grid/components/GridItem/gridItem.d.ts +1 -1
  827. package/lib/components/common/Grid/components/GridItem/gridItem.js +2 -2
  828. package/lib/components/common/Grid/grid.d.ts +1 -1
  829. package/lib/components/common/Grid/grid.js +2 -2
  830. package/lib/components/common/IconBadge/iconBadge.d.ts +1 -1
  831. package/lib/components/common/IconBadge/iconBadge.js +2 -3
  832. package/lib/components/common/IconButton/iconButton.d.ts +1 -1
  833. package/lib/components/common/IconButton/iconButton.js +2 -3
  834. package/lib/components/common/IconButton/iconButton.styles.d.ts +1 -3
  835. package/lib/components/common/Input/input.d.ts +1 -1
  836. package/lib/components/common/Input/input.js +2 -4
  837. package/lib/components/common/Input/input.styles.d.ts +1 -3
  838. package/lib/components/common/KeyValuePairs/components/KeyElType/keyElType.d.ts +1 -0
  839. package/lib/components/common/KeyValuePairs/components/KeyElType/keyElType.js +2 -2
  840. package/lib/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.d.ts +1 -1
  841. package/lib/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.js +2 -2
  842. package/lib/components/common/KeyValuePairs/components/ValueElType/valueElType.d.ts +1 -0
  843. package/lib/components/common/KeyValuePairs/components/ValueElType/valueElType.js +2 -2
  844. package/lib/components/common/KeyValuePairs/keyValuePairs.d.ts +1 -1
  845. package/lib/components/common/KeyValuePairs/keyValuePairs.js +7 -8
  846. package/lib/components/common/LoginDialog/loginDialog.d.ts +1 -0
  847. package/lib/components/common/LoginDialog/loginDialog.js +2 -12
  848. package/lib/components/common/Markdown/markdown.d.ts +1 -0
  849. package/lib/components/common/Markdown/markdown.js +2 -2
  850. package/lib/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.d.ts +1 -0
  851. package/lib/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.js +2 -4
  852. package/lib/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.styles.d.ts +1 -3
  853. package/lib/components/common/OutlinedInput/components/InputAdornment/components/SearchInputAdornment/searchInputAdornment.d.ts +1 -0
  854. package/lib/components/common/OutlinedInput/components/InputAdornment/components/SearchInputAdornment/searchInputAdornment.js +2 -3
  855. package/lib/components/common/OutlinedInput/components/InputAdornment/inputAdornment.styles.d.ts +1 -3
  856. package/lib/components/common/Paper/components/FlatPaper/flatPaper.d.ts +1 -0
  857. package/lib/components/common/Paper/components/FlatPaper/flatPaper.js +2 -2
  858. package/lib/components/common/Paper/components/FlatPaper/flatPaper.styles.d.ts +1 -3
  859. package/lib/components/common/Paper/components/FluidPaper/fluidPaper.d.ts +1 -0
  860. package/lib/components/common/Paper/components/FluidPaper/fluidPaper.js +2 -2
  861. package/lib/components/common/Paper/components/FluidPaper/fluidPaper.styles.d.ts +1 -3
  862. package/lib/components/common/Paper/components/RoundedPaper/roundedPaper.d.ts +1 -0
  863. package/lib/components/common/Paper/components/RoundedPaper/roundedPaper.js +2 -2
  864. package/lib/components/common/Paper/components/RoundedPaper/roundedPaper.styles.d.ts +1 -3
  865. package/lib/components/common/Paper/paper.d.ts +2 -2
  866. package/lib/components/common/Paper/paper.js +3 -2
  867. package/lib/components/common/Progress/components/CircularProgress/circularProgress.d.ts +1 -1
  868. package/lib/components/common/Progress/components/CircularProgress/circularProgress.js +2 -4
  869. package/lib/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.d.ts +1 -0
  870. package/lib/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.js +3 -2
  871. package/lib/components/common/RadioGroup/radioGroup.d.ts +1 -0
  872. package/lib/components/common/RadioGroup/radioGroup.js +2 -2
  873. package/lib/components/common/Section/components/CollapsableSection/collapsableSection.d.ts +1 -1
  874. package/lib/components/common/Section/components/CollapsableSection/collapsableSection.js +4 -7
  875. package/lib/components/common/Section/components/CollapsableSection/collapsableSection.styles.d.ts +1 -3
  876. package/lib/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.d.ts +1 -0
  877. package/lib/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.js +2 -2
  878. package/lib/components/common/Section/components/SectionTitle/sectionTitle.d.ts +1 -0
  879. package/lib/components/common/Section/components/SectionTitle/sectionTitle.js +2 -2
  880. package/lib/components/common/Section/components/SectionTitle/sectionTitle.stories.d.ts +2 -2
  881. package/lib/components/common/Section/section.styles.d.ts +4 -4
  882. package/lib/components/common/Sections/sections.d.ts +1 -1
  883. package/lib/components/common/Sections/sections.js +2 -3
  884. package/lib/components/common/Socials/socials.d.ts +2 -2
  885. package/lib/components/common/Socials/socials.js +3 -3
  886. package/lib/components/common/Socials/socials.stories.d.ts +1 -1
  887. package/lib/components/common/Stack/components/Divider/divider.d.ts +1 -1
  888. package/lib/components/common/Stack/components/Divider/divider.js +2 -2
  889. package/lib/components/common/Stack/stack.d.ts +1 -1
  890. package/lib/components/common/Stack/stack.js +2 -2
  891. package/lib/components/common/StaticImage/staticImage.d.ts +1 -0
  892. package/lib/components/common/StaticImage/staticImage.js +2 -3
  893. package/lib/components/common/StaticImage/staticImage.stories.d.ts +2 -2
  894. package/lib/components/common/StatusBadge/statusBadge.d.ts +1 -2
  895. package/lib/components/common/StatusBadge/statusBadge.js +3 -2
  896. package/lib/components/common/StatusBadge/statusBadge.stories.d.ts +1 -1
  897. package/lib/components/common/StatusIcon/statusIcon.d.ts +1 -1
  898. package/lib/components/common/StatusIcon/statusIcon.js +2 -3
  899. package/lib/components/common/StatusIcon/statusIcon.stories.d.ts +2 -2
  900. package/lib/components/common/Tabs/tabs.d.ts +1 -1
  901. package/lib/components/common/Tabs/tabs.js +3 -4
  902. package/lib/components/common/Tabs/tabs.styles.d.ts +1 -3
  903. package/lib/components/common/Tag/tag.d.ts +1 -0
  904. package/lib/components/common/Tag/tag.js +2 -2
  905. package/lib/components/common/Tag/tag.stories.d.ts +2 -2
  906. package/lib/components/common/Tag/tag.stories.js +2 -2
  907. package/lib/components/common/Tag/tag.styles.d.ts +2 -6
  908. package/lib/components/common/Title/title.d.ts +1 -0
  909. package/lib/components/common/Title/title.js +4 -3
  910. package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.d.ts +1 -0
  911. package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.js +3 -2
  912. package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.stories.d.ts +2 -2
  913. package/lib/components/common/Typography/TypographyWordBreak/TypographyWordBreak.d.ts +1 -1
  914. package/lib/components/common/Typography/TypographyWordBreak/TypographyWordBreak.js +2 -2
  915. package/lib/config/entities.d.ts +1 -1
  916. package/lib/config/utils.js +2 -6
  917. package/lib/entity/api/service.js +1 -3
  918. package/lib/hooks/authentication/session/useSessionIdleTimer.d.ts +1 -1
  919. package/lib/hooks/useAsync.js +2 -2
  920. package/lib/hooks/useCategoryFilter.js +1 -1
  921. package/lib/hooks/useEntityService.js +1 -2
  922. package/lib/hooks/useFileManifest/common/entities.d.ts +0 -9
  923. package/lib/hooks/useFileManifest/common/entities.js +1 -9
  924. package/lib/hooks/useRequestManifest/useRequestManifest.js +1 -2
  925. package/lib/hooks/useResizeObserver.d.ts +1 -1
  926. package/lib/hooks/useResizeObserver.js +1 -1
  927. package/lib/hooks/useWindowResize.js +8 -2
  928. package/lib/providers/authentication/terra/provider.d.ts +1 -0
  929. package/lib/providers/authentication/terra/provider.js +4 -3
  930. package/lib/providers/config.d.ts +2 -2
  931. package/lib/providers/config.js +4 -3
  932. package/lib/providers/dataDictionaryState/provider.d.ts +1 -1
  933. package/lib/providers/dataDictionaryState/provider.js +2 -2
  934. package/lib/providers/exploreState.d.ts +2 -2
  935. package/lib/providers/exploreState.js +3 -2
  936. package/lib/providers/fileManifestState.d.ts +2 -2
  937. package/lib/providers/fileManifestState.js +4 -3
  938. package/lib/providers/googleSignInAuthentication/provider.d.ts +1 -0
  939. package/lib/providers/googleSignInAuthentication/provider.js +2 -5
  940. package/lib/providers/layoutDimensions/context.js +2 -2
  941. package/lib/providers/layoutDimensions/provider.d.ts +1 -0
  942. package/lib/providers/layoutDimensions/provider.js +3 -2
  943. package/lib/providers/layoutDimensions/types.d.ts +2 -2
  944. package/lib/providers/loginGuard/provider.d.ts +1 -0
  945. package/lib/providers/loginGuard/provider.js +3 -4
  946. package/lib/providers/nextAuthAuthentication/provider.d.ts +1 -0
  947. package/lib/providers/nextAuthAuthentication/provider.js +2 -5
  948. package/lib/providers/services/provider.d.ts +1 -1
  949. package/lib/providers/services/provider.js +2 -2
  950. package/lib/providers/services/wasPop/provider.d.ts +1 -1
  951. package/lib/providers/services/wasPop/provider.js +4 -3
  952. package/lib/providers/systemStatus.d.ts +2 -2
  953. package/lib/providers/systemStatus.js +4 -3
  954. package/lib/storybook/controls/constants.d.ts +1 -1
  955. package/lib/storybook/controls/utils.d.ts +1 -1
  956. package/lib/storybook/decorators.d.ts +1 -1
  957. package/lib/storybook/decorators.js +2 -5
  958. package/lib/storybook/parameters.d.ts +1 -1
  959. package/lib/utils/mdx/plugins/rehypeSlug.d.ts +9 -1
  960. package/lib/utils/mdx/plugins/rehypeSlug.js +26 -4
  961. package/lib/utils/mdx/plugins/remarkHeadings.d.ts +1 -1
  962. package/lib/utils/mdx/plugins/remarkHeadings.js +6 -7
  963. package/lib/utils/mdx/plugins/types.d.ts +4 -0
  964. package/lib/utils/mdx/plugins/utils.d.ts +10 -0
  965. package/lib/utils/mdx/plugins/utils.js +8 -0
  966. package/lib/utils/mdx/staticGeneration/staticProps.d.ts +2 -2
  967. package/lib/views/ContentView/contentView.d.ts +1 -1
  968. package/lib/views/ContentView/contentView.js +2 -2
  969. package/lib/views/ContentView/contentView.stories.d.ts +1 -1
  970. package/lib/views/ContentView/contentView.stories.js +3 -19
  971. package/lib/views/DataDictionaryView/dataDictionaryView.d.ts +1 -0
  972. package/lib/views/DataDictionaryView/dataDictionaryView.js +2 -3
  973. package/lib/views/EntityDetailView/entityDetailView.d.ts +1 -0
  974. package/lib/views/EntityDetailView/entityDetailView.js +4 -6
  975. package/lib/views/EntityExportMethodView/entityExportMethodView.d.ts +1 -0
  976. package/lib/views/EntityExportMethodView/entityExportMethodView.js +3 -3
  977. package/lib/views/EntityExportView/entityExportView.d.ts +1 -0
  978. package/lib/views/EntityExportView/entityExportView.js +3 -3
  979. package/lib/views/ExploreView/exploreView.d.ts +1 -0
  980. package/lib/views/ExploreView/exploreView.js +3 -11
  981. package/lib/views/ExportMethodView/exportMethodView.d.ts +1 -0
  982. package/lib/views/ExportMethodView/exportMethodView.js +2 -2
  983. package/lib/views/ExportView/exportView.d.ts +1 -0
  984. package/lib/views/ExportView/exportView.js +2 -2
  985. package/lib/views/LoginView/loginView.d.ts +1 -0
  986. package/lib/views/LoginView/loginView.js +2 -2
  987. package/package.json +50 -59
  988. package/src/apis/azul/common/filterTransformer.ts +5 -5
  989. package/src/common/analytics/analytics.ts +1 -1
  990. package/src/common/categories/config/range/typeGuards.ts +1 -1
  991. package/src/common/categories/config/types.ts +5 -6
  992. package/src/common/categories/config/utils.ts +4 -4
  993. package/src/common/categories/models/range/utils.ts +2 -2
  994. package/src/common/categories/models/select/utils.ts +2 -2
  995. package/src/common/categories/views/range/typeGuards.ts +1 -1
  996. package/src/common/categories/views/range/utils.ts +2 -2
  997. package/src/common/categories/views/select/typeGuards.ts +1 -1
  998. package/src/common/chart/sort/constants.ts +13 -0
  999. package/src/common/chart/sort/types.ts +22 -0
  1000. package/src/common/chart/sort/utils.ts +22 -0
  1001. package/src/common/chart/types.ts +6 -0
  1002. package/src/common/entities.ts +2 -1
  1003. package/src/common/filters/sort/models/utils.ts +3 -3
  1004. package/src/components/Authentication/components/SessionController/components/GoogleSessionController/SessionController.tsx +1 -1
  1005. package/src/components/Authentication/components/SessionController/components/NextSessionController/SessionController.tsx +1 -1
  1006. package/src/components/Authentication/components/SessionController/components/NextSessionController/utils.ts +3 -3
  1007. package/src/components/ComponentCreator/ComponentCreator.tsx +4 -6
  1008. package/src/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.tsx +1 -1
  1009. package/src/components/ComponentCreator/components/RenderComponent/renderComponent.tsx +1 -1
  1010. package/src/components/DataDictionary/common/utils.ts +8 -8
  1011. package/src/components/DataDictionary/components/Description/description.styles.ts +3 -1
  1012. package/src/components/DataDictionary/components/Description/description.tsx +1 -1
  1013. package/src/components/DataDictionary/components/Entities/entities.tsx +1 -1
  1014. package/src/components/DataDictionary/components/Entity/entity.tsx +1 -1
  1015. package/src/components/DataDictionary/components/Entity/utils.ts +1 -1
  1016. package/src/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.tsx +1 -1
  1017. package/src/components/DataDictionary/components/Filters/components/ColumnFilterTags/types.ts +3 -2
  1018. package/src/components/DataDictionary/components/Filters/components/ColumnFilters/columnFilters.tsx +1 -1
  1019. package/src/components/DataDictionary/components/Filters/filters.tsx +1 -1
  1020. package/src/components/DataDictionary/components/Filters/stories/constants.ts +1 -1
  1021. package/src/components/DataDictionary/components/Filters/stories/filters.stories.tsx +3 -3
  1022. package/src/components/DataDictionary/components/Filters/stories/utils.ts +1 -1
  1023. package/src/components/DataDictionary/components/Layout/components/EntitiesLayout/entitiesLayout.tsx +3 -3
  1024. package/src/components/DataDictionary/components/Layout/components/FiltersLayout/filtersLayout.tsx +3 -3
  1025. package/src/components/DataDictionary/components/Layout/components/OutlineLayout/outlineLayout.tsx +1 -1
  1026. package/src/components/DataDictionary/components/Layout/components/TitleLayout/titleLayout.tsx +1 -1
  1027. package/src/components/DataDictionary/components/Outline/components/ContentsTab/contentsTab.tsx +1 -1
  1028. package/src/components/DataDictionary/components/Outline/outline.tsx +1 -1
  1029. package/src/components/DataDictionary/components/Outline/utils.ts +3 -3
  1030. package/src/components/DataDictionary/components/Table/components/BasicCell/basicCell.tsx +2 -2
  1031. package/src/components/DataDictionary/components/Table/hook.ts +1 -1
  1032. package/src/components/DataDictionary/components/Table/options/columnFilters/hook.ts +3 -3
  1033. package/src/components/DataDictionary/components/Table/options/globalFilter/hook.ts +3 -3
  1034. package/src/components/DataDictionary/components/Table/table.tsx +2 -2
  1035. package/src/components/DataDictionary/components/Table/utils.ts +4 -4
  1036. package/src/components/DataDictionary/components/Title/title.tsx +1 -1
  1037. package/src/components/DataDictionary/components/Tooltip/components/Title/title.tsx +1 -1
  1038. package/src/components/DataDictionary/components/Tooltip/tooltip.tsx +1 -1
  1039. package/src/components/DataDictionary/dataDictionary.tsx +1 -1
  1040. package/src/components/DataDictionary/hooks/UseDataDictionaryConfig/hook.ts +2 -2
  1041. package/src/components/DataDictionary/hooks/UseMeasureFilters/hook.ts +1 -1
  1042. package/src/components/DataDictionary/hooks/UseMeasureFilters/types.ts +1 -1
  1043. package/src/components/Detail/components/AccessibilityBadge/accessibilityBadge.tsx +1 -1
  1044. package/src/components/Detail/components/DetailViewTable/detailViewTable.tsx +1 -1
  1045. package/src/components/Detail/components/Table/common/utils.ts +1 -1
  1046. package/src/components/Detail/components/Table/components/TableBody/tableBody.tsx +1 -1
  1047. package/src/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.tsx +1 -1
  1048. package/src/components/Detail/components/Table/components/TableRows/tableRows.tsx +1 -1
  1049. package/src/components/Detail/components/Table/stories/filter/filter.stories.tsx +1 -1
  1050. package/src/components/Detail/components/Table/stories/table.stories.tsx +3 -3
  1051. package/src/components/Detail/components/Table/table.tsx +1 -1
  1052. package/src/components/Detail/detail.stories.tsx +1 -2
  1053. package/src/components/Detail/detail.tsx +1 -1
  1054. package/src/components/Error/error.stories.tsx +1 -1
  1055. package/src/components/Error/error.tsx +8 -9
  1056. package/src/components/ErrorBoundary/errorBoundary.tsx +3 -3
  1057. package/src/components/Export/common/tracking.ts +2 -2
  1058. package/src/components/Export/common/utils.ts +4 -4
  1059. package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.tsx +1 -1
  1060. package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.tsx +1 -1
  1061. package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.tsx +1 -1
  1062. package/src/components/Export/components/DownloadCurlCommand/downloadCurlCommand.tsx +4 -6
  1063. package/src/components/Export/components/ExportForm/common/entities.ts +1 -1
  1064. package/src/components/Export/components/ExportForm/components/ExportButton/exportButton.tsx +1 -1
  1065. package/src/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.tsx +3 -3
  1066. package/src/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.tsx +2 -2
  1067. package/src/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.tsx +1 -1
  1068. package/src/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.tsx +1 -1
  1069. package/src/components/Export/components/ExportForm/exportForm.tsx +3 -3
  1070. package/src/components/Export/components/ExportMethod/exportMethod.stories.tsx +1 -1
  1071. package/src/components/Export/components/ExportMethod/exportMethod.tsx +9 -15
  1072. package/src/components/Export/components/ExportSummary/common/utils.ts +1 -1
  1073. package/src/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.tsx +1 -1
  1074. package/src/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.tsx +1 -1
  1075. package/src/components/Export/components/ExportSummary/exportSummary.tsx +1 -1
  1076. package/src/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.tsx +1 -1
  1077. package/src/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.tsx +1 -1
  1078. package/src/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.tsx +2 -2
  1079. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.tsx +3 -3
  1080. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.tsx +2 -2
  1081. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.tsx +2 -2
  1082. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.tsx +1 -1
  1083. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.tsx +2 -2
  1084. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.tsx +9 -9
  1085. package/src/components/Export/components/ExportToTerra/exportToTerra.tsx +3 -5
  1086. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.tsx +1 -1
  1087. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.tsx +1 -1
  1088. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.tsx +1 -3
  1089. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.tsx +1 -1
  1090. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.tsx +1 -1
  1091. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.tsx +1 -1
  1092. package/src/components/Export/components/ManifestDownload/manifestDownload.tsx +4 -6
  1093. package/src/components/Filter/common/entities.ts +2 -2
  1094. package/src/components/Filter/common/utils.ts +3 -3
  1095. package/src/components/Filter/components/ClearAllFilters/clearAllFilters.tsx +1 -1
  1096. package/src/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.tsx +3 -3
  1097. package/src/components/Filter/components/Filter/filter.tsx +1 -1
  1098. package/src/components/Filter/components/Filter/stories/args.ts +1 -1
  1099. package/src/components/Filter/components/Filter/stories/filter.stories.tsx +2 -2
  1100. package/src/components/Filter/components/FilterCountChip/filterCountChip.tsx +1 -1
  1101. package/src/components/Filter/components/FilterCountChip/stories/filterCountChip.stories.tsx +1 -1
  1102. package/src/components/Filter/components/FilterLabel/filterLabel.stories.tsx +2 -2
  1103. package/src/components/Filter/components/FilterLabel/filterLabel.tsx +1 -1
  1104. package/src/components/Filter/components/FilterMenu/filterMenu.stories.tsx +2 -2
  1105. package/src/components/Filter/components/FilterMenu/filterMenu.tsx +2 -2
  1106. package/src/components/Filter/components/FilterMenuSearch/filterMenuSearch.tsx +1 -1
  1107. package/src/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.tsx +2 -2
  1108. package/src/components/Filter/components/FilterRange/filterRange.tsx +5 -5
  1109. package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/hook.ts +3 -3
  1110. package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/schema.ts +3 -3
  1111. package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/types.ts +1 -1
  1112. package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/utils.ts +2 -2
  1113. package/src/components/Filter/components/FilterRange/stories/args.ts +1 -1
  1114. package/src/components/Filter/components/FilterRange/stories/filterRange.stories.tsx +1 -1
  1115. package/src/components/Filter/components/FilterRange/types.ts +1 -2
  1116. package/src/components/Filter/components/FilterRange/utils.ts +1 -1
  1117. package/src/components/Filter/components/FilterTag/filterTag.tsx +1 -1
  1118. package/src/components/Filter/components/FilterTag/stories/args.ts +2 -2
  1119. package/src/components/Filter/components/FilterTag/stories/filterTag.stories.tsx +2 -2
  1120. package/src/components/Filter/components/FilterTag/utils.ts +3 -3
  1121. package/src/components/Filter/components/FilterTags/filterTags.stories.tsx +2 -2
  1122. package/src/components/Filter/components/FilterTags/filterTags.tsx +1 -1
  1123. package/src/components/Filter/components/Filters/filters.tsx +4 -4
  1124. package/src/components/Filter/components/Filters/stories/args.ts +1 -1
  1125. package/src/components/Filter/components/Filters/stories/filters.stories.tsx +2 -2
  1126. package/src/components/Filter/components/HighlightedLabel/highlightedLabel.tsx +1 -1
  1127. package/src/components/Filter/components/SearchAllFilters/common/utils.ts +1 -1
  1128. package/src/components/Filter/components/SearchAllFilters/components/OutlinedInput/outlinedInput.tsx +2 -2
  1129. package/src/components/Filter/components/SearchAllFilters/components/OutlinedInput/utils.ts +1 -1
  1130. package/src/components/Filter/components/SearchAllFilters/components/VariableSizeList/VariableSizeList.tsx +13 -12
  1131. package/src/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.tsx +5 -5
  1132. package/src/components/Filter/components/SearchAllFilters/searchAllFilters.tsx +22 -23
  1133. package/src/components/Filter/components/SearchAllFilters/stories/args.ts +1 -1
  1134. package/src/components/Filter/components/SearchAllFilters/stories/searchAllFilters.stories.tsx +2 -2
  1135. package/src/components/Filter/components/SearchAllFilters/types.ts +2 -1
  1136. package/src/components/Filter/components/VariableSizeList/VariableSizeList.tsx +7 -7
  1137. package/src/components/Filter/components/VariableSizeListItem/variableSizeListItem.tsx +1 -1
  1138. package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/columnFiltersAdapter.tsx +3 -3
  1139. package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/hooks/UseUpdateFilterSort/hook.ts +3 -3
  1140. package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/hooks/UseUpdateFilterSort/utils.ts +2 -2
  1141. package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/types.ts +4 -2
  1142. package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/utils.ts +17 -17
  1143. package/src/components/Filter/components/controls/Controls/components/FilterSort/filterSort.tsx +1 -1
  1144. package/src/components/Filter/components/controls/Controls/components/FilterSort/stories/filterSort.stories.tsx +1 -1
  1145. package/src/components/Filter/components/controls/Controls/controls.tsx +1 -1
  1146. package/src/components/Filter/components/controls/Controls/types.ts +2 -1
  1147. package/src/components/Filter/components/surfaces/drawer/Drawer/drawer.tsx +1 -1
  1148. package/src/components/Filter/components/surfaces/drawer/Drawer/types.ts +1 -3
  1149. package/src/components/Filter/components/surfaces/drawer/components/Button/button.tsx +1 -1
  1150. package/src/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.tsx +1 -1
  1151. package/src/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.tsx +1 -1
  1152. package/src/components/Filter/components/views/select/SelectListItem/selectListItem.tsx +3 -3
  1153. package/src/components/Filter/components/views/select/components/Checkbox/checkbox.tsx +1 -1
  1154. package/src/components/Filter/components/views/select/components/ListItemButton/listItemButton.tsx +2 -2
  1155. package/src/components/Filter/components/views/select/components/ListItemText/components/Count/count.tsx +1 -1
  1156. package/src/components/Filter/components/views/select/components/ListItemText/components/Term/term.tsx +1 -1
  1157. package/src/components/Filter/components/views/select/components/ListItemText/listItemText.tsx +3 -3
  1158. package/src/components/Head/head.tsx +1 -1
  1159. package/src/components/Index/components/AzulFileDownload/azulFileDownload.stories.tsx +1 -1
  1160. package/src/components/Index/components/AzulFileDownload/azulFileDownload.tsx +1 -1
  1161. package/src/components/Index/components/EntityView/components/controls/ActionButton/actionButton.tsx +1 -1
  1162. package/src/components/Index/components/EntityView/components/controls/ExportButton/exportButton.tsx +1 -1
  1163. package/src/components/Index/components/EntityView/components/controls/FilterButton/filterButton.tsx +1 -1
  1164. package/src/components/Index/components/EntityView/components/controls/ViewToggle/stories/viewToggle.stories.tsx +1 -1
  1165. package/src/components/Index/components/EntityView/components/controls/ViewToggle/viewToggle.tsx +1 -1
  1166. package/src/components/Index/components/EntityView/components/layout/Summary/summary.tsx +1 -1
  1167. package/src/components/Index/components/EntityView/components/layout/Title/title.tsx +1 -1
  1168. package/src/components/Index/components/EntityView/components/navigation/Tabs/common/utils.ts +1 -1
  1169. package/src/components/Index/components/EntityView/components/navigation/Tabs/tabs.tsx +1 -1
  1170. package/src/components/Index/components/EntityView/components/slots/EntityListSlot/entityListSlot.tsx +1 -1
  1171. package/src/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.tsx +1 -1
  1172. package/src/components/Index/components/EntityView/components/views/ChartView/chartView.tsx +9 -3
  1173. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/barX/plot.ts +1 -1
  1174. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/barX/utils.ts +7 -7
  1175. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.tsx +1 -1
  1176. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UseBarCount/hook.ts +2 -2
  1177. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UseBarCount/utils.ts +3 -3
  1178. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UsePlotOptions/hook.ts +5 -10
  1179. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/args.ts +12 -12
  1180. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/chart.stories.tsx +2 -2
  1181. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/types.ts +1 -2
  1182. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/utils.ts +1 -1
  1183. package/src/components/Index/components/EntityView/components/views/ChartView/hooks/UseChartView/types.ts +1 -1
  1184. package/src/components/Index/components/EntityView/components/views/ChartView/hooks/UseChartView/useChartView.ts +4 -4
  1185. package/src/components/Index/components/EntityView/components/views/ChartView/stories/args.ts +3 -3
  1186. package/src/components/Index/components/EntityView/components/views/ChartView/stories/chartView.stories.tsx +2 -2
  1187. package/src/components/Index/components/EntityView/components/views/ChartView/utils.ts +2 -2
  1188. package/src/components/Index/components/EntityView/components/views/TableView/tableView.tsx +1 -1
  1189. package/src/components/Index/index.tsx +1 -1
  1190. package/src/components/Index/table/coreOptions/columns/cellFactory.tsx +1 -1
  1191. package/src/components/Index/table/hook.ts +7 -7
  1192. package/src/components/Layout/components/BackPage/backPageView.stories.tsx +1 -2
  1193. package/src/components/Layout/components/BackPage/backPageView.tsx +3 -3
  1194. package/src/components/Layout/components/BackPage/components/BackPageHero/backPageHero.tsx +1 -1
  1195. package/src/components/Layout/components/BackPage/components/BackPageHero/components/Actions/actions.tsx +1 -1
  1196. package/src/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.tsx +1 -1
  1197. package/src/components/Layout/components/BackPage/components/BackPageHero/stories/backPageHero.stories.tsx +1 -1
  1198. package/src/components/Layout/components/ContentLayout/components/Main/main.tsx +1 -1
  1199. package/src/components/Layout/components/ContentLayout/contentLayout.styles.ts +1 -1
  1200. package/src/components/Layout/components/ContentLayout/contentLayout.tsx +1 -1
  1201. package/src/components/Layout/components/Floating/floating.tsx +1 -1
  1202. package/src/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/title.tsx +1 -1
  1203. package/src/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/utils.ts +2 -2
  1204. package/src/components/Layout/components/Footer/components/VersionInfo/versionInfo.tsx +1 -1
  1205. package/src/components/Layout/components/Footer/footer.stories.tsx +1 -2
  1206. package/src/components/Layout/components/Footer/footer.tsx +1 -1
  1207. package/src/components/Layout/components/Header/common/entities.ts +1 -1
  1208. package/src/components/Layout/components/Header/common/utils.ts +10 -10
  1209. package/src/components/Layout/components/Header/components/Announcements/announcements.tsx +1 -1
  1210. package/src/components/Layout/components/Header/components/Content/components/Actions/actions.tsx +1 -1
  1211. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.tsx +2 -2
  1212. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.tsx +1 -1
  1213. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.tsx +1 -1
  1214. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.tsx +3 -3
  1215. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/common/utils.ts +2 -2
  1216. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.tsx +5 -4
  1217. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.tsx +1 -1
  1218. package/src/components/Layout/components/Header/components/Content/components/Logo/logo.tsx +1 -1
  1219. package/src/components/Layout/components/Header/components/Content/components/Navigation/common/utils.ts +1 -1
  1220. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationButtonLabel/navigationButtonLabel.tsx +1 -1
  1221. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.tsx +2 -2
  1222. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.tsx +1 -1
  1223. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.tsx +1 -1
  1224. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.tsx +3 -3
  1225. package/src/components/Layout/components/Header/components/Content/components/Navigation/navigation.tsx +7 -7
  1226. package/src/components/Layout/components/Header/components/Content/components/Slogan/slogan.tsx +2 -2
  1227. package/src/components/Layout/components/Header/header.stories.tsx +1 -2
  1228. package/src/components/Layout/components/Header/header.tsx +1 -1
  1229. package/src/components/Layout/components/Header/hooks/useHeaderNavigation.ts +1 -1
  1230. package/src/components/Layout/components/Header/hooks/useHeaderVisibility.ts +1 -1
  1231. package/src/components/Layout/components/Main/main.tsx +1 -1
  1232. package/src/components/Layout/components/Nav/components/NavBarHero/navBarHero.tsx +1 -1
  1233. package/src/components/Layout/components/Nav/nav.stories.tsx +1 -1
  1234. package/src/components/Layout/components/Nav/nav.tsx +9 -6
  1235. package/src/components/Layout/components/Outline/components/ContentsTab/contentsTab.tsx +1 -1
  1236. package/src/components/Layout/components/Outline/components/ContentsTab/types.ts +1 -2
  1237. package/src/components/Layout/components/Outline/hooks/UseTabs/hook.ts +1 -1
  1238. package/src/components/Layout/components/Outline/hooks/UseTabs/utils.ts +1 -1
  1239. package/src/components/Layout/components/Outline/outline.tsx +2 -2
  1240. package/src/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.tsx +1 -1
  1241. package/src/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.tsx +1 -1
  1242. package/src/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.stories.tsx +1 -1
  1243. package/src/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.tsx +1 -1
  1244. package/src/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.tsx +1 -1
  1245. package/src/components/Layout/components/Sidebar/sidebar.stories.tsx +2 -2
  1246. package/src/components/Layout/components/Sidebar/sidebar.tsx +1 -1
  1247. package/src/components/Links/common/utils.ts +2 -2
  1248. package/src/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.tsx +11 -9
  1249. package/src/components/Links/components/Link/link.tsx +2 -3
  1250. package/src/components/Links/links.stories.tsx +1 -1
  1251. package/src/components/Links/links.tsx +1 -1
  1252. package/src/components/Loading/loading.stories.tsx +2 -2
  1253. package/src/components/Loading/loading.tsx +1 -1
  1254. package/src/components/Login/components/Button/button.tsx +1 -1
  1255. package/src/components/Login/components/Buttons/buttons.tsx +1 -1
  1256. package/src/components/Login/components/Section/components/Consent/consent.tsx +1 -1
  1257. package/src/components/Login/components/Section/components/Consent/types.ts +2 -1
  1258. package/src/components/Login/components/Section/components/Warning/warning.tsx +1 -1
  1259. package/src/components/Login/hooks/useUserConsent/useUserConsent.ts +1 -1
  1260. package/src/components/Login/hooks/useUserLogin/types.ts +4 -2
  1261. package/src/components/Login/hooks/useUserLogin/useUserLogin.ts +1 -1
  1262. package/src/components/Login/login.tsx +2 -2
  1263. package/src/components/MarkdownRenderer/components/Anchor/anchor.tsx +2 -2
  1264. package/src/components/MarkdownRenderer/components/Table/table.tsx +2 -2
  1265. package/src/components/MarkdownRenderer/constants.ts +2 -2
  1266. package/src/components/MarkdownRenderer/markdownRenderer.tsx +20 -24
  1267. package/src/components/MarkdownRenderer/stories/markdownRenderer.stories.tsx +2 -2
  1268. package/src/components/MarkdownRenderer/types.ts +2 -5
  1269. package/src/components/NoResults/noResults.tsx +1 -1
  1270. package/src/components/Plot/components/BarX/barX.tsx +1 -1
  1271. package/src/components/Project/components/Citation/citation.stories.tsx +1 -1
  1272. package/src/components/Project/components/Citation/citation.tsx +1 -1
  1273. package/src/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.stories.tsx +1 -1
  1274. package/src/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.tsx +1 -1
  1275. package/src/components/Project/components/Contacts/contacts.stories.tsx +1 -1
  1276. package/src/components/Project/components/Contacts/contacts.tsx +3 -8
  1277. package/src/components/Project/components/Contributors/contributors.stories.tsx +1 -1
  1278. package/src/components/Project/components/Contributors/contributors.tsx +1 -1
  1279. package/src/components/Project/components/DataCurators/dataCurators.stories.tsx +1 -1
  1280. package/src/components/Project/components/DataCurators/dataCurators.tsx +1 -1
  1281. package/src/components/Project/components/DataReleasePolicy/dataReleasePolicy.stories.tsx +1 -1
  1282. package/src/components/Project/components/DataReleasePolicy/dataReleasePolicy.tsx +6 -6
  1283. package/src/components/Project/components/Description/description.stories.tsx +1 -1
  1284. package/src/components/Project/components/Description/description.tsx +1 -1
  1285. package/src/components/Project/components/Details/details.stories.tsx +1 -1
  1286. package/src/components/Project/components/Details/details.tsx +1 -1
  1287. package/src/components/Project/components/Publications/publications.stories.tsx +1 -1
  1288. package/src/components/Project/components/Publications/publications.tsx +3 -3
  1289. package/src/components/Project/components/SupplementaryLinks/supplementaryLinks.stories.tsx +1 -1
  1290. package/src/components/Project/components/SupplementaryLinks/supplementaryLinks.tsx +1 -1
  1291. package/src/components/Redirect/redirect.tsx +1 -1
  1292. package/src/components/Stepper/components/Step/components/StepContent/stepContent.tsx +1 -1
  1293. package/src/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.tsx +1 -1
  1294. package/src/components/Stepper/components/Step/components/StepIcon/stepIcon.tsx +1 -1
  1295. package/src/components/Stepper/components/Step/components/StepIcon/stories/stepIcon.stories.tsx +2 -2
  1296. package/src/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/icon.tsx +1 -1
  1297. package/src/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/stories/icon.stories.tsx +2 -2
  1298. package/src/components/Stepper/components/Step/components/StepLabel/components/Label/label.tsx +1 -1
  1299. package/src/components/Stepper/components/Step/components/StepLabel/components/Label/stories/label.stories.tsx +5 -2
  1300. package/src/components/Stepper/components/Step/components/StepLabel/components/Optional/optional.tsx +1 -1
  1301. package/src/components/Stepper/components/Step/components/StepLabel/stepLabel.tsx +1 -1
  1302. package/src/components/Stepper/components/Step/components/StepLabel/stories/stepLabel.stories.tsx +7 -3
  1303. package/src/components/Stepper/components/Step/step.tsx +1 -1
  1304. package/src/components/Stepper/components/Step/stories/step.stories.tsx +8 -4
  1305. package/src/components/Support/components/SupportRequest/components/Dialog/dialog.tsx +2 -1
  1306. package/src/components/Support/components/SupportRequest/components/Dropzone/dropzone.tsx +1 -1
  1307. package/src/components/Support/components/SupportRequest/components/SupportRequestForm/common/utils.ts +5 -5
  1308. package/src/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.tsx +11 -9
  1309. package/src/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.tsx +1 -1
  1310. package/src/components/Support/components/SupportRequest/supportRequest.tsx +1 -1
  1311. package/src/components/Support/components/ViewSupport/types.ts +1 -2
  1312. package/src/components/Support/components/ViewSupport/viewSupport.tsx +1 -1
  1313. package/src/components/Table/columnDef/accessorFn/typeGuards.ts +1 -1
  1314. package/src/components/Table/columnDef/columnFilters/filterFn.ts +1 -1
  1315. package/src/components/Table/columnDef/globalFilter/filterFn.ts +1 -1
  1316. package/src/components/Table/columnDef/globalFilter/utils.ts +3 -3
  1317. package/src/components/Table/common/typeGuards.ts +1 -1
  1318. package/src/components/Table/common/utils.ts +10 -10
  1319. package/src/components/Table/components/PaginationSummary/paginationSummary.tsx +1 -1
  1320. package/src/components/Table/components/TableBody/tableBody.tsx +1 -1
  1321. package/src/components/Table/components/TableCell/common/utils.ts +2 -2
  1322. package/src/components/Table/components/TableCell/components/BasicCell/basicCell.tsx +1 -1
  1323. package/src/components/Table/components/TableCell/components/ChipCell/chipCell.tsx +2 -2
  1324. package/src/components/Table/components/TableCell/components/CodeCell/codeCell.tsx +2 -2
  1325. package/src/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.tsx +2 -2
  1326. package/src/components/Table/components/TableCell/components/LinkCell/linkCell.tsx +2 -2
  1327. package/src/components/Table/components/TableCell/components/LinkCell/stories/linkCell.stories.tsx +1 -1
  1328. package/src/components/Table/components/TableCell/components/LinkCell/utils.ts +2 -2
  1329. package/src/components/Table/components/TableCell/components/MarkdownCell/markdownCell.styles.ts +3 -1
  1330. package/src/components/Table/components/TableCell/components/MarkdownCell/markdownCell.tsx +2 -2
  1331. package/src/components/Table/components/TableCell/components/MarkdownCell/stories/markdownCell.stories.tsx +2 -2
  1332. package/src/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.tsx +2 -2
  1333. package/src/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.tsx +1 -1
  1334. package/src/components/Table/components/TableCell/components/NTagCell/nTagCell.tsx +1 -1
  1335. package/src/components/Table/components/TableCell/components/RankedCell/rankedCell.tsx +2 -2
  1336. package/src/components/Table/components/TableCell/components/RankedCell/utils.ts +1 -1
  1337. package/src/components/Table/components/TableCell/components/RowPositionCell/rowPositionCell.tsx +1 -1
  1338. package/src/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.tsx +1 -1
  1339. package/src/components/Table/components/TableFeatures/ColumnFilter/columnFilter.tsx +2 -2
  1340. package/src/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.tsx +1 -1
  1341. package/src/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/stories/columFilterTag.stories.tsx +4 -3
  1342. package/src/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/types.ts +1 -2
  1343. package/src/components/Table/components/TableFeatures/ColumnFilter/types.ts +1 -2
  1344. package/src/components/Table/components/TableFeatures/ColumnFilter/utils.ts +1 -1
  1345. package/src/components/Table/components/TableFeatures/ColumnGrouping/utils.ts +2 -2
  1346. package/src/components/Table/components/TableFeatures/ColumnVisibility/utils.ts +1 -1
  1347. package/src/components/Table/components/TableFeatures/GlobalFilter/globalFilter.tsx +1 -1
  1348. package/src/components/Table/components/TableFeatures/GlobalFilter/types.ts +1 -2
  1349. package/src/components/Table/components/TableFeatures/RowSorting/utils.ts +2 -2
  1350. package/src/components/Table/components/TableFeatures/TableDownload/tableDownload.tsx +1 -1
  1351. package/src/components/Table/components/TableFeatures/TableDownload/types.ts +3 -2
  1352. package/src/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.tsx +1 -1
  1353. package/src/components/Table/components/TableHead/tableHead.tsx +1 -1
  1354. package/src/components/Table/components/TableHead/utils.ts +1 -1
  1355. package/src/components/Table/components/TablePagination/stories/args.ts +1 -1
  1356. package/src/components/Table/components/TablePagination/stories/tablePagination.stories.tsx +1 -1
  1357. package/src/components/Table/components/TablePagination/tablePagination.tsx +1 -1
  1358. package/src/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.tsx +1 -1
  1359. package/src/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.tsx +4 -4
  1360. package/src/components/Table/components/TableRows/tableRows.tsx +1 -1
  1361. package/src/components/Table/components/TableToolbar/components/ColumnGrouping/columnGrouping.tsx +1 -1
  1362. package/src/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/menuItems.tsx +1 -1
  1363. package/src/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/utils.ts +3 -3
  1364. package/src/components/Table/components/TableToolbar/components/ColumnGrouping/utils.ts +2 -2
  1365. package/src/components/Table/components/TableToolbar/components/ColumnVisibility/columnVisibility.tsx +1 -1
  1366. package/src/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/menuItems.tsx +1 -1
  1367. package/src/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/utils.ts +4 -4
  1368. package/src/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.styles.ts +3 -1
  1369. package/src/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.tsx +5 -3
  1370. package/src/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.tsx +2 -2
  1371. package/src/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.tsx +1 -1
  1372. package/src/components/Table/components/TableToolbar/components/RowPreview/rowPreview.tsx +1 -1
  1373. package/src/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.tsx +1 -1
  1374. package/src/components/Table/components/TableToolbar/components/RowSelection/rowSelection.tsx +1 -1
  1375. package/src/components/Table/components/TableToolbar/tableToolbar.tsx +1 -1
  1376. package/src/components/Table/components/TableToolbar2/tableToolbar2.tsx +1 -1
  1377. package/src/components/Table/coreOptions/state/pagination/utils.ts +1 -1
  1378. package/src/components/Table/featureOptions/facetedColumn/getFacetedMinMaxValues.ts +3 -3
  1379. package/src/components/Table/featureOptions/facetedColumn/utils.ts +2 -2
  1380. package/src/components/Table/features/RowPosition/constants.ts +1 -1
  1381. package/src/components/Table/features/RowPosition/utils.ts +3 -3
  1382. package/src/components/Table/features/RowPreview/constants.ts +1 -1
  1383. package/src/components/Table/features/RowPreview/utils.ts +4 -4
  1384. package/src/components/Table/features/RowSelectionValidation/utils.ts +1 -1
  1385. package/src/components/Table/features/TableDownload/constants.ts +1 -1
  1386. package/src/components/Table/features/TableDownload/onDownload/utils.ts +2 -2
  1387. package/src/components/Table/features/TableDownload/utils.ts +1 -1
  1388. package/src/components/Table/features/entities.ts +4 -6
  1389. package/src/components/Table/hooks/UseVirtualization/types.ts +1 -1
  1390. package/src/components/Table/hooks/UseVirtualization/utils.ts +1 -1
  1391. package/src/components/Table/options/updater.ts +1 -1
  1392. package/src/components/Table/table.tsx +1 -1
  1393. package/src/components/TableCreator/common/utils.ts +1 -1
  1394. package/src/components/TableCreator/options/columnTrackSizing/typeGuards.ts +1 -1
  1395. package/src/components/TableCreator/options/columnTrackSizing/utils.ts +2 -2
  1396. package/src/components/TableCreator/options/grouping/hook.ts +1 -1
  1397. package/src/components/TableCreator/options/initialState/columnVisibility.ts +1 -1
  1398. package/src/components/TableCreator/options/initialState/hook.ts +2 -2
  1399. package/src/components/TableCreator/options/rowSelection/hook.ts +1 -1
  1400. package/src/components/TableCreator/options/visibility/hook.ts +1 -1
  1401. package/src/components/TableCreator/tableCreator.tsx +1 -1
  1402. package/src/components/TempError/components/errorBox.tsx +1 -1
  1403. package/src/components/TempError/tempError.tsx +1 -1
  1404. package/src/components/common/Accordion/accordion.stories.tsx +1 -2
  1405. package/src/components/common/Accordion/accordion.tsx +1 -1
  1406. package/src/components/common/Alert/alert.tsx +2 -2
  1407. package/src/components/common/AnchorLink/anchorLink.tsx +1 -1
  1408. package/src/components/common/Banner/banner.tsx +2 -2
  1409. package/src/components/common/Banner/components/CookieBanner/cookieBanner.tsx +2 -3
  1410. package/src/components/common/Banner/components/SessionTimeout/sessionTimeout.tsx +1 -1
  1411. package/src/components/common/Banner/components/SystemIndexing/systemIndexing.tsx +1 -1
  1412. package/src/components/common/Banner/components/SystemStatus/systemStatus.tsx +1 -1
  1413. package/src/components/common/Breadcrumbs/breadcrumbs.stories.tsx +1 -1
  1414. package/src/components/common/Breadcrumbs/breadcrumbs.tsx +2 -2
  1415. package/src/components/common/Button/button.tsx +3 -3
  1416. package/src/components/common/Button/components/ButtonOutline/buttonOutline.tsx +3 -3
  1417. package/src/components/common/Button/components/ButtonPrimary/buttonPrimary.tsx +3 -3
  1418. package/src/components/common/Button/components/ButtonSecondary/buttonSecondary.tsx +3 -3
  1419. package/src/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.tsx +2 -2
  1420. package/src/components/common/Button/components/ButtonText/buttonText.tsx +1 -1
  1421. package/src/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.tsx +1 -1
  1422. package/src/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.tsx +1 -1
  1423. package/src/components/common/Button/components/CallToActionButton/callToActionButton.stories.tsx +1 -1
  1424. package/src/components/common/Button/components/CallToActionButton/callToActionButton.tsx +13 -14
  1425. package/src/components/common/Button/components/DropdownButton/dropdownButton.tsx +1 -1
  1426. package/src/components/common/Button/components/FileDownloadButton/fileDownloadButton.tsx +1 -1
  1427. package/src/components/common/Button/components/HelpIconButton/helpIconButton.stories.tsx +1 -1
  1428. package/src/components/common/Button/components/HelpIconButton/helpIconButton.tsx +9 -10
  1429. package/src/components/common/Button/components/NavigationButton/navigationButton.tsx +5 -3
  1430. package/src/components/common/ButtonGroup/buttonGroup.tsx +1 -1
  1431. package/src/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.tsx +1 -1
  1432. package/src/components/common/Card/card.stories.tsx +1 -1
  1433. package/src/components/common/Card/card.tsx +1 -1
  1434. package/src/components/common/Card/components/CardAction/cardAction.tsx +1 -1
  1435. package/src/components/common/Card/components/CardActionArea/cardActionArea.tsx +2 -2
  1436. package/src/components/common/Card/components/CardActions/cardActions.tsx +1 -1
  1437. package/src/components/common/Card/components/CardMedia/cardMedia.tsx +1 -1
  1438. package/src/components/common/Card/components/CardSecondaryText/cardSecondaryText.tsx +1 -1
  1439. package/src/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.tsx +1 -1
  1440. package/src/components/common/Card/components/CardText/cardText.tsx +1 -1
  1441. package/src/components/common/Card/components/CardTitle/cardTitle.tsx +1 -1
  1442. package/src/components/common/Card/components/RoundedCard/roundedCard.tsx +1 -1
  1443. package/src/components/common/Code/code.stories.tsx +1 -1
  1444. package/src/components/common/Code/code.tsx +1 -1
  1445. package/src/components/common/CopyToClipboard/copyToClipboard.stories.tsx +1 -1
  1446. package/src/components/common/CopyToClipboard/copyToClipboard.tsx +2 -2
  1447. package/src/components/common/CustomIcon/components/AddIcon/addIcon.tsx +1 -1
  1448. package/src/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.tsx +1 -1
  1449. package/src/components/common/CustomIcon/components/AlertIcon/alertIcon.tsx +1 -1
  1450. package/src/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.tsx +1 -1
  1451. package/src/components/common/CustomIcon/components/CheckedIcon/checkedIcon.tsx +1 -1
  1452. package/src/components/common/CustomIcon/components/CloseIcon/closeIcon.tsx +1 -1
  1453. package/src/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.tsx +1 -1
  1454. package/src/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.tsx +1 -1
  1455. package/src/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.tsx +1 -1
  1456. package/src/components/common/CustomIcon/components/DownloadIcon/downloadIcon.tsx +1 -1
  1457. package/src/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.tsx +1 -1
  1458. package/src/components/common/CustomIcon/components/ErrorIcon/errorIcon.tsx +1 -1
  1459. package/src/components/common/CustomIcon/components/FacebookIcon/facebookIcon.tsx +1 -1
  1460. package/src/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.tsx +1 -1
  1461. package/src/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.tsx +1 -1
  1462. package/src/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.tsx +1 -1
  1463. package/src/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.tsx +1 -1
  1464. package/src/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.tsx +1 -1
  1465. package/src/components/common/CustomIcon/components/GoogleIcon/googleIcon.tsx +1 -1
  1466. package/src/components/common/CustomIcon/components/HelpIcon/helpIcon.tsx +1 -1
  1467. package/src/components/common/CustomIcon/components/InProgressIcon/inProgressIcon.tsx +1 -1
  1468. package/src/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.tsx +1 -1
  1469. package/src/components/common/CustomIcon/components/InfoIcon/infoIcon.tsx +1 -1
  1470. package/src/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.tsx +1 -1
  1471. package/src/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.tsx +1 -1
  1472. package/src/components/common/CustomIcon/components/LoadingIcon/loadingIcon.tsx +1 -1
  1473. package/src/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.tsx +1 -1
  1474. package/src/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.tsx +1 -1
  1475. package/src/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.tsx +1 -1
  1476. package/src/components/common/CustomIcon/components/RemoveIcon/removeIcon.tsx +1 -1
  1477. package/src/components/common/CustomIcon/components/SearchIcon/searchIcon.tsx +1 -1
  1478. package/src/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.tsx +1 -1
  1479. package/src/components/common/CustomIcon/components/Segment/segment.tsx +1 -1
  1480. package/src/components/common/CustomIcon/components/SlackIcon/slackIcon.tsx +1 -1
  1481. package/src/components/common/CustomIcon/components/SouthIcon/southIcon.tsx +1 -1
  1482. package/src/components/common/CustomIcon/components/SuccessIcon/successIcon.tsx +1 -1
  1483. package/src/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.tsx +1 -1
  1484. package/src/components/common/CustomIcon/components/UncheckedDisabledIcon/uncheckedDisabledIcon.tsx +1 -1
  1485. package/src/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.tsx +1 -1
  1486. package/src/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.tsx +1 -1
  1487. package/src/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.tsx +1 -1
  1488. package/src/components/common/CustomIcon/components/WarningIcon/warningIcon.tsx +1 -1
  1489. package/src/components/common/CustomIcon/components/XIcon/xIcon.tsx +1 -1
  1490. package/src/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.tsx +1 -1
  1491. package/src/components/common/Dialog/components/DialogTitle/dialogTitle.tsx +1 -1
  1492. package/src/components/common/Dialog/dialog.tsx +1 -1
  1493. package/src/components/common/Dot/dot.tsx +1 -1
  1494. package/src/components/common/Drawer/components/DrawerTitle/drawerTitle.tsx +1 -1
  1495. package/src/components/common/Drawer/drawer.tsx +1 -1
  1496. package/src/components/common/Drawer/provider/provider.tsx +1 -1
  1497. package/src/components/common/DropdownMenu/components/MenuItem/menuItem.tsx +1 -1
  1498. package/src/components/common/DropdownMenu/dropdownMenu.tsx +6 -4
  1499. package/src/components/common/EllipsisContent/ellipsisContent.tsx +3 -3
  1500. package/src/components/common/Form/components/Input/input.tsx +1 -1
  1501. package/src/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.tsx +1 -1
  1502. package/src/components/common/Form/components/Select/select.tsx +1 -1
  1503. package/src/components/common/Form/components/UploadFile/uploadFile.tsx +3 -3
  1504. package/src/components/common/Grid/components/GridItem/gridItem.tsx +1 -1
  1505. package/src/components/common/Grid/grid.tsx +1 -1
  1506. package/src/components/common/IconBadge/iconBadge.tsx +1 -1
  1507. package/src/components/common/IconButton/iconButton.tsx +1 -1
  1508. package/src/components/common/Input/input.tsx +2 -2
  1509. package/src/components/common/KeyValuePairs/components/KeyElType/keyElType.tsx +1 -1
  1510. package/src/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.tsx +1 -1
  1511. package/src/components/common/KeyValuePairs/components/ValueElType/valueElType.tsx +1 -1
  1512. package/src/components/common/KeyValuePairs/keyValuePairs.tsx +1 -1
  1513. package/src/components/common/Link/typeGuards.ts +6 -6
  1514. package/src/components/common/LoginDialog/loginDialog.tsx +1 -1
  1515. package/src/components/common/Markdown/markdown.tsx +1 -1
  1516. package/src/components/common/Menu/hooks/useMenu.ts +1 -1
  1517. package/src/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.tsx +1 -1
  1518. package/src/components/common/OutlinedInput/components/InputAdornment/components/SearchInputAdornment/searchInputAdornment.tsx +1 -1
  1519. package/src/components/common/Paper/components/FlatPaper/flatPaper.tsx +2 -2
  1520. package/src/components/common/Paper/components/FluidPaper/fluidPaper.tsx +2 -2
  1521. package/src/components/common/Paper/components/RoundedPaper/roundedPaper.tsx +2 -2
  1522. package/src/components/common/Paper/paper.tsx +2 -2
  1523. package/src/components/common/Progress/components/CircularProgress/circularProgress.tsx +1 -1
  1524. package/src/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.tsx +1 -1
  1525. package/src/components/common/RadioGroup/radioGroup.tsx +1 -1
  1526. package/src/components/common/Section/components/CollapsableSection/collapsableSection.tsx +1 -1
  1527. package/src/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.tsx +1 -1
  1528. package/src/components/common/Section/components/SectionTitle/sectionTitle.stories.tsx +1 -1
  1529. package/src/components/common/Section/components/SectionTitle/sectionTitle.tsx +1 -1
  1530. package/src/components/common/Sections/sections.tsx +1 -1
  1531. package/src/components/common/Socials/socials.stories.tsx +1 -1
  1532. package/src/components/common/Socials/socials.tsx +3 -8
  1533. package/src/components/common/Stack/components/Divider/divider.tsx +1 -1
  1534. package/src/components/common/Stack/stack.tsx +1 -1
  1535. package/src/components/common/StaticImage/staticImage.stories.tsx +1 -1
  1536. package/src/components/common/StaticImage/staticImage.tsx +1 -1
  1537. package/src/components/common/StatusBadge/statusBadge.stories.tsx +1 -1
  1538. package/src/components/common/StatusBadge/statusBadge.tsx +3 -3
  1539. package/src/components/common/StatusIcon/statusIcon.stories.tsx +1 -1
  1540. package/src/components/common/StatusIcon/statusIcon.tsx +1 -1
  1541. package/src/components/common/Tabs/tabs.tsx +4 -4
  1542. package/src/components/common/Tag/tag.stories.tsx +1 -2
  1543. package/src/components/common/Tag/tag.tsx +1 -1
  1544. package/src/components/common/Title/title.tsx +1 -1
  1545. package/src/components/common/ToggleButtonGroup/hooks/UseToggleButtonGroup/hook.ts +2 -2
  1546. package/src/components/common/ToggleButtonGroup/toggleButtonGroup.stories.tsx +1 -1
  1547. package/src/components/common/ToggleButtonGroup/toggleButtonGroup.tsx +5 -5
  1548. package/src/components/common/Typography/TypographyWordBreak/TypographyWordBreak.tsx +1 -1
  1549. package/src/config/entities.ts +7 -7
  1550. package/src/config/utils.ts +3 -3
  1551. package/src/entity/api/service.ts +10 -10
  1552. package/src/entity/apicf/service.ts +2 -2
  1553. package/src/entity/common/client.ts +1 -1
  1554. package/src/entity/common/service.ts +4 -4
  1555. package/src/entity/service/model.ts +6 -6
  1556. package/src/entity/tsv/service.ts +4 -4
  1557. package/src/hooks/authentication/auth/useAuthReducer.ts +2 -2
  1558. package/src/hooks/authentication/authentication/useAuthenticationReducer.ts +2 -2
  1559. package/src/hooks/authentication/credentials/useCredentialsReducer.ts +1 -1
  1560. package/src/hooks/authentication/providers/useProviders.ts +1 -1
  1561. package/src/hooks/authentication/session/useSessionActive.ts +2 -2
  1562. package/src/hooks/authentication/session/useSessionIdleTimer.ts +1 -2
  1563. package/src/hooks/authentication/terra/useAuthenticationForm.ts +4 -4
  1564. package/src/hooks/authentication/terra/useAuthenticationNIHExpiry.ts +1 -1
  1565. package/src/hooks/authentication/token/useTokenReducer.ts +1 -1
  1566. package/src/hooks/stateSyncManager/hook.ts +1 -1
  1567. package/src/hooks/stateSyncManager/hooks/UseBeforePopState/hook.ts +1 -1
  1568. package/src/hooks/stateSyncManager/hooks/UseStateSync/utils.ts +4 -4
  1569. package/src/hooks/useAsync.ts +10 -10
  1570. package/src/hooks/useBreakpointHelper.ts +2 -2
  1571. package/src/hooks/useCategoryFilter.ts +22 -22
  1572. package/src/hooks/useCurrentBreakpoint.ts +1 -1
  1573. package/src/hooks/useEntityHeadTitle.ts +2 -2
  1574. package/src/hooks/useEntityList.ts +5 -5
  1575. package/src/hooks/useEntityService.ts +4 -4
  1576. package/src/hooks/useExportToTerraResponseURL.ts +1 -1
  1577. package/src/hooks/useFetchEntity.tsx +4 -4
  1578. package/src/hooks/useFetchRequestURL.ts +1 -1
  1579. package/src/hooks/useFileLocation.ts +1 -1
  1580. package/src/hooks/useFileManifest/common/entities.ts +0 -11
  1581. package/src/hooks/useFileManifest/common/utils.ts +13 -13
  1582. package/src/hooks/useFileManifest/useFetchFilesFacets.ts +2 -2
  1583. package/src/hooks/useFileManifest/useFetchSummary.ts +1 -1
  1584. package/src/hooks/useFileManifest/useFileManifest.ts +1 -1
  1585. package/src/hooks/useFileManifest/useFileManifestDownload.ts +5 -5
  1586. package/src/hooks/useFileManifest/useFileManifestFileCount.ts +4 -4
  1587. package/src/hooks/useFileManifest/useFileManifestFormat.ts +1 -1
  1588. package/src/hooks/useFileManifest/useFileManifestSpreadsheet.ts +3 -3
  1589. package/src/hooks/useHtmlStyle/hook.ts +1 -1
  1590. package/src/hooks/useRequestFileLocation.ts +6 -6
  1591. package/src/hooks/useRequestManifest/useRequestManifest.ts +2 -2
  1592. package/src/hooks/useRequestManifest/utils.ts +6 -6
  1593. package/src/hooks/useResetableState.ts +1 -1
  1594. package/src/hooks/useResizeObserver.ts +7 -7
  1595. package/src/hooks/useRouteHistory.ts +4 -4
  1596. package/src/hooks/useURLFilterParams.ts +4 -4
  1597. package/src/hooks/useWindowResize.ts +7 -2
  1598. package/src/providers/authentication/auth/actions.ts +1 -1
  1599. package/src/providers/authentication/auth/dispatch.ts +2 -2
  1600. package/src/providers/authentication/authentication/actions.ts +1 -1
  1601. package/src/providers/authentication/authentication/dispatch.ts +1 -1
  1602. package/src/providers/authentication/authentication/reducer.ts +1 -1
  1603. package/src/providers/authentication/authentication/utils.ts +1 -1
  1604. package/src/providers/authentication/credentials/actions.ts +1 -1
  1605. package/src/providers/authentication/credentials/dispatch.ts +1 -1
  1606. package/src/providers/authentication/credentials/reducer.ts +1 -1
  1607. package/src/providers/authentication/terra/hooks/useFetchProfiles.ts +3 -3
  1608. package/src/providers/authentication/terra/hooks/useFetchTerraNIHProfile.ts +3 -3
  1609. package/src/providers/authentication/terra/hooks/useFetchTerraProfile.ts +3 -3
  1610. package/src/providers/authentication/terra/hooks/useFetchTerraTermsOfService.ts +3 -3
  1611. package/src/providers/authentication/terra/hooks/utils.ts +2 -2
  1612. package/src/providers/authentication/terra/provider.tsx +1 -1
  1613. package/src/providers/authentication/terra/utils.ts +2 -2
  1614. package/src/providers/authentication/token/reducer.ts +1 -1
  1615. package/src/providers/config.tsx +1 -1
  1616. package/src/providers/dataDictionaryState/actions/clearMeta/action.ts +1 -1
  1617. package/src/providers/dataDictionaryState/actions/stateToUrl/action.ts +1 -1
  1618. package/src/providers/dataDictionaryState/actions/updateColumnFilters/action.ts +1 -1
  1619. package/src/providers/dataDictionaryState/actions/updateColumnFilters/dispatch.ts +1 -1
  1620. package/src/providers/dataDictionaryState/actions/updateColumnFilters/utils.ts +3 -3
  1621. package/src/providers/dataDictionaryState/actions/updateGlobalFilter/action.ts +1 -1
  1622. package/src/providers/dataDictionaryState/actions/updateGlobalFilter/dispatch.ts +1 -1
  1623. package/src/providers/dataDictionaryState/actions/updateGlobalFilter/utils.ts +3 -3
  1624. package/src/providers/dataDictionaryState/actions/urlToState/action.ts +2 -2
  1625. package/src/providers/dataDictionaryState/dictionaries/state.ts +2 -2
  1626. package/src/providers/dataDictionaryState/dictionaries/utils.ts +1 -1
  1627. package/src/providers/dataDictionaryState/hooks/UseDataDictionaryReducer/hook.ts +1 -1
  1628. package/src/providers/dataDictionaryState/initializer/utils.ts +2 -2
  1629. package/src/providers/dataDictionaryState/provider.tsx +1 -1
  1630. package/src/providers/dataDictionaryState/reducer.ts +1 -1
  1631. package/src/providers/exploreState/actions/clearMeta/action.ts +1 -1
  1632. package/src/providers/exploreState/actions/stateToUrl/action.ts +1 -1
  1633. package/src/providers/exploreState/actions/updateFilterSort/action.ts +1 -1
  1634. package/src/providers/exploreState/actions/updateFilterSort/dispatch.ts +1 -1
  1635. package/src/providers/exploreState/actions/updateFilterSort/utils.ts +1 -1
  1636. package/src/providers/exploreState/actions/updateGrouping/action.ts +2 -2
  1637. package/src/providers/exploreState/actions/updateGrouping/dispatch.ts +1 -1
  1638. package/src/providers/exploreState/actions/updateGrouping/utils.ts +1 -1
  1639. package/src/providers/exploreState/actions/updateVisibility/action.ts +3 -3
  1640. package/src/providers/exploreState/actions/updateVisibility/dispatch.ts +1 -1
  1641. package/src/providers/exploreState/actions/updateVisibility/utils.ts +1 -1
  1642. package/src/providers/exploreState/actions/urlToState/action.ts +4 -4
  1643. package/src/providers/exploreState/actions/urlToState/utils.ts +1 -1
  1644. package/src/providers/exploreState/entities/query/buildQuery.ts +3 -3
  1645. package/src/providers/exploreState/entities/state.ts +1 -1
  1646. package/src/providers/exploreState/initializer/utils.ts +13 -13
  1647. package/src/providers/exploreState/utils.ts +19 -19
  1648. package/src/providers/exploreState.tsx +26 -25
  1649. package/src/providers/fileManifestState.tsx +13 -12
  1650. package/src/providers/googleSignInAuthentication/hooks/useGoogleSignInService.ts +2 -2
  1651. package/src/providers/googleSignInAuthentication/provider.tsx +1 -1
  1652. package/src/providers/googleSignInAuthentication/service/service.ts +3 -3
  1653. package/src/providers/layoutDimensions/context.tsx +2 -2
  1654. package/src/providers/layoutDimensions/provider.tsx +1 -1
  1655. package/src/providers/layoutDimensions/types.ts +2 -2
  1656. package/src/providers/loginGuard/provider.tsx +2 -2
  1657. package/src/providers/nextAuthAuthentication/hooks/useNextAuthService.ts +2 -2
  1658. package/src/providers/nextAuthAuthentication/provider.tsx +1 -1
  1659. package/src/providers/services/provider.tsx +1 -1
  1660. package/src/providers/services/wasPop/provider.tsx +2 -2
  1661. package/src/providers/systemStatus.tsx +4 -4
  1662. package/src/storybook/controls/constants.ts +1 -1
  1663. package/src/storybook/controls/utils.ts +3 -3
  1664. package/src/storybook/decorators.tsx +1 -1
  1665. package/src/storybook/parameters.ts +1 -1
  1666. package/src/styles/common/mixins/typography.ts +1 -1
  1667. package/src/tests/utils.ts +3 -3
  1668. package/src/theme/common/breakpoints.ts +1 -1
  1669. package/src/theme/common/fontStyles.ts +1 -1
  1670. package/src/theme/theme.ts +2 -2
  1671. package/src/utils/database.ts +2 -2
  1672. package/src/utils/fetchQueryParams.ts +1 -1
  1673. package/src/utils/mdx/files/mapMDXSlugByFilePaths.ts +2 -2
  1674. package/src/utils/mdx/frontmatter/validateMatter.ts +1 -1
  1675. package/src/utils/mdx/plugins/rehypeSlug.ts +33 -5
  1676. package/src/utils/mdx/plugins/remarkHeadings.ts +9 -10
  1677. package/src/utils/mdx/plugins/types.ts +4 -0
  1678. package/src/utils/mdx/plugins/utils.ts +12 -0
  1679. package/src/utils/mdx/staticGeneration/staticPaths.ts +2 -2
  1680. package/src/utils/mdx/staticGeneration/staticProps.ts +3 -4
  1681. package/src/utils/mdx/staticGeneration/types.ts +1 -1
  1682. package/src/utils/mdx/staticGeneration/utils.ts +2 -2
  1683. package/src/utils/parseJsonQueryParam.ts +1 -1
  1684. package/src/utils/replaceParameters.ts +1 -1
  1685. package/src/utils/stateToUrlQuery.ts +1 -1
  1686. package/src/utils/url.ts +1 -1
  1687. package/src/viewModelBuilders/common/utils.ts +1 -1
  1688. package/src/views/ContentView/contentView.stories.tsx +1 -1
  1689. package/src/views/ContentView/contentView.tsx +1 -1
  1690. package/src/views/DataDictionaryView/dataDictionaryView.tsx +1 -1
  1691. package/src/views/DataDictionaryView/utils.ts +1 -1
  1692. package/src/views/EntityDetailView/entityDetailView.tsx +3 -5
  1693. package/src/views/EntityExportMethodView/entityExportMethodView.tsx +3 -3
  1694. package/src/views/EntityExportView/entityExportView.tsx +1 -1
  1695. package/src/views/ExploreView/exploreView.tsx +4 -4
  1696. package/src/views/ExploreView/hooks/UseUpdateFilterSort/hook.ts +1 -1
  1697. package/src/views/ExploreView/utils.ts +1 -1
  1698. package/src/views/ExportMethodView/exportMethodView.tsx +2 -2
  1699. package/src/views/ExportView/exportView.tsx +1 -1
  1700. package/src/views/LoginView/loginView.tsx +1 -1
  1701. package/tests/azulFileDownload.test.tsx +4 -5
  1702. package/tests/buildCategoryViews.test.ts +15 -15
  1703. package/tests/buildRequestFilters.test.ts +3 -3
  1704. package/tests/buildRequestManifest.test.ts +8 -8
  1705. package/tests/chart.test.tsx +2 -2
  1706. package/tests/chartSortUtils.test.ts +119 -0
  1707. package/tests/chartView.test.tsx +2 -2
  1708. package/tests/dataDictionaryColumnFilters.test.tsx +3 -3
  1709. package/tests/filter.test.tsx +1 -1
  1710. package/tests/filterMenu.test.ts +1 -1
  1711. package/tests/filterRange.test.tsx +21 -21
  1712. package/tests/filterSortUtils.test.ts +1 -1
  1713. package/tests/filters.test.tsx +1 -1
  1714. package/tests/getFacetedMinMaxValues.test.ts +1 -1
  1715. package/tests/getProfileStatus.test.ts +34 -34
  1716. package/tests/linkCell.test.tsx +6 -6
  1717. package/tests/markdownCell.test.tsx +2 -2
  1718. package/tests/provider.test.tsx +15 -17
  1719. package/tests/rowSelectionValidation.test.ts +11 -11
  1720. package/tests/tableFilter.test.tsx +1 -1
  1721. package/tests/terraProfileProvider.test.tsx +17 -21
  1722. package/tests/theme.test.ts +13 -13
  1723. package/tests/useFileLocation.test.ts +3 -3
  1724. package/tests/useRequestManifest.test.ts +10 -12
  1725. package/tests/useSessionActive.test.ts +9 -10
  1726. package/tests/useWindowResize.test.ts +130 -0
  1727. package/tests/viewModelBuilders_utils.test.ts +1 -1
  1728. package/tests/viewToggle.test.tsx +5 -7
  1729. package/tsconfig.json +2 -2
  1730. package/types/data-explorer-ui.d.ts +4 -3
  1731. package/lib/components/DataDictionary/components/Table/columns/columnDef.d.ts +0 -6
  1732. package/lib/components/DataDictionary/components/Table/columns/columnDef.js +0 -33
  1733. package/lib/components/DataDictionary/components/Table/columns/columnIdentifier.d.ts +0 -5
  1734. package/lib/components/DataDictionary/components/Table/columns/columnIdentifier.js +0 -5
  1735. package/lib/components/DataDictionary/components/Table/columns/types.d.ts +0 -2
  1736. package/lib/components/DataDictionary/components/Table/components/BasicCell/types.d.ts +0 -4
  1737. package/lib/components/DataDictionary/hooks/UseDataDictionary/hook.d.ts +0 -4
  1738. package/lib/components/DataDictionary/hooks/UseDataDictionary/hook.js +0 -23
  1739. package/lib/components/DataDictionary/hooks/UseDataDictionary/types.d.ts +0 -8
  1740. package/lib/components/DataDictionary/hooks/UseDataDictionary/types.js +0 -1
  1741. package/lib/components/DataDictionary/hooks/UseLayoutSpacing/hook.d.ts +0 -2
  1742. package/lib/components/DataDictionary/hooks/UseLayoutSpacing/hook.js +0 -10
  1743. package/lib/components/DataDictionary/hooks/UseLayoutSpacing/types.d.ts +0 -7
  1744. package/lib/components/DataDictionary/hooks/UseLayoutSpacing/types.js +0 -1
  1745. package/lib/components/Detail/components/Table/components/TableHead/tableHead.d.ts +0 -8
  1746. package/lib/components/Detail/components/Table/components/TableHead/tableHead.js +0 -36
  1747. package/lib/components/Filter/components/Filter/filter.stories.d.ts +0 -25
  1748. package/lib/components/Filter/components/Filter/filter.stories.js +0 -42
  1749. package/lib/components/Filter/components/FilterTag/filterTag.stories.d.ts +0 -16
  1750. package/lib/components/Filter/components/FilterTag/filterTag.stories.js +0 -17
  1751. package/lib/components/Filter/components/Filters/filters.stories.d.ts +0 -6
  1752. package/lib/components/Filter/components/Filters/filters.stories.js +0 -91
  1753. package/lib/components/Filter/components/SearchAllFilters/components/AutocompletePopper/autocompletePopper.styles.d.ts +0 -3
  1754. package/lib/components/Filter/components/SearchAllFilters/components/AutocompletePopper/autocompletePopper.styles.js +0 -15
  1755. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.stories.d.ts +0 -6
  1756. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.stories.js +0 -82
  1757. package/lib/components/Filter/components/SearchAllFiltersSearch/components/SearchCloseButton/searchCloseButton.d.ts +0 -1
  1758. package/lib/components/Filter/components/SearchAllFiltersSearch/components/SearchCloseButton/searchCloseButton.js +0 -14
  1759. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.d.ts +0 -2
  1760. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.js +0 -12
  1761. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.styles.d.ts +0 -5
  1762. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.styles.js +0 -34
  1763. package/lib/components/Index/components/Cell/cell.d.ts +0 -7
  1764. package/lib/components/Index/components/Cell/cell.js +0 -10
  1765. package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.d.ts +0 -2
  1766. package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.js +0 -20
  1767. package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.styles.d.ts +0 -13
  1768. package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.styles.js +0 -12
  1769. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/constants.d.ts +0 -10
  1770. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/constants.js +0 -10
  1771. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/plot.d.ts +0 -3
  1772. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/plot.js +0 -91
  1773. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/utils.d.ts +0 -132
  1774. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/utils.js +0 -230
  1775. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.d.ts +0 -2
  1776. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.js +0 -7
  1777. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.styles.d.ts +0 -3
  1778. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.styles.js +0 -29
  1779. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/constants.d.ts +0 -1
  1780. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/constants.js +0 -1
  1781. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/args.d.ts +0 -4
  1782. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/args.js +0 -70
  1783. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/chart.stories.d.ts +0 -7
  1784. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/chart.stories.js +0 -18
  1785. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/types.d.ts +0 -6
  1786. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/types.js +0 -1
  1787. package/lib/components/Index/components/EntitiesView/components/ChartView/constants.d.ts +0 -1
  1788. package/lib/components/Index/components/EntitiesView/components/ChartView/constants.js +0 -1
  1789. package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/types.d.ts +0 -7
  1790. package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/types.js +0 -1
  1791. package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/useChartView.d.ts +0 -3
  1792. package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/useChartView.js +0 -11
  1793. package/lib/components/Index/components/EntitiesView/components/ChartView/stories/args.d.ts +0 -3
  1794. package/lib/components/Index/components/EntitiesView/components/ChartView/stories/args.js +0 -97
  1795. package/lib/components/Index/components/EntitiesView/components/ChartView/stories/chartView.stories.d.ts +0 -6
  1796. package/lib/components/Index/components/EntitiesView/components/ChartView/stories/chartView.stories.js +0 -15
  1797. package/lib/components/Index/components/EntitiesView/components/ChartView/types.d.ts +0 -8
  1798. package/lib/components/Index/components/EntitiesView/components/ChartView/types.js +0 -1
  1799. package/lib/components/Index/components/EntitiesView/components/ChartView/utils.d.ts +0 -14
  1800. package/lib/components/Index/components/EntitiesView/components/ChartView/utils.js +0 -23
  1801. package/lib/components/Index/components/EntitiesView/components/EntityList/entityList.d.ts +0 -3
  1802. package/lib/components/Index/components/EntitiesView/components/EntityList/entityList.js +0 -14
  1803. package/lib/components/Index/components/EntitiesView/components/EntityList/types.d.ts +0 -6
  1804. package/lib/components/Index/components/EntitiesView/components/EntityList/types.js +0 -1
  1805. package/lib/components/Index/components/EntitiesView/constants.d.ts +0 -1
  1806. package/lib/components/Index/components/EntitiesView/constants.js +0 -1
  1807. package/lib/components/Index/components/EntitiesView/entitiesView.d.ts +0 -2
  1808. package/lib/components/Index/components/EntitiesView/entitiesView.js +0 -15
  1809. package/lib/components/Index/components/EntitiesView/entitiesView.styles.d.ts +0 -3
  1810. package/lib/components/Index/components/EntitiesView/entitiesView.styles.js +0 -20
  1811. package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/hook.d.ts +0 -2
  1812. package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/hook.js +0 -14
  1813. package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/types.d.ts +0 -13
  1814. package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/types.js +0 -5
  1815. package/lib/components/Index/components/EntitiesView/stories/entitiesView.stories.d.ts +0 -8
  1816. package/lib/components/Index/components/EntitiesView/stories/entitiesView.stories.js +0 -50
  1817. package/lib/components/Index/components/EntitiesView/types.d.ts +0 -8
  1818. package/lib/components/Index/components/EntitiesView/types.js +0 -1
  1819. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.d.ts +0 -1
  1820. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.js +0 -13
  1821. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.styles.d.ts +0 -3
  1822. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.styles.js +0 -13
  1823. package/lib/components/Index/components/Hero/components/Summaries/stories/summaries.stories.d.ts +0 -6
  1824. package/lib/components/Index/components/Hero/components/Summaries/stories/summaries.stories.js +0 -14
  1825. package/lib/components/Index/components/Hero/components/Summaries/summaries.d.ts +0 -9
  1826. package/lib/components/Index/components/Hero/components/Summaries/summaries.js +0 -12
  1827. package/lib/components/Index/components/Hero/components/Summaries/summaries.stories.d.ts +0 -13
  1828. package/lib/components/Index/components/Hero/components/Summaries/summaries.stories.js +0 -18
  1829. package/lib/components/Index/components/Hero/components/Summaries/summaries.styles.d.ts +0 -7
  1830. package/lib/components/Index/components/Hero/components/Summaries/summaries.styles.js +0 -26
  1831. package/lib/components/Index/components/Hero/hero.d.ts +0 -11
  1832. package/lib/components/Index/components/Hero/hero.js +0 -12
  1833. package/lib/components/Index/components/Hero/hero.stories.d.ts +0 -23
  1834. package/lib/components/Index/components/Hero/hero.stories.js +0 -22
  1835. package/lib/components/Index/components/Hero/hero.styles.d.ts +0 -16
  1836. package/lib/components/Index/components/Hero/hero.styles.js +0 -44
  1837. package/lib/components/Index/components/Hero/stories/hero.stories.d.ts +0 -6
  1838. package/lib/components/Index/components/Hero/stories/hero.stories.js +0 -16
  1839. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.d.ts +0 -8
  1840. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.js +0 -57
  1841. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.styles.d.ts +0 -4
  1842. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.styles.js +0 -10
  1843. package/lib/components/Index/components/NTag/nTag.d.ts +0 -10
  1844. package/lib/components/Index/components/NTag/nTag.js +0 -8
  1845. package/lib/components/Index/components/NTagCell/nTagCell.d.ts +0 -11
  1846. package/lib/components/Index/components/NTagCell/nTagCell.js +0 -29
  1847. package/lib/components/Index/components/NTagCell/nTagCell.stories.d.ts +0 -5
  1848. package/lib/components/Index/components/NTagCell/nTagCell.stories.js +0 -16
  1849. package/lib/components/Index/components/Tabs/common/utils.d.ts +0 -8
  1850. package/lib/components/Index/components/Tabs/common/utils.js +0 -19
  1851. package/lib/components/Index/components/Tabs/tabs.d.ts +0 -1
  1852. package/lib/components/Index/components/Tabs/tabs.js +0 -20
  1853. package/lib/components/Index/components/TitleCell/titleCell.d.ts +0 -6
  1854. package/lib/components/Index/components/TitleCell/titleCell.js +0 -10
  1855. package/lib/components/Index/components/TitleCell/titleCell.styles.d.ts +0 -3
  1856. package/lib/components/Index/components/TitleCell/titleCell.styles.js +0 -6
  1857. package/lib/components/Index/index.stories.d.ts +0 -6
  1858. package/lib/components/Index/index.stories.js +0 -26
  1859. package/lib/components/Index/stories/index.stories.d.ts +0 -6
  1860. package/lib/components/Index/stories/index.stories.js +0 -17
  1861. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.stories.d.ts +0 -6
  1862. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.stories.js +0 -10
  1863. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.stories.d.ts +0 -5
  1864. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.stories.js +0 -29
  1865. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.d.ts +0 -6
  1866. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.js +0 -13
  1867. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.styles.d.ts +0 -36
  1868. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.styles.js +0 -9
  1869. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.d.ts +0 -5
  1870. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.js +0 -10
  1871. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.styles.d.ts +0 -36
  1872. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.styles.js +0 -9
  1873. package/lib/components/Layout/components/Header/hooks/useMeasureHeader.d.ts +0 -5
  1874. package/lib/components/Layout/components/Header/hooks/useMeasureHeader.js +0 -19
  1875. package/lib/components/Layout/components/Outline/common/constants.d.ts +0 -2
  1876. package/lib/components/Layout/components/Outline/common/constants.js +0 -1
  1877. package/lib/components/Login/login.stories.d.ts +0 -6
  1878. package/lib/components/Login/login.stories.js +0 -31
  1879. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.d.ts +0 -16
  1880. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.js +0 -28
  1881. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.stories.d.ts +0 -5
  1882. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.stories.js +0 -46
  1883. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.styles.d.ts +0 -3
  1884. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.styles.js +0 -21
  1885. package/lib/components/Table/components/DownloadEntityResults/downloadEntityResults.d.ts +0 -6
  1886. package/lib/components/Table/components/DownloadEntityResults/downloadEntityResults.js +0 -17
  1887. package/lib/components/Table/components/EntityViewToggle/entityViewToggle.d.ts +0 -2
  1888. package/lib/components/Table/components/EntityViewToggle/entityViewToggle.js +0 -37
  1889. package/lib/components/Table/components/Pagination/pagination.d.ts +0 -9
  1890. package/lib/components/Table/components/Pagination/pagination.js +0 -19
  1891. package/lib/components/Table/components/Pagination/pagination.stories.d.ts +0 -28
  1892. package/lib/components/Table/components/Pagination/pagination.stories.js +0 -24
  1893. package/lib/components/Table/components/Pagination/pagination.styles.d.ts +0 -4
  1894. package/lib/components/Table/components/Pagination/pagination.styles.js +0 -15
  1895. package/lib/components/Table/components/TableBody/hooks/virtualizer/constants.d.ts +0 -3
  1896. package/lib/components/Table/components/TableBody/hooks/virtualizer/constants.js +0 -3
  1897. package/lib/components/Table/components/TableBody/hooks/virtualizer/hook.d.ts +0 -8
  1898. package/lib/components/Table/components/TableBody/hooks/virtualizer/hook.js +0 -18
  1899. package/lib/components/Table/components/TableBody/hooks/virtualizer/types.d.ts +0 -4
  1900. package/lib/components/Table/components/TableBody/hooks/virtualizer/types.js +0 -1
  1901. package/lib/components/Table/components/TableBody/utils.d.ts +0 -12
  1902. package/lib/components/Table/components/TableBody/utils.js +0 -17
  1903. package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/types.d.ts +0 -3
  1904. package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/types.js +0 -1
  1905. package/lib/components/Table/components/TableCell/components/MarkdownCell/types.d.ts +0 -3
  1906. package/lib/components/Table/components/TableCell/components/MarkdownCell/types.js +0 -1
  1907. package/lib/components/TableCreator/common/constants.d.ts +0 -6
  1908. package/lib/components/TableCreator/common/constants.js +0 -19
  1909. package/lib/components/TableCreator/common/entities.d.ts +0 -5
  1910. package/lib/components/TableCreator/common/entities.js +0 -1
  1911. package/lib/components/TableCreator/tableCreator.styles.d.ts +0 -4
  1912. package/lib/components/TableCreator/tableCreator.styles.js +0 -4
  1913. package/lib/components/common/Alert/alert.stories.d.ts +0 -6
  1914. package/lib/components/common/Alert/alert.stories.js +0 -36
  1915. package/lib/components/common/Alert/components/AlertText/alertText.styles.d.ts +0 -4
  1916. package/lib/components/common/Alert/components/AlertText/alertText.styles.js +0 -19
  1917. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.d.ts +0 -7
  1918. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.js +0 -5
  1919. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.styles.d.ts +0 -3
  1920. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.styles.js +0 -19
  1921. package/lib/components/common/Banner/components/DismissibleBanner/dismissibleBanner.d.ts +0 -10
  1922. package/lib/components/common/Banner/components/DismissibleBanner/dismissibleBanner.js +0 -16
  1923. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.styles.d.ts +0 -3
  1924. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.styles.js +0 -21
  1925. package/lib/components/common/Button/components/LoginButton/loginButton.d.ts +0 -3
  1926. package/lib/components/common/Button/components/LoginButton/loginButton.js +0 -6
  1927. package/lib/components/common/Button/components/LoginButton/loginButton.styles.d.ts +0 -7
  1928. package/lib/components/common/Button/components/LoginButton/loginButton.styles.js +0 -11
  1929. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.d.ts +0 -5
  1930. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.js +0 -10
  1931. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.stories.d.ts +0 -3
  1932. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.stories.js +0 -9
  1933. package/lib/hooks/useAuthentication/common/constants.d.ts +0 -4
  1934. package/lib/hooks/useAuthentication/common/constants.js +0 -19
  1935. package/lib/hooks/useAuthentication/common/entities.d.ts +0 -25
  1936. package/lib/hooks/useAuthentication/common/entities.js +0 -11
  1937. package/lib/hooks/useAuthentication/common/utils.d.ts +0 -15
  1938. package/lib/hooks/useAuthentication/common/utils.js +0 -25
  1939. package/lib/hooks/useAuthentication/useAuthentication.d.ts +0 -6
  1940. package/lib/hooks/useAuthentication/useAuthentication.js +0 -9
  1941. package/lib/hooks/useAuthentication/useAuthenticationComplete.d.ts +0 -6
  1942. package/lib/hooks/useAuthentication/useAuthenticationComplete.js +0 -55
  1943. package/lib/hooks/useAuthentication/useAuthenticationForm.d.ts +0 -20
  1944. package/lib/hooks/useAuthentication/useAuthenticationForm.js +0 -88
  1945. package/lib/hooks/useAuthentication/useAuthenticationNIHExpiry.d.ts +0 -18
  1946. package/lib/hooks/useAuthentication/useAuthenticationNIHExpiry.js +0 -50
  1947. package/lib/hooks/useAuthentication/useAuthenticationStatus.d.ts +0 -20
  1948. package/lib/hooks/useAuthentication/useAuthenticationStatus.js +0 -32
  1949. package/lib/hooks/useAuthentication/useFetchGoogleProfile.d.ts +0 -21
  1950. package/lib/hooks/useAuthentication/useFetchGoogleProfile.js +0 -41
  1951. package/lib/hooks/useAuthentication/useFetchTerraNIHProfile.d.ts +0 -18
  1952. package/lib/hooks/useAuthentication/useFetchTerraNIHProfile.js +0 -62
  1953. package/lib/hooks/useAuthentication/useFetchTerraProfile.d.ts +0 -24
  1954. package/lib/hooks/useAuthentication/useFetchTerraProfile.js +0 -62
  1955. package/lib/hooks/useAuthentication/useFetchTerraTermsOfService.d.ts +0 -15
  1956. package/lib/hooks/useAuthentication/useFetchTerraTermsOfService.js +0 -62
  1957. package/lib/hooks/useAuthentication/useTokenClient.d.ts +0 -11
  1958. package/lib/hooks/useAuthentication/useTokenClient.js +0 -29
  1959. package/lib/hooks/useAuthenticationConfig.d.ts +0 -6
  1960. package/lib/hooks/useAuthenticationConfig.js +0 -14
  1961. package/lib/hooks/useCategoryConfigs.d.ts +0 -6
  1962. package/lib/hooks/useCategoryConfigs.js +0 -17
  1963. package/lib/hooks/useEntityListRelatedView.d.ts +0 -15
  1964. package/lib/hooks/useEntityListRelatedView.js +0 -62
  1965. package/lib/hooks/useExploreMode.d.ts +0 -14
  1966. package/lib/hooks/useExploreMode.js +0 -20
  1967. package/lib/hooks/useFileManifest/common/buildFileManifestRequestURL.d.ts +0 -15
  1968. package/lib/hooks/useFileManifest/common/buildFileManifestRequestURL.js +0 -27
  1969. package/lib/hooks/useFileManifest/useFileManifestURL.d.ts +0 -5
  1970. package/lib/hooks/useFileManifest/useFileManifestURL.js +0 -11
  1971. package/lib/hooks/useFileManifest/useRequestFileManifest.d.ts +0 -9
  1972. package/lib/hooks/useFileManifest/useRequestFileManifest.js +0 -37
  1973. package/lib/hooks/useLayoutState.d.ts +0 -6
  1974. package/lib/hooks/useLayoutState.js +0 -9
  1975. package/lib/hooks/useMenu.d.ts +0 -10
  1976. package/lib/hooks/useMenu.js +0 -17
  1977. package/lib/hooks/useMenuWithPosition.d.ts +0 -14
  1978. package/lib/hooks/useMenuWithPosition.js +0 -33
  1979. package/lib/hooks/useScroll.d.ts +0 -10
  1980. package/lib/hooks/useScroll.js +0 -12
  1981. package/lib/hooks/useSessionTimeout.d.ts +0 -11
  1982. package/lib/hooks/useSessionTimeout.js +0 -28
  1983. package/lib/mocks/@storybook/addon-actions.d.ts +0 -9
  1984. package/lib/mocks/@storybook/addon-actions.js +0 -9
  1985. package/lib/providers/authentication.d.ts +0 -51
  1986. package/lib/providers/authentication.js +0 -110
  1987. package/lib/providers/layoutState.d.ts +0 -40
  1988. package/lib/providers/layoutState.js +0 -47
  1989. package/lib/styles/common/mixins/colors.d.ts +0 -25
  1990. package/lib/styles/common/mixins/colors.js +0 -32
  1991. package/lib/styles/common/mixins/fonts.d.ts +0 -16
  1992. package/lib/styles/common/mixins/fonts.js +0 -30
  1993. package/lib/styles/common/mixins/shadows.d.ts +0 -3
  1994. package/lib/styles/common/mixins/shadows.js +0 -4
  1995. package/lib/styles/common/mui/palette.d.ts +0 -47
  1996. package/lib/styles/common/mui/palette.js +0 -47
  1997. package/lib/theme/common/entities.d.ts +0 -6
  1998. package/lib/theme/common/entities.js +0 -1
  1999. package/src/mocks/@storybook/addon-actions.ts +0 -10
  2000. /package/lib/{components/DataDictionary/components/Table/columns → common/chart}/types.js +0 -0
  2001. /package/lib/{components/DataDictionary/components/Table/components/BasicCell → utils/mdx/plugins}/types.js +0 -0
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom content copy icon.
5
5
  */
6
6
  export const ContentCopyIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M6.975 13.3494C6.5376 13.3494 6.1656 13.1964 5.859 12.8904C5.553 12.5838 5.4 12.2118 5.4 11.7744V3.075C5.4 2.6376 5.553 2.2656 5.859 1.959C6.1656 1.653 6.5376 1.5 6.975 1.5H13.4253C13.8627 1.5 14.2344 1.653 14.5404 1.959C14.847 2.2656 15.0003 2.6376 15.0003 3.075V11.7744C15.0003 12.2118 14.847 12.5838 14.5404 12.8904C14.2344 13.1964 13.8627 13.3494 13.4253 13.3494H6.975ZM6.975 11.7744H13.4253V3.075H6.975V11.7744ZM3.825 16.4994C3.3876 16.4994 3.0156 16.3464 2.709 16.0404C2.403 15.7338 2.25 15.3618 2.25 14.9244V5.3439C2.25 5.1309 2.328 4.9464 2.484 4.7904C2.6406 4.6338 2.8251 4.5555 3.0375 4.5555C3.2499 4.5555 3.4344 4.6338 3.591 4.7904C3.747 4.9464 3.825 5.1309 3.825 5.3439V14.9244H11.1564C11.3688 14.9244 11.553 15.0027 11.709 15.1593C11.8656 15.3153 11.9439 15.4995 11.9439 15.7119C11.9439 15.9243 11.8656 16.1088 11.709 16.2654C11.553 16.4214 11.3688 16.4994 11.1564 16.4994H3.825Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M6.975 13.3494C6.5376 13.3494 6.1656 13.1964 5.859 12.8904C5.553 12.5838 5.4 12.2118 5.4 11.7744V3.075C5.4 2.6376 5.553 2.2656 5.859 1.959C6.1656 1.653 6.5376 1.5 6.975 1.5H13.4253C13.8627 1.5 14.2344 1.653 14.5404 1.959C14.847 2.2656 15.0003 2.6376 15.0003 3.075V11.7744C15.0003 12.2118 14.847 12.5838 14.5404 12.8904C14.2344 13.1964 13.8627 13.3494 13.4253 13.3494H6.975ZM6.975 11.7744H13.4253V3.075H6.975V11.7744ZM3.825 16.4994C3.3876 16.4994 3.0156 16.3464 2.709 16.0404C2.403 15.7338 2.25 15.3618 2.25 14.9244V5.3439C2.25 5.1309 2.328 4.9464 2.484 4.7904C2.6406 4.6338 2.8251 4.5555 3.0375 4.5555C3.2499 4.5555 3.4344 4.6338 3.591 4.7904C3.747 4.9464 3.825 5.1309 3.825 5.3439V14.9244H11.1564C11.3688 14.9244 11.553 15.0027 11.709 15.1593C11.8656 15.3153 11.9439 15.4995 11.9439 15.7119C11.9439 15.9243 11.8656 16.1088 11.709 16.2654C11.553 16.4214 11.3688 16.4994 11.1564 16.4994H3.825Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom Discourse icon (socials).
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom Discourse icon (socials).
5
5
  */
6
6
  export const DiscourseIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M9.02808 2.7002C5.59683 2.7002 2.69995 5.48457 2.69995 8.91582C2.69995 9.0002 2.69995 15.3002 2.69995 15.3002H9.02808C12.4875 15.3002 15.3 12.4314 15.3 9.0002C15.3 5.59707 12.4875 2.7002 9.02808 2.7002ZM8.99995 12.6002C8.43745 12.6002 7.9312 12.4877 7.45308 12.2627L5.17495 12.8252L5.82183 10.7158C5.54058 10.2096 5.39995 9.64707 5.39995 9.0002C5.39995 7.03145 7.00308 5.4002 8.99995 5.4002C10.9687 5.4002 12.6 7.03145 12.6 9.0002C12.6 10.9971 10.9687 12.6002 8.99995 12.6002Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M9.02808 2.7002C5.59683 2.7002 2.69995 5.48457 2.69995 8.91582C2.69995 9.0002 2.69995 15.3002 2.69995 15.3002H9.02808C12.4875 15.3002 15.3 12.4314 15.3 9.0002C15.3 5.59707 12.4875 2.7002 9.02808 2.7002ZM8.99995 12.6002C8.43745 12.6002 7.9312 12.4877 7.45308 12.2627L5.17495 12.8252L5.82183 10.7158C5.54058 10.2096 5.39995 9.64707 5.39995 9.0002C5.39995 7.03145 7.00308 5.4002 8.99995 5.4002C10.9687 5.4002 12.6 7.03145 12.6 9.0002C12.6 10.9971 10.9687 12.6002 8.99995 12.6002Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom download icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom download icon.
5
5
  */
6
6
  export const DownloadIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M9.00006 11.6256C8.89986 11.6256 8.80296 11.6067 8.70936 11.5689C8.61576 11.5317 8.52516 11.4693 8.43756 11.3817L5.69976 8.6439C5.53716 8.4813 5.45586 8.2938 5.45586 8.0814C5.45586 7.869 5.53716 7.6815 5.69976 7.5189C5.86236 7.3563 6.04986 7.275 6.26226 7.275C6.47466 7.275 6.66216 7.3563 6.82476 7.5189L8.21256 8.9067V3.7875C8.21256 3.5751 8.29056 3.3909 8.44656 3.2349C8.60316 3.0783 8.78766 3 9.00006 3C9.21246 3 9.39695 3.0783 9.55355 3.2349C9.70955 3.3909 9.78756 3.5751 9.78756 3.7875V8.9067L11.1754 7.5189C11.338 7.3563 11.5255 7.275 11.7379 7.275C11.9503 7.275 12.1378 7.3563 12.3004 7.5189C12.463 7.6815 12.5443 7.869 12.5443 8.0814C12.5443 8.2938 12.463 8.4813 12.3004 8.6439L9.56256 11.3817C9.47496 11.4693 9.38436 11.5317 9.29076 11.5689C9.19716 11.6067 9.10026 11.6256 9.00006 11.6256ZM4.57476 15.0006C4.13736 15.0006 3.76566 14.8473 3.45966 14.5407C3.15306 14.2347 2.99976 13.863 2.99976 13.4256V12.0378C2.99976 11.8254 3.07806 11.6409 3.23466 11.4843C3.39066 11.3283 3.57486 11.2503 3.78726 11.2503C3.99966 11.2503 4.18416 11.3283 4.34076 11.4843C4.49676 11.6409 4.57476 11.8254 4.57476 12.0378V13.4256H13.4254V12.0378C13.4254 11.8254 13.5034 11.6409 13.6594 11.4843C13.816 11.3283 14.0005 11.2503 14.2129 11.2503C14.4253 11.2503 14.6095 11.3283 14.7655 11.4843C14.9221 11.6409 15.0004 11.8254 15.0004 12.0378V13.4256C15.0004 13.863 14.8471 14.2347 14.5405 14.5407C14.2345 14.8473 13.8628 15.0006 13.4254 15.0006H4.57476Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M9.00006 11.6256C8.89986 11.6256 8.80296 11.6067 8.70936 11.5689C8.61576 11.5317 8.52516 11.4693 8.43756 11.3817L5.69976 8.6439C5.53716 8.4813 5.45586 8.2938 5.45586 8.0814C5.45586 7.869 5.53716 7.6815 5.69976 7.5189C5.86236 7.3563 6.04986 7.275 6.26226 7.275C6.47466 7.275 6.66216 7.3563 6.82476 7.5189L8.21256 8.9067V3.7875C8.21256 3.5751 8.29056 3.3909 8.44656 3.2349C8.60316 3.0783 8.78766 3 9.00006 3C9.21246 3 9.39695 3.0783 9.55355 3.2349C9.70955 3.3909 9.78756 3.5751 9.78756 3.7875V8.9067L11.1754 7.5189C11.338 7.3563 11.5255 7.275 11.7379 7.275C11.9503 7.275 12.1378 7.3563 12.3004 7.5189C12.463 7.6815 12.5443 7.869 12.5443 8.0814C12.5443 8.2938 12.463 8.4813 12.3004 8.6439L9.56256 11.3817C9.47496 11.4693 9.38436 11.5317 9.29076 11.5689C9.19716 11.6067 9.10026 11.6256 9.00006 11.6256ZM4.57476 15.0006C4.13736 15.0006 3.76566 14.8473 3.45966 14.5407C3.15306 14.2347 2.99976 13.863 2.99976 13.4256V12.0378C2.99976 11.8254 3.07806 11.6409 3.23466 11.4843C3.39066 11.3283 3.57486 11.2503 3.78726 11.2503C3.99966 11.2503 4.18416 11.3283 4.34076 11.4843C4.49676 11.6409 4.57476 11.8254 4.57476 12.0378V13.4256H13.4254V12.0378C13.4254 11.8254 13.5034 11.6409 13.6594 11.4843C13.816 11.3283 14.0005 11.2503 14.2129 11.2503C14.4253 11.2503 14.6095 11.3283 14.7655 11.4843C14.9221 11.6409 15.0004 11.8254 15.0004 12.0378V13.4256C15.0004 13.863 14.8471 14.2347 14.5405 14.5407C14.2345 14.8473 13.8628 15.0006 13.4254 15.0006H4.57476Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom email read icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom email read icon.
5
5
  */
6
6
  export const EmailReadIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M11.906 16.2372C11.8187 16.2372 11.7407 16.2248 11.672 16.1999C11.603 16.175 11.531 16.1312 11.456 16.0685L9.26226 13.8563C9.13746 13.7438 9.0782 13.5999 9.0845 13.4247C9.0905 13.2498 9.15606 13.0998 9.28116 12.9747C9.39366 12.8499 9.53736 12.7875 9.71226 12.7875C9.88746 12.7875 10.0375 12.8499 10.1623 12.9747L11.906 14.7185L15.9187 10.7063C16.0438 10.5812 16.1938 10.5186 16.3687 10.5186C16.5436 10.5186 16.6936 10.5812 16.8187 10.7063C16.9312 10.8188 16.9874 10.9625 16.9874 11.1374C16.9874 11.3123 16.9312 11.4623 16.8187 11.5874L12.3376 16.0685C12.2749 16.1312 12.206 16.175 12.131 16.1999C12.056 16.2248 11.981 16.2372 11.906 16.2372ZM2.79351 4.25595L8.98101 8.1561L15.1501 4.25595H2.79351ZM2.75616 14.8499C2.41866 14.8499 2.12496 14.7249 1.87506 14.475C1.62486 14.2248 1.49976 13.931 1.49976 13.5935V4.25595C1.49976 3.91845 1.62486 3.62475 1.87506 3.37485C2.12496 3.12495 2.41866 3 2.75616 3H15.2063C15.5438 3 15.8375 3.12495 16.0874 3.37485C16.3373 3.62475 16.4623 3.91845 16.4623 4.25595V8.3811C16.225 8.631 16.0187 8.84355 15.8435 9.01875C15.6686 9.19365 15.4562 9.3999 15.2063 9.6375V5.4561L9.30005 9.20595C9.24995 9.23115 9.19986 9.25305 9.14976 9.27165C9.09996 9.29055 9.04371 9.3 8.98101 9.3C8.91861 9.3 8.85921 9.29055 8.80281 9.27165C8.74671 9.25305 8.69361 9.23115 8.64351 9.20595L2.75616 5.4561V13.5935H7.23726L8.49366 14.8499H2.75616Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M11.906 16.2372C11.8187 16.2372 11.7407 16.2248 11.672 16.1999C11.603 16.175 11.531 16.1312 11.456 16.0685L9.26226 13.8563C9.13746 13.7438 9.0782 13.5999 9.0845 13.4247C9.0905 13.2498 9.15606 13.0998 9.28116 12.9747C9.39366 12.8499 9.53736 12.7875 9.71226 12.7875C9.88746 12.7875 10.0375 12.8499 10.1623 12.9747L11.906 14.7185L15.9187 10.7063C16.0438 10.5812 16.1938 10.5186 16.3687 10.5186C16.5436 10.5186 16.6936 10.5812 16.8187 10.7063C16.9312 10.8188 16.9874 10.9625 16.9874 11.1374C16.9874 11.3123 16.9312 11.4623 16.8187 11.5874L12.3376 16.0685C12.2749 16.1312 12.206 16.175 12.131 16.1999C12.056 16.2248 11.981 16.2372 11.906 16.2372ZM2.79351 4.25595L8.98101 8.1561L15.1501 4.25595H2.79351ZM2.75616 14.8499C2.41866 14.8499 2.12496 14.7249 1.87506 14.475C1.62486 14.2248 1.49976 13.931 1.49976 13.5935V4.25595C1.49976 3.91845 1.62486 3.62475 1.87506 3.37485C2.12496 3.12495 2.41866 3 2.75616 3H15.2063C15.5438 3 15.8375 3.12495 16.0874 3.37485C16.3373 3.62475 16.4623 3.91845 16.4623 4.25595V8.3811C16.225 8.631 16.0187 8.84355 15.8435 9.01875C15.6686 9.19365 15.4562 9.3999 15.2063 9.6375V5.4561L9.30005 9.20595C9.24995 9.23115 9.19986 9.25305 9.14976 9.27165C9.09996 9.29055 9.04371 9.3 8.98101 9.3C8.91861 9.3 8.85921 9.29055 8.80281 9.27165C8.74671 9.25305 8.69361 9.23115 8.64351 9.20595L2.75616 5.4561V13.5935H7.23726L8.49366 14.8499H2.75616Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom error icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom error icon.
5
5
  */
6
6
  export const ErrorIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M6.8436 15.75C6.6312 15.75 6.4281 15.7095 6.2343 15.6285C6.0405 15.5469 5.8686 15.4311 5.7186 15.2811L2.7189 12.2814C2.5689 12.1314 2.4531 11.9595 2.3715 11.7657C2.2905 11.5719 2.25 11.3688 2.25 11.1564V6.8436C2.25 6.6312 2.2905 6.4281 2.3715 6.2343C2.4531 6.0405 2.5689 5.8686 2.7189 5.7186L5.7186 2.7189C5.8686 2.5689 6.0405 2.4531 6.2343 2.3715C6.4281 2.2905 6.6312 2.25 6.8436 2.25H11.1564C11.3688 2.25 11.5719 2.2905 11.7657 2.3715C11.9595 2.4531 12.1314 2.5689 12.2814 2.7189L15.2811 5.7186C15.4311 5.8686 15.5469 6.0405 15.6285 6.2343C15.7095 6.4281 15.75 6.6312 15.75 6.8436V11.1564C15.75 11.3688 15.7095 11.5719 15.6285 11.7657C15.5469 11.9595 15.4311 12.1314 15.2811 12.2814L12.2814 15.2811C12.1314 15.4311 11.9595 15.5469 11.7657 15.6285C11.5719 15.7095 11.3688 15.75 11.1564 15.75H6.8436ZM9 12.7692C9.2124 12.7692 9.3969 12.6909 9.5535 12.5343C9.7095 12.3783 9.7875 12.1938 9.7875 11.9808C9.7875 11.7684 9.7095 11.5842 9.5535 11.4282C9.3969 11.2722 9.2124 11.1942 9 11.1942C8.7876 11.1942 8.6031 11.2722 8.4465 11.4282C8.2905 11.5842 8.2125 11.7684 8.2125 11.9808C8.2125 12.1938 8.2905 12.3783 8.4465 12.5343C8.6031 12.6909 8.7876 12.7692 9 12.7692ZM9 9.7128C9.2124 9.7128 9.3969 9.6345 9.5535 9.4779C9.7095 9.3219 9.7875 9.1377 9.7875 8.9253V6.0561C9.7875 5.8437 9.7095 5.6595 9.5535 5.5035C9.3969 5.3469 9.2124 5.2686 9 5.2686C8.7876 5.2686 8.6031 5.3469 8.4465 5.5035C8.2905 5.6595 8.2125 5.8437 8.2125 6.0561V8.9253C8.2125 9.1377 8.2905 9.3219 8.4465 9.4779C8.6031 9.6345 8.7876 9.7128 9 9.7128Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M6.8436 15.75C6.6312 15.75 6.4281 15.7095 6.2343 15.6285C6.0405 15.5469 5.8686 15.4311 5.7186 15.2811L2.7189 12.2814C2.5689 12.1314 2.4531 11.9595 2.3715 11.7657C2.2905 11.5719 2.25 11.3688 2.25 11.1564V6.8436C2.25 6.6312 2.2905 6.4281 2.3715 6.2343C2.4531 6.0405 2.5689 5.8686 2.7189 5.7186L5.7186 2.7189C5.8686 2.5689 6.0405 2.4531 6.2343 2.3715C6.4281 2.2905 6.6312 2.25 6.8436 2.25H11.1564C11.3688 2.25 11.5719 2.2905 11.7657 2.3715C11.9595 2.4531 12.1314 2.5689 12.2814 2.7189L15.2811 5.7186C15.4311 5.8686 15.5469 6.0405 15.6285 6.2343C15.7095 6.4281 15.75 6.6312 15.75 6.8436V11.1564C15.75 11.3688 15.7095 11.5719 15.6285 11.7657C15.5469 11.9595 15.4311 12.1314 15.2811 12.2814L12.2814 15.2811C12.1314 15.4311 11.9595 15.5469 11.7657 15.6285C11.5719 15.7095 11.3688 15.75 11.1564 15.75H6.8436ZM9 12.7692C9.2124 12.7692 9.3969 12.6909 9.5535 12.5343C9.7095 12.3783 9.7875 12.1938 9.7875 11.9808C9.7875 11.7684 9.7095 11.5842 9.5535 11.4282C9.3969 11.2722 9.2124 11.1942 9 11.1942C8.7876 11.1942 8.6031 11.2722 8.4465 11.4282C8.2905 11.5842 8.2125 11.7684 8.2125 11.9808C8.2125 12.1938 8.2905 12.3783 8.4465 12.5343C8.6031 12.6909 8.7876 12.7692 9 12.7692ZM9 9.7128C9.2124 9.7128 9.3969 9.6345 9.5535 9.4779C9.7095 9.3219 9.7875 9.1377 9.7875 8.9253V6.0561C9.7875 5.8437 9.7095 5.6595 9.5535 5.5035C9.3969 5.3469 9.2124 5.2686 9 5.2686C8.7876 5.2686 8.6031 5.3469 8.4465 5.5035C8.2905 5.6595 8.2125 5.8437 8.2125 6.0561V8.9253C8.2125 9.1377 8.2905 9.3219 8.4465 9.4779C8.6031 9.6345 8.7876 9.7128 9 9.7128Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom Facebook icon (socials).
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom Facebook icon (socials).
5
5
  */
6
6
  export const FacebookIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M15.975 9.00039C15.975 5.14824 12.8522 2.02539 9.00002 2.02539C5.14787 2.02539 2.02502 5.14824 2.02502 9.00039C2.02502 12.2714 4.27711 15.0162 7.31514 15.77V11.132H5.8769V9.00039H7.31514V8.08192C7.31514 5.70791 8.38957 4.60754 10.7203 4.60754C11.1623 4.60754 11.9248 4.6943 12.2367 4.78079V6.71287C12.0721 6.69557 11.7861 6.68692 11.431 6.68692C10.2873 6.68692 9.84539 7.12021 9.84539 8.24653V9.00039H12.1237L11.7323 11.132H9.84539V15.9243C13.2986 15.5072 15.975 12.5666 15.975 9.00039Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M15.975 9.00039C15.975 5.14824 12.8522 2.02539 9.00002 2.02539C5.14787 2.02539 2.02502 5.14824 2.02502 9.00039C2.02502 12.2714 4.27711 15.0162 7.31514 15.77V11.132H5.8769V9.00039H7.31514V8.08192C7.31514 5.70791 8.38957 4.60754 10.7203 4.60754C11.1623 4.60754 11.9248 4.6943 12.2367 4.78079V6.71287C12.0721 6.69557 11.7861 6.68692 11.431 6.68692C10.2873 6.68692 9.84539 7.12021 9.84539 8.24653V9.00039H12.1237L11.7323 11.132H9.84539V15.9243C13.2986 15.5072 15.975 12.5666 15.975 9.00039Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom feedback icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom feedback icon.
5
5
  */
6
6
  export const FeedbackIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M9.75 4.5V7.5C9.75 7.7125 9.678 7.8905 9.534 8.034C9.3905 8.178 9.2125 8.25 9 8.25C8.7875 8.25 8.60925 8.178 8.46525 8.034C8.32175 7.8905 8.25 7.7125 8.25 7.5V4.5C8.25 4.2875 8.32175 4.10925 8.46525 3.96525C8.60925 3.82175 8.7875 3.75 9 3.75C9.2125 3.75 9.3905 3.82175 9.534 3.96525C9.678 4.10925 9.75 4.2875 9.75 4.5ZM9 11.25C8.7875 11.25 8.60925 11.178 8.46525 11.034C8.32175 10.8905 8.25 10.7125 8.25 10.5C8.25 10.2875 8.32175 10.1092 8.46525 9.96525C8.60925 9.82175 8.7875 9.75 9 9.75C9.2125 9.75 9.3905 9.82175 9.534 9.96525C9.678 10.1092 9.75 10.2875 9.75 10.5C9.75 10.7125 9.678 10.8905 9.534 11.034C9.3905 11.178 9.2125 11.25 9 11.25ZM16.5 14.6813V3C16.5 2.5875 16.353 2.23425 16.059 1.94025C15.7655 1.64675 15.4125 1.5 15 1.5H3C2.5875 1.5 2.23425 1.64675 1.94025 1.94025C1.64675 2.23425 1.5 2.5875 1.5 3V12C1.5 12.4125 1.64675 12.7658 1.94025 13.0598C2.23425 13.3533 2.5875 13.5 3 13.5H13.5L15.225 15.225C15.4625 15.4625 15.7345 15.5155 16.041 15.384C16.347 15.253 16.5 15.0188 16.5 14.6813ZM15 12.8812L14.1187 12H3V3H15V12.8812Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M9.75 4.5V7.5C9.75 7.7125 9.678 7.8905 9.534 8.034C9.3905 8.178 9.2125 8.25 9 8.25C8.7875 8.25 8.60925 8.178 8.46525 8.034C8.32175 7.8905 8.25 7.7125 8.25 7.5V4.5C8.25 4.2875 8.32175 4.10925 8.46525 3.96525C8.60925 3.82175 8.7875 3.75 9 3.75C9.2125 3.75 9.3905 3.82175 9.534 3.96525C9.678 4.10925 9.75 4.2875 9.75 4.5ZM9 11.25C8.7875 11.25 8.60925 11.178 8.46525 11.034C8.32175 10.8905 8.25 10.7125 8.25 10.5C8.25 10.2875 8.32175 10.1092 8.46525 9.96525C8.60925 9.82175 8.7875 9.75 9 9.75C9.2125 9.75 9.3905 9.82175 9.534 9.96525C9.678 10.1092 9.75 10.2875 9.75 10.5C9.75 10.7125 9.678 10.8905 9.534 11.034C9.3905 11.178 9.2125 11.25 9 11.25ZM16.5 14.6813V3C16.5 2.5875 16.353 2.23425 16.059 1.94025C15.7655 1.64675 15.4125 1.5 15 1.5H3C2.5875 1.5 2.23425 1.64675 1.94025 1.94025C1.64675 2.23425 1.5 2.5875 1.5 3V12C1.5 12.4125 1.64675 12.7658 1.94025 13.0598C2.23425 13.3533 2.5875 13.5 3 13.5H13.5L15.225 15.225C15.4625 15.4625 15.7345 15.5155 16.041 15.384C16.347 15.253 16.5 15.0188 16.5 14.6813ZM15 12.8812L14.1187 12H3V3H15V12.8812Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom form status completed icon.
@@ -1,10 +1,8 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom form status completed icon.
5
5
  */
6
6
  export const FormStatusCompletedIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("rect", { width: "18", height: "18", rx: "9", fill: "currentColor" }),
9
- React.createElement("path", { d: "M7.58521 12.2524C7.50727 12.2524 7.43191 12.2377 7.35911 12.2083C7.28631 12.1794 7.21584 12.1309 7.14771 12.0627L4.68301 9.59805C4.56634 9.48138 4.51057 9.33321 4.51571 9.15355C4.52037 8.97341 4.58104 8.82501 4.69771 8.70835C4.81437 8.59168 4.96021 8.53335 5.13521 8.53335C5.31021 8.53335 5.45604 8.59168 5.57271 8.70835L7.61461 10.7502L12.4418 5.92305C12.5585 5.80638 12.7017 5.74805 12.8716 5.74805C13.0419 5.74805 13.1854 5.80638 13.3021 5.92305C13.4188 6.03971 13.4771 6.18321 13.4771 6.35355C13.4771 6.52341 13.4188 6.66668 13.3021 6.78335L8.02271 12.0627C7.95457 12.1309 7.88411 12.1794 7.81131 12.2083C7.73851 12.2377 7.66314 12.2524 7.58521 12.2524Z", fill: "white" })));
7
+ return (_jsxs(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: [_jsx("rect", { width: "18", height: "18", rx: "9", fill: "currentColor" }), _jsx("path", { d: "M7.58521 12.2524C7.50727 12.2524 7.43191 12.2377 7.35911 12.2083C7.28631 12.1794 7.21584 12.1309 7.14771 12.0627L4.68301 9.59805C4.56634 9.48138 4.51057 9.33321 4.51571 9.15355C4.52037 8.97341 4.58104 8.82501 4.69771 8.70835C4.81437 8.59168 4.96021 8.53335 5.13521 8.53335C5.31021 8.53335 5.45604 8.59168 5.57271 8.70835L7.61461 10.7502L12.4418 5.92305C12.5585 5.80638 12.7017 5.74805 12.8716 5.74805C13.0419 5.74805 13.1854 5.80638 13.3021 5.92305C13.4188 6.03971 13.4771 6.18321 13.4771 6.35355C13.4771 6.52341 13.4188 6.66668 13.3021 6.78335L8.02271 12.0627C7.95457 12.1309 7.88411 12.1794 7.81131 12.2083C7.73851 12.2377 7.66314 12.2524 7.58521 12.2524Z", fill: "white" })] }));
10
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom form status incomplete icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom form status incomplete icon.
5
5
  */
6
6
  export const FormStatusIncompleteIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("rect", { fill: "transparent", height: "16", rx: "8", stroke: "currentColor", strokeWidth: "2", width: "16", x: "1", y: "1" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("rect", { fill: "transparent", height: "16", rx: "8", stroke: "currentColor", strokeWidth: "2", width: "16", x: "1", y: "1" }) }));
9
8
  };
@@ -1,2 +1,3 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  export declare const ForwardArrowIcon: ({ fontSize, viewBox, ...props }: CustomSVGIconProps) => JSX.Element;
@@ -1,6 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  export const ForwardArrowIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
4
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
5
- React.createElement("path", { d: "M12.1313 9.74959H3.75C3.5375 9.74959 3.35937 9.67772 3.21562 9.53397C3.07187 9.39022 3 9.21209 3 8.99959C3 8.78709 3.07187 8.60897 3.21562 8.46522C3.35937 8.32147 3.5375 8.24959 3.75 8.24959H12.1313L8.45625 4.57459C8.30625 4.42459 8.23438 4.24959 8.24063 4.04959C8.24688 3.84959 8.325 3.67459 8.475 3.52459C8.625 3.38709 8.8 3.31522 9 3.30897C9.2 3.30272 9.375 3.37459 9.525 3.52459L14.475 8.47459C14.55 8.54959 14.6031 8.63084 14.6344 8.71834C14.6656 8.80584 14.6812 8.89959 14.6812 8.99959C14.6812 9.09959 14.6656 9.19334 14.6344 9.28084C14.6031 9.36834 14.55 9.44959 14.475 9.52459L9.525 14.4746C9.3875 14.6121 9.21562 14.6808 9.00937 14.6808C8.80312 14.6808 8.625 14.6121 8.475 14.4746C8.325 14.3246 8.25 14.1465 8.25 13.9402C8.25 13.734 8.325 13.5558 8.475 13.4058L12.1313 9.74959Z", fill: "currentColor" })));
4
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M12.1313 9.74959H3.75C3.5375 9.74959 3.35937 9.67772 3.21562 9.53397C3.07187 9.39022 3 9.21209 3 8.99959C3 8.78709 3.07187 8.60897 3.21562 8.46522C3.35937 8.32147 3.5375 8.24959 3.75 8.24959H12.1313L8.45625 4.57459C8.30625 4.42459 8.23438 4.24959 8.24063 4.04959C8.24688 3.84959 8.325 3.67459 8.475 3.52459C8.625 3.38709 8.8 3.31522 9 3.30897C9.2 3.30272 9.375 3.37459 9.525 3.52459L14.475 8.47459C14.55 8.54959 14.6031 8.63084 14.6344 8.71834C14.6656 8.80584 14.6812 8.89959 14.6812 8.99959C14.6812 9.09959 14.6656 9.19334 14.6344 9.28084C14.6031 9.36834 14.55 9.44959 14.475 9.52459L9.525 14.4746C9.3875 14.6121 9.21562 14.6808 9.00937 14.6808C8.80312 14.6808 8.625 14.6121 8.475 14.4746C8.325 14.3246 8.25 14.1465 8.25 13.9402C8.25 13.734 8.325 13.5558 8.475 13.4058L12.1313 9.74959Z", fill: "currentColor" }) }));
6
5
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom GitHub icon (socials).
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom GitHub icon (socials).
5
5
  */
6
6
  export const GitHubIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M6.66565 13.1582C6.66565 13.2145 6.6094 13.2426 6.52502 13.2426C6.44065 13.2707 6.3844 13.2145 6.3844 13.1582C6.3844 13.102 6.44065 13.0457 6.52502 13.0457C6.6094 13.0457 6.66565 13.102 6.66565 13.1582ZM5.79377 13.0176C5.79377 13.0738 5.85002 13.1582 5.9344 13.1582C5.99065 13.1863 6.07502 13.1582 6.10315 13.102C6.10315 13.0457 6.07502 12.9895 5.99065 12.9613C5.90627 12.9332 5.8219 12.9613 5.79377 13.0176ZM7.0594 12.9895C6.97502 12.9895 6.91877 13.0457 6.91877 13.1301C6.91877 13.1863 7.00315 13.2145 7.08752 13.1863C7.1719 13.1582 7.22815 13.1301 7.20002 13.0738C7.20002 13.0176 7.11565 12.9613 7.0594 12.9895ZM8.88752 2.18945C5.00627 2.18945 2.02502 5.1707 2.02502 9.05195C2.02502 12.1738 3.96565 14.8457 6.77815 15.802C7.14377 15.8582 7.25627 15.6332 7.25627 15.4645C7.25627 15.2676 7.25627 14.3113 7.25627 13.7207C7.25627 13.7207 5.28752 14.1426 4.86565 12.877C4.86565 12.877 4.55627 12.0613 4.10627 11.8645C4.10627 11.8645 3.4594 11.4145 4.1344 11.4145C4.1344 11.4145 4.83752 11.4707 5.23127 12.1457C5.85002 13.2426 6.86252 12.9332 7.2844 12.7363C7.34065 12.2863 7.5094 11.977 7.7344 11.7801C6.1594 11.6113 4.55627 11.3863 4.55627 8.68633C4.55627 7.89883 4.78127 7.5332 5.23127 7.02695C5.1469 6.83008 4.9219 6.09883 5.31565 5.11445C5.87815 4.9457 7.25627 5.87383 7.25627 5.87383C7.81877 5.70508 8.4094 5.64883 9.00002 5.64883C9.61877 5.64883 10.2094 5.70508 10.7719 5.87383C10.7719 5.87383 12.1219 4.91758 12.7125 5.11445C13.1063 6.09883 12.8531 6.83008 12.7969 7.02695C13.2469 7.5332 13.5281 7.89883 13.5281 8.68633C13.5281 11.3863 11.8688 11.6113 10.2938 11.7801C10.5469 12.0051 10.7719 12.427 10.7719 13.102C10.7719 14.0301 10.7438 15.2113 10.7438 15.4363C10.7438 15.6332 10.8844 15.8582 11.25 15.7738C14.0625 14.8457 15.975 12.1738 15.975 9.05195C15.975 5.1707 12.7969 2.18945 8.88752 2.18945ZM4.75315 11.8926C4.6969 11.9207 4.72502 12.0051 4.75315 12.0613C4.8094 12.0895 4.86565 12.1176 4.9219 12.0895C4.95002 12.0613 4.95002 11.977 4.89377 11.9207C4.83752 11.8926 4.78127 11.8645 4.75315 11.8926ZM4.44377 11.6676C4.41565 11.7238 4.44377 11.752 4.50002 11.7801C4.55627 11.8082 4.61252 11.8082 4.64065 11.752C4.64065 11.7238 4.61252 11.6957 4.55627 11.6676C4.50002 11.6395 4.4719 11.6395 4.44377 11.6676ZM5.34377 12.6801C5.31565 12.7082 5.31565 12.7926 5.40002 12.8488C5.45627 12.9051 5.54065 12.9332 5.56877 12.877C5.5969 12.8488 5.5969 12.7645 5.54065 12.7082C5.4844 12.652 5.40002 12.6238 5.34377 12.6801ZM5.0344 12.2582C4.97815 12.2863 4.97815 12.3707 5.0344 12.427C5.09065 12.4832 5.1469 12.5113 5.20315 12.4832C5.23127 12.4551 5.23127 12.3707 5.20315 12.3145C5.1469 12.2582 5.09065 12.2301 5.0344 12.2582Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M6.66565 13.1582C6.66565 13.2145 6.6094 13.2426 6.52502 13.2426C6.44065 13.2707 6.3844 13.2145 6.3844 13.1582C6.3844 13.102 6.44065 13.0457 6.52502 13.0457C6.6094 13.0457 6.66565 13.102 6.66565 13.1582ZM5.79377 13.0176C5.79377 13.0738 5.85002 13.1582 5.9344 13.1582C5.99065 13.1863 6.07502 13.1582 6.10315 13.102C6.10315 13.0457 6.07502 12.9895 5.99065 12.9613C5.90627 12.9332 5.8219 12.9613 5.79377 13.0176ZM7.0594 12.9895C6.97502 12.9895 6.91877 13.0457 6.91877 13.1301C6.91877 13.1863 7.00315 13.2145 7.08752 13.1863C7.1719 13.1582 7.22815 13.1301 7.20002 13.0738C7.20002 13.0176 7.11565 12.9613 7.0594 12.9895ZM8.88752 2.18945C5.00627 2.18945 2.02502 5.1707 2.02502 9.05195C2.02502 12.1738 3.96565 14.8457 6.77815 15.802C7.14377 15.8582 7.25627 15.6332 7.25627 15.4645C7.25627 15.2676 7.25627 14.3113 7.25627 13.7207C7.25627 13.7207 5.28752 14.1426 4.86565 12.877C4.86565 12.877 4.55627 12.0613 4.10627 11.8645C4.10627 11.8645 3.4594 11.4145 4.1344 11.4145C4.1344 11.4145 4.83752 11.4707 5.23127 12.1457C5.85002 13.2426 6.86252 12.9332 7.2844 12.7363C7.34065 12.2863 7.5094 11.977 7.7344 11.7801C6.1594 11.6113 4.55627 11.3863 4.55627 8.68633C4.55627 7.89883 4.78127 7.5332 5.23127 7.02695C5.1469 6.83008 4.9219 6.09883 5.31565 5.11445C5.87815 4.9457 7.25627 5.87383 7.25627 5.87383C7.81877 5.70508 8.4094 5.64883 9.00002 5.64883C9.61877 5.64883 10.2094 5.70508 10.7719 5.87383C10.7719 5.87383 12.1219 4.91758 12.7125 5.11445C13.1063 6.09883 12.8531 6.83008 12.7969 7.02695C13.2469 7.5332 13.5281 7.89883 13.5281 8.68633C13.5281 11.3863 11.8688 11.6113 10.2938 11.7801C10.5469 12.0051 10.7719 12.427 10.7719 13.102C10.7719 14.0301 10.7438 15.2113 10.7438 15.4363C10.7438 15.6332 10.8844 15.8582 11.25 15.7738C14.0625 14.8457 15.975 12.1738 15.975 9.05195C15.975 5.1707 12.7969 2.18945 8.88752 2.18945ZM4.75315 11.8926C4.6969 11.9207 4.72502 12.0051 4.75315 12.0613C4.8094 12.0895 4.86565 12.1176 4.9219 12.0895C4.95002 12.0613 4.95002 11.977 4.89377 11.9207C4.83752 11.8926 4.78127 11.8645 4.75315 11.8926ZM4.44377 11.6676C4.41565 11.7238 4.44377 11.752 4.50002 11.7801C4.55627 11.8082 4.61252 11.8082 4.64065 11.752C4.64065 11.7238 4.61252 11.6957 4.55627 11.6676C4.50002 11.6395 4.4719 11.6395 4.44377 11.6676ZM5.34377 12.6801C5.31565 12.7082 5.31565 12.7926 5.40002 12.8488C5.45627 12.9051 5.54065 12.9332 5.56877 12.877C5.5969 12.8488 5.5969 12.7645 5.54065 12.7082C5.4844 12.652 5.40002 12.6238 5.34377 12.6801ZM5.0344 12.2582C4.97815 12.2863 4.97815 12.3707 5.0344 12.427C5.09065 12.4832 5.1469 12.5113 5.20315 12.4832C5.23127 12.4551 5.23127 12.3707 5.20315 12.3145C5.1469 12.2582 5.09065 12.2301 5.0344 12.2582Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,4 +1,5 @@
1
1
  import { SvgIconProps } from "@mui/material";
2
+ import { JSX } from "react";
2
3
  /**
3
4
  * Custom Google logo icon.
4
5
  */
@@ -1,12 +1,8 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom Google logo icon.
5
5
  */
6
6
  export const GoogleIcon = ({ fontSize = "xsmall", viewBox = "0 0 20 20", ...props }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M19.7874 10.2249C19.7874 9.56659 19.7291 8.94159 19.6291 8.33325H10.2124V12.0916H15.6041C15.3624 13.3249 14.6541 14.3666 13.6041 15.0749V17.5749H16.8207C18.7041 15.8333 19.7874 13.2666 19.7874 10.2249Z", fill: "#4285F4" }),
9
- React.createElement("path", { d: "M10.2126 20.0001C12.9126 20.0001 15.1709 19.1001 16.8209 17.5751L13.6043 15.0751C12.7043 15.6751 11.5626 16.0418 10.2126 16.0418C7.60427 16.0418 5.39593 14.2834 4.60427 11.9084H1.2876V14.4834C2.92926 17.7501 6.30427 20.0001 10.2126 20.0001Z", fill: "#34A853" }),
10
- React.createElement("path", { d: "M4.60407 11.9083C4.39574 11.3083 4.2874 10.6666 4.2874 9.99993C4.2874 9.33327 4.40407 8.6916 4.60407 8.0916V5.5166H1.2874C0.604068 6.8666 0.212402 8.38327 0.212402 9.99993C0.212402 11.6166 0.604068 13.1333 1.2874 14.4833L4.60407 11.9083Z", fill: "#FBBC05" }),
11
- React.createElement("path", { d: "M10.2126 3.95833C11.6876 3.95833 13.0043 4.46667 14.0459 5.45834L16.8959 2.60833C15.1709 0.991667 12.9126 0 10.2126 0C6.30426 0 2.92926 2.25 1.2876 5.51667L4.60427 8.09167C5.39593 5.71667 7.60426 3.95833 10.2126 3.95833Z", fill: "#EA4335" })));
7
+ return (_jsxs(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: [_jsx("path", { d: "M19.7874 10.2249C19.7874 9.56659 19.7291 8.94159 19.6291 8.33325H10.2124V12.0916H15.6041C15.3624 13.3249 14.6541 14.3666 13.6041 15.0749V17.5749H16.8207C18.7041 15.8333 19.7874 13.2666 19.7874 10.2249Z", fill: "#4285F4" }), _jsx("path", { d: "M10.2126 20.0001C12.9126 20.0001 15.1709 19.1001 16.8209 17.5751L13.6043 15.0751C12.7043 15.6751 11.5626 16.0418 10.2126 16.0418C7.60427 16.0418 5.39593 14.2834 4.60427 11.9084H1.2876V14.4834C2.92926 17.7501 6.30427 20.0001 10.2126 20.0001Z", fill: "#34A853" }), _jsx("path", { d: "M4.60407 11.9083C4.39574 11.3083 4.2874 10.6666 4.2874 9.99993C4.2874 9.33327 4.40407 8.6916 4.60407 8.0916V5.5166H1.2874C0.604068 6.8666 0.212402 8.38327 0.212402 9.99993C0.212402 11.6166 0.604068 13.1333 1.2874 14.4833L4.60407 11.9083Z", fill: "#FBBC05" }), _jsx("path", { d: "M10.2126 3.95833C11.6876 3.95833 13.0043 4.46667 14.0459 5.45834L16.8959 2.60833C15.1709 0.991667 12.9126 0 10.2126 0C6.30426 0 2.92926 2.25 1.2876 5.51667L4.60427 8.09167C5.39593 5.71667 7.60426 3.95833 10.2126 3.95833Z", fill: "#EA4335" })] }));
12
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom help icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom help icon.
5
5
  */
6
6
  export const HelpIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M9.00005 13.4998C9.25025 13.4998 9.46265 13.4122 9.63725 13.237C9.81245 13.0624 9.90005 12.85 9.90005 12.5998C9.90005 12.3496 9.81245 12.1372 9.63725 11.9626C9.46265 11.7874 9.25025 11.6998 9.00005 11.6998C8.74985 11.6998 8.53745 11.7874 8.36285 11.9626C8.18765 12.1372 8.10005 12.3496 8.10005 12.5998C8.10005 12.85 8.18765 13.0624 8.36285 13.237C8.53745 13.4122 8.74985 13.4998 9.00005 13.4998ZM8.32505 10.6306H9.69395C9.69395 10.1686 9.73445 9.8407 9.81545 9.6469C9.89705 9.4531 10.0938 9.2062 10.4058 8.9062C10.8438 8.4814 11.1471 8.119 11.3157 7.819C11.4843 7.519 11.5686 7.18751 11.5686 6.82451C11.5686 6.13751 11.3343 5.5783 10.8657 5.1469C10.3971 4.7155 9.80015 4.4998 9.07475 4.4998C8.43755 4.4998 7.88465 4.6684 7.41605 5.0056C6.94685 5.3434 6.61865 5.7997 6.43145 6.37451L7.65005 6.8812C7.76285 6.5308 7.94105 6.259 8.18465 6.0658C8.42825 5.872 8.71265 5.7751 9.03785 5.7751C9.38765 5.7751 9.67505 5.875 9.90005 6.0748C10.125 6.2746 10.2375 6.5371 10.2375 6.8623C10.2375 7.1497 10.1406 7.4059 9.94685 7.63091C9.75305 7.85591 9.53735 8.07461 9.29975 8.28701C8.86235 8.68721 8.59055 9.01541 8.48435 9.27161C8.37815 9.52781 8.32505 9.98081 8.32505 10.6306ZM9.00005 16.1998C8.01245 16.1998 7.08125 16.0123 6.20645 15.6373C5.33165 15.2623 4.56605 14.7466 3.90965 14.0902C3.25325 13.4338 2.73755 12.6682 2.36255 11.7934C1.98755 10.9186 1.80005 9.9874 1.80005 8.9998C1.80005 7.9996 1.98755 7.06511 2.36255 6.19631C2.73755 5.32811 3.25325 4.5658 3.90965 3.9094C4.56605 3.253 5.33165 2.7373 6.20645 2.3623C7.08125 1.9873 8.01245 1.7998 9.00005 1.7998C10.0002 1.7998 10.9347 1.9873 11.8035 2.3623C12.6717 2.7373 13.434 3.253 14.0904 3.9094C14.7468 4.5658 15.2625 5.32811 15.6375 6.19631C16.0125 7.06511 16.2 7.9996 16.2 8.9998C16.2 9.9874 16.0125 10.9186 15.6375 11.7934C15.2625 12.6682 14.7468 13.4338 14.0904 14.0902C13.434 14.7466 12.6717 15.2623 11.8035 15.6373C10.9347 16.0123 10.0002 16.1998 9.00005 16.1998Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M9.00005 13.4998C9.25025 13.4998 9.46265 13.4122 9.63725 13.237C9.81245 13.0624 9.90005 12.85 9.90005 12.5998C9.90005 12.3496 9.81245 12.1372 9.63725 11.9626C9.46265 11.7874 9.25025 11.6998 9.00005 11.6998C8.74985 11.6998 8.53745 11.7874 8.36285 11.9626C8.18765 12.1372 8.10005 12.3496 8.10005 12.5998C8.10005 12.85 8.18765 13.0624 8.36285 13.237C8.53745 13.4122 8.74985 13.4998 9.00005 13.4998ZM8.32505 10.6306H9.69395C9.69395 10.1686 9.73445 9.8407 9.81545 9.6469C9.89705 9.4531 10.0938 9.2062 10.4058 8.9062C10.8438 8.4814 11.1471 8.119 11.3157 7.819C11.4843 7.519 11.5686 7.18751 11.5686 6.82451C11.5686 6.13751 11.3343 5.5783 10.8657 5.1469C10.3971 4.7155 9.80015 4.4998 9.07475 4.4998C8.43755 4.4998 7.88465 4.6684 7.41605 5.0056C6.94685 5.3434 6.61865 5.7997 6.43145 6.37451L7.65005 6.8812C7.76285 6.5308 7.94105 6.259 8.18465 6.0658C8.42825 5.872 8.71265 5.7751 9.03785 5.7751C9.38765 5.7751 9.67505 5.875 9.90005 6.0748C10.125 6.2746 10.2375 6.5371 10.2375 6.8623C10.2375 7.1497 10.1406 7.4059 9.94685 7.63091C9.75305 7.85591 9.53735 8.07461 9.29975 8.28701C8.86235 8.68721 8.59055 9.01541 8.48435 9.27161C8.37815 9.52781 8.32505 9.98081 8.32505 10.6306ZM9.00005 16.1998C8.01245 16.1998 7.08125 16.0123 6.20645 15.6373C5.33165 15.2623 4.56605 14.7466 3.90965 14.0902C3.25325 13.4338 2.73755 12.6682 2.36255 11.7934C1.98755 10.9186 1.80005 9.9874 1.80005 8.9998C1.80005 7.9996 1.98755 7.06511 2.36255 6.19631C2.73755 5.32811 3.25325 4.5658 3.90965 3.9094C4.56605 3.253 5.33165 2.7373 6.20645 2.3623C7.08125 1.9873 8.01245 1.7998 9.00005 1.7998C10.0002 1.7998 10.9347 1.9873 11.8035 2.3623C12.6717 2.7373 13.434 3.253 14.0904 3.9094C14.7468 4.5658 15.2625 5.32811 15.6375 6.19631C16.0125 7.06511 16.2 7.9996 16.2 8.9998C16.2 9.9874 16.0125 10.9186 15.6375 11.7934C15.2625 12.6682 14.7468 13.4338 14.0904 14.0902C13.434 14.7466 12.6717 15.2623 11.8035 15.6373C10.9347 16.0123 10.0002 16.1998 9.00005 16.1998Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom in-progress icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom in-progress icon.
5
5
  */
6
6
  export const InProgressIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M9 16.5C7.9625 16.5 6.9875 16.3031 6.075 15.9094C5.1625 15.5156 4.36875 14.9812 3.69375 14.3062C3.01875 13.6312 2.48437 12.8375 2.09062 11.925C1.69687 11.0125 1.5 10.0375 1.5 9C1.5 7.9625 1.69687 6.9875 2.09062 6.075C2.48437 5.1625 3.01875 4.36875 3.69375 3.69375C4.36875 3.01875 5.1625 2.48437 6.075 2.09062C6.9875 1.69687 7.9625 1.5 9 1.5C10.0375 1.5 11.0125 1.69687 11.925 2.09062C12.8375 2.48437 13.6312 3.01875 14.3062 3.69375C14.9812 4.36875 15.5156 5.1625 15.9094 6.075C16.3031 6.9875 16.5 7.9625 16.5 9C16.5 10.0375 16.3031 11.0125 15.9094 11.925C15.5156 12.8375 14.9812 13.6312 14.3062 14.3062C13.6312 14.9812 12.8375 15.5156 11.925 15.9094C11.0125 16.3031 10.0375 16.5 9 16.5ZM9 15C9.8 15 10.5687 14.85 11.3062 14.55C12.0437 14.25 12.6937 13.8187 13.2562 13.2562L9 9V3C7.325 3 5.90625 3.58125 4.74375 4.74375C3.58125 5.90625 3 7.325 3 9C3 10.675 3.58125 12.0937 4.74375 13.2562C5.90625 14.4187 7.325 15 9 15Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M9 16.5C7.9625 16.5 6.9875 16.3031 6.075 15.9094C5.1625 15.5156 4.36875 14.9812 3.69375 14.3062C3.01875 13.6312 2.48437 12.8375 2.09062 11.925C1.69687 11.0125 1.5 10.0375 1.5 9C1.5 7.9625 1.69687 6.9875 2.09062 6.075C2.48437 5.1625 3.01875 4.36875 3.69375 3.69375C4.36875 3.01875 5.1625 2.48437 6.075 2.09062C6.9875 1.69687 7.9625 1.5 9 1.5C10.0375 1.5 11.0125 1.69687 11.925 2.09062C12.8375 2.48437 13.6312 3.01875 14.3062 3.69375C14.9812 4.36875 15.5156 5.1625 15.9094 6.075C16.3031 6.9875 16.5 7.9625 16.5 9C16.5 10.0375 16.3031 11.0125 15.9094 11.925C15.5156 12.8375 14.9812 13.6312 14.3062 14.3062C13.6312 14.9812 12.8375 15.5156 11.925 15.9094C11.0125 16.3031 10.0375 16.5 9 16.5ZM9 15C9.8 15 10.5687 14.85 11.3062 14.55C12.0437 14.25 12.6937 13.8187 13.2562 13.2562L9 9V3C7.325 3 5.90625 3.58125 4.74375 4.74375C3.58125 5.90625 3 7.325 3 9C3 10.675 3.58125 12.0937 4.74375 13.2562C5.90625 14.4187 7.325 15 9 15Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom indeterminate icon.
@@ -1,10 +1,8 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom indeterminate icon.
5
5
  */
6
6
  export const IndeterminateIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M0 4C0 1.79086 1.79086 0 4 0H14C16.2091 0 18 1.79086 18 4V14C18 16.2091 16.2091 18 14 18H4C1.79086 18 0 16.2091 0 14V4Z", fill: "currentColor" }),
9
- React.createElement("rect", { x: "5", y: "8", width: "8", height: "2", rx: "1", fill: "white" })));
7
+ return (_jsxs(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: [_jsx("path", { d: "M0 4C0 1.79086 1.79086 0 4 0H14C16.2091 0 18 1.79086 18 4V14C18 16.2091 16.2091 18 14 18H4C1.79086 18 0 16.2091 0 14V4Z", fill: "currentColor" }), _jsx("rect", { x: "5", y: "8", width: "8", height: "2", rx: "1", fill: "white" })] }));
10
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom info icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom info icon.
5
5
  */
6
6
  export const InfoIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M8.99994 12.75C9.21234 12.75 9.39684 12.6717 9.55344 12.5151C9.70944 12.3591 9.78744 12.1749 9.78744 11.9625V9.0186C9.78744 8.8062 9.70944 8.625 9.55344 8.475C9.39684 8.325 9.21234 8.25 8.99994 8.25C8.78754 8.25 8.60304 8.328 8.44644 8.484C8.29044 8.6406 8.21244 8.8251 8.21244 9.0375V11.9805C8.21244 12.1935 8.29044 12.375 8.44644 12.525C8.60304 12.675 8.78754 12.75 8.99994 12.75ZM8.99994 6.7308C9.21234 6.7308 9.39684 6.6528 9.55344 6.4968C9.70944 6.3402 9.78744 6.1557 9.78744 5.9433C9.78744 5.7309 9.70944 5.5467 9.55344 5.3907C9.39684 5.2341 9.21234 5.1558 8.99994 5.1558C8.78754 5.1558 8.60304 5.2341 8.44644 5.3907C8.29044 5.5467 8.21244 5.7309 8.21244 5.9433C8.21244 6.1557 8.29044 6.3402 8.44644 6.4968C8.60304 6.6528 8.78754 6.7308 8.99994 6.7308ZM8.99994 16.4994C7.96254 16.4994 6.98754 16.3026 6.07494 15.909C5.16234 15.5154 4.36854 14.9811 3.69354 14.3061C3.01854 13.6311 2.48424 12.8373 2.09064 11.9247C1.69704 11.0121 1.50024 10.0371 1.50024 8.9997C1.50024 7.9623 1.69704 6.9873 2.09064 6.0747C2.48424 5.1621 3.01854 4.3683 3.69354 3.6933C4.36854 3.0183 5.16234 2.484 6.07494 2.0904C6.98754 1.6968 7.96254 1.5 8.99994 1.5C10.0373 1.5 11.0123 1.6968 11.9249 2.0904C12.8375 2.484 13.6313 3.0183 14.3063 3.6933C14.9813 4.3683 15.5156 5.1621 15.9092 6.0747C16.3028 6.9873 16.4996 7.9623 16.4996 8.9997C16.4996 10.0371 16.3028 11.0121 15.9092 11.9247C15.5156 12.8373 14.9813 13.6311 14.3063 14.3061C13.6313 14.9811 12.8375 15.5154 11.9249 15.909C11.0123 16.3026 10.0373 16.4994 8.99994 16.4994Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M8.99994 12.75C9.21234 12.75 9.39684 12.6717 9.55344 12.5151C9.70944 12.3591 9.78744 12.1749 9.78744 11.9625V9.0186C9.78744 8.8062 9.70944 8.625 9.55344 8.475C9.39684 8.325 9.21234 8.25 8.99994 8.25C8.78754 8.25 8.60304 8.328 8.44644 8.484C8.29044 8.6406 8.21244 8.8251 8.21244 9.0375V11.9805C8.21244 12.1935 8.29044 12.375 8.44644 12.525C8.60304 12.675 8.78754 12.75 8.99994 12.75ZM8.99994 6.7308C9.21234 6.7308 9.39684 6.6528 9.55344 6.4968C9.70944 6.3402 9.78744 6.1557 9.78744 5.9433C9.78744 5.7309 9.70944 5.5467 9.55344 5.3907C9.39684 5.2341 9.21234 5.1558 8.99994 5.1558C8.78754 5.1558 8.60304 5.2341 8.44644 5.3907C8.29044 5.5467 8.21244 5.7309 8.21244 5.9433C8.21244 6.1557 8.29044 6.3402 8.44644 6.4968C8.60304 6.6528 8.78754 6.7308 8.99994 6.7308ZM8.99994 16.4994C7.96254 16.4994 6.98754 16.3026 6.07494 15.909C5.16234 15.5154 4.36854 14.9811 3.69354 14.3061C3.01854 13.6311 2.48424 12.8373 2.09064 11.9247C1.69704 11.0121 1.50024 10.0371 1.50024 8.9997C1.50024 7.9623 1.69704 6.9873 2.09064 6.0747C2.48424 5.1621 3.01854 4.3683 3.69354 3.6933C4.36854 3.0183 5.16234 2.484 6.07494 2.0904C6.98754 1.6968 7.96254 1.5 8.99994 1.5C10.0373 1.5 11.0123 1.6968 11.9249 2.0904C12.8375 2.484 13.6313 3.0183 14.3063 3.6933C14.9813 4.3683 15.5156 5.1621 15.9092 6.0747C16.3028 6.9873 16.4996 7.9623 16.4996 8.9997C16.4996 10.0371 16.3028 11.0121 15.9092 11.9247C15.5156 12.8373 14.9813 13.6311 14.3063 14.3061C13.6313 14.9811 12.8375 15.5154 11.9249 15.909C11.0123 16.3026 10.0373 16.4994 8.99994 16.4994Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom inventory icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom inventory icon.
5
5
  */
6
6
  export const InventoryIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M3.82494 16.4994C3.38754 16.4994 3.01554 16.3494 2.70894 16.0494C2.40294 15.7494 2.24994 15.3807 2.24994 14.9433V6.6183C2.03754 6.4809 1.85934 6.2997 1.71534 6.0747C1.57194 5.8497 1.50024 5.5935 1.50024 5.3061V3.075C1.50024 2.6376 1.65324 2.2656 1.95924 1.959C2.26584 1.653 2.63784 1.5 3.07524 1.5H14.9246C15.362 1.5 15.734 1.653 16.0406 1.959C16.3466 2.2656 16.4996 2.6376 16.4996 3.075V5.3061C16.4996 5.5935 16.4309 5.8497 16.2935 6.0747C16.1561 6.2997 15.9812 6.4809 15.7688 6.6183V14.9433C15.7688 15.3807 15.6155 15.7494 15.3089 16.0494C15.0029 16.3494 14.6312 16.4994 14.1938 16.4994H3.82494ZM3.82494 6.8811V14.9244H14.1938V6.8811H3.82494ZM14.9246 5.3061V3.075H3.07524V5.3061H14.9246ZM7.51854 10.6305H10.4813C10.6937 10.6305 10.8779 10.5525 11.0339 10.3965C11.1905 10.2405 11.2688 10.0563 11.2688 9.8439C11.2688 9.6309 11.1905 9.4464 11.0339 9.2904C10.8779 9.1338 10.6937 9.0555 10.4813 9.0555H7.51854C7.30614 9.0555 7.12194 9.1338 6.96594 9.2904C6.80934 9.4464 6.73104 9.6309 6.73104 9.8439C6.73104 10.0563 6.80934 10.2405 6.96594 10.3965C7.12194 10.5525 7.30614 10.6305 7.51854 10.6305Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M3.82494 16.4994C3.38754 16.4994 3.01554 16.3494 2.70894 16.0494C2.40294 15.7494 2.24994 15.3807 2.24994 14.9433V6.6183C2.03754 6.4809 1.85934 6.2997 1.71534 6.0747C1.57194 5.8497 1.50024 5.5935 1.50024 5.3061V3.075C1.50024 2.6376 1.65324 2.2656 1.95924 1.959C2.26584 1.653 2.63784 1.5 3.07524 1.5H14.9246C15.362 1.5 15.734 1.653 16.0406 1.959C16.3466 2.2656 16.4996 2.6376 16.4996 3.075V5.3061C16.4996 5.5935 16.4309 5.8497 16.2935 6.0747C16.1561 6.2997 15.9812 6.4809 15.7688 6.6183V14.9433C15.7688 15.3807 15.6155 15.7494 15.3089 16.0494C15.0029 16.3494 14.6312 16.4994 14.1938 16.4994H3.82494ZM3.82494 6.8811V14.9244H14.1938V6.8811H3.82494ZM14.9246 5.3061V3.075H3.07524V5.3061H14.9246ZM7.51854 10.6305H10.4813C10.6937 10.6305 10.8779 10.5525 11.0339 10.3965C11.1905 10.2405 11.2688 10.0563 11.2688 9.8439C11.2688 9.6309 11.1905 9.4464 11.0339 9.2904C10.8779 9.1338 10.6937 9.0555 10.4813 9.0555H7.51854C7.30614 9.0555 7.12194 9.1338 6.96594 9.2904C6.80934 9.4464 6.73104 9.6309 6.73104 9.8439C6.73104 10.0563 6.80934 10.2405 6.96594 10.3965C7.12194 10.5525 7.30614 10.6305 7.51854 10.6305Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom LinkedIn icon (socials).
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom LinkedIn icon (socials).
5
5
  */
6
6
  export const LinkedInIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M13.9111 13.9117H11.8441V10.6747C11.8441 9.90278 11.8304 8.9091 10.7691 8.9091C9.69257 8.9091 9.52785 9.75012 9.52785 10.6185V13.9115H7.46089V7.25484H9.44517V8.16454H9.47295C9.67153 7.825 9.95848 7.54567 10.3032 7.35632C10.648 7.16696 11.0377 7.07467 11.4307 7.08926C13.5257 7.08926 13.912 8.46727 13.912 10.26L13.9111 13.9117ZM5.12868 6.34491C4.89145 6.34496 4.65952 6.27465 4.46224 6.14288C4.26497 6.01111 4.11121 5.8238 4.02038 5.60463C3.92956 5.38546 3.90575 5.14428 3.95199 4.91159C3.99823 4.6789 4.11244 4.46514 4.28016 4.29736C4.44788 4.12957 4.66159 4.01529 4.89425 3.96896C5.12692 3.92264 5.3681 3.94635 5.58729 4.0371C5.80648 4.12785 5.99384 4.28156 6.12568 4.4788C6.25751 4.67603 6.32791 4.90794 6.32795 5.14518C6.32798 5.3027 6.29697 5.45869 6.23672 5.60423C6.17647 5.74978 6.08815 5.88202 5.97679 5.99343C5.86542 6.10484 5.7332 6.19322 5.58768 6.25352C5.44217 6.31383 5.2862 6.34489 5.12868 6.34491ZM6.16216 13.9117H4.09305V7.25484H6.16216V13.9117ZM14.9415 2.02634H3.05441C2.78461 2.0233 2.52462 2.1275 2.3316 2.31604C2.13858 2.50459 2.02832 2.76205 2.02502 3.03186V14.9687C2.0282 15.2387 2.1384 15.4963 2.33141 15.685C2.52443 15.8738 2.78447 15.9782 3.05441 15.9753H14.9415C15.212 15.9787 15.4728 15.8746 15.6666 15.6859C15.8603 15.4971 15.9713 15.2392 15.975 14.9687V3.031C15.9712 2.76066 15.8602 2.5029 15.6664 2.31436C15.4726 2.12581 15.2119 2.02191 14.9415 2.02548", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M13.9111 13.9117H11.8441V10.6747C11.8441 9.90278 11.8304 8.9091 10.7691 8.9091C9.69257 8.9091 9.52785 9.75012 9.52785 10.6185V13.9115H7.46089V7.25484H9.44517V8.16454H9.47295C9.67153 7.825 9.95848 7.54567 10.3032 7.35632C10.648 7.16696 11.0377 7.07467 11.4307 7.08926C13.5257 7.08926 13.912 8.46727 13.912 10.26L13.9111 13.9117ZM5.12868 6.34491C4.89145 6.34496 4.65952 6.27465 4.46224 6.14288C4.26497 6.01111 4.11121 5.8238 4.02038 5.60463C3.92956 5.38546 3.90575 5.14428 3.95199 4.91159C3.99823 4.6789 4.11244 4.46514 4.28016 4.29736C4.44788 4.12957 4.66159 4.01529 4.89425 3.96896C5.12692 3.92264 5.3681 3.94635 5.58729 4.0371C5.80648 4.12785 5.99384 4.28156 6.12568 4.4788C6.25751 4.67603 6.32791 4.90794 6.32795 5.14518C6.32798 5.3027 6.29697 5.45869 6.23672 5.60423C6.17647 5.74978 6.08815 5.88202 5.97679 5.99343C5.86542 6.10484 5.7332 6.19322 5.58768 6.25352C5.44217 6.31383 5.2862 6.34489 5.12868 6.34491ZM6.16216 13.9117H4.09305V7.25484H6.16216V13.9117ZM14.9415 2.02634H3.05441C2.78461 2.0233 2.52462 2.1275 2.3316 2.31604C2.13858 2.50459 2.02832 2.76205 2.02502 3.03186V14.9687C2.0282 15.2387 2.1384 15.4963 2.33141 15.685C2.52443 15.8738 2.78447 15.9782 3.05441 15.9753H14.9415C15.212 15.9787 15.4728 15.8746 15.6666 15.6859C15.8603 15.4971 15.9713 15.2392 15.975 14.9687V3.031C15.9712 2.76066 15.8602 2.5029 15.6664 2.31436C15.4726 2.12581 15.2119 2.02191 14.9415 2.02548", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom loading icon.
@@ -1,26 +1,8 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom loading icon.
5
5
  */
6
6
  export const LoadingIcon = ({ fontSize = "xsmall", viewBox = "0 0 105 105", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("circle", { cx: "12.5", cy: "12.5", r: "12.5" },
9
- React.createElement("animate", { attributeName: "fill-opacity", begin: "0s", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" })),
10
- React.createElement("circle", { cx: "12.5", cy: "52.5", r: "12.5", fillOpacity: ".5" },
11
- React.createElement("animate", { attributeName: "fill-opacity", begin: "100ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" })),
12
- React.createElement("circle", { cx: "52.5", cy: "12.5", r: "12.5" },
13
- React.createElement("animate", { attributeName: "fill-opacity", begin: "300ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" })),
14
- React.createElement("circle", { cx: "52.5", cy: "52.5", r: "12.5" },
15
- React.createElement("animate", { attributeName: "fill-opacity", begin: "600ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" })),
16
- React.createElement("circle", { cx: "92.5", cy: "12.5", r: "12.5" },
17
- React.createElement("animate", { attributeName: "fill-opacity", begin: "800ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" })),
18
- React.createElement("circle", { cx: "92.5", cy: "52.5", r: "12.5" },
19
- React.createElement("animate", { attributeName: "fill-opacity", begin: "400ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" })),
20
- React.createElement("circle", { cx: "12.5", cy: "92.5", r: "12.5" },
21
- React.createElement("animate", { attributeName: "fill-opacity", begin: "700ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" })),
22
- React.createElement("circle", { cx: "52.5", cy: "92.5", r: "12.5" },
23
- React.createElement("animate", { attributeName: "fill-opacity", begin: "500ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" })),
24
- React.createElement("circle", { cx: "92.5", cy: "92.5", r: "12.5" },
25
- React.createElement("animate", { attributeName: "fill-opacity", begin: "200ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" }))));
7
+ return (_jsxs(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: [_jsx("circle", { cx: "12.5", cy: "12.5", r: "12.5", children: _jsx("animate", { attributeName: "fill-opacity", begin: "0s", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" }) }), _jsx("circle", { cx: "12.5", cy: "52.5", r: "12.5", fillOpacity: ".5", children: _jsx("animate", { attributeName: "fill-opacity", begin: "100ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" }) }), _jsx("circle", { cx: "52.5", cy: "12.5", r: "12.5", children: _jsx("animate", { attributeName: "fill-opacity", begin: "300ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" }) }), _jsx("circle", { cx: "52.5", cy: "52.5", r: "12.5", children: _jsx("animate", { attributeName: "fill-opacity", begin: "600ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" }) }), _jsx("circle", { cx: "92.5", cy: "12.5", r: "12.5", children: _jsx("animate", { attributeName: "fill-opacity", begin: "800ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" }) }), _jsx("circle", { cx: "92.5", cy: "52.5", r: "12.5", children: _jsx("animate", { attributeName: "fill-opacity", begin: "400ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" }) }), _jsx("circle", { cx: "12.5", cy: "92.5", r: "12.5", children: _jsx("animate", { attributeName: "fill-opacity", begin: "700ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" }) }), _jsx("circle", { cx: "52.5", cy: "92.5", r: "12.5", children: _jsx("animate", { attributeName: "fill-opacity", begin: "500ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" }) }), _jsx("circle", { cx: "92.5", cy: "92.5", r: "12.5", children: _jsx("animate", { attributeName: "fill-opacity", begin: "200ms", dur: "1s", values: "1;.2;1", calcMode: "linear", repeatCount: "indefinite" }) })] }));
26
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom open in new icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom open in new icon.
5
5
  */
6
6
  export const OpenInNewIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M3.75 15.75C3.3375 15.75 2.98438 15.6031 2.69063 15.3094C2.39688 15.0156 2.25 14.6625 2.25 14.25V3.75C2.25 3.3375 2.39688 2.98438 2.69063 2.69063C2.98438 2.39688 3.3375 2.25 3.75 2.25H8.25C8.4625 2.25 8.64063 2.32187 8.78438 2.46562C8.92813 2.60937 9 2.7875 9 3C9 3.2125 8.92813 3.39062 8.78438 3.53437C8.64063 3.67812 8.4625 3.75 8.25 3.75H3.75V14.25H14.25V9.75C14.25 9.5375 14.3219 9.35938 14.4656 9.21563C14.6094 9.07188 14.7875 9 15 9C15.2125 9 15.3906 9.07188 15.5344 9.21563C15.6781 9.35938 15.75 9.5375 15.75 9.75V14.25C15.75 14.6625 15.6031 15.0156 15.3094 15.3094C15.0156 15.6031 14.6625 15.75 14.25 15.75H3.75ZM6.75 11.25C6.6125 11.1125 6.54375 10.9375 6.54375 10.725C6.54375 10.5125 6.6125 10.3375 6.75 10.2L13.2 3.75H11.25C11.0375 3.75 10.8594 3.67812 10.7156 3.53437C10.5719 3.39062 10.5 3.2125 10.5 3C10.5 2.7875 10.5719 2.60937 10.7156 2.46562C10.8594 2.32187 11.0375 2.25 11.25 2.25H15C15.2125 2.25 15.3906 2.32187 15.5344 2.46562C15.6781 2.60937 15.75 2.7875 15.75 3V6.75C15.75 6.9625 15.6781 7.14063 15.5344 7.28438C15.3906 7.42813 15.2125 7.5 15 7.5C14.7875 7.5 14.6094 7.42813 14.4656 7.28438C14.3219 7.14063 14.25 6.9625 14.25 6.75V4.8L7.78125 11.2688C7.64375 11.4063 7.475 11.475 7.275 11.475C7.075 11.475 6.9 11.4 6.75 11.25Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M3.75 15.75C3.3375 15.75 2.98438 15.6031 2.69063 15.3094C2.39688 15.0156 2.25 14.6625 2.25 14.25V3.75C2.25 3.3375 2.39688 2.98438 2.69063 2.69063C2.98438 2.39688 3.3375 2.25 3.75 2.25H8.25C8.4625 2.25 8.64063 2.32187 8.78438 2.46562C8.92813 2.60937 9 2.7875 9 3C9 3.2125 8.92813 3.39062 8.78438 3.53437C8.64063 3.67812 8.4625 3.75 8.25 3.75H3.75V14.25H14.25V9.75C14.25 9.5375 14.3219 9.35938 14.4656 9.21563C14.6094 9.07188 14.7875 9 15 9C15.2125 9 15.3906 9.07188 15.5344 9.21563C15.6781 9.35938 15.75 9.5375 15.75 9.75V14.25C15.75 14.6625 15.6031 15.0156 15.3094 15.3094C15.0156 15.6031 14.6625 15.75 14.25 15.75H3.75ZM6.75 11.25C6.6125 11.1125 6.54375 10.9375 6.54375 10.725C6.54375 10.5125 6.6125 10.3375 6.75 10.2L13.2 3.75H11.25C11.0375 3.75 10.8594 3.67812 10.7156 3.53437C10.5719 3.39062 10.5 3.2125 10.5 3C10.5 2.7875 10.5719 2.60937 10.7156 2.46562C10.8594 2.32187 11.0375 2.25 11.25 2.25H15C15.2125 2.25 15.3906 2.32187 15.5344 2.46562C15.6781 2.60937 15.75 2.7875 15.75 3V6.75C15.75 6.9625 15.6781 7.14063 15.5344 7.28438C15.3906 7.42813 15.2125 7.5 15 7.5C14.7875 7.5 14.6094 7.42813 14.4656 7.28438C14.3219 7.14063 14.25 6.9625 14.25 6.75V4.8L7.78125 11.2688C7.64375 11.4063 7.475 11.475 7.275 11.475C7.075 11.475 6.9 11.4 6.75 11.25Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom radio checked icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom radio checked icon.
5
5
  */
6
6
  export const RadioCheckedIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9 18C13.9706 18 18 13.9707 18 9C18 4.0293 13.9706 0 9 0C4.02942 0 0 4.0293 0 9C0 13.9707 4.02942 18 9 18ZM9 13C11.2091 13 13 11.209 13 9C13 6.79102 11.2091 5 9 5C6.79089 5 5 6.79102 5 9C5 11.209 6.79089 13 9 13Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9 18C13.9706 18 18 13.9707 18 9C18 4.0293 13.9706 0 9 0C4.02942 0 0 4.0293 0 9C0 13.9707 4.02942 18 9 18ZM9 13C11.2091 13 13 11.209 13 9C13 6.79102 11.2091 5 9 5C6.79089 5 5 6.79102 5 9C5 11.209 6.79089 13 9 13Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom radio unchecked icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom radio unchecked icon.
5
5
  */
6
6
  export const RadioUncheckedIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("rect", { fill: "transparent", height: "17", rx: "8.5", stroke: "currentColor", x: "0.5", y: "0.5", width: "17" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("rect", { fill: "transparent", height: "17", rx: "8.5", stroke: "currentColor", x: "0.5", y: "0.5", width: "17" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom remove icon.
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom remove icon.
5
5
  */
6
6
  export const RemoveIcon = ({ fontSize = "xsmall", viewBox = "0 0 18 18", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M4.5375 9.74981C4.3251 9.74981 4.1406 9.67181 3.984 9.51581C3.828 9.35921 3.75 9.17471 3.75 8.96231C3.75 8.7499 3.828 8.5657 3.984 8.4097C4.1406 8.2531 4.3251 8.1748 4.5375 8.1748H13.4619C13.6743 8.1748 13.8588 8.2531 14.0154 8.4097C14.1714 8.5657 14.2494 8.7499 14.2494 8.96231C14.2494 9.17471 14.1714 9.35921 14.0154 9.51581C13.8588 9.67181 13.6743 9.74981 13.4619 9.74981H4.5375Z", fill: "#currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M4.5375 9.74981C4.3251 9.74981 4.1406 9.67181 3.984 9.51581C3.828 9.35921 3.75 9.17471 3.75 8.96231C3.75 8.7499 3.828 8.5657 3.984 8.4097C4.1406 8.2531 4.3251 8.1748 4.5375 8.1748H13.4619C13.6743 8.1748 13.8588 8.2531 14.0154 8.4097C14.1714 8.5657 14.2494 8.7499 14.2494 8.96231C14.2494 9.17471 14.1714 9.35921 14.0154 9.51581C13.8588 9.67181 13.6743 9.74981 13.4619 9.74981H4.5375Z", fill: "#currentColor" }) }));
9
8
  };
@@ -1,4 +1,5 @@
1
1
  import { SvgIconProps } from "@mui/material";
2
+ import { JSX } from "react";
2
3
  /**
3
4
  * Custom search icon.
4
5
  */
@@ -1,9 +1,8 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
1
2
  import { SvgIcon } from "@mui/material";
2
- import React from "react";
3
3
  /**
4
4
  * Custom search icon.
5
5
  */
6
6
  export const SearchIcon = ({ fontSize = "xsmall", viewBox = "0 0 20 20", ...props /* Spread props to allow for Mui SvgIconProps specific prop overrides e.g. "htmlColor". */ }) => {
7
- return (React.createElement(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props },
8
- React.createElement("path", { d: "M15.8599 17.0728L11.2969 12.5098C10.8389 12.8571 10.3422 13.1178 9.80688 13.2918C9.27221 13.4651 8.71321 13.5518 8.12988 13.5518C6.61654 13.5518 5.32854 13.0274 4.26587 11.9788C3.20321 10.9301 2.67188 9.64876 2.67188 8.13476C2.67188 6.62142 3.20321 5.33342 4.26587 4.27076C5.32854 3.20809 6.61654 2.67676 8.12988 2.67676C9.64388 2.67676 10.9252 3.20809 11.9739 4.27076C13.0225 5.33342 13.5469 6.62142 13.5469 8.13476C13.5469 8.71809 13.4635 9.27709 13.2969 9.81176C13.1302 10.3471 12.8662 10.8368 12.5049 11.2808L17.0889 15.8848C17.2555 16.0514 17.3352 16.2494 17.3279 16.4788C17.3212 16.7081 17.2345 16.9061 17.0679 17.0728C16.9012 17.2394 16.6999 17.3228 16.4639 17.3228C16.2279 17.3228 16.0265 17.2394 15.8599 17.0728ZM8.12988 11.8018C9.14388 11.8018 10.0085 11.4441 10.7239 10.7288C11.4392 10.0134 11.7969 9.14876 11.7969 8.13476C11.7969 7.10742 11.4425 6.23242 10.7339 5.50976C10.0259 4.78776 9.15788 4.42676 8.12988 4.42676C7.10254 4.42676 6.22754 4.78776 5.50488 5.50976C4.78288 6.23242 4.42188 7.10742 4.42188 8.13476C4.42188 9.16276 4.78288 10.0308 5.50488 10.7388C6.22754 11.4474 7.10254 11.8018 8.12988 11.8018Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M15.8599 17.0728L11.2969 12.5098C10.8389 12.8571 10.3422 13.1178 9.80688 13.2918C9.27221 13.4651 8.71321 13.5518 8.12988 13.5518C6.61654 13.5518 5.32854 13.0274 4.26587 11.9788C3.20321 10.9301 2.67188 9.64876 2.67188 8.13476C2.67188 6.62142 3.20321 5.33342 4.26587 4.27076C5.32854 3.20809 6.61654 2.67676 8.12988 2.67676C9.64388 2.67676 10.9252 3.20809 11.9739 4.27076C13.0225 5.33342 13.5469 6.62142 13.5469 8.13476C13.5469 8.71809 13.4635 9.27709 13.2969 9.81176C13.1302 10.3471 12.8662 10.8368 12.5049 11.2808L17.0889 15.8848C17.2555 16.0514 17.3352 16.2494 17.3279 16.4788C17.3212 16.7081 17.2345 16.9061 17.0679 17.0728C16.9012 17.2394 16.6999 17.3228 16.4639 17.3228C16.2279 17.3228 16.0265 17.2394 15.8599 17.0728ZM8.12988 11.8018C9.14388 11.8018 10.0085 11.4441 10.7239 10.7288C11.4392 10.0134 11.7969 9.14876 11.7969 8.13476C11.7969 7.10742 11.4425 6.23242 10.7339 5.50976C10.0259 4.78776 9.15788 4.42676 8.12988 4.42676C7.10254 4.42676 6.22754 4.78776 5.50488 5.50976C4.78288 6.23242 4.42188 7.10742 4.42188 8.13476C4.42188 9.16276 4.78288 10.0308 5.50488 10.7388C6.22754 11.4474 7.10254 11.8018 8.12988 11.8018Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,3 +1,4 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  /**
3
4
  * Custom search off icon.