Skip to content

Releases: cube-js/cube-ui-kit

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.

v0.12.6

31 Aug 14:15
107aed1
Compare
Choose a tag to compare

Patch Changes

  • #200 6b7448a Thanks @tenphi! - Form is no longer validated on field removal (bugfix)

  • #200 6b7448a Thanks @tenphi! - Validation rules in Form now allows to return complex markup in error messages.

v0.12.5

28 Aug 09:43
a52828d
Compare
Choose a tag to compare

Patch Changes

v0.12.4

23 Aug 10:32
91563b0
Compare
Choose a tag to compare

Patch Changes

v0.12.3

22 Aug 06:06
1789b96
Compare
Choose a tag to compare

Patch Changes

  • #182 6db0491 Thanks @tenphi! - Add icon property to Input components. You should use it instead prefix property to ensure your icon will have correct paddings.
    Styles of Input components have been rewritten to improve consistency and maintenance.

  • #193 5c3ed68 Thanks @MrFlashAccount! - Fixed alignment between label and suffix in Field component

  • #177 16a213a Thanks @tenphi! - ComboBox now respects onSelectionChange event while working inside a form.

  • #185 7a7b861 Thanks @MrFlashAccount! - Fixed types in onSubmit and onValuesChange types in Form