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

Commit 750e606

Browse files
chore(release): version packages (alpha)
1 parent 509b5c6 commit 750e606

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+492
-104
lines changed

.changeset/pre.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@
2626
"@chakra-ui/c-close-button": "0.0.1-alpha.0",
2727
"@chakra-ui/c-modal": "1.0.0",
2828
"@chakra-ui/c-code": "0.0.1-alpha.0",
29-
"@chakra-ui/vue-layout": "0.1.0-alpha.1"
29+
"@chakra-ui/vue-layout": "0.1.0-alpha.1",
30+
"@chakra-ui/c-focus-lock": "0.0.1-alpha.0",
31+
"@chakra-ui/c-motion": "0.1.0-alpha.1",
32+
"@chakra-ui/c-scroll-lock": "0.0.1-alpha.0",
33+
"@chakra-ui/vue-a11y": "0.1.0-alpha.1",
34+
"@chakra-ui/vue-composables": "0.1.0-alpha.1"
3035
},
3136
"changesets": [
3237
"chilly-tables-care",
@@ -37,6 +42,7 @@
3742
"neat-rules-cry",
3843
"proud-apples-compare",
3944
"quiet-bananas-develop",
45+
"rare-ads-impress",
4046
"slimy-bugs-give",
4147
"sweet-lamps-brake",
4248
"ten-pandas-run",

packages/c-accordion/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @chakra-ui/c-accordion
22

3+
## 0.1.0-alpha.3
4+
5+
### Minor Changes
6+
7+
- [#44](https://github.com/chakra-ui/chakra-ui-vue-next/pull/44) [`576a7f1`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/576a7f12c179852ebfd9ee1905764357d7698dd6) Thanks [@codebender828](https://github.com/codebender828)! - - Adds Modal component
8+
- Adds FocusLock composable, directive and component
9+
- Adds ScrollLock composable, directive and component
10+
- Improves TSX support
11+
12+
### Patch Changes
13+
14+
- Updated dependencies []:
15+
- @chakra-ui/vue-system@0.1.0-alpha.3
16+
317
## 0.1.0-alpha.2
418

519
### Minor Changes

packages/c-accordion/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/c-accordion",
3-
"version": "0.1.0-alpha.2",
3+
"version": "0.1.0-alpha.3",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/types/index.d.ts",
@@ -25,6 +25,6 @@
2525
"build:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types"
2626
},
2727
"dependencies": {
28-
"@chakra-ui/vue-system": "0.1.0-alpha.2"
28+
"@chakra-ui/vue-system": "0.1.0-alpha.3"
2929
}
3030
}

packages/c-alert/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @chakra-ui/c-alert
22

3+
## 1.0.0-alpha.3
4+
5+
### Minor Changes
6+
7+
- [#44](https://github.com/chakra-ui/chakra-ui-vue-next/pull/44) [`576a7f1`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/576a7f12c179852ebfd9ee1905764357d7698dd6) Thanks [@codebender828](https://github.com/codebender828)! - - Adds Modal component
8+
- Adds FocusLock composable, directive and component
9+
- Adds ScrollLock composable, directive and component
10+
- Improves TSX support
11+
12+
### Patch Changes
13+
14+
- Updated dependencies [[`576a7f1`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/576a7f12c179852ebfd9ee1905764357d7698dd6)]:
15+
- @chakra-ui/c-icon@1.0.0-alpha.3
16+
- @chakra-ui/vue-utils@0.1.0-alpha.3
17+
- @chakra-ui/vue-system@0.1.0-alpha.3
18+
319
## 1.0.0-alpha.2
420

521
### Minor Changes

packages/c-alert/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/c-alert",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/types/index.d.ts",
@@ -29,15 +29,15 @@
2929
"watch:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch --incremental"
3030
},
3131
"dependencies": {
32-
"@chakra-ui/c-icon": "1.0.0-alpha.2",
33-
"@chakra-ui/vue-system": "0.1.0-alpha.2",
34-
"@chakra-ui/vue-utils": "0.1.0-alpha.2"
32+
"@chakra-ui/c-icon": "1.0.0-alpha.3",
33+
"@chakra-ui/vue-system": "0.1.0-alpha.3",
34+
"@chakra-ui/vue-utils": "0.1.0-alpha.3"
3535
},
3636
"devDependencies": {
3737
"vue": ">=3.0.5"
3838
},
3939
"peerDependencies": {
40-
"@chakra-ui/vue-system": "0.1.0-alpha.2",
40+
"@chakra-ui/vue-system": "0.1.0-alpha.3",
4141
"vue": "^3.0.5"
4242
}
4343
}

packages/c-button/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# @chakra-ui/c-button
22

