@databiosphere/findable-ui 47.0.2 → 48.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1976) hide show
  1. package/.github/workflows/release-please.yml +22 -0
  2. package/.husky/pre-commit +7 -0
  3. package/.release-please-manifest.json +1 -1
  4. package/.storybook/main.ts +6 -48
  5. package/CHANGELOG.md +30 -0
  6. package/CLAUDE.md +214 -0
  7. package/backend/README.md +64 -0
  8. package/backend/__init__.py +0 -0
  9. package/backend/controllers/__init__.py +0 -0
  10. package/backend/controllers/facets_controller.py +16 -0
  11. package/backend/controllers/models.py +11 -0
  12. package/backend/main.py +9 -0
  13. package/backend/requirements.txt +4 -0
  14. package/backend/services/__init__.py +0 -0
  15. package/backend/services/facets_service.py +68 -0
  16. package/backend/services/models.py +43 -0
  17. package/docs/TRUSTED_PUBLISHING.md +0 -1
  18. package/jest.config.js +0 -4
  19. package/lib/components/Authentication/components/SessionController/components/GoogleSessionController/SessionController.d.ts +1 -0
  20. package/lib/components/Authentication/components/SessionController/components/GoogleSessionController/SessionController.js +3 -2
  21. package/lib/components/Authentication/components/SessionController/components/NextSessionController/SessionController.d.ts +1 -0
  22. package/lib/components/Authentication/components/SessionController/components/NextSessionController/SessionController.js +3 -2
  23. package/lib/components/ComponentCreator/ComponentCreator.d.ts +1 -0
  24. package/lib/components/ComponentCreator/ComponentCreator.js +23 -20
  25. package/lib/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.d.ts +1 -1
  26. package/lib/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.js +2 -2
  27. package/lib/components/ComponentCreator/components/RenderComponent/renderComponent.d.ts +1 -1
  28. package/lib/components/ComponentCreator/components/RenderComponent/renderComponent.js +2 -2
  29. package/lib/components/DataDictionary/components/Description/description.d.ts +1 -0
  30. package/lib/components/DataDictionary/components/Description/description.js +2 -3
  31. package/lib/components/DataDictionary/components/Description/description.styles.d.ts +1 -3
  32. package/lib/components/DataDictionary/components/Description/description.styles.js +3 -1
  33. package/lib/components/DataDictionary/components/Entities/entities.d.ts +1 -0
  34. package/lib/components/DataDictionary/components/Entities/entities.js +3 -3
  35. package/lib/components/DataDictionary/components/Entity/entity.d.ts +1 -0
  36. package/lib/components/DataDictionary/components/Entity/entity.js +2 -9
  37. package/lib/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.d.ts +1 -0
  38. package/lib/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.js +2 -4
  39. package/lib/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.styles.d.ts +2 -4
  40. package/lib/components/DataDictionary/components/Filters/components/ColumnFilters/columnFilters.d.ts +1 -0
  41. package/lib/components/DataDictionary/components/Filters/components/ColumnFilters/columnFilters.js +4 -4
  42. package/lib/components/DataDictionary/components/Filters/filters.d.ts +1 -0
  43. package/lib/components/DataDictionary/components/Filters/filters.js +2 -4
  44. package/lib/components/DataDictionary/components/Filters/filters.styles.d.ts +2 -4
  45. package/lib/components/DataDictionary/components/Filters/stories/constants.js +1 -1
  46. package/lib/components/DataDictionary/components/Filters/stories/filters.stories.d.ts +1 -1
  47. package/lib/components/DataDictionary/components/Filters/stories/filters.stories.js +5 -6
  48. package/lib/components/DataDictionary/components/Layout/components/EntitiesLayout/entitiesLayout.d.ts +1 -2
  49. package/lib/components/DataDictionary/components/Layout/components/EntitiesLayout/entitiesLayout.js +3 -2
  50. package/lib/components/DataDictionary/components/Layout/components/FiltersLayout/filtersLayout.d.ts +1 -2
  51. package/lib/components/DataDictionary/components/Layout/components/FiltersLayout/filtersLayout.js +3 -2
  52. package/lib/components/DataDictionary/components/Layout/components/OutlineLayout/outlineLayout.d.ts +1 -0
  53. package/lib/components/DataDictionary/components/Layout/components/OutlineLayout/outlineLayout.js +2 -3
  54. package/lib/components/DataDictionary/components/Layout/components/TitleLayout/titleLayout.d.ts +1 -0
  55. package/lib/components/DataDictionary/components/Layout/components/TitleLayout/titleLayout.js +2 -2
  56. package/lib/components/DataDictionary/components/Outline/components/ContentsTab/contentsTab.d.ts +1 -0
  57. package/lib/components/DataDictionary/components/Outline/components/ContentsTab/contentsTab.js +2 -2
  58. package/lib/components/DataDictionary/components/Outline/outline.d.ts +1 -0
  59. package/lib/components/DataDictionary/components/Outline/outline.js +2 -2
  60. package/lib/components/DataDictionary/components/Table/components/BasicCell/basicCell.d.ts +1 -1
  61. package/lib/components/DataDictionary/components/Table/components/BasicCell/basicCell.js +2 -2
  62. package/lib/components/DataDictionary/components/Table/table.d.ts +1 -0
  63. package/lib/components/DataDictionary/components/Table/table.js +2 -6
  64. package/lib/components/DataDictionary/components/Table/table.styles.d.ts +1 -3
  65. package/lib/components/DataDictionary/components/Title/title.d.ts +1 -0
  66. package/lib/components/DataDictionary/components/Title/title.js +2 -2
  67. package/lib/components/DataDictionary/components/Title/title.styles.d.ts +1 -3
  68. package/lib/components/DataDictionary/components/Tooltip/components/Title/title.d.ts +1 -0
  69. package/lib/components/DataDictionary/components/Tooltip/components/Title/title.js +2 -4
  70. package/lib/components/DataDictionary/components/Tooltip/tooltip.d.ts +1 -0
  71. package/lib/components/DataDictionary/components/Tooltip/tooltip.js +2 -3
  72. package/lib/components/DataDictionary/dataDictionary.d.ts +1 -0
  73. package/lib/components/DataDictionary/dataDictionary.js +2 -14
  74. package/lib/components/DataDictionary/hooks/UseMeasureFilters/hook.js +1 -2
  75. package/lib/components/DataDictionary/hooks/UseMeasureFilters/types.d.ts +1 -1
  76. package/lib/components/Detail/components/AccessibilityBadge/accessibilityBadge.d.ts +1 -0
  77. package/lib/components/Detail/components/AccessibilityBadge/accessibilityBadge.js +2 -3
  78. package/lib/components/Detail/components/DetailViewTable/detailViewTable.d.ts +1 -1
  79. package/lib/components/Detail/components/DetailViewTable/detailViewTable.js +2 -5
  80. package/lib/components/Detail/components/Table/components/TableBody/tableBody.d.ts +1 -0
  81. package/lib/components/Detail/components/Table/components/TableBody/tableBody.js +2 -2
  82. package/lib/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.d.ts +1 -0
  83. package/lib/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.js +7 -7
  84. package/lib/components/Detail/components/Table/components/TableRows/tableRows.d.ts +1 -0
  85. package/lib/components/Detail/components/Table/components/TableRows/tableRows.js +11 -10
  86. package/lib/components/Detail/components/Table/stories/filter/filter.stories.d.ts +1 -1
  87. package/lib/components/Detail/components/Table/stories/table.stories.d.ts +1 -1
  88. package/lib/components/Detail/components/Table/table.d.ts +1 -0
  89. package/lib/components/Detail/components/Table/table.js +2 -5
  90. package/lib/components/Detail/detail.d.ts +1 -1
  91. package/lib/components/Detail/detail.js +2 -2
  92. package/lib/components/Detail/detail.stories.d.ts +2 -2
  93. package/lib/components/Detail/detail.stories.js +4 -13
  94. package/lib/components/Error/error.d.ts +1 -0
  95. package/lib/components/Error/error.js +3 -20
  96. package/lib/components/Error/error.stories.d.ts +1 -1
  97. package/lib/components/ErrorBoundary/errorBoundary.d.ts +3 -3
  98. package/lib/components/ErrorBoundary/errorBoundary.js +2 -2
  99. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.d.ts +1 -1
  100. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.js +3 -4
  101. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.d.ts +1 -1
  102. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.js +2 -9
  103. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.d.ts +1 -1
  104. package/lib/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.js +2 -6
  105. package/lib/components/Export/components/DownloadCurlCommand/downloadCurlCommand.d.ts +1 -1
  106. package/lib/components/Export/components/DownloadCurlCommand/downloadCurlCommand.js +3 -2
  107. package/lib/components/Export/components/ExportForm/components/ExportButton/exportButton.d.ts +1 -1
  108. package/lib/components/Export/components/ExportForm/components/ExportButton/exportButton.js +3 -6
  109. package/lib/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.d.ts +1 -1
  110. package/lib/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.js +2 -6
  111. package/lib/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.d.ts +1 -0
  112. package/lib/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.js +9 -30
  113. package/lib/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.d.ts +1 -0
  114. package/lib/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.js +2 -4
  115. package/lib/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.d.ts +1 -0
  116. package/lib/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.js +5 -13
  117. package/lib/components/Export/components/ExportForm/exportForm.d.ts +1 -1
  118. package/lib/components/Export/components/ExportForm/exportForm.js +3 -10
  119. package/lib/components/Export/components/ExportForm/exportForm.styles.d.ts +3 -7
  120. package/lib/components/Export/components/ExportMethod/exportMethod.d.ts +1 -1
  121. package/lib/components/Export/components/ExportMethod/exportMethod.js +2 -11
  122. package/lib/components/Export/components/ExportMethod/exportMethod.stories.d.ts +2 -2
  123. package/lib/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.d.ts +1 -0
  124. package/lib/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.js +3 -9
  125. package/lib/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.d.ts +1 -1
  126. package/lib/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.js +2 -7
  127. package/lib/components/Export/components/ExportSummary/exportSummary.d.ts +1 -1
  128. package/lib/components/Export/components/ExportSummary/exportSummary.js +2 -2
  129. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.d.ts +1 -1
  130. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.js +3 -4
  131. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.d.ts +1 -1
  132. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.js +2 -8
  133. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.d.ts +1 -1
  134. package/lib/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.js +2 -7
  135. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.d.ts +1 -1
  136. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.js +2 -2
  137. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.d.ts +1 -1
  138. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.js +2 -2
  139. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.d.ts +1 -1
  140. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.js +2 -2
  141. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.d.ts +1 -1
  142. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.js +4 -10
  143. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.d.ts +1 -0
  144. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.js +2 -11
  145. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.d.ts +1 -0
  146. package/lib/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.js +2 -10
  147. package/lib/components/Export/components/ExportToTerra/exportToTerra.d.ts +1 -1
  148. package/lib/components/Export/components/ExportToTerra/exportToTerra.js +2 -2
  149. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.d.ts +1 -0
  150. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.js +7 -22
  151. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.d.ts +1 -0
  152. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.js +7 -22
  153. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.d.ts +1 -0
  154. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.js +2 -4
  155. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.styles.d.ts +1 -3
  156. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.d.ts +1 -0
  157. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.js +3 -3
  158. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.d.ts +1 -1
  159. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.js +2 -8
  160. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.d.ts +1 -1
  161. package/lib/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.js +2 -8
  162. package/lib/components/Export/components/ManifestDownload/manifestDownload.d.ts +1 -1
  163. package/lib/components/Export/components/ManifestDownload/manifestDownload.js +2 -2
  164. package/lib/components/Export/export.styles.d.ts +1 -1
  165. package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.d.ts +1 -0
  166. package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.js +2 -2
  167. package/lib/components/Filter/components/ClearAllFilters/clearAllFilters.styles.d.ts +1 -3
  168. package/lib/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.d.ts +1 -2
  169. package/lib/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.js +3 -2
  170. package/lib/components/Filter/components/Filter/filter.d.ts +1 -1
  171. package/lib/components/Filter/components/Filter/filter.js +3 -7
  172. package/lib/components/Filter/components/Filter/stories/args.js +1 -1
  173. package/lib/components/Filter/components/Filter/stories/filter.stories.d.ts +1 -1
  174. package/lib/components/Filter/components/Filter/stories/filter.stories.js +2 -3
  175. package/lib/components/Filter/components/FilterCountChip/filterCountChip.d.ts +1 -0
  176. package/lib/components/Filter/components/FilterCountChip/filterCountChip.js +2 -2
  177. package/lib/components/Filter/components/FilterCountChip/filterCountChip.styles.d.ts +1 -3
  178. package/lib/components/Filter/components/FilterCountChip/stories/filterCountChip.stories.d.ts +1 -1
  179. package/lib/components/Filter/components/FilterLabel/filterLabel.d.ts +1 -1
  180. package/lib/components/Filter/components/FilterLabel/filterLabel.js +2 -3
  181. package/lib/components/Filter/components/FilterLabel/filterLabel.stories.d.ts +4 -4
  182. package/lib/components/Filter/components/FilterLabel/filterLabel.stories.js +2 -3
  183. package/lib/components/Filter/components/FilterLabel/filterLabel.styles.d.ts +1 -3
  184. package/lib/components/Filter/components/FilterList/filterList.styles.d.ts +3 -5
  185. package/lib/components/Filter/components/FilterMenu/filterMenu.d.ts +1 -0
  186. package/lib/components/Filter/components/FilterMenu/filterMenu.js +3 -7
  187. package/lib/components/Filter/components/FilterMenu/filterMenu.stories.d.ts +3 -2
  188. package/lib/components/Filter/components/FilterMenu/filterMenu.stories.js +2 -3
  189. package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.d.ts +1 -0
  190. package/lib/components/Filter/components/FilterMenuSearch/filterMenuSearch.js +2 -2
  191. package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.d.ts +1 -2
  192. package/lib/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.js +3 -5
  193. package/lib/components/Filter/components/FilterRange/filterRange.d.ts +1 -0
  194. package/lib/components/Filter/components/FilterRange/filterRange.js +17 -39
  195. package/lib/components/Filter/components/FilterRange/stories/args.js +1 -1
  196. package/lib/components/Filter/components/FilterRange/stories/filterRange.stories.d.ts +1 -1
  197. package/lib/components/Filter/components/FilterTag/filterTag.d.ts +1 -0
  198. package/lib/components/Filter/components/FilterTag/filterTag.js +3 -3
  199. package/lib/components/Filter/components/FilterTag/filterTag.styles.d.ts +1 -3
  200. package/lib/components/Filter/components/FilterTag/stories/args.js +2 -2
  201. package/lib/components/Filter/components/FilterTag/stories/filterTag.stories.d.ts +1 -1
  202. package/lib/components/Filter/components/FilterTag/stories/filterTag.stories.js +2 -3
  203. package/lib/components/Filter/components/FilterTags/filterTags.d.ts +1 -0
  204. package/lib/components/Filter/components/FilterTags/filterTags.js +2 -2
  205. package/lib/components/Filter/components/FilterTags/filterTags.stories.d.ts +3 -2
  206. package/lib/components/Filter/components/FilterTags/filterTags.stories.js +2 -3
  207. package/lib/components/Filter/components/Filters/filters.d.ts +1 -0
  208. package/lib/components/Filter/components/Filters/filters.js +4 -6
  209. package/lib/components/Filter/components/Filters/stories/args.js +1 -1
  210. package/lib/components/Filter/components/Filters/stories/filters.stories.d.ts +1 -1
  211. package/lib/components/Filter/components/Filters/stories/filters.stories.js +2 -3
  212. package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.d.ts +1 -0
  213. package/lib/components/Filter/components/HighlightedLabel/highlightedLabel.js +3 -3
  214. package/lib/components/Filter/components/SearchAllFilters/components/OutlinedInput/outlinedInput.d.ts +1 -0
  215. package/lib/components/Filter/components/SearchAllFilters/components/OutlinedInput/outlinedInput.js +2 -2
  216. package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeList/VariableSizeList.js +7 -8
  217. package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.d.ts +2 -2
  218. package/lib/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.js +7 -8
  219. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.d.ts +1 -0
  220. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.js +7 -7
  221. package/lib/components/Filter/components/SearchAllFilters/stories/args.js +1 -1
  222. package/lib/components/Filter/components/SearchAllFilters/stories/searchAllFilters.stories.d.ts +1 -1
  223. package/lib/components/Filter/components/SearchAllFilters/stories/searchAllFilters.stories.js +4 -5
  224. package/lib/components/Filter/components/VariableSizeList/VariableSizeList.d.ts +1 -0
  225. package/lib/components/Filter/components/VariableSizeList/VariableSizeList.js +5 -4
  226. package/lib/components/Filter/components/VariableSizeListItem/variableSizeListItem.d.ts +1 -1
  227. package/lib/components/Filter/components/VariableSizeListItem/variableSizeListItem.js +3 -4
  228. package/lib/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/columnFiltersAdapter.d.ts +1 -0
  229. package/lib/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/types.d.ts +1 -0
  230. package/lib/components/Filter/components/controls/Controls/components/FilterSort/filterSort.d.ts +1 -0
  231. package/lib/components/Filter/components/controls/Controls/components/FilterSort/filterSort.js +3 -13
  232. package/lib/components/Filter/components/controls/Controls/components/FilterSort/filterSort.styles.d.ts +1 -3
  233. package/lib/components/Filter/components/controls/Controls/components/FilterSort/stories/filterSort.stories.d.ts +1 -1
  234. package/lib/components/Filter/components/controls/Controls/controls.d.ts +1 -0
  235. package/lib/components/Filter/components/controls/Controls/controls.js +2 -5
  236. package/lib/components/Filter/components/controls/Controls/controls.styles.d.ts +2 -4
  237. package/lib/components/Filter/components/surfaces/drawer/Drawer/drawer.d.ts +1 -0
  238. package/lib/components/Filter/components/surfaces/drawer/Drawer/drawer.js +3 -7
  239. package/lib/components/Filter/components/surfaces/drawer/components/Button/button.d.ts +1 -0
  240. package/lib/components/Filter/components/surfaces/drawer/components/Button/button.js +2 -4
  241. package/lib/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.d.ts +1 -0
  242. package/lib/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.js +2 -4
  243. package/lib/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.styles.d.ts +1 -3
  244. package/lib/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.d.ts +1 -0
  245. package/lib/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.js +2 -3
  246. package/lib/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.styles.d.ts +1 -3
  247. package/lib/components/Filter/components/views/select/SelectListItem/selectListItem.d.ts +1 -2
  248. package/lib/components/Filter/components/views/select/SelectListItem/selectListItem.js +3 -4
  249. package/lib/components/Filter/components/views/select/components/Checkbox/checkbox.d.ts +1 -0
  250. package/lib/components/Filter/components/views/select/components/Checkbox/checkbox.js +2 -2
  251. package/lib/components/Filter/components/views/select/components/ListItemButton/listItemButton.d.ts +2 -5
  252. package/lib/components/Filter/components/views/select/components/ListItemButton/listItemButton.js +3 -2
  253. package/lib/components/Filter/components/views/select/components/ListItemButton/listItemButton.styles.d.ts +1 -3
  254. package/lib/components/Filter/components/views/select/components/ListItemText/components/Count/count.d.ts +1 -0
  255. package/lib/components/Filter/components/views/select/components/ListItemText/components/Count/count.js +2 -2
  256. package/lib/components/Filter/components/views/select/components/ListItemText/components/Term/term.d.ts +1 -0
  257. package/lib/components/Filter/components/views/select/components/ListItemText/components/Term/term.js +2 -2
  258. package/lib/components/Filter/components/views/select/components/ListItemText/listItemText.d.ts +1 -0
  259. package/lib/components/Filter/components/views/select/components/ListItemText/listItemText.js +4 -4
  260. package/lib/components/Head/head.d.ts +1 -0
  261. package/lib/components/Head/head.js +3 -11
  262. package/lib/components/Index/components/AzulFileDownload/azulFileDownload.d.ts +1 -0
  263. package/lib/components/Index/components/AzulFileDownload/azulFileDownload.js +3 -4
  264. package/lib/components/Index/components/AzulFileDownload/azulFileDownload.stories.d.ts +2 -2
  265. package/lib/components/Index/components/EntityView/components/controls/ActionButton/actionButton.d.ts +1 -0
  266. package/lib/components/Index/components/EntityView/components/controls/ActionButton/actionButton.js +3 -2
  267. package/lib/components/Index/components/EntityView/components/controls/ExportButton/exportButton.d.ts +1 -0
  268. package/lib/components/Index/components/EntityView/components/controls/ExportButton/exportButton.js +2 -4
  269. package/lib/components/Index/components/EntityView/components/controls/ExportButton/exportButton.styles.d.ts +1 -3
  270. package/lib/components/Index/components/EntityView/components/controls/FilterButton/filterButton.d.ts +1 -0
  271. package/lib/components/Index/components/EntityView/components/controls/FilterButton/filterButton.js +2 -5
  272. package/lib/components/Index/components/EntityView/components/controls/FilterButton/filterButton.styles.d.ts +1 -3
  273. package/lib/components/Index/components/EntityView/components/controls/ViewToggle/stories/viewToggle.stories.d.ts +1 -1
  274. package/lib/components/Index/components/EntityView/components/controls/ViewToggle/viewToggle.d.ts +1 -0
  275. package/lib/components/Index/components/EntityView/components/controls/ViewToggle/viewToggle.js +2 -4
  276. package/lib/components/Index/components/EntityView/components/layout/Summary/summary.d.ts +1 -0
  277. package/lib/components/Index/components/EntityView/components/layout/Summary/summary.js +3 -5
  278. package/lib/components/Index/components/EntityView/components/layout/Summary/summary.styles.d.ts +2 -4
  279. package/lib/components/Index/components/EntityView/components/layout/Title/title.d.ts +1 -0
  280. package/lib/components/Index/components/EntityView/components/layout/Title/title.js +2 -2
  281. package/lib/components/Index/components/EntityView/components/navigation/Tabs/tabs.d.ts +1 -0
  282. package/lib/components/Index/components/EntityView/components/navigation/Tabs/tabs.js +3 -2
  283. package/lib/components/Index/components/EntityView/components/slots/EntityListSlot/entityListSlot.d.ts +1 -0
  284. package/lib/components/Index/components/EntityView/components/slots/EntityListSlot/entityListSlot.js +2 -2
  285. package/lib/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.d.ts +1 -0
  286. package/lib/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.js +2 -3
  287. package/lib/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.styles.d.ts +2 -4
  288. package/lib/components/Index/components/EntityView/components/views/ChartView/chartView.d.ts +1 -0
  289. package/lib/components/Index/components/EntityView/components/views/ChartView/chartView.js +3 -11
  290. package/lib/components/Index/components/EntityView/components/views/ChartView/chartView.styles.d.ts +2 -4
  291. package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.d.ts +1 -0
  292. package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.js +13 -14
  293. package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.styles.d.ts +1 -3
  294. package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/chart.stories.d.ts +1 -1
  295. package/lib/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/chart.stories.js +2 -3
  296. package/lib/components/Index/components/EntityView/components/views/ChartView/hooks/UseChartView/types.d.ts +1 -1
  297. package/lib/components/Index/components/EntityView/components/views/ChartView/stories/chartView.stories.d.ts +1 -1
  298. package/lib/components/Index/components/EntityView/components/views/ChartView/stories/chartView.stories.js +2 -3
  299. package/lib/components/Index/components/EntityView/components/views/TableView/tableView.d.ts +1 -0
  300. package/lib/components/Index/components/EntityView/components/views/TableView/tableView.js +2 -2
  301. package/lib/components/Index/index.d.ts +1 -0
  302. package/lib/components/Index/index.js +2 -16
  303. package/lib/components/Index/index.styles.d.ts +7 -15
  304. package/lib/components/Index/table/coreOptions/columns/cellFactory.d.ts +1 -0
  305. package/lib/components/Index/table/coreOptions/columns/cellFactory.js +2 -2
  306. package/lib/components/Layout/components/BackPage/backPageView.d.ts +1 -1
  307. package/lib/components/Layout/components/BackPage/backPageView.js +3 -7
  308. package/lib/components/Layout/components/BackPage/backPageView.stories.d.ts +2 -2
  309. package/lib/components/Layout/components/BackPage/backPageView.stories.js +4 -13
  310. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.d.ts +1 -1
  311. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.js +3 -10
  312. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.styles.d.ts +1 -3
  313. package/lib/components/Layout/components/BackPage/components/BackPageHero/components/Actions/actions.d.ts +1 -1
  314. package/lib/components/Layout/components/BackPage/components/BackPageHero/components/Actions/actions.js +2 -2
  315. package/lib/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.d.ts +1 -1
  316. package/lib/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.js +2 -2
  317. package/lib/components/Layout/components/BackPage/components/BackPageHero/stories/backPageHero.stories.d.ts +1 -1
  318. package/lib/components/Layout/components/ContentLayout/components/Main/main.d.ts +1 -1
  319. package/lib/components/Layout/components/ContentLayout/components/Main/main.js +2 -2
  320. package/lib/components/Layout/components/ContentLayout/contentLayout.d.ts +1 -1
  321. package/lib/components/Layout/components/ContentLayout/contentLayout.js +2 -10
  322. package/lib/components/Layout/components/Floating/floating.d.ts +1 -0
  323. package/lib/components/Layout/components/Floating/floating.js +3 -2
  324. package/lib/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/title.d.ts +1 -0
  325. package/lib/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/title.js +2 -14
  326. package/lib/components/Layout/components/Footer/components/VersionInfo/versionInfo.d.ts +1 -0
  327. package/lib/components/Layout/components/Footer/components/VersionInfo/versionInfo.js +2 -3
  328. package/lib/components/Layout/components/Footer/components/VersionInfo/versionInfo.styles.d.ts +1 -3
  329. package/lib/components/Layout/components/Footer/footer.d.ts +1 -1
  330. package/lib/components/Layout/components/Footer/footer.js +3 -9
  331. package/lib/components/Layout/components/Footer/footer.stories.d.ts +2 -2
  332. package/lib/components/Layout/components/Footer/footer.stories.js +2 -2
  333. package/lib/components/Layout/components/Header/components/Announcements/announcements.d.ts +1 -0
  334. package/lib/components/Layout/components/Header/components/Announcements/announcements.js +2 -2
  335. package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.d.ts +1 -1
  336. package/lib/components/Layout/components/Header/components/Content/components/Actions/actions.js +2 -2
  337. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.d.ts +1 -1
  338. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.js +6 -7
  339. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.d.ts +1 -0
  340. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.js +6 -12
  341. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.styles.d.ts +4 -12
  342. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/Button/button.styles.d.ts +1 -3
  343. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.d.ts +1 -1
  344. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.js +3 -12
  345. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.d.ts +2 -2
  346. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.js +3 -11
  347. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/Button/button.styles.d.ts +1 -3
  348. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.d.ts +1 -0
  349. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.js +3 -6
  350. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.d.ts +1 -1
  351. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.js +5 -7
  352. package/lib/components/Layout/components/Header/components/Content/components/Logo/logo.d.ts +1 -0
  353. package/lib/components/Layout/components/Header/components/Content/components/Logo/logo.js +2 -2
  354. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationButtonLabel/navigationButtonLabel.d.ts +1 -1
  355. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationButtonLabel/navigationButtonLabel.js +3 -2
  356. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.d.ts +1 -2
  357. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.js +3 -2
  358. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.d.ts +1 -1
  359. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.js +3 -9
  360. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.d.ts +1 -1
  361. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.js +10 -16
  362. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.styles.d.ts +1 -3
  363. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.d.ts +1 -1
  364. package/lib/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.js +16 -19
  365. package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.d.ts +2 -2
  366. package/lib/components/Layout/components/Header/components/Content/components/Navigation/navigation.js +10 -14
  367. package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.d.ts +2 -2
  368. package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.js +3 -2
  369. package/lib/components/Layout/components/Header/components/Content/components/Slogan/slogan.styles.d.ts +1 -3
  370. package/lib/components/Layout/components/Header/header.d.ts +1 -1
  371. package/lib/components/Layout/components/Header/header.js +6 -25
  372. package/lib/components/Layout/components/Header/header.stories.d.ts +1 -1
  373. package/lib/components/Layout/components/Header/header.stories.js +2 -2
  374. package/lib/components/Layout/components/Main/main.d.ts +1 -1
  375. package/lib/components/Layout/components/Main/main.js +2 -2
  376. package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.d.ts +1 -0
  377. package/lib/components/Layout/components/Nav/components/NavBarHero/navBarHero.js +2 -8
  378. package/lib/components/Layout/components/Nav/nav.d.ts +1 -1
  379. package/lib/components/Layout/components/Nav/nav.js +4 -9
  380. package/lib/components/Layout/components/Nav/nav.stories.d.ts +1 -1
  381. package/lib/components/Layout/components/Nav/nav.styles.d.ts +1 -3
  382. package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.d.ts +1 -0
  383. package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.js +2 -2
  384. package/lib/components/Layout/components/Outline/components/ContentsTab/contentsTab.styles.d.ts +1 -3
  385. package/lib/components/Layout/components/Outline/outline.d.ts +1 -0
  386. package/lib/components/Layout/components/Outline/outline.js +2 -4
  387. package/lib/components/Layout/components/Outline/outline.styles.d.ts +3 -7
  388. package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.d.ts +1 -1
  389. package/lib/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.js +2 -5
  390. package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.d.ts +1 -1
  391. package/lib/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.js +2 -4
  392. package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.d.ts +1 -0
  393. package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.js +2 -2
  394. package/lib/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.stories.d.ts +2 -2
  395. package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.d.ts +1 -1
  396. package/lib/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.js +2 -2
  397. package/lib/components/Layout/components/Sidebar/sidebar.d.ts +1 -0
  398. package/lib/components/Layout/components/Sidebar/sidebar.js +3 -3
  399. package/lib/components/Layout/components/Sidebar/sidebar.stories.d.ts +1 -1
  400. package/lib/components/Layout/components/Sidebar/sidebar.stories.js +6 -7
  401. package/lib/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.d.ts +1 -0
  402. package/lib/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.js +3 -3
  403. package/lib/components/Links/components/Link/link.d.ts +1 -1
  404. package/lib/components/Links/components/Link/link.js +5 -9
  405. package/lib/components/Links/links.d.ts +1 -1
  406. package/lib/components/Links/links.js +5 -7
  407. package/lib/components/Links/links.stories.d.ts +2 -2
  408. package/lib/components/Loading/loading.d.ts +1 -0
  409. package/lib/components/Loading/loading.js +2 -6
  410. package/lib/components/Loading/loading.stories.d.ts +1 -1
  411. package/lib/components/Loading/loading.stories.js +3 -4
  412. package/lib/components/Login/components/Button/button.d.ts +1 -0
  413. package/lib/components/Login/components/Button/button.js +2 -2
  414. package/lib/components/Login/components/Button/button.styles.d.ts +1 -3
  415. package/lib/components/Login/components/Buttons/buttons.d.ts +1 -0
  416. package/lib/components/Login/components/Buttons/buttons.js +2 -2
  417. package/lib/components/Login/components/Section/components/Consent/consent.d.ts +1 -0
  418. package/lib/components/Login/components/Section/components/Consent/consent.js +2 -4
  419. package/lib/components/Login/components/Section/components/Consent/consent.styles.d.ts +2 -4
  420. package/lib/components/Login/components/Section/components/Warning/warning.d.ts +1 -0
  421. package/lib/components/Login/components/Section/components/Warning/warning.js +2 -2
  422. package/lib/components/Login/login.d.ts +1 -0
  423. package/lib/components/Login/login.js +3 -13
  424. package/lib/components/MarkdownRenderer/components/Anchor/anchor.d.ts +1 -1
  425. package/lib/components/MarkdownRenderer/components/Anchor/anchor.js +2 -2
  426. package/lib/components/MarkdownRenderer/components/Table/table.d.ts +1 -1
  427. package/lib/components/MarkdownRenderer/components/Table/table.js +2 -2
  428. package/lib/components/MarkdownRenderer/constants.d.ts +2 -2
  429. package/lib/components/MarkdownRenderer/markdownRenderer.d.ts +1 -12
  430. package/lib/components/MarkdownRenderer/markdownRenderer.js +16 -19
  431. package/lib/components/MarkdownRenderer/stories/markdownRenderer.stories.d.ts +1 -1
  432. package/lib/components/MarkdownRenderer/stories/markdownRenderer.stories.js +3 -4
  433. package/lib/components/MarkdownRenderer/types.d.ts +2 -3
  434. package/lib/components/NoResults/noResults.d.ts +1 -0
  435. package/lib/components/NoResults/noResults.js +3 -8
  436. package/lib/components/Plot/components/BarX/barX.d.ts +1 -0
  437. package/lib/components/Plot/components/BarX/barX.js +3 -2
  438. package/lib/components/Project/components/Citation/citation.d.ts +1 -0
  439. package/lib/components/Project/components/Citation/citation.js +2 -5
  440. package/lib/components/Project/components/Citation/citation.stories.d.ts +1 -1
  441. package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.d.ts +1 -0
  442. package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.js +2 -4
  443. package/lib/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.stories.d.ts +2 -2
  444. package/lib/components/Project/components/Contacts/contacts.d.ts +1 -0
  445. package/lib/components/Project/components/Contacts/contacts.js +3 -8
  446. package/lib/components/Project/components/Contacts/contacts.stories.d.ts +2 -2
  447. package/lib/components/Project/components/Contributors/contributors.d.ts +1 -0
  448. package/lib/components/Project/components/Contributors/contributors.js +2 -8
  449. package/lib/components/Project/components/Contributors/contributors.stories.d.ts +2 -2
  450. package/lib/components/Project/components/DataCurators/dataCurators.d.ts +1 -0
  451. package/lib/components/Project/components/DataCurators/dataCurators.js +2 -2
  452. package/lib/components/Project/components/DataCurators/dataCurators.stories.d.ts +2 -2
  453. package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.d.ts +1 -0
  454. package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.js +4 -10
  455. package/lib/components/Project/components/DataReleasePolicy/dataReleasePolicy.stories.d.ts +2 -2
  456. package/lib/components/Project/components/Description/description.d.ts +1 -0
  457. package/lib/components/Project/components/Description/description.js +2 -3
  458. package/lib/components/Project/components/Description/description.stories.d.ts +2 -2
  459. package/lib/components/Project/components/Details/details.d.ts +1 -0
  460. package/lib/components/Project/components/Details/details.js +4 -3
  461. package/lib/components/Project/components/Details/details.stories.d.ts +2 -2
  462. package/lib/components/Project/components/Publications/publications.d.ts +1 -0
  463. package/lib/components/Project/components/Publications/publications.js +2 -4
  464. package/lib/components/Project/components/Publications/publications.stories.d.ts +2 -2
  465. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.d.ts +1 -0
  466. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.js +3 -9
  467. package/lib/components/Project/components/SupplementaryLinks/supplementaryLinks.stories.d.ts +2 -2
  468. package/lib/components/Redirect/redirect.d.ts +1 -0
  469. package/lib/components/Redirect/redirect.js +3 -2
  470. package/lib/components/Stepper/components/Step/components/StepContent/stepContent.d.ts +1 -0
  471. package/lib/components/Stepper/components/Step/components/StepContent/stepContent.js +2 -3
  472. package/lib/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.d.ts +1 -0
  473. package/lib/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.js +2 -3
  474. package/lib/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.styles.d.ts +1 -3
  475. package/lib/components/Stepper/components/Step/components/StepIcon/stepIcon.d.ts +1 -0
  476. package/lib/components/Stepper/components/Step/components/StepIcon/stepIcon.js +2 -2
  477. package/lib/components/Stepper/components/Step/components/StepIcon/stories/stepIcon.stories.d.ts +1 -1
  478. package/lib/components/Stepper/components/Step/components/StepIcon/stories/stepIcon.stories.js +4 -7
  479. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/icon.d.ts +1 -0
  480. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/icon.js +2 -3
  481. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/stories/icon.stories.d.ts +1 -1
  482. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/label.d.ts +1 -0
  483. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/label.js +2 -2
  484. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/label.styles.d.ts +1 -3
  485. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/stories/label.stories.d.ts +1 -1
  486. package/lib/components/Stepper/components/Step/components/StepLabel/components/Label/stories/label.stories.js +3 -5
  487. package/lib/components/Stepper/components/Step/components/StepLabel/components/Optional/optional.d.ts +1 -0
  488. package/lib/components/Stepper/components/Step/components/StepLabel/components/Optional/optional.js +2 -2
  489. package/lib/components/Stepper/components/Step/components/StepLabel/stepLabel.d.ts +1 -0
  490. package/lib/components/Stepper/components/Step/components/StepLabel/stepLabel.js +2 -2
  491. package/lib/components/Stepper/components/Step/components/StepLabel/stories/stepLabel.stories.d.ts +1 -1
  492. package/lib/components/Stepper/components/Step/components/StepLabel/stories/stepLabel.stories.js +6 -6
  493. package/lib/components/Stepper/components/Step/step.d.ts +1 -0
  494. package/lib/components/Stepper/components/Step/step.js +2 -2
  495. package/lib/components/Stepper/components/Step/step.styles.d.ts +1 -3
  496. package/lib/components/Stepper/components/Step/stories/step.stories.d.ts +1 -1
  497. package/lib/components/Stepper/components/Step/stories/step.stories.js +10 -11
  498. package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.d.ts +1 -1
  499. package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.js +9 -10
  500. package/lib/components/Support/components/SupportRequest/components/Dialog/dialog.styles.d.ts +1 -3
  501. package/lib/components/Support/components/SupportRequest/components/Dropzone/dropzone.d.ts +1 -1
  502. package/lib/components/Support/components/SupportRequest/components/Dropzone/dropzone.js +2 -4
  503. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.d.ts +1 -1
  504. package/lib/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.js +4 -17
  505. package/lib/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.d.ts +1 -1
  506. package/lib/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.js +2 -6
  507. package/lib/components/Support/components/SupportRequest/supportRequest.d.ts +1 -0
  508. package/lib/components/Support/components/SupportRequest/supportRequest.js +3 -2
  509. package/lib/components/Support/components/ViewSupport/viewSupport.d.ts +1 -0
  510. package/lib/components/Support/components/ViewSupport/viewSupport.js +2 -3
  511. package/lib/components/Table/common/gridTable.styles.d.ts +1 -3
  512. package/lib/components/Table/components/PaginationSummary/paginationSummary.d.ts +1 -0
  513. package/lib/components/Table/components/PaginationSummary/paginationSummary.js +2 -13
  514. package/lib/components/Table/components/TableBody/tableBody.d.ts +1 -0
  515. package/lib/components/Table/components/TableBody/tableBody.js +2 -5
  516. package/lib/components/Table/components/TableCell/components/BasicCell/basicCell.d.ts +1 -1
  517. package/lib/components/Table/components/TableCell/components/BasicCell/basicCell.js +4 -3
  518. package/lib/components/Table/components/TableCell/components/ChipCell/chipCell.d.ts +1 -0
  519. package/lib/components/Table/components/TableCell/components/ChipCell/chipCell.js +2 -2
  520. package/lib/components/Table/components/TableCell/components/CodeCell/codeCell.d.ts +1 -1
  521. package/lib/components/Table/components/TableCell/components/CodeCell/codeCell.js +2 -2
  522. package/lib/components/Table/components/TableCell/components/CodeCell/codeCell.styles.d.ts +1 -3
  523. package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.d.ts +1 -0
  524. package/lib/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.js +9 -17
  525. package/lib/components/Table/components/TableCell/components/LinkCell/linkCell.d.ts +1 -0
  526. package/lib/components/Table/components/TableCell/components/LinkCell/linkCell.js +4 -4
  527. package/lib/components/Table/components/TableCell/components/LinkCell/stories/linkCell.stories.d.ts +1 -1
  528. package/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell.d.ts +1 -0
  529. package/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell.js +2 -2
  530. package/lib/components/Table/components/TableCell/components/MarkdownCell/markdownCell.styles.js +3 -1
  531. package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/markdownCell.stories.d.ts +1 -1
  532. package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/markdownCell.stories.js +3 -4
  533. package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.d.ts +1 -0
  534. package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.js +4 -3
  535. package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.d.ts +1 -1
  536. package/lib/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.js +2 -2
  537. package/lib/components/Table/components/TableCell/components/NTagCell/nTagCell.d.ts +1 -0
  538. package/lib/components/Table/components/TableCell/components/NTagCell/nTagCell.js +4 -3
  539. package/lib/components/Table/components/TableCell/components/RankedCell/rankedCell.d.ts +1 -0
  540. package/lib/components/Table/components/TableCell/components/RankedCell/rankedCell.js +5 -10
  541. package/lib/components/Table/components/TableCell/components/RowPositionCell/rowPositionCell.d.ts +1 -0
  542. package/lib/components/Table/components/TableCell/components/RowPositionCell/rowPositionCell.js +2 -2
  543. package/lib/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.d.ts +1 -0
  544. package/lib/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.js +3 -5
  545. package/lib/components/Table/components/TableFeatures/ColumnFilter/columnFilter.d.ts +1 -0
  546. package/lib/components/Table/components/TableFeatures/ColumnFilter/columnFilter.js +16 -23
  547. package/lib/components/Table/components/TableFeatures/ColumnFilter/columnFilter.styles.d.ts +1 -3
  548. package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.d.ts +1 -0
  549. package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.js +4 -2
  550. package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.styles.d.ts +1 -3
  551. package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/stories/columFilterTag.stories.d.ts +1 -1
  552. package/lib/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/stories/columFilterTag.stories.js +2 -3
  553. package/lib/components/Table/components/TableFeatures/GlobalFilter/globalFilter.d.ts +1 -0
  554. package/lib/components/Table/components/TableFeatures/GlobalFilter/globalFilter.js +2 -2
  555. package/lib/components/Table/components/TableFeatures/TableDownload/tableDownload.d.ts +1 -0
  556. package/lib/components/Table/components/TableFeatures/TableDownload/tableDownload.js +2 -2
  557. package/lib/components/Table/components/TableFeatures/TableDownload/tableDownload.styles.d.ts +1 -3
  558. package/lib/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.d.ts +1 -0
  559. package/lib/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.js +2 -2
  560. package/lib/components/Table/components/TableHead/tableHead.d.ts +1 -0
  561. package/lib/components/Table/components/TableHead/tableHead.js +7 -8
  562. package/lib/components/Table/components/TablePagination/stories/args.js +1 -1
  563. package/lib/components/Table/components/TablePagination/stories/tablePagination.stories.d.ts +1 -1
  564. package/lib/components/Table/components/TablePagination/tablePagination.d.ts +1 -0
  565. package/lib/components/Table/components/TablePagination/tablePagination.js +2 -11
  566. package/lib/components/Table/components/TablePagination/tablePagination.styles.d.ts +2 -4
  567. package/lib/components/Table/components/TableRow/tableRow.styles.d.ts +1 -3
  568. package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.d.ts +1 -0
  569. package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.js +9 -9
  570. package/lib/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.styles.d.ts +1 -3
  571. package/lib/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.d.ts +1 -0
  572. package/lib/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.js +3 -3
  573. package/lib/components/Table/components/TableRows/tableRows.d.ts +1 -0
  574. package/lib/components/Table/components/TableRows/tableRows.js +16 -15
  575. package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/columnGrouping.d.ts +1 -0
  576. package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/columnGrouping.js +4 -4
  577. package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/menuItems.d.ts +1 -0
  578. package/lib/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/menuItems.js +12 -13
  579. package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/columnVisibility.d.ts +1 -0
  580. package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/columnVisibility.js +4 -4
  581. package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/menuItems.d.ts +1 -0
  582. package/lib/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/menuItems.js +6 -10
  583. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.d.ts +1 -1
  584. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.js +2 -5
  585. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.styles.js +3 -1
  586. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.d.ts +1 -0
  587. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.js +4 -7
  588. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.d.ts +1 -1
  589. package/lib/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.js +2 -4
  590. package/lib/components/Table/components/TableToolbar/components/RowPreview/rowPreview.d.ts +1 -0
  591. package/lib/components/Table/components/TableToolbar/components/RowPreview/rowPreview.js +2 -2
  592. package/lib/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.d.ts +1 -0
  593. package/lib/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.js +3 -3
  594. package/lib/components/Table/components/TableToolbar/components/RowSelection/rowSelection.d.ts +1 -0
  595. package/lib/components/Table/components/TableToolbar/components/RowSelection/rowSelection.js +2 -6
  596. package/lib/components/Table/components/TableToolbar/tableToolbar.d.ts +1 -0
  597. package/lib/components/Table/components/TableToolbar/tableToolbar.js +3 -11
  598. package/lib/components/Table/components/TableToolbar/tableToolbar.styles.d.ts +1 -3
  599. package/lib/components/Table/components/TableToolbar2/tableToolbar2.d.ts +1 -0
  600. package/lib/components/Table/components/TableToolbar2/tableToolbar2.js +2 -4
  601. package/lib/components/Table/components/TableToolbar2/tableToolbar2.styles.d.ts +2 -6
  602. package/lib/components/Table/featureOptions/facetedColumn/getFacetedMinMaxValues.js +2 -1
  603. package/lib/components/Table/hooks/UseVirtualization/types.d.ts +1 -1
  604. package/lib/components/Table/table.d.ts +1 -0
  605. package/lib/components/Table/table.js +3 -9
  606. package/lib/components/Table/table.styles.d.ts +1 -3
  607. package/lib/components/TableCreator/tableCreator.d.ts +1 -0
  608. package/lib/components/TableCreator/tableCreator.js +2 -2
  609. package/lib/components/TempError/components/errorBox.d.ts +1 -0
  610. package/lib/components/TempError/components/errorBox.js +2 -4
  611. package/lib/components/TempError/tempError.d.ts +1 -0
  612. package/lib/components/TempError/tempError.js +2 -5
  613. package/lib/components/common/Accordion/accordion.d.ts +1 -1
  614. package/lib/components/common/Accordion/accordion.js +4 -6
  615. package/lib/components/common/Accordion/accordion.stories.d.ts +2 -2
  616. package/lib/components/common/Accordion/accordion.stories.js +2 -5
  617. package/lib/components/common/Alert/alert.d.ts +1 -2
  618. package/lib/components/common/Alert/alert.js +3 -2
  619. package/lib/components/common/AnchorLink/anchorLink.d.ts +1 -1
  620. package/lib/components/common/AnchorLink/anchorLink.js +2 -3
  621. package/lib/components/common/AnchorLink/anchorLink.styles.d.ts +2 -28
  622. package/lib/components/common/Banner/banner.d.ts +1 -2
  623. package/lib/components/common/Banner/banner.js +3 -2
  624. package/lib/components/common/Banner/components/CookieBanner/cookieBanner.d.ts +1 -1
  625. package/lib/components/common/Banner/components/CookieBanner/cookieBanner.js +6 -8
  626. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.d.ts +1 -0
  627. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.js +2 -3
  628. package/lib/components/common/Banner/components/SystemIndexing/systemIndexing.d.ts +1 -0
  629. package/lib/components/common/Banner/components/SystemIndexing/systemIndexing.js +2 -3
  630. package/lib/components/common/Banner/components/SystemStatus/systemStatus.d.ts +1 -0
  631. package/lib/components/common/Banner/components/SystemStatus/systemStatus.js +2 -3
  632. package/lib/components/common/Breadcrumbs/breadcrumbs.d.ts +1 -1
  633. package/lib/components/common/Breadcrumbs/breadcrumbs.js +4 -3
  634. package/lib/components/common/Breadcrumbs/breadcrumbs.stories.d.ts +2 -2
  635. package/lib/components/common/Button/button.d.ts +2 -2
  636. package/lib/components/common/Button/button.js +3 -2
  637. package/lib/components/common/Button/components/ButtonOutline/buttonOutline.d.ts +1 -2
  638. package/lib/components/common/Button/components/ButtonOutline/buttonOutline.js +3 -2
  639. package/lib/components/common/Button/components/ButtonPrimary/buttonPrimary.d.ts +1 -2
  640. package/lib/components/common/Button/components/ButtonPrimary/buttonPrimary.js +3 -2
  641. package/lib/components/common/Button/components/ButtonSecondary/buttonSecondary.d.ts +1 -2
  642. package/lib/components/common/Button/components/ButtonSecondary/buttonSecondary.js +3 -2
  643. package/lib/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.d.ts +1 -2
  644. package/lib/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.js +3 -2
  645. package/lib/components/common/Button/components/ButtonText/buttonText.d.ts +1 -0
  646. package/lib/components/common/Button/components/ButtonText/buttonText.js +2 -2
  647. package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.d.ts +1 -0
  648. package/lib/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.js +2 -2
  649. package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.d.ts +1 -0
  650. package/lib/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.js +2 -2
  651. package/lib/components/common/Button/components/CallToActionButton/callToActionButton.d.ts +1 -1
  652. package/lib/components/common/Button/components/CallToActionButton/callToActionButton.js +3 -4
  653. package/lib/components/common/Button/components/CallToActionButton/callToActionButton.stories.d.ts +2 -2
  654. package/lib/components/common/Button/components/DropdownButton/dropdownButton.d.ts +1 -0
  655. package/lib/components/common/Button/components/DropdownButton/dropdownButton.js +2 -2
  656. package/lib/components/common/Button/components/DropdownButton/dropdownButton.styles.d.ts +1 -3
  657. package/lib/components/common/Button/components/FileDownloadButton/fileDownloadButton.d.ts +1 -0
  658. package/lib/components/common/Button/components/FileDownloadButton/fileDownloadButton.js +3 -2
  659. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.d.ts +1 -0
  660. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.js +2 -5
  661. package/lib/components/common/Button/components/HelpIconButton/helpIconButton.stories.d.ts +2 -2
  662. package/lib/components/common/Button/components/NavigationButton/navigationButton.d.ts +1 -0
  663. package/lib/components/common/Button/components/NavigationButton/navigationButton.js +2 -2
  664. package/lib/components/common/ButtonGroup/buttonGroup.d.ts +1 -1
  665. package/lib/components/common/ButtonGroup/buttonGroup.js +3 -2
  666. package/lib/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.d.ts +1 -1
  667. package/lib/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.js +3 -3
  668. package/lib/components/common/Card/card.d.ts +1 -1
  669. package/lib/components/common/Card/card.js +3 -11
  670. package/lib/components/common/Card/card.stories.d.ts +2 -2
  671. package/lib/components/common/Card/components/CardAction/cardAction.d.ts +1 -0
  672. package/lib/components/common/Card/components/CardAction/cardAction.js +2 -2
  673. package/lib/components/common/Card/components/CardActionArea/cardActionArea.d.ts +1 -1
  674. package/lib/components/common/Card/components/CardActionArea/cardActionArea.js +2 -2
  675. package/lib/components/common/Card/components/CardActions/cardActions.d.ts +1 -1
  676. package/lib/components/common/Card/components/CardActions/cardActions.js +2 -4
  677. package/lib/components/common/Card/components/CardMedia/cardMedia.d.ts +1 -0
  678. package/lib/components/common/Card/components/CardMedia/cardMedia.js +2 -3
  679. package/lib/components/common/Card/components/CardSecondaryText/cardSecondaryText.d.ts +1 -0
  680. package/lib/components/common/Card/components/CardSecondaryText/cardSecondaryText.js +2 -2
  681. package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.d.ts +1 -0
  682. package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.js +2 -2
  683. package/lib/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.styles.d.ts +1 -3
  684. package/lib/components/common/Card/components/CardText/cardText.d.ts +1 -0
  685. package/lib/components/common/Card/components/CardText/cardText.js +2 -2
  686. package/lib/components/common/Card/components/CardTitle/cardTitle.d.ts +1 -0
  687. package/lib/components/common/Card/components/CardTitle/cardTitle.js +2 -2
  688. package/lib/components/common/Card/components/RoundedCard/roundedCard.d.ts +1 -1
  689. package/lib/components/common/Card/components/RoundedCard/roundedCard.js +2 -2
  690. package/lib/components/common/Code/code.d.ts +1 -0
  691. package/lib/components/common/Code/code.js +3 -3
  692. package/lib/components/common/Code/code.stories.d.ts +2 -2
  693. package/lib/components/common/CopyToClipboard/copyToClipboard.d.ts +1 -0
  694. package/lib/components/common/CopyToClipboard/copyToClipboard.js +4 -5
  695. package/lib/components/common/CopyToClipboard/copyToClipboard.stories.d.ts +2 -2
  696. package/lib/components/common/CustomIcon/components/AddIcon/addIcon.d.ts +1 -0
  697. package/lib/components/common/CustomIcon/components/AddIcon/addIcon.js +2 -3
  698. package/lib/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.d.ts +1 -0
  699. package/lib/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.js +2 -3
  700. package/lib/components/common/CustomIcon/components/AlertIcon/alertIcon.d.ts +1 -0
  701. package/lib/components/common/CustomIcon/components/AlertIcon/alertIcon.js +2 -3
  702. package/lib/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.d.ts +1 -0
  703. package/lib/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.js +2 -3
  704. package/lib/components/common/CustomIcon/components/CheckedIcon/checkedIcon.d.ts +1 -0
  705. package/lib/components/common/CustomIcon/components/CheckedIcon/checkedIcon.js +2 -4
  706. package/lib/components/common/CustomIcon/components/CloseIcon/closeIcon.d.ts +1 -0
  707. package/lib/components/common/CustomIcon/components/CloseIcon/closeIcon.js +2 -3
  708. package/lib/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.d.ts +1 -0
  709. package/lib/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.js +2 -3
  710. package/lib/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.d.ts +1 -0
  711. package/lib/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.js +2 -3
  712. package/lib/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.d.ts +1 -0
  713. package/lib/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.js +2 -3
  714. package/lib/components/common/CustomIcon/components/DownloadIcon/downloadIcon.d.ts +1 -0
  715. package/lib/components/common/CustomIcon/components/DownloadIcon/downloadIcon.js +2 -3
  716. package/lib/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.d.ts +1 -0
  717. package/lib/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.js +2 -3
  718. package/lib/components/common/CustomIcon/components/ErrorIcon/errorIcon.d.ts +1 -0
  719. package/lib/components/common/CustomIcon/components/ErrorIcon/errorIcon.js +2 -3
  720. package/lib/components/common/CustomIcon/components/FacebookIcon/facebookIcon.d.ts +1 -0
  721. package/lib/components/common/CustomIcon/components/FacebookIcon/facebookIcon.js +2 -3
  722. package/lib/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.d.ts +1 -0
  723. package/lib/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.js +2 -3
  724. package/lib/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.d.ts +1 -0
  725. package/lib/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.js +2 -4
  726. package/lib/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.d.ts +1 -0
  727. package/lib/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.js +2 -3
  728. package/lib/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.d.ts +1 -0
  729. package/lib/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.js +2 -3
  730. package/lib/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.d.ts +1 -0
  731. package/lib/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.js +2 -3
  732. package/lib/components/common/CustomIcon/components/GoogleIcon/googleIcon.d.ts +1 -0
  733. package/lib/components/common/CustomIcon/components/GoogleIcon/googleIcon.js +2 -6
  734. package/lib/components/common/CustomIcon/components/HelpIcon/helpIcon.d.ts +1 -0
  735. package/lib/components/common/CustomIcon/components/HelpIcon/helpIcon.js +2 -3
  736. package/lib/components/common/CustomIcon/components/InProgressIcon/inProgressIcon.d.ts +1 -0
  737. package/lib/components/common/CustomIcon/components/InProgressIcon/inProgressIcon.js +2 -3
  738. package/lib/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.d.ts +1 -0
  739. package/lib/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.js +2 -4
  740. package/lib/components/common/CustomIcon/components/InfoIcon/infoIcon.d.ts +1 -0
  741. package/lib/components/common/CustomIcon/components/InfoIcon/infoIcon.js +2 -3
  742. package/lib/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.d.ts +1 -0
  743. package/lib/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.js +2 -3
  744. package/lib/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.d.ts +1 -0
  745. package/lib/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.js +2 -3
  746. package/lib/components/common/CustomIcon/components/LoadingIcon/loadingIcon.d.ts +1 -0
  747. package/lib/components/common/CustomIcon/components/LoadingIcon/loadingIcon.js +2 -20
  748. package/lib/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.d.ts +1 -0
  749. package/lib/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.js +2 -3
  750. package/lib/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.d.ts +1 -0
  751. package/lib/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.js +2 -3
  752. package/lib/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.d.ts +1 -0
  753. package/lib/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.js +2 -3
  754. package/lib/components/common/CustomIcon/components/RemoveIcon/removeIcon.d.ts +1 -0
  755. package/lib/components/common/CustomIcon/components/RemoveIcon/removeIcon.js +2 -3
  756. package/lib/components/common/CustomIcon/components/SearchIcon/searchIcon.d.ts +1 -0
  757. package/lib/components/common/CustomIcon/components/SearchIcon/searchIcon.js +2 -3
  758. package/lib/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.d.ts +1 -0
  759. package/lib/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.js +2 -3
  760. package/lib/components/common/CustomIcon/components/Segment/segment.d.ts +1 -0
  761. package/lib/components/common/CustomIcon/components/Segment/segment.js +2 -3
  762. package/lib/components/common/CustomIcon/components/SlackIcon/slackIcon.d.ts +1 -0
  763. package/lib/components/common/CustomIcon/components/SlackIcon/slackIcon.js +2 -3
  764. package/lib/components/common/CustomIcon/components/SouthIcon/southIcon.d.ts +1 -0
  765. package/lib/components/common/CustomIcon/components/SouthIcon/southIcon.js +2 -3
  766. package/lib/components/common/CustomIcon/components/SuccessIcon/successIcon.d.ts +1 -0
  767. package/lib/components/common/CustomIcon/components/SuccessIcon/successIcon.js +2 -3
  768. package/lib/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.d.ts +1 -0
  769. package/lib/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.js +2 -3
  770. package/lib/components/common/CustomIcon/components/UncheckedDisabledIcon/uncheckedDisabledIcon.d.ts +1 -0
  771. package/lib/components/common/CustomIcon/components/UncheckedDisabledIcon/uncheckedDisabledIcon.js +2 -4
  772. package/lib/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.d.ts +1 -0
  773. package/lib/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.js +2 -3
  774. package/lib/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.d.ts +1 -0
  775. package/lib/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.js +2 -3
  776. package/lib/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.d.ts +1 -0
  777. package/lib/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.js +2 -3
  778. package/lib/components/common/CustomIcon/components/WarningIcon/warningIcon.d.ts +1 -0
  779. package/lib/components/common/CustomIcon/components/WarningIcon/warningIcon.js +2 -3
  780. package/lib/components/common/CustomIcon/components/XIcon/xIcon.d.ts +1 -0
  781. package/lib/components/common/CustomIcon/components/XIcon/xIcon.js +2 -3
  782. package/lib/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.d.ts +1 -0
  783. package/lib/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.js +2 -3
  784. package/lib/components/common/Dialog/components/DialogTitle/dialogTitle.d.ts +1 -1
  785. package/lib/components/common/Dialog/components/DialogTitle/dialogTitle.js +2 -5
  786. package/lib/components/common/Dialog/dialog.d.ts +1 -1
  787. package/lib/components/common/Dialog/dialog.js +2 -2
  788. package/lib/components/common/Dot/dot.d.ts +1 -0
  789. package/lib/components/common/Dot/dot.js +2 -2
  790. package/lib/components/common/Drawer/components/DrawerTitle/drawerTitle.d.ts +1 -1
  791. package/lib/components/common/Drawer/components/DrawerTitle/drawerTitle.js +2 -5
  792. package/lib/components/common/Drawer/drawer.d.ts +1 -1
  793. package/lib/components/common/Drawer/drawer.js +2 -2
  794. package/lib/components/common/Drawer/provider/provider.d.ts +1 -0
  795. package/lib/components/common/Drawer/provider/provider.js +5 -4
  796. package/lib/components/common/DropdownMenu/components/MenuItem/menuItem.d.ts +1 -1
  797. package/lib/components/common/DropdownMenu/components/MenuItem/menuItem.js +2 -3
  798. package/lib/components/common/DropdownMenu/dropdownMenu.d.ts +1 -0
  799. package/lib/components/common/DropdownMenu/dropdownMenu.js +3 -4
  800. package/lib/components/common/EllipsisContent/ellipsisContent.d.ts +1 -1
  801. package/lib/components/common/EllipsisContent/ellipsisContent.js +3 -5
  802. package/lib/components/common/Form/components/Input/input.d.ts +1 -0
  803. package/lib/components/common/Form/components/Input/input.js +2 -4
  804. package/lib/components/common/Form/components/Input/input.styles.d.ts +1 -3
  805. package/lib/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.d.ts +1 -0
  806. package/lib/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.js +2 -2
  807. package/lib/components/common/Form/components/Select/select.d.ts +1 -1
  808. package/lib/components/common/Form/components/Select/select.js +2 -4
  809. package/lib/components/common/Form/components/Select/select.styles.d.ts +1 -3
  810. package/lib/components/common/Form/components/UploadFile/uploadFile.d.ts +1 -0
  811. package/lib/components/common/Form/components/UploadFile/uploadFile.js +2 -13
  812. package/lib/components/common/Form/components/UploadFile/uploadFile.styles.d.ts +1 -3
  813. package/lib/components/common/Grid/components/GridItem/gridItem.d.ts +1 -1
  814. package/lib/components/common/Grid/components/GridItem/gridItem.js +2 -2
  815. package/lib/components/common/Grid/grid.d.ts +1 -1
  816. package/lib/components/common/Grid/grid.js +2 -2
  817. package/lib/components/common/IconBadge/iconBadge.d.ts +1 -1
  818. package/lib/components/common/IconBadge/iconBadge.js +2 -3
  819. package/lib/components/common/IconButton/iconButton.d.ts +1 -1
  820. package/lib/components/common/IconButton/iconButton.js +2 -3
  821. package/lib/components/common/IconButton/iconButton.styles.d.ts +1 -3
  822. package/lib/components/common/Input/input.d.ts +1 -1
  823. package/lib/components/common/Input/input.js +2 -4
  824. package/lib/components/common/Input/input.styles.d.ts +1 -3
  825. package/lib/components/common/KeyValuePairs/components/KeyElType/keyElType.d.ts +1 -0
  826. package/lib/components/common/KeyValuePairs/components/KeyElType/keyElType.js +2 -2
  827. package/lib/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.d.ts +1 -1
  828. package/lib/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.js +2 -2
  829. package/lib/components/common/KeyValuePairs/components/ValueElType/valueElType.d.ts +1 -0
  830. package/lib/components/common/KeyValuePairs/components/ValueElType/valueElType.js +2 -2
  831. package/lib/components/common/KeyValuePairs/keyValuePairs.d.ts +1 -1
  832. package/lib/components/common/KeyValuePairs/keyValuePairs.js +7 -8
  833. package/lib/components/common/LoginDialog/loginDialog.d.ts +1 -0
  834. package/lib/components/common/LoginDialog/loginDialog.js +2 -12
  835. package/lib/components/common/Markdown/markdown.d.ts +1 -0
  836. package/lib/components/common/Markdown/markdown.js +2 -2
  837. package/lib/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.d.ts +1 -0
  838. package/lib/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.js +2 -4
  839. package/lib/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.styles.d.ts +1 -3
  840. package/lib/components/common/OutlinedInput/components/InputAdornment/components/SearchInputAdornment/searchInputAdornment.d.ts +1 -0
  841. package/lib/components/common/OutlinedInput/components/InputAdornment/components/SearchInputAdornment/searchInputAdornment.js +2 -3
  842. package/lib/components/common/OutlinedInput/components/InputAdornment/inputAdornment.styles.d.ts +1 -3
  843. package/lib/components/common/Paper/components/FlatPaper/flatPaper.d.ts +1 -0
  844. package/lib/components/common/Paper/components/FlatPaper/flatPaper.js +2 -2
  845. package/lib/components/common/Paper/components/FlatPaper/flatPaper.styles.d.ts +1 -3
  846. package/lib/components/common/Paper/components/FluidPaper/fluidPaper.d.ts +1 -0
  847. package/lib/components/common/Paper/components/FluidPaper/fluidPaper.js +2 -2
  848. package/lib/components/common/Paper/components/FluidPaper/fluidPaper.styles.d.ts +1 -3
  849. package/lib/components/common/Paper/components/RoundedPaper/roundedPaper.d.ts +1 -0
  850. package/lib/components/common/Paper/components/RoundedPaper/roundedPaper.js +2 -2
  851. package/lib/components/common/Paper/components/RoundedPaper/roundedPaper.styles.d.ts +1 -3
  852. package/lib/components/common/Paper/paper.d.ts +2 -2
  853. package/lib/components/common/Paper/paper.js +3 -2
  854. package/lib/components/common/Progress/components/CircularProgress/circularProgress.d.ts +1 -1
  855. package/lib/components/common/Progress/components/CircularProgress/circularProgress.js +2 -4
  856. package/lib/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.d.ts +1 -0
  857. package/lib/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.js +3 -2
  858. package/lib/components/common/RadioGroup/radioGroup.d.ts +1 -0
  859. package/lib/components/common/RadioGroup/radioGroup.js +2 -2
  860. package/lib/components/common/Section/components/CollapsableSection/collapsableSection.d.ts +1 -1
  861. package/lib/components/common/Section/components/CollapsableSection/collapsableSection.js +4 -7
  862. package/lib/components/common/Section/components/CollapsableSection/collapsableSection.styles.d.ts +1 -3
  863. package/lib/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.d.ts +1 -0
  864. package/lib/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.js +2 -2
  865. package/lib/components/common/Section/components/SectionTitle/sectionTitle.d.ts +1 -0
  866. package/lib/components/common/Section/components/SectionTitle/sectionTitle.js +2 -2
  867. package/lib/components/common/Section/components/SectionTitle/sectionTitle.stories.d.ts +2 -2
  868. package/lib/components/common/Section/section.styles.d.ts +4 -4
  869. package/lib/components/common/Sections/sections.d.ts +1 -1
  870. package/lib/components/common/Sections/sections.js +2 -3
  871. package/lib/components/common/Socials/socials.d.ts +2 -2
  872. package/lib/components/common/Socials/socials.js +3 -3
  873. package/lib/components/common/Socials/socials.stories.d.ts +1 -1
  874. package/lib/components/common/Stack/components/Divider/divider.d.ts +1 -1
  875. package/lib/components/common/Stack/components/Divider/divider.js +2 -2
  876. package/lib/components/common/Stack/stack.d.ts +1 -1
  877. package/lib/components/common/Stack/stack.js +2 -2
  878. package/lib/components/common/StaticImage/staticImage.d.ts +1 -0
  879. package/lib/components/common/StaticImage/staticImage.js +2 -3
  880. package/lib/components/common/StaticImage/staticImage.stories.d.ts +2 -2
  881. package/lib/components/common/StatusBadge/statusBadge.d.ts +1 -2
  882. package/lib/components/common/StatusBadge/statusBadge.js +3 -2
  883. package/lib/components/common/StatusBadge/statusBadge.stories.d.ts +1 -1
  884. package/lib/components/common/StatusIcon/statusIcon.d.ts +1 -1
  885. package/lib/components/common/StatusIcon/statusIcon.js +2 -3
  886. package/lib/components/common/StatusIcon/statusIcon.stories.d.ts +2 -2
  887. package/lib/components/common/Tabs/tabs.d.ts +1 -1
  888. package/lib/components/common/Tabs/tabs.js +3 -4
  889. package/lib/components/common/Tabs/tabs.styles.d.ts +1 -3
  890. package/lib/components/common/Tag/tag.d.ts +1 -0
  891. package/lib/components/common/Tag/tag.js +2 -2
  892. package/lib/components/common/Tag/tag.stories.d.ts +2 -2
  893. package/lib/components/common/Tag/tag.stories.js +2 -2
  894. package/lib/components/common/Tag/tag.styles.d.ts +2 -6
  895. package/lib/components/common/Title/title.d.ts +1 -0
  896. package/lib/components/common/Title/title.js +4 -3
  897. package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.d.ts +1 -0
  898. package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.js +3 -2
  899. package/lib/components/common/ToggleButtonGroup/toggleButtonGroup.stories.d.ts +2 -2
  900. package/lib/components/common/Typography/TypographyWordBreak/TypographyWordBreak.d.ts +1 -1
  901. package/lib/components/common/Typography/TypographyWordBreak/TypographyWordBreak.js +2 -2
  902. package/lib/config/entities.d.ts +1 -1
  903. package/lib/config/utils.js +2 -6
  904. package/lib/entity/api/service.js +1 -3
  905. package/lib/hooks/authentication/session/useSessionIdleTimer.d.ts +1 -1
  906. package/lib/hooks/useAsync.js +2 -2
  907. package/lib/hooks/useEntityService.js +1 -2
  908. package/lib/hooks/useRequestManifest/useRequestManifest.js +1 -2
  909. package/lib/hooks/useResizeObserver.d.ts +1 -1
  910. package/lib/hooks/useResizeObserver.js +1 -1
  911. package/lib/hooks/useWindowResize.js +8 -2
  912. package/lib/providers/authentication/terra/provider.d.ts +1 -0
  913. package/lib/providers/authentication/terra/provider.js +4 -3
  914. package/lib/providers/config.d.ts +2 -2
  915. package/lib/providers/config.js +4 -3
  916. package/lib/providers/dataDictionaryState/provider.d.ts +1 -1
  917. package/lib/providers/dataDictionaryState/provider.js +2 -2
  918. package/lib/providers/exploreState.d.ts +2 -2
  919. package/lib/providers/exploreState.js +3 -2
  920. package/lib/providers/fileManifestState.d.ts +2 -2
  921. package/lib/providers/fileManifestState.js +4 -3
  922. package/lib/providers/googleSignInAuthentication/provider.d.ts +1 -0
  923. package/lib/providers/googleSignInAuthentication/provider.js +2 -5
  924. package/lib/providers/layoutDimensions/context.js +2 -2
  925. package/lib/providers/layoutDimensions/provider.d.ts +1 -0
  926. package/lib/providers/layoutDimensions/provider.js +3 -2
  927. package/lib/providers/layoutDimensions/types.d.ts +2 -2
  928. package/lib/providers/loginGuard/provider.d.ts +1 -0
  929. package/lib/providers/loginGuard/provider.js +3 -4
  930. package/lib/providers/nextAuthAuthentication/provider.d.ts +1 -0
  931. package/lib/providers/nextAuthAuthentication/provider.js +2 -5
  932. package/lib/providers/services/provider.d.ts +1 -1
  933. package/lib/providers/services/provider.js +2 -2
  934. package/lib/providers/services/wasPop/provider.d.ts +1 -1
  935. package/lib/providers/services/wasPop/provider.js +4 -3
  936. package/lib/providers/systemStatus.d.ts +2 -2
  937. package/lib/providers/systemStatus.js +4 -3
  938. package/lib/storybook/controls/constants.d.ts +1 -1
  939. package/lib/storybook/controls/utils.d.ts +1 -1
  940. package/lib/storybook/decorators.d.ts +1 -1
  941. package/lib/storybook/decorators.js +2 -5
  942. package/lib/storybook/parameters.d.ts +1 -1
  943. package/lib/utils/mdx/plugins/rehypeSlug.d.ts +9 -1
  944. package/lib/utils/mdx/plugins/rehypeSlug.js +26 -4
  945. package/lib/utils/mdx/plugins/remarkHeadings.d.ts +1 -1
  946. package/lib/utils/mdx/plugins/remarkHeadings.js +6 -7
  947. package/lib/utils/mdx/plugins/types.d.ts +4 -0
  948. package/lib/utils/mdx/plugins/utils.d.ts +10 -0
  949. package/lib/utils/mdx/plugins/utils.js +8 -0
  950. package/lib/utils/mdx/staticGeneration/staticProps.d.ts +2 -2
  951. package/lib/views/ContentView/contentView.d.ts +1 -1
  952. package/lib/views/ContentView/contentView.js +2 -2
  953. package/lib/views/ContentView/contentView.stories.d.ts +1 -1
  954. package/lib/views/ContentView/contentView.stories.js +3 -19
  955. package/lib/views/DataDictionaryView/dataDictionaryView.d.ts +1 -0
  956. package/lib/views/DataDictionaryView/dataDictionaryView.js +2 -3
  957. package/lib/views/EntityDetailView/entityDetailView.d.ts +1 -0
  958. package/lib/views/EntityDetailView/entityDetailView.js +4 -6
  959. package/lib/views/EntityExportMethodView/entityExportMethodView.d.ts +1 -0
  960. package/lib/views/EntityExportMethodView/entityExportMethodView.js +3 -3
  961. package/lib/views/EntityExportView/entityExportView.d.ts +1 -0
  962. package/lib/views/EntityExportView/entityExportView.js +3 -3
  963. package/lib/views/ExploreView/exploreView.d.ts +1 -0
  964. package/lib/views/ExploreView/exploreView.js +3 -11
  965. package/lib/views/ExportMethodView/exportMethodView.d.ts +1 -0
  966. package/lib/views/ExportMethodView/exportMethodView.js +2 -2
  967. package/lib/views/ExportView/exportView.d.ts +1 -0
  968. package/lib/views/ExportView/exportView.js +2 -2
  969. package/lib/views/LoginView/loginView.d.ts +1 -0
  970. package/lib/views/LoginView/loginView.js +2 -2
  971. package/package.json +50 -59
  972. package/src/apis/azul/common/filterTransformer.ts +5 -5
  973. package/src/common/analytics/analytics.ts +1 -1
  974. package/src/common/categories/config/range/typeGuards.ts +1 -1
  975. package/src/common/categories/config/types.ts +3 -5
  976. package/src/common/categories/config/utils.ts +4 -4
  977. package/src/common/categories/models/range/utils.ts +2 -2
  978. package/src/common/categories/models/select/utils.ts +2 -2
  979. package/src/common/categories/views/range/typeGuards.ts +1 -1
  980. package/src/common/categories/views/range/utils.ts +2 -2
  981. package/src/common/categories/views/select/typeGuards.ts +1 -1
  982. package/src/common/filters/sort/models/utils.ts +3 -3
  983. package/src/components/Authentication/components/SessionController/components/GoogleSessionController/SessionController.tsx +1 -1
  984. package/src/components/Authentication/components/SessionController/components/NextSessionController/SessionController.tsx +1 -1
  985. package/src/components/Authentication/components/SessionController/components/NextSessionController/utils.ts +3 -3
  986. package/src/components/ComponentCreator/ComponentCreator.tsx +4 -6
  987. package/src/components/ComponentCreator/components/ConditionalComponent/conditionalComponent.tsx +1 -1
  988. package/src/components/ComponentCreator/components/RenderComponent/renderComponent.tsx +1 -1
  989. package/src/components/DataDictionary/common/utils.ts +8 -8
  990. package/src/components/DataDictionary/components/Description/description.styles.ts +3 -1
  991. package/src/components/DataDictionary/components/Description/description.tsx +1 -1
  992. package/src/components/DataDictionary/components/Entities/entities.tsx +1 -1
  993. package/src/components/DataDictionary/components/Entity/entity.tsx +1 -1
  994. package/src/components/DataDictionary/components/Entity/utils.ts +1 -1
  995. package/src/components/DataDictionary/components/Filters/components/ColumnFilterTags/columnFilterTags.tsx +1 -1
  996. package/src/components/DataDictionary/components/Filters/components/ColumnFilterTags/types.ts +3 -2
  997. package/src/components/DataDictionary/components/Filters/components/ColumnFilters/columnFilters.tsx +1 -1
  998. package/src/components/DataDictionary/components/Filters/filters.tsx +1 -1
  999. package/src/components/DataDictionary/components/Filters/stories/constants.ts +1 -1
  1000. package/src/components/DataDictionary/components/Filters/stories/filters.stories.tsx +3 -3
  1001. package/src/components/DataDictionary/components/Filters/stories/utils.ts +1 -1
  1002. package/src/components/DataDictionary/components/Layout/components/EntitiesLayout/entitiesLayout.tsx +3 -3
  1003. package/src/components/DataDictionary/components/Layout/components/FiltersLayout/filtersLayout.tsx +3 -3
  1004. package/src/components/DataDictionary/components/Layout/components/OutlineLayout/outlineLayout.tsx +1 -1
  1005. package/src/components/DataDictionary/components/Layout/components/TitleLayout/titleLayout.tsx +1 -1
  1006. package/src/components/DataDictionary/components/Outline/components/ContentsTab/contentsTab.tsx +1 -1
  1007. package/src/components/DataDictionary/components/Outline/outline.tsx +1 -1
  1008. package/src/components/DataDictionary/components/Outline/utils.ts +3 -3
  1009. package/src/components/DataDictionary/components/Table/components/BasicCell/basicCell.tsx +2 -2
  1010. package/src/components/DataDictionary/components/Table/hook.ts +1 -1
  1011. package/src/components/DataDictionary/components/Table/options/columnFilters/hook.ts +3 -3
  1012. package/src/components/DataDictionary/components/Table/options/globalFilter/hook.ts +3 -3
  1013. package/src/components/DataDictionary/components/Table/table.tsx +2 -2
  1014. package/src/components/DataDictionary/components/Table/utils.ts +4 -4
  1015. package/src/components/DataDictionary/components/Title/title.tsx +1 -1
  1016. package/src/components/DataDictionary/components/Tooltip/components/Title/title.tsx +1 -1
  1017. package/src/components/DataDictionary/components/Tooltip/tooltip.tsx +1 -1
  1018. package/src/components/DataDictionary/dataDictionary.tsx +1 -1
  1019. package/src/components/DataDictionary/hooks/UseDataDictionaryConfig/hook.ts +2 -2
  1020. package/src/components/DataDictionary/hooks/UseMeasureFilters/hook.ts +1 -1
  1021. package/src/components/DataDictionary/hooks/UseMeasureFilters/types.ts +1 -1
  1022. package/src/components/Detail/components/AccessibilityBadge/accessibilityBadge.tsx +1 -1
  1023. package/src/components/Detail/components/DetailViewTable/detailViewTable.tsx +1 -1
  1024. package/src/components/Detail/components/Table/common/utils.ts +1 -1
  1025. package/src/components/Detail/components/Table/components/TableBody/tableBody.tsx +1 -1
  1026. package/src/components/Detail/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.tsx +1 -1
  1027. package/src/components/Detail/components/Table/components/TableRows/tableRows.tsx +1 -1
  1028. package/src/components/Detail/components/Table/stories/filter/filter.stories.tsx +1 -1
  1029. package/src/components/Detail/components/Table/stories/table.stories.tsx +3 -3
  1030. package/src/components/Detail/components/Table/table.tsx +1 -1
  1031. package/src/components/Detail/detail.stories.tsx +1 -2
  1032. package/src/components/Detail/detail.tsx +1 -1
  1033. package/src/components/Error/error.stories.tsx +1 -1
  1034. package/src/components/Error/error.tsx +8 -9
  1035. package/src/components/ErrorBoundary/errorBoundary.tsx +3 -3
  1036. package/src/components/Export/common/tracking.ts +2 -2
  1037. package/src/components/Export/common/utils.ts +4 -4
  1038. package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandForm/downloadCurlCommandForm.tsx +1 -1
  1039. package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandNotStarted/downloadCurlCommandNotStarted.tsx +1 -1
  1040. package/src/components/Export/components/DownloadCurlCommand/components/DownloadCurlCommandReady/downloadCurlCommandReady.tsx +1 -1
  1041. package/src/components/Export/components/DownloadCurlCommand/downloadCurlCommand.tsx +4 -4
  1042. package/src/components/Export/components/ExportForm/common/entities.ts +1 -1
  1043. package/src/components/Export/components/ExportForm/components/ExportButton/exportButton.tsx +1 -1
  1044. package/src/components/Export/components/ExportForm/components/ExportExecutionEnvironmentForm/exportExecutionEnvironmentForm.tsx +3 -3
  1045. package/src/components/Export/components/ExportForm/components/ExportFileSummaryForm/exportFileSummaryForm.tsx +2 -2
  1046. package/src/components/Export/components/ExportForm/components/ExportManifestDownloadFormatForm/exportManifestDownloadFormatForm.tsx +1 -1
  1047. package/src/components/Export/components/ExportForm/components/ExportSpeciesForm/exportSpeciesForm.tsx +1 -1
  1048. package/src/components/Export/components/ExportForm/exportForm.tsx +3 -3
  1049. package/src/components/Export/components/ExportMethod/exportMethod.stories.tsx +1 -1
  1050. package/src/components/Export/components/ExportMethod/exportMethod.tsx +9 -15
  1051. package/src/components/Export/components/ExportSummary/common/utils.ts +1 -1
  1052. package/src/components/Export/components/ExportSummary/components/ExportCurrentQuery/exportCurrentQuery.tsx +1 -1
  1053. package/src/components/Export/components/ExportSummary/components/ExportSelectedDataSummary/exportSelectedDataSummary.tsx +1 -1
  1054. package/src/components/Export/components/ExportSummary/exportSummary.tsx +1 -1
  1055. package/src/components/Export/components/ExportToTerra/components/ExportToTerraForm/exportToTerraForm.tsx +1 -1
  1056. package/src/components/Export/components/ExportToTerra/components/ExportToTerraNotStarted/exportToTerraNotStarted.tsx +1 -1
  1057. package/src/components/Export/components/ExportToTerra/components/ExportToTerraReady/exportToTerraReady.tsx +2 -2
  1058. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/AcceptTerraTOS/acceptTerraTOS.tsx +3 -3
  1059. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/ConnectTerraToNIHAccount/connectTerraToNIHAccount.tsx +2 -2
  1060. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/components/CreateTerraAccount/createTerraAccount.tsx +2 -2
  1061. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/FormStep/formStep.tsx +1 -1
  1062. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/components/NIHAccountExpiryWarning/nihAccountExpiryWarning.tsx +2 -2
  1063. package/src/components/Export/components/ExportToTerra/components/TerraSetUpForm/terraSetUpForm.tsx +9 -9
  1064. package/src/components/Export/components/ExportToTerra/exportToTerra.tsx +3 -3
  1065. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestDownload/fileManifestDownload.tsx +1 -1
  1066. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/components/FileManifestSpreadsheet/fileManifestSpreadsheet.tsx +1 -1
  1067. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadEntity/manifestDownloadEntity.tsx +1 -1
  1068. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadForm/manifestDownloadForm.tsx +1 -1
  1069. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadNotStarted/manifestDownloadNotStarted.tsx +1 -1
  1070. package/src/components/Export/components/ManifestDownload/components/ManifestDownloadReady/manifestDownloadReady.tsx +1 -1
  1071. package/src/components/Export/components/ManifestDownload/manifestDownload.tsx +4 -4
  1072. package/src/components/Filter/common/entities.ts +2 -2
  1073. package/src/components/Filter/common/utils.ts +3 -3
  1074. package/src/components/Filter/components/ClearAllFilters/clearAllFilters.tsx +1 -1
  1075. package/src/components/Filter/components/Filter/components/DrawerTransition/drawerTransition.tsx +3 -3
  1076. package/src/components/Filter/components/Filter/filter.tsx +1 -1
  1077. package/src/components/Filter/components/Filter/stories/args.ts +1 -1
  1078. package/src/components/Filter/components/Filter/stories/filter.stories.tsx +2 -2
  1079. package/src/components/Filter/components/FilterCountChip/filterCountChip.tsx +1 -1
  1080. package/src/components/Filter/components/FilterCountChip/stories/filterCountChip.stories.tsx +1 -1
  1081. package/src/components/Filter/components/FilterLabel/filterLabel.stories.tsx +2 -2
  1082. package/src/components/Filter/components/FilterLabel/filterLabel.tsx +1 -1
  1083. package/src/components/Filter/components/FilterMenu/filterMenu.stories.tsx +2 -2
  1084. package/src/components/Filter/components/FilterMenu/filterMenu.tsx +2 -2
  1085. package/src/components/Filter/components/FilterMenuSearch/filterMenuSearch.tsx +1 -1
  1086. package/src/components/Filter/components/FilterNoResultsFound/filterNoResultsFound.tsx +2 -2
  1087. package/src/components/Filter/components/FilterRange/filterRange.tsx +5 -5
  1088. package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/hook.ts +3 -3
  1089. package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/schema.ts +3 -3
  1090. package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/types.ts +1 -1
  1091. package/src/components/Filter/components/FilterRange/hooks/UseFilterRange/utils.ts +2 -2
  1092. package/src/components/Filter/components/FilterRange/stories/args.ts +1 -1
  1093. package/src/components/Filter/components/FilterRange/stories/filterRange.stories.tsx +1 -1
  1094. package/src/components/Filter/components/FilterRange/types.ts +1 -2
  1095. package/src/components/Filter/components/FilterRange/utils.ts +1 -1
  1096. package/src/components/Filter/components/FilterTag/filterTag.tsx +1 -1
  1097. package/src/components/Filter/components/FilterTag/stories/args.ts +2 -2
  1098. package/src/components/Filter/components/FilterTag/stories/filterTag.stories.tsx +2 -2
  1099. package/src/components/Filter/components/FilterTag/utils.ts +3 -3
  1100. package/src/components/Filter/components/FilterTags/filterTags.stories.tsx +2 -2
  1101. package/src/components/Filter/components/FilterTags/filterTags.tsx +1 -1
  1102. package/src/components/Filter/components/Filters/filters.tsx +4 -4
  1103. package/src/components/Filter/components/Filters/stories/args.ts +1 -1
  1104. package/src/components/Filter/components/Filters/stories/filters.stories.tsx +2 -2
  1105. package/src/components/Filter/components/HighlightedLabel/highlightedLabel.tsx +1 -1
  1106. package/src/components/Filter/components/SearchAllFilters/common/utils.ts +1 -1
  1107. package/src/components/Filter/components/SearchAllFilters/components/OutlinedInput/outlinedInput.tsx +2 -2
  1108. package/src/components/Filter/components/SearchAllFilters/components/OutlinedInput/utils.ts +1 -1
  1109. package/src/components/Filter/components/SearchAllFilters/components/VariableSizeList/VariableSizeList.tsx +13 -12
  1110. package/src/components/Filter/components/SearchAllFilters/components/VariableSizeListItem/variableSizeListItem.tsx +5 -5
  1111. package/src/components/Filter/components/SearchAllFilters/searchAllFilters.tsx +22 -23
  1112. package/src/components/Filter/components/SearchAllFilters/stories/args.ts +1 -1
  1113. package/src/components/Filter/components/SearchAllFilters/stories/searchAllFilters.stories.tsx +2 -2
  1114. package/src/components/Filter/components/SearchAllFilters/types.ts +2 -1
  1115. package/src/components/Filter/components/VariableSizeList/VariableSizeList.tsx +7 -7
  1116. package/src/components/Filter/components/VariableSizeListItem/variableSizeListItem.tsx +1 -1
  1117. package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/columnFiltersAdapter.tsx +3 -3
  1118. package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/hooks/UseUpdateFilterSort/hook.ts +3 -3
  1119. package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/hooks/UseUpdateFilterSort/utils.ts +2 -2
  1120. package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/types.ts +4 -2
  1121. package/src/components/Filter/components/adapters/tanstack/ColumnFiltersAdapter/utils.ts +16 -16
  1122. package/src/components/Filter/components/controls/Controls/components/FilterSort/filterSort.tsx +1 -1
  1123. package/src/components/Filter/components/controls/Controls/components/FilterSort/stories/filterSort.stories.tsx +1 -1
  1124. package/src/components/Filter/components/controls/Controls/controls.tsx +1 -1
  1125. package/src/components/Filter/components/controls/Controls/types.ts +2 -1
  1126. package/src/components/Filter/components/surfaces/drawer/Drawer/drawer.tsx +1 -1
  1127. package/src/components/Filter/components/surfaces/drawer/Drawer/types.ts +1 -3
  1128. package/src/components/Filter/components/surfaces/drawer/components/Button/button.tsx +1 -1
  1129. package/src/components/Filter/components/surfaces/drawer/components/ButtonBase/buttonBase.tsx +1 -1
  1130. package/src/components/Filter/components/surfaces/drawer/components/IconButton/iconButton.tsx +1 -1
  1131. package/src/components/Filter/components/views/select/SelectListItem/selectListItem.tsx +3 -3
  1132. package/src/components/Filter/components/views/select/components/Checkbox/checkbox.tsx +1 -1
  1133. package/src/components/Filter/components/views/select/components/ListItemButton/listItemButton.tsx +2 -2
  1134. package/src/components/Filter/components/views/select/components/ListItemText/components/Count/count.tsx +1 -1
  1135. package/src/components/Filter/components/views/select/components/ListItemText/components/Term/term.tsx +1 -1
  1136. package/src/components/Filter/components/views/select/components/ListItemText/listItemText.tsx +3 -3
  1137. package/src/components/Head/head.tsx +1 -1
  1138. package/src/components/Index/components/AzulFileDownload/azulFileDownload.stories.tsx +1 -1
  1139. package/src/components/Index/components/AzulFileDownload/azulFileDownload.tsx +1 -1
  1140. package/src/components/Index/components/EntityView/components/controls/ActionButton/actionButton.tsx +1 -1
  1141. package/src/components/Index/components/EntityView/components/controls/ExportButton/exportButton.tsx +1 -1
  1142. package/src/components/Index/components/EntityView/components/controls/FilterButton/filterButton.tsx +1 -1
  1143. package/src/components/Index/components/EntityView/components/controls/ViewToggle/stories/viewToggle.stories.tsx +1 -1
  1144. package/src/components/Index/components/EntityView/components/controls/ViewToggle/viewToggle.tsx +1 -1
  1145. package/src/components/Index/components/EntityView/components/layout/Summary/summary.tsx +1 -1
  1146. package/src/components/Index/components/EntityView/components/layout/Title/title.tsx +1 -1
  1147. package/src/components/Index/components/EntityView/components/navigation/Tabs/common/utils.ts +1 -1
  1148. package/src/components/Index/components/EntityView/components/navigation/Tabs/tabs.tsx +1 -1
  1149. package/src/components/Index/components/EntityView/components/slots/EntityListSlot/entityListSlot.tsx +1 -1
  1150. package/src/components/Index/components/EntityView/components/slots/EntityViewSlot/entityViewSlot.tsx +1 -1
  1151. package/src/components/Index/components/EntityView/components/views/ChartView/chartView.tsx +1 -1
  1152. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/barX/plot.ts +1 -1
  1153. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/barX/utils.ts +7 -7
  1154. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/chart.tsx +1 -1
  1155. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UseBarCount/hook.ts +2 -2
  1156. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UseBarCount/utils.ts +3 -3
  1157. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/hooks/UsePlotOptions/hook.ts +3 -3
  1158. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/stories/chart.stories.tsx +2 -2
  1159. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/types.ts +1 -2
  1160. package/src/components/Index/components/EntityView/components/views/ChartView/components/Chart/utils.ts +1 -1
  1161. package/src/components/Index/components/EntityView/components/views/ChartView/hooks/UseChartView/types.ts +1 -1
  1162. package/src/components/Index/components/EntityView/components/views/ChartView/hooks/UseChartView/useChartView.ts +4 -4
  1163. package/src/components/Index/components/EntityView/components/views/ChartView/stories/chartView.stories.tsx +2 -2
  1164. package/src/components/Index/components/EntityView/components/views/ChartView/utils.ts +1 -1
  1165. package/src/components/Index/components/EntityView/components/views/TableView/tableView.tsx +1 -1
  1166. package/src/components/Index/index.tsx +1 -1
  1167. package/src/components/Index/table/coreOptions/columns/cellFactory.tsx +1 -1
  1168. package/src/components/Index/table/hook.ts +7 -7
  1169. package/src/components/Layout/components/BackPage/backPageView.stories.tsx +1 -2
  1170. package/src/components/Layout/components/BackPage/backPageView.tsx +3 -3
  1171. package/src/components/Layout/components/BackPage/components/BackPageHero/backPageHero.tsx +1 -1
  1172. package/src/components/Layout/components/BackPage/components/BackPageHero/components/Actions/actions.tsx +1 -1
  1173. package/src/components/Layout/components/BackPage/components/BackPageHero/components/SubTitle/subTitle.tsx +1 -1
  1174. package/src/components/Layout/components/BackPage/components/BackPageHero/stories/backPageHero.stories.tsx +1 -1
  1175. package/src/components/Layout/components/ContentLayout/components/Main/main.tsx +1 -1
  1176. package/src/components/Layout/components/ContentLayout/contentLayout.styles.ts +1 -1
  1177. package/src/components/Layout/components/ContentLayout/contentLayout.tsx +1 -1
  1178. package/src/components/Layout/components/Floating/floating.tsx +1 -1
  1179. package/src/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/title.tsx +1 -1
  1180. package/src/components/Layout/components/Footer/components/VersionInfo/components/Tooltip/components/Title/utils.ts +2 -2
  1181. package/src/components/Layout/components/Footer/components/VersionInfo/versionInfo.tsx +1 -1
  1182. package/src/components/Layout/components/Footer/footer.stories.tsx +1 -2
  1183. package/src/components/Layout/components/Footer/footer.tsx +1 -1
  1184. package/src/components/Layout/components/Header/common/entities.ts +1 -1
  1185. package/src/components/Layout/components/Header/common/utils.ts +10 -10
  1186. package/src/components/Layout/components/Header/components/Announcements/announcements.tsx +1 -1
  1187. package/src/components/Layout/components/Header/components/Content/components/Actions/actions.tsx +1 -1
  1188. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/authentication.tsx +2 -2
  1189. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.tsx +1 -1
  1190. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Menu/components/Toolbar/toolbar.tsx +1 -1
  1191. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Menu/menu.tsx +3 -3
  1192. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/common/utils.ts +2 -2
  1193. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchBar/searchBar.tsx +5 -4
  1194. package/src/components/Layout/components/Header/components/Content/components/Actions/components/Search/search.tsx +1 -1
  1195. package/src/components/Layout/components/Header/components/Content/components/Logo/logo.tsx +1 -1
  1196. package/src/components/Layout/components/Header/components/Content/components/Navigation/common/utils.ts +1 -1
  1197. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationButtonLabel/navigationButtonLabel.tsx +1 -1
  1198. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/components/Slide/slide.tsx +2 -2
  1199. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationDrawer/navigationDrawer.tsx +1 -1
  1200. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenu/navigationMenu.tsx +1 -1
  1201. package/src/components/Layout/components/Header/components/Content/components/Navigation/components/NavigationMenuItems/navigationMenuItems.tsx +3 -3
  1202. package/src/components/Layout/components/Header/components/Content/components/Navigation/navigation.tsx +7 -7
  1203. package/src/components/Layout/components/Header/components/Content/components/Slogan/slogan.tsx +2 -2
  1204. package/src/components/Layout/components/Header/header.stories.tsx +1 -2
  1205. package/src/components/Layout/components/Header/header.tsx +1 -1
  1206. package/src/components/Layout/components/Header/hooks/useHeaderNavigation.ts +1 -1
  1207. package/src/components/Layout/components/Header/hooks/useHeaderVisibility.ts +1 -1
  1208. package/src/components/Layout/components/Main/main.tsx +1 -1
  1209. package/src/components/Layout/components/Nav/components/NavBarHero/navBarHero.tsx +1 -1
  1210. package/src/components/Layout/components/Nav/nav.stories.tsx +1 -1
  1211. package/src/components/Layout/components/Nav/nav.tsx +9 -6
  1212. package/src/components/Layout/components/Outline/components/ContentsTab/contentsTab.tsx +1 -1
  1213. package/src/components/Layout/components/Outline/components/ContentsTab/types.ts +1 -2
  1214. package/src/components/Layout/components/Outline/hooks/UseTabs/hook.ts +1 -1
  1215. package/src/components/Layout/components/Outline/hooks/UseTabs/utils.ts +1 -1
  1216. package/src/components/Layout/components/Outline/outline.tsx +2 -2
  1217. package/src/components/Layout/components/Sidebar/components/SidebarButton/sidebarButton.tsx +1 -1
  1218. package/src/components/Layout/components/Sidebar/components/SidebarDrawer/sidebarDrawer.tsx +1 -1
  1219. package/src/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.stories.tsx +1 -1
  1220. package/src/components/Layout/components/Sidebar/components/SidebarLabel/sidebarLabel.tsx +1 -1
  1221. package/src/components/Layout/components/Sidebar/components/SidebarPositioner/sidebarPositioner.tsx +1 -1
  1222. package/src/components/Layout/components/Sidebar/sidebar.stories.tsx +2 -2
  1223. package/src/components/Layout/components/Sidebar/sidebar.tsx +1 -1
  1224. package/src/components/Links/common/utils.ts +2 -2
  1225. package/src/components/Links/components/Link/components/ExploreViewLink/exploreViewLink.tsx +11 -9
  1226. package/src/components/Links/components/Link/link.tsx +2 -3
  1227. package/src/components/Links/links.stories.tsx +1 -1
  1228. package/src/components/Links/links.tsx +1 -1
  1229. package/src/components/Loading/loading.stories.tsx +2 -2
  1230. package/src/components/Loading/loading.tsx +1 -1
  1231. package/src/components/Login/components/Button/button.tsx +1 -1
  1232. package/src/components/Login/components/Buttons/buttons.tsx +1 -1
  1233. package/src/components/Login/components/Section/components/Consent/consent.tsx +1 -1
  1234. package/src/components/Login/components/Section/components/Consent/types.ts +2 -1
  1235. package/src/components/Login/components/Section/components/Warning/warning.tsx +1 -1
  1236. package/src/components/Login/hooks/useUserConsent/useUserConsent.ts +1 -1
  1237. package/src/components/Login/hooks/useUserLogin/types.ts +4 -2
  1238. package/src/components/Login/hooks/useUserLogin/useUserLogin.ts +1 -1
  1239. package/src/components/Login/login.tsx +2 -2
  1240. package/src/components/MarkdownRenderer/components/Anchor/anchor.tsx +2 -2
  1241. package/src/components/MarkdownRenderer/components/Table/table.tsx +2 -2
  1242. package/src/components/MarkdownRenderer/constants.ts +2 -2
  1243. package/src/components/MarkdownRenderer/markdownRenderer.tsx +20 -24
  1244. package/src/components/MarkdownRenderer/stories/markdownRenderer.stories.tsx +2 -2
  1245. package/src/components/MarkdownRenderer/types.ts +2 -5
  1246. package/src/components/NoResults/noResults.tsx +1 -1
  1247. package/src/components/Plot/components/BarX/barX.tsx +1 -1
  1248. package/src/components/Project/components/Citation/citation.stories.tsx +1 -1
  1249. package/src/components/Project/components/Citation/citation.tsx +1 -1
  1250. package/src/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.stories.tsx +1 -1
  1251. package/src/components/Project/components/CollaboratingOrganizations/collaboratingOrganizations.tsx +1 -1
  1252. package/src/components/Project/components/Contacts/contacts.stories.tsx +1 -1
  1253. package/src/components/Project/components/Contacts/contacts.tsx +3 -8
  1254. package/src/components/Project/components/Contributors/contributors.stories.tsx +1 -1
  1255. package/src/components/Project/components/Contributors/contributors.tsx +1 -1
  1256. package/src/components/Project/components/DataCurators/dataCurators.stories.tsx +1 -1
  1257. package/src/components/Project/components/DataCurators/dataCurators.tsx +1 -1
  1258. package/src/components/Project/components/DataReleasePolicy/dataReleasePolicy.stories.tsx +1 -1
  1259. package/src/components/Project/components/DataReleasePolicy/dataReleasePolicy.tsx +6 -6
  1260. package/src/components/Project/components/Description/description.stories.tsx +1 -1
  1261. package/src/components/Project/components/Description/description.tsx +1 -1
  1262. package/src/components/Project/components/Details/details.stories.tsx +1 -1
  1263. package/src/components/Project/components/Details/details.tsx +1 -1
  1264. package/src/components/Project/components/Publications/publications.stories.tsx +1 -1
  1265. package/src/components/Project/components/Publications/publications.tsx +3 -3
  1266. package/src/components/Project/components/SupplementaryLinks/supplementaryLinks.stories.tsx +1 -1
  1267. package/src/components/Project/components/SupplementaryLinks/supplementaryLinks.tsx +1 -1
  1268. package/src/components/Redirect/redirect.tsx +1 -1
  1269. package/src/components/Stepper/components/Step/components/StepContent/stepContent.tsx +1 -1
  1270. package/src/components/Stepper/components/Step/components/StepIcon/components/CompletedIcon/completedIcon.tsx +1 -1
  1271. package/src/components/Stepper/components/Step/components/StepIcon/stepIcon.tsx +1 -1
  1272. package/src/components/Stepper/components/Step/components/StepIcon/stories/stepIcon.stories.tsx +2 -2
  1273. package/src/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/icon.tsx +1 -1
  1274. package/src/components/Stepper/components/Step/components/StepLabel/components/Label/components/Icon/stories/icon.stories.tsx +2 -2
  1275. package/src/components/Stepper/components/Step/components/StepLabel/components/Label/label.tsx +1 -1
  1276. package/src/components/Stepper/components/Step/components/StepLabel/components/Label/stories/label.stories.tsx +5 -2
  1277. package/src/components/Stepper/components/Step/components/StepLabel/components/Optional/optional.tsx +1 -1
  1278. package/src/components/Stepper/components/Step/components/StepLabel/stepLabel.tsx +1 -1
  1279. package/src/components/Stepper/components/Step/components/StepLabel/stories/stepLabel.stories.tsx +7 -3
  1280. package/src/components/Stepper/components/Step/step.tsx +1 -1
  1281. package/src/components/Stepper/components/Step/stories/step.stories.tsx +8 -4
  1282. package/src/components/Support/components/SupportRequest/components/Dialog/dialog.tsx +2 -1
  1283. package/src/components/Support/components/SupportRequest/components/Dropzone/dropzone.tsx +1 -1
  1284. package/src/components/Support/components/SupportRequest/components/SupportRequestForm/common/utils.ts +5 -5
  1285. package/src/components/Support/components/SupportRequest/components/SupportRequestForm/supportRequestForm.tsx +11 -9
  1286. package/src/components/Support/components/SupportRequest/components/SupportRequestSubmitted/supportRequestSubmitted.tsx +1 -1
  1287. package/src/components/Support/components/SupportRequest/supportRequest.tsx +1 -1
  1288. package/src/components/Support/components/ViewSupport/types.ts +1 -2
  1289. package/src/components/Support/components/ViewSupport/viewSupport.tsx +1 -1
  1290. package/src/components/Table/columnDef/accessorFn/typeGuards.ts +1 -1
  1291. package/src/components/Table/columnDef/columnFilters/filterFn.ts +1 -1
  1292. package/src/components/Table/columnDef/globalFilter/filterFn.ts +1 -1
  1293. package/src/components/Table/columnDef/globalFilter/utils.ts +3 -3
  1294. package/src/components/Table/common/typeGuards.ts +1 -1
  1295. package/src/components/Table/common/utils.ts +10 -10
  1296. package/src/components/Table/components/PaginationSummary/paginationSummary.tsx +1 -1
  1297. package/src/components/Table/components/TableBody/tableBody.tsx +1 -1
  1298. package/src/components/Table/components/TableCell/common/utils.ts +2 -2
  1299. package/src/components/Table/components/TableCell/components/BasicCell/basicCell.tsx +1 -1
  1300. package/src/components/Table/components/TableCell/components/ChipCell/chipCell.tsx +2 -2
  1301. package/src/components/Table/components/TableCell/components/CodeCell/codeCell.tsx +2 -2
  1302. package/src/components/Table/components/TableCell/components/CollapsableCell/collapsableCell.tsx +2 -2
  1303. package/src/components/Table/components/TableCell/components/LinkCell/linkCell.tsx +2 -2
  1304. package/src/components/Table/components/TableCell/components/LinkCell/stories/linkCell.stories.tsx +1 -1
  1305. package/src/components/Table/components/TableCell/components/LinkCell/utils.ts +2 -2
  1306. package/src/components/Table/components/TableCell/components/MarkdownCell/markdownCell.styles.ts +3 -1
  1307. package/src/components/Table/components/TableCell/components/MarkdownCell/markdownCell.tsx +2 -2
  1308. package/src/components/Table/components/TableCell/components/MarkdownCell/stories/markdownCell.stories.tsx +2 -2
  1309. package/src/components/Table/components/TableCell/components/NTagCell/components/NTag/components/Tooltip/tooltip.tsx +2 -2
  1310. package/src/components/Table/components/TableCell/components/NTagCell/components/NTag/nTag.tsx +1 -1
  1311. package/src/components/Table/components/TableCell/components/NTagCell/nTagCell.tsx +1 -1
  1312. package/src/components/Table/components/TableCell/components/RankedCell/rankedCell.tsx +2 -2
  1313. package/src/components/Table/components/TableCell/components/RankedCell/utils.ts +1 -1
  1314. package/src/components/Table/components/TableCell/components/RowPositionCell/rowPositionCell.tsx +1 -1
  1315. package/src/components/Table/components/TableCell/components/RowSelectionCell/rowSelectionCell.tsx +1 -1
  1316. package/src/components/Table/components/TableFeatures/ColumnFilter/columnFilter.tsx +2 -2
  1317. package/src/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/columnFilterTag.tsx +1 -1
  1318. package/src/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/stories/columFilterTag.stories.tsx +4 -3
  1319. package/src/components/Table/components/TableFeatures/ColumnFilter/components/ColumnFilterTag/types.ts +1 -2
  1320. package/src/components/Table/components/TableFeatures/ColumnFilter/types.ts +1 -2
  1321. package/src/components/Table/components/TableFeatures/ColumnFilter/utils.ts +1 -1
  1322. package/src/components/Table/components/TableFeatures/ColumnGrouping/utils.ts +2 -2
  1323. package/src/components/Table/components/TableFeatures/ColumnVisibility/utils.ts +1 -1
  1324. package/src/components/Table/components/TableFeatures/GlobalFilter/globalFilter.tsx +1 -1
  1325. package/src/components/Table/components/TableFeatures/GlobalFilter/types.ts +1 -2
  1326. package/src/components/Table/components/TableFeatures/RowSorting/utils.ts +2 -2
  1327. package/src/components/Table/components/TableFeatures/TableDownload/tableDownload.tsx +1 -1
  1328. package/src/components/Table/components/TableFeatures/TableDownload/types.ts +3 -2
  1329. package/src/components/Table/components/TableHead/components/HeadSelectionCell/headSelectionCell.tsx +1 -1
  1330. package/src/components/Table/components/TableHead/tableHead.tsx +1 -1
  1331. package/src/components/Table/components/TableHead/utils.ts +1 -1
  1332. package/src/components/Table/components/TablePagination/stories/args.ts +1 -1
  1333. package/src/components/Table/components/TablePagination/stories/tablePagination.stories.tsx +1 -1
  1334. package/src/components/Table/components/TablePagination/tablePagination.tsx +1 -1
  1335. package/src/components/Table/components/TableRows/components/CollapsableRows/collapsableRows.tsx +1 -1
  1336. package/src/components/Table/components/TableRows/components/VirtualizedRow/virtualizedRow.tsx +4 -4
  1337. package/src/components/Table/components/TableRows/tableRows.tsx +1 -1
  1338. package/src/components/Table/components/TableToolbar/components/ColumnGrouping/columnGrouping.tsx +1 -1
  1339. package/src/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/menuItems.tsx +1 -1
  1340. package/src/components/Table/components/TableToolbar/components/ColumnGrouping/components/MenuItems/utils.ts +3 -3
  1341. package/src/components/Table/components/TableToolbar/components/ColumnGrouping/utils.ts +2 -2
  1342. package/src/components/Table/components/TableToolbar/components/ColumnVisibility/columnVisibility.tsx +1 -1
  1343. package/src/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/menuItems.tsx +1 -1
  1344. package/src/components/Table/components/TableToolbar/components/ColumnVisibility/components/MenuItems/utils.ts +4 -4
  1345. package/src/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.styles.ts +3 -1
  1346. package/src/components/Table/components/TableToolbar/components/RowPreview/components/RowDrawer/rowDrawer.tsx +5 -3
  1347. package/src/components/Table/components/TableToolbar/components/RowPreview/components/Section/components/RowDetail/rowDetail.tsx +2 -2
  1348. package/src/components/Table/components/TableToolbar/components/RowPreview/components/Section/section.tsx +1 -1
  1349. package/src/components/Table/components/TableToolbar/components/RowPreview/rowPreview.tsx +1 -1
  1350. package/src/components/Table/components/TableToolbar/components/RowSelection/components/DropdownMenu/dropdownMenu.tsx +1 -1
  1351. package/src/components/Table/components/TableToolbar/components/RowSelection/rowSelection.tsx +1 -1
  1352. package/src/components/Table/components/TableToolbar/tableToolbar.tsx +1 -1
  1353. package/src/components/Table/components/TableToolbar2/tableToolbar2.tsx +1 -1
  1354. package/src/components/Table/coreOptions/state/pagination/utils.ts +1 -1
  1355. package/src/components/Table/featureOptions/facetedColumn/getFacetedMinMaxValues.ts +3 -3
  1356. package/src/components/Table/featureOptions/facetedColumn/utils.ts +2 -2
  1357. package/src/components/Table/features/RowPosition/constants.ts +1 -1
  1358. package/src/components/Table/features/RowPosition/utils.ts +3 -3
  1359. package/src/components/Table/features/RowPreview/constants.ts +1 -1
  1360. package/src/components/Table/features/RowPreview/utils.ts +4 -4
  1361. package/src/components/Table/features/RowSelectionValidation/utils.ts +1 -1
  1362. package/src/components/Table/features/TableDownload/constants.ts +1 -1
  1363. package/src/components/Table/features/TableDownload/onDownload/utils.ts +2 -2
  1364. package/src/components/Table/features/TableDownload/utils.ts +1 -1
  1365. package/src/components/Table/features/entities.ts +4 -6
  1366. package/src/components/Table/hooks/UseVirtualization/types.ts +1 -1
  1367. package/src/components/Table/hooks/UseVirtualization/utils.ts +1 -1
  1368. package/src/components/Table/options/updater.ts +1 -1
  1369. package/src/components/Table/table.tsx +1 -1
  1370. package/src/components/TableCreator/common/utils.ts +1 -1
  1371. package/src/components/TableCreator/options/columnTrackSizing/typeGuards.ts +1 -1
  1372. package/src/components/TableCreator/options/columnTrackSizing/utils.ts +2 -2
  1373. package/src/components/TableCreator/options/grouping/hook.ts +1 -1
  1374. package/src/components/TableCreator/options/initialState/columnVisibility.ts +1 -1
  1375. package/src/components/TableCreator/options/initialState/hook.ts +2 -2
  1376. package/src/components/TableCreator/options/rowSelection/hook.ts +1 -1
  1377. package/src/components/TableCreator/options/visibility/hook.ts +1 -1
  1378. package/src/components/TableCreator/tableCreator.tsx +1 -1
  1379. package/src/components/TempError/components/errorBox.tsx +1 -1
  1380. package/src/components/TempError/tempError.tsx +1 -1
  1381. package/src/components/common/Accordion/accordion.stories.tsx +1 -2
  1382. package/src/components/common/Accordion/accordion.tsx +1 -1
  1383. package/src/components/common/Alert/alert.tsx +2 -2
  1384. package/src/components/common/AnchorLink/anchorLink.tsx +1 -1
  1385. package/src/components/common/Banner/banner.tsx +2 -2
  1386. package/src/components/common/Banner/components/CookieBanner/cookieBanner.tsx +2 -3
  1387. package/src/components/common/Banner/components/SessionTimeout/sessionTimeout.tsx +1 -1
  1388. package/src/components/common/Banner/components/SystemIndexing/systemIndexing.tsx +1 -1
  1389. package/src/components/common/Banner/components/SystemStatus/systemStatus.tsx +1 -1
  1390. package/src/components/common/Breadcrumbs/breadcrumbs.stories.tsx +1 -1
  1391. package/src/components/common/Breadcrumbs/breadcrumbs.tsx +2 -2
  1392. package/src/components/common/Button/button.tsx +3 -3
  1393. package/src/components/common/Button/components/ButtonOutline/buttonOutline.tsx +3 -3
  1394. package/src/components/common/Button/components/ButtonPrimary/buttonPrimary.tsx +3 -3
  1395. package/src/components/common/Button/components/ButtonSecondary/buttonSecondary.tsx +3 -3
  1396. package/src/components/common/Button/components/ButtonSecondaryOutline/buttonSecondaryOutline.tsx +2 -2
  1397. package/src/components/common/Button/components/ButtonText/buttonText.tsx +1 -1
  1398. package/src/components/common/Button/components/ButtonTextPrimary/buttonTextPrimary.tsx +1 -1
  1399. package/src/components/common/Button/components/ButtonTextUnderline/buttonTextUnderline.tsx +1 -1
  1400. package/src/components/common/Button/components/CallToActionButton/callToActionButton.stories.tsx +1 -1
  1401. package/src/components/common/Button/components/CallToActionButton/callToActionButton.tsx +13 -14
  1402. package/src/components/common/Button/components/DropdownButton/dropdownButton.tsx +1 -1
  1403. package/src/components/common/Button/components/FileDownloadButton/fileDownloadButton.tsx +1 -1
  1404. package/src/components/common/Button/components/HelpIconButton/helpIconButton.stories.tsx +1 -1
  1405. package/src/components/common/Button/components/HelpIconButton/helpIconButton.tsx +9 -10
  1406. package/src/components/common/Button/components/NavigationButton/navigationButton.tsx +5 -3
  1407. package/src/components/common/ButtonGroup/buttonGroup.tsx +1 -1
  1408. package/src/components/common/ButtonGroup/components/ButtonGroupButton/buttonGroupButton.tsx +1 -1
  1409. package/src/components/common/Card/card.stories.tsx +1 -1
  1410. package/src/components/common/Card/card.tsx +1 -1
  1411. package/src/components/common/Card/components/CardAction/cardAction.tsx +1 -1
  1412. package/src/components/common/Card/components/CardActionArea/cardActionArea.tsx +2 -2
  1413. package/src/components/common/Card/components/CardActions/cardActions.tsx +1 -1
  1414. package/src/components/common/Card/components/CardMedia/cardMedia.tsx +1 -1
  1415. package/src/components/common/Card/components/CardSecondaryText/cardSecondaryText.tsx +1 -1
  1416. package/src/components/common/Card/components/CardSecondaryTitle/cardSecondaryTitle.tsx +1 -1
  1417. package/src/components/common/Card/components/CardText/cardText.tsx +1 -1
  1418. package/src/components/common/Card/components/CardTitle/cardTitle.tsx +1 -1
  1419. package/src/components/common/Card/components/RoundedCard/roundedCard.tsx +1 -1
  1420. package/src/components/common/Code/code.stories.tsx +1 -1
  1421. package/src/components/common/Code/code.tsx +1 -1
  1422. package/src/components/common/CopyToClipboard/copyToClipboard.stories.tsx +1 -1
  1423. package/src/components/common/CopyToClipboard/copyToClipboard.tsx +2 -2
  1424. package/src/components/common/CustomIcon/components/AddIcon/addIcon.tsx +1 -1
  1425. package/src/components/common/CustomIcon/components/AddLinkIcon/addLinkIcon.tsx +1 -1
  1426. package/src/components/common/CustomIcon/components/AlertIcon/alertIcon.tsx +1 -1
  1427. package/src/components/common/CustomIcon/components/BackArrowIcon/backArrowIcon.tsx +1 -1
  1428. package/src/components/common/CustomIcon/components/CheckedIcon/checkedIcon.tsx +1 -1
  1429. package/src/components/common/CustomIcon/components/CloseIcon/closeIcon.tsx +1 -1
  1430. package/src/components/common/CustomIcon/components/ContactSupportIcon/contactSupportIcon.tsx +1 -1
  1431. package/src/components/common/CustomIcon/components/ContentCopyIcon/contentCopyIcon.tsx +1 -1
  1432. package/src/components/common/CustomIcon/components/DiscourseIcon/discourseIcon.tsx +1 -1
  1433. package/src/components/common/CustomIcon/components/DownloadIcon/downloadIcon.tsx +1 -1
  1434. package/src/components/common/CustomIcon/components/EmailReadIcon/emailReadIcon.tsx +1 -1
  1435. package/src/components/common/CustomIcon/components/ErrorIcon/errorIcon.tsx +1 -1
  1436. package/src/components/common/CustomIcon/components/FacebookIcon/facebookIcon.tsx +1 -1
  1437. package/src/components/common/CustomIcon/components/FeedbackIcon/feedbackIcon.tsx +1 -1
  1438. package/src/components/common/CustomIcon/components/FormStatusCompletedIcon/formStatusCompletedIcon.tsx +1 -1
  1439. package/src/components/common/CustomIcon/components/FormStatusIncompleteIcon/formStatusIncompleteIcon.tsx +1 -1
  1440. package/src/components/common/CustomIcon/components/ForwardArrowIcon/forwardArrowIcon.tsx +1 -1
  1441. package/src/components/common/CustomIcon/components/GitHubIcon/gitHubIcon.tsx +1 -1
  1442. package/src/components/common/CustomIcon/components/GoogleIcon/googleIcon.tsx +1 -1
  1443. package/src/components/common/CustomIcon/components/HelpIcon/helpIcon.tsx +1 -1
  1444. package/src/components/common/CustomIcon/components/InProgressIcon/inProgressIcon.tsx +1 -1
  1445. package/src/components/common/CustomIcon/components/IndeterminateIcon/indeterminateIcon.tsx +1 -1
  1446. package/src/components/common/CustomIcon/components/InfoIcon/infoIcon.tsx +1 -1
  1447. package/src/components/common/CustomIcon/components/InventoryIcon/inventoryIcon.tsx +1 -1
  1448. package/src/components/common/CustomIcon/components/LinkedInIcon/linkedInIcon.tsx +1 -1
  1449. package/src/components/common/CustomIcon/components/LoadingIcon/loadingIcon.tsx +1 -1
  1450. package/src/components/common/CustomIcon/components/OpenInNewIcon/openInNewIcon.tsx +1 -1
  1451. package/src/components/common/CustomIcon/components/RadioCheckedIcon/radioCheckedIcon.tsx +1 -1
  1452. package/src/components/common/CustomIcon/components/RadioUncheckedIcon/radioUncheckedIcon.tsx +1 -1
  1453. package/src/components/common/CustomIcon/components/RemoveIcon/removeIcon.tsx +1 -1
  1454. package/src/components/common/CustomIcon/components/SearchIcon/searchIcon.tsx +1 -1
  1455. package/src/components/common/CustomIcon/components/SearchOffIcon/searchOffIcon.tsx +1 -1
  1456. package/src/components/common/CustomIcon/components/Segment/segment.tsx +1 -1
  1457. package/src/components/common/CustomIcon/components/SlackIcon/slackIcon.tsx +1 -1
  1458. package/src/components/common/CustomIcon/components/SouthIcon/southIcon.tsx +1 -1
  1459. package/src/components/common/CustomIcon/components/SuccessIcon/successIcon.tsx +1 -1
  1460. package/src/components/common/CustomIcon/components/UnLinkIcon/unLinkIcon.tsx +1 -1
  1461. package/src/components/common/CustomIcon/components/UncheckedDisabledIcon/uncheckedDisabledIcon.tsx +1 -1
  1462. package/src/components/common/CustomIcon/components/UncheckedErrorIcon/uncheckedErrorIcon.tsx +1 -1
  1463. package/src/components/common/CustomIcon/components/UncheckedIcon/uncheckedIcon.tsx +1 -1
  1464. package/src/components/common/CustomIcon/components/UnfoldMoreIcon/unfoldMoreIcon.tsx +1 -1
  1465. package/src/components/common/CustomIcon/components/WarningIcon/warningIcon.tsx +1 -1
  1466. package/src/components/common/CustomIcon/components/XIcon/xIcon.tsx +1 -1
  1467. package/src/components/common/CustomIcon/components/YouTubeIcon/youTubeIcon.tsx +1 -1
  1468. package/src/components/common/Dialog/components/DialogTitle/dialogTitle.tsx +1 -1
  1469. package/src/components/common/Dialog/dialog.tsx +1 -1
  1470. package/src/components/common/Dot/dot.tsx +1 -1
  1471. package/src/components/common/Drawer/components/DrawerTitle/drawerTitle.tsx +1 -1
  1472. package/src/components/common/Drawer/drawer.tsx +1 -1
  1473. package/src/components/common/Drawer/provider/provider.tsx +1 -1
  1474. package/src/components/common/DropdownMenu/components/MenuItem/menuItem.tsx +1 -1
  1475. package/src/components/common/DropdownMenu/dropdownMenu.tsx +6 -4
  1476. package/src/components/common/EllipsisContent/ellipsisContent.tsx +3 -3
  1477. package/src/components/common/Form/components/Input/input.tsx +1 -1
  1478. package/src/components/common/Form/components/Select/components/DropDownIcon/dropDownIcon.tsx +1 -1
  1479. package/src/components/common/Form/components/Select/select.tsx +1 -1
  1480. package/src/components/common/Form/components/UploadFile/uploadFile.tsx +3 -3
  1481. package/src/components/common/Grid/components/GridItem/gridItem.tsx +1 -1
  1482. package/src/components/common/Grid/grid.tsx +1 -1
  1483. package/src/components/common/IconBadge/iconBadge.tsx +1 -1
  1484. package/src/components/common/IconButton/iconButton.tsx +1 -1
  1485. package/src/components/common/Input/input.tsx +2 -2
  1486. package/src/components/common/KeyValuePairs/components/KeyElType/keyElType.tsx +1 -1
  1487. package/src/components/common/KeyValuePairs/components/KeyValueElType/keyValueElType.tsx +1 -1
  1488. package/src/components/common/KeyValuePairs/components/ValueElType/valueElType.tsx +1 -1
  1489. package/src/components/common/KeyValuePairs/keyValuePairs.tsx +1 -1
  1490. package/src/components/common/Link/typeGuards.ts +6 -6
  1491. package/src/components/common/LoginDialog/loginDialog.tsx +1 -1
  1492. package/src/components/common/Markdown/markdown.tsx +1 -1
  1493. package/src/components/common/Menu/hooks/useMenu.ts +1 -1
  1494. package/src/components/common/OutlinedInput/components/InputAdornment/components/ClearInputAdornment/clearInputAdornment.tsx +1 -1
  1495. package/src/components/common/OutlinedInput/components/InputAdornment/components/SearchInputAdornment/searchInputAdornment.tsx +1 -1
  1496. package/src/components/common/Paper/components/FlatPaper/flatPaper.tsx +2 -2
  1497. package/src/components/common/Paper/components/FluidPaper/fluidPaper.tsx +2 -2
  1498. package/src/components/common/Paper/components/RoundedPaper/roundedPaper.tsx +2 -2
  1499. package/src/components/common/Paper/paper.tsx +2 -2
  1500. package/src/components/common/Progress/components/CircularProgress/circularProgress.tsx +1 -1
  1501. package/src/components/common/Progress/components/CircularProgress/components/CircularProgressTrack/circularProgressTrack.tsx +1 -1
  1502. package/src/components/common/RadioGroup/radioGroup.tsx +1 -1
  1503. package/src/components/common/Section/components/CollapsableSection/collapsableSection.tsx +1 -1
  1504. package/src/components/common/Section/components/SectionDetailsEmpty/sectionDetailsEmpty.tsx +1 -1
  1505. package/src/components/common/Section/components/SectionTitle/sectionTitle.stories.tsx +1 -1
  1506. package/src/components/common/Section/components/SectionTitle/sectionTitle.tsx +1 -1
  1507. package/src/components/common/Sections/sections.tsx +1 -1
  1508. package/src/components/common/Socials/socials.stories.tsx +1 -1
  1509. package/src/components/common/Socials/socials.tsx +3 -8
  1510. package/src/components/common/Stack/components/Divider/divider.tsx +1 -1
  1511. package/src/components/common/Stack/stack.tsx +1 -1
  1512. package/src/components/common/StaticImage/staticImage.stories.tsx +1 -1
  1513. package/src/components/common/StaticImage/staticImage.tsx +1 -1
  1514. package/src/components/common/StatusBadge/statusBadge.stories.tsx +1 -1
  1515. package/src/components/common/StatusBadge/statusBadge.tsx +3 -3
  1516. package/src/components/common/StatusIcon/statusIcon.stories.tsx +1 -1
  1517. package/src/components/common/StatusIcon/statusIcon.tsx +1 -1
  1518. package/src/components/common/Tabs/tabs.tsx +4 -4
  1519. package/src/components/common/Tag/tag.stories.tsx +1 -2
  1520. package/src/components/common/Tag/tag.tsx +1 -1
  1521. package/src/components/common/Title/title.tsx +1 -1
  1522. package/src/components/common/ToggleButtonGroup/hooks/UseToggleButtonGroup/hook.ts +2 -2
  1523. package/src/components/common/ToggleButtonGroup/toggleButtonGroup.stories.tsx +1 -1
  1524. package/src/components/common/ToggleButtonGroup/toggleButtonGroup.tsx +5 -5
  1525. package/src/components/common/Typography/TypographyWordBreak/TypographyWordBreak.tsx +1 -1
  1526. package/src/config/entities.ts +7 -7
  1527. package/src/config/utils.ts +3 -3
  1528. package/src/entity/api/service.ts +10 -10
  1529. package/src/entity/apicf/service.ts +2 -2
  1530. package/src/entity/common/client.ts +1 -1
  1531. package/src/entity/common/service.ts +4 -4
  1532. package/src/entity/service/model.ts +6 -6
  1533. package/src/entity/tsv/service.ts +4 -4
  1534. package/src/hooks/authentication/auth/useAuthReducer.ts +2 -2
  1535. package/src/hooks/authentication/authentication/useAuthenticationReducer.ts +2 -2
  1536. package/src/hooks/authentication/credentials/useCredentialsReducer.ts +1 -1
  1537. package/src/hooks/authentication/providers/useProviders.ts +1 -1
  1538. package/src/hooks/authentication/session/useSessionActive.ts +2 -2
  1539. package/src/hooks/authentication/session/useSessionIdleTimer.ts +1 -2
  1540. package/src/hooks/authentication/terra/useAuthenticationForm.ts +4 -4
  1541. package/src/hooks/authentication/terra/useAuthenticationNIHExpiry.ts +1 -1
  1542. package/src/hooks/authentication/token/useTokenReducer.ts +1 -1
  1543. package/src/hooks/stateSyncManager/hook.ts +1 -1
  1544. package/src/hooks/stateSyncManager/hooks/UseBeforePopState/hook.ts +1 -1
  1545. package/src/hooks/stateSyncManager/hooks/UseStateSync/utils.ts +4 -4
  1546. package/src/hooks/useAsync.ts +10 -10
  1547. package/src/hooks/useBreakpointHelper.ts +2 -2
  1548. package/src/hooks/useCategoryFilter.ts +21 -21
  1549. package/src/hooks/useCurrentBreakpoint.ts +1 -1
  1550. package/src/hooks/useEntityHeadTitle.ts +2 -2
  1551. package/src/hooks/useEntityList.ts +5 -5
  1552. package/src/hooks/useEntityService.ts +4 -4
  1553. package/src/hooks/useExportToTerraResponseURL.ts +1 -1
  1554. package/src/hooks/useFetchEntity.tsx +4 -4
  1555. package/src/hooks/useFetchRequestURL.ts +1 -1
  1556. package/src/hooks/useFileLocation.ts +1 -1
  1557. package/src/hooks/useFileManifest/common/utils.ts +13 -13
  1558. package/src/hooks/useFileManifest/useFetchFilesFacets.ts +2 -2
  1559. package/src/hooks/useFileManifest/useFetchSummary.ts +1 -1
  1560. package/src/hooks/useFileManifest/useFileManifest.ts +1 -1
  1561. package/src/hooks/useFileManifest/useFileManifestDownload.ts +5 -5
  1562. package/src/hooks/useFileManifest/useFileManifestFileCount.ts +4 -4
  1563. package/src/hooks/useFileManifest/useFileManifestFormat.ts +1 -1
  1564. package/src/hooks/useFileManifest/useFileManifestSpreadsheet.ts +3 -3
  1565. package/src/hooks/useHtmlStyle/hook.ts +1 -1
  1566. package/src/hooks/useRequestFileLocation.ts +6 -6
  1567. package/src/hooks/useRequestManifest/useRequestManifest.ts +2 -2
  1568. package/src/hooks/useRequestManifest/utils.ts +6 -6
  1569. package/src/hooks/useResetableState.ts +1 -1
  1570. package/src/hooks/useResizeObserver.ts +7 -7
  1571. package/src/hooks/useRouteHistory.ts +4 -4
  1572. package/src/hooks/useURLFilterParams.ts +4 -4
  1573. package/src/hooks/useWindowResize.ts +7 -2
  1574. package/src/providers/authentication/auth/actions.ts +1 -1
  1575. package/src/providers/authentication/auth/dispatch.ts +2 -2
  1576. package/src/providers/authentication/authentication/actions.ts +1 -1
  1577. package/src/providers/authentication/authentication/dispatch.ts +1 -1
  1578. package/src/providers/authentication/authentication/reducer.ts +1 -1
  1579. package/src/providers/authentication/authentication/utils.ts +1 -1
  1580. package/src/providers/authentication/credentials/actions.ts +1 -1
  1581. package/src/providers/authentication/credentials/dispatch.ts +1 -1
  1582. package/src/providers/authentication/credentials/reducer.ts +1 -1
  1583. package/src/providers/authentication/terra/hooks/useFetchProfiles.ts +3 -3
  1584. package/src/providers/authentication/terra/hooks/useFetchTerraNIHProfile.ts +3 -3
  1585. package/src/providers/authentication/terra/hooks/useFetchTerraProfile.ts +3 -3
  1586. package/src/providers/authentication/terra/hooks/useFetchTerraTermsOfService.ts +3 -3
  1587. package/src/providers/authentication/terra/hooks/utils.ts +2 -2
  1588. package/src/providers/authentication/terra/provider.tsx +1 -1
  1589. package/src/providers/authentication/terra/utils.ts +2 -2
  1590. package/src/providers/authentication/token/reducer.ts +1 -1
  1591. package/src/providers/config.tsx +1 -1
  1592. package/src/providers/dataDictionaryState/actions/clearMeta/action.ts +1 -1
  1593. package/src/providers/dataDictionaryState/actions/stateToUrl/action.ts +1 -1
  1594. package/src/providers/dataDictionaryState/actions/updateColumnFilters/action.ts +1 -1
  1595. package/src/providers/dataDictionaryState/actions/updateColumnFilters/dispatch.ts +1 -1
  1596. package/src/providers/dataDictionaryState/actions/updateColumnFilters/utils.ts +3 -3
  1597. package/src/providers/dataDictionaryState/actions/updateGlobalFilter/action.ts +1 -1
  1598. package/src/providers/dataDictionaryState/actions/updateGlobalFilter/dispatch.ts +1 -1
  1599. package/src/providers/dataDictionaryState/actions/updateGlobalFilter/utils.ts +3 -3
  1600. package/src/providers/dataDictionaryState/actions/urlToState/action.ts +2 -2
  1601. package/src/providers/dataDictionaryState/dictionaries/state.ts +2 -2
  1602. package/src/providers/dataDictionaryState/dictionaries/utils.ts +1 -1
  1603. package/src/providers/dataDictionaryState/hooks/UseDataDictionaryReducer/hook.ts +1 -1
  1604. package/src/providers/dataDictionaryState/initializer/utils.ts +2 -2
  1605. package/src/providers/dataDictionaryState/provider.tsx +1 -1
  1606. package/src/providers/dataDictionaryState/reducer.ts +1 -1
  1607. package/src/providers/exploreState/actions/clearMeta/action.ts +1 -1
  1608. package/src/providers/exploreState/actions/stateToUrl/action.ts +1 -1
  1609. package/src/providers/exploreState/actions/updateFilterSort/action.ts +1 -1
  1610. package/src/providers/exploreState/actions/updateFilterSort/dispatch.ts +1 -1
  1611. package/src/providers/exploreState/actions/updateFilterSort/utils.ts +1 -1
  1612. package/src/providers/exploreState/actions/updateGrouping/action.ts +2 -2
  1613. package/src/providers/exploreState/actions/updateGrouping/dispatch.ts +1 -1
  1614. package/src/providers/exploreState/actions/updateGrouping/utils.ts +1 -1
  1615. package/src/providers/exploreState/actions/updateVisibility/action.ts +3 -3
  1616. package/src/providers/exploreState/actions/updateVisibility/dispatch.ts +1 -1
  1617. package/src/providers/exploreState/actions/updateVisibility/utils.ts +1 -1
  1618. package/src/providers/exploreState/actions/urlToState/action.ts +4 -4
  1619. package/src/providers/exploreState/actions/urlToState/utils.ts +1 -1
  1620. package/src/providers/exploreState/entities/query/buildQuery.ts +3 -3
  1621. package/src/providers/exploreState/entities/state.ts +1 -1
  1622. package/src/providers/exploreState/initializer/utils.ts +13 -13
  1623. package/src/providers/exploreState/utils.ts +19 -19
  1624. package/src/providers/exploreState.tsx +26 -25
  1625. package/src/providers/fileManifestState.tsx +13 -12
  1626. package/src/providers/googleSignInAuthentication/hooks/useGoogleSignInService.ts +2 -2
  1627. package/src/providers/googleSignInAuthentication/provider.tsx +1 -1
  1628. package/src/providers/googleSignInAuthentication/service/service.ts +3 -3
  1629. package/src/providers/layoutDimensions/context.tsx +2 -2
  1630. package/src/providers/layoutDimensions/provider.tsx +1 -1
  1631. package/src/providers/layoutDimensions/types.ts +2 -2
  1632. package/src/providers/loginGuard/provider.tsx +2 -2
  1633. package/src/providers/nextAuthAuthentication/hooks/useNextAuthService.ts +2 -2
  1634. package/src/providers/nextAuthAuthentication/provider.tsx +1 -1
  1635. package/src/providers/services/provider.tsx +1 -1
  1636. package/src/providers/services/wasPop/provider.tsx +2 -2
  1637. package/src/providers/systemStatus.tsx +4 -4
  1638. package/src/storybook/controls/constants.ts +1 -1
  1639. package/src/storybook/controls/utils.ts +3 -3
  1640. package/src/storybook/decorators.tsx +1 -1
  1641. package/src/storybook/parameters.ts +1 -1
  1642. package/src/styles/common/mixins/typography.ts +1 -1
  1643. package/src/tests/utils.ts +3 -3
  1644. package/src/theme/common/breakpoints.ts +1 -1
  1645. package/src/theme/common/fontStyles.ts +1 -1
  1646. package/src/theme/theme.ts +2 -2
  1647. package/src/utils/database.ts +2 -2
  1648. package/src/utils/fetchQueryParams.ts +1 -1
  1649. package/src/utils/mdx/files/mapMDXSlugByFilePaths.ts +2 -2
  1650. package/src/utils/mdx/frontmatter/validateMatter.ts +1 -1
  1651. package/src/utils/mdx/plugins/rehypeSlug.ts +33 -5
  1652. package/src/utils/mdx/plugins/remarkHeadings.ts +9 -10
  1653. package/src/utils/mdx/plugins/types.ts +4 -0
  1654. package/src/utils/mdx/plugins/utils.ts +12 -0
  1655. package/src/utils/mdx/staticGeneration/staticPaths.ts +2 -2
  1656. package/src/utils/mdx/staticGeneration/staticProps.ts +3 -4
  1657. package/src/utils/mdx/staticGeneration/types.ts +1 -1
  1658. package/src/utils/mdx/staticGeneration/utils.ts +2 -2
  1659. package/src/utils/parseJsonQueryParam.ts +1 -1
  1660. package/src/utils/replaceParameters.ts +1 -1
  1661. package/src/utils/stateToUrlQuery.ts +1 -1
  1662. package/src/utils/url.ts +1 -1
  1663. package/src/viewModelBuilders/common/utils.ts +1 -1
  1664. package/src/views/ContentView/contentView.stories.tsx +1 -1
  1665. package/src/views/ContentView/contentView.tsx +1 -1
  1666. package/src/views/DataDictionaryView/dataDictionaryView.tsx +1 -1
  1667. package/src/views/DataDictionaryView/utils.ts +1 -1
  1668. package/src/views/EntityDetailView/entityDetailView.tsx +2 -2
  1669. package/src/views/EntityExportMethodView/entityExportMethodView.tsx +3 -3
  1670. package/src/views/EntityExportView/entityExportView.tsx +1 -1
  1671. package/src/views/ExploreView/exploreView.tsx +4 -4
  1672. package/src/views/ExploreView/hooks/UseUpdateFilterSort/hook.ts +1 -1
  1673. package/src/views/ExploreView/utils.ts +1 -1
  1674. package/src/views/ExportMethodView/exportMethodView.tsx +2 -2
  1675. package/src/views/ExportView/exportView.tsx +1 -1
  1676. package/src/views/LoginView/loginView.tsx +1 -1
  1677. package/tests/azulFileDownload.test.tsx +4 -5
  1678. package/tests/buildCategoryViews.test.ts +15 -15
  1679. package/tests/buildRequestFilters.test.ts +3 -3
  1680. package/tests/buildRequestManifest.test.ts +8 -8
  1681. package/tests/chart.test.tsx +2 -2
  1682. package/tests/chartView.test.tsx +2 -2
  1683. package/tests/dataDictionaryColumnFilters.test.tsx +3 -3
  1684. package/tests/filter.test.tsx +1 -1
  1685. package/tests/filterMenu.test.ts +1 -1
  1686. package/tests/filterRange.test.tsx +21 -21
  1687. package/tests/filterSortUtils.test.ts +1 -1
  1688. package/tests/filters.test.tsx +1 -1
  1689. package/tests/getFacetedMinMaxValues.test.ts +1 -1
  1690. package/tests/getProfileStatus.test.ts +34 -34
  1691. package/tests/linkCell.test.tsx +6 -6
  1692. package/tests/markdownCell.test.tsx +2 -2
  1693. package/tests/provider.test.tsx +15 -17
  1694. package/tests/rowSelectionValidation.test.ts +11 -11
  1695. package/tests/tableFilter.test.tsx +1 -1
  1696. package/tests/terraProfileProvider.test.tsx +17 -21
  1697. package/tests/theme.test.ts +13 -13
  1698. package/tests/useFileLocation.test.ts +3 -3
  1699. package/tests/useRequestManifest.test.ts +10 -12
  1700. package/tests/useSessionActive.test.ts +9 -10
  1701. package/tests/useWindowResize.test.ts +130 -0
  1702. package/tests/viewModelBuilders_utils.test.ts +1 -1
  1703. package/tests/viewToggle.test.tsx +5 -7
  1704. package/tsconfig.json +2 -2
  1705. package/types/data-explorer-ui.d.ts +4 -3
  1706. package/lib/components/DataDictionary/components/Table/columns/columnDef.d.ts +0 -6
  1707. package/lib/components/DataDictionary/components/Table/columns/columnDef.js +0 -33
  1708. package/lib/components/DataDictionary/components/Table/columns/columnIdentifier.d.ts +0 -5
  1709. package/lib/components/DataDictionary/components/Table/columns/columnIdentifier.js +0 -5
  1710. package/lib/components/DataDictionary/components/Table/columns/types.d.ts +0 -2
  1711. package/lib/components/DataDictionary/components/Table/components/BasicCell/types.d.ts +0 -4
  1712. package/lib/components/DataDictionary/components/Table/components/BasicCell/types.js +0 -1
  1713. package/lib/components/DataDictionary/hooks/UseDataDictionary/hook.d.ts +0 -4
  1714. package/lib/components/DataDictionary/hooks/UseDataDictionary/hook.js +0 -23
  1715. package/lib/components/DataDictionary/hooks/UseDataDictionary/types.d.ts +0 -8
  1716. package/lib/components/DataDictionary/hooks/UseDataDictionary/types.js +0 -1
  1717. package/lib/components/DataDictionary/hooks/UseLayoutSpacing/hook.d.ts +0 -2
  1718. package/lib/components/DataDictionary/hooks/UseLayoutSpacing/hook.js +0 -10
  1719. package/lib/components/DataDictionary/hooks/UseLayoutSpacing/types.d.ts +0 -7
  1720. package/lib/components/DataDictionary/hooks/UseLayoutSpacing/types.js +0 -1
  1721. package/lib/components/Detail/components/Table/components/TableHead/tableHead.d.ts +0 -8
  1722. package/lib/components/Detail/components/Table/components/TableHead/tableHead.js +0 -36
  1723. package/lib/components/Filter/components/Filter/filter.stories.d.ts +0 -25
  1724. package/lib/components/Filter/components/Filter/filter.stories.js +0 -42
  1725. package/lib/components/Filter/components/FilterTag/filterTag.stories.d.ts +0 -16
  1726. package/lib/components/Filter/components/FilterTag/filterTag.stories.js +0 -17
  1727. package/lib/components/Filter/components/Filters/filters.stories.d.ts +0 -6
  1728. package/lib/components/Filter/components/Filters/filters.stories.js +0 -91
  1729. package/lib/components/Filter/components/SearchAllFilters/components/AutocompletePopper/autocompletePopper.styles.d.ts +0 -3
  1730. package/lib/components/Filter/components/SearchAllFilters/components/AutocompletePopper/autocompletePopper.styles.js +0 -15
  1731. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.stories.d.ts +0 -6
  1732. package/lib/components/Filter/components/SearchAllFilters/searchAllFilters.stories.js +0 -82
  1733. package/lib/components/Filter/components/SearchAllFiltersSearch/components/SearchCloseButton/searchCloseButton.d.ts +0 -1
  1734. package/lib/components/Filter/components/SearchAllFiltersSearch/components/SearchCloseButton/searchCloseButton.js +0 -14
  1735. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.d.ts +0 -2
  1736. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.js +0 -12
  1737. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.styles.d.ts +0 -5
  1738. package/lib/components/Filter/components/SearchAllFiltersSearch/searchAllFiltersSearch.styles.js +0 -34
  1739. package/lib/components/Index/components/Cell/cell.d.ts +0 -7
  1740. package/lib/components/Index/components/Cell/cell.js +0 -10
  1741. package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.d.ts +0 -2
  1742. package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.js +0 -20
  1743. package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.styles.d.ts +0 -13
  1744. package/lib/components/Index/components/EntitiesView/components/ChartView/chartView.styles.js +0 -12
  1745. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/constants.d.ts +0 -10
  1746. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/constants.js +0 -10
  1747. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/plot.d.ts +0 -3
  1748. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/plot.js +0 -91
  1749. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/utils.d.ts +0 -132
  1750. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/barX/utils.js +0 -230
  1751. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.d.ts +0 -2
  1752. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.js +0 -7
  1753. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.styles.d.ts +0 -3
  1754. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/chart.styles.js +0 -29
  1755. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/constants.d.ts +0 -1
  1756. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/constants.js +0 -1
  1757. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/args.d.ts +0 -4
  1758. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/args.js +0 -70
  1759. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/chart.stories.d.ts +0 -7
  1760. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/stories/chart.stories.js +0 -18
  1761. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/types.d.ts +0 -6
  1762. package/lib/components/Index/components/EntitiesView/components/ChartView/components/Chart/types.js +0 -1
  1763. package/lib/components/Index/components/EntitiesView/components/ChartView/constants.d.ts +0 -1
  1764. package/lib/components/Index/components/EntitiesView/components/ChartView/constants.js +0 -1
  1765. package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/types.d.ts +0 -7
  1766. package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/types.js +0 -1
  1767. package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/useChartView.d.ts +0 -3
  1768. package/lib/components/Index/components/EntitiesView/components/ChartView/hooks/UseChartView/useChartView.js +0 -11
  1769. package/lib/components/Index/components/EntitiesView/components/ChartView/stories/args.d.ts +0 -3
  1770. package/lib/components/Index/components/EntitiesView/components/ChartView/stories/args.js +0 -97
  1771. package/lib/components/Index/components/EntitiesView/components/ChartView/stories/chartView.stories.d.ts +0 -6
  1772. package/lib/components/Index/components/EntitiesView/components/ChartView/stories/chartView.stories.js +0 -15
  1773. package/lib/components/Index/components/EntitiesView/components/ChartView/types.d.ts +0 -8
  1774. package/lib/components/Index/components/EntitiesView/components/ChartView/types.js +0 -1
  1775. package/lib/components/Index/components/EntitiesView/components/ChartView/utils.d.ts +0 -14
  1776. package/lib/components/Index/components/EntitiesView/components/ChartView/utils.js +0 -23
  1777. package/lib/components/Index/components/EntitiesView/components/EntityList/entityList.d.ts +0 -3
  1778. package/lib/components/Index/components/EntitiesView/components/EntityList/entityList.js +0 -14
  1779. package/lib/components/Index/components/EntitiesView/components/EntityList/types.d.ts +0 -6
  1780. package/lib/components/Index/components/EntitiesView/components/EntityList/types.js +0 -1
  1781. package/lib/components/Index/components/EntitiesView/constants.d.ts +0 -1
  1782. package/lib/components/Index/components/EntitiesView/constants.js +0 -1
  1783. package/lib/components/Index/components/EntitiesView/entitiesView.d.ts +0 -2
  1784. package/lib/components/Index/components/EntitiesView/entitiesView.js +0 -15
  1785. package/lib/components/Index/components/EntitiesView/entitiesView.styles.d.ts +0 -3
  1786. package/lib/components/Index/components/EntitiesView/entitiesView.styles.js +0 -20
  1787. package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/hook.d.ts +0 -2
  1788. package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/hook.js +0 -14
  1789. package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/types.d.ts +0 -13
  1790. package/lib/components/Index/components/EntitiesView/hooks/UseEntitiesView/types.js +0 -5
  1791. package/lib/components/Index/components/EntitiesView/stories/entitiesView.stories.d.ts +0 -8
  1792. package/lib/components/Index/components/EntitiesView/stories/entitiesView.stories.js +0 -50
  1793. package/lib/components/Index/components/EntitiesView/types.d.ts +0 -8
  1794. package/lib/components/Index/components/EntitiesView/types.js +0 -1
  1795. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.d.ts +0 -1
  1796. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.js +0 -13
  1797. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.styles.d.ts +0 -3
  1798. package/lib/components/Index/components/Hero/components/ExportButton/exportButton.styles.js +0 -13
  1799. package/lib/components/Index/components/Hero/components/Summaries/stories/summaries.stories.d.ts +0 -6
  1800. package/lib/components/Index/components/Hero/components/Summaries/stories/summaries.stories.js +0 -14
  1801. package/lib/components/Index/components/Hero/components/Summaries/summaries.d.ts +0 -9
  1802. package/lib/components/Index/components/Hero/components/Summaries/summaries.js +0 -12
  1803. package/lib/components/Index/components/Hero/components/Summaries/summaries.stories.d.ts +0 -13
  1804. package/lib/components/Index/components/Hero/components/Summaries/summaries.stories.js +0 -18
  1805. package/lib/components/Index/components/Hero/components/Summaries/summaries.styles.d.ts +0 -7
  1806. package/lib/components/Index/components/Hero/components/Summaries/summaries.styles.js +0 -26
  1807. package/lib/components/Index/components/Hero/hero.d.ts +0 -11
  1808. package/lib/components/Index/components/Hero/hero.js +0 -12
  1809. package/lib/components/Index/components/Hero/hero.stories.d.ts +0 -23
  1810. package/lib/components/Index/components/Hero/hero.stories.js +0 -22
  1811. package/lib/components/Index/components/Hero/hero.styles.d.ts +0 -16
  1812. package/lib/components/Index/components/Hero/hero.styles.js +0 -44
  1813. package/lib/components/Index/components/Hero/stories/hero.stories.d.ts +0 -6
  1814. package/lib/components/Index/components/Hero/stories/hero.stories.js +0 -16
  1815. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.d.ts +0 -8
  1816. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.js +0 -57
  1817. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.styles.d.ts +0 -4
  1818. package/lib/components/Index/components/NTag/components/Tooltip/tooltip.styles.js +0 -10
  1819. package/lib/components/Index/components/NTag/nTag.d.ts +0 -10
  1820. package/lib/components/Index/components/NTag/nTag.js +0 -8
  1821. package/lib/components/Index/components/NTagCell/nTagCell.d.ts +0 -11
  1822. package/lib/components/Index/components/NTagCell/nTagCell.js +0 -29
  1823. package/lib/components/Index/components/NTagCell/nTagCell.stories.d.ts +0 -5
  1824. package/lib/components/Index/components/NTagCell/nTagCell.stories.js +0 -16
  1825. package/lib/components/Index/components/Tabs/common/utils.d.ts +0 -8
  1826. package/lib/components/Index/components/Tabs/common/utils.js +0 -19
  1827. package/lib/components/Index/components/Tabs/tabs.d.ts +0 -1
  1828. package/lib/components/Index/components/Tabs/tabs.js +0 -20
  1829. package/lib/components/Index/components/TitleCell/titleCell.d.ts +0 -6
  1830. package/lib/components/Index/components/TitleCell/titleCell.js +0 -10
  1831. package/lib/components/Index/components/TitleCell/titleCell.styles.d.ts +0 -3
  1832. package/lib/components/Index/components/TitleCell/titleCell.styles.js +0 -6
  1833. package/lib/components/Index/index.stories.d.ts +0 -6
  1834. package/lib/components/Index/index.stories.js +0 -26
  1835. package/lib/components/Index/stories/index.stories.d.ts +0 -6
  1836. package/lib/components/Index/stories/index.stories.js +0 -17
  1837. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.stories.d.ts +0 -6
  1838. package/lib/components/Layout/components/BackPage/components/BackPageHero/backPageHero.stories.js +0 -10
  1839. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.stories.d.ts +0 -5
  1840. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/AuthenticationMenu/authenticationMenu.stories.js +0 -29
  1841. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.d.ts +0 -6
  1842. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.js +0 -13
  1843. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.styles.d.ts +0 -36
  1844. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Authentication/components/RequestAuthentication/requestAuthentication.styles.js +0 -9
  1845. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.d.ts +0 -5
  1846. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.js +0 -10
  1847. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.styles.d.ts +0 -36
  1848. package/lib/components/Layout/components/Header/components/Content/components/Actions/components/Search/components/SearchButton/searchButton.styles.js +0 -9
  1849. package/lib/components/Layout/components/Header/hooks/useMeasureHeader.d.ts +0 -5
  1850. package/lib/components/Layout/components/Header/hooks/useMeasureHeader.js +0 -19
  1851. package/lib/components/Layout/components/Outline/common/constants.d.ts +0 -2
  1852. package/lib/components/Layout/components/Outline/common/constants.js +0 -1
  1853. package/lib/components/Login/login.stories.d.ts +0 -6
  1854. package/lib/components/Login/login.stories.js +0 -31
  1855. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.d.ts +0 -16
  1856. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.js +0 -28
  1857. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.stories.d.ts +0 -5
  1858. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.stories.js +0 -46
  1859. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.styles.d.ts +0 -3
  1860. package/lib/components/Table/components/CheckboxMenu/checkboxMenu.styles.js +0 -21
  1861. package/lib/components/Table/components/DownloadEntityResults/downloadEntityResults.d.ts +0 -6
  1862. package/lib/components/Table/components/DownloadEntityResults/downloadEntityResults.js +0 -17
  1863. package/lib/components/Table/components/EntityViewToggle/entityViewToggle.d.ts +0 -2
  1864. package/lib/components/Table/components/EntityViewToggle/entityViewToggle.js +0 -37
  1865. package/lib/components/Table/components/Pagination/pagination.d.ts +0 -9
  1866. package/lib/components/Table/components/Pagination/pagination.js +0 -19
  1867. package/lib/components/Table/components/Pagination/pagination.stories.d.ts +0 -28
  1868. package/lib/components/Table/components/Pagination/pagination.stories.js +0 -24
  1869. package/lib/components/Table/components/Pagination/pagination.styles.d.ts +0 -4
  1870. package/lib/components/Table/components/Pagination/pagination.styles.js +0 -15
  1871. package/lib/components/Table/components/TableBody/hooks/virtualizer/constants.d.ts +0 -3
  1872. package/lib/components/Table/components/TableBody/hooks/virtualizer/constants.js +0 -3
  1873. package/lib/components/Table/components/TableBody/hooks/virtualizer/hook.d.ts +0 -8
  1874. package/lib/components/Table/components/TableBody/hooks/virtualizer/hook.js +0 -18
  1875. package/lib/components/Table/components/TableBody/hooks/virtualizer/types.d.ts +0 -4
  1876. package/lib/components/Table/components/TableBody/hooks/virtualizer/types.js +0 -1
  1877. package/lib/components/Table/components/TableBody/utils.d.ts +0 -12
  1878. package/lib/components/Table/components/TableBody/utils.js +0 -17
  1879. package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/types.d.ts +0 -3
  1880. package/lib/components/Table/components/TableCell/components/MarkdownCell/stories/types.js +0 -1
  1881. package/lib/components/Table/components/TableCell/components/MarkdownCell/types.d.ts +0 -3
  1882. package/lib/components/Table/components/TableCell/components/MarkdownCell/types.js +0 -1
  1883. package/lib/components/TableCreator/common/constants.d.ts +0 -6
  1884. package/lib/components/TableCreator/common/constants.js +0 -19
  1885. package/lib/components/TableCreator/common/entities.d.ts +0 -5
  1886. package/lib/components/TableCreator/common/entities.js +0 -1
  1887. package/lib/components/TableCreator/tableCreator.styles.d.ts +0 -4
  1888. package/lib/components/TableCreator/tableCreator.styles.js +0 -4
  1889. package/lib/components/common/Alert/alert.stories.d.ts +0 -6
  1890. package/lib/components/common/Alert/alert.stories.js +0 -36
  1891. package/lib/components/common/Alert/components/AlertText/alertText.styles.d.ts +0 -4
  1892. package/lib/components/common/Alert/components/AlertText/alertText.styles.js +0 -19
  1893. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.d.ts +0 -7
  1894. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.js +0 -5
  1895. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.styles.d.ts +0 -3
  1896. package/lib/components/common/Banner/components/BannerPrimary/bannerPrimary.styles.js +0 -19
  1897. package/lib/components/common/Banner/components/DismissibleBanner/dismissibleBanner.d.ts +0 -10
  1898. package/lib/components/common/Banner/components/DismissibleBanner/dismissibleBanner.js +0 -16
  1899. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.styles.d.ts +0 -3
  1900. package/lib/components/common/Banner/components/SessionTimeout/sessionTimeout.styles.js +0 -21
  1901. package/lib/components/common/Button/components/LoginButton/loginButton.d.ts +0 -3
  1902. package/lib/components/common/Button/components/LoginButton/loginButton.js +0 -6
  1903. package/lib/components/common/Button/components/LoginButton/loginButton.styles.d.ts +0 -7
  1904. package/lib/components/common/Button/components/LoginButton/loginButton.styles.js +0 -11
  1905. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.d.ts +0 -5
  1906. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.js +0 -10
  1907. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.stories.d.ts +0 -3
  1908. package/lib/components/common/IconButton/components/LoadingIconButton/loadingIconButton.stories.js +0 -9
  1909. package/lib/hooks/useAuthentication/common/constants.d.ts +0 -4
  1910. package/lib/hooks/useAuthentication/common/constants.js +0 -19
  1911. package/lib/hooks/useAuthentication/common/entities.d.ts +0 -25
  1912. package/lib/hooks/useAuthentication/common/entities.js +0 -11
  1913. package/lib/hooks/useAuthentication/common/utils.d.ts +0 -15
  1914. package/lib/hooks/useAuthentication/common/utils.js +0 -25
  1915. package/lib/hooks/useAuthentication/useAuthentication.d.ts +0 -6
  1916. package/lib/hooks/useAuthentication/useAuthentication.js +0 -9
  1917. package/lib/hooks/useAuthentication/useAuthenticationComplete.d.ts +0 -6
  1918. package/lib/hooks/useAuthentication/useAuthenticationComplete.js +0 -55
  1919. package/lib/hooks/useAuthentication/useAuthenticationForm.d.ts +0 -20
  1920. package/lib/hooks/useAuthentication/useAuthenticationForm.js +0 -88
  1921. package/lib/hooks/useAuthentication/useAuthenticationNIHExpiry.d.ts +0 -18
  1922. package/lib/hooks/useAuthentication/useAuthenticationNIHExpiry.js +0 -50
  1923. package/lib/hooks/useAuthentication/useAuthenticationStatus.d.ts +0 -20
  1924. package/lib/hooks/useAuthentication/useAuthenticationStatus.js +0 -32
  1925. package/lib/hooks/useAuthentication/useFetchGoogleProfile.d.ts +0 -21
  1926. package/lib/hooks/useAuthentication/useFetchGoogleProfile.js +0 -41
  1927. package/lib/hooks/useAuthentication/useFetchTerraNIHProfile.d.ts +0 -18
  1928. package/lib/hooks/useAuthentication/useFetchTerraNIHProfile.js +0 -62
  1929. package/lib/hooks/useAuthentication/useFetchTerraProfile.d.ts +0 -24
  1930. package/lib/hooks/useAuthentication/useFetchTerraProfile.js +0 -62
  1931. package/lib/hooks/useAuthentication/useFetchTerraTermsOfService.d.ts +0 -15
  1932. package/lib/hooks/useAuthentication/useFetchTerraTermsOfService.js +0 -62
  1933. package/lib/hooks/useAuthentication/useTokenClient.d.ts +0 -11
  1934. package/lib/hooks/useAuthentication/useTokenClient.js +0 -29
  1935. package/lib/hooks/useAuthenticationConfig.d.ts +0 -6
  1936. package/lib/hooks/useAuthenticationConfig.js +0 -14
  1937. package/lib/hooks/useCategoryConfigs.d.ts +0 -6
  1938. package/lib/hooks/useCategoryConfigs.js +0 -17
  1939. package/lib/hooks/useEntityListRelatedView.d.ts +0 -15
  1940. package/lib/hooks/useEntityListRelatedView.js +0 -62
  1941. package/lib/hooks/useExploreMode.d.ts +0 -14
  1942. package/lib/hooks/useExploreMode.js +0 -20
  1943. package/lib/hooks/useFileManifest/common/buildFileManifestRequestURL.d.ts +0 -15
  1944. package/lib/hooks/useFileManifest/common/buildFileManifestRequestURL.js +0 -27
  1945. package/lib/hooks/useFileManifest/useFileManifestURL.d.ts +0 -5
  1946. package/lib/hooks/useFileManifest/useFileManifestURL.js +0 -11
  1947. package/lib/hooks/useFileManifest/useRequestFileManifest.d.ts +0 -9
  1948. package/lib/hooks/useFileManifest/useRequestFileManifest.js +0 -37
  1949. package/lib/hooks/useLayoutState.d.ts +0 -6
  1950. package/lib/hooks/useLayoutState.js +0 -9
  1951. package/lib/hooks/useMenu.d.ts +0 -10
  1952. package/lib/hooks/useMenu.js +0 -17
  1953. package/lib/hooks/useMenuWithPosition.d.ts +0 -14
  1954. package/lib/hooks/useMenuWithPosition.js +0 -33
  1955. package/lib/hooks/useScroll.d.ts +0 -10
  1956. package/lib/hooks/useScroll.js +0 -12
  1957. package/lib/hooks/useSessionTimeout.d.ts +0 -11
  1958. package/lib/hooks/useSessionTimeout.js +0 -28
  1959. package/lib/mocks/@storybook/addon-actions.d.ts +0 -9
  1960. package/lib/mocks/@storybook/addon-actions.js +0 -9
  1961. package/lib/providers/authentication.d.ts +0 -51
  1962. package/lib/providers/authentication.js +0 -110
  1963. package/lib/providers/layoutState.d.ts +0 -40
  1964. package/lib/providers/layoutState.js +0 -47
  1965. package/lib/styles/common/mixins/colors.d.ts +0 -25
  1966. package/lib/styles/common/mixins/colors.js +0 -32
  1967. package/lib/styles/common/mixins/fonts.d.ts +0 -16
  1968. package/lib/styles/common/mixins/fonts.js +0 -30
  1969. package/lib/styles/common/mixins/shadows.d.ts +0 -3
  1970. package/lib/styles/common/mixins/shadows.js +0 -4
  1971. package/lib/styles/common/mui/palette.d.ts +0 -47
  1972. package/lib/styles/common/mui/palette.js +0 -47
  1973. package/lib/theme/common/entities.d.ts +0 -6
  1974. package/lib/theme/common/entities.js +0 -1
  1975. package/src/mocks/@storybook/addon-actions.ts +0 -10
  1976. /package/lib/{components/DataDictionary/components/Table/columns → 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 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.
@@ -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 off icon.
5
5
  */
6
6
  export const SearchOffIcon = ({ 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: "M5.11866 16.5002C4.13106 16.5002 3.28101 16.1439 2.56851 15.4314C1.85601 14.7189 1.49976 13.8689 1.49976 12.8813C1.49976 11.8814 1.85601 11.0252 2.56851 10.3127C3.28101 9.60015 4.13106 9.2439 5.11866 9.2439C6.11856 9.2439 6.97476 9.60015 7.68726 10.3127C8.39976 11.0252 8.75601 11.8814 8.75601 12.8813C8.75601 13.8689 8.39976 14.7189 7.68726 15.4314C6.97476 16.1439 6.11856 16.5002 5.11866 16.5002ZM3.58101 14.4374C3.64371 14.5001 3.72186 14.5314 3.81546 14.5314C3.90936 14.5314 3.98751 14.5001 4.04991 14.4374L5.11866 13.3686L6.18741 14.4374C6.24981 14.5001 6.32481 14.5283 6.41241 14.522C6.50001 14.5157 6.57501 14.4813 6.63741 14.4189C6.69981 14.3562 6.73101 14.2781 6.73101 14.1845C6.73101 14.0906 6.69981 14.0124 6.63741 13.95L5.56866 12.8813L6.67476 11.7752C6.74976 11.7125 6.78411 11.6375 6.77781 11.5502C6.77181 11.4626 6.73746 11.3876 6.67476 11.3252C6.59976 11.2502 6.52161 11.2127 6.44031 11.2127C6.35931 11.2127 6.28746 11.2502 6.22476 11.3252L5.11866 12.4124L4.03101 11.3252C3.96861 11.2502 3.89361 11.2127 3.80601 11.2127C3.71871 11.2127 3.64371 11.2502 3.58101 11.3252C3.51861 11.3876 3.48741 11.4626 3.48741 11.5502C3.48741 11.6375 3.51861 11.7125 3.58101 11.7752L4.66866 12.8813L3.58101 13.95C3.51861 14.025 3.48741 14.1063 3.48741 14.1939C3.48741 14.2812 3.51861 14.3624 3.58101 14.4374ZM15.1501 15.3L10.7063 10.8563C10.6061 10.9562 10.481 11.0499 10.331 11.1375C10.181 11.2251 10.0373 11.2938 9.89991 11.3436C9.81231 11.1813 9.71541 11.0094 9.60921 10.8279C9.50301 10.6467 9.38736 10.4811 9.26226 10.3311C9.87486 10.0563 10.3843 9.6345 10.7905 9.0657C11.1967 8.4969 11.3998 7.8312 11.3998 7.0686C11.3998 6.0813 11.053 5.2407 10.3594 4.5468C9.66546 3.8532 8.82486 3.5064 7.83756 3.5064C6.83736 3.5064 5.99046 3.8532 5.29686 4.5468C4.60296 5.2407 4.25601 6.0813 4.25601 7.0686C4.25601 7.2438 4.27161 7.41885 4.30281 7.59375C4.33431 7.76865 4.36881 7.92495 4.40631 8.06265C4.23111 8.08755 4.03101 8.1312 3.80601 8.1936C3.58101 8.2563 3.38106 8.32515 3.20616 8.40015C3.13116 8.21265 3.07806 8.00325 3.04686 7.77195C3.01566 7.54065 3.00006 7.3062 3.00006 7.0686C3.00006 5.7312 3.46881 4.59375 4.40631 3.65625C5.34381 2.71875 6.48756 2.25 7.83756 2.25C9.17496 2.25 10.3124 2.71875 11.2499 3.65625C12.1874 4.59375 12.6562 5.7312 12.6562 7.0686C12.6562 7.6062 12.5656 8.1312 12.3844 8.6436C12.2032 9.1563 11.95 9.6063 11.6248 9.9936L16.0501 14.4C16.1749 14.5251 16.2373 14.6751 16.2373 14.85C16.2373 15.0249 16.1749 15.1749 16.0501 15.3C15.925 15.4251 15.775 15.4877 15.6001 15.4877C15.4249 15.4877 15.2749 15.4251 15.1501 15.3Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M5.11866 16.5002C4.13106 16.5002 3.28101 16.1439 2.56851 15.4314C1.85601 14.7189 1.49976 13.8689 1.49976 12.8813C1.49976 11.8814 1.85601 11.0252 2.56851 10.3127C3.28101 9.60015 4.13106 9.2439 5.11866 9.2439C6.11856 9.2439 6.97476 9.60015 7.68726 10.3127C8.39976 11.0252 8.75601 11.8814 8.75601 12.8813C8.75601 13.8689 8.39976 14.7189 7.68726 15.4314C6.97476 16.1439 6.11856 16.5002 5.11866 16.5002ZM3.58101 14.4374C3.64371 14.5001 3.72186 14.5314 3.81546 14.5314C3.90936 14.5314 3.98751 14.5001 4.04991 14.4374L5.11866 13.3686L6.18741 14.4374C6.24981 14.5001 6.32481 14.5283 6.41241 14.522C6.50001 14.5157 6.57501 14.4813 6.63741 14.4189C6.69981 14.3562 6.73101 14.2781 6.73101 14.1845C6.73101 14.0906 6.69981 14.0124 6.63741 13.95L5.56866 12.8813L6.67476 11.7752C6.74976 11.7125 6.78411 11.6375 6.77781 11.5502C6.77181 11.4626 6.73746 11.3876 6.67476 11.3252C6.59976 11.2502 6.52161 11.2127 6.44031 11.2127C6.35931 11.2127 6.28746 11.2502 6.22476 11.3252L5.11866 12.4124L4.03101 11.3252C3.96861 11.2502 3.89361 11.2127 3.80601 11.2127C3.71871 11.2127 3.64371 11.2502 3.58101 11.3252C3.51861 11.3876 3.48741 11.4626 3.48741 11.5502C3.48741 11.6375 3.51861 11.7125 3.58101 11.7752L4.66866 12.8813L3.58101 13.95C3.51861 14.025 3.48741 14.1063 3.48741 14.1939C3.48741 14.2812 3.51861 14.3624 3.58101 14.4374ZM15.1501 15.3L10.7063 10.8563C10.6061 10.9562 10.481 11.0499 10.331 11.1375C10.181 11.2251 10.0373 11.2938 9.89991 11.3436C9.81231 11.1813 9.71541 11.0094 9.60921 10.8279C9.50301 10.6467 9.38736 10.4811 9.26226 10.3311C9.87486 10.0563 10.3843 9.6345 10.7905 9.0657C11.1967 8.4969 11.3998 7.8312 11.3998 7.0686C11.3998 6.0813 11.053 5.2407 10.3594 4.5468C9.66546 3.8532 8.82486 3.5064 7.83756 3.5064C6.83736 3.5064 5.99046 3.8532 5.29686 4.5468C4.60296 5.2407 4.25601 6.0813 4.25601 7.0686C4.25601 7.2438 4.27161 7.41885 4.30281 7.59375C4.33431 7.76865 4.36881 7.92495 4.40631 8.06265C4.23111 8.08755 4.03101 8.1312 3.80601 8.1936C3.58101 8.2563 3.38106 8.32515 3.20616 8.40015C3.13116 8.21265 3.07806 8.00325 3.04686 7.77195C3.01566 7.54065 3.00006 7.3062 3.00006 7.0686C3.00006 5.7312 3.46881 4.59375 4.40631 3.65625C5.34381 2.71875 6.48756 2.25 7.83756 2.25C9.17496 2.25 10.3124 2.71875 11.2499 3.65625C12.1874 4.59375 12.6562 5.7312 12.6562 7.0686C12.6562 7.6062 12.5656 8.1312 12.3844 8.6436C12.2032 9.1563 11.95 9.6063 11.6248 9.9936L16.0501 14.4C16.1749 14.5251 16.2373 14.6751 16.2373 14.85C16.2373 15.0249 16.1749 15.1749 16.0501 15.3C15.925 15.4251 15.775 15.4877 15.6001 15.4877C15.4249 15.4877 15.2749 15.4251 15.1501 15.3Z", fill: "currentColor" }) }));
