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

Commit c8c854d

Browse files
Merge pull request #75 from chakra-ui/changeset-release/master
chore(release): version packages and publish (alpha)
2 parents 509b5c6 + 750e606 commit c8c854d

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

+7-1
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

+14
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

+2-2
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

+16
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

+5-5
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

+17
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

+6-6
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

+9
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

+4-4
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

+14
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

packages/c-code/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@chakra-ui/c-code",
33
"description": "Chakra UI Vue | Code is a component used to display inline code. It is composed from the Box component with a font family of mono for displaying code",
4-
"version": "1.0.0-alpha.2",
4+
"version": "1.0.0-alpha.3",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
77
"types": "dist/types/index.d.ts",
@@ -38,13 +38,13 @@
3838
},
3939
"dependencies": {
4040
"@chakra-ui/utils": "^1.5.0",
41-
"@chakra-ui/vue-system": "0.1.0-alpha.2"
41+
"@chakra-ui/vue-system": "0.1.0-alpha.3"
4242
},
4343
"devDependencies": {
4444
"vue": ">=3.0.5"
4545
},
4646
"peerDependencies": {
47-
"@chakra-ui/vue-system": "0.1.0-alpha.2",
47+
"@chakra-ui/vue-system": "0.1.0-alpha.3",
4848
"vue": "^3.0.5"
4949
},
5050
"contributors": [

packages/c-flex/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @chakra-ui/c-flex
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/vue-utils@0.1.0-alpha.3
16+
- @chakra-ui/vue-system@0.1.0-alpha.3
17+
318
## 1.0.0-alpha.2
419

520
### Minor Changes

packages/c-flex/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@chakra-ui/c-flex",
33
"description": "Chakra UI Vue | C-flex component component",
4-
"version": "1.0.0-alpha.2",
4+
"version": "1.0.0-alpha.3",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
77
"types": "dist/types/index.d.ts",
@@ -37,15 +37,15 @@
3737
"watch:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch"
3838
},
3939
"dependencies": {
40-
"@chakra-ui/vue-utils": "0.1.0-alpha.2",
40+
"@chakra-ui/vue-utils": "0.1.0-alpha.3",
4141
"csstype": "^3.0.5"
4242
},
4343
"devDependencies": {
44-
"@chakra-ui/vue-system": "0.1.0-alpha.2",
44+
"@chakra-ui/vue-system": "0.1.0-alpha.3",
4545
"vue": ">=3.0.5"
4646
},
4747
"peerDependencies": {
48-
"@chakra-ui/vue-system": "0.1.0-alpha.2",
48+
"@chakra-ui/vue-system": "0.1.0-alpha.3",
4949
"csstype": "^3.0.5",
5050
"vue": "^3.0.5"
5151
}

packages/c-focus-lock/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# @chakra-ui/c-focus-lock
2+
3+
## 0.1.0-alpha.1
4+
### Minor Changes
5+
6+
7+
8+
- [#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
9+
- Adds FocusLock composable, directive and component
10+
- Adds ScrollLock composable, directive and component
11+
- Improves TSX support
12+
13+
### Patch Changes
14+
15+
- Updated dependencies []:
16+
- @chakra-ui/vue-system@0.1.0-alpha.3

packages/c-focus-lock/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@chakra-ui/c-focus-lock",
33
"description": "Chakra UI Vue | A component to trap focus within a dom element it is useful for modals dialogs and popovers component",
4-
"version": "0.0.1-alpha.0",
4+
"version": "0.1.0-alpha.1",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
77
"types": "dist/types/index.d.ts",
@@ -38,7 +38,7 @@
3838
},
3939
"dependencies": {
4040
"@chakra-ui/utils": "^1.5.0",
41-
"@chakra-ui/vue-system": "0.1.0-alpha.2",
41+
"@chakra-ui/vue-system": "0.1.0-alpha.3",
4242
"focus-trap": "^6.3.0"
4343
},
4444
"peerDependencies": {

packages/c-icon/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @chakra-ui/c-icon
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
### Minor Changes

packages/c-icon/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@chakra-ui/c-icon",
33
"description": "Chakra UI Vue | A component to display icons in the browser component",
4-
"version": "1.0.0-alpha.2",
4+
"version": "1.0.0-alpha.3",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
77
"types": "dist/types/index.d.ts",
@@ -33,13 +33,13 @@
3333
"watch:types": "cross-env tsc --emitDeclarationOnly --declaration --declarationDir dist/types --watch --incremental"
3434
},
3535
"dependencies": {
36-
"@chakra-ui/vue-system": "0.1.0-alpha.2"
36+
"@chakra-ui/vue-system": "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-modal/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# @chakra-ui/c-modal
22

3+
## 1.1.0-alpha.2
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-motion@0.1.0-alpha.2
16+
- @chakra-ui/vue-utils@0.1.0-alpha.3
17+
- @chakra-ui/vue-composables@0.1.0-alpha.2
18+
- @chakra-ui/vue-system@0.1.0-alpha.3
19+
320
## 1.1.0-alpha.1
421

522
### Minor Changes

0 commit comments

Comments
 (0)