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

fix: autoSelect in CMenu #544

Merged
merged 4 commits into from
Jan 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/empty-dryers-rescue.md

This file was deleted.

11 changes: 11 additions & 0 deletions examples/nuxt-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# nuxt-js

## 1.2.0

### Minor Changes

- [`442faab6`](https://github.com/chakra-ui/chakra-ui-vue/commit/442faab62d2e8dc5cebb786625df6ac914232c49) [#540](https://github.com/chakra-ui/chakra-ui-vue/pull/540) Thanks [@codebender828](https://github.com/codebender828)! - fix: Include all position values in CToast, fix: import in custom theme code snippet

### Patch Changes

- Updated dependencies [[`442faab6`](https://github.com/chakra-ui/chakra-ui-vue/commit/442faab62d2e8dc5cebb786625df6ac914232c49)]:
- @chakra-ui/[email protected]

## 1.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions examples/nuxt-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nuxt-js",
"version": "1.1.0",
"version": "1.2.0",
"private": true,
"scripts": {
"dev": "nuxt",
Expand All @@ -9,7 +9,7 @@
"generate": "nuxt generate"
},
"dependencies": {
"@chakra-ui/nuxt": "^0.5.0",
"@chakra-ui/nuxt": "^0.6.0",
"@nuxtjs/emotion": "^0.1.0",
"core-js": "^3.15.1",
"nuxt": "^2.15.7"
Expand Down
11 changes: 11 additions & 0 deletions packages/chakra-ui-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## 0.12.0

### Minor Changes

- [`442faab6`](https://github.com/chakra-ui/chakra-ui-vue/commit/442faab62d2e8dc5cebb786625df6ac914232c49) [#540](https://github.com/chakra-ui/chakra-ui-vue/pull/540) Thanks [@codebender828](https://github.com/codebender828)! - fix: Include all position values in CToast, fix: import in custom theme code snippet

### Patch Changes

- Updated dependencies [[`442faab6`](https://github.com/chakra-ui/chakra-ui-vue/commit/442faab62d2e8dc5cebb786625df6ac914232c49)]:
- @chakra-ui/[email protected]

## 0.11.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/chakra-ui-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chakra-ui/vue",
"version": "0.11.0",
"version": "0.12.0",
"description": "Build Accessible and Responsive Vue.js websites and applications with speed ⚡️",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down Expand Up @@ -37,7 +37,7 @@
},
"dependencies": {
"@chakra-ui/styled-system": "^1.15.0",
"@chakra-ui/theme-vue": "^0.4.0",
"@chakra-ui/theme-vue": "^0.5.0",
"@popperjs/core": "^2.4.0",
"animejs": "^3.1.0",
"aria-hidden": "^1.1.1",
Expand Down
1 change: 1 addition & 0 deletions packages/chakra-ui-core/src/CMenu/CMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ const CMenu = {
focusAtIndex: this.focusAtIndex,
focusOnLastItem: this.focusOnLastItem,
focusOnFirstItem: this.focusOnFirstItem,
openMenu: this.openMenu,
closeMenu: this.closeMenu,
autoSelect: this.autoSelect,
closeOnSelect: this.closeOnSelect,
Expand Down
12 changes: 12 additions & 0 deletions packages/chakra-ui-nuxt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## 0.6.0

### Minor Changes

- [`442faab6`](https://github.com/chakra-ui/chakra-ui-vue/commit/442faab62d2e8dc5cebb786625df6ac914232c49) [#540](https://github.com/chakra-ui/chakra-ui-vue/pull/540) Thanks [@codebender828](https://github.com/codebender828)! - fix: Include all position values in CToast, fix: import in custom theme code snippet

### Patch Changes

- Updated dependencies [[`442faab6`](https://github.com/chakra-ui/chakra-ui-vue/commit/442faab62d2e8dc5cebb786625df6ac914232c49)]:
- @chakra-ui/[email protected]
- @chakra-ui/[email protected]

## 0.5.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/chakra-ui-nuxt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chakra-ui/nuxt",
"version": "0.5.0",
"version": "0.6.0",
"description": "Chakra UI Module for Nuxt.js",
"repository": "https://github.com/chakra-ui/chakra-ui-vue",
"license": "MIT",
Expand All @@ -19,8 +19,8 @@
"test": "jest"
},
"dependencies": {
"@chakra-ui/theme-vue": "^0.4.0",
"@chakra-ui/vue": "^0.11.0",
"@chakra-ui/theme-vue": "^0.5.0",
"@chakra-ui/vue": "^0.12.0",
"@emotion/css": "^11.0.0",
"chakra-loader": "latest"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/chakra-ui-theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.5.0

### Minor Changes

- [`442faab6`](https://github.com/chakra-ui/chakra-ui-vue/commit/442faab62d2e8dc5cebb786625df6ac914232c49) [#540](https://github.com/chakra-ui/chakra-ui-vue/pull/540) Thanks [@codebender828](https://github.com/codebender828)! - fix: Include all position values in CToast, fix: import in custom theme code snippet

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/chakra-ui-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chakra-ui/theme-vue",
"version": "0.4.0",
"version": "0.5.0",
"description": "Default theme for @chakra-ui/vue default theme object",
"author": {
"name": "Jonathan Bakebwa",
Expand Down
13 changes: 13 additions & 0 deletions website/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## 0.9.0

### Minor Changes

- [`442faab6`](https://github.com/chakra-ui/chakra-ui-vue/commit/442faab62d2e8dc5cebb786625df6ac914232c49) [#540](https://github.com/chakra-ui/chakra-ui-vue/pull/540) Thanks [@codebender828](https://github.com/codebender828)! - fix: Include all position values in CToast, fix: import in custom theme code snippet

### Patch Changes

- Updated dependencies [[`442faab6`](https://github.com/chakra-ui/chakra-ui-vue/commit/442faab62d2e8dc5cebb786625df6ac914232c49)]:
- @chakra-ui/[email protected]
- @chakra-ui/[email protected]
- @chakra-ui/[email protected]

## 0.8.0

### Minor Changes
Expand Down
8 changes: 4 additions & 4 deletions website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chakra-ui-docs",
"version": "0.8.0",
"version": "0.9.0",
"description": "Chakra UI Vue documentation site",
"private": true,
"scripts": {
Expand All @@ -26,9 +26,9 @@
}
},
"dependencies": {
"@chakra-ui/nuxt": "^0.5.0",
"@chakra-ui/theme-vue": "^0.4.0",
"@chakra-ui/vue": "^0.11.0",
"@chakra-ui/nuxt": "^0.6.0",
"@chakra-ui/theme-vue": "^0.5.0",
"@chakra-ui/vue": "^0.12.0",
"@emotion/css": "^11.0.0",
"@mdx-js/vue-loader": "^1.6.1",
"@nuxtjs/dotenv": "^1.4.0",
Expand Down