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

Commit 1c9afcc

Browse files
Merge pull request #456 from chakra-ui/develop
chore: release candidate `@chakra-ui/vue@0.9.2` 🎉
2 parents 1a24aa8 + be70c2a commit 1c9afcc

File tree

23 files changed

+57
-23
lines changed

23 files changed

+57
-23
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,15 @@
256256
"code",
257257
"test"
258258
]
259+
},
260+
{
261+
"login": "ejirocodes",
262+
"name": "Ejiro Asiuwhu",
263+
"avatar_url": "https://avatars.githubusercontent.com/u/45228014?v=4",
264+
"profile": "http://linkedin.com/in/ejiro-asiuwhu",
265+
"contributions": [
266+
"doc"
267+
]
259268
}
260269
],
261270
"contributorsPerLine": 7,

.changeset/tall-forks-do.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+
'@chakra-ui/nuxt': patch
4+
'chakra-ui-docs': patch
5+
---

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,12 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
218218
<td align="center"><a href="https://github.com/odanado"><img src="https://avatars.githubusercontent.com/u/6040962?v=4?s=50" width="50px;" alt=""/><br /><sub><b>odanado</b></sub></a><br /><a href="https://github.com/chakra-ui/chakra-ui-vue/commits?author=odanado" title="Code">💻</a> <a href="#tool-odanado" title="Tools">🔧</a></td>
219219
</tr>
220220
<tr>
221+
<td align="center"><a href="https://github.com/IHIutch"><img src="https://avatars.githubusercontent.com/u/20825047?v=4?s=50" width="50px;" alt=""/><br /><sub><b>Jonathan Hutchison</b></sub></a><br /><a href="https://github.com/chakra-ui/chakra-ui-vue/commits?author=IHIutch" title="Code">💻</a> <a href="https://github.com/chakra-ui/chakra-ui-vue/issues?q=author%3AIHIutch" title="Bug reports">🐛</a> <a href="#ideas-IHIutch" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/chakra-ui/chakra-ui-vue/commits?author=IHIutch" title="Tests">⚠️</a> <a href="https://github.com/chakra-ui/chakra-ui-vue/commits?author=IHIutch" title="Documentation">📖</a></td>
221222
<td align="center"><a href="https://jt.houk.space/"><img src="https://avatars.githubusercontent.com/u/23695312?v=4?s=50" width="50px;" alt=""/><br /><sub><b>JT Houk</b></sub></a><br /><a href="https://github.com/chakra-ui/chakra-ui-vue/commits?author=HoukasaurusRex" title="Documentation">📖</a> <a href="#platform-HoukasaurusRex" title="Packaging/porting to new platform">📦</a></td>
222223
<td align="center"><a href="https://github.com/vincentpalma"><img src="https://avatars.githubusercontent.com/u/10133632?v=4?s=50" width="50px;" alt=""/><br /><sub><b>Vincent Palma</b></sub></a><br /><a href="https://github.com/chakra-ui/chakra-ui-vue/commits?author=vincentpalma" title="Documentation">📖</a></td>
223224
<td align="center"><a href="https://github.com/MaySoMusician"><img src="https://avatars.githubusercontent.com/u/34566290?v=4?s=50" width="50px;" alt=""/><br /><sub><b>MaySoMusician</b></sub></a><br /><a href="https://github.com/chakra-ui/chakra-ui-vue/commits?author=MaySoMusician" title="Code">💻</a></td>
224225
<td align="center"><a href="https://github.com/MWFIAE"><img src="https://avatars.githubusercontent.com/u/6072971?v=4?s=50" width="50px;" alt=""/><br /><sub><b>Martin</b></sub></a><br /><a href="https://github.com/chakra-ui/chakra-ui-vue/commits?author=MWFIAE" title="Code">💻</a> <a href="https://github.com/chakra-ui/chakra-ui-vue/commits?author=MWFIAE" title="Tests">⚠️</a></td>
226+
<td align="center"><a href="http://linkedin.com/in/ejiro-asiuwhu"><img src="https://avatars.githubusercontent.com/u/45228014?v=4?s=50" width="50px;" alt=""/><br /><sub><b>Ejiro Asiuwhu</b></sub></a><br /><a href="https://github.com/chakra-ui/chakra-ui-vue/commits?author=ejirocodes" title="Documentation">📖</a></td>
225227
</tr>
226228
</table>
227229

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const CButton = {
105105
props: this.$props,
106106
attrs: {
107107
type: this.type,
108-
tabIndex: 0,
108+
tabindex: 0,
109109
disabled: this.isDisabled || this.isLoading,
110110
'aria-disabled': this.isDisabled || this.isLoading,
111111
dataActive: this.isActive ? 'true' : undefined,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ const CEditablePreview = {
225225
opacity: !this.hasValue ? 0.6 : undefined
226226
}
227227
},
228-
tabIndex () {
228+
tabindex () {
229229
const { isEditing, isDisabled, isPreviewFocusable } = this.context
230230
if ((!isEditing || !isDisabled) && isPreviewFocusable) {
231231
return 0
@@ -243,7 +243,7 @@ const CEditablePreview = {
243243
class: [this.className],
244244
attrs: {
245245
'aria-disabled': isDisabled,
246-
tabIndex: this.tabIndex,
246+
tabindex: this.tabindex,
247247
...this.computedAttrs
248248
},
249249
on: {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const CLink = {
6363
...this.isRouterLink && { to: this.to }
6464
},
6565
attrs: {
66-
tabIndex: this.isDisabled ? -1 : undefined,
66+
tabindex: this.isDisabled ? -1 : undefined,
6767
'aria-disabled': this.isDisabled,
6868
...this.externalAttrs,
6969
...this.computedAttrs

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ const CMenuList = {
415415
id: menuId,
416416
role: 'menu',
417417
'aria-labelledby': buttonId,
418-
tabIndex: -1,
418+
tabindex: -1,
419419
'data-chakra-component': 'CMenuButton'
420420
},
421421
on: {
@@ -484,7 +484,7 @@ const CMenuItem = {
484484
...this.menuItemStyles({ theme: this.theme, colorMode: this.colorMode }),
485485
...this.$attrs,
486486
role: this.role,
487-
tabIndex: -1,
487+
tabindex: -1,
488488
disabled: this.isDisabled,
489489
'aria-disabled': this.isDisabled,
490490
'data-chakra-component': 'CMenuItem'

packages/chakra-ui-core/src/CMenu/CMenuOption.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const CMenuItemOption = {
113113
alignItems: 'center',
114114
...this.$attrs,
115115
role: this.role,
116-
tabIndex: -1,
116+
tabindex: -1,
117117
'aria-checked': this.isChecked,
118118
disabled: this.isDisabled,
119119
'aria-disabled': this.isDisabled,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ const CModalContent = {
445445
attrs: {
446446
role: 'dialog',
447447
'aria-modal': 'true',
448-
tabIndex: -1,
448+
tabindex: -1,
449449
id: contentId,
450450
...(addAriaDescribedby && { 'aria-describedby': bodyId }),
451451
...(addAriaLabelledby && { 'aria-labelledby': headerId }),

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ const CPopoverContent = {
497497
_focus: { outline: 0, shadow: 'outline' },
498498
...this.$attrs,
499499
id: popoverId,
500-
tabIndex: -1,
500+
tabindex: -1,
501501
'aria-labelledby': this.headerId,
502502
'aria-describedby': this.bodyId,
503503
'aria-label': this.ariaLabel,

0 commit comments

Comments
 (0)