9
8
  };
@@ -1,2 +1,3 @@
1
+ import { JSX } from "react";
1
2
  import { CustomSVGIconProps } from "../../common/entities";
2
3
  export declare const Segment: ({ 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 Segment = ({ 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: "M7.50556 13.5117C7.29316 13.5117 7.10896 13.4337 6.95296 13.2777C6.79636 13.1211 6.71806 12.9366 6.71806 12.7242C6.71806 12.5118 6.79636 12.3273 6.95296 12.1707C7.10896 12.0147 7.29316 11.9367 7.50556 11.9367H14.9684C15.1808 11.9367 15.3653 12.0147 15.5219 12.1707C15.6778 12.3273 15.7559 12.5118 15.7559 12.7242C15.7559 12.9366 15.6778 13.1211 15.5219 13.2777C15.3653 13.4337 15.1808 13.5117 14.9684 13.5117H7.50556ZM3.04336 6.08672C2.83096 6.08672 2.64646 6.00872 2.48986 5.85272C2.33386 5.69612 2.25586 5.51162 2.25586 5.29922C2.25586 5.08682 2.33386 4.90232 2.48986 4.74572C2.64646 4.58972 2.83096 4.51172 3.04336 4.51172H14.9684C15.1808 4.51172 15.3653 4.58972 15.5219 4.74572C15.6778 4.90232 15.7559 5.08682 15.7559 5.29922C15.7559 5.51162 15.6778 5.69612 15.5219 5.85272C15.3653 6.00872 15.1808 6.08672 14.9684 6.08672H3.04336ZM7.50556 9.79922C7.29316 9.79922 7.10896 9.72119 6.95296 9.56522C6.79636 9.40862 6.71806 9.22412 6.71806 9.01172C6.71806 8.79932 6.79636 8.61482 6.95296 8.45822C7.10896 8.30222 7.29316 8.22422 7.50556 8.22422H14.9684C15.1808 8.22422 15.3653 8.30222 15.5219 8.45822C15.6778 8.61482 15.7559 8.79932 15.7559 9.01172C15.7559 9.22412 15.6778 9.40862 15.5219 9.56522C15.3653 9.72119 15.1808 9.79922 14.9684 9.79922H7.50556Z", fill: "currentColor" })));
