Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 58fa3bc

Browse files
committed
fix: unresolved packages in example folder
1 parent ee4f2df commit 58fa3bc

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

packages/c-form-control/examples/select-example.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ import {
2020
chakra,
2121
useMultiStyleConfig,
2222
omitThemingProps,
23+
ThemingProps,
2324
} from "@chakra-ui/vue-system"
2425
import { filterUndefined } from "@chakra-ui/utils"
25-
import { useFormControl } from "@chakra-ui/c-form-control"
26+
import { useFormControl } from "../src"
2627
import { getValidChildren, vueThemingProps } from "@chakra-ui/vue-utils"
2728
2829
const CSelect = defineComponent({

packages/c-form-control/examples/textarea-example.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
useMultiStyleConfig,
1818
omitThemingProps,
1919
} from "@chakra-ui/vue-system"
20-
import { useFormControl } from "@chakra-ui/c-form-control"
20+
import { useFormControl } from "../src"
2121
import { vueThemingProps } from "@chakra-ui/vue-utils"
2222
2323
const CTextarea = defineComponent({

packages/layout/examples/base-container.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
</c-v-stack>
1414
</template>
1515
<script setup>
16-
import { CVStack } from '@chakra-ui/vue-layout'
16+
import { CVStack } from "../src"
1717
</script>

packages/layout/examples/base-heading.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
</c-container>
3030
</template>
3131
<script setup lang="ts">
32-
import { CStack } from '@chakra-ui/vue-layout'
32+
import { CStack } from "../src"
3333
</script>

0 commit comments

Comments
 (0)