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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,18 @@
1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
4
+
### [0.3.0] - 2021-02-03
5
+
- refactor: converted the whole codebase to typescript.
6
+
- feat(typescript): exported type definitions for all components.
7
+
- feat(Combobox): the dropdown trigger element is now slotted (slot name is `dropdownTrigger`) for better customization.
8
+
9
+
### Fixed
10
+
- fix(Dropdown): fixed removal of event listeners on umount.
11
+
12
+
### Changed
13
+
-**BACKWARD INCOMPATIBLE CHANGE**: All components are now exported with the name matching the component name (eg. `PfButton` instead of `Button`). The old exports are maintained for backwards compatibility but importing `* from 'vue-patternfly'` will now include the same components exported twice.
14
+
-**BACKWARD INCOMPATIBLE CHANGE**: All sort direction properties have been normalized as `'asc' | 'desc'` instead of a mix of `'asc' | 'desc'` and `'ascending' | 'descending'`.
15
+
4
16
### [0.2.11] - 2021-12-31
5
17
### Fixed
6
18
- fix(Dropdown): avoided possible access to undefined $refs while destructing the component.
@@ -384,7 +396,8 @@ disabled, as per PatternFly design guidelines.
0 commit comments