test: use carbon-components-svelte for type imports

This commit is contained in:
Eric Liu 2024-11-09 09:37:18 -08:00
commit f14b17ec58
93 changed files with 102 additions and 103 deletions

View file

@ -1,6 +1,6 @@
<script lang="ts">
import { NumberInput, NumberInputSkeleton } from "../types";
import type { NumberInputProps } from "../types/NumberInput/NumberInput.svelte";
import { NumberInput, NumberInputSkeleton } from "carbon-components-svelte";
import type { NumberInputProps } from "carbon-components-svelte/NumberInput/NumberInput.svelte";
let value: NumberInputProps["value"] = null;
</script>