Compare v0.42.3...v0.43.0 Features add ability to programmatically clear a ComboBox using the clear component accessor (dfc00f6, #804 contributed by @rafadess) <script> import { ComboBox } from "carbon-components-svelte"; let ref; </script> <ComboBox bind:this={ref} /> <button on:click={ref?.clear}> Clear </button>