4
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M7.50556 13.5117C7.29316 13.5117 7.10896 13.4337 6.95296 13.2777C6.79636 13.1211 6.71806 12.9366 6.71806 12.7242C6.71806 12.5118 6.79636 12.3273 6.95296 12.1707C7.10896 12.0147 7.29316 11.9367 7.50556 11.9367H14.9684C15.1808 11.9367 15.3653 12.0147 15.5219 12.1707C15.6778 12.3273 15.7559 12.5118 15.7559 12.7242C15.7559 12.9366 15.6778 13.1211 15.5219 13.2777C15.3653 13.4337 15.1808 13.5117 14.9684 13.5117H7.50556ZM3.04336 6.08672C2.83096 6.08672 2.64646 6.00872 2.48986 5.85272C2.33386 5.69612 2.25586 5.51162 2.25586 5.29922C2.25586 5.08682 2.33386 4.90232 2.48986 4.74572C2.64646 4.58972 2.83096 4.51172 3.04336 4.51172H14.9684C15.1808 4.51172 15.3653 4.58972 15.5219 4.74572C15.6778 4.90232 15.7559 5.08682 15.7559 5.29922C15.7559 5.51162 15.6778 5.69612 15.5219 5.85272C15.3653 6.00872 15.1808 6.08672 14.9684 6.08672H3.04336ZM7.50556 9.79922C7.29316 9.79922 7.10896 9.72119 6.95296 9.56522C6.79636 9.40862 6.71806 9.22412 6.71806 9.01172C6.71806 8.79932 6.79636 8.61482 6.95296 8.45822C7.10896 8.30222 7.29316 8.22422 7.50556 8.22422H14.9684C15.1808 8.22422 15.3653 8.30222 15.5219 8.45822C15.6778 8.61482 15.7559 8.79932 15.7559 9.01172C15.7559 9.22412 15.6778 9.40862 15.5219 9.56522C15.3653 9.72119 15.1808 9.79922 14.9684 9.79922H7.50556Z", 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 Slack 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 Slack icon (socials).
5
5
  */
