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

Commit 712c034

Browse files
authored
Merge branch 'develop' into bug/504-responsive-styles-breaking
2 parents 82a9f12 + c4307d6 commit 712c034

File tree

24 files changed

+393
-60
lines changed

24 files changed

+393
-60
lines changed

.changeset/dry-rocks-thank.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/dull-books-judge.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@chakra-ui/vue": patch
3+
---
4+
5+
Include CGridItem in type definitions

.changeset/pre.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

.changeset/real-cycles-hammer.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@chakra-ui/vue": patch
3+
"@chakra-ui/nuxt": patch
4+
---
5+
6+
fix(select): prevent duplicated ID on wrapper + input

.changeset/smooth-cups-kiss.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@chakra-ui/vue": minor
3+
"@chakra-ui/nuxt": minor
4+
---
5+
6+
feat(types): add type exports for color mode & theme providers

examples/nuxt-js/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
# nuxt-js
22

3-
## 1.0.1-next.0
3+
## 1.0.1
4+
45
### Patch Changes
56

7+
- [`5c5a3006`](https://github.com/chakra-ui/chakra-ui-vue/commit/5c5a3006d8286cf0cfcd14bc867d64e8877fb1d7) [#480](https://github.com/chakra-ui/chakra-ui-vue/pull/480) Thanks [@codebender828](https://github.com/codebender828)! - Fix regression in theme resolution for @chakra-ui/nuxt
8+
9+
- Updated dependencies [[`5c5a3006`](https://github.com/chakra-ui/chakra-ui-vue/commit/5c5a3006d8286cf0cfcd14bc867d64e8877fb1d7)]:
10+
- @chakra-ui/nuxt@0.4.2
11+
12+
## 1.0.1-next.0
613

14+
### Patch Changes
715

816
- [`5c5a3006`](https://github.com/chakra-ui/chakra-ui-vue/commit/5c5a3006d8286cf0cfcd14bc867d64e8877fb1d7) [#480](https://github.com/chakra-ui/chakra-ui-vue/pull/480) Thanks [@codebender828](https://github.com/codebender828)! - Fix regression in theme resolution for @chakra-ui/nuxt
917

examples/nuxt-js/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nuxt-js",
3-
"version": "1.0.1-next.0",
3+
"version": "1.0.1",
44
"private": true,
55
"scripts": {
66
"dev": "nuxt",
@@ -9,7 +9,7 @@
99
"generate": "nuxt generate"
1010
},
1111
"dependencies": {
12-
"@chakra-ui/nuxt": "^0.4.2-next.0",
12+
"@chakra-ui/nuxt": "^0.4.2",
1313
"@nuxtjs/emotion": "^0.1.0",
1414
"core-js": "^3.15.1",
1515
"nuxt": "^2.15.7"

packages/chakra-ui-core/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## 0.10.2
4+
5+
### Patch Changes
6+
7+
- [`5c5a3006`](https://github.com/chakra-ui/chakra-ui-vue/commit/5c5a3006d8286cf0cfcd14bc867d64e8877fb1d7) [#480](https://github.com/chakra-ui/chakra-ui-vue/pull/480) Thanks [@codebender828](https://github.com/codebender828)! - Fix regression in theme resolution for @chakra-ui/nuxt
8+
9+
- Updated dependencies [[`5c5a3006`](https://github.com/chakra-ui/chakra-ui-vue/commit/5c5a3006d8286cf0cfcd14bc867d64e8877fb1d7)]:
10+
- @chakra-ui/theme-vue@0.3.2
11+
312
## 0.10.2-next.0
413

514
### Patch Changes

packages/chakra-ui-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chakra-ui/vue",
3-
"version": "0.10.2-next.0",
3+
"version": "0.10.2",
44
"description": "Build Accessible and Responsive Vue.js websites and applications with speed ⚡️",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

packages/chakra-ui-core/src/CInputGroup/CInputGroup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const CInputGroup = {
5353
const clone = cloneVNode(vnode, h)
5454
return h(clone.componentOptions.Ctor, {
5555
...clone.data,
56-
...(clone.componentOptions.listeners || {}),
56+
on: (clone.componentOptions.listeners || {}),
5757
props: {
5858
...(clone.data.props || {}),
5959
...clone.componentOptions.propsData,

0 commit comments

Comments
 (0)