From 0b33ca3a19012aa9435f85e5ec8db4c368245b98 Mon Sep 17 00:00:00 2001 From: Andrey Yamanov Date: Thu, 16 Oct 2025 17:37:11 +0200 Subject: [PATCH 1/2] fix(ComboBox): qa prop --- src/components/fields/ComboBox/ComboBox.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/fields/ComboBox/ComboBox.tsx b/src/components/fields/ComboBox/ComboBox.tsx index 2b3f4b292..a73d1ea69 100644 --- a/src/components/fields/ComboBox/ComboBox.tsx +++ b/src/components/fields/ComboBox/ComboBox.tsx @@ -18,7 +18,7 @@ import { useOverlay, useOverlayPosition, } from 'react-aria'; -import { Section as BaseSection, Item } from 'react-stately'; +import { Section as BaseSection } from 'react-stately'; import { useEvent } from '../../../_internal'; import { CloseIcon, DirectionIcon, LoadingIcon } from '../../../icons'; @@ -47,6 +47,7 @@ import { useEventBus } from '../../../utils/react/useEventBus'; import { ItemAction } from '../../actions'; import { useFieldProps, useFormProps, wrapWithField } from '../../form'; import { DisplayTransition } from '../../helpers'; +import { Item } from '../../Item'; import { Portal } from '../../portal'; import { InvalidIcon } from '../../shared/InvalidIcon'; import { ValidIcon } from '../../shared/ValidIcon'; From 31f5f88e9f9a34f5f18fc8eb3f99814b163287d8 Mon Sep 17 00:00:00 2001 From: Andrey Yamanov Date: Thu, 16 Oct 2025 17:40:47 +0200 Subject: [PATCH 2/2] chore: update changeset --- .changeset/slow-buttons-beam.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/slow-buttons-beam.md diff --git a/.changeset/slow-buttons-beam.md b/.changeset/slow-buttons-beam.md new file mode 100644 index 000000000..0501f693c --- /dev/null +++ b/.changeset/slow-buttons-beam.md @@ -0,0 +1,5 @@ +--- +"@cube-dev/ui-kit": patch +--- + +Improve prop handling in ComboBox.Item