aefis-core-ui 7.0.0-rc.9 → 7.0.0-rc.91
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.
- package/core-ui/HOCs/withThemeProvider.tsx +2 -2
- package/core-ui/Icon/index.jsx +38 -2
- package/core-ui/components/ActionMenuButton/ActionMenuButton.jsx +54 -11
- package/core-ui/components/Actions/Actions.jsx +4 -3
- package/core-ui/components/Actions/components/Action/Action.jsx +3 -3
- package/core-ui/components/Actions/components/Action/components/ActionMenu/ActionMenu.jsx +31 -39
- package/core-ui/components/Actions/components/Action/components/Badge/Badge.jsx +3 -3
- package/core-ui/components/Actions/components/Action/components/Icon/Icon.jsx +4 -3
- package/core-ui/components/Actions/components/Action/components/Text/Text.jsx +4 -3
- package/core-ui/components/Alert/Alert.jsx +97 -13
- package/core-ui/components/Alert/components/ActionButton/ActionButton.jsx +57 -25
- package/core-ui/components/AnimatedExpandMoreIcon/AnimatedExpandMoreIcon.jsx +8 -4
- package/core-ui/components/AppToolbar/AppToolbar.jsx +68 -14
- package/core-ui/components/AppToolbar/components/Action/Action.jsx +14 -9
- package/core-ui/components/AppToolbar/components/UserButton/UserButton.jsx +12 -8
- package/core-ui/components/AutoComplete/AutoCompleteBase.jsx +2 -2
- package/core-ui/components/AutoComplete/AutoCompleteQuery.jsx +2 -2
- package/core-ui/components/AutoCompleteAddable/AutoCompleteAddable.jsx +2 -2
- package/core-ui/components/AutoCompleteAddable/components/AutoCompleteAddableBase.jsx +5 -3
- package/core-ui/components/AvatarBox/AvatarBox.jsx +32 -11
- package/core-ui/components/AvatarTitle/AvatarTitle.jsx +2 -2
- package/core-ui/components/AvatarTitle/UnstableAvatarTitle.jsx +12 -6
- package/core-ui/components/BusinessObject/BusinessObject.jsx +2 -2
- package/core-ui/components/BusinessObject/components/CardDisplay/CardDisplay.jsx +2 -2
- package/core-ui/components/BusinessObject/components/CardDisplay/components/OutcomeSpaceDisplay/OutcomeSpaceDisplay.jsx +2 -2
- package/core-ui/components/BusinessObject/components/ChipDisplay/ChipDisplay.jsx +2 -2
- package/core-ui/components/BusinessObject/components/ListItemDisplay/ListItemDisplay.jsx +2 -2
- package/core-ui/components/BusinessObject/entities/accreditor/accreditor.js +2 -2
- package/core-ui/components/BusinessObject/entities/administrativeDivision/administrativeDivision.js +2 -2
- package/core-ui/components/BusinessObject/entities/administrativeUnit/administrativeUnit.js +2 -2
- package/core-ui/components/BusinessObject/entities/assessment/assessment.js +2 -2
- package/core-ui/components/BusinessObject/entities/assignment/assignment.js +2 -2
- package/core-ui/components/BusinessObject/entities/badge/badge.js +2 -2
- package/core-ui/components/BusinessObject/entities/badge/components/BadgeChip/BadgeChip.jsx +2 -2
- package/core-ui/components/BusinessObject/entities/badge/components/BadgeListItem/BadgeListItem.jsx +2 -2
- package/core-ui/components/BusinessObject/entities/cocurricular/cocurricular.js +2 -2
- package/core-ui/components/BusinessObject/entities/college/college.js +2 -2
- package/core-ui/components/BusinessObject/entities/course/course.js +9 -8
- package/core-ui/components/BusinessObject/entities/courseOutcome/courseOutcome.js +2 -2
- package/core-ui/components/BusinessObject/entities/courseSection/courseSection.js +2 -2
- package/core-ui/components/BusinessObject/entities/department/department.js +2 -2
- package/core-ui/components/BusinessObject/entities/faculty/faculty.js +2 -2
- package/core-ui/components/BusinessObject/entities/institution/institution.js +2 -2
- package/core-ui/components/BusinessObject/entities/keyword/keyword.js +2 -2
- package/core-ui/components/BusinessObject/entities/outcome/outcome.js +2 -2
- package/core-ui/components/BusinessObject/entities/outcomeSpace/outcomeSpace.js +2 -2
- package/core-ui/components/BusinessObject/entities/performanceIndicator/performanceIndicator.js +2 -2
- package/core-ui/components/BusinessObject/entities/program/program.js +2 -2
- package/core-ui/components/BusinessObject/entities/programMap/programMap.js +2 -2
- package/core-ui/components/BusinessObject/entities/term/term.js +2 -2
- package/core-ui/components/BusinessObject/entities/user/user.js +2 -2
- package/core-ui/components/BusinessObjectCard/BusinessObjectCard.jsx +3 -7
- package/core-ui/components/BusinessObjectCard/components/CardSection/CardSection.jsx +2 -2
- package/core-ui/components/BusinessObjectCard/components/CardSectionTitle/CardSectionTitle.jsx +2 -2
- package/core-ui/components/BusinessObjectCard/components/EmptyCardSection/EmptyCardSection.jsx +2 -2
- package/core-ui/components/BusinessObjectCard/components/Skeleton/Skeleton.jsx +2 -2
- package/core-ui/components/BusinessObjectPanel/BusinessObjectPanel.jsx +4 -2
- package/core-ui/components/BusinessObjectPanel/components/Header/Header.jsx +7 -7
- package/core-ui/components/BusinessObjectPanel/components/Section/Section.jsx +3 -3
- package/core-ui/components/BusinessObjectPanel/components/SectionTitle/SectionTitle.jsx +3 -3
- package/core-ui/components/BusinessObjectPicker/BusinessObjectPicker.jsx +241 -52
- package/core-ui/components/BusinessObjectPicker/_ai_docs/2026-06-09-business-object-picker-enhanced-search-a11y-audit.md +55 -0
- package/core-ui/components/BusinessObjectPicker/_ai_docs/2026-06-22-enhanced-search-dialog-usecallback-stability.md +40 -0
- package/core-ui/components/BusinessObjectPicker/components/AddItemFormDialog/AddItemFormDialog.jsx +2 -2
- package/core-ui/components/BusinessObjectPicker/components/DebouncedTextField/DebouncedTextField.jsx +2 -2
- package/core-ui/components/BusinessObjectPicker/components/EnhancedSearchDialog/EnhancedSearchDialog.jsx +55 -12
- package/core-ui/components/BusinessObjectPicker/components/RadioGroup/RadioGroup.jsx +2 -2
- package/core-ui/components/BusinessObjectPicker/hooks/useAutoCompleteValue.js +2 -2
- package/core-ui/components/BusinessObjectPicker/services/withEventManager.js +2 -2
- package/core-ui/components/BusinessObjectPicker/utils/updateSelectedItems.js +2 -2
- package/core-ui/components/BusinessObjectStatus/BusinessObjectStatus.jsx +2 -2
- package/core-ui/components/BusinessObjectStatus/components/ChipDisplay/ChipDisplay.jsx +3 -2
- package/core-ui/components/BusinessObjectStatus/components/ListItemDisplay/ListItemDisplay.jsx +5 -4
- package/core-ui/components/BusinessObjectStatus/config.js +2 -2
- package/core-ui/components/BusinessObjectStatusButton/BusinessObjectStatusButton.jsx +3 -5
- package/core-ui/components/BusinessObjectStatusButton/withStatusButtonDataSource.jsx +2 -2
- package/core-ui/components/BusinessObjectStatusPicker/BusinessObjectStatusPicker.jsx +2 -2
- package/core-ui/components/BusinessObjectTable/BusinessObjectTable.jsx +2 -2
- package/core-ui/components/BusinessObjectTable/FilteredBusinessObjectTable.jsx +2 -2
- package/core-ui/components/Button/Button.jsx +25 -5
- package/core-ui/components/Button/theme.js +2 -2
- package/core-ui/components/Charts/Charts.js +2 -2
- package/core-ui/components/Charts/components/WordCloud/WordCloud.jsx +2 -2
- package/core-ui/components/Chip/Chip.jsx +3 -3
- package/core-ui/components/ChipList/ChipList.jsx +74 -101
- package/core-ui/components/Collapsible/Collapsible.jsx +2 -2
- package/core-ui/components/Collapsible/CollapsibleContent/CollapsibleContent.jsx +13 -5
- package/core-ui/components/Collapsible/CollapsibleContentButton/CollapsibleContentButton.jsx +6 -3
- package/core-ui/components/Collapsible/CollapsibleContentButtonContainer/CollapsibleContentButtonContainer.jsx +2 -2
- package/core-ui/components/Collapsible/CollapsibleContentContainer/CollapsibleContentContainer.jsx +2 -2
- package/core-ui/components/Collapsible/CollapsibleProvider.jsx +2 -2
- package/core-ui/components/ConfirmDialog/ConfirmContext.js +2 -2
- package/core-ui/components/ConfirmDialog/ConfirmDialog.jsx +2 -2
- package/core-ui/components/ConfirmDialog/ConfirmProvider.jsx +2 -2
- package/core-ui/components/ConfirmDialog/index.js +2 -2
- package/core-ui/components/ConfirmDialog/useConfirm.js +2 -2
- package/core-ui/components/ContactForm/ContactForm.jsx +2 -2
- package/core-ui/components/ContactForm/utils/checkFormValues.js +2 -2
- package/core-ui/components/ContactForm/utils/generateMailingTemplate.js +2 -2
- package/core-ui/components/ContentBox/ContentBox.jsx +89 -97
- package/core-ui/components/ContentBox/components/Header/Header.jsx +6 -5
- package/core-ui/components/ContentBox/components/Header/utils/index.js +2 -2
- package/core-ui/components/CoreProvider/CoreProvider.jsx +2 -2
- package/core-ui/components/CoreSnackbarProvider/CoreSnackbarProvider.jsx +2 -2
- package/core-ui/components/CurriculumChart/CurriculumChart.jsx +2 -2
- package/core-ui/components/CurriculumChart/components/CurriculumNode/CurriculumNode.jsx +2 -2
- package/core-ui/components/DataTable/DataTable.jsx +2 -2
- package/core-ui/components/DataTable/components/TableStyles/TableStyles.js +2 -2
- package/core-ui/components/DataTable/components/TooltipCell/TooltipCell.jsx +2 -2
- package/core-ui/components/DatePicker/DatePicker.jsx +2 -2
- package/core-ui/components/DateTitle/DateTitle.jsx +2 -2
- package/core-ui/components/DisplayInFrame/DisplayInFrame.jsx +96 -29
- package/core-ui/components/DocViewer/DocViewer.jsx +32 -8
- package/core-ui/components/DocViewer/PRIZMDOC_VIEWER_CONTROL_API.md +12 -1
- package/core-ui/components/DocViewer/components/PrizmDocViewer/PrizmDocViewer.tsx +256 -63
- package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/ALGORITHM.md +464 -0
- package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/anchorPageCutSearch.ts +279 -0
- package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/buildFallbackSearchPattern.test.ts +118 -0
- package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/buildFallbackSearchPattern.ts +123 -0
- package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/debugLog.ts +49 -0
- package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/getTextOverlap.ts +61 -0
- package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/normalizeSearchText.test.ts +121 -0
- package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/normalizeSearchText.ts +70 -0
- package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/pageCutSearch.ts +407 -0
- package/core-ui/components/DocViewer/components/PrizmDocViewer/highlight/useTextHighlightSearch.ts +398 -0
- package/core-ui/components/DocViewer/components/PrizmDocViewer/prizmdoc.types.ts +4 -2
- package/core-ui/components/Drawer/Drawer.jsx +133 -45
- package/core-ui/components/DynamicContainer/DynamicContainer.jsx +2 -2
- package/core-ui/components/DynamicForm/DynamicForm.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/BadgeKeywordField/AutoCompleteBadgeQuery.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/BadgeKeywordField/BadgeKeyworField.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/BusinessObjectPickerField/BusinessObjectPickerField.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/DateRangeField/DateRangeField.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/DateSelect/DateSelect.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/DateSelect/DateSelectSimple.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/DateSelect/DateTypeUtil.js +2 -2
- package/core-ui/components/DynamicForm/Fields/LinkUserField/LinkUserField.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/LinkUserField/LinkUserWidget.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/SelectField/SelectField.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/SelectField/SelectFieldLoading.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/SelectField/SelectFieldReadOnly.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/StatusField/StatusField.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/StatusField/StatusFieldReadOnly.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/UploadField/ImageUploadReadOnly.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/UploadField/Upload.jsx +2 -2
- package/core-ui/components/DynamicForm/Fields/UploadField/UploadField.js +2 -2
- package/core-ui/components/DynamicForm/HOCs/connect/connect.jsx +2 -2
- package/core-ui/components/DynamicForm/HOCs/globalHOC.js +2 -2
- package/core-ui/components/DynamicForm/HOCs/withEmtyValue/withEmptyValue.jsx +2 -2
- package/core-ui/components/DynamicForm/HOCs/withEvalDisable/withEvalDisable.jsx +2 -2
- package/core-ui/components/DynamicForm/HOCs/withReadOnly/withReadOnly.jsx +2 -2
- package/core-ui/components/DynamicForm/HOCs/withRenderUiSchema/withRenderUiSchema.jsx +2 -2
- package/core-ui/components/DynamicForm/HOCs/withValidate/withValidate.jsx +2 -2
- package/core-ui/components/DynamicForm/Templates/ArrayFieldTemplate.jsx +2 -2
- package/core-ui/components/DynamicForm/Templates/CustomFieldTemplate.jsx +2 -2
- package/core-ui/components/DynamicForm/Templates/ObjectFieldTemplate.jsx +2 -2
- package/core-ui/components/DynamicForm/Widgets/CurrencyWidget/CurrencyWidget.jsx +2 -2
- package/core-ui/components/DynamicForm/Widgets/DateWidget/DateWidget.jsx +2 -2
- package/core-ui/components/DynamicForm/Widgets/PhoneWidget/PhoneWidget.jsx +2 -2
- package/core-ui/components/DynamicForm/Widgets/PhoneWidget/utils.jsx +2 -2
- package/core-ui/components/DynamicForm/Widgets/SelectWidget/SelectWidget.jsx +2 -2
- package/core-ui/components/DynamicForm/Widgets/TextWidget/TextWidget.jsx +2 -2
- package/core-ui/components/DynamicForm/Widgets/TextareaWidget/TextareaWidget.jsx +2 -2
- package/core-ui/components/DynamicForm/Widgets/ValidateWidget/ValidateWidget.jsx +2 -2
- package/core-ui/components/DynamicForm/commonHOCs.js +2 -2
- package/core-ui/components/DynamicForm/components/AutoComplete/AutoCompleteBase.jsx +2 -2
- package/core-ui/components/DynamicForm/components/AutoComplete/AutoCompleteQuery.jsx +2 -2
- package/core-ui/components/DynamicForm/components/AutoComplete/AutoCompleteSearch.jsx +2 -2
- package/core-ui/components/DynamicForm/components/AutoComplete/AutoCompleteStatus.jsx +2 -2
- package/core-ui/components/DynamicForm/components/DisableWrapper/DisableWrapper.jsx +2 -2
- package/core-ui/components/DynamicForm/components/FieldContainer/FieldContainer.jsx +2 -2
- package/core-ui/components/DynamicForm/components/FormButtons/FormButtons.jsx +2 -2
- package/core-ui/components/DynamicForm/components/ReadOnlyView/ReadOnlyView.jsx +2 -2
- package/core-ui/components/DynamicForm/components/SelectComponent/SelectComponent.js +2 -2
- package/core-ui/components/DynamicForm/components/TextWidgetBase/TextWidgetBase.jsx +2 -2
- package/core-ui/components/DynamicForm/components/ToggleButtonField/ToggleButtonField.jsx +2 -2
- package/core-ui/components/DynamicForm/components/ToggleButtonWidget/ToggleButtonWidget.jsx +2 -2
- package/core-ui/components/DynamicForm/hooks/useEvalQueryParam/useEvalQueryParam.js +2 -2
- package/core-ui/components/DynamicForm/hooks/useFormState/useFormState.js +2 -2
- package/core-ui/components/DynamicForm/hooks/useFormStateScopedEval/useFormStateScopedEval.js +2 -2
- package/core-ui/components/DynamicForm/hooks/useProcessCondition/useProcessCondition.js +2 -2
- package/core-ui/components/DynamicForm/hooks/useQueryTemplateParam/useQueryTemplateParam.js +2 -2
- package/core-ui/components/DynamicForm/hooks/useReadOnly/useReadOnly.js +2 -2
- package/core-ui/components/DynamicForm/hooks/useRender/useRender.js +2 -2
- package/core-ui/components/DynamicForm/hooks/useSelector/useSelector.js +2 -2
- package/core-ui/components/DynamicForm/hooks/useSubmitted/useSubmitted.js +2 -2
- package/core-ui/components/DynamicForm/store.js +2 -2
- package/core-ui/components/DynamicForm/utils/decodeHtml.js +2 -2
- package/core-ui/components/DynamicForm/utils/formStore.js +2 -2
- package/core-ui/components/DynamicForm/utils/getDateObject.js +2 -2
- package/core-ui/components/DynamicForm/utils/getError.jsx +2 -2
- package/core-ui/components/DynamicForm/utils/processForm.js +2 -2
- package/core-ui/components/DynamicForm/validation/rules.js +2 -2
- package/core-ui/components/DynamicForm/validation/transformErrors.js +2 -2
- package/core-ui/components/EditableText/EditableText.jsx +2 -2
- package/core-ui/components/EmptyStateMessage/EmptyStateMessage.jsx +205 -0
- package/core-ui/components/ErrorMessage/ErrorMessage.jsx +2 -2
- package/core-ui/components/FileViewer/FileViewer.jsx +8 -4
- package/core-ui/components/FileViewer/components/DownloadInfo/DownloadInfo.jsx +5 -4
- package/core-ui/components/FilterChipRow/FilterChipRow.jsx +10 -2
- package/core-ui/components/FilterChipRow/components/FilterChips/FilterChips.jsx +16 -12
- package/core-ui/components/FilterPanel/FilterPanel.jsx +30 -25
- package/core-ui/components/FilterPanel/components/FilterChips/FilterChips.jsx +3 -3
- package/core-ui/components/FilterPanel/components/FilterItem/FilterItem.jsx +5 -2
- package/core-ui/components/FilterPanel/components/FilterMenu/FilterMenu.jsx +3 -3
- package/core-ui/components/FilterPanel/components/FilterSelection/FilterSelection.jsx +3 -3
- package/core-ui/components/FilterPanel/components/PanelDisplay/PanelDisplay.jsx +3 -3
- package/core-ui/components/FilterPanel/components/SortPicker/SortPicker.jsx +5 -2
- package/core-ui/components/FilterPanel/components/TextSearch/TextSearch.jsx +3 -3
- package/core-ui/components/FilterPanel/hooks/useFilterState.js +2 -2
- package/core-ui/components/FilterPanel/utils/evaluatePickerFilter.js +2 -2
- package/core-ui/components/FilterPanel/utils/formatFilters.js +2 -2
- package/core-ui/components/FilterPanel/utils/getFilterItemId.js +2 -2
- package/core-ui/components/FilterPanel/utils/mapFilters.js +2 -2
- package/core-ui/components/FilterPanelWithTextSearch/FilterPanelWithTextSearch.jsx +10 -4
- package/core-ui/components/FocusWrapper/FocusWrapper.jsx +2 -2
- package/core-ui/components/Footer/Footer.jsx +17 -6
- package/core-ui/components/FormElements/FormElements.js +2 -2
- package/core-ui/components/FormElements/components/CopyInput/CopyInput.jsx +2 -2
- package/core-ui/components/FormElements/components/SimpleSelect/SimpleSelect.jsx +2 -2
- package/core-ui/components/FormElements/components/ToggleButton/ToggleButton.jsx +2 -2
- package/core-ui/components/FramerMotion/Collapsible/index.tsx +2 -2
- package/core-ui/components/FullPageViewer/FullPageViewer.jsx +196 -41
- package/core-ui/components/FullPageViewer/hooks/useFpvWindowMessage.js +2 -2
- package/core-ui/components/Helios/Breadcrumbs/Breadcrumbs.tsx +216 -0
- package/core-ui/components/Helios/BusinessObjectCard/BusinessObjectCard.tsx +414 -0
- package/core-ui/components/Helios/BusinessObjectCard/_ai_docs/2026-05-18-business-object-card-a11y-audit.md +71 -0
- package/core-ui/components/{BusinessObjectHeader/components/ArtifactDrawer/components/Attachments/Attachments.jsx → Helios/BusinessObjectCard/components/CardSection/CardSection.tsx} +34 -32
- package/core-ui/components/Helios/BusinessObjectCard/components/Skeleton/Skeleton.tsx +144 -0
- package/core-ui/components/Helios/BusinessObjectHeader/BusinessObjectHeader.tsx +507 -0
- package/core-ui/components/Helios/BusinessObjectHeader/HeaderActions.tsx +232 -0
- package/core-ui/components/Helios/Drawer/Drawer.tsx +58 -21
- package/core-ui/components/Helios/Drawer/Layouts/DrawerBottomBarLayout/DrawerBottomBarLayout.tsx +3 -3
- package/core-ui/components/Helios/Drawer/Layouts/DrawerContent/DrawerContent.tsx +2 -2
- package/core-ui/components/Helios/FilterPanel/FilterPanel.jsx +2 -2
- package/core-ui/components/Helios/FilterPanel/components/FilterChips/FilterChips.jsx +2 -2
- package/core-ui/components/Helios/FilterPanel/components/FilterItem/FilterItem.jsx +2 -2
- package/core-ui/components/Helios/FilterPanel/components/FilterMenu/FilterMenu.jsx +2 -2
- package/core-ui/components/Helios/FilterPanel/components/FilterSelection/FilterSelection.jsx +2 -2
- package/core-ui/components/Helios/FilterPanel/components/PanelDisplay/PanelDisplay.jsx +2 -2
- package/core-ui/components/Helios/FilterPanel/components/SortPicker/SortPicker.jsx +2 -2
- package/core-ui/components/Helios/FilterPanel/components/TextSearch/TextSearch.jsx +2 -2
- package/core-ui/components/Helios/FilterPanel/hooks/useFilterState.js +2 -2
- package/core-ui/components/Helios/FilterPanel/utils/evaluatePickerFilter.js +2 -2
- package/core-ui/components/Helios/FilterPanel/utils/formatFilters.js +2 -2
- package/core-ui/components/Helios/FilterPanel/utils/getFilterItemId.js +2 -2
- package/core-ui/components/Helios/FilterPanel/utils/mapFilters.js +2 -2
- package/core-ui/components/Helios/ScrollableContent/ScrollableContent.tsx +36 -13
- package/core-ui/components/Helios/SegmentedControl/SegmentedControl.tsx +272 -0
- package/core-ui/components/Helios/SegmentedControl/_ai_docs/2026-05-15-segmented-control-a11y-audit.md +66 -0
- package/core-ui/components/Helios/Typography/components/Body1/Body1.jsx +2 -2
- package/core-ui/components/Helios/Typography/components/Body2/Body2.jsx +2 -2
- package/core-ui/components/Helios/Typography/components/BodyText/BodyText.jsx +2 -2
- package/core-ui/components/Helios/Typography/components/Caption/Caption.jsx +2 -2
- package/core-ui/components/Helios/Typography/components/H1/H1.jsx +2 -2
- package/core-ui/components/Helios/Typography/components/H2/H2.jsx +2 -2
- package/core-ui/components/Helios/Typography/components/H3/H3.jsx +2 -2
- package/core-ui/components/Helios/Typography/components/H4/H4.jsx +2 -2
- package/core-ui/components/Helios/Typography/components/H5/H5.jsx +2 -2
- package/core-ui/components/Helios/Typography/components/H6/H6.jsx +2 -2
- package/core-ui/components/Helios/Typography/components/Overline/Overline.jsx +2 -2
- package/core-ui/components/Helios/Typography/components/SmallText/SmallText.jsx +2 -2
- package/core-ui/components/Helios/Typography/index.js +2 -2
- package/core-ui/components/Helios/Typography/styles/index.js +2 -2
- package/core-ui/components/Helios/index.js +9 -2
- package/core-ui/components/IconButton/IconButton.jsx +3 -3
- package/core-ui/components/IconPicker/IconPicker.jsx +2 -2
- package/core-ui/components/Image/Image.jsx +2 -2
- package/core-ui/components/Image/SvgImage.jsx +2 -2
- package/core-ui/components/Image/components/ErrorFallback.jsx +2 -2
- package/core-ui/components/Image/components/Skeleton/Skeleton.jsx +2 -2
- package/core-ui/components/IsometricImage/IsometricImage.jsx +2 -2
- package/core-ui/components/List/List.jsx +26 -20
- package/core-ui/components/ListItem/ListItem.jsx +75 -33
- package/core-ui/components/ListItemGroup/ListItemGroup.jsx +7 -7
- package/core-ui/components/MUI/Box/Box.tsx +2 -2
- package/core-ui/components/MUI/Divider/Divider.tsx +2 -2
- package/core-ui/components/MUI/Grid/Grid.tsx +2 -2
- package/core-ui/components/MUI/GridLegacyV2/GridLegacyV2.tsx +5 -3
- package/core-ui/components/MUI/LinearProgress/LinearProgress.tsx +2 -2
- package/core-ui/components/MUI/Link/Link.tsx +2 -2
- package/core-ui/components/MUI/Paper/Paper.tsx +2 -2
- package/core-ui/components/MUI/Stack/Stack.tsx +2 -2
- package/core-ui/components/MUI/TextField/TextField.tsx +2 -2
- package/core-ui/components/MUI/Tooltip/Tooltip.tsx +2 -2
- package/core-ui/components/MUI/Typography/Typography.tsx +2 -2
- package/core-ui/components/MenuButton/MenuButton.jsx +44 -13
- package/core-ui/components/ModalDialog/ModalDialog.jsx +58 -9
- package/core-ui/components/ModalDialog/TransitionComponent.jsx +89 -0
- package/core-ui/components/ModalDialog/components/DialogTitle/DialogTitle.jsx +66 -19
- package/core-ui/components/ModalDialog/components/FullScreenAppBar/FullScreenAppBar.jsx +38 -27
- package/core-ui/components/Navigation/Navigation.js +2 -2
- package/core-ui/components/Navigation/components/Breadcrumbs.jsx +2 -2
- package/core-ui/components/Navigation/components/Drawer.jsx +2 -2
- package/core-ui/components/Navigation/components/NavigationProvider.jsx +2 -2
- package/core-ui/components/Navigation/components/SecondaryMenu.jsx +2 -2
- package/core-ui/components/NavigationButtons/NavigationButtons.jsx +11 -10
- package/core-ui/components/NavigationDrawer/NavigationDrawer.jsx +2 -2
- package/core-ui/components/NavigationDrawerV2/NavigationDrawerV2.tsx +143 -42
- package/core-ui/components/NavigationDrawerV2/components/DrawerHeader.tsx +5 -5
- package/core-ui/components/NavigationDrawerV2/components/DrawerTitle.tsx +9 -5
- package/core-ui/components/NavigationDrawerV2/components/ItemIcon.tsx +3 -3
- package/core-ui/components/NavigationDrawerV2/components/MenuItem.tsx +231 -109
- package/core-ui/components/NavigationDrawerV2/components/SubMenuSidebar.tsx +85 -10
- package/core-ui/components/NavigationDrawerV2/components/index.ts +2 -2
- package/core-ui/components/NavigationDrawerV2/constants/index.ts +6 -4
- package/core-ui/components/NavigationDrawerV2/hooks/useNavigationMenuContext.tsx +18 -11
- package/core-ui/components/NavigationDrawerV2/types/index.ts +29 -8
- package/core-ui/components/NavigationDrawerV2/utils/animations.ts +2 -2
- package/core-ui/components/NavigationHorizontalMenuPanel/NavigationHorizontalMenuPanel.jsx +2 -2
- package/core-ui/components/NavigationHorizontalMenuPanel/components/Level1Base.jsx +2 -2
- package/core-ui/components/NavigationHorizontalMenuPanel/components/Level2Base.jsx +22 -12
- package/core-ui/components/NavigationHorizontalMenuPanel/components/Level3Base.jsx +26 -12
- package/core-ui/components/NavigationHorizontalMenuPanel/components/MenuItems.jsx +4 -2
- package/core-ui/components/NavigationMenuPanel/NavigationMenuPanel.jsx +2 -2
- package/core-ui/components/NavigationMenuPanel/components/ClickableItem/ClickableItem.jsx +2 -2
- package/core-ui/components/NavigationMenuPanel/components/ExpandableItem/ExpandableItem.jsx +2 -2
- package/core-ui/components/NavigationMenuPanel/components/ItemIcon/ItemIcon.jsx +2 -2
- package/core-ui/components/NavigationMenuPanel/components/MenuItem/MenuItem.jsx +2 -2
- package/core-ui/components/NavigationMenuPanel/components/MenuItemBase/MenuItemBase.jsx +2 -2
- package/core-ui/components/NestedMenu/NestedMenu.jsx +2 -2
- package/core-ui/components/Notification/Notification.jsx +5 -6
- package/core-ui/components/OutcomeSpace/OutcomeSpace.jsx +2 -2
- package/core-ui/components/OutcomeSpace/components/ChipDisplay/ChipDisplay.jsx +2 -2
- package/core-ui/components/OutcomeSpace/components/ListItemDisplay/ListItemDisplay.jsx +2 -2
- package/core-ui/components/OutcomeSpace/spaces/administrativeDivision/administrativeDivision.js +2 -2
- package/core-ui/components/OutcomeSpace/spaces/administrativeUnit/administrativeUnit.js +2 -2
- package/core-ui/components/OutcomeSpace/spaces/college/college.js +2 -2
- package/core-ui/components/OutcomeSpace/spaces/department/department.js +2 -2
- package/core-ui/components/OutcomeSpace/spaces/external/external.js +2 -2
- package/core-ui/components/OutcomeSpace/spaces/institution/institution.js +2 -2
- package/core-ui/components/OutcomeSpace/spaces/program/program.js +2 -2
- package/core-ui/components/PanelDrawer/PanelDrawer.jsx +2 -2
- package/core-ui/components/ProgressChart/{ProgressChart.jsx → ProgressChart.tsx} +68 -68
- package/core-ui/components/ProgressChart/components/BarChart/{BarChart.jsx → BarChart.tsx} +66 -38
- package/core-ui/components/ProgressChart/components/CircleChart/{CircleChart.jsx → CircleChart.tsx} +32 -33
- package/core-ui/components/ProgressChart/components/CircleChart/{CircleChartTitle.jsx → CircleChartTitle.tsx} +20 -35
- package/core-ui/components/ProgressChart/components/MultiSeriesBar/{MultiSeriesBar.jsx → MultiSeriesBar.tsx} +121 -130
- package/core-ui/components/ProgressChart/components/MultiSeriesBar/_ai_docs/2026-07-01-multi-series-bar-a11y-audit.md +70 -0
- package/core-ui/components/ProgressChart/components/SliderChart/{SliderChart.jsx → SliderChart.tsx} +66 -42
- package/core-ui/components/QueryBuilder/Operators.jsx +2 -2
- package/core-ui/components/QueryBuilder/QueryBuilder.jsx +2 -2
- package/core-ui/components/QueryBuilder/config.jsx +2 -2
- package/core-ui/components/QueryBuilder/init_logic.js +2 -2
- package/core-ui/components/QueryBuilder/init_value.js +2 -2
- package/core-ui/components/QueryBuilder/styles/styles.js +2 -2
- package/core-ui/components/RichDataTable/RichDataTable.jsx +2 -2
- package/core-ui/components/RichDataTable/functions.jsx +2 -2
- package/core-ui/components/RubricScoreSlider/RubricScoreSlider.jsx +3 -2
- package/core-ui/components/RubricScoreSlider/components/Legend/Legend.jsx +2 -2
- package/core-ui/components/RubricScoreSlider/css/RubricScoreSlider.css +73 -72
- package/core-ui/components/RubricScoreSlider/utils/utils.js +2 -2
- package/core-ui/components/SaveModal/SaveModal.jsx +14 -5
- package/core-ui/components/ScrollingContainer/ScrollingContainer.jsx +2 -2
- package/core-ui/components/SecondaryMenu/SecondaryMenu.jsx +2 -2
- package/core-ui/components/SecondaryMenu/components/Horizontal/Horizontal.jsx +2 -2
- package/core-ui/components/SecondaryMenu/components/Horizontal/components/Item/Item copy.jsx +2 -2
- package/core-ui/components/SecondaryMenu/components/Horizontal/components/Item/Item.jsx +2 -2
- package/core-ui/components/SecondaryMenu/components/Vertical/Vertical.jsx +2 -2
- package/core-ui/components/SecondaryMenu/components/Vertical/components/Item/Item.jsx +2 -2
- package/core-ui/components/SentimentScale/SentimentScale.jsx +22 -7
- package/core-ui/components/SentimentScale/components/SentimentIcon/SentimentIcon.jsx +5 -4
- package/core-ui/components/SkeletonContent/SkeletonContent.jsx +7 -6
- package/core-ui/components/SkeletonContent/components/Avatar/Avatar.jsx +3 -4
- package/core-ui/components/SkeletonContent/components/AvatarMenuItem/AvatarMenuItem.jsx +3 -4
- package/core-ui/components/SkeletonContent/components/Box/Box.jsx +3 -4
- package/core-ui/components/SkeletonContent/components/DrawerWithForm/DrawerWithForm.jsx +3 -4
- package/core-ui/components/SkeletonContent/components/DrawerWithHeader/DrawerWithHeader.jsx +3 -4
- package/core-ui/components/SkeletonContent/components/ListItem/ListItem.jsx +3 -4
- package/core-ui/components/SkeletonContent/components/PageHeader/PageHeader.jsx +3 -4
- package/core-ui/components/SkeletonContent/components/SecondaryMenu/SecondaryMenu.jsx +3 -4
- package/core-ui/components/SkeletonContent/components/Text/Text.jsx +3 -4
- package/core-ui/components/StatCard/StatCard.jsx +323 -0
- package/core-ui/components/StatRow/StatRow.jsx +2 -2
- package/core-ui/components/StatusMessage/StatusMessage.jsx +2 -2
- package/core-ui/components/StatusMessage/components/AvatarHeader/AvatarHeader.jsx +5 -5
- package/core-ui/components/StatusMessage/components/ImageHeader/ImageHeader.jsx +2 -2
- package/core-ui/components/SurveyComments/SurveyComments.jsx +19 -5
- package/core-ui/components/SurveyComments/components/AI/AI.jsx +3 -3
- package/core-ui/components/SurveyComments/components/AI/components/Conversation/Conversation.jsx +5 -3
- package/core-ui/components/SurveyComments/components/AI/components/Conversation/components/SurveyThemes/SurveyThemes.jsx +4 -4
- package/core-ui/components/SurveyComments/components/AI/components/Conversation/components/ThinkingAnimation/ThinkingAnimation.jsx +3 -3
- package/core-ui/components/SurveyComments/components/Comments/Comments.jsx +7 -5
- package/core-ui/components/SwipeableTabPanel/SwipeableTabPanel.jsx +7 -3
- package/core-ui/components/SwipeableTabPanel/components/TabPanel/TabPanel.jsx +3 -2
- package/core-ui/components/SwipeableViews/SwipeableViews.jsx +2 -2
- package/core-ui/components/SwipeableViews/components/SwipeableComponent.jsx +2 -2
- package/core-ui/components/SwipeableViews/components/SwipeableContainer.jsx +2 -2
- package/core-ui/components/TabPanels/TabPanels.jsx +88 -12
- package/core-ui/components/TextBuilder/TextBuilder.jsx +2 -2
- package/core-ui/components/TextBuilder/components/BuilderFooter/BuilderFooter.jsx +2 -2
- package/core-ui/components/TextBuilder/components/RootField/RootField.jsx +2 -2
- package/core-ui/components/TextBuilder/components/RowActionsWrapper/RowActionsWrapper.jsx +2 -2
- package/core-ui/components/TextBuilder/components/RuleGroup/RuleGroup.jsx +2 -2
- package/core-ui/components/TextBuilder/components/RuleGroupFooter/RuleGroupFooter.jsx +2 -2
- package/core-ui/components/TextBuilder/components/RuleGroupIndex/RuleGroupIndex.jsx +2 -2
- package/core-ui/components/TextBuilder/components/TopGroupItemWrapper/TopGroupItemWrapper.jsx +2 -2
- package/core-ui/components/TextBuilder/store/store.jsx +2 -2
- package/core-ui/components/TextBuilder/utils/mutateFunctions.js +2 -2
- package/core-ui/components/TextSearch/TextSearch.jsx +16 -10
- package/core-ui/components/TextTransition/TextTransition.jsx +2 -2
- package/core-ui/components/Timeline/Timeline.jsx +30 -20
- package/core-ui/components/Timeline/components/Skeleton/Skeleton.jsx +3 -3
- package/core-ui/components/TitleAndActionHeader/TitleAndActionHeader.jsx +4 -4
- package/core-ui/components/TitleAndActionHeader/components/ActionButton/ActionButton.jsx +12 -4
- package/core-ui/components/TitleAndActionHeader/components/AsyncExportModal/AsyncExportModal.jsx +4 -4
- package/core-ui/components/TitleAndActionHeader/components/Breadcrumbs/Breadcrumbs.jsx +2 -2
- package/core-ui/components/TitleAndActionHeader/components/ButtonFollowedTextfield.jsx +2 -2
- package/core-ui/components/TitleAndActionHeader/components/DefaultFilter/DefaultFilter.jsx +2 -2
- package/core-ui/components/TitleAndActionHeader/components/DefaultIconButton/DefaultIconButton.jsx +2 -2
- package/core-ui/components/TitleAndActionHeader/components/FilterButton/FilterButton.jsx +2 -2
- package/core-ui/components/TitleAndActionHeader/components/FilterPanelWrapper/FilterPanelWrapper.jsx +2 -2
- package/core-ui/components/TitleAndActionHeader/components/FilterSetMenuItem/FilterSetMenuItem.jsx +2 -2
- package/core-ui/components/TitleAndActionHeader/components/PreDefinedFilters/PreDefinedFilters.jsx +2 -2
- package/core-ui/components/TitleAndActionHeader/components/UserDefinedFilters/UserDefinedFilters.jsx +2 -2
- package/core-ui/components/TitleAndActionHeader/utils.js +2 -2
- package/core-ui/components/TitleAndDescription/TitleAndDescription.jsx +6 -6
- package/core-ui/components/UnstableDataTable/DataTable.jsx +191 -90
- package/core-ui/components/UnstableDataTable/components/CustomColumnMenu/CustomColumnMenu.jsx +3 -2
- package/core-ui/components/UnstableDataTable/components/CustomFooter/CustomFooter.jsx +5 -4
- package/core-ui/components/UnstableDataTable/components/LoadingScreenWithTextTransition/LoadingScreenWithTextTransition.jsx +3 -3
- package/core-ui/components/UnstableDataTable/theme.js +2 -2
- package/core-ui/components/UnstableDataTable/utils/datagridColumnMap.js +2 -2
- package/core-ui/components/UnstableEditableTable/EditableDataTable.jsx +2 -2
- package/core-ui/components/UnstableRichDataTable/RichDataTable.jsx +86 -24
- package/core-ui/components/UnstableRichDataTable/functions.jsx +2 -2
- package/core-ui/components/UnstableScrollingContainer/ScrollingContainer.jsx +16 -6
- package/core-ui/components/UnstableScrollingContainer/components/ScrollBarContainer.jsx +4 -3
- package/core-ui/components/UnstableScrollingContainer/components/ScrollBarContent.jsx +3 -2
- package/core-ui/components/UnstableScrollingContainer/components/ScrollBarThumb.jsx +3 -2
- package/core-ui/components/UnstableScrollingContainer/components/ScrollBarTrack.jsx +3 -2
- package/core-ui/components/UserAvatar/UserAvatar.jsx +17 -4
- package/core-ui/components/Widget/Widget.jsx +6 -2
- package/core-ui/components/WizardPanel/WizardPanel.jsx +182 -29
- package/core-ui/components/WizardPanel/components/CompletedItemList/CompletedItemList.jsx +20 -6
- package/core-ui/components/WizardPanel/components/Header/Header.jsx +92 -24
- package/core-ui/components/index.js +2 -2
- package/core-ui/hooks/useAction/useAction.jsx +2 -2
- package/core-ui/hooks/useApiRequest/actionCreators.js +2 -2
- package/core-ui/hooks/useApiRequest/actionTypes.js +2 -2
- package/core-ui/hooks/useApiRequest/index.js +2 -2
- package/core-ui/hooks/useApiRequest/reducer.js +2 -2
- package/core-ui/hooks/useColumn/useColumn.jsx +2 -2
- package/core-ui/hooks/useComponentWillMount/useComponentWillMount.js +2 -2
- package/core-ui/hooks/useConfiguration/useConfiguration.js +2 -2
- package/core-ui/hooks/useDataSourceUrl/useDataSourceUrl.js +2 -2
- package/core-ui/hooks/useDebounce/useDebounce.js +2 -2
- package/core-ui/hooks/useDebounceCallback/useDebounceCallback.js +2 -2
- package/core-ui/hooks/useDependecyChange/useDependecyChange.js +2 -2
- package/core-ui/hooks/useDispatchAction/useDispatchAction.js +2 -2
- package/core-ui/hooks/useFilter/useFilter.js +2 -2
- package/core-ui/hooks/useLoadingDebounce/useLoadingDebounce.jsx +2 -2
- package/core-ui/hooks/useLocalStorage/useLocalStorage.js +2 -2
- package/core-ui/hooks/useMutateState/useMutateState.js +2 -2
- package/core-ui/hooks/useNotify/useNotify.js +2 -2
- package/core-ui/hooks/useOnPropChange/useOnPropChange.jsx +2 -2
- package/core-ui/hooks/usePrevState/usePrevState.js +2 -2
- package/core-ui/hooks/useRefDimensions/useRefDimensions.js +2 -2
- package/core-ui/hooks/useScopedEval/useScopedEval.js +2 -2
- package/core-ui/hooks/useScroller/defaults.js +2 -2
- package/core-ui/hooks/useScroller/useScroller.js +2 -2
- package/core-ui/hooks/useScroller/utils.js +2 -2
- package/core-ui/hooks/useSkipOnMount/useSkipOnMount.js +2 -2
- package/core-ui/hooks/useStatusOptions/useStatusOptions.js +2 -2
- package/core-ui/hooks/useTimeout/useTimeout.js +2 -2
- package/core-ui/hooks/useValueChange/useValueChange.js +2 -2
- package/core-ui/hooks/useWindowState/queryString.js +2 -2
- package/core-ui/hooks/useWindowState/useWindowState.js +2 -2
- package/core-ui/hooks/useZoomLevel/useZoomLevel.jsx +2 -2
- package/core-ui/index.js +24 -12
- package/core-ui/services/createAction.jsx +8 -5
- package/core-ui/services/createEvent.jsx +16 -12
- package/core-ui/services/createStore.jsx +2 -2
- package/core-ui/services/dataSourceManager.js +2 -2
- package/core-ui/services/http.js +2 -2
- package/core-ui/theme/colors/framework/index.js +6 -26
- package/core-ui/theme/colors/framework/primary.js +2 -2
- package/core-ui/theme/colors/framework/secondary.js +3 -3
- package/core-ui/{components/BusinessObjectHeader/components/ArtifactDrawer/components/Notes/Notes.jsx → theme/colors/state/ai.js} +10 -37
- package/core-ui/theme/colors/state/common.js +4 -4
- package/core-ui/theme/colors/state/danger.js +3 -4
- package/core-ui/theme/colors/state/dynamicSuccess.js +3 -3
- package/core-ui/{hooks/useTag/useTag.js → theme/colors/state/error.js} +9 -13
- package/core-ui/theme/colors/state/goalMet.js +6 -7
- package/core-ui/theme/colors/state/goalNotMet.js +6 -7
- package/core-ui/theme/colors/state/inProgress.js +3 -3
- package/core-ui/theme/colors/state/index.js +16 -19
- package/core-ui/theme/colors/state/info.js +6 -7
- package/core-ui/theme/colors/state/noData.js +3 -3
- package/core-ui/theme/colors/state/success.js +5 -3
- package/core-ui/theme/colors/state/warning.js +6 -7
- package/core-ui/theme/theme.js +2 -2
- package/core-ui/utils/PrivateRoute.jsx +2 -2
- package/core-ui/utils/array.js +2 -2
- package/core-ui/utils/color.js +2 -2
- package/core-ui/utils/date.js +2 -2
- package/core-ui/utils/formatting.js +2 -2
- package/core-ui/utils/humanReadableList.js +2 -2
- package/core-ui/utils/math.js +2 -2
- package/core-ui/utils/memoize.js +2 -2
- package/core-ui/utils/number.js +2 -2
- package/core-ui/utils/object.js +2 -2
- package/core-ui/utils/queryString.js +2 -2
- package/core-ui/utils/sanitizedEval.js +2 -2
- package/core-ui/utils/string.js +2 -2
- package/core-ui/utils/template.js +2 -2
- package/core-ui/utils/url.js +2 -2
- package/core-ui/with/withTheme/withTheme.jsx +2 -2
- package/package.json +2 -3
- package/core-ui/components/Breadcrumbs/Breadcrumbs.jsx +0 -102
- package/core-ui/components/BusinessObjectHeader/BusinessObjectHeader.jsx +0 -218
- package/core-ui/components/BusinessObjectHeader/components/ActionButton/ActionButton.jsx +0 -143
- package/core-ui/components/BusinessObjectHeader/components/ArtifactDrawer/ArtifactDrawer.jsx +0 -201
- package/core-ui/components/BusinessObjectHeader/components/ArtifactDrawer/components/Tasks/Tasks.jsx +0 -151
- package/core-ui/components/BusinessObjectHeader/components/BusinessObjectHeaderActionMenu/BusinessObjectHeaderActionMenu.jsx +0 -136
- package/core-ui/components/BusinessObjectHeader/components/BusinessObjectHeaderActionMenu/utils.js +0 -112
- package/core-ui/components/RubricDistributionChart/RubricDistributionChart.jsx +0 -269
- package/core-ui/components/RubricDistributionChart/components/Legend/Legend.jsx +0 -187
- 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.
|
|
13
|
+
* ║ Version: 7.0.0-rc.91 ║
|
|
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.
|
|
20
|
+
* @version 7.0.0-rc.91
|
|
21
21
|
* @generated automatically
|
|
22
22
|
* @warning do not modify
|
|
23
23
|
*/
|
package/core-ui/Icon/index.jsx
CHANGED
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
* ║ updating the npm package. 📦 ║
|
|
11
11
|
* ║ ║
|
|
12
12
|
* ║ Package: aefis-core-ui ║
|
|
13
|
-
* ║ Version: 7.0.0-rc.
|
|
13
|
+
* ║ Version: 7.0.0-rc.91 ║
|
|
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.
|
|
20
|
+
* @version 7.0.0-rc.91
|
|
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.
|
|
13
|
+
* ║ Version: 7.0.0-rc.91 ║
|
|
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.
|
|
20
|
+
* @version 7.0.0-rc.91
|
|
21
21
|
* @generated automatically
|
|
22
22
|
* @warning do not modify
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
// Copyright (c)
|
|
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 = ({
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
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.
|
|
13
|
+
* ║ Version: 7.0.0-rc.91 ║
|
|
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.
|
|
20
|
+
* @version 7.0.0-rc.91
|
|
21
21
|
* @generated automatically
|
|
22
22
|
* @warning do not modify
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
// Copyright (c)
|
|
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.
|
|
13
|
+
* ║ Version: 7.0.0-rc.91 ║
|
|
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.
|
|
20
|
+
* @version 7.0.0-rc.91
|
|
21
21
|
* @generated automatically
|
|
22
22
|
* @warning do not modify
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
// Copyright (c)
|
|
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.
|
|
13
|
+
* ║ Version: 7.0.0-rc.91 ║
|
|
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.
|
|
20
|
+
* @version 7.0.0-rc.91
|
|
21
21
|
* @generated automatically
|
|
22
22
|
* @warning do not modify
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
// Copyright (c)
|
|
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
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
13
|
+
* ║ Version: 7.0.0-rc.91 ║
|
|
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.
|
|
20
|
+
* @version 7.0.0-rc.91
|
|
21
21
|
* @generated automatically
|
|
22
22
|
* @warning do not modify
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
// Copyright (c)
|
|
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.
|
|
13
|
+
* ║ Version: 7.0.0-rc.91 ║
|
|
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.
|
|
20
|
+
* @version 7.0.0-rc.91
|
|
21
21
|
* @generated automatically
|
|
22
22
|
* @warning do not modify
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
// Copyright (c)
|
|
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.
|
|
13
|
+
* ║ Version: 7.0.0-rc.91 ║
|
|
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.
|
|
20
|
+
* @version 7.0.0-rc.91
|
|
21
21
|
* @generated automatically
|
|
22
22
|
* @warning do not modify
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
// Copyright (c)
|
|
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"}
|