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

Commit 0cb9cab

Browse files
Merge pull request #85 from chakra-ui/changeset-release/master
chore(release): version packages and publish (alpha)
2 parents 9c4c04a + 8e66659 commit 0cb9cab

Some content is hidden

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

61 files changed

+443
-99
lines changed

.changeset/pre.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
"@chakra-ui/c-motion": "0.1.0-alpha.1",
3232
"@chakra-ui/c-scroll-lock": "0.0.1-alpha.0",
3333
"@chakra-ui/vue-a11y": "0.1.0-alpha.1",
34-
"@chakra-ui/vue-composables": "0.1.0-alpha.1"
34+
"@chakra-ui/vue-composables": "0.1.0-alpha.1",
35+
"@chakra-ui/c-breadcrumb": "1.0.0-alpha.4"
3536
},
3637
"changesets": [
3738
"chilly-tables-care",
@@ -40,6 +41,7 @@
4041
"khaki-hounds-hunt",
4142
"kind-tools-camp",
4243
"neat-rules-cry",
44+
"old-insects-exist",
4345
"orange-camels-doubt",
4446
"proud-apples-compare",
4547
"quiet-bananas-develop",

packages/c-accordion/CHANGELOG.md

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

3+
## 0.1.0-alpha.5
4+
5+
### Minor Changes
6+
7+
- [#83](https://github.com/chakra-ui/chakra-ui-vue-next/pull/83) [`ac28d42`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/ac28d4217c3afb83383801316876f982163c5f5c) Thanks [@codebender828](https://github.com/codebender828)! - Create breadcrumb and collapse components
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`ac28d42`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/ac28d4217c3afb83383801316876f982163c5f5c)]:
12+
- @chakra-ui/vue-system@0.1.0-alpha.5
13+
314
## 0.1.0-alpha.4
415

516
### Patch 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.4",
3+
"version": "0.1.0-alpha.5",
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.4"
28+
"@chakra-ui/vue-system": "0.1.0-alpha.5"
2929
}
3030
}

packages/c-alert/CHANGELOG.md

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

3+
## 1.0.0-alpha.5
4+
5+
### Minor Changes
6+
7+
- [#83](https://github.com/chakra-ui/chakra-ui-vue-next/pull/83) [`ac28d42`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/ac28d4217c3afb83383801316876f982163c5f5c) Thanks [@codebender828](https://github.com/codebender828)! - Create breadcrumb and collapse components
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`ac28d42`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/ac28d4217c3afb83383801316876f982163c5f5c)]:
12+
- @chakra-ui/c-icon@1.0.0-alpha.5
13+
- @chakra-ui/vue-system@0.1.0-alpha.5
14+
- @chakra-ui/vue-utils@0.1.0-alpha.5
15+
316
## 1.0.0-alpha.4
417

518
### Patch Changes

packages/c-alert/package.json

