Added
- All Components: Exposed base props to simplify prop merging for library consumers, especially
in CSS-in-JS environments.export interface AccordionItemBaseProps extends ItemProps, PolymorphicProps {} export interface AccordionItemProps extends AccordionItemBaseProps, /** * @vue-ignore */ HTMLAttributes {}
- Field: Introduced the
Field
component for flexible form input, label, and helper text
container. - Signature Pad: Added
HiddenInput
to theSignaturePad
component for better form library
compatibility. - ColorPicker: Added
SliderValueText
,SliderLabel
, andValueSwatch
parts for enhanced
customization. - Tooltip: Introduced the
closeOnScroll
option to control whether the tooltip should close
when the trigger's overflow parent scrolls.
Fixed
- Menu:
- Resolved an issue causing sibling menus or popovers to malfunction on iOS devices.
- Fixed a problem where the context menu trigger showed the magnifier and iOS context menu on long
press.
- Editable: Fixed a bug where setting
activationMode
todblclick
unexpectedly cleared the
input value. - Checkbox: Added the missing
group
role for the Checkbox group component. - Signature Pad: Added missing exports for the
signature-pad
component. - Input: Resolved an issue where the
Input
components could not be used with theasChild
prop.