Skip to content

Releases: cube-js/cube-ui-kit

v0.80.0

03 Oct 15:12
d07e830
Compare
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
Compare
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'.

v0.78.5

01 Oct 17:50
ed517ce
Compare
Choose a tag to compare

Patch Changes

v0.78.4

01 Oct 17:21
936de8c
Compare
Choose a tag to compare

Patch Changes

  • #803 a4f59bb7 Thanks @tenphi! - Fix the return type of the TooltipProvider the second time :)

v0.78.3

01 Oct 16:09
eca3776
Compare
Choose a tag to compare

Patch Changes

v0.78.2

30 Sep 16:20
f5d970e
Compare
Choose a tag to compare

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
a1298fe
Compare
Choose a tag to compare

Patch Changes

v0.78.0

23 Sep 13:52
75a2203
Compare
Choose a tag to compare

Minor Changes

  • #793 a64ee513 Thanks @tenphi! - The new navigation API that relies on external useHref and useNavigation hooks.

Patch Changes

  • #793 a64ee513 Thanks @tenphi! - Add support for full navigation argument type in to prop in actions including object { pathname, search, hash } and numbers for history navigation. Use <Link to={-1}>... to move back in history.

v0.77.4

22 Sep 14:05
080796e
Compare
Choose a tag to compare

Patch Changes

v0.77.3

22 Sep 12:11
b6ad69a
Compare
Choose a tag to compare

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.