aefis-core-ui 7.0.0-rc.9 → 7.0.0-rc.90

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 (519) hide show
  1. package/core-ui/HOCs/withThemeProvider.tsx +2 -2
  2. package/core-ui/Icon/index.jsx +38 -2
  3. package/core-ui/components/ActionMenuButton/ActionMenuButton.jsx +54 -11
  4. package/core-ui/components/Actions/Actions.jsx +4 -3
  5. package/core-ui/components/Actions/components/Action/Action.jsx +3 -3
  6. package/core-ui/components/Actions/components/Action/components/ActionMenu/ActionMenu.jsx +31 -39
  7. package/core-ui/components/Actions/components/Action/components/Badge/Badge.jsx +3 -3
  8. package/core-ui/components/Actions/components/Action/components/Icon/Icon.jsx +4 -3
  9. package/core-ui/components/Actions/components/Action/components/Text/Text.jsx +4 -3
  10. package/core-ui/components/Alert/Alert.jsx +97 -13
  11. package/core-ui/components/Alert/components/ActionButton/ActionButton.jsx +57 -25
  12. package/core-ui/components/AnimatedExpandMoreIcon/AnimatedExpandMoreIcon.jsx +8 -4
  13. package/core-ui/components/AppToolbar/AppToolbar.jsx +68 -14
  14. package/core-ui/components/AppToolbar/components/Action/Action.jsx +14 -9
  15. package/core-ui/components/AppToolbar/components/UserButton/UserButton.jsx +12 -8
  16. package/core-ui/components/AutoComplete/AutoCompleteBase.jsx +2 -2
  17. package/core-ui/components/AutoComplete/AutoCompleteQuery.jsx +2 -2
  18. package/core-ui/components/AutoCompleteAddable/AutoCompleteAddable.jsx +2 -2
  19. package/core-ui/components/AutoCompleteAddable/components/AutoCompleteAddableBase.jsx +5 -3
  20. package/core-ui/components/AvatarBox/AvatarBox.jsx +32 -11
  21. package/core-ui/components/AvatarTitle/AvatarTitle.jsx +2 -2
  22. package/core-ui/components/AvatarTitle/UnstableAvatarTitle.jsx +12 -6
  23. package/core-ui/components/BusinessObject/BusinessObject.jsx +2 -2
  24. package/core-ui/components/BusinessObject/components/CardDisplay/CardDisplay.jsx +2 -2
  25. package/core-ui/components/BusinessObject/components/CardDisplay/components/OutcomeSpaceDisplay/OutcomeSpaceDisplay.jsx +2 -2
  26. package/core-ui/components/BusinessObject/components/ChipDisplay/ChipDisplay.jsx +2 -2
  27. package/core-ui/components/BusinessObject/components/ListItemDisplay/ListItemDisplay.jsx +2 -2
  28. package/core-ui/components/BusinessObject/entities/accreditor/accreditor.js +2 -2
  29. package/core-ui/components/BusinessObject/entities/administrativeDivision/administrativeDivision.js +2 -2
  30. package/core-ui/components/BusinessObject/entities/administrativeUnit/administrativeUnit.js +2 -2
  31. package/core-ui/components/BusinessObject/entities/assessment/assessment.js +2 -2
  32. package/core-ui/components/BusinessObject/entities/assignment/assignment.js +2 -2
  33. package/core-ui/components/BusinessObject/entities/badge/badge.js +2 -2
  34. package/core-ui/components/BusinessObject/entities/badge/components/BadgeChip/BadgeChip.jsx +2 -2
  35. package/core-ui/components/BusinessObject/entities/badge/components/BadgeListItem/BadgeListItem.jsx +2 -2
  36. package/core-ui/components/BusinessObject/entities/cocurricular/cocurricular.js +2 -2
  37. package/core-ui/components/BusinessObject/entities/college/college.js +2 -2
  38. package/core-ui/components/BusinessObject/entities/course/course.js +9 -8
  39. package/core-ui/components/BusinessObject/entities/courseOutcome/courseOutcome.js +2 -2
  40. package/core-ui/components/BusinessObject/entities/courseSection/courseSection.js +2 -2
  41. package/core-ui/components/BusinessObject/entities/department/department.js +2 -2
  42. package/core-ui/components/BusinessObject/entities/faculty/faculty.js +2 -2
  43. package/core-ui/components/BusinessObject/entities/institution/institution.js +2 -2
  44. package/core-ui/components/BusinessObject/entities/keyword/keyword.js +2 -2
  45. package/core-ui/components/BusinessObject/entities/outcome/outcome.js +2 -2
  46. package/core-ui/components/BusinessObject/entities/outcomeSpace/outcomeSpace.js +2 -2
  47. package/core-ui/components/BusinessObject/entities/performanceIndicator/performanceIndicator.js +2 -2
  48. package/core-ui/components/BusinessObject/entities/program/program.js +2 -2
  49. package/core-ui/components/BusinessObject/entities/programMap/programMap.js +2 -2
  50. package/core-ui/components/BusinessObject/entities/term/term.js +2 -2
  51. package/core-ui/components/BusinessObject/entities/user/user.js +2 -2
  52. package/core-ui/components/BusinessObjectCard/BusinessObjectCard.jsx +3 -7
  53. package/core-ui/components/BusinessObjectCard/components/CardSection/CardSection.jsx +2 -2
  54. package/core-ui/components/BusinessObjectCard/components/CardSectionTitle/CardSectionTitle.jsx +2 -2
  55. package/core-ui/components/BusinessObjectCard/components/EmptyCardSection/EmptyCardSection.jsx +2 -2
  56. package/core-ui/components/BusinessObjectCard/components/Skeleton/Skeleton.jsx +2 -2
  57. package/core-ui/components/BusinessObjectPanel/BusinessObjectPanel.jsx +4 -2
  58. package/core-ui/components/BusinessObjectPanel/components/Header/Header.jsx +7 -7
  59. package/core-ui/components/BusinessObjectPanel/components/Section/Section.jsx +3 -3
  60. package/core-ui/components/BusinessObjectPanel/components/SectionTitle/SectionTitle.jsx +3 -3
  61. package/core-ui/components/BusinessObjectPicker/BusinessObjectPicker.jsx +241 -52
  62. package/core-ui/components/BusinessObjectPicker/_ai_docs/2026-06-09-business-object-picker-enhanced-search-a11y-audit.md +55 -0
  63. package/core-ui/components/BusinessObjectPicker/_ai_docs/2026-06-22-enhanced-search-dialog-usecallback-stability.md +40 -0
  64. package/core-ui/components/BusinessObjectPicker/components/AddItemFormDialog/AddItemFormDialog.jsx +2 -2
  65. package/core-ui/components/BusinessObjectPicker/components/DebouncedTextField/DebouncedTextField.jsx +2 -2
  66. package/core-ui/components/BusinessObjectPicker/components/EnhancedSearchDialog/EnhancedSearchDialog.jsx +55 -12
  67. package/core-ui/components/BusinessObjectPicker/components/RadioGroup/RadioGroup.jsx +2 -2
  68. package/core-ui/components/BusinessObjectPicker/hooks/useAutoCompleteValue.js +2 -2
  69. package/core-ui/components/BusinessObjectPicker/services/withEventManager.js +2 -2
  70. package/core-ui/components/BusinessObjectPicker/utils/updateSelectedItems.js +2 -2
  71. package/core-ui/components/BusinessObjectStatus/BusinessObjectStatus.jsx +2 -2
  72. package/core-ui/components/BusinessObjectStatus/components/ChipDisplay/ChipDisplay.jsx +3 -2
  73. package/core-ui/components/BusinessObjectStatus/components/ListItemDisplay/ListItemDisplay.jsx +5 -4
  74. package/core-ui/components/BusinessObjectStatus/config.js +2 -2
  75. package/core-ui/components/BusinessObjectStatusButton/BusinessObjectStatusButton.jsx +3 -5
  76. package/core-ui/components/BusinessObjectStatusButton/withStatusButtonDataSource.jsx +2 -2
  77. package/core-ui/components/BusinessObjectStatusPicker/BusinessObjectStatusPicker.jsx +2 -2
  78. package/core-ui/components/BusinessObjectTable/BusinessObjectTable.jsx +2 -2
  79. package/core-ui/components/BusinessObjectTable/FilteredBusinessObjectTable.jsx +2 -2
  80. package/core-ui/components/Button/Button.jsx +25 -5
  81. package/core-ui/components/Button/theme.js +2 -2
  82. package/core-ui/components/Charts/Charts.js +2 -2
  83. package/core-ui/components/Charts/components/WordCloud/WordCloud.jsx +2 -2
  84. package/core-ui/components/Chip/Chip.jsx +3 -3
  85. package/core-ui/components/ChipList/ChipList.jsx +74 -101
  86. package/core-ui/components/Collapsible/Collapsible.jsx +2 -2
  87. package/core-ui/components/Collapsible/CollapsibleContent/CollapsibleContent.jsx +13 -5
  88. package/core-ui/components/Collapsible/CollapsibleContentButton/CollapsibleContentButton.jsx +6 -3
  89. package/core-ui/components/Collapsible/CollapsibleContentButtonContainer/CollapsibleContentButtonContainer.jsx +2 -2
  90. package/core-ui/components/Collapsible/CollapsibleContentContainer/CollapsibleContentContainer.jsx +2 -2
  91. package/core-ui/components/Collapsible/CollapsibleProvider.jsx +2 -2
  92. package/core-ui/components/ConfirmDialog/ConfirmContext.js +2 -2
  93. package/core-ui/components/ConfirmDialog/ConfirmDialog.jsx +2 -2
  94. package/core-ui/components/ConfirmDialog/ConfirmProvider.jsx +2 -2
  95. package/core-ui/components/ConfirmDialog/index.js +2 -2
  96. package/core-ui/components/ConfirmDialog/useConfirm.js +2 -2
  97. package/core-ui/components/ContactForm/ContactForm.jsx +2 -2
  98. package/core-ui/components/ContactForm/utils/checkFormValues.js +2 -2
  99. package/core-ui/components/ContactForm/utils/generateMailingTemplate.js +2 -2
  100. package/core-ui/components/ContentBox/ContentBox.jsx +89 -97
  101. package/core-ui/components/ContentBox/components/Header/Header.jsx +6 -5
  102. package/core-ui/components/ContentBox/components/Header/utils/index.js +2 -2
  103. package/core-ui/components/CoreProvider/CoreProvider.jsx +2 -2
  104. package/core-ui/components/CoreSnackbarProvider/CoreSnackbarProvider.jsx +2 -2
  105. package/core-ui/components/CurriculumChart/CurriculumChart.jsx +2 -2
  106. package/core-ui/components/CurriculumChart/components/CurriculumNode/CurriculumNode.jsx +2 -2
  107. package/core-ui/components/DataTable/DataTable.jsx +2 -2
  108. package/core-ui/components/DataTable/components/TableStyles/TableStyles.js +2 -2
  109. package/core-ui/components/DataTable/components/TooltipCell/TooltipCell.jsx +2 -2
  110. package/core-ui/components/DatePicker/DatePicker.jsx +2 -2
  111. package/core-ui/components/DateTitle/DateTitle.jsx +2 -2
  112. package/core-ui/components/DisplayInFrame/DisplayInFrame.jsx +96 -29
  113. package/core-ui/components/DocViewer/DocViewer.jsx +32 -8
  114. package/core-ui/components/DocViewer/PRIZMDOC_VIEWER_CONTROL_API.md +12 -1
  115. package/core-ui/components/DocViewer/components/PrizmDocViewer/PrizmDocViewer.tsx +256 -63
  116. package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/ALGORITHM.md +464 -0
  117. package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/anchorPageCutSearch.ts +279 -0
  118. package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/buildFallbackSearchPattern.test.ts +118 -0
  119. package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/buildFallbackSearchPattern.ts +123 -0
  120. package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/debugLog.ts +49 -0
  121. package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/getTextOverlap.ts +61 -0
  122. package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/normalizeSearchText.test.ts +121 -0
  123. package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/normalizeSearchText.ts +70 -0
  124. package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/pageCutSearch.ts +407 -0
  125. package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/useTextHighlightSearch.ts +398 -0
  126. package/core-ui/components/DocViewer/components/PrizmDocViewer/prizmdoc.types.ts +4 -2
  127. package/core-ui/components/Drawer/Drawer.jsx +133 -45
  128. package/core-ui/components/DynamicContainer/DynamicContainer.jsx +2 -2
  129. package/core-ui/components/DynamicForm/DynamicForm.jsx +2 -2
  130. package/core-ui/components/DynamicForm/Fields/BadgeKeywordField/AutoCompleteBadgeQuery.jsx +2 -2
  131. package/core-ui/components/DynamicForm/Fields/BadgeKeywordField/BadgeKeyworField.jsx +2 -2
  132. package/core-ui/components/DynamicForm/Fields/BusinessObjectPickerField/BusinessObjectPickerField.jsx +2 -2
  133. package/core-ui/components/DynamicForm/Fields/DateRangeField/DateRangeField.jsx +2 -2
  134. package/core-ui/components/DynamicForm/Fields/DateSelect/DateSelect.jsx +2 -2
  135. package/core-ui/components/DynamicForm/Fields/DateSelect/DateSelectSimple.jsx +2 -2
  136. package/core-ui/components/DynamicForm/Fields/DateSelect/DateTypeUtil.js +2 -2
  137. package/core-ui/components/DynamicForm/Fields/LinkUserField/LinkUserField.jsx +2 -2
  138. package/core-ui/components/DynamicForm/Fields/LinkUserField/LinkUserWidget.jsx +2 -2
  139. package/core-ui/components/DynamicForm/Fields/SelectField/SelectField.jsx +2 -2
  140. package/core-ui/components/DynamicForm/Fields/SelectField/SelectFieldLoading.jsx +2 -2
  141. package/core-ui/components/DynamicForm/Fields/SelectField/SelectFieldReadOnly.jsx +2 -2
  142. package/core-ui/components/DynamicForm/Fields/StatusField/StatusField.jsx +2 -2
  143. package/core-ui/components/DynamicForm/Fields/StatusField/StatusFieldReadOnly.jsx +2 -2
  144. package/core-ui/components/DynamicForm/Fields/UploadField/ImageUploadReadOnly.jsx +2 -2
  145. package/core-ui/components/DynamicForm/Fields/UploadField/Upload.jsx +2 -2
  146. package/core-ui/components/DynamicForm/Fields/UploadField/UploadField.js +2 -2
  147. package/core-ui/components/DynamicForm/HOCs/connect/connect.jsx +2 -2
  148. package/core-ui/components/DynamicForm/HOCs/globalHOC.js +2 -2
  149. package/core-ui/components/DynamicForm/HOCs/withEmtyValue/withEmptyValue.jsx +2 -2
  150. package/core-ui/components/DynamicForm/HOCs/withEvalDisable/withEvalDisable.jsx +2 -2
  151. package/core-ui/components/DynamicForm/HOCs/withReadOnly/withReadOnly.jsx +2 -2
  152. package/core-ui/components/DynamicForm/HOCs/withRenderUiSchema/withRenderUiSchema.jsx +2 -2
  153. package/core-ui/components/DynamicForm/HOCs/withValidate/withValidate.jsx +2 -2
  154. package/core-ui/components/DynamicForm/Templates/ArrayFieldTemplate.jsx +2 -2
  155. package/core-ui/components/DynamicForm/Templates/CustomFieldTemplate.jsx +2 -2
  156. package/core-ui/components/DynamicForm/Templates/ObjectFieldTemplate.jsx +2 -2
  157. package/core-ui/components/DynamicForm/Widgets/CurrencyWidget/CurrencyWidget.jsx +2 -2
  158. package/core-ui/components/DynamicForm/Widgets/DateWidget/DateWidget.jsx +2 -2
  159. package/core-ui/components/DynamicForm/Widgets/PhoneWidget/PhoneWidget.jsx +2 -2
  160. package/core-ui/components/DynamicForm/Widgets/PhoneWidget/utils.jsx +2 -2
  161. package/core-ui/components/DynamicForm/Widgets/SelectWidget/SelectWidget.jsx +2 -2
  162. package/core-ui/components/DynamicForm/Widgets/TextWidget/TextWidget.jsx +2 -2
  163. package/core-ui/components/DynamicForm/Widgets/TextareaWidget/TextareaWidget.jsx +2 -2
  164. package/core-ui/components/DynamicForm/Widgets/ValidateWidget/ValidateWidget.jsx +2 -2
  165. package/core-ui/components/DynamicForm/commonHOCs.js +2 -2
  166. package/core-ui/components/DynamicForm/components/AutoComplete/AutoCompleteBase.jsx +2 -2
  167. package/core-ui/components/DynamicForm/components/AutoComplete/AutoCompleteQuery.jsx +2 -2
  168. package/core-ui/components/DynamicForm/components/AutoComplete/AutoCompleteSearch.jsx +2 -2
  169. package/core-ui/components/DynamicForm/components/AutoComplete/AutoCompleteStatus.jsx +2 -2
  170. package/core-ui/components/DynamicForm/components/DisableWrapper/DisableWrapper.jsx +2 -2
  171. package/core-ui/components/DynamicForm/components/FieldContainer/FieldContainer.jsx +2 -2
  172. package/core-ui/components/DynamicForm/components/FormButtons/FormButtons.jsx +2 -2
  173. package/core-ui/components/DynamicForm/components/ReadOnlyView/ReadOnlyView.jsx +2 -2
  174. package/core-ui/components/DynamicForm/components/SelectComponent/SelectComponent.js +2 -2
  175. package/core-ui/components/DynamicForm/components/TextWidgetBase/TextWidgetBase.jsx +2 -2
  176. package/core-ui/components/DynamicForm/components/ToggleButtonField/ToggleButtonField.jsx +2 -2
  177. package/core-ui/components/DynamicForm/components/ToggleButtonWidget/ToggleButtonWidget.jsx +2 -2
  178. package/core-ui/components/DynamicForm/hooks/useEvalQueryParam/useEvalQueryParam.js +2 -2
  179. package/core-ui/components/DynamicForm/hooks/useFormState/useFormState.js +2 -2
  180. package/core-ui/components/DynamicForm/hooks/useFormStateScopedEval/useFormStateScopedEval.js +2 -2
  181. package/core-ui/components/DynamicForm/hooks/useProcessCondition/useProcessCondition.js +2 -2
  182. package/core-ui/components/DynamicForm/hooks/useQueryTemplateParam/useQueryTemplateParam.js +2 -2
  183. package/core-ui/components/DynamicForm/hooks/useReadOnly/useReadOnly.js +2 -2
  184. package/core-ui/components/DynamicForm/hooks/useRender/useRender.js +2 -2
  185. package/core-ui/components/DynamicForm/hooks/useSelector/useSelector.js +2 -2
  186. package/core-ui/components/DynamicForm/hooks/useSubmitted/useSubmitted.js +2 -2
  187. package/core-ui/components/DynamicForm/store.js +2 -2
  188. package/core-ui/components/DynamicForm/utils/decodeHtml.js +2 -2
  189. package/core-ui/components/DynamicForm/utils/formStore.js +2 -2
  190. package/core-ui/components/DynamicForm/utils/getDateObject.js +2 -2
  191. package/core-ui/components/DynamicForm/utils/getError.jsx +2 -2
  192. package/core-ui/components/DynamicForm/utils/processForm.js +2 -2
  193. package/core-ui/components/DynamicForm/validation/rules.js +2 -2
  194. package/core-ui/components/DynamicForm/validation/transformErrors.js +2 -2
  195. package/core-ui/components/EditableText/EditableText.jsx +2 -2
  196. package/core-ui/components/EmptyStateMessage/EmptyStateMessage.jsx +205 -0
  197. package/core-ui/components/ErrorMessage/ErrorMessage.jsx +2 -2
  198. package/core-ui/components/FileViewer/FileViewer.jsx +8 -4
  199. package/core-ui/components/FileViewer/components/DownloadInfo/DownloadInfo.jsx +5 -4
  200. package/core-ui/components/FilterChipRow/FilterChipRow.jsx +10 -2
  201. package/core-ui/components/FilterChipRow/components/FilterChips/FilterChips.jsx +16 -12
  202. package/core-ui/components/FilterPanel/FilterPanel.jsx +30 -25
  203. package/core-ui/components/FilterPanel/components/FilterChips/FilterChips.jsx +3 -3
  204. package/core-ui/components/FilterPanel/components/FilterItem/FilterItem.jsx +5 -2
  205. package/core-ui/components/FilterPanel/components/FilterMenu/FilterMenu.jsx +3 -3
  206. package/core-ui/components/FilterPanel/components/FilterSelection/FilterSelection.jsx +3 -3
  207. package/core-ui/components/FilterPanel/components/PanelDisplay/PanelDisplay.jsx +3 -3
  208. package/core-ui/components/FilterPanel/components/SortPicker/SortPicker.jsx +5 -2
  209. package/core-ui/components/FilterPanel/components/TextSearch/TextSearch.jsx +3 -3
  210. package/core-ui/components/FilterPanel/hooks/useFilterState.js +2 -2
  211. package/core-ui/components/FilterPanel/utils/evaluatePickerFilter.js +2 -2
  212. package/core-ui/components/FilterPanel/utils/formatFilters.js +2 -2
  213. package/core-ui/components/FilterPanel/utils/getFilterItemId.js +2 -2
  214. package/core-ui/components/FilterPanel/utils/mapFilters.js +2 -2
  215. package/core-ui/components/FilterPanelWithTextSearch/FilterPanelWithTextSearch.jsx +10 -4
  216. package/core-ui/components/FocusWrapper/FocusWrapper.jsx +2 -2
  217. package/core-ui/components/Footer/Footer.jsx +17 -6
  218. package/core-ui/components/FormElements/FormElements.js +2 -2
  219. package/core-ui/components/FormElements/components/CopyInput/CopyInput.jsx +2 -2
  220. package/core-ui/components/FormElements/components/SimpleSelect/SimpleSelect.jsx +2 -2
  221. package/core-ui/components/FormElements/components/ToggleButton/ToggleButton.jsx +2 -2
  222. package/core-ui/components/FramerMotion/Collapsible/index.tsx +2 -2
  223. package/core-ui/components/FullPageViewer/FullPageViewer.jsx +196 -41
  224. package/core-ui/components/FullPageViewer/hooks/useFpvWindowMessage.js +2 -2
  225. package/core-ui/components/Helios/Breadcrumbs/Breadcrumbs.tsx +216 -0
  226. package/core-ui/components/Helios/BusinessObjectCard/BusinessObjectCard.tsx +414 -0
  227. package/core-ui/components/Helios/BusinessObjectCard/_ai_docs/2026-05-18-business-object-card-a11y-audit.md +71 -0
  228. package/core-ui/components/{BusinessObjectHeader/components/ArtifactDrawer/components/Attachments/Attachments.jsx → Helios/BusinessObjectCard/components/CardSection/CardSection.tsx} +34 -32
  229. package/core-ui/components/Helios/BusinessObjectCard/components/Skeleton/Skeleton.tsx +144 -0
  230. package/core-ui/components/Helios/BusinessObjectHeader/BusinessObjectHeader.tsx +507 -0
  231. package/core-ui/components/Helios/BusinessObjectHeader/HeaderActions.tsx +232 -0
  232. package/core-ui/components/Helios/Drawer/Drawer.tsx +58 -21
  233. package/core-ui/components/Helios/Drawer/Layouts/DrawerBottomBarLayout/DrawerBottomBarLayout.tsx +3 -3
  234. package/core-ui/components/Helios/Drawer/Layouts/DrawerContent/DrawerContent.tsx +2 -2
  235. package/core-ui/components/Helios/FilterPanel/FilterPanel.jsx +2 -2
  236. package/core-ui/components/Helios/FilterPanel/components/FilterChips/FilterChips.jsx +2 -2
  237. package/core-ui/components/Helios/FilterPanel/components/FilterItem/FilterItem.jsx +2 -2
  238. package/core-ui/components/Helios/FilterPanel/components/FilterMenu/FilterMenu.jsx +2 -2
  239. package/core-ui/components/Helios/FilterPanel/components/FilterSelection/FilterSelection.jsx +2 -2
  240. package/core-ui/components/Helios/FilterPanel/components/PanelDisplay/PanelDisplay.jsx +2 -2
  241. package/core-ui/components/Helios/FilterPanel/components/SortPicker/SortPicker.jsx +2 -2
  242. package/core-ui/components/Helios/FilterPanel/components/TextSearch/TextSearch.jsx +2 -2
  243. package/core-ui/components/Helios/FilterPanel/hooks/useFilterState.js +2 -2
  244. package/core-ui/components/Helios/FilterPanel/utils/evaluatePickerFilter.js +2 -2
  245. package/core-ui/components/Helios/FilterPanel/utils/formatFilters.js +2 -2
  246. package/core-ui/components/Helios/FilterPanel/utils/getFilterItemId.js +2 -2
  247. package/core-ui/components/Helios/FilterPanel/utils/mapFilters.js +2 -2
  248. package/core-ui/components/Helios/ScrollableContent/ScrollableContent.tsx +36 -13
  249. package/core-ui/components/Helios/SegmentedControl/SegmentedControl.tsx +272 -0
  250. package/core-ui/components/Helios/SegmentedControl/_ai_docs/2026-05-15-segmented-control-a11y-audit.md +66 -0
  251. package/core-ui/components/Helios/Typography/components/Body1/Body1.jsx +2 -2
  252. package/core-ui/components/Helios/Typography/components/Body2/Body2.jsx +2 -2
  253. package/core-ui/components/Helios/Typography/components/BodyText/BodyText.jsx +2 -2
  254. package/core-ui/components/Helios/Typography/components/Caption/Caption.jsx +2 -2
  255. package/core-ui/components/Helios/Typography/components/H1/H1.jsx +2 -2
  256. package/core-ui/components/Helios/Typography/components/H2/H2.jsx +2 -2
  257. package/core-ui/components/Helios/Typography/components/H3/H3.jsx +2 -2
  258. package/core-ui/components/Helios/Typography/components/H4/H4.jsx +2 -2
  259. package/core-ui/components/Helios/Typography/components/H5/H5.jsx +2 -2
  260. package/core-ui/components/Helios/Typography/components/H6/H6.jsx +2 -2
  261. package/core-ui/components/Helios/Typography/components/Overline/Overline.jsx +2 -2
  262. package/core-ui/components/Helios/Typography/components/SmallText/SmallText.jsx +2 -2
  263. package/core-ui/components/Helios/Typography/index.js +2 -2
  264. package/core-ui/components/Helios/Typography/styles/index.js +2 -2
  265. package/core-ui/components/Helios/index.js +9 -2
  266. package/core-ui/components/IconButton/IconButton.jsx +3 -3
  267. package/core-ui/components/IconPicker/IconPicker.jsx +2 -2
  268. package/core-ui/components/Image/Image.jsx +2 -2
  269. package/core-ui/components/Image/SvgImage.jsx +2 -2
  270. package/core-ui/components/Image/components/ErrorFallback.jsx +2 -2
  271. package/core-ui/components/Image/components/Skeleton/Skeleton.jsx +2 -2
  272. package/core-ui/components/IsometricImage/IsometricImage.jsx +2 -2
  273. package/core-ui/components/List/List.jsx +26 -20
  274. package/core-ui/components/ListItem/ListItem.jsx +75 -33
  275. package/core-ui/components/ListItemGroup/ListItemGroup.jsx +7 -7
  276. package/core-ui/components/MUI/Box/Box.tsx +2 -2
  277. package/core-ui/components/MUI/Divider/Divider.tsx +2 -2
  278. package/core-ui/components/MUI/Grid/Grid.tsx +2 -2
  279. package/core-ui/components/MUI/GridLegacyV2/GridLegacyV2.tsx +5 -3
  280. package/core-ui/components/MUI/LinearProgress/LinearProgress.tsx +2 -2
  281. package/core-ui/components/MUI/Link/Link.tsx +2 -2
  282. package/core-ui/components/MUI/Paper/Paper.tsx +2 -2
  283. package/core-ui/components/MUI/Stack/Stack.tsx +2 -2
  284. package/core-ui/components/MUI/TextField/TextField.tsx +2 -2
  285. package/core-ui/components/MUI/Tooltip/Tooltip.tsx +2 -2
  286. package/core-ui/components/MUI/Typography/Typography.tsx +2 -2
  287. package/core-ui/components/MenuButton/MenuButton.jsx +44 -13
  288. package/core-ui/components/ModalDialog/ModalDialog.jsx +57 -9
  289. package/core-ui/components/ModalDialog/TransitionComponent.jsx +89 -0
  290. package/core-ui/components/ModalDialog/components/DialogTitle/DialogTitle.jsx +66 -19
  291. package/core-ui/components/ModalDialog/components/FullScreenAppBar/FullScreenAppBar.jsx +38 -27
  292. package/core-ui/components/Navigation/Navigation.js +2 -2
  293. package/core-ui/components/Navigation/components/Breadcrumbs.jsx +2 -2
  294. package/core-ui/components/Navigation/components/Drawer.jsx +2 -2
  295. package/core-ui/components/Navigation/components/NavigationProvider.jsx +2 -2
  296. package/core-ui/components/Navigation/components/SecondaryMenu.jsx +2 -2
  297. package/core-ui/components/NavigationButtons/NavigationButtons.jsx +11 -10
  298. package/core-ui/components/NavigationDrawer/NavigationDrawer.jsx +2 -2
  299. package/core-ui/components/NavigationDrawerV2/NavigationDrawerV2.tsx +143 -42
  300. package/core-ui/components/NavigationDrawerV2/components/DrawerHeader.tsx +5 -5
  301. package/core-ui/components/NavigationDrawerV2/components/DrawerTitle.tsx +9 -5
  302. package/core-ui/components/NavigationDrawerV2/components/ItemIcon.tsx +3 -3
  303. package/core-ui/components/NavigationDrawerV2/components/MenuItem.tsx +231 -109
  304. package/core-ui/components/NavigationDrawerV2/components/SubMenuSidebar.tsx +85 -10
  305. package/core-ui/components/NavigationDrawerV2/components/index.ts +2 -2
  306. package/core-ui/components/NavigationDrawerV2/constants/index.ts +6 -4
  307. package/core-ui/components/NavigationDrawerV2/hooks/useNavigationMenuContext.tsx +18 -11
  308. package/core-ui/components/NavigationDrawerV2/types/index.ts +29 -8
  309. package/core-ui/components/NavigationDrawerV2/utils/animations.ts +2 -2
  310. package/core-ui/components/NavigationHorizontalMenuPanel/NavigationHorizontalMenuPanel.jsx +2 -2
  311. package/core-ui/components/NavigationHorizontalMenuPanel/components/Level1Base.jsx +2 -2
  312. package/core-ui/components/NavigationHorizontalMenuPanel/components/Level2Base.jsx +22 -12
  313. package/core-ui/components/NavigationHorizontalMenuPanel/components/Level3Base.jsx +26 -12
  314. package/core-ui/components/NavigationHorizontalMenuPanel/components/MenuItems.jsx +4 -2
  315. package/core-ui/components/NavigationMenuPanel/NavigationMenuPanel.jsx +2 -2
  316. package/core-ui/components/NavigationMenuPanel/components/ClickableItem/ClickableItem.jsx +2 -2
  317. package/core-ui/components/NavigationMenuPanel/components/ExpandableItem/ExpandableItem.jsx +2 -2
  318. package/core-ui/components/NavigationMenuPanel/components/ItemIcon/ItemIcon.jsx +2 -2
  319. package/core-ui/components/NavigationMenuPanel/components/MenuItem/MenuItem.jsx +2 -2
  320. package/core-ui/components/NavigationMenuPanel/components/MenuItemBase/MenuItemBase.jsx +2 -2
  321. package/core-ui/components/NestedMenu/NestedMenu.jsx +2 -2
  322. package/core-ui/components/Notification/Notification.jsx +5 -6
  323. package/core-ui/components/OutcomeSpace/OutcomeSpace.jsx +2 -2
  324. package/core-ui/components/OutcomeSpace/components/ChipDisplay/ChipDisplay.jsx +2 -2
  325. package/core-ui/components/OutcomeSpace/components/ListItemDisplay/ListItemDisplay.jsx +2 -2
  326. package/core-ui/components/OutcomeSpace/spaces/administrativeDivision/administrativeDivision.js +2 -2
  327. package/core-ui/components/OutcomeSpace/spaces/administrativeUnit/administrativeUnit.js +2 -2
  328. package/core-ui/components/OutcomeSpace/spaces/college/college.js +2 -2
  329. package/core-ui/components/OutcomeSpace/spaces/department/department.js +2 -2
  330. package/core-ui/components/OutcomeSpace/spaces/external/external.js +2 -2
  331. package/core-ui/components/OutcomeSpace/spaces/institution/institution.js +2 -2
  332. package/core-ui/components/OutcomeSpace/spaces/program/program.js +2 -2
  333. package/core-ui/components/PanelDrawer/PanelDrawer.jsx +2 -2
  334. package/core-ui/components/ProgressChart/{ProgressChart.jsx → ProgressChart.tsx} +68 -68
  335. package/core-ui/components/ProgressChart/components/BarChart/{BarChart.jsx → BarChart.tsx} +66 -38
  336. package/core-ui/components/ProgressChart/components/CircleChart/{CircleChart.jsx → CircleChart.tsx} +32 -33
  337. package/core-ui/components/ProgressChart/components/CircleChart/{CircleChartTitle.jsx → CircleChartTitle.tsx} +20 -35
  338. package/core-ui/components/ProgressChart/components/MultiSeriesBar/{MultiSeriesBar.jsx → MultiSeriesBar.tsx} +121 -130
  339. package/core-ui/components/ProgressChart/components/MultiSeriesBar/_ai_docs/2026-07-01-multi-series-bar-a11y-audit.md +70 -0
  340. package/core-ui/components/ProgressChart/components/SliderChart/{SliderChart.jsx → SliderChart.tsx} +66 -42
  341. package/core-ui/components/QueryBuilder/Operators.jsx +2 -2
  342. package/core-ui/components/QueryBuilder/QueryBuilder.jsx +2 -2
  343. package/core-ui/components/QueryBuilder/config.jsx +2 -2
  344. package/core-ui/components/QueryBuilder/init_logic.js +2 -2
  345. package/core-ui/components/QueryBuilder/init_value.js +2 -2
  346. package/core-ui/components/QueryBuilder/styles/styles.js +2 -2
  347. package/core-ui/components/RichDataTable/RichDataTable.jsx +2 -2
  348. package/core-ui/components/RichDataTable/functions.jsx +2 -2
  349. package/core-ui/components/RubricScoreSlider/RubricScoreSlider.jsx +3 -2
  350. package/core-ui/components/RubricScoreSlider/components/Legend/Legend.jsx +2 -2
  351. package/core-ui/components/RubricScoreSlider/css/RubricScoreSlider.css +73 -72
  352. package/core-ui/components/RubricScoreSlider/utils/utils.js +2 -2
  353. package/core-ui/components/SaveModal/SaveModal.jsx +14 -5
  354. package/core-ui/components/ScrollingContainer/ScrollingContainer.jsx +2 -2
  355. package/core-ui/components/SecondaryMenu/SecondaryMenu.jsx +2 -2
  356. package/core-ui/components/SecondaryMenu/components/Horizontal/Horizontal.jsx +2 -2
  357. package/core-ui/components/SecondaryMenu/components/Horizontal/components/Item/Item copy.jsx +2 -2
  358. package/core-ui/components/SecondaryMenu/components/Horizontal/components/Item/Item.jsx +2 -2
  359. package/core-ui/components/SecondaryMenu/components/Vertical/Vertical.jsx +2 -2
  360. package/core-ui/components/SecondaryMenu/components/Vertical/components/Item/Item.jsx +2 -2
  361. package/core-ui/components/SentimentScale/SentimentScale.jsx +22 -7
  362. package/core-ui/components/SentimentScale/components/SentimentIcon/SentimentIcon.jsx +5 -4
  363. package/core-ui/components/SkeletonContent/SkeletonContent.jsx +7 -6
  364. package/core-ui/components/SkeletonContent/components/Avatar/Avatar.jsx +3 -4
  365. package/core-ui/components/SkeletonContent/components/AvatarMenuItem/AvatarMenuItem.jsx +3 -4
  366. package/core-ui/components/SkeletonContent/components/Box/Box.jsx +3 -4
  367. package/core-ui/components/SkeletonContent/components/DrawerWithForm/DrawerWithForm.jsx +3 -4
  368. package/core-ui/components/SkeletonContent/components/DrawerWithHeader/DrawerWithHeader.jsx +3 -4
  369. package/core-ui/components/SkeletonContent/components/ListItem/ListItem.jsx +3 -4
  370. package/core-ui/components/SkeletonContent/components/PageHeader/PageHeader.jsx +3 -4
  371. package/core-ui/components/SkeletonContent/components/SecondaryMenu/SecondaryMenu.jsx +3 -4
  372. package/core-ui/components/SkeletonContent/components/Text/Text.jsx +3 -4
  373. package/core-ui/components/StatCard/StatCard.jsx +323 -0
  374. package/core-ui/components/StatRow/StatRow.jsx +2 -2
  375. package/core-ui/components/StatusMessage/StatusMessage.jsx +2 -2
  376. package/core-ui/components/StatusMessage/components/AvatarHeader/AvatarHeader.jsx +5 -5
  377. package/core-ui/components/StatusMessage/components/ImageHeader/ImageHeader.jsx +2 -2
  378. package/core-ui/components/SurveyComments/SurveyComments.jsx +19 -5
  379. package/core-ui/components/SurveyComments/components/AI/AI.jsx +3 -3
  380. package/core-ui/components/SurveyComments/components/AI/components/Conversation/Conversation.jsx +5 -3
  381. package/core-ui/components/SurveyComments/components/AI/components/Conversation/components/SurveyThemes/SurveyThemes.jsx +4 -4
  382. package/core-ui/components/SurveyComments/components/AI/components/Conversation/components/ThinkingAnimation/ThinkingAnimation.jsx +3 -3
  383. package/core-ui/components/SurveyComments/components/Comments/Comments.jsx +7 -5
  384. package/core-ui/components/SwipeableTabPanel/SwipeableTabPanel.jsx +7 -3
  385. package/core-ui/components/SwipeableTabPanel/components/TabPanel/TabPanel.jsx +3 -2
  386. package/core-ui/components/SwipeableViews/SwipeableViews.jsx +2 -2
  387. package/core-ui/components/SwipeableViews/components/SwipeableComponent.jsx +2 -2
  388. package/core-ui/components/SwipeableViews/components/SwipeableContainer.jsx +2 -2
  389. package/core-ui/components/TabPanels/TabPanels.jsx +88 -12
  390. package/core-ui/components/TextBuilder/TextBuilder.jsx +2 -2
  391. package/core-ui/components/TextBuilder/components/BuilderFooter/BuilderFooter.jsx +2 -2
  392. package/core-ui/components/TextBuilder/components/RootField/RootField.jsx +2 -2
  393. package/core-ui/components/TextBuilder/components/RowActionsWrapper/RowActionsWrapper.jsx +2 -2
  394. package/core-ui/components/TextBuilder/components/RuleGroup/RuleGroup.jsx +2 -2
  395. package/core-ui/components/TextBuilder/components/RuleGroupFooter/RuleGroupFooter.jsx +2 -2
  396. package/core-ui/components/TextBuilder/components/RuleGroupIndex/RuleGroupIndex.jsx +2 -2
  397. package/core-ui/components/TextBuilder/components/TopGroupItemWrapper/TopGroupItemWrapper.jsx +2 -2
  398. package/core-ui/components/TextBuilder/store/store.jsx +2 -2
  399. package/core-ui/components/TextBuilder/utils/mutateFunctions.js +2 -2
  400. package/core-ui/components/TextSearch/TextSearch.jsx +16 -10
  401. package/core-ui/components/TextTransition/TextTransition.jsx +2 -2
  402. package/core-ui/components/Timeline/Timeline.jsx +30 -20
  403. package/core-ui/components/Timeline/components/Skeleton/Skeleton.jsx +3 -3
  404. package/core-ui/components/TitleAndActionHeader/TitleAndActionHeader.jsx +4 -4
  405. package/core-ui/components/TitleAndActionHeader/components/ActionButton/ActionButton.jsx +12 -4
  406. package/core-ui/components/TitleAndActionHeader/components/AsyncExportModal/AsyncExportModal.jsx +4 -4
  407. package/core-ui/components/TitleAndActionHeader/components/Breadcrumbs/Breadcrumbs.jsx +2 -2
  408. package/core-ui/components/TitleAndActionHeader/components/ButtonFollowedTextfield.jsx +2 -2
  409. package/core-ui/components/TitleAndActionHeader/components/DefaultFilter/DefaultFilter.jsx +2 -2
  410. package/core-ui/components/TitleAndActionHeader/components/DefaultIconButton/DefaultIconButton.jsx +2 -2
  411. package/core-ui/components/TitleAndActionHeader/components/FilterButton/FilterButton.jsx +2 -2
  412. package/core-ui/components/TitleAndActionHeader/components/FilterPanelWrapper/FilterPanelWrapper.jsx +2 -2
  413. package/core-ui/components/TitleAndActionHeader/components/FilterSetMenuItem/FilterSetMenuItem.jsx +2 -2
  414. package/core-ui/components/TitleAndActionHeader/components/PreDefinedFilters/PreDefinedFilters.jsx +2 -2
  415. package/core-ui/components/TitleAndActionHeader/components/UserDefinedFilters/UserDefinedFilters.jsx +2 -2
  416. package/core-ui/components/TitleAndActionHeader/utils.js +2 -2
  417. package/core-ui/components/TitleAndDescription/TitleAndDescription.jsx +6 -6
  418. package/core-ui/components/UnstableDataTable/DataTable.jsx +191 -90
  419. package/core-ui/components/UnstableDataTable/components/CustomColumnMenu/CustomColumnMenu.jsx +3 -2
  420. package/core-ui/components/UnstableDataTable/components/CustomFooter/CustomFooter.jsx +5 -4
  421. package/core-ui/components/UnstableDataTable/components/LoadingScreenWithTextTransition/LoadingScreenWithTextTransition.jsx +3 -3
  422. package/core-ui/components/UnstableDataTable/theme.js +2 -2
  423. package/core-ui/components/UnstableDataTable/utils/datagridColumnMap.js +2 -2
  424. package/core-ui/components/UnstableEditableTable/EditableDataTable.jsx +2 -2
  425. package/core-ui/components/UnstableRichDataTable/RichDataTable.jsx +86 -24
  426. package/core-ui/components/UnstableRichDataTable/functions.jsx +2 -2
  427. package/core-ui/components/UnstableScrollingContainer/ScrollingContainer.jsx +16 -6
  428. package/core-ui/components/UnstableScrollingContainer/components/ScrollBarContainer.jsx +4 -3
  429. package/core-ui/components/UnstableScrollingContainer/components/ScrollBarContent.jsx +3 -2
  430. package/core-ui/components/UnstableScrollingContainer/components/ScrollBarThumb.jsx +3 -2
  431. package/core-ui/components/UnstableScrollingContainer/components/ScrollBarTrack.jsx +3 -2
  432. package/core-ui/components/UserAvatar/UserAvatar.jsx +17 -4
  433. package/core-ui/components/Widget/Widget.jsx +6 -2
  434. package/core-ui/components/WizardPanel/WizardPanel.jsx +182 -29
  435. package/core-ui/components/WizardPanel/components/CompletedItemList/CompletedItemList.jsx +20 -6
  436. package/core-ui/components/WizardPanel/components/Header/Header.jsx +92 -24
  437. package/core-ui/components/index.js +2 -2
  438. package/core-ui/hooks/useAction/useAction.jsx +2 -2
  439. package/core-ui/hooks/useApiRequest/actionCreators.js +2 -2
  440. package/core-ui/hooks/useApiRequest/actionTypes.js +2 -2
  441. package/core-ui/hooks/useApiRequest/index.js +2 -2
  442. package/core-ui/hooks/useApiRequest/reducer.js +2 -2
  443. package/core-ui/hooks/useColumn/useColumn.jsx +2 -2
  444. package/core-ui/hooks/useComponentWillMount/useComponentWillMount.js +2 -2
  445. package/core-ui/hooks/useConfiguration/useConfiguration.js +2 -2
  446. package/core-ui/hooks/useDataSourceUrl/useDataSourceUrl.js +2 -2
  447. package/core-ui/hooks/useDebounce/useDebounce.js +2 -2
  448. package/core-ui/hooks/useDebounceCallback/useDebounceCallback.js +2 -2
  449. package/core-ui/hooks/useDependecyChange/useDependecyChange.js +2 -2
  450. package/core-ui/hooks/useDispatchAction/useDispatchAction.js +2 -2
  451. package/core-ui/hooks/useFilter/useFilter.js +2 -2
  452. package/core-ui/hooks/useLoadingDebounce/useLoadingDebounce.jsx +2 -2
  453. package/core-ui/hooks/useLocalStorage/useLocalStorage.js +2 -2
  454. package/core-ui/hooks/useMutateState/useMutateState.js +2 -2
  455. package/core-ui/hooks/useNotify/useNotify.js +2 -2
  456. package/core-ui/hooks/useOnPropChange/useOnPropChange.jsx +2 -2
  457. package/core-ui/hooks/usePrevState/usePrevState.js +2 -2
  458. package/core-ui/hooks/useRefDimensions/useRefDimensions.js +2 -2
  459. package/core-ui/hooks/useScopedEval/useScopedEval.js +2 -2
  460. package/core-ui/hooks/useScroller/defaults.js +2 -2
  461. package/core-ui/hooks/useScroller/useScroller.js +2 -2
  462. package/core-ui/hooks/useScroller/utils.js +2 -2
  463. package/core-ui/hooks/useSkipOnMount/useSkipOnMount.js +2 -2
  464. package/core-ui/hooks/useStatusOptions/useStatusOptions.js +2 -2
  465. package/core-ui/hooks/useTimeout/useTimeout.js +2 -2
  466. package/core-ui/hooks/useValueChange/useValueChange.js +2 -2
  467. package/core-ui/hooks/useWindowState/queryString.js +2 -2
  468. package/core-ui/hooks/useWindowState/useWindowState.js +2 -2
  469. package/core-ui/hooks/useZoomLevel/useZoomLevel.jsx +2 -2
  470. package/core-ui/index.js +24 -12
  471. package/core-ui/services/createAction.jsx +8 -5
  472. package/core-ui/services/createEvent.jsx +16 -12
  473. package/core-ui/services/createStore.jsx +2 -2
  474. package/core-ui/services/dataSourceManager.js +2 -2
  475. package/core-ui/services/http.js +2 -2
  476. package/core-ui/theme/colors/framework/index.js +6 -26
  477. package/core-ui/theme/colors/framework/primary.js +2 -2
  478. package/core-ui/theme/colors/framework/secondary.js +3 -3
  479. package/core-ui/{components/BusinessObjectHeader/components/ArtifactDrawer/components/Notes/Notes.jsx → theme/colors/state/ai.js} +10 -37
  480. package/core-ui/theme/colors/state/common.js +4 -4
  481. package/core-ui/theme/colors/state/danger.js +3 -4
  482. package/core-ui/theme/colors/state/dynamicSuccess.js +3 -3
  483. package/core-ui/{hooks/useTag/useTag.js → theme/colors/state/error.js} +9 -13
  484. package/core-ui/theme/colors/state/goalMet.js +6 -7
  485. package/core-ui/theme/colors/state/goalNotMet.js +6 -7
  486. package/core-ui/theme/colors/state/inProgress.js +3 -3
  487. package/core-ui/theme/colors/state/index.js +16 -19
  488. package/core-ui/theme/colors/state/info.js +6 -7
  489. package/core-ui/theme/colors/state/noData.js +3 -3
  490. package/core-ui/theme/colors/state/success.js +5 -3
  491. package/core-ui/theme/colors/state/warning.js +6 -7
  492. package/core-ui/theme/theme.js +2 -2
  493. package/core-ui/utils/PrivateRoute.jsx +2 -2
  494. package/core-ui/utils/array.js +2 -2
  495. package/core-ui/utils/color.js +2 -2
  496. package/core-ui/utils/date.js +2 -2
  497. package/core-ui/utils/formatting.js +2 -2
  498. package/core-ui/utils/humanReadableList.js +2 -2
  499. package/core-ui/utils/math.js +2 -2
  500. package/core-ui/utils/memoize.js +2 -2
  501. package/core-ui/utils/number.js +2 -2
  502. package/core-ui/utils/object.js +2 -2
  503. package/core-ui/utils/queryString.js +2 -2
  504. package/core-ui/utils/sanitizedEval.js +2 -2
  505. package/core-ui/utils/string.js +2 -2
  506. package/core-ui/utils/template.js +2 -2
  507. package/core-ui/utils/url.js +2 -2
  508. package/core-ui/with/withTheme/withTheme.jsx +2 -2
  509. package/package.json +2 -3
  510. package/core-ui/components/Breadcrumbs/Breadcrumbs.jsx +0 -102
  511. package/core-ui/components/BusinessObjectHeader/BusinessObjectHeader.jsx +0 -218
  512. package/core-ui/components/BusinessObjectHeader/components/ActionButton/ActionButton.jsx +0 -143
  513. package/core-ui/components/BusinessObjectHeader/components/ArtifactDrawer/ArtifactDrawer.jsx +0 -201
  514. package/core-ui/components/BusinessObjectHeader/components/ArtifactDrawer/components/Tasks/Tasks.jsx +0 -151
  515. package/core-ui/components/BusinessObjectHeader/components/BusinessObjectHeaderActionMenu/BusinessObjectHeaderActionMenu.jsx +0 -136
  516. package/core-ui/components/BusinessObjectHeader/components/BusinessObjectHeaderActionMenu/utils.js +0 -112
  517. package/core-ui/components/RubricDistributionChart/RubricDistributionChart.jsx +0 -269
  518. package/core-ui/components/RubricDistributionChart/components/Legend/Legend.jsx +0 -187
  519. package/core-ui/components/StatBoxes/StatBoxes.jsx +0 -198