3+
## 1.0.0-alpha.3
4+
5+
### Minor Changes
6+
7+
- [#44](https://github.com/chakra-ui/chakra-ui-vue-next/pull/44) [`576a7f1`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/576a7f12c179852ebfd9ee1905764357d7698dd6) Thanks [@codebender828](https://github.com/codebender828)! - - Adds Modal component
8+
- Adds FocusLock composable, directive and component
9+
- Adds ScrollLock composable, directive and component
10+
- Improves TSX support
11+
12+
### Patch Changes
13+
14+
- Updated dependencies [[`576a7f1`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/576a7f12c179852ebfd9ee1905764357d7698dd6)]:
15+
- @chakra-ui/c-icon@1.0.0-alpha.3
16+
- @chakra-ui/c-spinner@1.0.0-alpha.3
17+
- @chakra-ui/vue-utils@0.1.0-alpha.3
18+
- @chakra-ui/vue-system@0.1.0-alpha.3
19+
320
## 1.0.0-alpha.2
421

522
### Minor Changes

packages/c-button/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/c-button",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/types/index.d.ts",
@@ -29,17 +29,17 @@
2929
"watch:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch --incremental"
3030
},
3131
"dependencies": {
32-
"@chakra-ui/c-icon": "1.0.0-alpha.2",
33-
"@chakra-ui/c-spinner": "1.0.0-alpha.2",
32+
"@chakra-ui/c-icon": "1.0.0-alpha.3",
33+
"@chakra-ui/c-spinner": "1.0.0-alpha.3",
3434
"@chakra-ui/utils": "^1.5.0",
35-
"@chakra-ui/vue-system": "0.1.0-alpha.2",
36-
"@chakra-ui/vue-utils": "0.1.0-alpha.2"
35+
"@chakra-ui/vue-system": "0.1.0-alpha.3",
36+
"@chakra-ui/vue-utils": "0.1.0-alpha.3"
3737
},
3838
"devDependencies": {
3939
"vue": ">=3.0.5"
4040
},
4141
"peerDependencies": {
42-
"@chakra-ui/vue-system": "0.1.0-alpha.2",
42+
"@chakra-ui/vue-system": "0.1.0-alpha.3",
4343
"vue": "^3.0.5"
4444
}
4545
}

packages/c-close-button/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @chakra-ui/c-close-button
22

3+
## 0.1.0-alpha.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`576a7f1`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/576a7f12c179852ebfd9ee1905764357d7698dd6)]:
8+
- @chakra-ui/c-icon@1.0.0-alpha.3
9+
- @chakra-ui/vue-utils@0.1.0-alpha.3
10+
- @chakra-ui/vue-system@0.1.0-alpha.3
11+
312
## 0.1.0-alpha.2
413

514
### Minor Changes

packages/c-close-button/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@chakra-ui/c-close-button",
33
"description": "Chakra UI Vue | An accessible close button component for chakra ui vue component",
4-
"version": "0.1.0-alpha.2",
4+
"version": "0.1.0-alpha.3",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
77
"types": "dist/types/index.d.ts",
@@ -37,10 +37,10 @@
3737
"watch:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch --incremental"
3838
},
3939
"dependencies": {
40-
"@chakra-ui/c-icon": "1.0.0-alpha.2",
40+
"@chakra-ui/c-icon": "1.0.0-alpha.3",
4141
"@chakra-ui/styled-system": "^1.10.0",
42-
"@chakra-ui/vue-system": "0.1.0-alpha.2",
43-
"@chakra-ui/vue-utils": "0.1.0-alpha.2"
42+
"@chakra-ui/vue-system": "0.1.0-alpha.3",
43+
"@chakra-ui/vue-utils": "0.1.0-alpha.3"
4444
},
4545
"peerDependencies": {
4646
"vue": ">=3.0.5"

packages/c-code/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @chakra-ui/c-code
22

3+
## 1.0.0-alpha.3
4+
5+
### Minor Changes
6+
7+
- [#44](https://github.com/chakra-ui/chakra-ui-vue-next/pull/44) [`576a7f1`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/576a7f12c179852ebfd9ee1905764357d7698dd6) Thanks [@codebender828](https://github.com/codebender828)! - - Adds Modal component
8+
- Adds FocusLock composable, directive and component
9+
- Adds ScrollLock composable, directive and component
10+
- Improves TSX support
11+
12+
### Patch Changes
13+
14+
- Updated dependencies []:
15+
- @chakra-ui/vue-system@0.1.0-alpha.3
16+
317
## 1.0.0-alpha.2
418

519
### Patch Changes

0 commit comments

Comments
 (0)