Releases: cube-js/cube-ui-kit
v0.80.0
Minor Changes
Patch Changes
v0.79.0
Minor Changes
-
#807
ce19c264
Thanks @tenphi! - Breaking Change: AlertDialog API cancel button behavior changedThe
cancel
button in AlertDialog now rejects the promise instead of resolving with'cancel'
status, aligning it with the dismiss (Escape key) behavior.Migration Guide:
Before:
alertDialogAPI.open({...}) .then((status) => { if (status === 'cancel') { // Handle cancel } else if (status === 'confirm') { // Handle confirm } })
After:
alertDialogAPI.open({...}) .then((status) => { if (status === 'confirm') { // Handle confirm } else if (status === 'secondary') { // Handle secondary action } }) .catch(() => { // Handle cancel or dismiss })
Note:
AlertDialogResolveStatus
type no longer includes'cancel'
- it now only contains'confirm' | 'secondary'
.
v0.78.5
v0.78.4
v0.78.3
v0.78.2
Patch Changes
v0.78.1
v0.78.0
v0.77.4
Patch Changes
-
#791
1ca1deb4
Thanks @tenphi! - Actualize the interface of Item component. -
#791
1ca1deb4
Thanks @tenphi! - Make Panel placeSelf stretch by default. -
#791
1ca1deb4
Thanks @tenphi! - Fix Item interface for FilterPicker. -
#791
1ca1deb4
Thanks @tenphi! - Add onClear callback for FilterPicker, Select, ComboBox and SearchInput. -
#791
1ca1deb4
Thanks @tenphi! - Fix popover of FilterPicker to corretly flip on opening.
v0.77.3
Patch Changes
-
#787
78dc7da2
Thanks @tenphi! - Add ItemAction component with a temporary implementation. -
#787
78dc7da2
Thanks @tenphi! - Add a clear button to FilterPicker, Select and ComboBox components. Redesign the clear button in SearchInput component. -
#789
1251a11b
Thanks @tenphi! - Add DecimalDecreaseIcon.tsx and DecimalIncreaseIcon.tsx. -
#790
f4e502d1
Thanks @tenphi! - Make toasts and notifications more visible with a colorful border.