Skip to content

Releases: cube-js/cube-ui-kit

v0.14.1

28 Oct 16:07
487f87e
Compare
Choose a tag to compare

Patch Changes

v0.14.0

26 Oct 09:54
78d634c
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • #230 9578486 Thanks @tenphi! - The Form component set submitError no more on failed validation.
    SubmitError component now handles non-valid errors as Internal error.

v0.13.6

12 Oct 10:37
c134809
Compare
Choose a tag to compare

Patch Changes

  • #227 19c1adf Thanks @tenphi! - Add SubmitError component to display error that throws onSubmit callback.
    Allow to manually visualize a submit error.

v0.13.5

10 Oct 07:28
ab200ae
Compare
Choose a tag to compare

Patch Changes

v0.13.4

27 Sep 17:21
2627639
Compare
Choose a tag to compare

Patch Changes

v0.13.3

23 Sep 18:37
1eba92e
Compare
Choose a tag to compare

Patch Changes

v0.13.2

19 Sep 12:02
4cc6c4b
Compare
Choose a tag to compare

Patch Changes

v0.13.1

14 Sep 19:57
63b01a8
Compare
Choose a tag to compare

Patch Changes

  • #213 04852be Thanks @tenphi! - Fix that allows notifications to be dismissed correctly when they are off the display limit.

v0.13.0

14 Sep 15:06
327cb2c
Compare
Choose a tag to compare

Minor Changes

  • #207 fa16cd6 Thanks @MrFlashAccount! - Redesigned close button in <Notification /> component.

    Added ability to dismiss a notification in <NotificationList /> component.

    import { NotificationsList } from '@cube-dev/ui-kit';
    
    <NotificationList onDismiss={() => console.log('dismissed')}>
      <NotificationsList.Item
        header="Notification title"
        description="Notification description"
      />
    </NotificationList>;

    Now notifications generates more uniq ids by default.

Patch Changes

v0.12.7

02 Sep 20:34
2c380b1
Compare
Choose a tag to compare

Patch Changes

  • #203 f50b93a Thanks @tenphi! - On form submission the isSubmitting flag now set to true before the start of the validation.

  • #202 8e6767a Thanks @MrFlashAccount! - Improve typings of onSubmit and onValuesChange callbacks in <Form /> component. Now they properly match with FormInstance and useForm.