diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml
index 93a8c075b4..d5b57618b2 100644
--- a/.github/workflows/unit-test.yml
+++ b/.github/workflows/unit-test.yml
@@ -8,10 +8,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- node-version: ['14', '16']
+ node-version: ['16']
include:
- - node-version: '14'
- node-name: 'LTS'
- node-version: '16'
node-name: 'Latest'
steps:
diff --git a/babel.config.js b/babel.config.js
deleted file mode 100644
index d6831174bb..0000000000
--- a/babel.config.js
+++ /dev/null
@@ -1,54 +0,0 @@
-module.exports = {
- // ATTENTION!!
- // Preset ordering is reversed, so `@babel/typescript` will called first
- // Do not put `@babel/typescript` before `@babel/env`, otherwise will cause a compile error
- // See https://github.com/babel/babel/issues/12066
- presets: [
- [
- '@babel/env',
- {
- loose: true,
- modules: false,
- },
- ],
- '@babel/typescript',
- ],
- plugins: [
- '@vue/babel-plugin-jsx',
- '@babel/plugin-proposal-nullish-coalescing-operator',
- ['@babel/plugin-proposal-private-methods', { loose: true }],
- '@babel/transform-runtime',
- 'lodash',
- ],
- overrides: [
- {
- test: /\.vue$/,
- plugins: ['@babel/transform-typescript'],
- },
- ],
- env: {
- utils: {
- ignore: ['**/*.test.ts', '**/*.spec.ts'],
- presets: [
- [
- '@babel/env',
- {
- loose: true,
- modules: false,
- },
- ],
- ],
- plugins: [
- [
- 'babel-plugin-module-resolver',
- {
- root: ['element-plus'],
- alias: {
- '@element-plus': 'element-plus/lib',
- },
- },
- ],
- ],
- },
- },
-}
diff --git a/jest.config.js b/jest.config.js
index 7935faa730..6d70016402 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -11,28 +11,9 @@ module.exports = {
modulePathIgnorePatterns: ['/node_modules/', 'dist'],
testEnvironment: 'jsdom',
transform: {
+ // Doesn't support jsx/tsx since sucrase doesn't support Vue JSX
+ '\\.(j|t)s$': '@sucrase/jest-plugin',
'^.+\\.vue$': 'vue-jest',
- '^.+\\.(t|j)sx?$': [
- 'babel-jest',
- {
- presets: [
- [
- '@babel/preset-env',
- {
- loose: true,
- targets: {
- node: true,
- },
- },
- ],
- '@babel/preset-typescript',
- ],
- plugins: [
- '@vue/babel-plugin-jsx',
- ['@babel/plugin-proposal-class-properties', { loose: true }],
- ],
- },
- ],
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'json'],
// u can change this option to a more specific folder for test single component or util when dev
diff --git a/package.json b/package.json
index bd24623811..73b675987d 100644
--- a/package.json
+++ b/package.json
@@ -72,12 +72,6 @@
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
- "@babel/cli": "^7.15.7",
- "@babel/core": "^7.15.5",
- "@babel/plugin-proposal-class-properties": "^7.14.5",
- "@babel/plugin-transform-runtime": "^7.15.0",
- "@babel/preset-env": "^7.15.6",
- "@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@pnpm/find-workspace-packages": "^3.1.13",
@@ -88,20 +82,16 @@
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.2.5",
+ "@sucrase/jest-plugin": "^2.1.1",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.173",
"@types/through2": "^2.0.36",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
- "@vue/babel-plugin-jsx": "^1.0.7",
"@vue/compiler-sfc": "^3.2.18",
"@vue/component-compiler-utils": "^3.2.2",
"@vue/test-utils": "2.0.0-beta.4",
"algoliasearch": "^4.10.5",
- "babel-jest": "^26.3.0",
- "babel-plugin-lodash": "^3.3.4",
- "babel-plugin-module-resolver": "^4.1.0",
- "babel-preset-vue": "^2.0.2",
"chalk": "^4.1.2",
"clipboard-copy": "^4.0.1",
"components-helper": "^1.0.4",
diff --git a/packages/components/dropdown/__tests__/dropdown.spec.tsx b/packages/components/dropdown/__tests__/dropdown.spec.ts
similarity index 93%
rename from packages/components/dropdown/__tests__/dropdown.spec.tsx
rename to packages/components/dropdown/__tests__/dropdown.spec.ts
index cd4e625a34..adc6192d56 100644
--- a/packages/components/dropdown/__tests__/dropdown.spec.tsx
+++ b/packages/components/dropdown/__tests__/dropdown.spec.ts
@@ -25,31 +25,25 @@ const _mount = (template: string, data, otherObj?) =>
describe('Dropdown', () => {
test('create', async () => {
- const wrapper = mount({
- setup() {
- return () => (
- (
-
- Apple
- Orange
- Cherry
- Peach
- Pear
-
- ),
- }}
- >
-
- dropdown
-
-
- )
- },
- })
+ const wrapper = _mount(
+ `
+
+
+ dropdown
+
+
+
+ Apple
+ Orange
+ Cherry
+ Peach
+ Pear
+
+
+
+ `,
+ () => ({})
+ )
const content = wrapper.findComponent({ ref: 'b' }).vm as any
const triggerElm = wrapper.find('.el-dropdown-link')
expect(content.visible).toBe(false)
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 0015982bea..c648b870bf 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,12 +4,6 @@ importers:
.:
specifiers:
- '@babel/cli': ^7.15.7
- '@babel/core': ^7.15.5
- '@babel/plugin-proposal-class-properties': ^7.14.5
- '@babel/plugin-transform-runtime': ^7.15.0
- '@babel/preset-env': ^7.15.6
- '@babel/preset-typescript': ^7.15.0
'@commitlint/cli': ^13.1.0
'@commitlint/config-conventional': ^13.1.0
'@element-plus/components': workspace:*
@@ -30,6 +24,7 @@ importers:
'@rollup/plugin-node-resolve': ^9.0.0
'@rollup/plugin-replace': ^3.0.0
'@rollup/plugin-typescript': ^8.2.5
+ '@sucrase/jest-plugin': ^2.1.1
'@types/gulp': ^4.0.9
'@types/jest': ^26.0.24
'@types/lodash': ^4.14.173
@@ -37,17 +32,12 @@ importers:
'@types/through2': ^2.0.36
'@typescript-eslint/eslint-plugin': ^4.31.2
'@typescript-eslint/parser': ^4.31.2
- '@vue/babel-plugin-jsx': ^1.0.7
'@vue/compiler-sfc': ^3.2.18
'@vue/component-compiler-utils': ^3.2.2
'@vue/test-utils': 2.0.0-beta.4
'@vueuse/core': ~6.1.0
algoliasearch: ^4.10.5
async-validator: ^4.0.3
- babel-jest: ^26.3.0
- babel-plugin-lodash: ^3.3.4
- babel-plugin-module-resolver: ^4.1.0
- babel-preset-vue: ^2.0.2
chalk: ^4.1.2
clipboard-copy: ^4.0.1
components-helper: ^1.0.4
@@ -110,12 +100,6 @@ importers:
normalize-wheel-es: 1.1.0
resize-observer-polyfill: 1.5.1
devDependencies:
- '@babel/cli': 7.15.7_@babel+core@7.15.5
- '@babel/core': 7.15.5
- '@babel/plugin-proposal-class-properties': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-runtime': 7.15.0_@babel+core@7.15.5
- '@babel/preset-env': 7.15.6_@babel+core@7.15.5
- '@babel/preset-typescript': 7.15.0_@babel+core@7.15.5
'@commitlint/cli': 13.1.0
'@commitlint/config-conventional': 13.1.0
'@pnpm/find-workspace-packages': 3.1.13_@pnpm+logger@4.0.0
@@ -126,20 +110,16 @@ importers:
'@rollup/plugin-node-resolve': 9.0.0_rollup@2.57.0
'@rollup/plugin-replace': 3.0.0_rollup@2.57.0
'@rollup/plugin-typescript': 8.2.5_rollup@2.57.0+typescript@4.4.3
+ '@sucrase/jest-plugin': 2.1.1
'@types/jest': 26.0.24
'@types/lodash': 4.14.173
'@types/through2': 2.0.36
'@typescript-eslint/eslint-plugin': 4.31.2_3815fab247b4312be6d1f55eb1f81298
'@typescript-eslint/parser': 4.31.2_eslint@7.32.0+typescript@4.4.3
- '@vue/babel-plugin-jsx': 1.0.7_@babel+core@7.15.5
'@vue/compiler-sfc': 3.2.18
'@vue/component-compiler-utils': 3.2.2
'@vue/test-utils': 2.0.0-beta.4_vue@3.2.18
algoliasearch: 4.10.5
- babel-jest: 26.6.3_@babel+core@7.15.5
- babel-plugin-lodash: 3.3.4
- babel-plugin-module-resolver: 4.1.0
- babel-preset-vue: 2.0.2
chalk: 4.1.2
clipboard-copy: 4.0.1
components-helper: 1.0.4
@@ -173,7 +153,7 @@ importers:
ts-morph: 12.0.0
typescript: 4.4.3
vue: 3.2.18
- vue-jest: 5.0.0-alpha.5_4562d150aec6c8bdc3057da2215d1eaf
+ vue-jest: 5.0.0-alpha.5_7d4d0ce22d61872ca4faff1403434c98
vue-router: 4.0.11_vue@3.2.18
vue-tsc: 0.3.0_typescript@4.4.3
@@ -192,7 +172,7 @@ importers:
dependencies:
'@vueuse/core': 6.4.1_vue@3.2.18
axios: 0.21.4
- element-plus: 1.1.0-beta.16_vue@3.2.18
+ element-plus: 1.1.0-beta.17_vue@3.2.18
marked: 3.0.4
normalize.css: 8.0.1
nprogress: 0.2.0
@@ -368,26 +348,6 @@ packages:
engines: {node: '>=4'}
dev: true
- /@babel/cli/7.15.7_@babel+core@7.15.5:
- resolution: {integrity: sha512-YW5wOprO2LzMjoWZ5ZG6jfbY9JnkDxuHDwvnrThnuYtByorova/I0HNXJedrUfwuXFQfYOjcqDA4PU3qlZGZjg==}
- engines: {node: '>=6.9.0'}
- hasBin: true
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- commander: 4.1.1
- convert-source-map: 1.8.0
- fs-readdir-recursive: 1.1.0
- glob: 7.1.7
- make-dir: 2.1.0
- slash: 2.0.0
- source-map: 0.5.7
- optionalDependencies:
- '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3
- chokidar: 3.5.2
- dev: true
-
/@babel/code-frame/7.12.11:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
dependencies:
@@ -438,21 +398,6 @@ packages:
source-map: 0.5.7
dev: true
- /@babel/helper-annotate-as-pure/7.15.4:
- resolution: {integrity: sha512-QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.15.4
- dev: true
-
- /@babel/helper-builder-binary-assignment-operator-visitor/7.15.4:
- resolution: {integrity: sha512-P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-explode-assignable-expression': 7.15.4
- '@babel/types': 7.15.6
- dev: true
-
/@babel/helper-compilation-targets/7.15.4_@babel+core@7.15.5:
resolution: {integrity: sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==}
engines: {node: '>=6.9.0'}
@@ -466,59 +411,6 @@ packages:
semver: 6.3.0
dev: true
- /@babel/helper-create-class-features-plugin/7.15.4_@babel+core@7.15.5:
- resolution: {integrity: sha512-7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-annotate-as-pure': 7.15.4
- '@babel/helper-function-name': 7.15.4
- '@babel/helper-member-expression-to-functions': 7.15.4
- '@babel/helper-optimise-call-expression': 7.15.4
- '@babel/helper-replace-supers': 7.15.4
- '@babel/helper-split-export-declaration': 7.15.4
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-create-regexp-features-plugin/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-annotate-as-pure': 7.15.4
- regexpu-core: 4.7.1
- dev: true
-
- /@babel/helper-define-polyfill-provider/0.2.3_@babel+core@7.15.5:
- resolution: {integrity: sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==}
- peerDependencies:
- '@babel/core': ^7.4.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-compilation-targets': 7.15.4_@babel+core@7.15.5
- '@babel/helper-module-imports': 7.15.4
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/traverse': 7.15.4
- debug: 4.3.2
- lodash.debounce: 4.0.8
- resolve: 1.20.0
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-explode-assignable-expression/7.15.4:
- resolution: {integrity: sha512-J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.15.6
- dev: true
-
/@babel/helper-function-name/7.15.4:
resolution: {integrity: sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==}
engines: {node: '>=6.9.0'}
@@ -584,17 +476,6 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-remap-async-to-generator/7.15.4:
- resolution: {integrity: sha512-v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-annotate-as-pure': 7.15.4
- '@babel/helper-wrap-function': 7.15.4
- '@babel/types': 7.15.6
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helper-replace-supers/7.15.4:
resolution: {integrity: sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==}
engines: {node: '>=6.9.0'}
@@ -614,13 +495,6 @@ packages:
'@babel/types': 7.15.4
dev: true
- /@babel/helper-skip-transparent-expression-wrappers/7.15.4:
- resolution: {integrity: sha512-BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.15.6
- dev: true
-
/@babel/helper-split-export-declaration/7.15.4:
resolution: {integrity: sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==}
engines: {node: '>=6.9.0'}
@@ -643,18 +517,6 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-wrap-function/7.15.4:
- resolution: {integrity: sha512-Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-function-name': 7.15.4
- '@babel/template': 7.15.4
- '@babel/traverse': 7.15.4
- '@babel/types': 7.15.6
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helpers/7.15.4:
resolution: {integrity: sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==}
engines: {node: '>=6.9.0'}
@@ -687,201 +549,6 @@ packages:
hasBin: true
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.15.4_@babel+core@7.15.5:
- resolution: {integrity: sha512-eBnpsl9tlhPhpI10kU06JHnrYXwg3+V6CaP2idsCXNef0aeslpqyITXQ74Vfk5uHgY7IG7XP0yIH8b42KSzHog==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.15.4
- '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.15.5
- dev: true
-
- /@babel/plugin-proposal-async-generator-functions/7.15.4_@babel+core@7.15.5:
- resolution: {integrity: sha512-2zt2g5vTXpMC3OmK6uyjvdXptbhBXfA77XGrd3gh93zwG8lZYBLOBImiGBEG0RANu3JqKEACCz5CGk73OJROBw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-remap-async-to-generator': 7.15.4
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.15.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-class-properties/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-create-class-features-plugin': 7.15.4_@babel+core@7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-class-static-block/7.15.4_@babel+core@7.15.5:
- resolution: {integrity: sha512-M682XWrrLNk3chXCjoPUQWOyYsB93B9z3mRyjtqqYJWDf2mfCdIYgDrA11cgNVhAQieaq6F2fn2f3wI0U4aTjA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-create-class-features-plugin': 7.15.4_@babel+core@7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.15.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-dynamic-import/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.5
- dev: true
-
- /@babel/plugin-proposal-export-namespace-from/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.15.5
- dev: true
-
- /@babel/plugin-proposal-json-strings/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.15.5
- dev: true
-
- /@babel/plugin-proposal-logical-assignment-operators/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.15.5
- dev: true
-
- /@babel/plugin-proposal-nullish-coalescing-operator/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.15.5
- dev: true
-
- /@babel/plugin-proposal-numeric-separator/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.15.5
- dev: true
-
- /@babel/plugin-proposal-object-rest-spread/7.15.6_@babel+core@7.15.5:
- resolution: {integrity: sha512-qtOHo7A1Vt+O23qEAX+GdBpqaIuD3i9VRrWgCJeq7WO6H2d14EK3q11urj5Te2MAeK97nMiIdRpwd/ST4JFbNg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.15.0
- '@babel/core': 7.15.5
- '@babel/helper-compilation-targets': 7.15.4_@babel+core@7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.15.5
- '@babel/plugin-transform-parameters': 7.15.4_@babel+core@7.15.5
- dev: true
-
- /@babel/plugin-proposal-optional-catch-binding/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.15.5
- dev: true
-
- /@babel/plugin-proposal-optional-chaining/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.15.4
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.15.5
- dev: true
-
- /@babel/plugin-proposal-private-methods/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-create-class-features-plugin': 7.15.4_@babel+core@7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-private-property-in-object/7.15.4_@babel+core@7.15.5:
- resolution: {integrity: sha512-X0UTixkLf0PCCffxgu5/1RQyGGbgZuKoI+vXP4iSbJSYwPb7hu06omsFGBvQ9lJEvwgrxHdS8B5nbfcd8GyUNA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-annotate-as-pure': 7.15.4
- '@babel/helper-create-class-features-plugin': 7.15.4_@babel+core@7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.15.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-unicode-property-regex/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==}
- engines: {node: '>=4'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.15.5:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
@@ -909,34 +576,6 @@ packages:
'@babel/helper-plugin-utils': 7.14.5
dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.15.5:
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.15.5:
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.15.5:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
@@ -955,16 +594,6 @@ packages:
'@babel/helper-plugin-utils': 7.14.5
dev: true
- /@babel/plugin-syntax-jsx/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.15.5:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -1019,16 +648,6 @@ packages:
'@babel/helper-plugin-utils': 7.14.5
dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.15.5:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
@@ -1039,192 +658,12 @@ packages:
'@babel/helper-plugin-utils': 7.14.5
dev: true
- /@babel/plugin-syntax-typescript/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-arrow-functions/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-async-to-generator/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-module-imports': 7.15.4
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-remap-async-to-generator': 7.15.4
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-block-scoped-functions/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-block-scoping/7.15.3_@babel+core@7.15.5:
- resolution: {integrity: sha512-nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-classes/7.15.4_@babel+core@7.15.5:
- resolution: {integrity: sha512-Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-annotate-as-pure': 7.15.4
- '@babel/helper-function-name': 7.15.4
- '@babel/helper-optimise-call-expression': 7.15.4
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-replace-supers': 7.15.4
- '@babel/helper-split-export-declaration': 7.15.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-computed-properties/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-destructuring/7.14.7_@babel+core@7.15.5:
- resolution: {integrity: sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-dotall-regex/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-duplicate-keys/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-exponentiation-operator/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.15.4
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-for-of/7.15.4_@babel+core@7.15.5:
- resolution: {integrity: sha512-DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-function-name/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-function-name': 7.15.4
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-literals/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-member-expression-literals/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-modules-amd/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-module-transforms': 7.15.4
- '@babel/helper-plugin-utils': 7.14.5
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-modules-commonjs/7.15.4_@babel+core@7.15.5:
+ /@babel/plugin-transform-modules-commonjs/7.15.4:
resolution: {integrity: sha512-qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.15.5
'@babel/helper-module-transforms': 7.15.4
'@babel/helper-plugin-utils': 7.14.5
'@babel/helper-simple-access': 7.15.4
@@ -1233,322 +672,6 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.15.4_@babel+core@7.15.5:
- resolution: {integrity: sha512-fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-hoist-variables': 7.15.4
- '@babel/helper-module-transforms': 7.15.4
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-validator-identifier': 7.15.7
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-modules-umd/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-module-transforms': 7.15.4
- '@babel/helper-plugin-utils': 7.14.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-named-capturing-groups-regex/7.14.9_@babel+core@7.15.5:
- resolution: {integrity: sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.15.5
- dev: true
-
- /@babel/plugin-transform-new-target/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-object-super/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-replace-supers': 7.15.4
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-parameters/7.15.4_@babel+core@7.15.5:
- resolution: {integrity: sha512-9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-property-literals/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-regenerator/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- regenerator-transform: 0.14.5
- dev: true
-
- /@babel/plugin-transform-reserved-words/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-runtime/7.15.0_@babel+core@7.15.5:
- resolution: {integrity: sha512-sfHYkLGjhzWTq6xsuQ01oEsUYjkHRux9fW1iUA68dC7Qd8BS1Unq4aZ8itmQp95zUzIcyR2EbNMTzAicFj+guw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-module-imports': 7.15.4
- '@babel/helper-plugin-utils': 7.14.5
- babel-plugin-polyfill-corejs2: 0.2.2_@babel+core@7.15.5
- babel-plugin-polyfill-corejs3: 0.2.4_@babel+core@7.15.5
- babel-plugin-polyfill-regenerator: 0.2.2_@babel+core@7.15.5
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-shorthand-properties/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-spread/7.14.6_@babel+core@7.15.5:
- resolution: {integrity: sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.15.4
- dev: true
-
- /@babel/plugin-transform-sticky-regex/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-template-literals/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-typeof-symbol/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-typescript/7.15.4_@babel+core@7.15.5:
- resolution: {integrity: sha512-sM1/FEjwYjXvMwu1PJStH11kJ154zd/lpY56NQJ5qH2D0mabMv1CAy/kdvS9RP4Xgfj9fBBA3JiSLdDHgXdzOA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-create-class-features-plugin': 7.15.4_@babel+core@7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-syntax-typescript': 7.14.5_@babel+core@7.15.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-unicode-escapes/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/plugin-transform-unicode-regex/7.14.5_@babel+core@7.15.5:
- resolution: {integrity: sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-create-regexp-features-plugin': 7.14.5_@babel+core@7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- dev: true
-
- /@babel/preset-env/7.15.6_@babel+core@7.15.5:
- resolution: {integrity: sha512-L+6jcGn7EWu7zqaO2uoTDjjMBW+88FXzV8KvrBl2z6MtRNxlsmUNRlZPaNNPUTgqhyC5DHNFk/2Jmra+ublZWw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.15.0
- '@babel/core': 7.15.5
- '@babel/helper-compilation-targets': 7.15.4_@babel+core@7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-validator-option': 7.14.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.15.4_@babel+core@7.15.5
- '@babel/plugin-proposal-async-generator-functions': 7.15.4_@babel+core@7.15.5
- '@babel/plugin-proposal-class-properties': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-proposal-class-static-block': 7.15.4_@babel+core@7.15.5
- '@babel/plugin-proposal-dynamic-import': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-proposal-export-namespace-from': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-proposal-json-strings': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-proposal-logical-assignment-operators': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-proposal-numeric-separator': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-proposal-object-rest-spread': 7.15.6_@babel+core@7.15.5
- '@babel/plugin-proposal-optional-catch-binding': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-proposal-optional-chaining': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-proposal-private-methods': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-proposal-private-property-in-object': 7.15.4_@babel+core@7.15.5
- '@babel/plugin-proposal-unicode-property-regex': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.15.5
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.15.5
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.15.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.15.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.15.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.15.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.15.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.15.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.15.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.15.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.15.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-arrow-functions': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-async-to-generator': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-block-scoped-functions': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-block-scoping': 7.15.3_@babel+core@7.15.5
- '@babel/plugin-transform-classes': 7.15.4_@babel+core@7.15.5
- '@babel/plugin-transform-computed-properties': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-destructuring': 7.14.7_@babel+core@7.15.5
- '@babel/plugin-transform-dotall-regex': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-duplicate-keys': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-exponentiation-operator': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-for-of': 7.15.4_@babel+core@7.15.5
- '@babel/plugin-transform-function-name': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-literals': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-member-expression-literals': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-modules-amd': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-modules-commonjs': 7.15.4_@babel+core@7.15.5
- '@babel/plugin-transform-modules-systemjs': 7.15.4_@babel+core@7.15.5
- '@babel/plugin-transform-modules-umd': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-named-capturing-groups-regex': 7.14.9_@babel+core@7.15.5
- '@babel/plugin-transform-new-target': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-object-super': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-parameters': 7.15.4_@babel+core@7.15.5
- '@babel/plugin-transform-property-literals': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-regenerator': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-reserved-words': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-shorthand-properties': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-spread': 7.14.6_@babel+core@7.15.5
- '@babel/plugin-transform-sticky-regex': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-template-literals': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-typeof-symbol': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-unicode-escapes': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-unicode-regex': 7.14.5_@babel+core@7.15.5
- '@babel/preset-modules': 0.1.4_@babel+core@7.15.5
- '@babel/types': 7.15.6
- babel-plugin-polyfill-corejs2: 0.2.2_@babel+core@7.15.5
- babel-plugin-polyfill-corejs3: 0.2.4_@babel+core@7.15.5
- babel-plugin-polyfill-regenerator: 0.2.2_@babel+core@7.15.5
- core-js-compat: 3.17.2
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/preset-modules/0.1.4_@babel+core@7.15.5:
- resolution: {integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/plugin-proposal-unicode-property-regex': 7.14.5_@babel+core@7.15.5
- '@babel/plugin-transform-dotall-regex': 7.14.5_@babel+core@7.15.5
- '@babel/types': 7.15.6
- esutils: 2.0.3
- dev: true
-
- /@babel/preset-typescript/7.15.0_@babel+core@7.15.5:
- resolution: {integrity: sha512-lt0Y/8V3y06Wq/8H/u0WakrqciZ7Fz7mwPDHWUJAXlABL5hiUG42BNlRXiELNjeWjO5rWmnNKlx+yzJvxezHow==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-plugin-utils': 7.14.5
- '@babel/helper-validator-option': 7.14.5
- '@babel/plugin-transform-typescript': 7.15.4_@babel+core@7.15.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/runtime/7.15.4:
resolution: {integrity: sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==}
engines: {node: '>=6.9.0'}
@@ -2046,12 +1169,6 @@ packages:
chalk: 4.1.2
dev: true
- /@nicolo-ribaudo/chokidar-2/2.1.8-no-fsevents.3:
- resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==}
- requiresBuild: true
- dev: true
- optional: true
-
/@nodelib/fs.scandir/2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -2412,6 +1529,12 @@ packages:
'@sinonjs/commons': 1.8.1
dev: true
+ /@sucrase/jest-plugin/2.1.1:
+ resolution: {integrity: sha512-1j+exUcbLRgka2lq/i0IVOYcmrMW1wYPtxJY/+RvZkAQG9GD7lygj5OiHWFKWmynltAg9+x1d5NWQQYNdBTkpQ==}
+ dependencies:
+ sucrase: 3.20.1
+ dev: true
+
/@tootallnate/once/1.1.2:
resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
engines: {node: '>= 6'}
@@ -2827,27 +1950,6 @@ packages:
vscode-uri: 2.1.2
dev: true
- /@vue/babel-helper-vue-transform-on/1.0.2:
- resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==}
- dev: true
-
- /@vue/babel-plugin-jsx/1.0.7_@babel+core@7.15.5:
- resolution: {integrity: sha512-B5ctmlVk+vfyIV6PuvQkRB512c6LX2BUvJdNP9gOcllnpg9yrls9bDi7b3+tkAdT8+w1OoWsuJHHEV0Ntd67KQ==}
- dependencies:
- '@babel/helper-module-imports': 7.15.4
- '@babel/plugin-syntax-jsx': 7.14.5_@babel+core@7.15.5
- '@babel/template': 7.15.4
- '@babel/traverse': 7.15.4
- '@babel/types': 7.15.4
- '@vue/babel-helper-vue-transform-on': 1.0.2
- camelcase: 6.2.0
- html-tags: 3.1.0
- svg-tags: 1.0.0
- transitivePeerDependencies:
- - '@babel/core'
- - supports-color
- dev: true
-
/@vue/compiler-core/3.2.18:
resolution: {integrity: sha512-zNKVUx2gN/46xjKy+fNRB3+PJVO2WoGUUdpQo9w5GylWj8vs/r7pMuzQralP8J02YDp6YgJ61v1Yjq7nW5xK6Q==}
dependencies:
@@ -3491,10 +2593,6 @@ packages:
- debug
dev: false
- /babel-helper-vue-jsx-merge-props/2.0.3:
- resolution: {integrity: sha512-gsLiKK7Qrb7zYJNgiXKpXblxbV5ffSwR0f5whkPAaBAR4fhi6bwRZxX9wBlIc5M/v8CCkXUbXZL4N/nSE97cqg==}
- dev: true
-
/babel-jest/26.6.3_@babel+core@7.15.5:
resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==}
engines: {node: '>= 10.14.2'}
@@ -3543,88 +2641,6 @@ packages:
'@types/babel__traverse': 7.11.0
dev: true
- /babel-plugin-jsx-event-modifiers/2.0.5:
- resolution: {integrity: sha512-tWGnCk0whZ+nZcj9tYLw4+y08tPJXqaEjIxRJZS6DkUUae72Kz4BsoGpxt/Kow7mmgQJpvFCw8IPLSNh5rkZCg==}
- dev: true
-
- /babel-plugin-jsx-v-model/2.0.3:
- resolution: {integrity: sha512-SIx3Y3XxwGEz56Q1atwr5GaZsxJ2IRYmn5dl38LFkaTAvjnbNQxsZHO+ylJPsd+Hmv+ixJBYYFEekPBTHwiGfQ==}
- dependencies:
- babel-plugin-syntax-jsx: 6.18.0
- html-tags: 2.0.0
- svg-tags: 1.0.0
- dev: true
-
- /babel-plugin-lodash/3.3.4:
- resolution: {integrity: sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==}
- dependencies:
- '@babel/helper-module-imports': 7.15.4
- '@babel/types': 7.15.4
- glob: 7.1.7
- lodash: 4.17.21
- require-package-name: 2.0.1
- dev: true
-
- /babel-plugin-module-resolver/4.1.0:
- resolution: {integrity: sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==}
- engines: {node: '>= 8.0.0'}
- dependencies:
- find-babel-config: 1.2.0
- glob: 7.1.7
- pkg-up: 3.1.0
- reselect: 4.0.0
- resolve: 1.20.0
- dev: true
-
- /babel-plugin-polyfill-corejs2/0.2.2_@babel+core@7.15.5:
- resolution: {integrity: sha512-kISrENsJ0z5dNPq5eRvcctITNHYXWOA4DUZRFYCz3jYCcvTb/A546LIddmoGNMVYg2U38OyFeNosQwI9ENTqIQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.15.0
- '@babel/core': 7.15.5
- '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.15.5
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-corejs3/0.2.4_@babel+core@7.15.5:
- resolution: {integrity: sha512-z3HnJE5TY/j4EFEa/qpQMSbcUJZ5JQi+3UFjXzn6pQCmIKc5Ug5j98SuYyH+m4xQnvKlMDIW4plLfgyVnd0IcQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.15.5
- core-js-compat: 3.17.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-polyfill-regenerator/0.2.2_@babel+core@7.15.5:
- resolution: {integrity: sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.15.5
- '@babel/helper-define-polyfill-provider': 0.2.3_@babel+core@7.15.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-plugin-syntax-jsx/6.18.0:
- resolution: {integrity: sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=}
- dev: true
-
- /babel-plugin-transform-vue-jsx/3.7.0_5b6fc1b18b04c575d0ce5bffb8f53b98:
- resolution: {integrity: sha512-W39X07/n3oJMQd8tALBO+440NraGSF//Lo1ydd/9Nme3+QiRGFBb1Q39T9iixh0jZPPbfv3so18tNoIgLatymw==}
- peerDependencies:
- babel-helper-vue-jsx-merge-props: ^2.0.0
- dependencies:
- babel-helper-vue-jsx-merge-props: 2.0.3
- esutils: 2.0.3
- dev: true
-
/babel-preset-current-node-syntax/1.0.1_@babel+core@7.15.5:
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
@@ -3656,17 +2672,6 @@ packages:
babel-preset-current-node-syntax: 1.0.1_@babel+core@7.15.5
dev: true
- /babel-preset-vue/2.0.2:
- resolution: {integrity: sha1-z63xvXNhJTl0gbX4UlztAEmgxx8=}
- engines: {node: '>=4'}
- dependencies:
- babel-helper-vue-jsx-merge-props: 2.0.3
- babel-plugin-jsx-event-modifiers: 2.0.5
- babel-plugin-jsx-v-model: 2.0.3
- babel-plugin-syntax-jsx: 6.18.0
- babel-plugin-transform-vue-jsx: 3.7.0_5b6fc1b18b04c575d0ce5bffb8f53b98
- dev: true
-
/babel-walk/3.0.0-canary-5:
resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==}
engines: {node: '>= 10.0.0'}
@@ -4426,13 +3431,6 @@ packages:
is-plain-object: 2.0.4
dev: true
- /core-js-compat/3.17.2:
- resolution: {integrity: sha512-lHnt7A1Oqplebl5i0MrQyFv/yyEzr9p29OjlkcsFRDDgHwwQyVckfRGJ790qzXhkwM8ba4SFHHa2sO+T5f1zGg==}
- dependencies:
- browserslist: 4.16.8
- semver: 7.0.0
- dev: true
-
/core-util-is/1.0.2:
resolution: {integrity: sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=}
dev: true
@@ -4832,8 +3830,8 @@ packages:
resolution: {integrity: sha512-2jtSwgyiRzybHRxrc2nKI+39wH3AwQgn+sogQ+q814gv8hIFwrcZbV07Ea9f8AmK0ufPVZUvvAG1uZJ+obV4Jw==}
dev: true
- /element-plus/1.1.0-beta.16_vue@3.2.18:
- resolution: {integrity: sha512-4BZEldnIfFZs5A/saRqaWE4PwTot4p3YZU7qsDr3ev2zp35pcCL9TtpWMLIvNTMxvxKew0HTDPTk9fAWIZFQrQ==}
+ /element-plus/1.1.0-beta.17_vue@3.2.18:
+ resolution: {integrity: sha512-xUJME+lWYqujGmu8dIcyo4FT5SxqLI8WmqBLL1EdvH/QiFHI8UXx7StB4bFpq8+ooIEHU3a0CccVzMSPEF3obQ==}
peerDependencies:
vue: ^3.2.0
dependencies:
@@ -4843,7 +3841,7 @@ packages:
dayjs: 1.10.7
lodash: 4.17.21
memoize-one: 5.2.1
- normalize-wheel: 1.0.1
+ normalize-wheel-es: 1.1.0
resize-observer-polyfill: 1.5.1
vue: 3.2.18
transitivePeerDependencies:
@@ -5656,14 +4654,6 @@ packages:
dependencies:
to-regex-range: 5.0.1
- /find-babel-config/1.2.0:
- resolution: {integrity: sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==}
- engines: {node: '>=4.0.0'}
- dependencies:
- json5: 0.5.1
- path-exists: 3.0.0
- dev: true
-
/find-node-modules/2.0.0:
resolution: {integrity: sha512-8MWIBRgJi/WpjjfVXumjPKCtmQ10B+fjx6zmSA+770GMJirLhWIzg8l763rhjl9xaeaHbnxPNRQKq2mgMhr+aw==}
dependencies:
@@ -5700,13 +4690,6 @@ packages:
locate-path: 2.0.0
dev: true
- /find-up/3.0.0:
- resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
- engines: {node: '>=6'}
- dependencies:
- locate-path: 3.0.0
- dev: true
-
/find-up/4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
@@ -5857,10 +4840,6 @@ packages:
through2: 2.0.5
dev: true
- /fs-readdir-recursive/1.1.0:
- resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==}
- dev: true
-
/fs.realpath/1.0.0:
resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
dev: true
@@ -6381,16 +5360,6 @@ packages:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
dev: true
- /html-tags/2.0.0:
- resolution: {integrity: sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos=}
- engines: {node: '>=4'}
- dev: true
-
- /html-tags/3.1.0:
- resolution: {integrity: sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==}
- engines: {node: '>=8'}
- dev: true
-
/htmlparser2/6.1.0:
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
dependencies:
@@ -7517,11 +6486,6 @@ packages:
- utf-8-validate
dev: true
- /jsesc/0.5.0:
- resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=}
- hasBin: true
- dev: true
-
/jsesc/2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
@@ -7556,11 +6520,6 @@ packages:
resolution: {integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=}
dev: true
- /json5/0.5.1:
- resolution: {integrity: sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=}
- hasBin: true
- dev: true
-
/json5/1.0.1:
resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==}
hasBin: true
@@ -7804,14 +6763,6 @@ packages:
path-exists: 3.0.0
dev: true
- /locate-path/3.0.0:
- resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
- engines: {node: '>=6'}
- dependencies:
- p-locate: 3.0.0
- path-exists: 3.0.0
- dev: true
-
/locate-path/5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
@@ -7834,10 +6785,6 @@ packages:
resolution: {integrity: sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=}
dev: true
- /lodash.debounce/4.0.8:
- resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=}
- dev: true
-
/lodash.map/4.6.0:
resolution: {integrity: sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=}
dev: true
@@ -7917,14 +6864,6 @@ packages:
sourcemap-codec: 1.4.8
dev: true
- /make-dir/2.1.0:
- resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
- engines: {node: '>=6'}
- dependencies:
- pify: 4.0.1
- semver: 5.7.1
- dev: true
-
/make-dir/3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
@@ -8440,10 +7379,6 @@ packages:
resolution: {integrity: sha512-gkcE5xzp8WkSGgu2HItXePGyh3qDOetgPYg0RnjclOIaWTCMB75NTrk0t6KVlbm6ShSikV3ykBFZMiR9GDkvkA==}
dev: false
- /normalize-wheel/1.0.1:
- resolution: {integrity: sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU=}
- dev: false
-
/normalize.css/8.0.1:
resolution: {integrity: sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==}
dev: false
@@ -8763,13 +7698,6 @@ packages:
p-limit: 1.3.0
dev: true
- /p-locate/3.0.0:
- resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
- engines: {node: '>=6'}
- dependencies:
- p-limit: 2.3.0
- dev: true
-
/p-locate/4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
@@ -9004,11 +7932,6 @@ packages:
engines: {node: '>=4'}
dev: true
- /pify/4.0.1:
- resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
- engines: {node: '>=6'}
- dev: true
-
/pinkie-promise/2.0.1:
resolution: {integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o=}
engines: {node: '>=0.10.0'}
@@ -9049,13 +7972,6 @@ packages:
find-up: 2.1.0
dev: true
- /pkg-up/3.1.0:
- resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
- engines: {node: '>=8'}
- dependencies:
- find-up: 3.0.0
- dev: true
-
/please-upgrade-node/3.2.0:
resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==}
dependencies:
@@ -9514,27 +8430,10 @@ packages:
strip-indent: 3.0.0
dev: true
- /regenerate-unicode-properties/8.2.0:
- resolution: {integrity: sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==}
- engines: {node: '>=4'}
- dependencies:
- regenerate: 1.4.2
- dev: true
-
- /regenerate/1.4.2:
- resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- dev: true
-
/regenerator-runtime/0.13.9:
resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
dev: true
- /regenerator-transform/0.14.5:
- resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==}
- dependencies:
- '@babel/runtime': 7.15.4
- dev: true
-
/regex-not/1.0.2:
resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
engines: {node: '>=0.10.0'}
@@ -9548,29 +8447,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /regexpu-core/4.7.1:
- resolution: {integrity: sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==}
- engines: {node: '>=4'}
- dependencies:
- regenerate: 1.4.2
- regenerate-unicode-properties: 8.2.0
- regjsgen: 0.5.2
- regjsparser: 0.6.9
- unicode-match-property-ecmascript: 1.0.4
- unicode-match-property-value-ecmascript: 1.2.0
- dev: true
-
- /regjsgen/0.5.2:
- resolution: {integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==}
- dev: true
-
- /regjsparser/0.6.9:
- resolution: {integrity: sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==}
- hasBin: true
- dependencies:
- jsesc: 0.5.0
- dev: true
-
/remove-bom-buffer/3.0.0:
resolution: {integrity: sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==}
engines: {node: '>=0.10.0'}
@@ -9693,14 +8569,6 @@ packages:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
dev: true
- /require-package-name/2.0.1:
- resolution: {integrity: sha1-wR6XJ2tluOKSP3Xav1+y7ww4Qbk=}
- dev: true
-
- /reselect/4.0.0:
- resolution: {integrity: sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA==}
- dev: true
-
/resize-observer-polyfill/1.5.1:
resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
dev: false
@@ -9984,11 +8852,6 @@ packages:
hasBin: true
dev: true
- /semver/7.0.0:
- resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
- hasBin: true
- dev: true
-
/semver/7.3.5:
resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==}
engines: {node: '>=10'}
@@ -10081,11 +8944,6 @@ packages:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
dev: true
- /slash/2.0.0:
- resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==}
- engines: {node: '>=6'}
- dev: true
-
/slash/3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
@@ -10534,10 +9392,6 @@ packages:
es6-symbol: 3.1.3
dev: true
- /svg-tags/1.0.0:
- resolution: {integrity: sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=}
- dev: true
-
/symbol-tree/3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
dev: true
@@ -10952,29 +9806,6 @@ packages:
undertaker-registry: 1.0.1
dev: true
- /unicode-canonical-property-names-ecmascript/1.0.4:
- resolution: {integrity: sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==}
- engines: {node: '>=4'}
- dev: true
-
- /unicode-match-property-ecmascript/1.0.4:
- resolution: {integrity: sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==}
- engines: {node: '>=4'}
- dependencies:
- unicode-canonical-property-names-ecmascript: 1.0.4
- unicode-property-aliases-ecmascript: 1.1.0
- dev: true
-
- /unicode-match-property-value-ecmascript/1.2.0:
- resolution: {integrity: sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==}
- engines: {node: '>=4'}
- dev: true
-
- /unicode-property-aliases-ecmascript/1.1.0:
- resolution: {integrity: sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==}
- engines: {node: '>=4'}
- dev: true
-
/union-value/1.0.1:
resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
engines: {node: '>=0.10.0'}
@@ -11387,7 +10218,7 @@ packages:
- supports-color
dev: true
- /vue-jest/5.0.0-alpha.5_4562d150aec6c8bdc3057da2215d1eaf:
+ /vue-jest/5.0.0-alpha.5_7d4d0ce22d61872ca4faff1403434c98:
resolution: {integrity: sha512-/ddNgiJYEtStK4kfTgIRSpBrkkrFepsCyu6qhIi2ph8rJk8OaI6HJANMjzD2tz2mnGqQOf0mTyZICVfDnLLZHA==}
peerDependencies:
'@babel/core': 7.x
@@ -11401,9 +10232,7 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.15.5
- '@babel/plugin-transform-modules-commonjs': 7.15.4_@babel+core@7.15.5
- babel-jest: 26.6.3_@babel+core@7.15.5
+ '@babel/plugin-transform-modules-commonjs': 7.15.4
chalk: 2.4.2
convert-source-map: 1.8.0
extract-from-css: 0.4.4