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

Commit cc1ca16

Browse files
committed
chore: rename core package to vue
1 parent 9b21048 commit cc1ca16

31 files changed

+205
-164
lines changed

cypress/support/component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import Chakra, {
2727
extendTheme,
2828
extendChakra,
2929
CReset,
30-
} from "../../packages/core"
30+
} from "../../packages/vue"
3131
import { mode } from "@chakra-ui/theme-tools"
3232
import { feActivity, feUser } from "feather-icons-paths"
3333
import { h, Fragment, defineComponent } from "vue"

packages/c-accordion/examples/allow-multiple.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ import {
4343
CAccordionPanel,
4444
CAccordionIcon,
4545
} from "../src"
46-
import { chakra } from "../../core"
46+
import { chakra } from "../../vue"
4747
</script>

packages/c-accordion/examples/allow-toggle.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import {
4343
CAccordionButton,
4444
CAccordionPanel,
4545
} from "../src"
46-
import { chakra } from "../../core"
46+
import { chakra } from "../../vue"
4747
import { useToggle } from "@vueuse/core"
4848
const [isToggle] = useToggle(true)
4949
</script>

packages/c-accordion/examples/simple-accordion.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import {
3939
CAccordionButton,
4040
CAccordionPanel,
4141
} from "../src"
42-
import { chakra } from "../../core"
42+
import { chakra } from "../../vue"
4343
import { useId, useIds } from "@chakra-ui/vue-composables"
4444
import { watchEffect } from "vue"
4545

packages/c-alert/examples/base-alert.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
</template>
44

55
<script lang="ts" setup>
6-
import { chakra } from "../../core"
6+
import { chakra } from "../../vue"
77
</script>

packages/c-avatar/examples/badge-c-avatar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,5 @@
117117
</template>
118118
<script setup lang="ts">
119119
import { CAvatar, CAvatarBadge } from "../src"
120-
import { chakra } from "../../core"
120+
import { chakra } from "../../vue"
121121
</script>

packages/c-breadcrumb/examples/simple-breadcrumb.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<script lang="ts" setup>
1616
import { defineComponent, h } from "vue"
1717
import { useRoute } from "vue-router"
18-
import { CIcon } from "../../core/src"
18+
import { CIcon } from "../../vue/src"
1919
2020
const Sun = () => {
2121
return h(CIcon, {

packages/c-breadcrumb/examples/with-separators.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<script lang="ts" setup>
6060
import { defineComponent, h } from "vue"
6161
import { useRoute } from "vue-router"
62-
import { CIcon } from "../../core/src"
62+
import { CIcon } from "../../vue/src"
6363
6464
const Sun = () => {
6565
return h(CIcon, {

packages/c-code/examples/with-color.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<script setup lang="ts">
1515
import { ref } from "vue"
1616
import { CCode } from "../src"
17-
import { chakra } from "../../core"
17+
import { chakra } from "../../vue"
1818
1919
const colorSchemes = ref([
2020
"gray",

packages/c-focus-lock/examples/with-focus-lock-component.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
</template>
8888

8989
<script lang="ts" setup>
90-
import { chakra } from "../../core"
90+
import { chakra } from "../../vue"
9191
import { useRef } from "@chakra-ui/vue-utils"
9292
import { ref } from "vue"
9393
import { CFocusLock } from "../src/c-focus-lock"

0 commit comments

Comments
 (0)