@@ -10,14 +10,14 @@
10
10
  * ║ updating the npm package. 📦 ║
11
11
  * ║ ║
12
12
  * ║ Package: aefis-core-ui ║
13
- * ║ Version: 7.0.0-rc.9
13
+ * ║ Version: 7.0.0-rc.90
14
14
  * ║ ║
15
15
  * ╠════════════════════════════════════════════════════════════════════╣
16
16
  * ║ ⚠️ ANY CHANGES HERE WILL BE AUTOMATICALLY OVERWRITTEN ⚠️ ║
17
17
  * ╚════════════════════════════════════════════════════════════════════╝
18
18
  *
19
19
  * @package aefis-core-ui
20
- * @version 7.0.0-rc.9
20
+ * @version 7.0.0-rc.90
21
21
  * @generated automatically
22
22
  * @warning do not modify
23
23
  */
@@ -10,14 +10,14 @@
10
10
  * ║ updating the npm package. 📦 ║
11
11
  * ║ ║
12
12
  * ║ Package: aefis-core-ui ║
13
- * ║ Version: 7.0.0-rc.9
13
+ * ║ Version: 7.0.0-rc.90
14
14
  * ║ ║
15
15
  * ╠════════════════════════════════════════════════════════════════════╣
16
16
  * ║ ⚠️ ANY CHANGES HERE WILL BE AUTOMATICALLY OVERWRITTEN ⚠️ ║
