Skip to content

Releases: cube-js/cube-ui-kit

v0.83.1

20 Oct 14:48
cf32e6b

Choose a tag to compare

Patch Changes

v0.83.0

17 Oct 15:53
8870d82

Choose a tag to compare

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
46aff12

Choose a tag to compare

Patch Changes

v0.82.1

16 Oct 08:57
05a69b0

Choose a tag to compare

Patch Changes

v0.82.0

15 Oct 16:02
a419ac6

Choose a tag to compare

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
6e73bb9

Choose a tag to compare

Minor Changes

  • #820 bcc9783e Thanks @tenphi! - New Switch sizes: small -> medium (and now default). new small size.

v0.80.2

10 Oct 14:48
441558f

Choose a tag to compare

Patch Changes

v0.80.1

07 Oct 10:56
43e31a6

Choose a tag to compare

Patch Changes

v0.80.0

03 Oct 15:12
d07e830

Choose a tag to compare

Minor Changes

  • #810 eb5a2efa Thanks @tenphi! - Add new icons: PercentageIcon, CurrencyDollarIcon, Number123Icon.

Patch Changes

v0.79.0

02 Oct 15:15
6797bdf

Choose a tag to compare

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'.