You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🚩BREAKING🚩 Removes value prop in favour of the new buttonValue prop
Guidance: If you use value prop, rename it to buttonValue. If you use value as an explicit two-way binding (more verbose v-model), keep continue using value.
Fixes the bug when a radio button didn't apply autofocus when dynamically rendered
Guidance: Use autofocus prop. This change improves keyboard navigation on forms where a radio button jumps into the DOM.
KImg
Adds appearanceOverrides prop
Adds 'error' event emit when an image fails to load
KDropdownMenu
Fixes the bug when the dropdown menu wasn't displayed when used within KModal
Adds 'tab' event emit when the user hits the [Tab] key and a 'close' event emit when the menu is closed programmatically
Guidance: The 'tab' event can be used for more precise focus management as the popover by default could end up sending focus to the root HTML element by default. Note that the browser event is passed to the handler function, so you may need/want to call preventDefault() on that event depending on your use case.
Icons
Adds new icons: expandAll
Dependencies updates
Moves date-fns dependency to depencies rather than dev-dependencies. This fixes problems in products that don't have date-fns installed in their own dependencies.
Adds xstate and @vue/composition-api to dependencies
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
What's Changed
KRadioButton
🚩BREAKING🚩 Removes
value
prop in favour of the newbuttonValue
propvalue
prop, rename it tobuttonValue
. If you usevalue
as an explicit two-way binding (more verbosev-model)
, keep continue usingvalue
.Fixes the bug when a radio button didn't apply autofocus when dynamically rendered
autofocus
prop. This change improves keyboard navigation on forms where a radio button jumps into the DOM.KImg
appearanceOverrides
prop'error'
event emit when an image fails to loadKDropdownMenu
KModal
'tab'
event emit when the user hits the[Tab]
key and a'close'
event emit when the menu is closed programmatically'tab'
event can be used for more precise focus management as the popover by default could end up sending focus to the root HTML element by default. Note that the browser event is passed to the handler function, so you may need/want to callpreventDefault()
on that event depending on your use case.Icons
expandAll
Dependencies updates
date-fns
dependency todepencies
rather thandev-dependencies
. This fixes problems in products that don't havedate-fns
installed in their own dependencies.xstate
and@vue/composition-api
todependencies
Also includes several minor dependencies updates.
New Contributors
onError
handler forKImg
#502Full Changelog: v2.0.0...v3.0.0
This discussion was created from the release v3.0.0.
Beta Was this translation helpful? Give feedback.
All reactions