mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
refactor(pagination): resolve svelte imports
This commit is contained in:
parent
95901c270f
commit
317df90e6f
2 changed files with 6 additions and 5 deletions
|
@ -65,10 +65,11 @@
|
||||||
export let id = "ccs-" + Math.random().toString(36);
|
export let id = "ccs-" + Math.random().toString(36);
|
||||||
|
|
||||||
import { createEventDispatcher } from "svelte";
|
import { createEventDispatcher } from "svelte";
|
||||||
import CaretLeft16 from "carbon-icons-svelte/lib/CaretLeft16";
|
import CaretLeft16 from "carbon-icons-svelte/lib/CaretLeft16/CaretLeft16.svelte";
|
||||||
import CaretRight16 from "carbon-icons-svelte/lib/CaretRight16";
|
import CaretRight16 from "carbon-icons-svelte/lib/CaretRight16/CaretRight16.svelte";
|
||||||
import { Button } from "../Button";
|
import Button from "../Button/Button.svelte";
|
||||||
import { Select, SelectItem } from "../Select";
|
import Select from "../Select/Select.svelte";
|
||||||
|
import SelectItem from "../Select/SelectItem.svelte";
|
||||||
|
|
||||||
const dispatch = createEventDispatcher();
|
const dispatch = createEventDispatcher();
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script>
|
<script>
|
||||||
import { SkeletonText } from "../SkeletonText";
|
import SkeletonText from "../SkeletonText/SkeletonText.svelte";
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue