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

Commit 7c107a9

Browse files
Merge pull request #38 from chakra-ui/develop
chore: release fix for component exports in core package
2 parents 5a770ff + 2c48ea5 commit 7c107a9

File tree

5 files changed

+37
-9
lines changed

5 files changed

+37
-9
lines changed

.changeset/empty-dragons-wait.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@chakra-ui/vue-next': patch
3+
---
4+
5+
Export popper and portal component packages

.changeset/pre.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"@chakra-ui/vue-docs": "0.0.0"
2626
},
2727
"changesets": [
28-
"chilly-tables-care"
28+
"chilly-tables-care",
29+
"empty-dragons-wait"
2930
]
3031
}

packages/core/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# @chakra-ui/vue-next
22

3-
## 0.0.1-alpha.0
3+
## 0.0.1-alpha.1
4+
45
### Patch Changes
56

7+
- Export popper and portal component packages
68

9+
## 0.0.1-alpha.0
10+
11+
### Patch Changes
712

813
- [#36](https://github.com/chakra-ui/chakra-ui-vue-next/pull/36) [`8243ac6`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/8243ac6cdc1ef47e56b3ec2f4635f44396273ee8) Thanks [@codebender828](https://github.com/codebender828)! - Initial release for core system packages
914

packages/core/package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/vue-next",
3-
"version": "0.0.1-alpha.0",
3+
"version": "0.0.1-alpha.1",
44
"description": "Vue 3 compatible version of Chakra UI Vue",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -24,19 +24,23 @@
2424
},
2525
"dependencies": {
2626
"@chakra-ui/styled-system": "^1.9.0",
27-
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
28-
"@chakra-ui/vue-theme": "^0.0.1-alpha.0",
29-
"@chakra-ui/vue-utils": "^0.0.1-alpha.0",
3027
"@chakra-ui/c-accordion": "^0.0.1-alpha.0",
3128
"@chakra-ui/c-alert": "^0.0.1-alpha.0",
29+
"@chakra-ui/c-badge": "^0.0.1-alpha.0",
3230
"@chakra-ui/c-button": "^0.0.1-alpha.0",
31+
"@chakra-ui/c-color-mode": "^0.0.1-alpha.0",
3332
"@chakra-ui/c-flex": "^0.0.1-alpha.0",
3433
"@chakra-ui/c-icon": "^0.0.1-alpha.0",
34+
"@chakra-ui/c-popper": "^0.0.1-alpha.0",
35+
"@chakra-ui/c-portal": "^0.0.1-alpha.0",
3536
"@chakra-ui/c-reset": "^0.0.1-alpha.0",
3637
"@chakra-ui/c-spinner": "^0.0.1-alpha.0",
3738
"@chakra-ui/c-theme-provider": "^0.0.1-alpha.0",
3839
"@chakra-ui/c-visually-hidden": "^0.0.1-alpha.0",
39-
"@chakra-ui/c-popper": "^0.0.1-alpha.0"
40+
"@chakra-ui/vue-system": "^0.0.1-alpha.0",
41+
"@chakra-ui/vue-theme": "^0.0.1-alpha.0",
42+
"@chakra-ui/vue-utils": "^0.0.1-alpha.0",
43+
"@chakra-ui/vue-theme-tools": "^0.0.1-alpha.0"
4044
},
4145
"devDependencies": {
4246
"@chakra-ui/styled-system": "^1.9.0",

packages/core/src/index.ts

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,24 +71,37 @@ export { chakra }
7171
*
7272
* Please keep these exports in Alphabetical order :)
7373
*/
74-
export const CBox = chakra.div
7574

75+
// A
7676
export * from '@chakra-ui/c-accordion'
7777
export * from '@chakra-ui/c-alert'
7878

79+
// B
80+
export const CBox = chakra.div
7981
export * from '@chakra-ui/c-badge'
8082
export * from '@chakra-ui/c-button'
8183

84+
// C
85+
export * from '@chakra-ui/c-color-mode'
86+
87+
// F
8288
export * from '@chakra-ui/c-flex'
8389

90+
// I
8491
export * from '@chakra-ui/c-icon'
8592

93+
// P
94+
export * from '@chakra-ui/c-popper'
8695
export * from '@chakra-ui/c-portal'
8796

97+
// R
8898
export * from '@chakra-ui/c-reset'
8999

100+
// S
90101
export * from '@chakra-ui/c-spinner'
91102

103+
// T
92104
export * from '@chakra-ui/c-theme-provider'
93105

94-
export * from '@chakra-ui/c-visually-hidden'
106+
// V
107+
export * from '@chakra-ui/c-visually-hidden'

0 commit comments

Comments
 (0)