Releases: cube-js/cube-ui-kit
Releases · cube-js/cube-ui-kit
v0.83.1
20 Oct 14:48
Compare
Sorry, something went wrong.
No results found
v0.83.0
17 Oct 15:53
Compare
Sorry, something went wrong.
No results found
Minor Changes
#827 7153c8f2 Thanks @tenphi ! - Introduces a brand new Radio.Tabs component as a replacement for RadioGroup with isSolid flag.
v0.82.2
16 Oct 15:55
Compare
Sorry, something went wrong.
No results found
v0.82.1
16 Oct 08:57
Compare
Sorry, something went wrong.
No results found
v0.82.0
15 Oct 16:02
Compare
Sorry, something went wrong.
No results found
Minor Changes
#823 91e81ac3 Thanks @tenphi ! - Add a brand new ComboBox component with virtualization and user/developer-friendly behavior.
Patch Changes
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'.