Releases: cube-js/cube-ui-kit
Releases · cube-js/cube-ui-kit
v0.81.0
13 Oct 13:34
Compare
Sorry, something went wrong.
No results found
Minor Changes
#820 bcc9783e Thanks @tenphi ! - New Switch sizes: small -> medium (and now default). new small size.
v0.80.2
10 Oct 14:48
Compare
Sorry, something went wrong.
No results found
v0.80.1
07 Oct 10:56
Compare
Sorry, something went wrong.
No results found
v0.80.0
03 Oct 15:12
Compare
Sorry, something went wrong.
No results found
Minor Changes
#810 eb5a2efa Thanks @tenphi ! - Add new icons: PercentageIcon, CurrencyDollarIcon, Number123Icon.
Patch Changes
v0.79.0
02 Oct 15:15
Compare
Sorry, something went wrong.
No results found
Minor Changes
#807 ce19c264 Thanks @tenphi ! - Breaking Change: AlertDialog API cancel button behavior changed
The 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
01 Oct 17:50
Compare
Sorry, something went wrong.
No results found
v0.78.4
01 Oct 17:21
Compare
Sorry, something went wrong.
No results found
v0.78.3
01 Oct 16:09
Compare
Sorry, something went wrong.
No results found
v0.78.2
30 Sep 16:20
Compare
Sorry, something went wrong.
No results found
Patch Changes
#799 29163467 Thanks @tenphi ! - Fix tooltip implementation so it doesn't break item navigation.
#799 29163467 Thanks @tenphi ! - Use auto tooltip in ItemBase component by default. See documentation to learn more.
#798 17e4f7f7 Thanks @tenphi ! - Don't pass onPress prop to the element in ItemButton.
v0.78.1
25 Sep 10:53
Compare
Sorry, something went wrong.
No results found