summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2022-05-31 09:46:13 -0700
committerGravatar GitHub <noreply@github.com> 2022-05-31 11:46:13 -0500
commitc9d8b10a854739e4911cd058ccabbb60035a670e (patch)
tree23de7ecd05ced2998cd49aaf63b8747b2aa65bab
parente9a77d861907adccfa75811f9aaa555f186d78f8 (diff)
downloadastro-c9d8b10a854739e4911cd058ccabbb60035a670e.tar.gz
astro-c9d8b10a854739e4911cd058ccabbb60035a670e.tar.zst
astro-c9d8b10a854739e4911cd058ccabbb60035a670e.zip
[ci] update lockfile (#3448)
Co-authored-by: FredKSchott <FredKSchott@users.noreply.github.com>
-rw-r--r--examples/framework-lit/package.json2
-rw-r--r--examples/framework-multiple/package.json4
-rw-r--r--examples/framework-solid/package.json2
-rw-r--r--examples/integrations-playground/package.json4
-rw-r--r--package.json4
-rw-r--r--packages/astro/e2e/fixtures/lit-component/package.json2
-rw-r--r--packages/astro/e2e/fixtures/multiple-frameworks/package.json6
-rw-r--r--packages/astro/e2e/fixtures/solid-component/package.json2
-rw-r--r--packages/astro/package.json14
-rw-r--r--packages/astro/test/fixtures/astro-markdown-plugins/package.json2
-rw-r--r--packages/astro/test/fixtures/css-assets/package.json4
-rw-r--r--packages/integrations/lit/package.json2
-rw-r--r--packages/integrations/solid/package.json2
-rw-r--r--packages/integrations/svelte/package.json2
-rw-r--r--packages/webapi/package.json2
-rw-r--r--pnpm-lock.yaml834
-rw-r--r--scripts/package.json2
17 files changed, 485 insertions, 405 deletions
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index b392dc502..0fd9115fe 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -14,6 +14,6 @@
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
- "lit": "^2.2.4"
+ "lit": "^2.2.5"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index c20b1a839..d182c1ef7 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -19,11 +19,11 @@
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
- "lit": "^2.2.4",
+ "lit": "^2.2.5",
"preact": "^10.7.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
- "solid-js": "^1.4.2",
+ "solid-js": "^1.4.3",
"svelte": "^3.48.0",
"vue": "^3.2.36"
}
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 1cf5ac4a1..aff46fd96 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -13,6 +13,6 @@
"astro": "^1.0.0-beta.37"
},
"dependencies": {
- "solid-js": "^1.4.2"
+ "solid-js": "^1.4.3"
}
}
diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json
index b239959f6..4c1400776 100644
--- a/examples/integrations-playground/package.json
+++ b/examples/integrations-playground/package.json
@@ -17,11 +17,11 @@
"@astrojs/tailwind": "^0.2.1",
"@astrojs/turbolinks": "^0.1.3",
"astro": "^1.0.0-beta.37",
- "solid-js": "^1.4.2"
+ "solid-js": "^1.4.3"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
- "lit": "^2.2.4",
+ "lit": "^2.2.5",
"preact": "^10.7.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
diff --git a/package.json b/package.json
index e417b8239..f8ecd5c6c 100644
--- a/package.json
+++ b/package.json
@@ -62,8 +62,8 @@
"@octokit/action": "^3.18.1",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
- "del": "^6.1.0",
- "esbuild": "^0.14.39",
+ "del": "^6.1.1",
+ "esbuild": "^0.14.40",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
diff --git a/packages/astro/e2e/fixtures/lit-component/package.json b/packages/astro/e2e/fixtures/lit-component/package.json
index 0c88ea989..8781654d7 100644
--- a/packages/astro/e2e/fixtures/lit-component/package.json
+++ b/packages/astro/e2e/fixtures/lit-component/package.json
@@ -6,6 +6,6 @@
"@astrojs/lit": "workspace:*",
"@webcomponents/template-shadowroot": "^0.1.0",
"astro": "workspace:*",
- "lit": "^2.2.4"
+ "lit": "^2.2.5"
}
}
diff --git a/packages/astro/e2e/fixtures/multiple-frameworks/package.json b/packages/astro/e2e/fixtures/multiple-frameworks/package.json
index a0a8ce229..5c47ea5d6 100644
--- a/packages/astro/e2e/fixtures/multiple-frameworks/package.json
+++ b/packages/astro/e2e/fixtures/multiple-frameworks/package.json
@@ -9,15 +9,15 @@
"@astrojs/solid-js": "^0.1.2",
"@astrojs/svelte": "^0.1.3",
"@astrojs/vue": "^0.1.4",
- "astro": "^1.0.0-beta.32"
+ "astro": "^1.0.0-beta.35"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
- "lit": "^2.2.4",
+ "lit": "^2.2.5",
"preact": "^10.7.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
- "solid-js": "^1.4.2",
+ "solid-js": "^1.4.3",
"svelte": "^3.48.0",
"vue": "^3.2.36"
}
diff --git a/packages/astro/e2e/fixtures/solid-component/package.json b/packages/astro/e2e/fixtures/solid-component/package.json
index 1c41fb385..5eef50d71 100644
--- a/packages/astro/e2e/fixtures/solid-component/package.json
+++ b/packages/astro/e2e/fixtures/solid-component/package.json
@@ -7,6 +7,6 @@
"astro": "workspace:*"
},
"devDependencies": {
- "solid-js": "^1.4.2"
+ "solid-js": "^1.4.3"
}
}
diff --git a/packages/astro/package.json b/packages/astro/package.json
index f52256356..2b20b4ed2 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -83,10 +83,10 @@
"@astrojs/prism": "0.4.1",
"@astrojs/telemetry": "^0.1.2",
"@astrojs/webapi": "^0.12.0",
- "@babel/core": "^7.18.0",
- "@babel/generator": "^7.18.0",
- "@babel/parser": "^7.18.0",
- "@babel/traverse": "^7.18.0",
+ "@babel/core": "^7.18.2",
+ "@babel/generator": "^7.18.2",
+ "@babel/parser": "^7.18.3",
+ "@babel/traverse": "^7.18.2",
"@proload/core": "^0.3.2",
"@proload/plugin-tsm": "^0.2.1",
"ast-types": "^0.14.2",
@@ -97,7 +97,7 @@
"diff": "^5.1.0",
"eol": "^0.9.1",
"es-module-lexer": "^0.10.5",
- "esbuild": "^0.14.39",
+ "esbuild": "^0.14.40",
"estree-walker": "^3.0.1",
"execa": "^6.1.0",
"fast-glob": "^3.2.11",
@@ -119,7 +119,7 @@
"prompts": "^2.4.2",
"recast": "^0.20.5",
"resolve": "^1.22.0",
- "rollup": "^2.74.1",
+ "rollup": "^2.75.0",
"semver": "^7.3.7",
"serialize-javascript": "^6.0.0",
"shiki": "^0.10.1",
@@ -135,7 +135,7 @@
"zod": "^3.17.3"
},
"devDependencies": {
- "@babel/types": "^7.18.0",
+ "@babel/types": "^7.18.2",
"@playwright/test": "^1.22.2",
"@types/babel__core": "^7.1.19",
"@types/babel__generator": "^7.6.4",
diff --git a/packages/astro/test/fixtures/astro-markdown-plugins/package.json b/packages/astro/test/fixtures/astro-markdown-plugins/package.json
index 3335ff4ab..bdad17d55 100644
--- a/packages/astro/test/fixtures/astro-markdown-plugins/package.json
+++ b/packages/astro/test/fixtures/astro-markdown-plugins/package.json
@@ -5,7 +5,7 @@
"dependencies": {
"@astrojs/preact": "workspace:*",
"astro": "workspace:*",
- "hast-util-select": "^5.0.1",
+ "hast-util-select": "^5.0.2",
"rehype-slug": "^5.0.1"
}
}
diff --git a/packages/astro/test/fixtures/css-assets/package.json b/packages/astro/test/fixtures/css-assets/package.json
index 49471d1b7..7cd548f68 100644
--- a/packages/astro/test/fixtures/css-assets/package.json
+++ b/packages/astro/test/fixtures/css-assets/package.json
@@ -3,7 +3,7 @@
"version": "0.0.0",
"private": true,
"dependencies": {
- "astro": "workspace:*",
- "@astrojs/test-font-awesome-package": "file:./packages/font-awesome"
+ "@astrojs/test-font-awesome-package": "file:packages/font-awesome",
+ "astro": "workspace:*"
}
}
diff --git a/packages/integrations/lit/package.json b/packages/integrations/lit/package.json
index 16c83e51c..727d849b6 100644
--- a/packages/integrations/lit/package.json
+++ b/packages/integrations/lit/package.json
@@ -32,7 +32,7 @@
"test": "mocha"
},
"dependencies": {
- "@lit-labs/ssr": "^2.1.0"
+ "@lit-labs/ssr": "^2.2.0"
},
"devDependencies": {
"astro": "workspace:*",
diff --git a/packages/integrations/solid/package.json b/packages/integrations/solid/package.json
index 6360a6c49..47e1587ce 100644
--- a/packages/integrations/solid/package.json
+++ b/packages/integrations/solid/package.json
@@ -36,7 +36,7 @@
"devDependencies": {
"astro": "workspace:*",
"astro-scripts": "workspace:*",
- "solid-js": "^1.4.2"
+ "solid-js": "^1.4.3"
},
"peerDependencies": {
"solid-js": "^1.3.6"
diff --git a/packages/integrations/svelte/package.json b/packages/integrations/svelte/package.json
index 77122989b..7573c2c47 100644
--- a/packages/integrations/svelte/package.json
+++ b/packages/integrations/svelte/package.json
@@ -31,7 +31,7 @@
"dev": "astro-scripts dev \"src/**/*.ts\""
},
"dependencies": {
- "@sveltejs/vite-plugin-svelte": "^1.0.0-next.44",
+ "@sveltejs/vite-plugin-svelte": "^1.0.0-next.45",
"postcss-load-config": "^3.1.4",
"svelte-preprocess": "^4.10.6",
"vite": "^2.9.9"
diff --git a/packages/webapi/package.json b/packages/webapi/package.json
index f042bb408..346715274 100644
--- a/packages/webapi/package.json
+++ b/packages/webapi/package.json
@@ -68,7 +68,7 @@
"formdata-polyfill": "^4.0.10",
"magic-string": "^0.25.9",
"mocha": "^9.2.2",
- "rollup": "^2.74.1",
+ "rollup": "^2.75.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "~4.7.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index d11e02081..a61f245ef 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,8 +10,8 @@ importers:
'@octokit/action': ^3.18.1
'@typescript-eslint/eslint-plugin': ^5.26.0
'@typescript-eslint/parser': ^5.26.0
- del: ^6.1.0
- esbuild: ^0.14.39
+ del: ^6.1.1
+ esbuild: ^0.14.40
eslint: ^8.16.0
eslint-config-prettier: ^8.5.0
eslint-plugin-prettier: ^4.0.0
@@ -31,7 +31,7 @@ importers:
'@typescript-eslint/eslint-plugin': 5.26.0_hzuh7e2up357pvq3mkokjvu2lq
'@typescript-eslint/parser': 5.26.0_xztl6dhthcahlo6akmb2bmjmle
del: 6.1.1
- esbuild: 0.14.39
+ esbuild: 0.14.42
eslint: 8.16.0
eslint-config-prettier: 8.5.0_eslint@8.16.0
eslint-plugin-prettier: 4.0.0_j7rsahgqtkecno6yauhsgsglf4
@@ -135,7 +135,7 @@ importers:
'@astrojs/lit': ^0.1.3
'@webcomponents/template-shadowroot': ^0.1.0
astro: ^1.0.0-beta.37
- lit: ^2.2.4
+ lit: ^2.2.5
dependencies:
'@webcomponents/template-shadowroot': 0.1.0
lit: 2.2.5
@@ -153,11 +153,11 @@ importers:
'@astrojs/vue': ^0.1.4
'@webcomponents/template-shadowroot': ^0.1.0
astro: ^1.0.0-beta.37
- lit: ^2.2.4
+ lit: ^2.2.5
preact: ^10.7.2
react: ^18.1.0
react-dom: ^18.1.0
- solid-js: ^1.4.2
+ solid-js: ^1.4.3
svelte: ^3.48.0
vue: ^3.2.36
dependencies:
@@ -210,7 +210,7 @@ importers:
specifiers:
'@astrojs/solid-js': ^0.1.2
astro: ^1.0.0-beta.37
- solid-js: ^1.4.2
+ solid-js: ^1.4.3
dependencies:
solid-js: 1.4.3
devDependencies:
@@ -250,11 +250,11 @@ importers:
'@astrojs/turbolinks': ^0.1.3
'@webcomponents/template-shadowroot': ^0.1.0
astro: ^1.0.0-beta.37
- lit: ^2.2.4
+ lit: ^2.2.5
preact: ^10.7.2
react: ^18.1.0
react-dom: ^18.1.0
- solid-js: ^1.4.2
+ solid-js: ^1.4.3
svelte: ^3.48.0
vue: ^3.2.36
dependencies:
@@ -465,11 +465,11 @@ importers:
'@astrojs/prism': 0.4.1
'@astrojs/telemetry': ^0.1.2
'@astrojs/webapi': ^0.12.0
- '@babel/core': ^7.18.0
- '@babel/generator': ^7.18.0
- '@babel/parser': ^7.18.0
- '@babel/traverse': ^7.18.0
- '@babel/types': ^7.18.0
+ '@babel/core': ^7.18.2
+ '@babel/generator': ^7.18.2
+ '@babel/parser': ^7.18.3
+ '@babel/traverse': ^7.18.2
+ '@babel/types': ^7.18.2
'@playwright/test': ^1.22.2
'@proload/core': ^0.3.2
'@proload/plugin-tsm': ^0.2.1
@@ -504,7 +504,7 @@ importers:
diff: ^5.1.0
eol: ^0.9.1
es-module-lexer: ^0.10.5
- esbuild: ^0.14.39
+ esbuild: ^0.14.40
estree-walker: ^3.0.1
execa: ^6.1.0
fast-glob: ^3.2.11
@@ -527,7 +527,7 @@ importers:
prompts: ^2.4.2
recast: ^0.20.5
resolve: ^1.22.0
- rollup: ^2.74.1
+ rollup: ^2.75.0
sass: ^1.52.1
semver: ^7.3.7
serialize-javascript: ^6.0.0
@@ -550,10 +550,10 @@ importers:
'@astrojs/prism': link:../astro-prism
'@astrojs/telemetry': link:../telemetry
'@astrojs/webapi': link:../webapi
- '@babel/core': 7.18.0
- '@babel/generator': 7.18.0
- '@babel/parser': 7.18.0
- '@babel/traverse': 7.18.0
+ '@babel/core': 7.18.2
+ '@babel/generator': 7.18.2
+ '@babel/parser': 7.18.4
+ '@babel/traverse': 7.18.2
'@proload/core': 0.3.2
'@proload/plugin-tsm': 0.2.1_@proload+core@0.3.2
ast-types: 0.14.2
@@ -564,7 +564,7 @@ importers:
diff: 5.1.0
eol: 0.9.1
es-module-lexer: 0.10.5
- esbuild: 0.14.39
+ esbuild: 0.14.42
estree-walker: 3.0.1
execa: 6.1.0
fast-glob: 3.2.11
@@ -586,7 +586,7 @@ importers:
prompts: 2.4.2
recast: 0.20.5
resolve: 1.22.0
- rollup: 2.74.1
+ rollup: 2.75.4
semver: 7.3.7
serialize-javascript: 6.0.0
shiki: 0.10.1
@@ -601,7 +601,7 @@ importers:
yargs-parser: 21.0.1
zod: 3.17.3
devDependencies:
- '@babel/types': 7.18.0
+ '@babel/types': 7.18.4
'@playwright/test': 1.22.2
'@types/babel__core': 7.1.19
'@types/babel__generator': 7.6.4
@@ -699,7 +699,7 @@ importers:
'@astrojs/lit': workspace:*
'@webcomponents/template-shadowroot': ^0.1.0
astro: workspace:*
- lit: ^2.2.4
+ lit: ^2.2.5
dependencies:
'@astrojs/lit': link:../../../../integrations/lit
'@webcomponents/template-shadowroot': 0.1.0
@@ -715,12 +715,12 @@ importers:
'@astrojs/svelte': ^0.1.3
'@astrojs/vue': ^0.1.4
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^1.0.0-beta.32
- lit: ^2.2.4
+ astro: ^1.0.0-beta.35
+ lit: ^2.2.5
preact: ^10.7.2
react: ^18.1.0
react-dom: ^18.1.0
- solid-js: ^1.4.2
+ solid-js: ^1.4.3
svelte: ^3.48.0
vue: ^3.2.36
dependencies:
@@ -759,7 +759,7 @@ importers:
preact: 10.7.2
react: 18.1.0
react-dom: 18.1.0_react@18.1.0
- solid-js: 1.4.2
+ solid-js: 1.4.3
svelte: 3.48.0
vue: 3.2.36
devDependencies:
@@ -788,7 +788,7 @@ importers:
preact: 10.7.2
react: 18.1.0
react-dom: 18.1.0_react@18.1.0
- solid-js: 1.4.2
+ solid-js: 1.4.3
svelte: 3.48.0
vue: 3.2.36
devDependencies:
@@ -817,7 +817,7 @@ importers:
preact: 10.7.2
react: 18.1.0
react-dom: 18.1.0_react@18.1.0
- solid-js: 1.4.2
+ solid-js: 1.4.3
svelte: 3.48.0
vue: 3.2.36
devDependencies:
@@ -846,7 +846,7 @@ importers:
preact: 10.7.2
react: 18.1.0
react-dom: 18.1.0_react@18.1.0
- solid-js: 1.4.2
+ solid-js: 1.4.3
svelte: 3.48.0
vue: 3.2.36
devDependencies:
@@ -875,7 +875,7 @@ importers:
preact: 10.7.2
react: 18.1.0
react-dom: 18.1.0_react@18.1.0
- solid-js: 1.4.2
+ solid-js: 1.4.3
svelte: 3.48.0
vue: 3.2.36
devDependencies:
@@ -918,7 +918,7 @@ importers:
specifiers:
'@astrojs/solid-js': workspace:*
astro: workspace:*
- solid-js: ^1.4.2
+ solid-js: ^1.4.3
dependencies:
'@astrojs/solid-js': link:../../../../integrations/solid
astro: link:../../..
@@ -1147,7 +1147,7 @@ importers:
specifiers:
'@astrojs/preact': workspace:*
astro: workspace:*
- hast-util-select: ^5.0.1
+ hast-util-select: ^5.0.2
rehype-slug: ^5.0.1
dependencies:
'@astrojs/preact': link:../../../../integrations/preact
@@ -1285,7 +1285,7 @@ importers:
packages/astro/test/fixtures/css-assets:
specifiers:
- '@astrojs/test-font-awesome-package': file:./packages/font-awesome
+ '@astrojs/test-font-awesome-package': file:packages/font-awesome
astro: workspace:*
dependencies:
'@astrojs/test-font-awesome-package': file:packages/astro/test/fixtures/css-assets/packages/font-awesome
@@ -1661,7 +1661,7 @@ importers:
packages/integrations/lit:
specifiers:
- '@lit-labs/ssr': ^2.1.0
+ '@lit-labs/ssr': ^2.2.0
astro: workspace:*
astro-scripts: workspace:*
cheerio: ^1.0.0-rc.11
@@ -1779,7 +1779,7 @@ importers:
astro: workspace:*
astro-scripts: workspace:*
babel-preset-solid: ^1.4.2
- solid-js: ^1.4.2
+ solid-js: ^1.4.3
dependencies:
babel-preset-solid: 1.4.2
devDependencies:
@@ -1789,7 +1789,7 @@ importers:
packages/integrations/svelte:
specifiers:
- '@sveltejs/vite-plugin-svelte': ^1.0.0-next.44
+ '@sveltejs/vite-plugin-svelte': ^1.0.0-next.45
astro: workspace:*
astro-scripts: workspace:*
postcss-load-config: ^3.1.4
@@ -1797,7 +1797,7 @@ importers:
svelte-preprocess: ^4.10.6
vite: ^2.9.9
dependencies:
- '@sveltejs/vite-plugin-svelte': 1.0.0-next.45_svelte@3.48.0+vite@2.9.9
+ '@sveltejs/vite-plugin-svelte': 1.0.0-next.46_svelte@3.48.0+vite@2.9.9
postcss-load-config: 3.1.4
svelte-preprocess: 4.10.6_xxnnhi7j46bwl35r5gwl6d4d6q
vite: 2.9.9
@@ -1974,7 +1974,7 @@ importers:
magic-string: ^0.25.9
mocha: ^9.2.2
node-fetch: ^3.2.4
- rollup: ^2.74.1
+ rollup: ^2.75.0
rollup-plugin-terser: ^7.0.2
tslib: ^2.4.0
typescript: ~4.7.0
@@ -1983,10 +1983,10 @@ importers:
dependencies:
node-fetch: 3.2.4
devDependencies:
- '@rollup/plugin-alias': 3.1.9_rollup@2.74.1
- '@rollup/plugin-inject': 4.0.4_rollup@2.74.1
- '@rollup/plugin-node-resolve': 13.3.0_rollup@2.74.1
- '@rollup/plugin-typescript': 8.3.2_faevwvm44lwfnesbzt627ggdse
+ '@rollup/plugin-alias': 3.1.9_rollup@2.75.4
+ '@rollup/plugin-inject': 4.0.4_rollup@2.75.4
+ '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.4
+ '@rollup/plugin-typescript': 8.3.2_a2xpdkfyiu2hqx4t4ni57qpbv4
'@types/chai': 4.3.1
'@types/mocha': 9.1.1
'@types/node': 14.18.18
@@ -1998,8 +1998,8 @@ importers:
formdata-polyfill: 4.0.10
magic-string: 0.25.9
mocha: 9.2.2
- rollup: 2.74.1
- rollup-plugin-terser: 7.0.2_rollup@2.74.1
+ rollup: 2.75.4
+ rollup-plugin-terser: 7.0.2_rollup@2.75.4
tslib: 2.4.0
typescript: 4.7.2
urlpattern-polyfill: 1.0.0-rc5
@@ -2010,7 +2010,7 @@ importers:
'@astrojs/webapi': workspace:*
adm-zip: ^0.5.9
arg: ^5.0.1
- esbuild: ^0.14.39
+ esbuild: ^0.14.40
globby: ^12.2.0
kleur: ^4.1.4
svelte: ^3.48.0
@@ -2019,7 +2019,7 @@ importers:
'@astrojs/webapi': link:../packages/webapi
adm-zip: 0.5.9
arg: 5.0.1
- esbuild: 0.14.39
+ esbuild: 0.14.42
globby: 12.2.0
kleur: 4.1.4
svelte: 3.48.0
@@ -2224,8 +2224,8 @@ packages:
resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==}
dev: true
- /@apideck/better-ajv-errors/0.3.4_ajv@8.11.0:
- resolution: {integrity: sha512-Ic2d8ZT6HJiSikGVQvSklaFyw1OUv4g8sDOxa0PXSlbmN/3gL5IO1WYY9DOwTDqOFmjWoqG1yaaKnPDqYCE9KA==}
+ /@apideck/better-ajv-errors/0.3.3_ajv@8.11.0:
+ resolution: {integrity: sha512-9o+HO2MbJhJHjDYZaDxJmSDckvDpiuItEsrIShV0DXeCshXWRHhqYyU/PKHMkuClOmFnZhRd6wzv4vpDu/dRKg==}
engines: {node: '>=10'}
peerDependencies:
ajv: '>=8'
@@ -2301,6 +2301,30 @@ packages:
semver: 6.3.0
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@babel/core/7.18.2:
+ resolution: {integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.0
+ '@babel/code-frame': 7.16.7
+ '@babel/generator': 7.18.2
+ '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2
+ '@babel/helper-module-transforms': 7.18.0
+ '@babel/helpers': 7.18.2
+ '@babel/parser': 7.18.4
+ '@babel/template': 7.16.7
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.4
+ convert-source-map: 1.8.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.2
+ json5: 2.2.1
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
/@babel/generator/7.18.0:
resolution: {integrity: sha512-81YO9gGx6voPXlvYdZBliFXAZU8vZ9AZ6z+CjlmcnaeOcYSFbMTpdeDUO9xD9dh/68Vq03I8ZspfUTPfitcDHg==}
@@ -2309,15 +2333,15 @@ packages:
'@babel/types': 7.18.0
'@jridgewell/gen-mapping': 0.3.1
jsesc: 2.5.2
+ dev: true
/@babel/generator/7.18.2:
resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.2
+ '@babel/types': 7.18.4
'@jridgewell/gen-mapping': 0.3.1
jsesc: 2.5.2
- dev: true
/@babel/helper-annotate-as-pure/7.16.7:
resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
@@ -2330,7 +2354,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.16.7
- '@babel/types': 7.18.2
+ '@babel/types': 7.18.0
dev: true
/@babel/helper-compilation-targets/7.17.10_@babel+core@7.18.0:
@@ -2347,8 +2371,9 @@ packages:
'@babel/helper-validator-option': 7.16.7
browserslist: 4.20.3
semver: 6.3.0
+ dev: true
- /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.0:
+ /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.2:
resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2358,11 +2383,11 @@ packages:
optional: true
dependencies:
'@babel/compat-data': 7.17.10
- '@babel/core': 7.18.0
+ '@babel/core': 7.18.2
'@babel/helper-validator-option': 7.16.7
browserslist: 4.20.3
semver: 6.3.0
- dev: true
+ dev: false
/@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.0:
resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==}
@@ -2379,7 +2404,7 @@ packages:
'@babel/helper-function-name': 7.17.9
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
- '@babel/helper-replace-supers': 7.18.2
+ '@babel/helper-replace-supers': 7.16.7
'@babel/helper-split-export-declaration': 7.16.7
transitivePeerDependencies:
- supports-color
@@ -2408,7 +2433,7 @@ packages:
optional: true
dependencies:
'@babel/core': 7.18.0
- '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.0
+ '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0
'@babel/helper-module-imports': 7.16.7
'@babel/helper-plugin-utils': 7.17.12
'@babel/traverse': 7.18.0
@@ -2425,17 +2450,17 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.18.0
+ dev: true
/@babel/helper-environment-visitor/7.18.2:
resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==}
engines: {node: '>=6.9.0'}
- dev: true
/@babel/helper-explode-assignable-expression/7.16.7:
resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.2
+ '@babel/types': 7.18.0
dev: true
/@babel/helper-function-name/7.17.9:
@@ -2443,19 +2468,19 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.16.7
- '@babel/types': 7.18.0
+ '@babel/types': 7.18.4
/@babel/helper-hoist-variables/7.16.7:
resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.0
+ '@babel/types': 7.18.4
/@babel/helper-member-expression-to-functions/7.17.7:
resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.2
+ '@babel/types': 7.18.0
dev: true
/@babel/helper-module-imports/7.16.0:
@@ -2475,14 +2500,14 @@ packages:
resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-environment-visitor': 7.16.7
+ '@babel/helper-environment-visitor': 7.18.2
'@babel/helper-module-imports': 7.16.7
'@babel/helper-simple-access': 7.17.7
'@babel/helper-split-export-declaration': 7.16.7
'@babel/helper-validator-identifier': 7.16.7
'@babel/template': 7.16.7
- '@babel/traverse': 7.18.0
- '@babel/types': 7.18.0
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.4
transitivePeerDependencies:
- supports-color
@@ -2490,7 +2515,7 @@ packages:
resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.2
+ '@babel/types': 7.18.0
dev: true
/@babel/helper-plugin-utils/7.17.12:
@@ -2503,20 +2528,20 @@ packages:
dependencies:
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-wrap-function': 7.16.8
- '@babel/types': 7.18.2
+ '@babel/types': 7.18.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-replace-supers/7.18.2:
- resolution: {integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==}
+ /@babel/helper-replace-supers/7.16.7:
+ resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-environment-visitor': 7.18.2
+ '@babel/helper-environment-visitor': 7.16.7
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
- '@babel/traverse': 7.18.2
- '@babel/types': 7.18.2
+ '@babel/traverse': 7.18.0
+ '@babel/types': 7.18.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -2525,27 +2550,20 @@ packages:
resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.0
-
- /@babel/helper-simple-access/7.18.2:
- resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.18.2
- dev: true
+ '@babel/types': 7.18.4
/@babel/helper-skip-transparent-expression-wrappers/7.16.0:
resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.2
+ '@babel/types': 7.18.0
dev: true
/@babel/helper-split-export-declaration/7.16.7:
resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.18.0
+ '@babel/types': 7.18.4
/@babel/helper-validator-identifier/7.16.7:
resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==}
@@ -2561,8 +2579,8 @@ packages:
dependencies:
'@babel/helper-function-name': 7.17.9
'@babel/template': 7.16.7
- '@babel/traverse': 7.18.2
- '@babel/types': 7.18.2
+ '@babel/traverse': 7.18.0
+ '@babel/types': 7.18.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -2576,6 +2594,18 @@ packages:
'@babel/types': 7.18.0
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@babel/helpers/7.18.2:
+ resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.16.7
+ '@babel/traverse': 7.18.2
+ '@babel/types': 7.18.4
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
/@babel/highlight/7.17.12:
resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==}
@@ -2591,6 +2621,14 @@ packages:
hasBin: true
dependencies:
'@babel/types': 7.18.0
+ dev: true
+
+ /@babel/parser/7.18.4:
+ resolution: {integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.18.4
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.17.12_@babel+core@7.18.0:
resolution: {integrity: sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==}
@@ -2765,7 +2803,7 @@ packages:
dependencies:
'@babel/compat-data': 7.17.10
'@babel/core': 7.18.0
- '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.0
+ '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0
'@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0
'@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.0
@@ -3115,7 +3153,7 @@ packages:
'@babel/helper-function-name': 7.17.9
'@babel/helper-optimise-call-expression': 7.16.7
'@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-replace-supers': 7.18.2
+ '@babel/helper-replace-supers': 7.16.7
'@babel/helper-split-export-declaration': 7.16.7
globals: 11.12.0
transitivePeerDependencies:
@@ -3212,7 +3250,7 @@ packages:
optional: true
dependencies:
'@babel/core': 7.18.0
- '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.0
+ '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0
'@babel/helper-function-name': 7.17.9
'@babel/helper-plugin-utils': 7.17.12
dev: true
@@ -3260,8 +3298,8 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.18.0:
- resolution: {integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==}
+ /@babel/plugin-transform-modules-commonjs/7.18.0_@babel+core@7.18.0:
+ resolution: {integrity: sha512-cCeR0VZWtfxWS4YueAK2qtHtBPJRSaJcMlbS8jhSIm/A3E2Kpro4W1Dn4cqJtp59dtWfXjQwK7SPKF8ghs7rlw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3272,7 +3310,7 @@ packages:
'@babel/core': 7.18.0
'@babel/helper-module-transforms': 7.18.0
'@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-simple-access': 7.18.2
+ '@babel/helper-simple-access': 7.17.7
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
@@ -3351,7 +3389,7 @@ packages:
dependencies:
'@babel/core': 7.18.0
'@babel/helper-plugin-utils': 7.17.12
- '@babel/helper-replace-supers': 7.18.2
+ '@babel/helper-replace-supers': 7.16.7
transitivePeerDependencies:
- supports-color
dev: true
@@ -3465,8 +3503,8 @@ packages:
'@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.18.0:
- resolution: {integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==}
+ /@babel/plugin-transform-template-literals/7.17.12_@babel+core@7.18.0:
+ resolution: {integrity: sha512-kAKJ7DX1dSRa2s7WN1xUAuaQmkTpN+uig4wCKWivVXIObqGbVTUlSavHyfI2iZvz89GFAMGm9p2DBJ4Y1Tp0hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3518,8 +3556,8 @@ packages:
'@babel/helper-plugin-utils': 7.17.12
dev: true
- /@babel/preset-env/7.18.2_@babel+core@7.18.0:
- resolution: {integrity: sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q==}
+ /@babel/preset-env/7.18.0_@babel+core@7.18.0:
+ resolution: {integrity: sha512-cP74OMs7ECLPeG1reiCQ/D/ypyOxgfm8uR6HRYV23vTJ7Lu1nbgj9DQDo/vH59gnn7GOAwtTDPPYV4aXzsMKHA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3529,7 +3567,7 @@ packages:
dependencies:
'@babel/compat-data': 7.17.10
'@babel/core': 7.18.0
- '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.0
+ '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0
'@babel/helper-plugin-utils': 7.17.12
'@babel/helper-validator-option': 7.16.7
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.17.12_@babel+core@7.18.0
@@ -3579,7 +3617,7 @@ packages:
'@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.0
'@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.0
'@babel/plugin-transform-modules-amd': 7.18.0_@babel+core@7.18.0
- '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.0
+ '@babel/plugin-transform-modules-commonjs': 7.18.0_@babel+core@7.18.0
'@babel/plugin-transform-modules-systemjs': 7.18.0_@babel+core@7.18.0
'@babel/plugin-transform-modules-umd': 7.18.0_@babel+core@7.18.0
'@babel/plugin-transform-named-capturing-groups-regex': 7.17.12_@babel+core@7.18.0
@@ -3592,16 +3630,16 @@ packages:
'@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.0
'@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.0
'@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.18.0
- '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.0
+ '@babel/plugin-transform-template-literals': 7.17.12_@babel+core@7.18.0
'@babel/plugin-transform-typeof-symbol': 7.17.12_@babel+core@7.18.0
'@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.18.0
'@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.18.0
'@babel/preset-modules': 0.1.5_@babel+core@7.18.0
- '@babel/types': 7.18.2
+ '@babel/types': 7.18.0
babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.0
babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.0
babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.0
- core-js-compat: 3.22.7
+ core-js-compat: 3.22.6
semver: 6.3.0
transitivePeerDependencies:
- supports-color
@@ -3619,12 +3657,12 @@ packages:
'@babel/helper-plugin-utils': 7.17.12
'@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.0
'@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.0
- '@babel/types': 7.18.2
+ '@babel/types': 7.18.0
esutils: 2.0.3
dev: true
- /@babel/runtime/7.18.3:
- resolution: {integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==}
+ /@babel/runtime/7.18.0:
+ resolution: {integrity: sha512-YMQvx/6nKEaucl0MY56mwIG483xk8SDNdlUwb2Ts6FUpr7fm85DxEmsY18LXBNhcTz6tO6JwZV8w1W06v8UKeg==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.9
@@ -3634,8 +3672,8 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.16.7
- '@babel/parser': 7.18.0
- '@babel/types': 7.18.0
+ '@babel/parser': 7.18.4
+ '@babel/types': 7.18.4
/@babel/traverse/7.18.0:
resolution: {integrity: sha512-oNOO4vaoIQoGjDQ84LgtF/IAlxlyqL4TUuoQ7xLkQETFaHkY1F7yazhB4Kt3VcZGL0ZF/jhrEpnXqUb0M7V3sw==}
@@ -3653,6 +3691,7 @@ packages:
globals: 11.12.0
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/traverse/7.18.2:
resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==}
@@ -3664,13 +3703,12 @@ packages:
'@babel/helper-function-name': 7.17.9
'@babel/helper-hoist-variables': 7.16.7
'@babel/helper-split-export-declaration': 7.16.7
- '@babel/parser': 7.18.0
- '@babel/types': 7.18.2
+ '@babel/parser': 7.18.4
+ '@babel/types': 7.18.4
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- dev: true
/@babel/types/7.18.0:
resolution: {integrity: sha512-vhAmLPAiC8j9K2GnsnLPCIH5wCrPpYIVBCWRBFDCB7Y/BXLqi/O+1RSTTM2bsmg6U/551+FCf9PNPxjABmxHTw==}
@@ -3679,13 +3717,12 @@ packages:
'@babel/helper-validator-identifier': 7.16.7
to-fast-properties: 2.0.0
- /@babel/types/7.18.2:
- resolution: {integrity: sha512-0On6B8A4/+mFUto5WERt3EEuG1NznDirvwca1O8UwXQHVY8g3R7OzYgxXdOfMwLO08UrpUD/2+3Bclyq+/C94Q==}
+ /@babel/types/7.18.4:
+ resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.16.7
to-fast-properties: 2.0.0
- dev: true
/@builder.io/partytown/0.4.5:
resolution: {integrity: sha512-HcHlmMYSpOxfJ0lFVxgZrvgIjz1Q8knlGuWkBpvjIp68j+xVWg969+sn7BCfyKhcGaYlnVOY/CEBHapQBcl0jw==}
@@ -3695,7 +3732,7 @@ packages:
/@changesets/apply-release-plan/6.0.0:
resolution: {integrity: sha512-gp6nIdVdfYdwKww2+f8whckKmvfE4JEm4jJgBhTmooi0uzHWhnxvk6JIzQi89qEAMINN0SeVNnXiAtbFY0Mj3w==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@changesets/config': 2.0.0
'@changesets/get-version-range-type': 0.3.2
'@changesets/git': 1.3.2
@@ -3713,7 +3750,7 @@ packages:
/@changesets/assemble-release-plan/5.1.2:
resolution: {integrity: sha512-nOFyDw4APSkY/vh5WNwGEtThPgEjVShp03PKVdId6wZTJALVcAALCSLmDRfeqjE2z9EsGJb7hZdDlziKlnqZgw==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@changesets/errors': 0.1.4
'@changesets/get-dependents-graph': 1.3.2
'@changesets/types': 5.0.0
@@ -3741,7 +3778,7 @@ packages:
resolution: {integrity: sha512-4bA3YoBkd5cm5WUxmrR2N9WYE7EeQcM+R3bVYMUj2NvffkQVpU3ckAI+z8UICoojq+HRl2OEwtz+S5UBmYY4zw==}
hasBin: true
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@changesets/apply-release-plan': 6.0.0
'@changesets/assemble-release-plan': 5.1.2
'@changesets/changelog-git': 0.1.11
@@ -3815,7 +3852,7 @@ packages:
/@changesets/get-release-plan/3.0.8:
resolution: {integrity: sha512-TJYiWNuP0Lzu2dL/KHuk75w7TkiE5HqoYirrXF7SJIxkhlgH9toQf2C7IapiFTObtuF1qDN8HJAX1CuIOwXldg==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@changesets/assemble-release-plan': 5.1.2
'@changesets/config': 2.0.0
'@changesets/pre': 1.0.11
@@ -3831,7 +3868,7 @@ packages:
/@changesets/git/1.3.2:
resolution: {integrity: sha512-p5UL+urAg0Nnpt70DLiBe2iSsMcDubTo9fTOD/61krmcJ466MGh71OHwdAwu1xG5+NKzeysdy1joRTg8CXcEXA==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@changesets/errors': 0.1.4
'@changesets/types': 5.0.0
'@manypkg/get-packages': 1.1.3
@@ -3855,7 +3892,7 @@ packages:
/@changesets/pre/1.0.11:
resolution: {integrity: sha512-CXZnt4SV9waaC9cPLm7818+SxvLKIDHUxaiTXnJYDp1c56xIexx1BNfC1yMuOdzO2a3rAIcZua5Odxr3dwSKfg==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@changesets/errors': 0.1.4
'@changesets/types': 5.0.0
'@manypkg/get-packages': 1.1.3
@@ -3865,7 +3902,7 @@ packages:
/@changesets/read/0.5.5:
resolution: {integrity: sha512-bzonrPWc29Tsjvgh+8CqJ0apQOwWim0zheeD4ZK44ApSa/GudnZJTODtA3yNOOuQzeZmL0NUebVoHIurtIkA7w==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@changesets/git': 1.3.2
'@changesets/logger': 0.0.5
'@changesets/parse': 0.3.13
@@ -3886,7 +3923,7 @@ packages:
/@changesets/write/0.1.8:
resolution: {integrity: sha512-oIHeFVMuP6jf0TPnKPpaFpvvAf3JBc+s2pmVChbeEgQTBTALoF51Z9kqxQfG4XONZPHZnqkmy564c7qohhhhTQ==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@changesets/types': 5.0.0
fs-extra: 7.0.1
human-id: 1.0.2
@@ -4014,20 +4051,20 @@ packages:
/@internationalized/date/3.0.0-rc.0:
resolution: {integrity: sha512-R8ui3O2G43fZ/z5cBdJuU6nswKtuVrKloDE6utvqKEeGf6igFoiapcjg7jbQ+WvWIDGtdUytOp2fOq/X4efBdQ==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
dev: false
/@internationalized/message/3.0.6:
resolution: {integrity: sha512-ECk3toFy87I2z5zipRNwdbouvRlIyMKb/FzKj1upMaNS52AKhpvrLgo3CY/ZXQKm4CRIbeh6p/F/Ztt+enhIEA==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
intl-messageformat: 9.13.0
dev: false
/@internationalized/number/3.1.0:
resolution: {integrity: sha512-CEts+2rIB4QveKeeF6xIHdn8aLVvUt5aiarkpCZgtMyYqfqo/ZBELf2UyhvLPGpRxcF24ClCISMTP9BTVreSAg==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
dev: false
/@jridgewell/gen-mapping/0.1.1:
@@ -4072,7 +4109,7 @@ packages:
dependencies:
'@lit/reactive-element': 1.3.2
lit: 2.2.5
- lit-html: 2.2.5
+ lit-html: 2.2.4
dev: false
/@lit-labs/ssr/2.2.0:
@@ -4081,10 +4118,10 @@ packages:
dependencies:
'@lit-labs/ssr-client': 1.0.1
'@lit/reactive-element': 1.3.2
- '@types/node': 16.11.36
+ '@types/node': 16.11.35
lit: 2.2.5
lit-element: 3.2.0
- lit-html: 2.2.5
+ lit-html: 2.2.4
node-fetch: 2.6.7
parse5: 6.0.1
resolve: 1.22.0
@@ -4103,7 +4140,7 @@ packages:
/@manypkg/find-root/1.1.0:
resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@types/node': 12.20.52
find-up: 4.1.0
fs-extra: 8.1.0
@@ -4112,7 +4149,7 @@ packages:
/@manypkg/get-packages/1.1.3:
resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -4350,7 +4387,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -4368,7 +4405,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/link': 3.2.5_react@17.0.2
@@ -4383,7 +4420,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -4397,7 +4434,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/label': 3.2.5_react@17.0.2
'@react-aria/toggle': 3.2.4_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -4413,7 +4450,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/listbox': 3.4.5_react@17.0.2
@@ -4438,7 +4475,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-stately/overlays': 3.2.0_react@17.0.2
@@ -4451,7 +4488,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
@@ -4465,7 +4502,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -4487,7 +4524,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@internationalized/date': 3.0.0-rc.0
'@internationalized/message': 3.0.6
'@internationalized/number': 3.1.0
@@ -4502,7 +4539,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
react: 17.0.2
@@ -4513,7 +4550,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-types/label': 3.5.4_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
@@ -4525,7 +4562,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -4539,7 +4576,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/label': 3.2.5_react@17.0.2
@@ -4558,7 +4595,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-aria/visually-hidden': 3.2.8_react@17.0.2
react: 17.0.2
@@ -4571,7 +4608,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/overlays': 3.8.2_sfoxds7t5ydpegc3knd667wn6m
@@ -4592,7 +4629,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/progress': 3.1.8_react@17.0.2
'@react-types/meter': 3.1.6_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
@@ -4605,7 +4642,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/live-announcer': 3.0.6_sfoxds7t5ydpegc3knd667wn6m
@@ -4627,7 +4664,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -4646,7 +4683,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/label': 3.2.5_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -4660,7 +4697,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -4676,7 +4713,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/textfield': 3.5.5_react@17.0.2
@@ -4694,7 +4731,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/label': 3.2.5_react@17.0.2
@@ -4716,7 +4753,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -4732,7 +4769,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
react: 17.0.2
@@ -4743,7 +4780,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -4762,7 +4799,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/live-announcer': 3.0.6_sfoxds7t5ydpegc3knd667wn6m
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -4777,7 +4814,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
react: 17.0.2
dev: false
@@ -4786,7 +4823,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/toggle': 3.2.4_react@17.0.2
'@react-stately/toggle': 3.2.7_react@17.0.2
'@react-types/switch': 3.1.6_react@17.0.2
@@ -4799,7 +4836,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/grid': 3.2.6_sfoxds7t5ydpegc3knd667wn6m
'@react-aria/i18n': 3.3.9_react@17.0.2
@@ -4822,7 +4859,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -4840,7 +4877,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/label': 3.2.5_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -4854,7 +4891,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -4870,7 +4907,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -4885,7 +4922,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/ssr': 3.1.2_react@17.0.2
'@react-stately/utils': 3.4.1_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
@@ -4899,7 +4936,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -4914,7 +4951,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
clsx: 1.1.1
@@ -4928,7 +4965,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/actiongroup': 3.2.6_react@17.0.2
'@react-aria/button': 3.4.4_react@17.0.2
'@react-aria/focus': 3.5.5_react@17.0.2
@@ -4960,7 +4997,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/breadcrumbs': 3.1.10_react@17.0.2
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
@@ -4984,7 +5021,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/button': 3.4.4_react@17.0.2
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -5007,7 +5044,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-spectrum/button': 3.7.4_hvcaygfkrdsthu4bca6eisslhq
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
@@ -5026,7 +5063,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/checkbox': 3.3.4_react@17.0.2
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -5051,7 +5088,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/button': 3.4.4_react@17.0.2
'@react-aria/combobox': 3.2.6_sfoxds7t5ydpegc3knd667wn6m
'@react-aria/dialog': 3.1.9_react@17.0.2
@@ -5087,7 +5124,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-spectrum/button': 3.7.4_hvcaygfkrdsthu4bca6eisslhq
'@react-spectrum/dialog': 3.3.9_hvcaygfkrdsthu4bca6eisslhq
@@ -5108,7 +5145,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/dialog': 3.1.9_react@17.0.2
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
@@ -5139,7 +5176,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/separator': 3.1.7_react@17.0.2
'@react-spectrum/utils': 3.6.8_react@17.0.2
'@react-types/divider': 3.1.6_react@17.0.2
@@ -5153,7 +5190,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
'@react-spectrum/utils': 3.6.8_react@17.0.2
@@ -5168,7 +5205,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
'@react-spectrum/utils': 3.6.8_react@17.0.2
@@ -5182,7 +5219,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-spectrum/layout': 3.2.6_yrnkbltii27iipti42xi2zu23q
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
@@ -5198,7 +5235,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
'@react-spectrum/utils': 3.6.8_react@17.0.2
@@ -5213,7 +5250,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/label': 3.2.5_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -5235,7 +5272,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/ssr': 3.1.2_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
@@ -5252,7 +5289,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/link': 3.2.5_react@17.0.2
@@ -5270,7 +5307,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -5301,7 +5338,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -5338,7 +5375,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/meter': 3.1.8_react@17.0.2
'@react-spectrum/progress': 3.1.8_yrnkbltii27iipti42xi2zu23q
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
@@ -5355,7 +5392,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/button': 3.4.4_react@17.0.2
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
@@ -5384,7 +5421,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/overlays': 3.8.2_sfoxds7t5ydpegc3knd667wn6m
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
@@ -5404,7 +5441,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -5435,7 +5472,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/progress': 3.1.8_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
@@ -5451,7 +5488,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/overlays': 3.8.2_sfoxds7t5ydpegc3knd667wn6m
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -5469,7 +5506,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/radio': 3.1.11_react@17.0.2
@@ -5491,7 +5528,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/searchfield': 3.2.7_react@17.0.2
'@react-spectrum/button': 3.7.4_hvcaygfkrdsthu4bca6eisslhq
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
@@ -5512,7 +5549,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -5533,7 +5570,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
'@react-spectrum/utils': 3.6.8_react@17.0.2
@@ -5548,7 +5585,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/switch': 3.1.8_react@17.0.2
@@ -5571,7 +5608,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/grid': 3.2.6_sfoxds7t5ydpegc3knd667wn6m
'@react-aria/i18n': 3.3.9_react@17.0.2
@@ -5605,7 +5642,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -5634,7 +5671,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
'@react-spectrum/utils': 3.6.8_react@17.0.2
@@ -5649,7 +5686,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
@@ -5672,7 +5709,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-types/provider': 3.4.3_react@17.0.2
react: 17.0.2
dev: false
@@ -5682,7 +5719,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-types/provider': 3.4.3_react@17.0.2
react: 17.0.2
dev: false
@@ -5692,7 +5729,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-types/provider': 3.4.3_react@17.0.2
react: 17.0.2
dev: false
@@ -5704,7 +5741,7 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/focus': 3.5.5_react@17.0.2
'@react-aria/interactions': 3.8.4_react@17.0.2
'@react-aria/overlays': 3.8.2_sfoxds7t5ydpegc3knd667wn6m
@@ -5728,7 +5765,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/ssr': 3.1.2_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
@@ -5743,7 +5780,7 @@ packages:
'@react-spectrum/provider': ^3.0.0
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-spectrum/provider': 3.3.4_sfoxds7t5ydpegc3knd667wn6m
@@ -5758,7 +5795,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-spectrum/utils': 3.6.8_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
@@ -5771,7 +5808,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/toggle': 3.2.7_react@17.0.2
'@react-stately/utils': 3.4.1_react@17.0.2
'@react-types/checkbox': 3.2.7_react@17.0.2
@@ -5783,7 +5820,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-types/shared': 3.12.0_react@17.0.2
react: 17.0.2
dev: false
@@ -5793,7 +5830,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/list': 3.4.5_react@17.0.2
'@react-stately/menu': 3.2.7_react@17.0.2
'@react-stately/select': 3.1.7_react@17.0.2
@@ -5808,7 +5845,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-types/shared': 3.12.0_react@17.0.2
react: 17.0.2
dev: false
@@ -5818,7 +5855,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/selection': 3.9.4_react@17.0.2
'@react-types/grid': 3.0.4_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
@@ -5830,7 +5867,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/virtualizer': 3.1.9_react@17.0.2
'@react-types/grid': 3.0.4_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
@@ -5843,7 +5880,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/collections': 3.3.8_react@17.0.2
'@react-stately/selection': 3.9.4_react@17.0.2
'@react-stately/utils': 3.4.1_react@17.0.2
@@ -5856,7 +5893,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/overlays': 3.2.0_react@17.0.2
'@react-stately/utils': 3.4.1_react@17.0.2
'@react-types/menu': 3.5.3_react@17.0.2
@@ -5869,7 +5906,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@internationalized/number': 3.1.0
'@react-stately/utils': 3.4.1_react@17.0.2
'@react-types/numberfield': 3.2.0_react@17.0.2
@@ -5882,7 +5919,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/utils': 3.4.1_react@17.0.2
'@react-types/overlays': 3.5.5_react@17.0.2
react: 17.0.2
@@ -5893,7 +5930,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/utils': 3.4.1_react@17.0.2
'@react-types/radio': 3.1.6_react@17.0.2
react: 17.0.2
@@ -5904,7 +5941,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/utils': 3.4.1_react@17.0.2
'@react-types/searchfield': 3.2.0_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
@@ -5916,7 +5953,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/collections': 3.3.8_react@17.0.2
'@react-stately/list': 3.4.5_react@17.0.2
'@react-stately/menu': 3.2.7_react@17.0.2
@@ -5932,7 +5969,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/collections': 3.3.8_react@17.0.2
'@react-stately/utils': 3.4.1_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
@@ -5944,7 +5981,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/i18n': 3.3.9_react@17.0.2
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-stately/utils': 3.4.1_react@17.0.2
@@ -5957,7 +5994,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/collections': 3.3.8_react@17.0.2
'@react-stately/grid': 3.1.4_react@17.0.2
'@react-stately/selection': 3.9.4_react@17.0.2
@@ -5972,7 +6009,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/list': 3.4.5_react@17.0.2
'@react-stately/utils': 3.4.1_react@17.0.2
'@react-types/tabs': 3.0.5_react@17.0.2
@@ -5984,7 +6021,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/utils': 3.4.1_react@17.0.2
'@react-types/checkbox': 3.2.7_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
@@ -5996,7 +6033,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/overlays': 3.2.0_react@17.0.2
'@react-stately/utils': 3.4.1_react@17.0.2
'@react-types/tooltip': 3.1.6_react@17.0.2
@@ -6008,7 +6045,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-stately/collections': 3.3.8_react@17.0.2
'@react-stately/selection': 3.9.4_react@17.0.2
'@react-stately/utils': 3.4.1_react@17.0.2
@@ -6021,7 +6058,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
react: 17.0.2
dev: false
@@ -6030,7 +6067,7 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
'@react-aria/utils': 3.12.0_react@17.0.2
'@react-types/shared': 3.12.0_react@17.0.2
react: 17.0.2
@@ -6379,13 +6416,13 @@ packages:
react: 17.0.2
dev: false
- /@rollup/plugin-alias/3.1.9_rollup@2.74.1:
+ /@rollup/plugin-alias/3.1.9_rollup@2.75.4:
resolution: {integrity: sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw==}
engines: {node: '>=8.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0
dependencies:
- rollup: 2.74.1
+ rollup: 2.75.4
slash: 3.0.0
dev: true
@@ -6408,15 +6445,15 @@ packages:
rollup: 2.74.1
dev: true
- /@rollup/plugin-inject/4.0.4_rollup@2.74.1:
+ /@rollup/plugin-inject/4.0.4_rollup@2.75.4:
resolution: {integrity: sha512-4pbcU4J/nS+zuHk+c+OL3WtmEQhqxlZ9uqfjQMQDOHOPld7PsCd8k5LWs8h5wjwJN7MgnAn768F2sDxEP4eNFQ==}
peerDependencies:
rollup: ^1.20.0 || ^2.0.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.74.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.75.4
estree-walker: 2.0.2
magic-string: 0.25.9
- rollup: 2.74.1
+ rollup: 2.75.4
dev: true
/@rollup/plugin-node-resolve/11.2.1_rollup@2.74.1:
@@ -6434,19 +6471,19 @@ packages:
rollup: 2.74.1
dev: true
- /@rollup/plugin-node-resolve/13.3.0_rollup@2.74.1:
+ /@rollup/plugin-node-resolve/13.3.0_rollup@2.75.4:
resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==}
engines: {node: '>= 10.0.0'}
peerDependencies:
rollup: ^2.42.0
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.74.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.75.4
'@types/resolve': 1.17.1
deepmerge: 4.2.2
is-builtin-module: 3.1.0
is-module: 1.0.0
resolve: 1.22.0
- rollup: 2.74.1
+ rollup: 2.75.4
dev: true
/@rollup/plugin-replace/2.4.2_rollup@2.74.1:
@@ -6459,7 +6496,7 @@ packages:
rollup: 2.74.1
dev: true
- /@rollup/plugin-typescript/8.3.2_faevwvm44lwfnesbzt627ggdse:
+ /@rollup/plugin-typescript/8.3.2_a2xpdkfyiu2hqx4t4ni57qpbv4:
resolution: {integrity: sha512-MtgyR5LNHZr3GyN0tM7gNO9D0CS+Y+vflS4v/PHmrX17JCkHUYKvQ5jN5o3cz1YKllM3duXUqu3yOHwMPUxhDg==}
engines: {node: '>=8.0.0'}
peerDependencies:
@@ -6467,9 +6504,9 @@ packages:
tslib: '*'
typescript: '>=3.7.0'
dependencies:
- '@rollup/pluginutils': 3.1.0_rollup@2.74.1
+ '@rollup/pluginutils': 3.1.0_rollup@2.75.4
resolve: 1.22.0
- rollup: 2.74.1
+ rollup: 2.75.4
tslib: 2.4.0
typescript: 4.7.2
dev: true
@@ -6486,6 +6523,18 @@ packages:
rollup: 2.74.1
dev: true
+ /@rollup/pluginutils/3.1.0_rollup@2.75.4:
+ resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==}
+ engines: {node: '>= 8.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0
+ dependencies:
+ '@types/estree': 0.0.39
+ estree-walker: 1.0.1
+ picomatch: 2.3.1
+ rollup: 2.75.4
+ dev: true
+
/@rollup/pluginutils/4.2.1:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
@@ -6530,8 +6579,8 @@ packages:
string.prototype.matchall: 4.0.7
dev: true
- /@sveltejs/vite-plugin-svelte/1.0.0-next.45_svelte@3.48.0+vite@2.9.9:
- resolution: {integrity: sha512-WLschM2qpa4lSpKR4zTVDJ2AW48u3Gjs3BX5s6aZvLRC3bjBjKcOcGmOG9pLu07C869wdMwZFZ+GroVcx7ZKpw==}
+ /@sveltejs/vite-plugin-svelte/1.0.0-next.46_svelte@3.48.0+vite@2.9.9:
+ resolution: {integrity: sha512-dumtaI5XusnDgXoQ3vxQAdoCaTWf8zKVezJdiTGjuaS/GSsmLIvtHUvMt0NlwEikPQ/hL53eIzMliRQ/j35w9w==}
engines: {node: ^14.13.1 || >= 16}
peerDependencies:
diff-match-patch: ^1.0.5
@@ -6549,7 +6598,7 @@ packages:
kleur: 4.1.4
magic-string: 0.26.2
svelte: 3.48.0
- svelte-hmr: 0.14.11_svelte@3.48.0
+ svelte-hmr: 0.14.12_svelte@3.48.0
vite: 2.9.9
transitivePeerDependencies:
- supports-color
@@ -6569,8 +6618,8 @@ packages:
/@types/babel__core/7.1.19:
resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==}
dependencies:
- '@babel/parser': 7.18.0
- '@babel/types': 7.18.0
+ '@babel/parser': 7.18.4
+ '@babel/types': 7.18.4
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.17.1
@@ -6579,20 +6628,20 @@ packages:
/@types/babel__generator/7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
- '@babel/types': 7.18.0
+ '@babel/types': 7.18.4
dev: true
/@types/babel__template/7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
- '@babel/parser': 7.18.0
- '@babel/types': 7.18.0
+ '@babel/parser': 7.18.4
+ '@babel/types': 7.18.4
dev: true
/@types/babel__traverse/7.17.1:
resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==}
dependencies:
- '@babel/types': 7.18.0
+ '@babel/types': 7.18.4
dev: true
/@types/chai-as-promised/7.1.5:
@@ -6725,8 +6774,8 @@ packages:
resolution: {integrity: sha512-B9EoJFjhqcQ9OmQrNorItO+OwEOORNn3S31WuiHvZY/dm9ajkB7AKD/8toessEtHHNL+58jofbq7hMMY9v4yig==}
dev: true
- /@types/node/16.11.36:
- resolution: {integrity: sha512-FR5QJe+TaoZ2GsMHkjuwoNabr+UrJNRr2HNOo+r/7vhcuntM6Ee/pRPOnRhhL2XE9OOvX9VLEq+BcXl3VjNoWA==}
+ /@types/node/16.11.35:
+ resolution: {integrity: sha512-QXu45LyepgnhUfnIAj/FyT4uM87ug5KpIrgXfQtUPNAlx8w5hmd8z8emqCLNvG11QkpRSCG9Qg2buMxvqfjfsQ==}
dev: false
/@types/node/17.0.35:
@@ -6781,20 +6830,20 @@ packages:
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.2
- csstype: 3.1.0
+ csstype: 3.0.11
/@types/react/18.0.9:
resolution: {integrity: sha512-9bjbg1hJHUm4De19L1cHiW0Jvx3geel6Qczhjd0qY5VKVE2X5+x77YxAepuCwVh4vrgZJdgEJw48zrhRIeF4Nw==}
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.2
- csstype: 3.1.0
+ csstype: 3.0.11
dev: false
/@types/resolve/1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
- '@types/node': 17.0.35
+ '@types/node': 14.18.18
dev: true
/@types/resolve/1.20.2:
@@ -7083,7 +7132,7 @@ packages:
acorn: 8.7.1
bindings: 1.5.0
estree-walker: 2.0.2
- glob: 7.2.0
+ glob: 7.2.3
graceful-fs: 4.2.10
micromatch: 4.0.5
node-gyp-build: 4.4.0
@@ -7123,7 +7172,7 @@ packages:
/@vue/compiler-core/3.2.36:
resolution: {integrity: sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==}
dependencies:
- '@babel/parser': 7.18.0
+ '@babel/parser': 7.18.4
'@vue/shared': 3.2.36
estree-walker: 2.0.2
source-map: 0.6.1
@@ -7137,7 +7186,7 @@ packages:
/@vue/compiler-sfc/3.2.36:
resolution: {integrity: sha512-AvGb4bTj4W8uQ4BqaSxo7UwTEqX5utdRSMyHy58OragWlt8nEACQ9mIeQh3K4di4/SX+41+pJrLIY01lHAOFOA==}
dependencies:
- '@babel/parser': 7.18.0
+ '@babel/parser': 7.18.4
'@vue/compiler-core': 3.2.36
'@vue/compiler-dom': 3.2.36
'@vue/compiler-ssr': 3.2.36
@@ -7157,7 +7206,7 @@ packages:
/@vue/reactivity-transform/3.2.36:
resolution: {integrity: sha512-Jk5o2BhpODC9XTA7o4EL8hSJ4JyrFWErLtClG3NH8wDS7ri9jBDWxI7/549T7JY9uilKsaNM+4pJASLj5dtRwA==}
dependencies:
- '@babel/parser': 7.18.0
+ '@babel/parser': 7.18.4
'@vue/compiler-core': 3.2.36
'@vue/shared': 3.2.36
estree-walker: 2.0.2
@@ -7330,6 +7379,11 @@ packages:
engines: {node: '>=6'}
dev: true
+ /ansi-colors/4.1.3:
+ resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
+ engines: {node: '>=6'}
+ dev: true
+
/ansi-regex/2.1.1:
resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
engines: {node: '>=0.10.0'}
@@ -7518,7 +7572,7 @@ packages:
dependencies:
'@babel/core': 7.18.0
'@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.0
- core-js-compat: 3.22.7
+ core-js-compat: 3.22.6
transitivePeerDependencies:
- supports-color
dev: true
@@ -7907,7 +7961,7 @@ packages:
dev: false
/code-point-at/1.1.0:
- resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
+ resolution: {integrity: sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=}
engines: {node: '>=0.10.0'}
/color-convert/1.9.3:
@@ -7991,15 +8045,15 @@ packages:
dev: true
/console-control-strings/1.1.0:
- resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
+ resolution: {integrity: sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=}
/convert-source-map/1.8.0:
resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
dependencies:
safe-buffer: 5.1.2
- /core-js-compat/3.22.7:
- resolution: {integrity: sha512-uI9DAQKKiiE/mclIC5g4AjRpio27g+VMRhe6rQoz+q4Wm4L6A/fJhiLtBw+sfOpDG9wZ3O0pxIw7GbfOlBgjOA==}
+ /core-js-compat/3.22.6:
+ resolution: {integrity: sha512-dQ/SxlHcuiywaPIoSUCU6Fx+Mk/H5TXENqd/ZJcK85ta0ZcQkbzHwblxPeL0hF5o+NsT2uK3q9ZOG5TboiVuWw==}
dependencies:
browserslist: 4.20.3
semver: 7.0.0
@@ -8009,7 +8063,7 @@ packages:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
/cross-spawn/5.1.0:
- resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
+ resolution: {integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=}
dependencies:
lru-cache: 4.1.5
shebang-command: 1.2.0
@@ -8066,8 +8120,8 @@ packages:
/csstype/2.6.20:
resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==}
- /csstype/3.1.0:
- resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==}
+ /csstype/3.0.11:
+ resolution: {integrity: sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==}
/csv-generate/3.4.3:
resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==}
@@ -8112,11 +8166,6 @@ packages:
/debug/3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
dependencies:
ms: 2.1.3
dev: false
@@ -8146,7 +8195,7 @@ packages:
ms: 2.1.2
/decamelize-keys/1.1.0:
- resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==}
+ resolution: {integrity: sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=}
engines: {node: '>=0.10.0'}
dependencies:
decamelize: 1.2.0
@@ -8154,7 +8203,7 @@ packages:
dev: true
/decamelize/1.2.0:
- resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
+ resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=}
engines: {node: '>=0.10.0'}
dev: true
@@ -8212,7 +8261,7 @@ packages:
object-keys: 1.1.1
/defined/1.0.0:
- resolution: {integrity: sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==}
+ resolution: {integrity: sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=}
/defu/5.0.1:
resolution: {integrity: sha512-EPS1carKg+dkEVy3qNTqIdp2qV7mUP08nIsupfwQpz++slCVRw7qbQyWvSTig+kFPwz2XXp5/kIIkH+CwrJKkQ==}
@@ -8249,7 +8298,7 @@ packages:
dev: true
/delegates/1.0.0:
- resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
+ resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=}
/depd/2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
@@ -8269,7 +8318,7 @@ packages:
engines: {node: '>=8'}
/detect-libc/1.0.3:
- resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
+ resolution: {integrity: sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=}
engines: {node: '>=0.10'}
hasBin: true
@@ -8277,8 +8326,8 @@ packages:
resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==}
engines: {node: '>=8'}
- /detective/5.2.1:
- resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
+ /detective/5.2.0:
+ resolution: {integrity: sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==}
engines: {node: '>=0.8.0'}
hasBin: true
dependencies:
@@ -8321,7 +8370,7 @@ packages:
/dom-helpers/3.4.0:
resolution: {integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
dev: false
/dom-serializer/1.4.1:
@@ -8426,7 +8475,7 @@ packages:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
dependencies:
- ansi-colors: 4.1.1
+ ansi-colors: 4.1.3
dev: true
/entities/2.2.0:
@@ -8501,192 +8550,192 @@ packages:
resolution: {integrity: sha1-oIzd6EzNvzTQJ6FFG8kdS80ophM=}
dev: false
- /esbuild-android-64/0.14.39:
- resolution: {integrity: sha512-EJOu04p9WgZk0UoKTqLId9VnIsotmI/Z98EXrKURGb3LPNunkeffqQIkjS2cAvidh+OK5uVrXaIP229zK6GvhQ==}
+ /esbuild-android-64/0.14.42:
+ resolution: {integrity: sha512-P4Y36VUtRhK/zivqGVMqhptSrFILAGlYp0Z8r9UQqHJ3iWztRCNWnlBzD9HRx0DbueXikzOiwyOri+ojAFfW6A==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
requiresBuild: true
optional: true
- /esbuild-android-arm64/0.14.39:
- resolution: {integrity: sha512-+twajJqO7n3MrCz9e+2lVOnFplRsaGRwsq1KL/uOy7xK7QdRSprRQcObGDeDZUZsacD5gUkk6OiHiYp6RzU3CA==}
+ /esbuild-android-arm64/0.14.42:
+ resolution: {integrity: sha512-0cOqCubq+RWScPqvtQdjXG3Czb3AWI2CaKw3HeXry2eoA2rrPr85HF7IpdU26UWdBXgPYtlTN1LUiuXbboROhg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /esbuild-darwin-64/0.14.39:
- resolution: {integrity: sha512-ImT6eUw3kcGcHoUxEcdBpi6LfTRWaV6+qf32iYYAfwOeV+XaQ/Xp5XQIBiijLeo+LpGci9M0FVec09nUw41a5g==}
+ /esbuild-darwin-64/0.14.42:
+ resolution: {integrity: sha512-ipiBdCA3ZjYgRfRLdQwP82rTiv/YVMtW36hTvAN5ZKAIfxBOyPXY7Cejp3bMXWgzKD8B6O+zoMzh01GZsCuEIA==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /esbuild-darwin-arm64/0.14.39:
- resolution: {integrity: sha512-/fcQ5UhE05OiT+bW5v7/up1bDsnvaRZPJxXwzXsMRrr7rZqPa85vayrD723oWMT64dhrgWeA3FIneF8yER0XTw==}
+ /esbuild-darwin-arm64/0.14.42:
+ resolution: {integrity: sha512-bU2tHRqTPOaoH/4m0zYHbFWpiYDmaA0gt90/3BMEFaM0PqVK/a6MA2V/ypV5PO0v8QxN6gH5hBPY4YJ2lopXgA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /esbuild-freebsd-64/0.14.39:
- resolution: {integrity: sha512-oMNH8lJI4wtgN5oxuFP7BQ22vgB/e3Tl5Woehcd6i2r6F3TszpCnNl8wo2d/KvyQ4zvLvCWAlRciumhQg88+kQ==}
+ /esbuild-freebsd-64/0.14.42:
+ resolution: {integrity: sha512-75h1+22Ivy07+QvxHyhVqOdekupiTZVLN1PMwCDonAqyXd8TVNJfIRFrdL8QmSJrOJJ5h8H1I9ETyl2L8LQDaw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
optional: true
- /esbuild-freebsd-arm64/0.14.39:
- resolution: {integrity: sha512-1GHK7kwk57ukY2yI4ILWKJXaxfr+8HcM/r/JKCGCPziIVlL+Wi7RbJ2OzMcTKZ1HpvEqCTBT/J6cO4ZEwW4Ypg==}
+ /esbuild-freebsd-arm64/0.14.42:
+ resolution: {integrity: sha512-W6Jebeu5TTDQMJUJVarEzRU9LlKpNkPBbjqSu+GUPTHDCly5zZEQq9uHkmHHl7OKm+mQ2zFySN83nmfCeZCyNA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
requiresBuild: true
optional: true
- /esbuild-linux-32/0.14.39:
- resolution: {integrity: sha512-g97Sbb6g4zfRLIxHgW2pc393DjnkTRMeq3N1rmjDUABxpx8SjocK4jLen+/mq55G46eE2TA0MkJ4R3SpKMu7dg==}
+ /esbuild-linux-32/0.14.42:
+ resolution: {integrity: sha512-Ooy/Bj+mJ1z4jlWcK5Dl6SlPlCgQB9zg1UrTCeY8XagvuWZ4qGPyYEWGkT94HUsRi2hKsXvcs6ThTOjBaJSMfg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-64/0.14.39:
- resolution: {integrity: sha512-4tcgFDYWdI+UbNMGlua9u1Zhu0N5R6u9tl5WOM8aVnNX143JZoBZLpCuUr5lCKhnD0SCO+5gUyMfupGrHtfggQ==}
+ /esbuild-linux-64/0.14.42:
+ resolution: {integrity: sha512-2L0HbzQfbTuemUWfVqNIjOfaTRt9zsvjnme6lnr7/MO9toz/MJ5tZhjqrG6uDWDxhsaHI2/nsDgrv8uEEN2eoA==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-arm/0.14.39:
- resolution: {integrity: sha512-t0Hn1kWVx5UpCzAJkKRfHeYOLyFnXwYynIkK54/h3tbMweGI7dj400D1k0Vvtj2u1P+JTRT9tx3AjtLEMmfVBQ==}
+ /esbuild-linux-arm/0.14.42:
+ resolution: {integrity: sha512-STq69yzCMhdRaWnh29UYrLSr/qaWMm/KqwaRF1pMEK7kDiagaXhSL1zQGXbYv94GuGY/zAwzK98+6idCMUOOCg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-arm64/0.14.39:
- resolution: {integrity: sha512-23pc8MlD2D6Px1mV8GMglZlKgwgNKAO8gsgsLLcXWSs9lQsCYkIlMo/2Ycfo5JrDIbLdwgP8D2vpfH2KcBqrDQ==}
+ /esbuild-linux-arm64/0.14.42:
+ resolution: {integrity: sha512-c3Ug3e9JpVr8jAcfbhirtpBauLxzYPpycjWulD71CF6ZSY26tvzmXMJYooQ2YKqDY4e/fPu5K8bm7MiXMnyxuA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-mips64le/0.14.39:
- resolution: {integrity: sha512-epwlYgVdbmkuRr5n4es3B+yDI0I2e/nxhKejT9H0OLxFAlMkeQZxSpxATpDc9m8NqRci6Kwyb/SfmD1koG2Zuw==}
+ /esbuild-linux-mips64le/0.14.42:
+ resolution: {integrity: sha512-QuvpHGbYlkyXWf2cGm51LBCHx6eUakjaSrRpUqhPwjh/uvNUYvLmz2LgPTTPwCqaKt0iwL+OGVL0tXA5aDbAbg==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-ppc64le/0.14.39:
- resolution: {integrity: sha512-W/5ezaq+rQiQBThIjLMNjsuhPHg+ApVAdTz2LvcuesZFMsJoQAW2hutoyg47XxpWi7aEjJGrkS26qCJKhRn3QQ==}
+ /esbuild-linux-ppc64le/0.14.42:
+ resolution: {integrity: sha512-8ohIVIWDbDT+i7lCx44YCyIRrOW1MYlks9fxTo0ME2LS/fxxdoJBwHWzaDYhjvf8kNpA+MInZvyOEAGoVDrMHg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-riscv64/0.14.39:
- resolution: {integrity: sha512-IS48xeokcCTKeQIOke2O0t9t14HPvwnZcy+5baG13Z1wxs9ZrC5ig5ypEQQh4QMKxURD5TpCLHw2W42CLuVZaA==}
+ /esbuild-linux-riscv64/0.14.42:
+ resolution: {integrity: sha512-DzDqK3TuoXktPyG1Lwx7vhaF49Onv3eR61KwQyxYo4y5UKTpL3NmuarHSIaSVlTFDDpcIajCDwz5/uwKLLgKiQ==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-linux-s390x/0.14.39:
- resolution: {integrity: sha512-zEfunpqR8sMomqXhNTFEKDs+ik7HC01m3M60MsEjZOqaywHu5e5682fMsqOlZbesEAAaO9aAtRBsU7CHnSZWyA==}
+ /esbuild-linux-s390x/0.14.42:
+ resolution: {integrity: sha512-YFRhPCxl8nb//Wn6SiS5pmtplBi4z9yC2gLrYoYI/tvwuB1jldir9r7JwAGy1Ck4D7sE7wBN9GFtUUX/DLdcEQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
requiresBuild: true
optional: true
- /esbuild-netbsd-64/0.14.39:
- resolution: {integrity: sha512-Uo2suJBSIlrZCe4E0k75VDIFJWfZy+bOV6ih3T4MVMRJh1lHJ2UyGoaX4bOxomYN3t+IakHPyEoln1+qJ1qYaA==}
+ /esbuild-netbsd-64/0.14.42:
+ resolution: {integrity: sha512-QYSD2k+oT9dqB/4eEM9c+7KyNYsIPgzYOSrmfNGDIyJrbT1d+CFVKvnKahDKNJLfOYj8N4MgyFaU9/Ytc6w5Vw==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
requiresBuild: true
optional: true
- /esbuild-openbsd-64/0.14.39:
- resolution: {integrity: sha512-secQU+EpgUPpYjJe3OecoeGKVvRMLeKUxSMGHnK+aK5uQM3n1FPXNJzyz1LHFOo0WOyw+uoCxBYdM4O10oaCAA==}
+ /esbuild-openbsd-64/0.14.42:
+ resolution: {integrity: sha512-M2meNVIKWsm2HMY7+TU9AxM7ZVwI9havdsw6m/6EzdXysyCFFSoaTQ/Jg03izjCsK17FsVRHqRe26Llj6x0MNA==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
requiresBuild: true
optional: true
- /esbuild-sunos-64/0.14.39:
- resolution: {integrity: sha512-qHq0t5gePEDm2nqZLb+35p/qkaXVS7oIe32R0ECh2HOdiXXkj/1uQI9IRogGqKkK+QjDG+DhwiUw7QoHur/Rwg==}
+ /esbuild-sunos-64/0.14.42:
+ resolution: {integrity: sha512-uXV8TAZEw36DkgW8Ak3MpSJs1ofBb3Smkc/6pZ29sCAN1KzCAQzsje4sUwugf+FVicrHvlamCOlFZIXgct+iqQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
requiresBuild: true
optional: true
- /esbuild-windows-32/0.14.39:
- resolution: {integrity: sha512-XPjwp2OgtEX0JnOlTgT6E5txbRp6Uw54Isorm3CwOtloJazeIWXuiwK0ONJBVb/CGbiCpS7iP2UahGgd2p1x+Q==}
+ /esbuild-windows-32/0.14.42:
+ resolution: {integrity: sha512-4iw/8qWmRICWi9ZOnJJf9sYt6wmtp3hsN4TdI5NqgjfOkBVMxNdM9Vt3626G1Rda9ya2Q0hjQRD9W1o+m6Lz6g==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /esbuild-windows-64/0.14.39:
- resolution: {integrity: sha512-E2wm+5FwCcLpKsBHRw28bSYQw0Ikxb7zIMxw3OPAkiaQhLVr3dnVO8DofmbWhhf6b97bWzg37iSZ45ZDpLw7Ow==}
+ /esbuild-windows-64/0.14.42:
+ resolution: {integrity: sha512-j3cdK+Y3+a5H0wHKmLGTJcq0+/2mMBHPWkItR3vytp/aUGD/ua/t2BLdfBIzbNN9nLCRL9sywCRpOpFMx3CxzA==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /esbuild-windows-arm64/0.14.39:
- resolution: {integrity: sha512-sBZQz5D+Gd0EQ09tZRnz/PpVdLwvp/ufMtJ1iDFYddDaPpZXKqPyaxfYBLs3ueiaksQ26GGa7sci0OqFzNs7KA==}
+ /esbuild-windows-arm64/0.14.42:
+ resolution: {integrity: sha512-+lRAARnF+hf8J0mN27ujO+VbhPbDqJ8rCcJKye4y7YZLV6C4n3pTRThAb388k/zqF5uM0lS5O201u0OqoWSicw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /esbuild/0.14.39:
- resolution: {integrity: sha512-2kKujuzvRWYtwvNjYDY444LQIA3TyJhJIX3Yo4+qkFlDDtGlSicWgeHVJqMUP/2sSfH10PGwfsj+O2ro1m10xQ==}
+ /esbuild/0.14.42:
+ resolution: {integrity: sha512-V0uPZotCEHokJdNqyozH6qsaQXqmZEOiZWrXnds/zaH/0SyrIayRXWRB98CENO73MIZ9T3HBIOsmds5twWtmgw==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- esbuild-android-64: 0.14.39
- esbuild-android-arm64: 0.14.39
- esbuild-darwin-64: 0.14.39
- esbuild-darwin-arm64: 0.14.39
- esbuild-freebsd-64: 0.14.39
- esbuild-freebsd-arm64: 0.14.39
- esbuild-linux-32: 0.14.39
- esbuild-linux-64: 0.14.39
- esbuild-linux-arm: 0.14.39
- esbuild-linux-arm64: 0.14.39
- esbuild-linux-mips64le: 0.14.39
- esbuild-linux-ppc64le: 0.14.39
- esbuild-linux-riscv64: 0.14.39
- esbuild-linux-s390x: 0.14.39
- esbuild-netbsd-64: 0.14.39
- esbuild-openbsd-64: 0.14.39
- esbuild-sunos-64: 0.14.39
- esbuild-windows-32: 0.14.39
- esbuild-windows-64: 0.14.39
- esbuild-windows-arm64: 0.14.39
+ esbuild-android-64: 0.14.42
+ esbuild-android-arm64: 0.14.42
+ esbuild-darwin-64: 0.14.42
+ esbuild-darwin-arm64: 0.14.42
+ esbuild-freebsd-64: 0.14.42
+ esbuild-freebsd-arm64: 0.14.42
+ esbuild-linux-32: 0.14.42
+ esbuild-linux-64: 0.14.42
+ esbuild-linux-arm: 0.14.42
+ esbuild-linux-arm64: 0.14.42
+ esbuild-linux-mips64le: 0.14.42
+ esbuild-linux-ppc64le: 0.14.42
+ esbuild-linux-riscv64: 0.14.42
+ esbuild-linux-s390x: 0.14.42
+ esbuild-netbsd-64: 0.14.42
+ esbuild-openbsd-64: 0.14.42
+ esbuild-sunos-64: 0.14.42
+ esbuild-windows-32: 0.14.42
+ esbuild-windows-64: 0.14.42
+ esbuild-windows-arm64: 0.14.42
/escalade/3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
@@ -9025,7 +9074,7 @@ packages:
/filelist/1.0.4:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
dependencies:
- minimatch: 5.1.0
+ minimatch: 5.0.1
dev: true
/fill-range/7.0.1:
@@ -9138,7 +9187,7 @@ packages:
dev: false
/fs.realpath/1.0.0:
- resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
/fsevents/2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
@@ -9278,6 +9327,17 @@ packages:
minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
+ dev: true
+
+ /glob/7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+ dependencies:
+ fs.realpath: 1.0.0
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 3.1.2
+ once: 1.4.0
+ path-is-absolute: 1.0.1
/globals/11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
@@ -9683,7 +9743,7 @@ packages:
dev: true
/inflight/1.0.6:
- resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
@@ -9825,7 +9885,7 @@ packages:
dev: false
/is-extglob/2.1.1:
- resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=}
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
/is-fullwidth-code-point/1.0.0:
@@ -10031,7 +10091,7 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 17.0.35
+ '@types/node': 14.18.18
merge-stream: 2.0.0
supports-color: 7.2.0
dev: true
@@ -10180,11 +10240,11 @@ packages:
resolution: {integrity: sha512-HbE7yt2SnUtg5DCrWt028oaU4D5F4k/1cntAFHTkzY8ZIa8N0Wmu92PxSxucsQSOXlODFrICkQ5x/tEshKi13g==}
dependencies:
'@lit/reactive-element': 1.3.2
- lit-html: 2.2.5
+ lit-html: 2.2.4
dev: false
- /lit-html/2.2.5:
- resolution: {integrity: sha512-e56Y9V+RNA+SGYsWP2DGb/wad5Ccd3xUZYjmcmbeZcnc0wP4zFQRXeXn7W3bbfBekmHDK2dOnuYNYkg0bQjh/w==}
+ /lit-html/2.2.4:
+ resolution: {integrity: sha512-IPY0V0z/QWcTduxb6DlP46Un8n6tG+mHSAijGcPozfXTjVkvFLN4/irPzthtq/eC8RU+7CUqh6h4KB7tnRPJfg==}
dependencies:
'@types/trusted-types': 2.0.2
dev: false
@@ -10194,7 +10254,7 @@ packages:
dependencies:
'@lit/reactive-element': 1.3.2
lit-element: 3.2.0
- lit-html: 2.2.5
+ lit-html: 2.2.4
dev: false
/load-yaml-file/0.2.0:
@@ -10884,8 +10944,8 @@ packages:
brace-expansion: 1.1.11
dev: true
- /minimatch/5.1.0:
- resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==}
+ /minimatch/5.0.1:
+ resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
@@ -11030,8 +11090,6 @@ packages:
debug: 3.2.7
iconv-lite: 0.4.24
sax: 1.2.4
- transitivePeerDependencies:
- - supports-color
dev: false
/netmask/2.0.2:
@@ -11060,8 +11118,8 @@ packages:
tslib: 2.4.0
dev: false
- /node-abi/3.22.0:
- resolution: {integrity: sha512-u4uAs/4Zzmp/jjsD9cyFYDXeISfUWaAVWshPmDZOFOv4Xl4SbzTXm53I04C2uRueYJ+0t5PEtLH/owbn2Npf/w==}
+ /node-abi/3.15.0:
+ resolution: {integrity: sha512-Ic6z/j6I9RLm4ov7npo1I48UQr2BEyFCqh6p7S1dhEx9jPO0GPGq/e2Rb7x7DroQrmiVMz/Bw1vJm9sPAl2nxA==}
engines: {node: '>=10'}
dependencies:
semver: 7.3.7
@@ -11115,8 +11173,6 @@ packages:
rimraf: 2.7.1
semver: 5.7.1
tar: 4.4.19
- transitivePeerDependencies:
- - supports-color
dev: false
/node-releases/2.0.5:
@@ -11388,15 +11444,15 @@ packages:
get-uri: 3.0.2
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
- pac-resolver: 5.0.1
+ pac-resolver: 5.0.0
raw-body: 2.5.1
socks-proxy-agent: 5.0.1
transitivePeerDependencies:
- supports-color
dev: true
- /pac-resolver/5.0.1:
- resolution: {integrity: sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==}
+ /pac-resolver/5.0.0:
+ resolution: {integrity: sha512-H+/A6KitiHNNW+bxBKREk2MCGSxljfqRX76NjummWEYIat7ldVXRU3dhRIE3iXZ0nvGBk6smv3nntxKkzRL8NA==}
engines: {node: '>= 8'}
dependencies:
degenerator: 3.0.2
@@ -11648,7 +11704,7 @@ packages:
minimist: 1.2.6
mkdirp-classic: 0.5.3
napi-build-utils: 1.0.2
- node-abi: 3.22.0
+ node-abi: 3.15.0
npmlog: 4.1.2
pump: 3.0.0
rc: 1.2.8
@@ -11961,7 +12017,7 @@ packages:
/regenerator-transform/0.15.0:
resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
dependencies:
- '@babel/runtime': 7.18.3
+ '@babel/runtime': 7.18.0
dev: true
/regexp.prototype.flags/1.4.3:
@@ -12173,13 +12229,13 @@ packages:
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
/rimraf/3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
- glob: 7.2.0
+ glob: 7.2.3
/rollup-plugin-terser/7.0.2_rollup@2.74.1:
resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==}
@@ -12193,6 +12249,18 @@ packages:
terser: 5.13.1
dev: true
+ /rollup-plugin-terser/7.0.2_rollup@2.75.4:
+ resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==}
+ peerDependencies:
+ rollup: ^2.0.0
+ dependencies:
+ '@babel/code-frame': 7.16.7
+ jest-worker: 26.6.2
+ rollup: 2.75.4
+ serialize-javascript: 4.0.0
+ terser: 5.13.1
+ dev: true
+
/rollup-pluginutils/2.8.2:
resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
dependencies:
@@ -12205,6 +12273,14 @@ packages:
hasBin: true
optionalDependencies:
fsevents: 2.3.2
+ dev: true
+
+ /rollup/2.75.4:
+ resolution: {integrity: sha512-JgZiJMJkKImMZJ8ZY1zU80Z2bA/TvrL/7D9qcBCrfl2bP+HUaIw0QHUroB4E3gBpFl6CRFM1YxGbuYGtdAswbQ==}
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+ optionalDependencies:
+ fsevents: 2.3.2
/run-parallel/1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
@@ -12474,6 +12550,10 @@ packages:
smart-buffer: 4.2.0
dev: true
+ /solid-js/1.4.2:
+ resolution: {integrity: sha512-IU5yKuT8P/n5F5g8j1rTXqxUdPYmoZDk/074TG94AEYf/nyXAeG82BSge4/lLIbCfUcnGUJ6DRdebIjujOAYyg==}
+ dev: false
+
/solid-js/1.4.3:
resolution: {integrity: sha512-3uh2cbT4ICronIasLAxycF6SVgvqcfwFCDCzlEA9CEahn1qQg8Rw8aRGiI4O51PrHcN5aPRO9knYYRCs0PgzcQ==}
@@ -12481,7 +12561,7 @@ packages:
resolution: {integrity: sha512-iwbgdBzQSxBKoxkzaZgC9MGGUsHWJ74at9i7FF0naoqtwGuKdLYOgOJ9QRlA353DHDS/ttH2e0SRS6s3gz8NLQ==}
dependencies:
nanostores: 0.5.12
- solid-js: 1.4.3
+ solid-js: 1.4.2
dev: false
/sorcery/0.10.0:
@@ -12762,8 +12842,8 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- /svelte-hmr/0.14.11_svelte@3.48.0:
- resolution: {integrity: sha512-R9CVfX6DXxW1Kn45Jtmx+yUe+sPhrbYSUp7TkzbW0jI5fVPn6lsNG9NEs5dFg5qRhFNAoVdRw5qQDLALNKhwbQ==}
+ /svelte-hmr/0.14.12_svelte@3.48.0:
+ resolution: {integrity: sha512-4QSW/VvXuqVcFZ+RhxiR8/newmwOCTlbYIezvkeN6302YFRE8cXy0naamHcjz8Y9Ce3ITTZtrHrIL0AGfyo61w==}
engines: {node: ^12.20 || ^14.13.1 || >= 16}
peerDependencies:
svelte: '>=3.19.0'
@@ -12846,7 +12926,7 @@ packages:
arg: 5.0.1
chokidar: 3.5.3
color-name: 1.1.4
- detective: 5.2.1
+ detective: 5.2.0
didyoumean: 1.2.2
dlv: 1.1.3
fast-glob: 3.2.11
@@ -13031,7 +13111,7 @@ packages:
engines: {node: '>=12'}
hasBin: true
dependencies:
- esbuild: 0.14.39
+ esbuild: 0.14.42
dev: false
/tsutils/3.21.0_typescript@4.7.2:
@@ -13549,10 +13629,10 @@ packages:
stylus:
optional: true
dependencies:
- esbuild: 0.14.39
+ esbuild: 0.14.42
postcss: 8.4.14
resolve: 1.22.0
- rollup: 2.74.1
+ rollup: 2.75.4
optionalDependencies:
fsevents: 2.3.2
dev: false
@@ -13573,10 +13653,10 @@ packages:
stylus:
optional: true
dependencies:
- esbuild: 0.14.39
+ esbuild: 0.14.42
postcss: 8.4.14
resolve: 1.22.0
- rollup: 2.74.1
+ rollup: 2.75.4
sass: 1.52.1
optionalDependencies:
fsevents: 2.3.2
@@ -13764,7 +13844,7 @@ packages:
/wide-align/1.1.5:
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
dependencies:
- string-width: 4.2.3
+ string-width: 1.0.2
/widest-line/4.0.1:
resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
@@ -13795,10 +13875,10 @@ packages:
resolution: {integrity: sha512-8JNHHS7u13nhwIYCDea9MNXBNPHXCs5KDZPKI/ZNTr3f4sMGoD7hgFGecbyjX1gw4z6e9bMpMsOEJNyH5htA/w==}
engines: {node: '>=10.0.0'}
dependencies:
- '@apideck/better-ajv-errors': 0.3.4_ajv@8.11.0
+ '@apideck/better-ajv-errors': 0.3.3_ajv@8.11.0
'@babel/core': 7.18.0
- '@babel/preset-env': 7.18.2_@babel+core@7.18.0
- '@babel/runtime': 7.18.3
+ '@babel/preset-env': 7.18.0_@babel+core@7.18.0
+ '@babel/runtime': 7.18.0
'@rollup/plugin-babel': 5.3.1_ykg7cmcqpmn5fbkb5gxs7i3du4
'@rollup/plugin-node-resolve': 11.2.1_rollup@2.74.1
'@rollup/plugin-replace': 2.4.2_rollup@2.74.1
@@ -13807,7 +13887,7 @@ packages:
common-tags: 1.8.2
fast-json-stable-stringify: 2.1.0
fs-extra: 9.1.0
- glob: 7.2.0
+ glob: 7.2.3
lodash: 4.17.21
pretty-bytes: 5.6.0
rollup: 2.74.1
diff --git a/scripts/package.json b/scripts/package.json
index dcace22ae..81f845095 100644
--- a/scripts/package.json
+++ b/scripts/package.json
@@ -11,7 +11,7 @@
"@astrojs/webapi": "workspace:*",
"adm-zip": "^0.5.9",
"arg": "^5.0.1",
- "esbuild": "^0.14.39",
+ "esbuild": "^0.14.40",
"globby": "^12.2.0",
"kleur": "^4.1.4",
"svelte": "^3.48.0",