Browse Source

Merge branch 'feature/added_unit_tests' of Neca/HRCenter into FE_dev

feature/1374_account_details
safet.purkovic 3 years ago
parent
commit
5d797f09a3
5 changed files with 1341 additions and 376 deletions
  1. 931
    243
      package-lock.json
  2. 5
    2
      package.json
  3. 1
    0
      src/components/Button/Button.js
  4. 24
    0
      src/components/Button/Button.test.js
  5. 380
    131
      yarn.lock

+ 931
- 243
package-lock.json
File diff suppressed because it is too large
View File


+ 5
- 2
package.json View File

@@ -10,7 +10,6 @@
"@mui/x-data-grid": "^5.0.1",
"@reduxjs/toolkit": "^1.5.1",
"@testing-library/jest-dom": "^5.13.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"axios": "^0.21.1",
"date-fns": "^2.22.1",
@@ -64,6 +63,7 @@
]
},
"devDependencies": {
"@testing-library/react": "^12.1.2",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
@@ -71,6 +71,9 @@
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "2.3.1"
"jest": "^26.6.0",
"jest-dom": "^4.0.0",
"prettier": "2.3.1",
"react-test-renderer": "^18.2.0"
}
}

+ 1
- 0
src/components/Button/Button.js View File

@@ -60,6 +60,7 @@ const Button = ({

return (
<button
data-testid="btn"
ref={buttonRef}
className={styles()}
onClick={handleClick}

+ 24
- 0
src/components/Button/Button.test.js View File

@@ -0,0 +1,24 @@
import Button from './Button'
import ReactDOM from 'react-dom'
import React from 'react'
import { getByTestId, render, screen } from '@testing-library/react';

describe("Button tests", () =>{
it("render without crashing", () =>
{
const div = document.createElement('div');
ReactDOM.render(<Button></Button>, div);
})

it("render button with base class",() =>
{
render(<Button></Button>);
expect(screen.getByTestId('btn')).toHaveClass("c-btn");
})
it("render button with size 5",() =>
{
render(<Button size={5}></Button>);
expect(screen.getByTestId('btn')).toHaveClass("c-btn--5");
})
})

+ 380
- 131
yarn.lock View File

@@ -1985,19 +1985,19 @@
dependencies:
"defer-to-connect" "^1.0.1"

"@testing-library/dom@^7.28.1", "@testing-library/dom@>=7.21.4":
"integrity" "sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ=="
"resolved" "https://registry.npmjs.org/@testing-library/dom/-/dom-7.31.2.tgz"
"version" "7.31.2"
"@testing-library/dom@^8.0.0", "@testing-library/dom@>=7.21.4":
"integrity" "sha512-6YWYPPpxG3e/xOo6HIWwB/58HukkwIVTOaZ0VwdMVjhRUX/01E4FtQbck9GazOOj7MXHc5RBzMrU86iBJHbI+A=="
"resolved" "https://registry.npmjs.org/@testing-library/dom/-/dom-8.19.0.tgz"
"version" "8.19.0"
dependencies:
"@babel/code-frame" "^7.10.4"
"@babel/runtime" "^7.12.5"
"@types/aria-query" "^4.2.0"
"aria-query" "^4.2.2"
"aria-query" "^5.0.0"
"chalk" "^4.1.0"
"dom-accessibility-api" "^0.5.6"
"dom-accessibility-api" "^0.5.9"
"lz-string" "^1.4.4"
"pretty-format" "^26.6.2"
"pretty-format" "^27.0.2"

"@testing-library/jest-dom@^5.13.0":
"integrity" "sha512-+jXXTn8GjRnZkJfzG/tqK/2Q7dGlBInR412WE7Aml7CT3wdSpx5dMQC0HOwVQoZ3cNTmQUy8fCVGUV/Zhoyvcw=="
@@ -2013,13 +2013,14 @@
"lodash" "^4.17.15"
"redent" "^3.0.0"

"@testing-library/react@^11.2.7":
"integrity" "sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA=="
"resolved" "https://registry.npmjs.org/@testing-library/react/-/react-11.2.7.tgz"
"version" "11.2.7"
"@testing-library/react@^12.1.2":
"integrity" "sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg=="
"resolved" "https://registry.npmjs.org/@testing-library/react/-/react-12.1.5.tgz"
"version" "12.1.5"
dependencies:
"@babel/runtime" "^7.12.5"
"@testing-library/dom" "^7.28.1"
"@testing-library/dom" "^8.0.0"
"@types/react-dom" "<18.0.0"

"@testing-library/user-event@^12.8.3":
"integrity" "sha512-IR0iWbFkgd56Bu5ZI/ej8yQwrkCv8Qydx6RzwbKz9faXazR/+5tvYKsZQgyXJiwgpcva127YO6JcWy7YlCfofQ=="
@@ -2194,6 +2195,13 @@
"resolved" "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz"
"version" "1.5.4"

"@types/react-dom@<18.0.0":
"integrity" "sha512-VjnqEmqGnasQKV0CWLevqMTXBYG9GbwuE6x3VetERLh0cq2LTptFE73MrQi2S7GkKXCf2GgwItB/melLnxfnsg=="
"resolved" "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.17.tgz"
"version" "17.0.17"
dependencies:
"@types/react" "^17"

"@types/react-is@^16.7.1 || ^17.0.0":
"integrity" "sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw=="
"resolved" "https://registry.npmjs.org/@types/react-is/-/react-is-17.0.3.tgz"
@@ -2227,6 +2235,15 @@
"@types/scheduler" "*"
"csstype" "^3.0.2"

"@types/react@^17":
"integrity" "sha512-YMddzAE+nSH04BiTJ5GydTxk0/3hckqyuOclg0s6zQYj/XzfRVNzHZAFwZb5SCSavkzTYUtcq/gwjLnvt2Y4cg=="
"resolved" "https://registry.npmjs.org/@types/react/-/react-17.0.51.tgz"
"version" "17.0.51"
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
"csstype" "^3.0.2"

"@types/resolve@0.0.8":
"integrity" "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ=="
"resolved" "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz"
@@ -2730,6 +2747,11 @@
dependencies:
"color-convert" "^2.0.1"

"ansi-styles@^5.0.0":
"integrity" "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz"
"version" "5.2.0"

"anymatch@^2.0.0":
"integrity" "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz"
@@ -2766,6 +2788,13 @@
"@babel/runtime" "^7.10.2"
"@babel/runtime-corejs3" "^7.10.2"

"aria-query@^5.0.0":
"integrity" "sha512-4cPQjOYM2mqq7mZG8CSxkUvL2Yv/x29VhGq5LKehTsxRnoVQps1YGt9NyjcNQsznEsD4rr8a6zGxqeNTqJWjpA=="
"resolved" "https://registry.npmjs.org/aria-query/-/aria-query-5.1.1.tgz"
"version" "5.1.1"
dependencies:
"deep-equal" "^2.0.5"

"arity-n@^1.0.4":
"integrity" "sha1-2edrEXM+CFacCEeuezmyhgswt0U="
"resolved" "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz"
@@ -2936,6 +2965,11 @@
"postcss" "^7.0.32"
"postcss-value-parser" "^4.1.0"

"available-typed-arrays@^1.0.5":
"integrity" "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw=="
"resolved" "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz"
"version" "1.0.5"

"axe-core@^4.0.2":
"integrity" "sha512-OKRkKM4ojMEZRJ5UNJHmq9tht7cEnRnqKG6KyB/trYws00Xtkv12mHtlJ0SK7cmuNbrU8dPUova3ELTuilfBbw=="
"resolved" "https://registry.npmjs.org/axe-core/-/axe-core-4.2.2.tgz"
@@ -4550,6 +4584,27 @@
"object-keys" "^1.1.1"
"regexp.prototype.flags" "^1.2.0"

"deep-equal@^2.0.5":
"integrity" "sha512-nPiRgmbAtm1a3JsnLCf6/SLfXcjyN5v8L1TXzdCmHrXJ4hx+gW/w1YCcn7z8gJtSiDArZCgYtbao3QqLm/N1Sw=="
"resolved" "https://registry.npmjs.org/deep-equal/-/deep-equal-2.0.5.tgz"
"version" "2.0.5"
dependencies:
"call-bind" "^1.0.0"
"es-get-iterator" "^1.1.1"
"get-intrinsic" "^1.0.1"
"is-arguments" "^1.0.4"
"is-date-object" "^1.0.2"
"is-regex" "^1.1.1"
"isarray" "^2.0.5"
"object-is" "^1.1.4"
"object-keys" "^1.1.1"
"object.assign" "^4.1.2"
"regexp.prototype.flags" "^1.3.0"
"side-channel" "^1.0.3"
"which-boxed-primitive" "^1.0.1"
"which-collection" "^1.0.1"
"which-typed-array" "^1.1.2"

"deep-extend@^0.6.0":
"integrity" "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="
"resolved" "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz"
@@ -4583,12 +4638,13 @@
"resolved" "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz"
"version" "1.1.3"

"define-properties@^1.1.2", "define-properties@^1.1.3":
"integrity" "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="
"resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"
"version" "1.1.3"
"define-properties@^1.1.2", "define-properties@^1.1.3", "define-properties@^1.1.4":
"integrity" "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA=="
"resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz"
"version" "1.1.4"
dependencies:
"object-keys" "^1.0.12"
"has-property-descriptors" "^1.0.0"
"object-keys" "^1.1.1"

"define-property@^0.2.5":
"integrity" "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY="
@@ -4726,10 +4782,10 @@
dependencies:
"esutils" "^2.0.2"

"dom-accessibility-api@^0.5.6":
"integrity" "sha512-DplGLZd8L1lN64jlT27N9TVSESFR5STaEJvX+thCby7fuCHonfPpAlodYc3vuUYbDuDec5w8AMP7oCM5TWFsqw=="
"resolved" "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.6.tgz"
"version" "0.5.6"
"dom-accessibility-api@^0.5.9":
"integrity" "sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg=="
"resolved" "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.14.tgz"
"version" "0.5.14"

"dom-converter@^0.2":
"integrity" "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA=="
@@ -4968,27 +5024,49 @@
"accepts" "~1.3.7"
"escape-html" "~1.0.3"

"es-abstract@^1.18.0-next.1", "es-abstract@^1.18.0-next.2", "es-abstract@^1.18.2":
"integrity" "sha512-nQIr12dxV7SSxE6r6f1l3DtAeEYdsGpps13dR0TwJg1S8gyp4ZPgy3FZcHBgbiQqnoqSTb+oC+kO4UQ0C/J8vw=="
"resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.3.tgz"
"version" "1.18.3"
"es-abstract@^1.18.0-next.1", "es-abstract@^1.18.0-next.2", "es-abstract@^1.18.2", "es-abstract@^1.19.0", "es-abstract@^1.19.5", "es-abstract@^1.20.0":
"integrity" "sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA=="
"resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz"
"version" "1.20.4"
dependencies:
"call-bind" "^1.0.2"
"es-to-primitive" "^1.2.1"
"function-bind" "^1.1.1"
"get-intrinsic" "^1.1.1"
"function.prototype.name" "^1.1.5"
"get-intrinsic" "^1.1.3"
"get-symbol-description" "^1.0.0"
"has" "^1.0.3"
"has-symbols" "^1.0.2"
"is-callable" "^1.2.3"
"is-negative-zero" "^2.0.1"
"is-regex" "^1.1.3"
"is-string" "^1.0.6"
"object-inspect" "^1.10.3"
"has-property-descriptors" "^1.0.0"
"has-symbols" "^1.0.3"
"internal-slot" "^1.0.3"
"is-callable" "^1.2.7"
"is-negative-zero" "^2.0.2"
"is-regex" "^1.1.4"
"is-shared-array-buffer" "^1.0.2"
"is-string" "^1.0.7"
"is-weakref" "^1.0.2"
"object-inspect" "^1.12.2"
"object-keys" "^1.1.1"
"object.assign" "^4.1.2"
"string.prototype.trimend" "^1.0.4"
"string.prototype.trimstart" "^1.0.4"
"unbox-primitive" "^1.0.1"
"object.assign" "^4.1.4"
"regexp.prototype.flags" "^1.4.3"
"safe-regex-test" "^1.0.0"
"string.prototype.trimend" "^1.0.5"
"string.prototype.trimstart" "^1.0.5"
"unbox-primitive" "^1.0.2"

"es-get-iterator@^1.1.1":
"integrity" "sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ=="
"resolved" "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"call-bind" "^1.0.2"
"get-intrinsic" "^1.1.0"
"has-symbols" "^1.0.1"
"is-arguments" "^1.1.0"
"is-map" "^2.0.2"
"is-set" "^2.0.2"
"is-string" "^1.0.5"
"isarray" "^2.0.5"

"es-to-primitive@^1.2.1":
"integrity" "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="
@@ -5762,6 +5840,13 @@
"resolved" "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.1.tgz"
"version" "1.14.1"

"for-each@^0.3.3":
"integrity" "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw=="
"resolved" "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz"
"version" "0.3.3"
dependencies:
"is-callable" "^1.1.3"

"for-in@^1.0.2":
"integrity" "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA="
"resolved" "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"
@@ -5882,11 +5967,26 @@
"resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
"version" "1.1.1"

"function.prototype.name@^1.1.5":
"integrity" "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA=="
"resolved" "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz"
"version" "1.1.5"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.1.3"
"es-abstract" "^1.19.0"
"functions-have-names" "^1.2.2"

"functional-red-black-tree@^1.0.1":
"integrity" "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
"resolved" "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"
"version" "1.0.1"

"functions-have-names@^1.2.2":
"integrity" "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ=="
"resolved" "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz"
"version" "1.2.3"

"gensync@^1.0.0-beta.1", "gensync@^1.0.0-beta.2":
"integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="
"resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"
@@ -5897,14 +5997,14 @@
"resolved" "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"
"version" "2.0.5"

"get-intrinsic@^1.0.2", "get-intrinsic@^1.1.0", "get-intrinsic@^1.1.1":
"integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q=="
"resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz"
"version" "1.1.1"
"get-intrinsic@^1.0.1", "get-intrinsic@^1.0.2", "get-intrinsic@^1.1.0", "get-intrinsic@^1.1.1", "get-intrinsic@^1.1.3":
"integrity" "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A=="
"resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"function-bind" "^1.1.1"
"has" "^1.0.3"
"has-symbols" "^1.0.1"
"has-symbols" "^1.0.3"

"get-own-enumerable-property-symbols@^3.0.0":
"integrity" "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g=="
@@ -5937,6 +6037,14 @@
dependencies:
"pump" "^3.0.0"

"get-symbol-description@^1.0.0":
"integrity" "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw=="
"resolved" "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"call-bind" "^1.0.2"
"get-intrinsic" "^1.1.1"

"get-value@^2.0.3", "get-value@^2.0.6":
"integrity" "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg="
"resolved" "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"
@@ -6064,12 +6172,12 @@
"url-parse-lax" "^3.0.0"

"graceful-fs@^4.1.11", "graceful-fs@^4.1.15", "graceful-fs@^4.1.2", "graceful-fs@^4.1.3", "graceful-fs@^4.1.6", "graceful-fs@^4.2.0", "graceful-fs@^4.2.4":
"integrity" "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="
"resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz"
"version" "4.2.6"
"integrity" "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
"resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"
"version" "4.2.10"

"growly@^1.3.0":
"integrity" "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE="
"integrity" "sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw=="
"resolved" "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz"
"version" "1.3.0"

@@ -6091,10 +6199,10 @@
"resolved" "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz"
"version" "1.6.2"

"has-bigints@^1.0.1":
"integrity" "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA=="
"resolved" "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz"
"version" "1.0.1"
"has-bigints@^1.0.2":
"integrity" "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ=="
"resolved" "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz"
"version" "1.0.2"

"has-flag@^3.0.0":
"integrity" "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
@@ -6106,10 +6214,24 @@
"resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
"version" "4.0.0"

"has-symbols@^1.0.1", "has-symbols@^1.0.2":
"integrity" "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="
"resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz"
"version" "1.0.2"
"has-property-descriptors@^1.0.0":
"integrity" "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ=="
"resolved" "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"get-intrinsic" "^1.1.1"

"has-symbols@^1.0.1", "has-symbols@^1.0.2", "has-symbols@^1.0.3":
"integrity" "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
"resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz"
"version" "1.0.3"

"has-tostringtag@^1.0.0":
"integrity" "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="
"resolved" "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"has-symbols" "^1.0.2"

"has-value@^0.3.1":
"integrity" "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8="
@@ -6492,9 +6614,9 @@
"resolve-cwd" "^2.0.0"

"import-local@^3.0.2":
"integrity" "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA=="
"resolved" "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz"
"version" "3.0.2"
"integrity" "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg=="
"resolved" "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"pkg-dir" "^4.2.0"
"resolve-cwd" "^3.0.0"
@@ -6615,7 +6737,7 @@
dependencies:
"kind-of" "^6.0.0"

"is-arguments@^1.0.4":
"is-arguments@^1.0.4", "is-arguments@^1.1.0":
"integrity" "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg=="
"resolved" "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz"
"version" "1.1.0"
@@ -6663,10 +6785,10 @@
"resolved" "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"
"version" "1.1.6"

"is-callable@^1.1.4", "is-callable@^1.2.3":
"integrity" "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ=="
"resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz"
"version" "1.2.3"
"is-callable@^1.1.3", "is-callable@^1.1.4", "is-callable@^1.2.7":
"integrity" "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="
"resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz"
"version" "1.2.7"

"is-ci@^2.0.0":
"integrity" "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w=="
@@ -6708,7 +6830,7 @@
dependencies:
"kind-of" "^6.0.0"

"is-date-object@^1.0.1":
"is-date-object@^1.0.1", "is-date-object@^1.0.2":
"integrity" "sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A=="
"resolved" "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.4.tgz"
"version" "1.0.4"
@@ -6800,15 +6922,20 @@
"global-dirs" "^3.0.0"
"is-path-inside" "^3.0.2"

"is-map@^2.0.1", "is-map@^2.0.2":
"integrity" "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg=="
"resolved" "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz"
"version" "2.0.2"

"is-module@^1.0.0":
"integrity" "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE="
"resolved" "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz"
"version" "1.0.0"

"is-negative-zero@^2.0.1":
"integrity" "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w=="
"resolved" "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz"
"version" "2.0.1"
"is-negative-zero@^2.0.2":
"integrity" "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA=="
"resolved" "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz"
"version" "2.0.2"

"is-npm@^5.0.0":
"integrity" "sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA=="
@@ -6888,13 +7015,13 @@
"resolved" "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz"
"version" "2.2.2"

"is-regex@^1.0.4", "is-regex@^1.1.3":
"integrity" "sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ=="
"resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.3.tgz"
"version" "1.1.3"
"is-regex@^1.0.4", "is-regex@^1.1.1", "is-regex@^1.1.4":
"integrity" "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="
"resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"
"version" "1.1.4"
dependencies:
"call-bind" "^1.0.2"
"has-symbols" "^1.0.2"
"has-tostringtag" "^1.0.0"

"is-regexp@^1.0.0":
"integrity" "sha1-/S2INUXEa6xaYz57mgnof6LLUGk="
@@ -6911,20 +7038,34 @@
"resolved" "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz"
"version" "2.1.0"

"is-set@^2.0.1", "is-set@^2.0.2":
"integrity" "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g=="
"resolved" "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz"
"version" "2.0.2"

"is-shared-array-buffer@^1.0.2":
"integrity" "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA=="
"resolved" "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"call-bind" "^1.0.2"

"is-stream@^1.1.0":
"integrity" "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
"resolved" "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"
"version" "1.1.0"

"is-stream@^2.0.0":
"integrity" "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="
"resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"
"version" "2.0.0"
"integrity" "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="
"resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"
"version" "2.0.1"

"is-string@^1.0.5", "is-string@^1.0.6":
"integrity" "sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w=="
"resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.6.tgz"
"version" "1.0.6"
"is-string@^1.0.5", "is-string@^1.0.7":
"integrity" "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="
"resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"
"version" "1.0.7"
dependencies:
"has-tostringtag" "^1.0.0"

"is-symbol@^1.0.2", "is-symbol@^1.0.3":
"integrity" "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="
@@ -6933,11 +7074,42 @@
dependencies:
"has-symbols" "^1.0.2"

"is-typed-array@^1.1.9":
"integrity" "sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A=="
"resolved" "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.9.tgz"
"version" "1.1.9"
dependencies:
"available-typed-arrays" "^1.0.5"
"call-bind" "^1.0.2"
"es-abstract" "^1.20.0"
"for-each" "^0.3.3"
"has-tostringtag" "^1.0.0"

"is-typedarray@^1.0.0":
"integrity" "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
"resolved" "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"
"version" "1.0.0"

"is-weakmap@^2.0.1":
"integrity" "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA=="
"resolved" "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz"
"version" "2.0.1"

"is-weakref@^1.0.2":
"integrity" "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="
"resolved" "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"call-bind" "^1.0.2"

"is-weakset@^2.0.1":
"integrity" "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg=="
"resolved" "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"call-bind" "^1.0.2"
"get-intrinsic" "^1.1.1"

"is-windows@^1.0.2":
"integrity" "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="
"resolved" "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"
@@ -6965,6 +7137,11 @@
"resolved" "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
"version" "1.0.0"

"isarray@^2.0.5":
"integrity" "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="
"resolved" "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz"
"version" "2.0.5"

"isarray@0.0.1":
"integrity" "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ=="
"resolved" "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"
@@ -7012,18 +7189,18 @@
"supports-color" "^7.1.0"

"istanbul-lib-source-maps@^4.0.0":
"integrity" "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg=="
"resolved" "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz"
"version" "4.0.0"
"integrity" "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw=="
"resolved" "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz"
"version" "4.0.1"
dependencies:
"debug" "^4.1.1"
"istanbul-lib-coverage" "^3.0.0"
"source-map" "^0.6.1"

"istanbul-reports@^3.0.2":
"integrity" "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw=="
"resolved" "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz"
"version" "3.0.2"
"integrity" "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w=="
"resolved" "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz"
"version" "3.1.5"
dependencies:
"html-escaper" "^2.0.0"
"istanbul-lib-report" "^3.0.0"
@@ -7124,6 +7301,11 @@
dependencies:
"detect-newline" "^3.0.0"

"jest-dom@^4.0.0":
"integrity" "sha512-gBxYZlZB1Jgvf2gP2pRfjjUWF8woGBHj/g5rAQgFPB/0K2atGuhVcPO+BItyjWeKg9zM+dokgcMOH01vrWVMFA=="
"resolved" "https://registry.npmjs.org/jest-dom/-/jest-dom-4.0.0.tgz"
"version" "4.0.0"

"jest-each@^26.6.0", "jest-each@^26.6.2":
"integrity" "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A=="
"resolved" "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz"
@@ -7454,7 +7636,7 @@
"merge-stream" "^2.0.0"
"supports-color" "^7.0.0"

"jest@^26.0.0", "jest@26.6.0":
"jest@^26.0.0", "jest@^26.6.0", "jest@26.6.0":
"integrity" "sha512-jxTmrvuecVISvKFFhOkjsWRZV7sFqdSUAd1ajOKY+/QE/aLBVstsJ/dX8GczLzwiT6ZEwwmZqtCUHLHHQVzcfA=="
"resolved" "https://registry.npmjs.org/jest/-/jest-26.6.0.tgz"
"version" "26.6.0"
@@ -8596,12 +8778,12 @@
"define-property" "^0.2.5"
"kind-of" "^3.0.3"

"object-inspect@^1.10.3", "object-inspect@^1.9.0":
"integrity" "sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw=="
"resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.10.3.tgz"
"version" "1.10.3"
"object-inspect@^1.12.2", "object-inspect@^1.9.0":
"integrity" "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="
"resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz"
"version" "1.12.2"

"object-is@^1.0.1":
"object-is@^1.0.1", "object-is@^1.1.4":
"integrity" "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw=="
"resolved" "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz"
"version" "1.1.5"
@@ -8609,7 +8791,7 @@
"call-bind" "^1.0.2"
"define-properties" "^1.1.3"

"object-keys@^1.0.12", "object-keys@^1.1.1":
"object-keys@^1.1.1":
"integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
"resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
"version" "1.1.1"
@@ -8621,14 +8803,14 @@
dependencies:
"isobject" "^3.0.0"

"object.assign@^4.1.0", "object.assign@^4.1.2":
"integrity" "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ=="
"resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz"
"version" "4.1.2"
"object.assign@^4.1.0", "object.assign@^4.1.2", "object.assign@^4.1.4":
"integrity" "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ=="
"resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz"
"version" "4.1.4"
dependencies:
"call-bind" "^1.0.0"
"define-properties" "^1.1.3"
"has-symbols" "^1.0.1"
"call-bind" "^1.0.2"
"define-properties" "^1.1.4"
"has-symbols" "^1.0.3"
"object-keys" "^1.1.1"

"object.entries@^1.1.0", "object.entries@^1.1.2", "object.entries@^1.1.4":
@@ -9884,6 +10066,15 @@
"ansi-styles" "^4.0.0"
"react-is" "^17.0.1"

"pretty-format@^27.0.2":
"integrity" "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ=="
"resolved" "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz"
"version" "27.5.1"
dependencies:
"ansi-regex" "^5.0.1"
"ansi-styles" "^5.0.0"
"react-is" "^17.0.1"

"process-nextick-args@~2.0.0":
"integrity" "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
"resolved" "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
@@ -10142,7 +10333,7 @@
"strip-ansi" "6.0.0"
"text-table" "0.2.0"

"react-dom@*", "react-dom@^16.6.0 || ^17.0.0 || ^18.0.0", "react-dom@^16.8.0 || ^17.0.0", "react-dom@^17.0.0 || ^18.0.0", "react-dom@^17.0.2", "react-dom@^17.0.2 || ^18.0.0", "react-dom@>=16.6.0":
"react-dom@^16.6.0 || ^17.0.0 || ^18.0.0", "react-dom@^16.8.0 || ^17.0.0", "react-dom@^17.0.0 || ^18.0.0", "react-dom@^17.0.2", "react-dom@^17.0.2 || ^18.0.0", "react-dom@<18.0.0", "react-dom@>=16.6.0":
"integrity" "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA=="
"resolved" "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz"
"version" "17.0.2"
@@ -10192,6 +10383,11 @@
dependencies:
"prop-types" "^15.5.8"

"react-is@^16.12.0 || ^17.0.0 || ^18.0.0", "react-is@^17.0.1", "react-is@^17.0.2":
"integrity" "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
"resolved" "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"
"version" "17.0.2"

"react-is@^16.13.1":
"integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
"resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
@@ -10207,11 +10403,6 @@
"resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
"version" "16.13.1"

"react-is@^17.0.1", "react-is@^17.0.2":
"integrity" "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
"resolved" "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"
"version" "17.0.2"

"react-is@^18.2.0":
"integrity" "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w=="
"resolved" "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz"
@@ -10341,6 +10532,23 @@
"react-input-autosize" "^3.0.0"
"react-transition-group" "^4.3.0"

"react-shallow-renderer@^16.15.0":
"integrity" "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA=="
"resolved" "https://registry.npmjs.org/react-shallow-renderer/-/react-shallow-renderer-16.15.0.tgz"
"version" "16.15.0"
dependencies:
"object-assign" "^4.1.1"
"react-is" "^16.12.0 || ^17.0.0 || ^18.0.0"

"react-test-renderer@^18.2.0":
"integrity" "sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA=="
"resolved" "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-18.2.0.tgz"
"version" "18.2.0"
dependencies:
"react-is" "^18.2.0"
"react-shallow-renderer" "^16.15.0"
"scheduler" "^0.23.0"

"react-transition-group@^4.3.0", "react-transition-group@^4.4.5":
"integrity" "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g=="
"resolved" "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz"
@@ -10351,7 +10559,7 @@
"loose-envify" "^1.4.0"
"prop-types" "^15.6.2"

"react@*", "react@^16.3.0 || ^17.0.0", "react@^16.6.0 || ^17.0.0 || ^18.0.0", "react@^16.8.0 || ^17.0.0", "react@^16.8.3 || ^17 || ^18", "react@^16.9.0 || ^17.0.0 || ^18", "react@^17.0.0 || ^18.0.0", "react@^17.0.2", "react@^17.0.2 || ^18.0.0", "react@>= 16", "react@>= 16.8.0", "react@>=15", "react@>=16.6.0", "react@>=16.8.0", "react@17.0.2":
"react@^16.0.0 || ^17.0.0 || ^18.0.0", "react@^16.3.0 || ^17.0.0", "react@^16.6.0 || ^17.0.0 || ^18.0.0", "react@^16.8.0 || ^17.0.0", "react@^16.8.3 || ^17 || ^18", "react@^16.9.0 || ^17.0.0 || ^18", "react@^17.0.0 || ^18.0.0", "react@^17.0.2", "react@^17.0.2 || ^18.0.0", "react@^18.2.0", "react@<18.0.0", "react@>= 16", "react@>= 16.8.0", "react@>=15", "react@>=16.6.0", "react@>=16.8.0", "react@17.0.2":
"integrity" "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA=="
"resolved" "https://registry.npmjs.org/react/-/react-17.0.2.tgz"
"version" "17.0.2"
@@ -10613,13 +10821,14 @@
"resolved" "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz"
"version" "2.2.11"

"regexp.prototype.flags@^1.2.0", "regexp.prototype.flags@^1.3.1":
"integrity" "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA=="
"resolved" "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz"
"version" "1.3.1"
"regexp.prototype.flags@^1.2.0", "regexp.prototype.flags@^1.3.0", "regexp.prototype.flags@^1.3.1", "regexp.prototype.flags@^1.4.3":
"integrity" "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA=="
"resolved" "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"
"version" "1.4.3"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.1.3"
"functions-have-names" "^1.2.2"

"regexpp@^3.1.0":
"integrity" "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q=="
@@ -10951,6 +11160,15 @@
"resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
"version" "5.2.1"

"safe-regex-test@^1.0.0":
"integrity" "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA=="
"resolved" "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"call-bind" "^1.0.2"
"get-intrinsic" "^1.1.3"
"is-regex" "^1.1.4"

"safe-regex@^1.1.0":
"integrity" "sha1-QKNmnzsHfR6UPURinhV91IAjvy4="
"resolved" "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"
@@ -11023,6 +11241,13 @@
"loose-envify" "^1.1.0"
"object-assign" "^4.1.1"

"scheduler@^0.23.0":
"integrity" "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw=="
"resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz"
"version" "0.23.0"
dependencies:
"loose-envify" "^1.1.0"

"schema-utils@^1.0.0":
"integrity" "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g=="
"resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz"
@@ -11281,7 +11506,7 @@
"resolved" "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz"
"version" "0.1.1"

"side-channel@^1.0.4":
"side-channel@^1.0.3", "side-channel@^1.0.4":
"integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="
"resolved" "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"
"version" "1.0.4"
@@ -11669,21 +11894,23 @@
"regexp.prototype.flags" "^1.3.1"
"side-channel" "^1.0.4"

"string.prototype.trimend@^1.0.4":
"integrity" "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A=="
"resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz"
"version" "1.0.4"
"string.prototype.trimend@^1.0.5":
"integrity" "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog=="
"resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz"
"version" "1.0.5"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.1.3"
"define-properties" "^1.1.4"
"es-abstract" "^1.19.5"

"string.prototype.trimstart@^1.0.4":
"integrity" "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw=="
"resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz"
"version" "1.0.4"
"string.prototype.trimstart@^1.0.5":
"integrity" "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg=="
"resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz"
"version" "1.0.5"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.1.3"
"define-properties" "^1.1.4"
"es-abstract" "^1.19.5"

"stringify-object@^3.3.0":
"integrity" "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw=="
@@ -11839,9 +12066,9 @@
"has-flag" "^4.0.0"

"supports-hyperlinks@^2.0.0":
"integrity" "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ=="
"resolved" "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz"
"version" "2.2.0"
"integrity" "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA=="
"resolved" "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"has-flag" "^4.0.0"
"supports-color" "^7.0.0"
@@ -12261,14 +12488,14 @@
"resolved" "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz"
"version" "4.8.4"

"unbox-primitive@^1.0.1":
"integrity" "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw=="
"resolved" "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz"
"version" "1.0.1"
"unbox-primitive@^1.0.2":
"integrity" "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="
"resolved" "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"function-bind" "^1.1.1"
"has-bigints" "^1.0.1"
"has-symbols" "^1.0.2"
"call-bind" "^1.0.2"
"has-bigints" "^1.0.2"
"has-symbols" "^1.0.3"
"which-boxed-primitive" "^1.0.2"

"unicode-canonical-property-names-ecmascript@^1.0.4":
@@ -12754,7 +12981,7 @@
"tr46" "^2.0.2"
"webidl-conversions" "^6.1.0"

"which-boxed-primitive@^1.0.2":
"which-boxed-primitive@^1.0.1", "which-boxed-primitive@^1.0.2":
"integrity" "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="
"resolved" "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"
"version" "1.0.2"
@@ -12765,11 +12992,33 @@
"is-string" "^1.0.5"
"is-symbol" "^1.0.3"

"which-collection@^1.0.1":
"integrity" "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A=="
"resolved" "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"is-map" "^2.0.1"
"is-set" "^2.0.1"
"is-weakmap" "^2.0.1"
"is-weakset" "^2.0.1"

"which-module@^2.0.0":
"integrity" "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho="
"resolved" "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"
"version" "2.0.0"

"which-typed-array@^1.1.2":
"integrity" "sha512-Jn4e5PItbcAHyLoRDwvPj1ypu27DJbtdYXUa5zsinrUx77Uvfb0cXwwnGMTn7cjUfhhqgVQnVJCwF+7cgU7tpw=="
"resolved" "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.8.tgz"
"version" "1.1.8"
dependencies:
"available-typed-arrays" "^1.0.5"
"call-bind" "^1.0.2"
"es-abstract" "^1.20.0"
"for-each" "^0.3.3"
"has-tostringtag" "^1.0.0"
"is-typed-array" "^1.1.9"

"which@^1.2.9":
"integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="
"resolved" "https://registry.npmjs.org/which/-/which-1.3.1.tgz"

Loading…
Cancel
Save