Lines changed: 4 additions & 4 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.4",
3+
"version": "1.0.0-alpha.5",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/types/index.d.ts",
@@ -29,9 +29,9 @@
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.4",
33-
"@chakra-ui/vue-system": "0.1.0-alpha.4",
34-
"@chakra-ui/vue-utils": "0.1.0-alpha.4"
32+
"@chakra-ui/c-icon": "1.0.0-alpha.5",
33+
"@chakra-ui/vue-system": "0.1.0-alpha.5",
34+
"@chakra-ui/vue-utils": "0.1.0-alpha.5"
3535
},
3636
"devDependencies": {
3737
"vue": "^3.1.4"

packages/c-breadcrumb/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# @chakra-ui/c-breadcrumb
2+
3+
## 1.0.0-alpha.5
4+
### Minor Changes
5+
6+
7+
8+
- [#83](https://github.com/chakra-ui/chakra-ui-vue-next/pull/83) [`ac28d42`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/ac28d4217c3afb83383801316876f982163c5f5c) Thanks [@codebender828](https://github.com/codebender828)! - Create breadcrumb and collapse components
9+
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [[`ac28d42`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/ac28d4217c3afb83383801316876f982163c5f5c)]:
14+
- @chakra-ui/vue-system@0.1.0-alpha.5
15+
- @chakra-ui/vue-utils@0.1.0-alpha.5

packages/c-breadcrumb/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@chakra-ui/c-breadcrumb",
33
"description": "Chakra UI Vue | Breadcrumbs help users visualize their current location in relation to the rest of the website or application by showing the hierarchy of pages component",
4-
"version": "1.0.0-alpha.4",
4+
"version": "1.0.0-alpha.5",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
77
"types": "dist/types/index.d.ts",
@@ -38,8 +38,8 @@
3838
},
3939
"dependencies": {
4040
"@chakra-ui/styled-system": "^1.10.0",
41-
"@chakra-ui/vue-system": "0.1.0-alpha.4",
42-
"@chakra-ui/vue-utils": "0.1.0-alpha.4"
41+
"@chakra-ui/vue-system": "0.1.0-alpha.5",
42+
"@chakra-ui/vue-utils": "0.1.0-alpha.5"
4343
},
4444
"peerDependencies": {
4545
"vue": "^3.1.4"

packages/c-button/CHANGELOG.md

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

3+
## 1.0.0-alpha.5
4+
5+
### Minor Changes
6+
7+
- [#83](https://github.com/chakra-ui/chakra-ui-vue-next/pull/83) [`ac28d42`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/ac28d4217c3afb83383801316876f982163c5f5c) Thanks [@codebender828](https://github.com/codebender828)! - Create breadcrumb and collapse components
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`ac28d42`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/ac28d4217c3afb83383801316876f982163c5f5c)]:
12+
- @chakra-ui/c-icon@1.0.0-alpha.5
13+
- @chakra-ui/c-spinner@1.0.0-alpha.5
14+
- @chakra-ui/vue-system@0.1.0-alpha.5
15+
- @chakra-ui/vue-utils@0.1.0-alpha.5
16+
317
## 1.0.0-alpha.4
418

519
### Patch Changes

packages/c-button/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-button",
3-
"version": "1.0.0-alpha.4",
3+
"version": "1.0.0-alpha.5",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"types": "dist/types/index.d.ts",
@@ -29,11 +29,11 @@
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.4",
33-
"@chakra-ui/c-spinner": "1.0.0-alpha.4",
32+
"@chakra-ui/c-icon": "1.0.0-alpha.5",
33+
"@chakra-ui/c-spinner": "1.0.0-alpha.5",
3434
"@chakra-ui/utils": "^1.8.0",
35-
"@chakra-ui/vue-system": "0.1.0-alpha.4",
36-
"@chakra-ui/vue-utils": "0.1.0-alpha.4"
35+
"@chakra-ui/vue-system": "0.1.0-alpha.5",
36+
"@chakra-ui/vue-utils": "0.1.0-alpha.5"
3737
},
3838
"devDependencies": {
3939
"vue": "^3.1.4"

packages/c-close-button/CHANGELOG.md

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

3+
## 0.1.0-alpha.5
4+
5+
### Minor Changes
6+
7+
- [#83](https://github.com/chakra-ui/chakra-ui-vue-next/pull/83) [`ac28d42`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/ac28d4217c3afb83383801316876f982163c5f5c) Thanks [@codebender828](https://github.com/codebender828)! - Create breadcrumb and collapse components
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`ac28d42`](https://github.com/chakra-ui/chakra-ui-vue-next/commit/ac28d4217c3afb83383801316876f982163c5f5c)]:
12+
- @chakra-ui/c-icon@1.0.0-alpha.5
13+
- @chakra-ui/vue-system@0.1.0-alpha.5
14+
- @chakra-ui/vue-utils@0.1.0-alpha.5
15+
316
## 0.1.0-alpha.4
417

518
### Patch Changes

0 commit comments

Comments
 (0)