refactor(combo-box): resolve svelte imports

This commit is contained in:
Eric Liu 2020-12-05 17:13:21 -08:00
commit f8d39f1db7

View file

@ -83,15 +83,13 @@
export let listRef = null; export let listRef = null;
import { createEventDispatcher, afterUpdate, tick } from "svelte"; import { createEventDispatcher, afterUpdate, tick } from "svelte";
import WarningFilled16 from "carbon-icons-svelte/lib/WarningFilled16"; import WarningFilled16 from "carbon-icons-svelte/lib/WarningFilled16/WarningFilled16.svelte";
import { import ListBox from "../ListBox/ListBox.svelte";
ListBox, import ListBoxField from "../ListBox/ListBoxField.svelte";
ListBoxField, import ListBoxMenu from "../ListBox/ListBoxMenu.svelte";
ListBoxMenu, import ListBoxMenuIcon from "../ListBox/ListBoxMenuIcon.svelte";
ListBoxMenuIcon, import ListBoxMenuItem from "../ListBox/ListBoxMenuItem.svelte";
ListBoxMenuItem, import ListBoxSelection from "../ListBox/ListBoxSelection.svelte";
ListBoxSelection,
} from "../ListBox";
const dispatch = createEventDispatcher(); const dispatch = createEventDispatcher();