Releases: mtorromeo/vue-patternfly3
Releases · mtorromeo/vue-patternfly3
v0.3.9
v0.3.8
v0.3.7
v0.3.6
v0.3.5
v0.3.4
v0.3.3
v0.3.2
v0.3.1
v0.3.0
Added
- refactor: converted the whole codebase to typescript.
- feat(typescript): exported type definitions for all components.
- feat(Combobox): the dropdown trigger element is now slotted (slot name is
dropdownTrigger
) for better customization.
Fixed
- fix(Dropdown): fixed removal of event listeners on umount.
Changed
- BACKWARD INCOMPATIBLE CHANGE: All components are now exported with the name matching the component name (eg.
PfButton
instead ofButton
). The old exports are maintained for backwards compatibility but importing* from 'vue-patternfly'
will now include the same components exported twice. - BACKWARD INCOMPATIBLE CHANGE: All sort direction properties have been normalized as
'asc' | 'desc'
instead of a mix of'asc' | 'desc'
and'ascending' | 'descending'
.