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

Commit 68be74d

Browse files
committed
docs(a11y): add CCheckboxGroup accessiblity report
1 parent 0675836 commit 68be74d

File tree

5 files changed

+202
-5
lines changed

5 files changed

+202
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"mdx-vue": "^1.0.2",
8686
"mdx-vue-loader": "^1.0.2",
8787
"node-fetch": "^2.6.0",
88-
"node-sass": "^4.13.1",
88+
"node-sass": "^6.0.1",
8989
"nuxt": "2.14.6",
9090
"portal-vue": "^2.1.6",
9191
"prismjs": "^1.19.0",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* @see Docs https://vue.chakra-ui.com/button
88
* @see Source https://github.com/chakra-ui/chakra-ui-vue/blob/master/packages/chakra-ui-core/src/CButtonGroup/CButtonGroup.js
9-
* @see A11y https://github.com/chakra-ui/chakra-ui-vue/blob/master/packages/chakra-ui-core/src/CButton/accessibility.md
9+
* @see A11y https://github.com/chakra-ui/chakra-ui-vue/blob/master/packages/chakra-ui-core/src/CButtonGroup/accessibility.md
1010
* @see WAI-ARIA https://www.w3.org/TR/wai-aria-practices-1.2/#button
1111
*/
1212

packages/chakra-ui-core/src/CButtonGroup/accesibility.md renamed to packages/chakra-ui-core/src/CButtonGroup/accessibility.md

File renamed without changes.

packages/chakra-ui-core/src/CCheckbox/accessibility.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ Chakra UI supports two types of checkbox widgets:
88
- **Tri-state (Indeterminate)**: This type of checkbox supports an additional third state known as partially checked.
99

1010
#### Components
11-
`@chakra-ui/vue` exports 1 checkbox related components:
11+
`@chakra-ui/vue` exports 2 checkbox related components:
1212
- `CCheckbox`
13+
- `CCheckboxGroup`
1314

1415
### `CCheckbox` Keyboard Interaction
1516
- [x] **`Space`**: When the checkbox has focus, pressing the Space key changes the state of the checkbox.
@@ -20,5 +21,24 @@ Native HTML checkboxes are 100% accessible by default, so we use a `CControlBox`
2021

2122
The `CCheckbox` component composes `CControlBox`, a component we created to make it easy to style an element based on sibling inputs.
2223

24+
### `CCheckboxGroup` WAI-ARIA compliance
25+
- The `CCheckboxGroup` by default adds the `role="group"` attribute to itself.
26+
27+
> This should be implemented by the user
28+
- The `CCheckboxGroup` accessibility can be improved by adding an `aria-label` attribute.
29+
30+
```html
31+
<c-checkbox-group aria-label="Sandwich Vegetables">
32+
<c-checkbox size="sm" variant-color="red" default-is-checked>
33+
Lettuce
34+
</c-checkbox>
35+
<c-checkbox size="md" variant-color="green" default-is-checked>
36+
Tomato
37+
</c-checkbox>
38+
<c-checkbox size="lg" variant-color="pink" default-is-checked>
39+
Sprouts
40+
</c-checkbox>
41+
</c-checkbox-group>
42+
```
2343

