Skip to content

Commit ce12e97

Browse files
authored
Merge branch 'dev' into feat-code-size-improvements
2 parents d68c311 + a837fc0 commit ce12e97

File tree

4 files changed

+122
-48
lines changed

4 files changed

+122
-48
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@
121121
"codesandbox": "^2.1.14",
122122
"core-js": ">=2.6.5 <3.0.0",
123123
"cross-env": "^7.0.2",
124-
"eslint": "^6.8.0",
124+
"eslint": "^7.0.0",
125125
"eslint-config-prettier": "^6.11.0",
126126
"eslint-config-standard": "^14.1.1",
127127
"eslint-config-vue": "^2.0.2",
128128
"eslint-plugin-import": "^2.20.2",
129-
"eslint-plugin-jest": "^23.9.0",
129+
"eslint-plugin-jest": "^23.10.0",
130130
"eslint-plugin-markdown": "^1.0.2",
131131
"eslint-plugin-node": "^11.1.0",
132132
"eslint-plugin-prettier": "^3.1.3",

src/components/layout/README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -450,8 +450,15 @@ each tier as needed. See the example below for a better idea of how it all works
450450

451451
Use flexbox alignment utilities to vertically and horizontally align columns.
452452

453+
**Note:** Internet Explorer 11 does not support vertical alignment of flex items when the flex
454+
container has a `min-height` as shown below.
455+
[See Flexbugs #3 for more details](https://github.com/philipwalton/flexbugs#flexbug-3).
456+
453457
### Vertical alignment
454458

459+
For vertical alignment of all grid cells in a row, use the `align-v` prop on `<b-row>`. Possible
460+
values are `'start'`, `'center'`, `'end'`, `'baseline'`, and `'stretch'`:
461+
455462
```html
456463
<b-container class="bv-example-row bv-example-row-flex-cols">
457464
<b-row align-v="start">
@@ -471,25 +478,47 @@ Use flexbox alignment utilities to vertically and horizontally align columns.
471478
<b-col>One of three columns</b-col>
472479
<b-col>One of three columns</b-col>
473480
</b-row>
481+
482+
<b-row align-v="baseline">
483+
<b-col style="font-size: 0.75rem;">One of three columns</b-col>
484+
<b-col>One of three columns</b-col>
485+
<b-col style="font-size: 1.25rem;">One of three columns</b-col>
486+
</b-row>
487+
488+
<b-row align-v="stretch">
489+
<b-col>One of three columns</b-col>
490+
<b-col>One of three columns</b-col>
491+
<b-col>One of three columns</b-col>
492+
</b-row>
474493
</b-container>
475494

476495
<!-- b-grid-vertical-alignment.vue -->
477496
```
478497

498+
For individual grid cell vertical alignment, use the `align-self` prop on `<b-col>`. Possible values
499+
are `'start'`, `'center'`, `'end'`, `'baseline'`, and `'stretch'`:
500+
479501
```html
480502
<b-container class="bv-example-row bv-example-row-flex-cols">
481503
<b-row>
482504
<b-col align-self="start">One of three columns</b-col>
483505
<b-col align-self="center">One of three columns</b-col>
484506
<b-col align-self="end">One of three columns</b-col>
485507
</b-row>
508+
<b-row>
509+
<b-col align-self="baseline">One of two columns</b-col>
510+
<b-col align-self="stretch">One of two columns</b-col>
511+
</b-row>
486512
</b-container>
487513

488514
<!-- b-grid-align-self.vue -->
489515
```
490516

491517
### Horizontal alignment
492518

519+
To horizontally align grid cells within a row, use the `align-h` prop on `<b-row>`. Possible values
520+
are: `'start'`, `'center'`, `'end'`, `'around'`, and `'between'`:
521+
493522
```html
494523
<b-container class="bv-example-row">
495524
<b-row align-h="start">

src/components/layout/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
},
2525
{
2626
"prop": "alignV",
27-
"description": "Vertical alignment of all columns in a row: 'start', 'center', or 'end'"
27+
"description": "Vertical alignment of all columns in a row: 'start', 'center', 'end', 'baseline', or 'stretch'"
2828
},
2929
{
3030
"prop": "alignH",
@@ -66,7 +66,7 @@
6666
"props": [
6767
{
6868
"prop": "alignSelf",
69-
"description": "Vertical alignment of the grid cell with respect to the row: 'start', 'center', or 'end'"
69+
"description": "Vertical alignment of the grid cell with respect to the row: 'start', 'center', 'end', 'baseline', or 'stretch'"
7070
},
7171
{
7272
"prop": "col",

yarn.lock

Lines changed: 89 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -4155,7 +4155,7 @@ cross-spawn@^5.0.1:
41554155
shebang-command "^1.2.0"
41564156
which "^1.2.9"
41574157

4158-
cross-spawn@^6.0.0, cross-spawn@^6.0.5:
4158+
cross-spawn@^6.0.0:
41594159
version "6.0.5"
41604160
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
41614161
integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
@@ -4166,7 +4166,7 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5:
41664166
shebang-command "^1.2.0"
41674167
which "^1.2.9"
41684168

4169-
cross-spawn@^7.0.0, cross-spawn@^7.0.1:
4169+
cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2:
41704170
version "7.0.2"
41714171
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.2.tgz#d0d7dcfa74e89115c7619f4f721a94e1fdb716d6"
41724172
integrity sha512-PD6G8QG3S4FK/XCGFbEQrDqO2AnMMsy0meR7lerlIOHAAbkuavGU/pOqprrlvfTNjvowivTeBsjebAL0NSoMxw==
@@ -4550,7 +4550,7 @@ deep-extend@^0.6.0:
45504550
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
45514551
integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
45524552

4553-
deep-is@~0.1.3:
4553+
deep-is@^0.1.3, deep-is@~0.1.3:
45544554
version "0.1.3"
45554555
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
45564556
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
@@ -5124,10 +5124,10 @@ eslint-plugin-import@^2.20.2:
51245124
read-pkg-up "^2.0.0"
51255125
resolve "^1.12.0"
51265126

5127-
eslint-plugin-jest@^23.9.0:
5128-
version "23.9.0"
5129-
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-23.9.0.tgz#7f4932eceb7ca487d171898fb9d55c05e6b36701"
5130-
integrity sha512-8mt5xJQIFh33W5nE7vCikkDTE4saTo08V91KjU6yI5sLQ9e8Jkp1OXkWJoIHLheFqY5OXIZdAjZmNYHSJ3IpzQ==
5127+
eslint-plugin-jest@^23.10.0:
5128+
version "23.10.0"
5129+
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-23.10.0.tgz#4738c7ca9e6513da50f4e99d7b161c1f82fa8e8f"
5130+
integrity sha512-cHC//nesojSO1MLxVmFJR/bUaQQG7xvMHQD8YLbsQzevR41WKm8paKDUv2wMHlUy5XLZUmNcWuflOi4apS8D+Q==
51315131
dependencies:
51325132
"@typescript-eslint/experimental-utils" "^2.5.0"
51335133

@@ -5194,13 +5194,6 @@ eslint-scope@^5.0.0:
51945194
esrecurse "^4.1.0"
51955195
estraverse "^4.1.1"
51965196

5197-
eslint-utils@^1.4.3:
5198-
version "1.4.3"
5199-
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f"
5200-
integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==
5201-
dependencies:
5202-
eslint-visitor-keys "^1.1.0"
5203-
52045197
eslint-utils@^2.0.0:
52055198
version "2.0.0"
52065199
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.0.0.tgz#7be1cc70f27a72a76cd14aa698bcabed6890e1cd"
@@ -5213,22 +5206,22 @@ eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
52135206
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
52145207
integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
52155208

5216-
eslint@^6.8.0:
5217-
version "6.8.0"
5218-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb"
5219-
integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==
5209+
eslint@^7.0.0:
5210+
version "7.0.0"
5211+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.0.0.tgz#c35dfd04a4372110bd78c69a8d79864273919a08"
5212+
integrity sha512-qY1cwdOxMONHJfGqw52UOpZDeqXy8xmD0u8CT6jIstil72jkhURC704W8CFyTPDPllz4z4lu0Ql1+07PG/XdIg==
52205213
dependencies:
52215214
"@babel/code-frame" "^7.0.0"
52225215
ajv "^6.10.0"
5223-
chalk "^2.1.0"
5224-
cross-spawn "^6.0.5"
5216+
chalk "^4.0.0"
5217+
cross-spawn "^7.0.2"
52255218
debug "^4.0.1"
52265219
doctrine "^3.0.0"
52275220
eslint-scope "^5.0.0"
5228-
eslint-utils "^1.4.3"
5221+
eslint-utils "^2.0.0"
52295222
eslint-visitor-keys "^1.1.0"
5230-
espree "^6.1.2"
5231-
esquery "^1.0.1"
5223+
espree "^7.0.0"
5224+
esquery "^1.2.0"
52325225
esutils "^2.0.2"
52335226
file-entry-cache "^5.0.1"
52345227
functional-red-black-tree "^1.0.1"
@@ -5241,17 +5234,16 @@ eslint@^6.8.0:
52415234
is-glob "^4.0.0"
52425235
js-yaml "^3.13.1"
52435236
json-stable-stringify-without-jsonify "^1.0.1"
5244-
levn "^0.3.0"
5237+
levn "^0.4.1"
52455238
lodash "^4.17.14"
52465239
minimatch "^3.0.4"
5247-
mkdirp "^0.5.1"
52485240
natural-compare "^1.4.0"
5249-
optionator "^0.8.3"
5241+
optionator "^0.9.1"
52505242
progress "^2.0.0"
5251-
regexpp "^2.0.1"
5252-
semver "^6.1.2"
5253-
strip-ansi "^5.2.0"
5254-
strip-json-comments "^3.0.1"
5243+
regexpp "^3.1.0"
5244+
semver "^7.2.1"
5245+
strip-ansi "^6.0.0"
5246+
strip-json-comments "^3.1.0"
52555247
table "^5.2.3"
52565248
text-table "^0.2.0"
52575249
v8-compile-cache "^2.0.3"
@@ -5270,6 +5262,15 @@ espree@^6.1.2:
52705262
acorn-jsx "^5.2.0"
52715263
eslint-visitor-keys "^1.1.0"
52725264

5265+
espree@^7.0.0:
5266+
version "7.0.0"
5267+
resolved "https://registry.yarnpkg.com/espree/-/espree-7.0.0.tgz#8a7a60f218e69f120a842dc24c5a88aa7748a74e"
5268+
integrity sha512-/r2XEx5Mw4pgKdyb7GNLQNsu++asx/dltf/CI8RFi9oGHxmQFgvLbc5Op4U6i8Oaj+kdslhJtVlEZeAqH5qOTw==
5269+
dependencies:
5270+
acorn "^7.1.1"
5271+
acorn-jsx "^5.2.0"
5272+
eslint-visitor-keys "^1.1.0"
5273+
52735274
esprima@^4.0.0, esprima@^4.0.1:
52745275
version "4.0.1"
52755276
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
@@ -5282,6 +5283,13 @@ esquery@^1.0.1:
52825283
dependencies:
52835284
estraverse "^5.0.0"
52845285

5286+
esquery@^1.2.0:
5287+
version "1.3.1"
5288+
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
5289+
integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
5290+
dependencies:
5291+
estraverse "^5.1.0"
5292+
52855293
esrecurse@^4.1.0:
52865294
version "4.2.1"
52875295
resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
@@ -5299,6 +5307,11 @@ estraverse@^5.0.0:
52995307
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.0.0.tgz#ac81750b482c11cca26e4b07e83ed8f75fbcdc22"
53005308
integrity sha512-j3acdrMzqrxmJTNj5dbr1YbjacrYgAxVMeF0gK16E3j494mOe7xygM/ZLIguEQ0ETwAg2hlJCtHRGav+y0Ny5A==
53015309

5310+
estraverse@^5.1.0:
5311+
version "5.1.0"
5312+
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642"
5313+
integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw==
5314+
53025315
estree-walker@^0.6.1:
53035316
version "0.6.1"
53045317
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362"
@@ -5565,7 +5578,7 @@ fast-json-stable-stringify@^2.0.0:
55655578
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
55665579
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
55675580

5568-
fast-levenshtein@~2.0.6:
5581+
fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
55695582
version "2.0.6"
55705583
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
55715584
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
@@ -8036,7 +8049,15 @@ levenary@^1.1.1:
80368049
dependencies:
80378050
leven "^3.1.0"
80388051

8039-
levn@^0.3.0, levn@~0.3.0:
8052+
levn@^0.4.1:
8053+
version "0.4.1"
8054+
resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
8055+
integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
8056+
dependencies:
8057+
prelude-ls "^1.2.1"
8058+
type-check "~0.4.0"
8059+
8060+
levn@~0.3.0:
80408061
version "0.3.0"
80418062
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
80428063
integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=
@@ -9241,7 +9262,7 @@ optimize-css-assets-webpack-plugin@^5.0.3:
92419262
cssnano "^4.1.10"
92429263
last-call-webpack-plugin "^3.0.0"
92439264

9244-
optionator@^0.8.1, optionator@^0.8.3:
9265+
optionator@^0.8.1:
92459266
version "0.8.3"
92469267
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
92479268
integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
@@ -9253,6 +9274,18 @@ optionator@^0.8.1, optionator@^0.8.3:
92539274
type-check "~0.3.2"
92549275
word-wrap "~1.2.3"
92559276

9277+
optionator@^0.9.1:
9278+
version "0.9.1"
9279+
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
9280+
integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
9281+
dependencies:
9282+
deep-is "^0.1.3"
9283+
fast-levenshtein "^2.0.6"
9284+
levn "^0.4.1"
9285+
prelude-ls "^1.2.1"
9286+
type-check "^0.4.0"
9287+
word-wrap "^1.2.3"
9288+
92569289
ora@^1.3.0:
92579290
version "1.4.0"
92589291
resolved "https://registry.yarnpkg.com/ora/-/ora-1.4.0.tgz#884458215b3a5d4097592285f93321bb7a79e2e5"
@@ -10417,6 +10450,11 @@ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.1
1041710450
source-map "^0.6.1"
1041810451
supports-color "^6.1.0"
1041910452

10453+
prelude-ls@^1.2.1:
10454+
version "1.2.1"
10455+
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
10456+
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
10457+
1042010458
prelude-ls@~1.1.2:
1042110459
version "1.1.2"
1042210460
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
@@ -10901,16 +10939,16 @@ regex-not@^1.0.0, regex-not@^1.0.2:
1090110939
extend-shallow "^3.0.2"
1090210940
safe-regex "^1.1.0"
1090310941

10904-
regexpp@^2.0.1:
10905-
version "2.0.1"
10906-
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f"
10907-
integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==
10908-
1090910942
regexpp@^3.0.0:
1091010943
version "3.0.0"
1091110944
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.0.0.tgz#dd63982ee3300e67b41c1956f850aa680d9d330e"
1091210945
integrity sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g==
1091310946

10947+
regexpp@^3.1.0:
10948+
version "3.1.0"
10949+
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"
10950+
integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==
10951+
1091410952
regexpu-core@^4.7.0:
1091510953
version "4.7.0"
1091610954
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938"
@@ -11418,7 +11456,7 @@ semver@7.1.1:
1141811456
resolved "https://registry.yarnpkg.com/semver/-/semver-7.1.1.tgz#29104598a197d6cbe4733eeecbe968f7b43a9667"
1141911457
integrity sha512-WfuG+fl6eh3eZ2qAf6goB7nhiCd7NPXhmyFxigB/TOkQyeLP8w8GsVehvtGNtnNmyboz4TgeK40B1Kbql/8c5A==
1142011458

11421-
semver@^6.0.0, semver@^6.1.0, semver@^6.1.2, semver@^6.3.0:
11459+
semver@^6.0.0, semver@^6.1.0, semver@^6.3.0:
1142211460
version "6.3.0"
1142311461
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
1142411462
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
@@ -12168,10 +12206,10 @@ strip-json-comments@^2.0.0, strip-json-comments@~2.0.1:
1216812206
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
1216912207
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
1217012208

12171-
strip-json-comments@^3.0.1:
12172-
version "3.0.1"
12173-
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7"
12174-
integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==
12209+
strip-json-comments@^3.1.0:
12210+
version "3.1.0"
12211+
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.0.tgz#7638d31422129ecf4457440009fba03f9f9ac180"
12212+
integrity sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w==
1217512213

1217612214
strip-outer@^1.0.0:
1217712215
version "1.0.1"
@@ -12648,6 +12686,13 @@ tweetnacl@^0.14.3, tweetnacl@~0.14.0:
1264812686
resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
1264912687
integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
1265012688

12689+
type-check@^0.4.0, type-check@~0.4.0:
12690+
version "0.4.0"
12691+
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
12692+
integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
12693+
dependencies:
12694+
prelude-ls "^1.2.1"
12695+
1265112696
type-check@~0.3.2:
1265212697
version "0.3.2"
1265312698
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
@@ -13427,7 +13472,7 @@ widest-line@^3.1.0:
1342713472
dependencies:
1342813473
string-width "^4.0.0"
1342913474

13430-
word-wrap@~1.2.3:
13475+
word-wrap@^1.2.3, word-wrap@~1.2.3:
1343113476
version "1.2.3"
1343213477
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
1343313478
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==

0 commit comments

Comments
 (0)