Skip to content

v0.93.0

Choose a tag to compare

@metonym metonym released this 22 Nov 20:38
· 160 commits to master since this release

What's Changed

⚠ BREAKING CHANGES

Features

Bug Fixes


New Stack component

Use Stack to manage vertical and horizontal spacing using Carbon Design System layout tokens. See Documentation.

<Stack>
  <p>Item 1</p>
  <p>Item 2</p>
  <p>Item 3</p>
</Stack>

OverflowMenuItem supports close on click

Use preventDefault() on individual click events to prevent the menu from closing when that item is clicked.

<OverflowMenu>
  <OverflowMenuItem
    text="Show all files"
    on:click={(e) => {
      // Prevent menu from closing for this item.
      e.preventDefault();
    }}
  />
  <OverflowMenuItem text="Close menu" />
</OverflowMenu>

Full Changelog: v0.92.0...v0.93.0