Skip to content

v0.13.0

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Sep 15:06
· 572 commits to main since this release
327cb2c

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