Skip to content

v0.95.0

Choose a tag to compare

@metonym metonym released this 01 Dec 18:34
· 67 commits to master since this release

What's Changed

Features

Bug Fixes


New Portal component

Portal component outside of the direct parent to avoid parent overflow constraints and z-index issues. See Documentation.

<script>
  import { Portal } from "carbon-components-svelte";
</script>

<div>
  <div>This is rendered inside the div</div>
  <Portal>This is rendered outside of the div</Portal>
</div>

Full Changelog: v0.94.0...v0.95.0