2444
Noticed a bug or inconsistency with this component? [Open an issue](https://github.com/chakra-ui/chakra-ui-vue/issues/new/choose)

yarn.lock

Lines changed: 179 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9370,6 +9370,11 @@ chownr@^1.1.1, chownr@^1.1.2:
93709370
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
93719371
integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
93729372

9373+
chownr@^2.0.0:
9374+
version "2.0.0"
9375+
resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
9376+
integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
9377+
93739378
chrome-trace-event@^1.0.2:
93749379
version "1.0.2"
93759380
resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4"
@@ -10387,7 +10392,7 @@ cross-spawn@^5.0.1, cross-spawn@^5.1.0:
1038710392
shebang-command "^1.2.0"
1038810393
which "^1.2.9"
1038910394

10390-
cross-spawn@^7.0.0:
10395+
cross-spawn@^7.0.0, cross-spawn@^7.0.3:
1039110396
version "7.0.3"
1039210397
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
1039310398
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
@@ -14170,6 +14175,13 @@ hosted-git-info@^2.1.4, hosted-git-info@^2.7.1:
1417014175
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
1417114176
integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
1417214177

14178+
hosted-git-info@^4.0.1:
14179+
version "4.0.2"
14180+
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.0.2.tgz#5e425507eede4fea846b7262f0838456c4209961"
14181+
integrity sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==
14182+
dependencies:
14183+
lru-cache "^6.0.0"
14184+
1417314185
hsl-regex@^1.0.0:
1417414186
version "1.0.0"
1417514187
resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e"
@@ -14947,6 +14959,13 @@ is-color-stop@^1.0.0:
1494714959
rgb-regex "^1.0.1"
1494814960
rgba-regex "^1.0.0"
1494914961

14962+
is-core-module@^2.2.0:
14963+
version "2.5.0"
14964+
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.5.0.tgz#f754843617c70bfd29b7bd87327400cda5c18491"
14965+
integrity sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==
14966+
dependencies:
14967+
has "^1.0.3"
14968+
1495014969
is-data-descriptor@^0.1.4:
1495114970
version "0.1.4"
1495214971
resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
@@ -16982,7 +17001,7 @@ kind-of@^5.0.0:
1698217001
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
1698317002
integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==
1698417003

16985-
kind-of@^6.0.0, kind-of@^6.0.2:
17004+
kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3:
1698617005
version "6.0.3"
1698717006
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
1698817007
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
@@ -17990,6 +18009,24 @@ meow@^7.0.0:
1799018009
type-fest "^0.13.1"
1799118010
yargs-parser "^18.1.3"
1799218011

18012+
meow@^9.0.0:
18013+
version "9.0.0"
18014+
resolved "https://registry.yarnpkg.com/meow/-/meow-9.0.0.tgz#cd9510bc5cac9dee7d03c73ee1f9ad959f4ea364"
18015+
integrity sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==
18016+
dependencies:
18017+
"@types/minimist" "^1.2.0"
18018+
camelcase-keys "^6.2.2"
18019+
decamelize "^1.2.0"
18020+
decamelize-keys "^1.1.0"
18021+
hard-rejection "^2.1.0"
18022+
minimist-options "4.1.0"
18023+
normalize-package-data "^3.0.0"
18024+
read-pkg-up "^7.0.1"
18025+
redent "^3.0.0"
18026+
trim-newlines "^3.0.0"
18027+
type-fest "^0.18.0"
18028+
yargs-parser "^20.2.3"
18029+
1799318030
merge-descriptors@1.0.1:
1799418031
version "1.0.1"
1799518032
resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
@@ -18176,6 +18213,15 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
1817618213
dependencies:
1817718214
brace-expansion "^1.1.7"
1817818215

18216+
minimist-options@4.1.0:
18217+
version "4.1.0"
18218+
resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
18219+
integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==
18220+
dependencies:
18221+
arrify "^1.0.1"
18222+
is-plain-obj "^1.1.0"
18223+
kind-of "^6.0.3"
18224+
1817918225
minimist-options@^3.0.1:
1818018226
version "3.0.2"
1818118227
resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954"
@@ -18240,6 +18286,14 @@ minizlib@^1.2.1:
1824018286
dependencies:
1824118287
minipass "^2.9.0"
1824218288

18289+
minizlib@^2.1.1:
18290+
version "2.1.2"
18291+
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
18292+
integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
18293+
dependencies:
18294+
minipass "^3.0.0"
18295+
yallist "^4.0.0"
18296+
1824318297
mississippi@^3.0.0:
1824418298
version "3.0.0"
1824518299
resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022"
@@ -18305,6 +18359,11 @@ mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.4, mkdirp@~0.5.1:
1830518359
dependencies:
1830618360
minimist "^1.2.5"
1830718361

18362+
mkdirp@^1.0.3:
18363+
version "1.0.4"
18364+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
18365+
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
18366+
1830818367
modify-values@^1.0.0:
1830918368
version "1.0.1"
1831018369
resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022"
@@ -18543,6 +18602,22 @@ node-gyp@^5.0.2:
1854318602
tar "^4.4.12"
1854418603
which "^1.3.1"
1854518604

18605+
node-gyp@^7.1.0:
18606+
version "7.1.2"
18607+
resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-7.1.2.tgz#21a810aebb187120251c3bcec979af1587b188ae"
18608+
integrity sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==
18609+
dependencies:
18610+
env-paths "^2.2.0"
18611+
glob "^7.1.4"
18612+
graceful-fs "^4.2.3"
18613+
nopt "^5.0.0"
18614+
npmlog "^4.1.2"
18615+
request "^2.88.2"
18616+
rimraf "^3.0.2"
18617+
semver "^7.3.2"
18618+
tar "^6.0.2"
18619+
which "^2.0.2"
18620+
1854618621
node-html-parser@^1.2.20:
1854718622
version "1.2.20"
1854818623
resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-1.2.20.tgz#37e9ebc627dbe3ff446eea4ac93e3d254b7c6ee4"
@@ -18674,6 +18749,27 @@ node-sass@4, node-sass@^4.13.1:
1867418749
stdout-stream "^1.4.0"
1867518750
"true-case-path" "^1.0.2"
1867618751

18752+
node-sass@^6.0.1:
18753+
version "6.0.1"
18754+
resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-6.0.1.tgz#cad1ccd0ce63e35c7181f545d8b986f3a9a887fe"
18755+
integrity sha512-f+Rbqt92Ful9gX0cGtdYwjTrWAaGURgaK5rZCWOgCNyGWusFYHhbqCCBoFBeat+HKETOU02AyTxNhJV0YZf2jQ==
18756+
dependencies:
18757+
async-foreach "^0.1.3"
18758+
chalk "^1.1.1"
18759+
cross-spawn "^7.0.3"
18760+
gaze "^1.0.0"
18761+
get-stdin "^4.0.1"
18762+
glob "^7.0.3"
18763+
lodash "^4.17.15"
18764+
meow "^9.0.0"
18765+
nan "^2.13.2"
18766+
node-gyp "^7.1.0"
18767+
npmlog "^4.0.0"
18768+
request "^2.88.0"
18769+
sass-graph "2.2.5"
18770+
stdout-stream "^1.4.0"
18771+
"true-case-path" "^1.0.2"
18772+
1867718773
noop-logger@^0.1.1:
1867818774
version "0.1.1"
1867918775
resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2"
@@ -18701,6 +18797,13 @@ nopt@^4.0.1, nopt@~4.0.1:
1870118797
abbrev "1"
1870218798
osenv "^0.1.4"
1870318799

18800+
nopt@^5.0.0:
18801+
version "5.0.0"
18802+
resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88"
18803+
integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==
18804+
dependencies:
18805+
abbrev "1"
18806+
1870418807
normalize-package-data@^2.0.0, normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5, normalize-package-data@^2.4.0, normalize-package-data@^2.5.0:
1870518808
version "2.5.0"
1870618809
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
@@ -18711,6 +18814,16 @@ normalize-package-data@^2.0.0, normalize-package-data@^2.3.0, normalize-package-
1871118814
semver "2 || 3 || 4 || 5"
1871218815
validate-npm-package-license "^3.0.1"
1871318816

18817+
normalize-package-data@^3.0.0:
18818+
version "3.0.2"
18819+
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.2.tgz#cae5c410ae2434f9a6c1baa65d5bc3b9366c8699"
18820+
integrity sha512-6CdZocmfGaKnIHPVFhJJZ3GuR8SsLKvDANFp47Jmy51aKIr8akjAWTSxtpI+MBgBFdSMRyo4hMpDlT6dTffgZg==
18821+
dependencies:
18822+
hosted-git-info "^4.0.1"
18823+
resolve "^1.20.0"
18824+
semver "^7.3.4"
18825+
validate-npm-package-license "^3.0.1"
18826+
1871418827
normalize-path@^1.0.0:
1871518828
version "1.0.0"
1871618829
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379"
@@ -22027,6 +22140,14 @@ resolve@^1.1.7, resolve@^1.17.0, resolve@^1.2.0, resolve@^1.8.1:
2202722140
dependencies:
2202822141
path-parse "^1.0.6"
2202922142

22143+
resolve@^1.20.0:
22144+
version "1.20.0"
22145+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
22146+
integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
22147+
dependencies:
22148+
is-core-module "^2.2.0"
22149+
path-parse "^1.0.6"
22150+
2203022151
responselike@^1.0.2:
2203122152
version "1.0.2"
2203222153
resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
@@ -22382,6 +22503,16 @@ sanitize-filename@^1.6.2:
2238222503
dependencies:
2238322504
truncate-utf8-bytes "^1.0.0"
2238422505

22506+
sass-graph@2.2.5:
22507+
version "2.2.5"
22508+
resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.5.tgz#a981c87446b8319d96dce0671e487879bd24c2e8"
22509+
integrity sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==
22510+
dependencies:
22511+
glob "^7.0.0"
22512+
lodash "^4.0.0"
22513+
scss-tokenizer "^0.2.3"
22514+
yargs "^13.3.2"
22515+
2238522516
sass-graph@^2.2.4:
2238622517
version "2.2.4"
2238722518
resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49"
@@ -23757,6 +23888,18 @@ tar@^4.4.10, tar@^4.4.12, tar@^4.4.8:
2375723888
safe-buffer "^5.1.2"
2375823889
yallist "^3.0.3"
2375923890

23891+
tar@^6.0.2:
23892+
version "6.1.8"
23893+
resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.8.tgz#4fc50cfe56511c538ce15b71e05eebe66530cbd4"
23894+
integrity sha512-sb9b0cp855NbkMJcskdSYA7b11Q8JsX4qe4pyUAfHp+Y6jBjJeek2ZVlwEfWayshEIwlIzXx0Fain3QG9JPm2A==
23895+
dependencies:
23896+
chownr "^2.0.0"
23897+
fs-minipass "^2.0.0"
23898+
minipass "^3.0.0"
23899+
minizlib "^2.1.1"
23900+
mkdirp "^1.0.3"
23901+
yallist "^4.0.0"
23902+
2376023903
telejson@^3.2.0:
2376123904
version "3.3.0"
2376223905
resolved "https://registry.yarnpkg.com/telejson/-/telejson-3.3.0.tgz#6d814f3c0d254d5c4770085aad063e266b56ad03"
@@ -24328,6 +24471,11 @@ type-fest@^0.13.1:
2432824471
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934"
2432924472
integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==
2433024473

24474+
type-fest@^0.18.0:
24475+
version "0.18.1"
24476+
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f"
24477+
integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==
24478+
2433124479
type-fest@^0.3.0:
2433224480
version "0.3.1"
2433324481
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1"
@@ -26049,6 +26197,14 @@ yargs-parser@^10.0.0:
2604926197
dependencies:
2605026198
camelcase "^4.1.0"
2605126199

26200+
yargs-parser@^13.1.2:
26201+
version "13.1.2"
26202+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
26203+
integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
26204+
dependencies:
26205+
camelcase "^5.0.0"
26206+
decamelize "^1.2.0"
26207+
2605226208
yargs-parser@^15.0.1:
2605326209
version "15.0.1"
2605426210
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.1.tgz#54786af40b820dcb2fb8025b11b4d659d76323b3"
@@ -26081,6 +26237,11 @@ yargs-parser@^2.4.0:
2608126237
camelcase "^3.0.0"
2608226238
lodash.assign "^4.0.6"
2608326239

26240+
yargs-parser@^20.2.3:
26241+
version "20.2.9"
26242+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
26243+
integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
26244+
2608426245
yargs-parser@^5.0.0:
2608526246
version "5.0.0"
2608626247
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a"
@@ -26131,6 +26292,22 @@ yargs@^11.0.0:
2613126292
y18n "^3.2.1"
2613226293
yargs-parser "^9.0.2"
2613326294

26295+
yargs@^13.3.2:
26296+
version "13.3.2"
26297+
resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd"
26298+
integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==
26299+
dependencies:
26300+
cliui "^5.0.0"
26301+
find-up "^3.0.0"
26302+
get-caller-file "^2.0.1"
26303+
require-directory "^2.1.1"
26304+
require-main-filename "^2.0.0"
26305+
set-blocking "^2.0.0"
26306+
string-width "^3.0.0"
26307+
which-module "^2.0.0"
26308+
y18n "^4.0.0"
26309+
yargs-parser "^13.1.2"
26310+
2613426311
yargs@^14.2.2, yargs@^14.2.3:
2613526312
version "14.2.3"
2613626313
resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.3.tgz#1a1c3edced1afb2a2fea33604bc6d1d8d688a414"

0 commit comments

Comments
 (0)