6
6
  export const SlackIcon = ({ 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: "M5.3437 10.6877C5.3437 11.3908 4.72495 12.0096 4.02183 12.0096C3.29058 12.0096 2.69995 11.3908 2.69995 10.6877C2.69995 9.95645 3.29058 9.36582 4.02183 9.36582H5.3437V10.6877ZM5.99058 10.6877C5.99058 9.95645 6.60933 9.36582 7.31245 9.36582C8.0437 9.36582 8.63433 9.95645 8.63433 10.6877V13.9783C8.63433 14.7096 8.0437 15.3002 7.31245 15.3002C6.60933 15.3002 5.99058 14.7096 5.99058 13.9783V10.6877ZM7.31245 5.37207C6.60933 5.37207 5.99058 4.75332 5.99058 4.0502C5.99058 3.31895 6.60933 2.7002 7.31245 2.7002C8.0437 2.7002 8.63433 3.31895 8.63433 4.0502V5.37207H7.31245ZM7.31245 6.01895C8.0437 6.01895 8.63433 6.60957 8.63433 7.34082C8.63433 8.07207 8.0437 8.6627 7.31245 8.6627H4.02183C3.29058 8.6627 2.69995 8.07207 2.69995 7.34082C2.69995 6.60957 3.29058 6.01895 4.02183 6.01895H7.31245ZM12.6281 7.34082C12.6281 6.60957 13.2468 6.01895 13.95 6.01895C14.6812 6.01895 15.3 6.60957 15.3 7.34082C15.3 8.07207 14.6812 8.6627 13.95 8.6627H12.6281V7.34082ZM11.9812 7.34082C11.9812 8.07207 11.3906 8.6627 10.6593 8.6627C9.92808 8.6627 9.33745 8.07207 9.33745 7.34082V4.0502C9.33745 3.31895 9.92808 2.7002 10.6593 2.7002C11.3906 2.7002 11.9812 3.31895 11.9812 4.0502V7.34082ZM10.6593 12.6564C11.3906 12.6564 11.9812 13.2752 11.9812 13.9783C11.9812 14.7096 11.3906 15.3002 10.6593 15.3002C9.92808 15.3002 9.33745 14.7096 9.33745 13.9783V12.6564H10.6593ZM10.6593 12.0096C9.92808 12.0096 9.33745 11.3908 9.33745 10.6877C9.33745 9.95645 9.92808 9.36582 10.6593 9.36582H13.95C14.6812 9.36582 15.3 9.95645 15.3 10.6877C15.3 11.3908 14.6812 12.0096 13.95 12.0096H10.6593Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M5.3437 10.6877C5.3437 11.3908 4.72495 12.0096 4.02183 12.0096C3.29058 12.0096 2.69995 11.3908 2.69995 10.6877C2.69995 9.95645 3.29058 9.36582 4.02183 9.36582H5.3437V10.6877ZM5.99058 10.6877C5.99058 9.95645 6.60933 9.36582 7.31245 9.36582C8.0437 9.36582 8.63433 9.95645 8.63433 10.6877V13.9783C8.63433 14.7096 8.0437 15.3002 7.31245 15.3002C6.60933 15.3002 5.99058 14.7096 5.99058 13.9783V10.6877ZM7.31245 5.37207C6.60933 5.37207 5.99058 4.75332 5.99058 4.0502C5.99058 3.31895 6.60933 2.7002 7.31245 2.7002C8.0437 2.7002 8.63433 3.31895 8.63433 4.0502V5.37207H7.31245ZM7.31245 6.01895C8.0437 6.01895 8.63433 6.60957 8.63433 7.34082C8.63433 8.07207 8.0437 8.6627 7.31245 8.6627H4.02183C3.29058 8.6627 2.69995 8.07207 2.69995 7.34082C2.69995 6.60957 3.29058 6.01895 4.02183 6.01895H7.31245ZM12.6281 7.34082C12.6281 6.60957 13.2468 6.01895 13.95 6.01895C14.6812 6.01895 15.3 6.60957 15.3 7.34082C15.3 8.07207 14.6812 8.6627 13.95 8.6627H12.6281V7.34082ZM11.9812 7.34082C11.9812 8.07207 11.3906 8.6627 10.6593 8.6627C9.92808 8.6627 9.33745 8.07207 9.33745 7.34082V4.0502C9.33745 3.31895 9.92808 2.7002 10.6593 2.7002C11.3906 2.7002 11.9812 3.31895 11.9812 4.0502V7.34082ZM10.6593 12.6564C11.3906 12.6564 11.9812 13.2752 11.9812 13.9783C11.9812 14.7096 11.3906 15.3002 10.6593 15.3002C9.92808 15.3002 9.33745 14.7096 9.33745 13.9783V12.6564H10.6593ZM10.6593 12.0096C9.92808 12.0096 9.33745 11.3908 9.33745 10.6877C9.33745 9.95645 9.92808 9.36582 10.6593 9.36582H13.95C14.6812 9.36582 15.3 9.95645 15.3 10.6877C15.3 11.3908 14.6812 12.0096 13.95 12.0096H10.6593Z", 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 south (back arrow) 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 south (back arrow) icon.
5
5
  */
6
6
  export const SouthIcon = ({ 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: "M1.8192 9.00009C1.8192 8.89989 1.8411 8.79999 1.8849 8.70039C1.9287 8.60019 1.9881 8.51259 2.0631 8.43759L6.1878 4.31289C6.3378 4.16289 6.5223 4.08789 6.7413 4.08789C6.9597 4.08789 7.1439 4.16289 7.2939 4.31289C7.4439 4.46289 7.5189 4.64409 7.5189 4.85649C7.5189 5.06889 7.4439 5.25009 7.2939 5.40009L4.5003 8.21259L15.7125 8.21259C15.9249 8.21259 16.1094 8.29059 16.266 8.44659C16.422 8.60319 16.5 8.78769 16.5 9.00009C16.5 9.21249 16.422 9.39699 16.266 9.55359C16.1094 9.70959 15.9249 9.78759 15.7125 9.78759L4.5003 9.78759L7.2939 12.6001C7.4439 12.7501 7.5189 12.9313 7.5189 13.1437C7.5189 13.3561 7.4439 13.5373 7.2939 13.6873C7.1439 13.8373 6.9597 13.9123 6.7413 13.9123C6.5223 13.9123 6.3378 13.8373 6.1878 13.6873L2.0631 9.56259C1.9881 9.48759 1.9287 9.39999 1.8849 9.29979C1.8411 9.20019 1.8192 9.10029 1.8192 9.00009Z", fill: "currentColor" })));