17
17
  * ╚════════════════════════════════════════════════════════════════════╝
18
18
  *
19
19
  * @package aefis-core-ui
20
- * @version 7.0.0-rc.9
20
+ * @version 7.0.0-rc.90
21
21
  * @generated automatically
22
22
  * @warning do not modify
23
23
  */
@@ -65,6 +65,7 @@ import {
65
65
  Autorenew as _Autorenew,
66
66
  Balance as _Balance,
67
67
  BarChartOutlined as _BarChartOutlined,
68
+ AutoStoriesOutlined as _AutoStoriesOutlined,
68
69
  Book as _Book,
69
70
  BookOutlined as _BookOutlined,
70
71
  Bookmark as _Bookmark,
@@ -172,6 +173,10 @@ import {
172
173
  EqualizerOutlined as _EqualizerOutlined,
173
174
  Face as _Face,
174
175
  FaceOutlined as _FaceOutlined,
176
+ Favorite as _Favorite,
177
+ FavoriteBorder as _FavoriteBorder,
178
+ FavoriteOutlined as _FavoriteOutlined,
179
+ FavoriteBorderOutlined as _FavoriteBorderOutlined,
175
180
  FileDownload as _FileDownload,
176
181
  FileDownloadOutlined as _FileDownloadOutlined,
177
182
  FilterList as _FilterList,
@@ -316,6 +321,7 @@ import {
316
321
  StopOutlined as _StopOutlined,
317
322
  Timeline as _Timeline,
318
323
  TimelineOutlined as _TimelineOutlined,
324
+ ManageSearch as _ManageSearch,
319
325
  Search as _Search,
320
326
  SearchOutlined as _SearchOutlined,
321
327
  SentimentVeryDissatisfied as _SentimentVeryDissatisfied,
@@ -438,6 +444,7 @@ export const icons = {
438
444
  Autorenew: <_Autorenew />,
439
445
  Balance: <_Balance />,
440
446
  BarChartOutlined: <_BarChartOutlined />,
447
+ AutoStoriesOutlined: <_AutoStoriesOutlined />,
441
448
  Book: <_Book />,
442
449
  BookOutlined: <_BookOutlined />,
443
450
  Bookmark: <_Bookmark />,
@@ -549,6 +556,10 @@ export const icons = {
549
556
  EqualizerOutlined: <_EqualizerOutlined />,
550
557
  Face: <_Face />,
551
558
  FaceOutlined: <_FaceOutlined />,
559
+ Favorite: <_Favorite />,
560
+ FavoriteBorder: <_FavoriteBorder />,
561
+ FavoriteBorderOutlined: <_FavoriteBorderOutlined />,
562
+ FavoriteOutlined: <_FavoriteOutlined />,
552
563
  FileDownload: <_FileDownload />,
553
564
  FileDownloadOutlined: <_FileDownloadOutlined />,
554
565
  FilterList: <_FilterList />,
@@ -688,6 +699,7 @@ export const icons = {
688
699
  SchoolTwoTone: <_SchoolTwoTone />,
689
700
  Science: <_Science />,
690
701
  ScienceOutlined: <_ScienceOutlined />,
702
+ ManageSearch: <_ManageSearch />,
691
703
  Search: <_Search />,
692
704
  SearchOutlined: <_SearchOutlined />,
693
705
  Send: <_Send />,
@@ -934,6 +946,10 @@ export const BarChartOutlined = (props) => {
934
946
  return <_BarChartOutlined {...props} />;
935
947
  };
936
948
 
949
+ export const AutoStoriesOutlined = (props) => {
950
+ return <_AutoStoriesOutlined {...props} />;
951
+ };
952
+
937
953
  export const Book = (props) => {
938
954
  return <_Book {...props} />;
939
955
  };
@@ -1374,6 +1390,22 @@ export const FaceOutlined = (props) => {
1374
1390
  return <_FaceOutlined {...props} />;
1375
1391
  };
1376
1392
 
1393
+ export const Favorite = (props) => {
1394
+ return <_Favorite {...props} />;
1395
+ };
1396
+
1397
+ export const FavoriteBorder = (props) => {
1398
+ return <_FavoriteBorder {...props} />;
1399
+ };
1400
+
1401
+ export const FavoriteBorderOutlined = (props) => {
1402
+ return <_FavoriteBorderOutlined {...props} />;
1403
+ };
1404
+
1405
+ export const FavoriteOutlined = (props) => {
1406
+ return <_FavoriteOutlined {...props} />;
1407
+ };
1408
+
1377
1409
  export const FileDownload = (props) => {
1378
1410
  return <_FileDownload {...props} />;
1379
1411
  };
@@ -1926,6 +1958,10 @@ export const ScienceOutlined = (props) => {
1926
1958
  return <_ScienceOutlined {...props} />;
1927
1959
  };
1928
1960
 
1961
+ export const ManageSearch = (props) => {
1962
+ return <_ManageSearch {...props} />;
1963
+ };
1964
+
1929
1965
  export const Search = (props) => {
1930
1966
  return <_Search {...props} />;
1931
1967
  };
@@ -10,19 +10,19 @@
10
10
  * ║ updating the npm package. 📦 ║
11
11
  * ║ ║
12
12
  * ║ Package: aefis-core-ui ║
13
- * ║ Version: 7.0.0-rc.9
13
+ * ║ Version: 7.0.0-rc.90
14
14
  * ║ ║
15
15
  * ╠════════════════════════════════════════════════════════════════════╣
16
16
  * ║ ⚠️ ANY CHANGES HERE WILL BE AUTOMATICALLY OVERWRITTEN ⚠️ ║
17
17
  * ╚════════════════════════════════════════════════════════════════════╝
18
18
  *
19
19
  * @package aefis-core-ui
20
- * @version 7.0.0-rc.9
20
+ * @version 7.0.0-rc.90
21
21
  * @generated automatically
22
22
  * @warning do not modify
23
23
  */
24
24
 
25
- // Copyright (c) 2023 HelioCampus Inc, all rights reserved.
25
+ // Copyright (c) 2026 HelioCampus Inc, all rights reserved.
26
26
  // http://www.heliocampus.com/
27
27
 
28
28
  import Button from "../Button/Button";
@@ -50,12 +50,27 @@ const booleanOrFunction = (field, data) =>
50
50
  (typeof field === "boolean" && field);
51
51
 
52
52
  const renderIcon = (Icon) => {
53
- return <Icon />;
53
+ return <Icon aria-hidden="true" />;
54
+ };
55
+
56
+ /** Derive the CSS transform-origin for the open animation from the Popper placement,
57
+ * so the menu appears to grow out of the edge it is anchored to. */
58
+ const transformOriginForPlacement = (placement) => {
59
+ const vertical = placement.startsWith("top") ? "bottom" : "top";
60
+ const horizontal = placement.endsWith("end") ? "right" : "left";
61
+ return `${horizontal} ${vertical}`;
54
62
  };
55
63
 
56
64
  /** Menu button with actions menu */
57
65
 
58
- const ActionMenuButton = ({ actions, data, disabled = false, disableElevation = true, sx }) => {
66
+ const ActionMenuButton = ({
67
+ actions,
68
+ data,
69
+ disabled = false,
70
+ disableElevation = true,
71
+ placement = "bottom-start",
72
+ sx
73
+ }) => {
59
74
  const [open, setOpen] = useState(false);
60
75
  const [selectedIndex, setSelectedIndex] = useState(0);
61
76
  const anchorRef = useRef(null);
@@ -72,6 +87,13 @@ const ActionMenuButton = ({ actions, data, disabled = false, disableElevation =
72
87
  setOpen((prevOpen) => !prevOpen);
73
88
  };
74
89
 
90
+ const handleKeyDown = (event) => {
91
+ if (event.key === "Escape") {
92
+ setOpen(false);
93
+ anchorRef.current?.querySelector("button:last-child")?.focus();
94
+ }
95
+ };
96
+
75
97
  const handleActionClick = (e, action, index) => {
76
98
  setSelectedIndex(index || null);
77
99
  setOpen(false);
@@ -88,9 +110,10 @@ const ActionMenuButton = ({ actions, data, disabled = false, disableElevation =
88
110
  (actions?.length === 1 && (
89
111
  <>
90
112
  {isMobile ? (
91
- <Tooltip title={actions[0].name}>
113
+ <Tooltip title={actions[0].name || "action"}>
92
114
  <IconButton
93
- aria-label={actions[0].name}
115
+ data-testid="hc-action-menu-button-single"
116
+ aria-label={actions[0].name || "action"}
94
117
  disabled={disabled}
95
118
  onClick={(e) => handleActionClick(e, actions[0])}
96
119
  >
@@ -99,6 +122,7 @@ const ActionMenuButton = ({ actions, data, disabled = false, disableElevation =
99
122
  </Tooltip>
100
123
  ) : (
101
124
  <Button
125
+ data-testid="hc-action-menu-button-single"
102
126
  sx={sx}
103
127
  variant="contained"
104
128
  color={actions[0].primary ? "primary" : "secondary"}
@@ -118,6 +142,7 @@ const ActionMenuButton = ({ actions, data, disabled = false, disableElevation =
118
142
  (actions?.length > 1 && (
119
143
  <>
120
144
  <ButtonGroup
145
+ data-testid="hc-action-menu-button-group"
121
146
  disableElevation={disableElevation}
122
147
  sx={sx}
123
148
  variant="contained"
@@ -134,8 +159,9 @@ const ActionMenuButton = ({ actions, data, disabled = false, disableElevation =
134
159
  {actions[0].name}
135
160
  </Button>
136
161
  <Button
162
+ data-testid="hc-action-menu-button-toggle"
137
163
  aria-controls={open ? "split-button-menu" : undefined}
138
- aria-expanded={open ? "true" : undefined}
164
+ aria-expanded={open}
139
165
  variant="contained"
140
166
  aria-label="view more actions"
141
167
  aria-haspopup="menu"
@@ -154,25 +180,27 @@ const ActionMenuButton = ({ actions, data, disabled = false, disableElevation =
154
180
  }}
155
181
  open={open}
156
182
  anchorEl={anchorRef.current}
183
+ placement={placement}
157
184
  role={undefined}
158
185
  transition
159
186
  disablePortal
160
187
  >
161
- {({ TransitionProps, placement }) => (
188
+ {({ TransitionProps, placement: actualPlacement }) => (
162
189
  <Grow
163
190
  {...TransitionProps}
164
191
  style={{
165
192
  transformOrigin:
166
- placement === "bottom" ? "left top" : "left bottom"
193
+ transformOriginForPlacement(actualPlacement)
167
194
  }}
168
195
  >
169
196
  <Paper elevation={3}>
170
197
  <ClickAwayListener onClickAway={handleClose}>
171
- <MenuList id="split-button-menu" autoFocusItem>
198
+ <MenuList data-testid="hc-action-menu-button-menu" id="split-button-menu" autoFocusItem onKeyDown={handleKeyDown}>
172
199
  {actions?.map(
173
200
  (action, index) =>
174
201
  isHidden(action, data) === false && (
175
202
  <MenuItem
203
+ data-testid={`hc-action-menu-button-item-${action.id}`}
176
204
  key={`actionMenuItem-${action.id}`}
177
205
  selected={index === selectedIndex}
178
206
  disabled={booleanOrFunction(
@@ -234,6 +262,21 @@ ActionMenuButton.propTypes = {
234
262
  disabled: PropTypes.bool,
235
263
  /** Disable the elevation? */
236
264
  disableElevation: PropTypes.bool,
265
+ /** Where the actions menu opens relative to the button. Mirrors MUI Popper placement. Defaults to "bottom-start". */
266
+ placement: PropTypes.oneOf([
267
+ "top-start",
268
+ "top",
269
+ "top-end",
270
+ "bottom-start",
271
+ "bottom",
272
+ "bottom-end",
273
+ "left-start",
274
+ "left",
275
+ "left-end",
276
+ "right-start",
277
+ "right",
278
+ "right-end"
279
+ ]),
237
280
  /** Additional styles to pass to the button. */
238
281
  sx: PropTypes.any
239
282
  };
@@ -10,19 +10,19 @@
10
10
  * ║ updating the npm package. 📦 ║
11
11
  * ║ ║
12
12
  * ║ Package: aefis-core-ui ║
13
- * ║ Version: 7.0.0-rc.9
13
+ * ║ Version: 7.0.0-rc.90
14
14
  * ║ ║
15
15
  * ╠════════════════════════════════════════════════════════════════════╣
16
16
  * ║ ⚠️ ANY CHANGES HERE WILL BE AUTOMATICALLY OVERWRITTEN ⚠️ ║
17
17
  * ╚════════════════════════════════════════════════════════════════════╝
18
18
  *
19
19
  * @package aefis-core-ui
20
- * @version 7.0.0-rc.9
20
+ * @version 7.0.0-rc.90
21
21
  * @generated automatically
22
22
  * @warning do not modify
23
23
  */
24
24
 
25
- // Copyright (c) 2023 HelioCampus Inc., all rights reserved.
25
+ // Copyright (c) 2026 HelioCampus Inc., all rights reserved.
26
26
  // http://www.heliocampus.com/
27
27
 
28
28
  import PropTypes from "prop-types";
@@ -41,6 +41,7 @@ const Actions = ({ data, configuration }) => {
41
41
 
42
42
  return configuration?.map((item, index) => (
43
43
  <Box
44
+ data-testid={`hc-action-${index}`}
44
45
  key={`actionMenuItem-${seededKeyValue(index)}`}
45
46
  style={{ marginLeft: "8px", ...getStyle(item) }}
46
47
  >
@@ -10,19 +10,19 @@
10
10
  * ║ updating the npm package. 📦 ║
11
11
  * ║ ║
12
12
  * ║ Package: aefis-core-ui ║
13
- * ║ Version: 7.0.0-rc.9
13
+ * ║ Version: 7.0.0-rc.90
14
14
  * ║ ║
15
15
  * ╠════════════════════════════════════════════════════════════════════╣
16
16
  * ║ ⚠️ ANY CHANGES HERE WILL BE AUTOMATICALLY OVERWRITTEN ⚠️ ║
17
17
  * ╚════════════════════════════════════════════════════════════════════╝
18
18
  *
19
19
  * @package aefis-core-ui
20
- * @version 7.0.0-rc.9
20
+ * @version 7.0.0-rc.90
21
21
  * @generated automatically
22
22
  * @warning do not modify
23
23
  */
24
24
 
25
- // Copyright (c) 2023 HelioCampus Inc., all rights reserved.
25
+ // Copyright (c) 2026 HelioCampus Inc., all rights reserved.
26
26
  // http://www.heliocampus.com/
27
27
 
28
28
  import PropTypes from "prop-types";
@@ -10,19 +10,19 @@
10
10
  * ║ updating the npm package. 📦 ║
11
11
  * ║ ║
12
12
  * ║ Package: aefis-core-ui ║
13
- * ║ Version: 7.0.0-rc.9
13
+ * ║ Version: 7.0.0-rc.90
14
14
  * ║ ║
15
15
  * ╠════════════════════════════════════════════════════════════════════╣
16
16
  * ║ ⚠️ ANY CHANGES HERE WILL BE AUTOMATICALLY OVERWRITTEN ⚠️ ║
17
17
  * ╚════════════════════════════════════════════════════════════════════╝
18
18
  *
19
19
  * @package aefis-core-ui
20
- * @version 7.0.0-rc.9
20
+ * @version 7.0.0-rc.90
21
21
  * @generated automatically
22
22
  * @warning do not modify
23
23
  */
24
24
 
25
- // Copyright (c) 2022 HelioCampus Inc., all rights reserved.
25
+ // Copyright (c) 2026 HelioCampus Inc., all rights reserved.
26
26
  // http://www.heliocampus.com/
27
27
 
28
28
  import { ListItemIcon, Menu, MenuItem, Typography } from "@mui/material";
@@ -81,6 +81,8 @@ const ActionMenu = ({
81
81
  data
82
82
  }) => {
83
83
 
84
+ const hasVisibleItems = configuration?.some((item) => !isHidden(item, data));
85
+
84
86
  const [anchorEl, setAnchorEl] = useState(null);
85
87
  const open = Boolean(anchorEl);
86
88
 
@@ -99,46 +101,34 @@ const ActionMenu = ({
99
101
  const id = useUID();
100
102
  const seededKeyValue = useUIDSeed();
101
103
 
102
- return hidden ? (
104
+ return hidden || !hasVisibleItems ? (
103
105
  (<Root></Root>)
104
106
  ) : (
105
- <>
106
- {disabled ? (
107
- <IconButton
108
- name={name || `more options`}
109
- aria-controls={id}
110
- aria-haspopup="true"
111
- showTooltip={false}
112
- aria-expanded={open}
113
- onClick={handleClick}
114
- size="small"
115
- disabled={true}
116
- >
117
- {Icon ? (
118
- <Icon />
119
- ) : (
107
+ <Root>
108
+ <IconButton
109
+ data-testid="hc-action-menu-trigger"
110
+ name={name || `more options`}
111
+ showTooltip={!disabled}
112
+ size="small"
113
+ disabled={disabled}
114
+ onClick={handleClick}
115
+ {...(!disabled && {
116
+ "aria-controls": id,
117
+ "aria-haspopup": "true",
118
+ "aria-expanded": open
119
+ })}
120
+ >
121
+ {disabled ? (
122
+ Icon ? <Icon /> : (
120
123
  <MoreVertIcon
121
124
  className={clsx(classes.expand, {
122
125
  [classes.expandOpen]: open
123
126
  })}
124
127
  />
125
- )}
126
- </IconButton>
127
- ) : (
128
- <IconButton
129
- name={name || `more options`}
130
- showTooltip={true}
131
- size="small"
132
- aria-controls={id}
133
- aria-haspopup="true"
134
- aria-expanded={open}
135
- onClick={handleClick}
136
- disabled={disabled}
137
- >
128
+ )
129
+ ) : (
138
130
  <Badge badgeContent={badge}>
139
- {Icon ? (
140
- <Icon />
141
- ) : (
131
+ {Icon ? <Icon /> : (
142
132
  <MoreVertIcon
143
133
  className={clsx(classes.expand, {
144
134
  [classes.expandOpen]: open
@@ -146,10 +136,11 @@ const ActionMenu = ({
146
136
  />
147
137
  )}
148
138
  </Badge>
149
- </IconButton>
150
- )}
139
+ )}
140
+ </IconButton>
151
141
 
152
142
  <Menu
143
+ data-testid="hc-action-menu"
153
144
  id={id}
154
145
  anchorEl={anchorEl}
155
146
  keepMounted
@@ -168,6 +159,7 @@ const ActionMenu = ({
168
159
  (item, index) =>
169
160
  !isHidden(item, data) && (
170
161
  <MenuItem
162
+ data-testid={`hc-action-menu-item-${index}`}
171
163
  key={seededKeyValue(index)}
172
164
  onClick={() => handleMenuClick(item.action)}
173
165
  disabled={isDisabled(item, data) || false}
@@ -188,13 +180,13 @@ const ActionMenu = ({
188
180
  }
189
181
  }
190
182
  >
191
- {item.icon && <ListItemIcon>{item.icon}</ListItemIcon>}
183
+ {item.icon && <ListItemIcon aria-hidden="true">{item.icon}</ListItemIcon>}
192
184
  <Typography variant="inherit">{item.name}</Typography>
193
185
  </MenuItem>
194
186
  )
195
187
  )}
196
188
  </Menu>
197
- </>
189
+ </Root>
198
190
  );
199
191
  };
200
192
 
@@ -10,19 +10,19 @@
10
10
  * ║ updating the npm package. 📦 ║
11
11
  * ║ ║
12
12
  * ║ Package: aefis-core-ui ║
13
- * ║ Version: 7.0.0-rc.9
13
+ * ║ Version: 7.0.0-rc.90
14
14
  * ║ ║
15
15
  * ╠════════════════════════════════════════════════════════════════════╣
16
16
  * ║ ⚠️ ANY CHANGES HERE WILL BE AUTOMATICALLY OVERWRITTEN ⚠️ ║
17
17
  * ╚════════════════════════════════════════════════════════════════════╝
18
18
  *
19
19
  * @package aefis-core-ui
20
- * @version 7.0.0-rc.9
20
+ * @version 7.0.0-rc.90
21
21
  * @generated automatically
22
22
  * @warning do not modify
23
23
  */
24
24
 
25
- // Copyright (c) 2023 HelioCampus Inc., all rights reserved.
25
+ // Copyright (c) 2026 HelioCampus Inc., all rights reserved.
26
26
  // http://www.heliocampus.com/
27
27
 
28
28
  import { Badge as MuiBadge } from "@mui/material";
@@ -10,19 +10,19 @@
10
10
  * ║ updating the npm package. 📦 ║
11
11
  * ║ ║
12
12
  * ║ Package: aefis-core-ui ║
13
- * ║ Version: 7.0.0-rc.9
13
+ * ║ Version: 7.0.0-rc.90
14
14
  * ║ ║
15
15
  * ╠════════════════════════════════════════════════════════════════════╣
16
16
  * ║ ⚠️ ANY CHANGES HERE WILL BE AUTOMATICALLY OVERWRITTEN ⚠️ ║
17
17
  * ╚════════════════════════════════════════════════════════════════════╝
18
18
  *
19
19
  * @package aefis-core-ui
20
- * @version 7.0.0-rc.9
20
+ * @version 7.0.0-rc.90
21
21
  * @generated automatically
22
22
  * @warning do not modify
23
23
  */
24
24
 
25
- // Copyright (c) 2024 HelioCampus Inc., all rights reserved.
25
+ // Copyright (c) 2026 HelioCampus Inc., all rights reserved.
26
26
  // http://www.heliocampus.com/
27
27
 
28
28
  import PropTypes from "prop-types";
@@ -34,6 +34,7 @@ const RenderIconButton = ({ name, item, data, disabled, badge, buttonStyle }) =>
34
34
  const Icon = item?.icon ?? React.Fragment;
35
35
  return (
36
36
  <IconButton
37
+ data-testid="hc-action-icon-button"
37
38
  name={name || "option"}
38
39
  aria-label={name || "option"}
39
40
  onClick={() => item?.action(data)}
@@ -10,19 +10,19 @@
10
10
  * ║ updating the npm package. 📦 ║
11
11
  * ║ ║
12
12
  * ║ Package: aefis-core-ui ║
13
- * ║ Version: 7.0.0-rc.9
13
+ * ║ Version: 7.0.0-rc.90
14
14
  * ║ ║
15
15
  * ╠════════════════════════════════════════════════════════════════════╣
16
16
  * ║ ⚠️ ANY CHANGES HERE WILL BE AUTOMATICALLY OVERWRITTEN ⚠️ ║
17
17
  * ╚════════════════════════════════════════════════════════════════════╝
18
18
  *
19
19
  * @package aefis-core-ui
20
- * @version 7.0.0-rc.9
20
+ * @version 7.0.0-rc.90
21
21
  * @generated automatically
22
22
  * @warning do not modify
23
23
  */
24
24
 
25
- // Copyright (c) 2023 HelioCampus Inc., all rights reserved.
25
+ // Copyright (c) 2026 HelioCampus Inc., all rights reserved.
26
26
  // http://www.heliocampus.com/
27
27
 
28
28
  import PropTypes from "prop-types";
@@ -35,6 +35,7 @@ const TextButton = ({ name, item, data, disabled = false, badge, buttonStyle })
35
35
  return (
36
36
  <Badge badgeContent={badge}>
37
37
  <Button
38
+ data-testid="hc-action-text-button"
38
39
  name={name || "option"}
39
40
  variant={item?.variant || "contained"}
40
41
  aria-label={name || "option"}