Skip to content

Commit 0c2baef

Browse files
committed
Upgrade to rjsf 6.0
1 parent 96abad6 commit 0c2baef

File tree

7 files changed

+55
-124
lines changed

7 files changed

+55
-124
lines changed

app/javascript/mda_viewer/components/DistributionModals.jsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33
import validator from '@rjsf/validator-ajv8';
4-
import Form from '@rjsf/bootstrap-4';
4+
import Form from '@rjsf/react-bootstrap';
55
import update from 'immutability-helper';
66

7-
// Patch bootstrap 4 theme with bootstrap 5 select widget,
8-
// otherwise bootstrap 4 theme is compatible with Bootstrap 5
9-
import SelectWidget from '../../utils/RjsfSelectWidgetBs5';
10-
117
const NORMAL = 'Normal';
128
const BETA = 'Beta';
139
const GAMMA = 'Gamma';
@@ -324,7 +320,6 @@ class DistributionModal extends React.Component {
324320
formData={formData}
325321
onChange={this.handleChange}
326322
validator={validator}
327-
widgets={{ SelectWidget }}
328323
>
329324
<button type="button" className="d-none" />
330325
</Form>

app/javascript/mda_viewer/components/OpenmdaoImplEditor.jsx

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@ import React from 'react';
22
import PropTypes from 'prop-types';
33

44
import validator from '@rjsf/validator-ajv8';
5-
import Form from '@rjsf/bootstrap-4';
6-
7-
// Patch bootstrap 4 theme with bootstrap 5 select widget,
8-
// otherwise bootstrap 4 theme is compatible with Bootstrap 5
9-
import SelectWidget from '../../utils/RjsfSelectWidgetBs5';
5+
import Form from '@rjsf/react-bootstrap';
106

117
const SCHEMA_GENERAL = {
128
type: 'object',
@@ -251,7 +247,6 @@ class OpenmdaoImplEditor extends React.Component {
251247
onChange={(data) => this.handleChange(data)}
252248
onSubmit={(data) => this.handleSubmit(data)}
253249
validator={validator}
254-
widgets={{ SelectWidget }}
255250
liveValidate
256251
>
257252
<div>
@@ -268,7 +263,6 @@ class OpenmdaoImplEditor extends React.Component {
268263
onChange={(data) => this.handleChange(data)}
269264
onSubmit={(data) => this.handleSubmit(data)}
270265
validator={validator}
271-
widgets={{ SelectWidget }}
272266
liveValidate
273267
>
274268
<div>
@@ -284,7 +278,6 @@ class OpenmdaoImplEditor extends React.Component {
284278
onChange={(data) => this.handleChange(data)}
285279
onSubmit={(data) => this.handleSubmit(data)}
286280
validator={validator}
287-
widgets={{ SelectWidget }}
288281
liveValidate
289282
>
290283
<div className="mb-3">
@@ -300,7 +293,6 @@ class OpenmdaoImplEditor extends React.Component {
300293
onChange={(data) => this.handleChange(data)}
301294
onSubmit={(data) => this.handleSubmit(data)}
302295
validator={validator}
303-
widgets={{ SelectWidget }}
304296
liveValidate
305297
>
306298
<div className="mb-3">

app/javascript/plotter/components/MetaModelManager.jsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@ import React from 'react';
22
import PropTypes from 'prop-types';
33
import update from 'immutability-helper';
44
import validator from '@rjsf/validator-ajv8';
5-
import Form from '@rjsf/bootstrap-4';
6-
7-
// Patch bootstrap 4 theme with bootstrap 5 select widget,
8-
// otherwise bootstrap 4 theme is compatible with Bootstrap 5
9-
import SelectWidget from '../../utils/RjsfSelectWidgetBs5';
5+
import Form from '@rjsf/react-bootstrap';
106

117
import Error from '../../utils/components/Error';
128
import LoadingIndicator from '../../utils/components/LoadingIndicator';
@@ -197,7 +193,6 @@ class MetaModelManager extends React.Component {
197193
formData={formData}
198194
onChange={this.handleChange}
199195
onSubmit={this.handleSubmit}
200-
widgets={{ SelectWidget }}
201196
validator={validator}
202197
>
203198
<div>

app/javascript/runner/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import React from 'react';
33
import PropTypes from 'prop-types';
44
import update from 'immutability-helper';
55
import validator from '@rjsf/validator-ajv8';
6-
import Form from '@rjsf/bootstrap-4';
6+
import Form from '@rjsf/react-bootstrap';
77
import deepIsEqual from '../utils/compare';
88

99
// Patch bootstrap 4 theme with bootstrap 5 select widget,
1010
// otherwise bootstrap 4 theme is compatible with Bootstrap 5
11-
import SelectWidget from '../utils/RjsfSelectWidgetBs5';
11+
// import SelectWidget from '../utils/RjsfSelectWidgetBs5';
1212

1313
class LogLine extends React.PureComponent {
1414
render() {

config/webpack/webpack.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ const options = {
3636
exposes: ['$', 'jQuery'],
3737
},
3838
},
39+
{
40+
test: /\.m?js/, // fix:issue: https://github.com/webpack/webpack/issues/11467
41+
resolve: {
42+
fullySpecified: false,
43+
},
44+
},
3945
],
4046
},
4147
};

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"@popperjs/core": "^2.11.6",
1212
"@rails/actiontext": "^8.1.100",
1313
"@rails/ujs": "^7.1.3-4",
14-
"@rjsf/bootstrap-4": "^5.0.0",
15-
"@rjsf/core": "^5.0.0",
16-
"@rjsf/utils": "^5.0.0",
17-
"@rjsf/validator-ajv8": "^5.0.0",
14+
"@rjsf/react-bootstrap": "^6.0.0",
15+
"@rjsf/core": "^6.0.0",
16+
"@rjsf/utils": "^6.0.0",
17+
"@rjsf/validator-ajv8": "^6.0.0",
1818
"@tanstack/react-table": "^8.5.22",
1919
"axios": "^1.13.2",
2020
"babel-loader": "^10.0.0",
@@ -85,4 +85,4 @@
8585
"webpack-dev-server": "^5.0.4"
8686
},
8787
"packageManager": "yarn@1.22.19"
88-
}
88+
}

yarn.lock

Lines changed: 39 additions & 96 deletions
Original file line numberDiff line numberDiff line change
@@ -1328,40 +1328,41 @@
13281328
uncontrollable "^8.0.4"
13291329
warning "^4.0.3"
13301330

1331-
"@rjsf/bootstrap-4@^5.0.0":
1332-
version "5.24.13"
1333-
resolved "https://registry.yarnpkg.com/@rjsf/bootstrap-4/-/bootstrap-4-5.24.13.tgz#8633168b31865dfcb97990c5abef909a73c644dc"
1334-
integrity sha512-Emj5iheVDty6nNLTzHtblXj1c81w5iwIMtkK6TZ7DDF/wYsiRjijUSzQMTmeLpBnUx56PS2p7rV4DM0OaH2P9w==
1335-
dependencies:
1336-
"@react-icons/all-files" "^4.1.0"
1337-
1338-
"@rjsf/core@^5.0.0":
1339-
version "5.24.13"
1340-
resolved "https://registry.yarnpkg.com/@rjsf/core/-/core-5.24.13.tgz#ef98e5dc6ac064b2be2f56e0887c99df2b1f8d44"
1341-
integrity sha512-ONTr14s7LFIjx2VRFLuOpagL76sM/HPy6/OhdBfq6UukINmTIs6+aFN0GgcR0aXQHFDXQ7f/fel0o/SO05Htdg==
1331+
"@rjsf/core@^6.0.0":
1332+
version "6.1.2"
1333+
resolved "https://registry.yarnpkg.com/@rjsf/core/-/core-6.1.2.tgz#e31346432982f38b30b041081cea8b49c8bd24a9"
1334+
integrity sha512-fcEO6kArMcVIzTBoBxNStqxzAL417NDw049nmNx11pIcMwUnU5sAkSW18c8kgZOT6v1xaZhQrY+X5cBzzHy9+g==
13421335
dependencies:
13431336
lodash "^4.17.21"
13441337
lodash-es "^4.17.21"
1345-
markdown-to-jsx "^7.4.1"
1338+
markdown-to-jsx "^8.0.0"
13461339
prop-types "^15.8.1"
13471340

1348-
"@rjsf/utils@^5.0.0":
1349-
version "5.24.13"
1350-
resolved "https://registry.yarnpkg.com/@rjsf/utils/-/utils-5.24.13.tgz#b19ca434bf518ec3e652c4a0510b293ff5fac279"
1351-
integrity sha512-rNF8tDxIwTtXzz5O/U23QU73nlhgQNYJ+Sv5BAwQOIyhIE2Z3S5tUiSVMwZHt0julkv/Ryfwi+qsD4FiE5rOuw==
1341+
"@rjsf/react-bootstrap@^6.0.0":
1342+
version "6.1.2"
1343+
resolved "https://registry.yarnpkg.com/@rjsf/react-bootstrap/-/react-bootstrap-6.1.2.tgz#e4e8e358f4e0b33c8a9f9e132c7ee9d2a8a08f47"
1344+
integrity sha512-0qUjWQoaA2qkSqji+05LT6Bs3XJ6e8bNx5vEm+sIZyTiQzDfzYc3QXkHi5R+ns6+NPN4Nm72CwmQJUXCnyqwdA==
13521345
dependencies:
1353-
json-schema-merge-allof "^0.8.1"
1346+
"@react-icons/all-files" "^4.1.0"
1347+
1348+
"@rjsf/utils@^6.0.0":
1349+
version "6.1.2"
1350+
resolved "https://registry.yarnpkg.com/@rjsf/utils/-/utils-6.1.2.tgz#bba9d98ba451697519655ab7990262dc0bcf37dd"
1351+
integrity sha512-Px3FIkE1KK0745Qng9v88RZ0O7hcLf/1JUu0j00g+r6C8Zyokna42Hz/5TKyyQSKJqgVYcj2Z47YroVLenUM3A==
1352+
dependencies:
1353+
"@x0k/json-schema-merge" "^1.0.2"
1354+
fast-uri "^3.1.0"
13541355
jsonpointer "^5.0.1"
13551356
lodash "^4.17.21"
13561357
lodash-es "^4.17.21"
1357-
react-is "^18.2.0"
1358+
react-is "^18.3.1"
13581359

1359-
"@rjsf/validator-ajv8@^5.0.0":
1360-
version "5.24.13"
1361-
resolved "https://registry.yarnpkg.com/@rjsf/validator-ajv8/-/validator-ajv8-5.24.13.tgz#8d56ca1e92c87f6b6234d97e07e96f80016a68c0"
1362-
integrity sha512-oWHP7YK581M8I5cF1t+UXFavnv+bhcqjtL1a7MG/Kaffi0EwhgcYjODrD8SsnrhncsEYMqSECr4ZOEoirnEUWw==
1360+
"@rjsf/validator-ajv8@^6.0.0":
1361+
version "6.1.2"
1362+
resolved "https://registry.yarnpkg.com/@rjsf/validator-ajv8/-/validator-ajv8-6.1.2.tgz#67d6d54a8d3ab9027c253e78e1e4cef9faf87720"
1363+
integrity sha512-9P3np2d+TaZcFTEFLocbj19fqrAWB/bxtY0Y8EjP8Oiz8LL+/wUITaN3Wx9uxzWerJyphfpZXWhUS9XkllDLig==
13631364
dependencies:
1364-
ajv "^8.12.0"
1365+
ajv "^8.17.1"
13651366
ajv-formats "^2.1.1"
13661367
lodash "^4.17.21"
13671368
lodash-es "^4.17.21"
@@ -2363,6 +2364,13 @@
23632364
resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-3.0.1.tgz#bd8b1f824d57e30faa19eb78e4c0951056f72f00"
23642365
integrity sha512-sbgw03xQaCLiT6gcY/6u3qBDn01CWw/nbaXl3gTdTFuJJ75Gffv3E3DBpgvY2fkkrdS1fpjaXNOmJlnbtKauKg==
23652366

2367+
"@x0k/json-schema-merge@^1.0.2":
2368+
version "1.0.2"
2369+
resolved "https://registry.yarnpkg.com/@x0k/json-schema-merge/-/json-schema-merge-1.0.2.tgz#38ebed7cb4c375be3ca3e542197cac7ce2acb664"
2370+
integrity sha512-1734qiJHNX3+cJGDMMw2yz7R+7kpbAtl5NdPs1c/0gO5kYT6s4dMbLXiIfpZNsOYhGZI3aH7FWrj4Zxz7epXNg==
2371+
dependencies:
2372+
"@types/json-schema" "^7.0.15"
2373+
23662374
"@xtuc/ieee754@^1.2.0":
23672375
version "1.2.0"
23682376
resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
@@ -2435,7 +2443,7 @@ ajv@^6.12.4:
24352443
json-schema-traverse "^0.4.1"
24362444
uri-js "^4.2.2"
24372445

2438-
ajv@^8.0.0, ajv@^8.12.0, ajv@^8.9.0:
2446+
ajv@^8.0.0, ajv@^8.17.1, ajv@^8.9.0:
24392447
version "8.17.1"
24402448
resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6"
24412449
integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
@@ -3160,25 +3168,6 @@ compression@^1.7.4:
31603168
safe-buffer "5.2.1"
31613169
vary "~1.1.2"
31623170

3163-
compute-gcd@^1.2.1:
3164-
version "1.2.1"
3165-
resolved "https://registry.yarnpkg.com/compute-gcd/-/compute-gcd-1.2.1.tgz#34d639f3825625e1357ce81f0e456a6249d8c77f"
3166-
integrity sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==
3167-
dependencies:
3168-
validate.io-array "^1.0.3"
3169-
validate.io-function "^1.0.2"
3170-
validate.io-integer-array "^1.0.0"
3171-
3172-
compute-lcm@^1.1.2:
3173-
version "1.1.2"
3174-
resolved "https://registry.yarnpkg.com/compute-lcm/-/compute-lcm-1.1.2.tgz#9107c66b9dca28cefb22b4ab4545caac4034af23"
3175-
integrity sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==
3176-
dependencies:
3177-
compute-gcd "^1.2.1"
3178-
validate.io-array "^1.0.3"
3179-
validate.io-function "^1.0.2"
3180-
validate.io-integer-array "^1.0.0"
3181-
31823171
compute-scroll-into-view@^3.0.2:
31833172
version "3.1.1"
31843173
resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-3.1.1.tgz#02c3386ec531fb6a9881967388e53e8564f3e9aa"
@@ -4618,7 +4607,7 @@ fast-levenshtein@^2.0.6:
46184607
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
46194608
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
46204609

4621-
fast-uri@^3.0.1:
4610+
fast-uri@^3.0.1, fast-uri@^3.1.0:
46224611
version "3.1.0"
46234612
resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.1.0.tgz#66eecff6c764c0df9b762e62ca7edcfb53b4edfa"
46244613
integrity sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==
@@ -5884,22 +5873,6 @@ json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1:
58845873
resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
58855874
integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
58865875

5887-
json-schema-compare@^0.2.2:
5888-
version "0.2.2"
5889-
resolved "https://registry.yarnpkg.com/json-schema-compare/-/json-schema-compare-0.2.2.tgz#dd601508335a90c7f4cfadb6b2e397225c908e56"
5890-
integrity sha512-c4WYmDKyJXhs7WWvAWm3uIYnfyWFoIp+JEoX34rctVvEkMYCPGhXtvmFFXiffBbxfZsvQ0RNnV5H7GvDF5HCqQ==
5891-
dependencies:
5892-
lodash "^4.17.4"
5893-
5894-
json-schema-merge-allof@^0.8.1:
5895-
version "0.8.1"
5896-
resolved "https://registry.yarnpkg.com/json-schema-merge-allof/-/json-schema-merge-allof-0.8.1.tgz#ed2828cdd958616ff74f932830a26291789eaaf2"
5897-
integrity sha512-CTUKmIlPJbsWfzRRnOXz+0MjIqvnleIXwFTzz+t9T86HnYX/Rozria6ZVGLktAU9e+NygNljveP+yxqtQp/Q4w==
5898-
dependencies:
5899-
compute-lcm "^1.1.2"
5900-
json-schema-compare "^0.2.2"
5901-
lodash "^4.17.20"
5902-
59035876
json-schema-traverse@^0.4.1:
59045877
version "0.4.1"
59055878
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
@@ -6053,7 +6026,7 @@ lodash.uniq@^4.5.0:
60536026
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
60546027
integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==
60556028

6056-
lodash@^4.15.0, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4:
6029+
lodash@^4.15.0, lodash@^4.17.21:
60576030
version "4.17.21"
60586031
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
60596032
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
@@ -6119,10 +6092,10 @@ maplibre-gl@^4.7.1:
61196092
tinyqueue "^3.0.0"
61206093
vt-pbf "^3.1.3"
61216094

6122-
markdown-to-jsx@^7.4.1:
6123-
version "7.7.17"
6124-
resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.7.17.tgz#6e997d6aa4dbe2e69c423c65745541846777483c"
6125-
integrity sha512-7mG/1feQ0TX5I7YyMZVDgCC/y2I3CiEhIRQIhyov9nGBP5eoVrOXXHuL5ZP8GRfxVZKRiXWJgwXkb9It+nQZfQ==
6095+
markdown-to-jsx@^8.0.0:
6096+
version "8.0.0"
6097+
resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-8.0.0.tgz#324935e46671c6ec56c6c36fc0c737086f59267e"
6098+
integrity sha512-hWEaRxeCDjes1CVUQqU+Ov0mCqBqkGhLKjL98KdbwHSgEWZZSJQeGlJQatVfeZ3RaxrfTrZZ3eczl2dhp5c/pA==
61266099

61276100
math-intrinsics@^1.1.0:
61286101
version "1.1.0"
@@ -7348,7 +7321,7 @@ react-is@^17.0.2:
73487321
resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
73497322
integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
73507323

7351-
react-is@^18.2.0:
7324+
react-is@^18.3.1:
73527325
version "18.3.1"
73537326
resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e"
73547327
integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==
@@ -8878,36 +8851,6 @@ validate-npm-package-license@^3.0.1:
88788851
spdx-correct "^3.0.0"
88798852
spdx-expression-parse "^3.0.0"
88808853

8881-
validate.io-array@^1.0.3:
8882-
version "1.0.6"
8883-
resolved "https://registry.yarnpkg.com/validate.io-array/-/validate.io-array-1.0.6.tgz#5b5a2cafd8f8b85abb2f886ba153f2d93a27774d"
8884-
integrity sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg==
8885-
8886-
validate.io-function@^1.0.2:
8887-
version "1.0.2"
8888-
resolved "https://registry.yarnpkg.com/validate.io-function/-/validate.io-function-1.0.2.tgz#343a19802ed3b1968269c780e558e93411c0bad7"
8889-
integrity sha512-LlFybRJEriSuBnUhQyG5bwglhh50EpTL2ul23MPIuR1odjO7XaMLFV8vHGwp7AZciFxtYOeiSCT5st+XSPONiQ==
8890-
8891-
validate.io-integer-array@^1.0.0:
8892-
version "1.0.0"
8893-
resolved "https://registry.yarnpkg.com/validate.io-integer-array/-/validate.io-integer-array-1.0.0.tgz#2cabde033293a6bcbe063feafe91eaf46b13a089"
8894-
integrity sha512-mTrMk/1ytQHtCY0oNO3dztafHYyGU88KL+jRxWuzfOmQb+4qqnWmI+gykvGp8usKZOM0H7keJHEbRaFiYA0VrA==
8895-
dependencies:
8896-
validate.io-array "^1.0.3"
8897-
validate.io-integer "^1.0.4"
8898-
8899-
validate.io-integer@^1.0.4:
8900-
version "1.0.5"
8901-
resolved "https://registry.yarnpkg.com/validate.io-integer/-/validate.io-integer-1.0.5.tgz#168496480b95be2247ec443f2233de4f89878068"
8902-
integrity sha512-22izsYSLojN/P6bppBqhgUDjCkr5RY2jd+N2a3DCAUey8ydvrZ/OkGvFPR7qfOpwR2LC5p4Ngzxz36g5Vgr/hQ==
8903-
dependencies:
8904-
validate.io-number "^1.0.3"
8905-
8906-
validate.io-number@^1.0.3:
8907-
version "1.0.3"
8908-
resolved "https://registry.yarnpkg.com/validate.io-number/-/validate.io-number-1.0.3.tgz#f63ffeda248bf28a67a8d48e0e3b461a1665baf8"
8909-
integrity sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg==
8910-
89118854
vary@~1.1.2:
89128855
version "1.1.2"
89138856
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"

0 commit comments

Comments
 (0)