7
+ return (_jsx(SvgIcon, { fontSize: fontSize, viewBox: viewBox, ...props, children: _jsx("path", { d: "M1.8192 9.00009C1.8192 8.89989 1.8411 8.79999 1.8849 8.70039C1.9287 8.60019 1.9881 8.51259 2.0631 8.43759L6.1878 4.31289C6.3378 4.16289 6.5223 4.08789 6.7413 4.08789C6.9597 4.08789 7.1439 4.16289 7.2939 4.31289C7.4439 4.46289 7.5189 4.64409 7.5189 4.85649C7.5189 5.06889 7.4439 5.25009 7.2939 5.40009L4.5003 8.21259L15.7125 8.21259C15.9249 8.21259 16.1094 8.29059 16.266 8.44659C16.422 8.60319 16.5 8.78769 16.5 9.00009C16.5 9.21249 16.422 9.39699 16.266 9.55359C16.1094 9.70959 15.9249 9.78759 15.7125 9.78759L4.5003 9.78759L7.2939 12.6001C7.4439 12.7501 7.5189 12.9313 7.5189 13.1437C7.5189 13.3561 7.4439 13.5373 7.2939 13.6873C7.1439 13.8373 6.9597 13.9123 6.7413 13.9123C6.5223 13.9123 6.3378 13.8373 6.1878 13.6873L2.0631 9.56259C1.9881 9.48759 1.9287 9.39999 1.8849 9.29979C1.8411 9.20019 1.8192 9.10029 1.8192 9.00009Z", 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 success 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 success icon.
5
5
  */
6
6
  export const SuccessIcon = ({ 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: "M7.98744 10.2183L6.41244 8.6433C6.26244 8.4933 6.08124 8.4183 5.86884 8.4183C5.65644 8.4183 5.47524 8.4933 5.32524 8.6433C5.16264 8.8059 5.08134 8.9967 5.08134 9.2157C5.08134 9.4341 5.15634 9.6183 5.30634 9.7683L7.40604 11.8689C7.56864 12.0309 7.75614 12.1119 7.96854 12.1119C8.18094 12.1119 8.36844 12.0309 8.53104 11.8689L12.7124 7.6875C12.8498 7.5495 12.8843 7.3839 12.8159 7.1907C12.7469 6.9969 12.7124 6.7998 12.7124 6.5994C12.5624 6.4494 12.3779 6.3744 12.1589 6.3744C11.9405 6.3744 11.7563 6.4494 11.6063 6.5994L7.98744 10.2183ZM8.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: "M7.98744 10.2183L6.41244 8.6433C6.26244 8.4933 6.08124 8.4183 5.86884 8.4183C5.65644 8.4183 5.47524 8.4933 5.32524 8.6433C5.16264 8.8059 5.08134 8.9967 5.08134 9.2157C5.08134 9.4341 5.15634 9.6183 5.30634 9.7683L7.40604 11.8689C7.56864 12.0309 7.75614 12.1119 7.96854 12.1119C8.18094 12.1119 8.36844 12.0309 8.53104 11.8689L12.7124 7.6875C12.8498 7.5495 12.8843 7.3839 12.8159 7.1907C12.7469 6.9969 12.7124 6.7998 12.7124 6.5994C12.5624 6.4494 12.3779 6.3744 12.1589 6.3744C11.9405 6.3744 11.7563 6.4494 11.6063 6.5994L7.98744 10.2183ZM8.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
  };