Minor Changes
NumberInput 0.1.14
-
Add support for
spinOnPress
to allow user control whether to spin the input's value when the decrement or increment button is pressed. -
Add support for
onFocus
andonBlur
callbacks in the machine's context.
const [state, send] = useMachine( numberInput.machine({ onFocus(details) { // details => { value: string, valueAsNumber: number, srcElement: HTMLElement | null } }, onBlur(details) { // details => { value: string, valueAsNumber: number } }, }), )
- Add
focus()
andblur()
methods to the machine'sapi
Patch Changes
Menu 0.1.12
- Fixed issue where menu menu gets closed if item is selected with keyboard while closeOnSelect is set to true.
Rating 0.1.13
- Fixed issue where the rating is unusable on touch devices
TagsInput 0.2.4
- Fixed issue where input tried to edit a non existent tag after all tags are deleted.
Toast 0.1.12
- Expose toast
description
in api.
Popper 0.1.10
- Update dependency
@floating-ui/dom
tov1
Edit this page on GitHub