diff --git a/packages/editor-ui/src/shims.d.ts b/packages/editor-ui/src/shims.d.ts
index 732441c6ae..f26c77ce8f 100644
--- a/packages/editor-ui/src/shims.d.ts
+++ b/packages/editor-ui/src/shims.d.ts
@@ -5,6 +5,16 @@ declare module 'markdown-it-emoji';
declare module 'markdown-it-task-lists';
declare global {
+ interface ImportMeta {
+ env: {
+ DEV: boolean;
+ PROD: boolean;
+ NODE_ENV: 'development' | 'production';
+ VUE_APP_URL_BASE_API: string;
+ VUE_APP_ENDPOINT_REST?: string;
+ };
+ }
+
interface Window {
BASE_PATH: string;
}
diff --git a/packages/editor-ui/src/stores/n8nRootStore.ts b/packages/editor-ui/src/stores/n8nRootStore.ts
index 702bb23553..44a619941b 100644
--- a/packages/editor-ui/src/stores/n8nRootStore.ts
+++ b/packages/editor-ui/src/stores/n8nRootStore.ts
@@ -5,14 +5,12 @@ import { defineStore } from 'pinia';
import Vue from 'vue';
import { useNodeTypesStore } from './nodeTypes';
+const { VUE_APP_URL_BASE_API, VUE_APP_ENDPOINT_REST } = import.meta.env;
+
export const useRootStore = defineStore(STORES.ROOT, {
state: (): RootState => ({
- // @ts-ignore
- baseUrl: import.meta.env.VUE_APP_URL_BASE_API
- ? import.meta.env.VUE_APP_URL_BASE_API
- : window.BASE_PATH === '/%BASE_PATH%/'
- ? '/'
- : window.BASE_PATH,
+ baseUrl:
+ VUE_APP_URL_BASE_API ?? window.BASE_PATH === '/{{BASE_PATH}}/' ? '/' : window.BASE_PATH,
defaultLocale: 'en',
endpointWebhook: 'webhook',
endpointWebhookTest: 'webhook-test',
@@ -44,16 +42,16 @@ export const useRootStore = defineStore(STORES.ROOT, {
getRestUrl(): string {
let endpoint = 'rest';
- if (import.meta.env.VUE_APP_ENDPOINT_REST) {
- endpoint = import.meta.env.VUE_APP_ENDPOINT_REST;
+ if (VUE_APP_ENDPOINT_REST) {
+ endpoint = VUE_APP_ENDPOINT_REST;
}
return `${this.baseUrl}${endpoint}`;
},
getRestApiContext(): IRestApiContext {
let endpoint = 'rest';
- if (import.meta.env.VUE_APP_ENDPOINT_REST) {
- endpoint = import.meta.env.VUE_APP_ENDPOINT_REST;
+ if (VUE_APP_ENDPOINT_REST) {
+ endpoint = VUE_APP_ENDPOINT_REST;
}
return {
baseUrl: `${this.baseUrl}${endpoint}`,
diff --git a/packages/editor-ui/vite.config.ts b/packages/editor-ui/vite.config.ts
index b1270c79e2..7508d04578 100644
--- a/packages/editor-ui/vite.config.ts
+++ b/packages/editor-ui/vite.config.ts
@@ -1,18 +1,26 @@
import vue from '@vitejs/plugin-vue2';
-import { createHtmlPlugin } from 'vite-plugin-html';
import legacy from '@vitejs/plugin-legacy';
import monacoEditorPlugin from 'vite-plugin-monaco-editor';
import path, { resolve } from 'path';
import { defineConfig, mergeConfig, PluginOption } from 'vite';
import { defineConfig as defineVitestConfig } from 'vitest/config';
+
import packageJSON from './package.json';
const vendorChunks = ['vue', 'vue-router'];
+const n8nChunks = ['n8n-workflow', 'n8n-design-system'];
const ignoreChunks = [
'vue2-boring-avatars',
'vue-template-compiler',
'jquery',
'@fontsource/open-sans',
+ 'normalize-wheel',
+ 'stream-browserify',
+ 'lodash.camelcase',
+ 'lodash.debounce',
+ 'lodash.get',
+ 'lodash.orderby',
+ 'lodash.set',
];
const isScopedPackageToIgnore = (str: string) => /@codemirror\//.test(str);
@@ -22,7 +30,7 @@ function renderChunks() {
const chunks: Record = {};
Object.keys(dependencies).forEach((key) => {
- if ([...vendorChunks, ...ignoreChunks].includes(key)) {
+ if ([...vendorChunks, ...n8nChunks, ...ignoreChunks].includes(key)) {
return;
}
@@ -46,19 +54,13 @@ export default mergeConfig(
define: {
// This causes test to fail but is required for actually running it
...(process.env.NODE_ENV !== 'test' ? { global: 'globalThis' } : {}),
+ BASE_PATH: `'${publicPath}'`,
},
plugins: [
legacy({
targets: ['defaults', 'not IE 11'],
}),
vue(),
- ...(createHtmlPlugin({
- inject: {
- data: {
- BASE_PATH: publicPath,
- },
- },
- }) as PluginOption[]),
monacoEditorPlugin({
publicPath: 'assets/monaco-editor',
customDistPath: (root: string, buildOutDir: string, base: string) =>
@@ -68,7 +70,7 @@ export default mergeConfig(
resolve: {
alias: [
{ find: '@', replacement: resolve(__dirname, 'src') },
- { find: 'stream', replacement: '' },
+ { find: 'stream', replacement: 'stream-browserify' },
{
find: /^n8n-design-system\//,
replacement: resolve(__dirname, '..', 'design-system', 'src') + '/',
@@ -108,6 +110,7 @@ export default mergeConfig(
output: {
manualChunks: {
vendor: vendorChunks,
+ n8n: n8nChunks,
...renderChunks(),
},
},
@@ -119,6 +122,11 @@ export default mergeConfig(
globals: true,
environment: 'jsdom',
setupFiles: ['./src/__tests__/setup.ts'],
+ css: {
+ modules: {
+ classNameStrategy: 'non-scoped',
+ },
+ },
},
}),
);
diff --git a/packages/editor-ui/vue.config.js b/packages/editor-ui/vue.config.js
index acf32e3075..bff148b432 100644
--- a/packages/editor-ui/vue.config.js
+++ b/packages/editor-ui/vue.config.js
@@ -6,10 +6,6 @@ module.exports = {
config.resolve.symlinks(false);
// config.plugins.delete("prefetch"); // enable when language package grows
},
- // transpileDependencies: [
- // // 'node_modules/quill'
- // /\/node_modules\/quill\//
- // ]
pluginOptions: {
webpackBundleAnalyzer: {
openAnalyzer: false,
@@ -50,5 +46,4 @@ module.exports = {
},
},
},
- publicPath: process.env.VUE_APP_PUBLIC_PATH ?? '/',
};
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e19fe4f34f..05873ac4c8 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -78,9 +78,9 @@ importers:
eslint-plugin-vue: ~7.17
devDependencies:
'@types/eslint': 8.4.6
- '@typescript-eslint/eslint-plugin': 5.45.0_psz44bhp76u27vmulntnlx26h4
- '@typescript-eslint/parser': 5.45.0_zksrc6ykdxhogxjbhb5axiabwi
- '@vue/eslint-config-typescript': 8.0.0_waieggddnqlstdz3t2sku3jrrq
+ '@typescript-eslint/eslint-plugin': 5.45.0_wke4plxjew2ogjxrdwvzd2srfq
+ '@typescript-eslint/parser': 5.45.0_wy4udjehnvkneqnogzx5kughki
+ '@vue/eslint-config-typescript': 8.0.0_foaxzhaputljbcoeiwudem25oq
eslint: 8.28.0
eslint-config-airbnb-typescript: 17.0.0_twozqnrpw2n42bn4rzkw5rgv4m
eslint-config-prettier: 8.5.0_eslint@8.28.0
@@ -88,7 +88,7 @@ importers:
eslint-plugin-diff: 2.0.1_eslint@8.28.0
eslint-plugin-import: 2.26.0_xmouedd5rhgbah4737x2hltudq
eslint-plugin-n8n-local-rules: 1.0.0
- eslint-plugin-prettier: 4.2.1_pgxuib4rd7wiymfktharf5ydt4
+ eslint-plugin-prettier: 4.2.1_nrsoca4pvgxhpzs6enniz7suou
eslint-plugin-vue: 7.17.0_eslint@8.28.0
packages/cli:
@@ -360,7 +360,7 @@ importers:
nodemon: 2.0.20
run-script-os: 1.1.6
supertest: 6.3.0
- ts-node: 9.1.1_typescript@4.8.4
+ ts-node: 9.1.1_typescript@4.9.4
tsc-alias: 1.7.1
tsconfig-paths: 3.14.1
@@ -425,91 +425,91 @@ importers:
packages/design-system:
specifiers:
- '@fortawesome/fontawesome-svg-core': ^1.2.35
- '@fortawesome/free-solid-svg-icons': ^5.15.3
- '@fortawesome/vue-fontawesome': ^2.0.2
- '@storybook/addon-actions': ^6.5.10
- '@storybook/addon-essentials': ^6.5.10
- '@storybook/addon-links': ^6.5.10
+ '@fortawesome/fontawesome-svg-core': ^1.2.36
+ '@fortawesome/free-solid-svg-icons': ^5.15.4
+ '@fortawesome/vue-fontawesome': ^2.0.9
+ '@storybook/addon-actions': ^6.5.15
+ '@storybook/addon-essentials': ^6.5.15
+ '@storybook/addon-links': ^6.5.15
'@storybook/addon-postcss': ^2.0.0
- '@storybook/vue': ^6.5.10
- '@testing-library/jest-dom': ^5.16.4
+ '@storybook/vue': ^6.5.15
+ '@testing-library/jest-dom': ^5.16.5
'@testing-library/vue': ^5.8.3
'@types/markdown-it': ^12.2.3
'@types/markdown-it-emoji': ^2.0.2
'@types/markdown-it-link-attributes': ^3.0.1
- '@types/sanitize-html': ^2.6.2
- '@vitejs/plugin-vue2': ^1.1.2
- c8: 7.11.0
- core-js: ^3.6.5
+ '@types/sanitize-html': ^2.8.0
+ '@vitejs/plugin-vue2': ^2.2.0
+ c8: 7.12.0
+ core-js: ^3.27.1
element-ui: ~2.15.12
- jsdom: 19.0.0
- markdown-it: ^12.3.2
- markdown-it-emoji: ^2.0.0
- markdown-it-link-attributes: ^4.0.0
+ jsdom: 21.0.0
+ markdown-it: ^13.0.1
+ markdown-it-emoji: ^2.0.2
+ markdown-it-link-attributes: ^4.0.1
markdown-it-task-lists: ^2.1.1
- node-notifier: '>=8.0.1'
- sanitize-html: 2.7.0
- sass: ^1.55.0
- sass-loader: ^10.1.1
+ node-notifier: ^10.0.1
+ sanitize-html: 2.7.3
+ sass: ^1.57.1
+ sass-loader: ^10.3.1
storybook-addon-designs: ^6.3.1
storybook-addon-themes: ^6.1.0
- trim: '>=0.0.3'
- vite: ^2.9.5
- vitest: ^0.9.3
- vue: ^2.7
- vue-class-component: ^7.2.3
- vue-loader: ^15.9.7
+ trim: ^1.0.1
+ vite: ^4.0.4
+ vitest: ^0.27.2
+ vue: ^2.7.14
+ vue-class-component: ^7.2.6
+ vue-loader: ^15.10.1
vue-property-decorator: ^9.1.2
- vue-template-compiler: ^2.7
- vue-tsc: ^0.35.0
+ vue-template-compiler: ^2.7.14
+ vue-tsc: ^1.0.24
vue-typed-mixins: ^0.2.0
- vue2-boring-avatars: 0.3.4
+ vue2-boring-avatars: 0.3.8
webpack: ^4.46.0
- xss: ^1.0.10
+ xss: ^1.0.14
dependencies:
- element-ui: 2.15.12_vue@2.7.13
- markdown-it: 12.3.2
+ element-ui: 2.15.12_vue@2.7.14
+ markdown-it: 13.0.1
markdown-it-emoji: 2.0.2
markdown-it-link-attributes: 4.0.1
markdown-it-task-lists: 2.1.1
- sanitize-html: 2.7.0
- vue: 2.7.13
+ sanitize-html: 2.7.3
+ vue: 2.7.14
vue-typed-mixins: 0.2.0
- vue2-boring-avatars: 0.3.4
+ vue2-boring-avatars: 0.3.8
xss: 1.0.14
devDependencies:
'@fortawesome/fontawesome-svg-core': 1.2.36
'@fortawesome/free-solid-svg-icons': 5.15.4
- '@fortawesome/vue-fontawesome': 2.0.8_tc4irwwlc7tvswdic4b5cxexom
- '@storybook/addon-actions': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/addon-essentials': 6.5.10_kmc26updsvlp2g3iikgef4xipm
- '@storybook/addon-links': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
+ '@fortawesome/vue-fontawesome': 2.0.9_dh3wzfumpzw6zsszdpw5cxouqy
+ '@storybook/addon-actions': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/addon-essentials': 6.5.15_tmwo376r55imxzsx4yykzrtc74
+ '@storybook/addon-links': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
'@storybook/addon-postcss': 2.0.0_webpack@4.46.0
- '@storybook/vue': 6.5.10_u4sx4ptsds2ukklviwwrncv2bq
+ '@storybook/vue': 6.5.15_ogbyckaggwfyqweeqbx5bhjsqy
'@testing-library/jest-dom': 5.16.5
- '@testing-library/vue': 5.8.3_2s2ymob7v2oigx3hqbmnjuqthq
+ '@testing-library/vue': 5.8.3_rhqkolmkwunxzlyyxxsuwaiuri
'@types/markdown-it': 12.2.3
'@types/markdown-it-emoji': 2.0.2
'@types/markdown-it-link-attributes': 3.0.1
- '@types/sanitize-html': 2.6.2
- '@vitejs/plugin-vue2': 1.1.2_vite@2.9.15+vue@2.7.13
- c8: 7.11.0
- core-js: 3.25.5
- jsdom: 19.0.0
+ '@types/sanitize-html': 2.8.0
+ '@vitejs/plugin-vue2': 2.2.0_vite@4.0.4+vue@2.7.14
+ c8: 7.12.0
+ core-js: 3.27.1
+ jsdom: 21.0.0
node-notifier: 10.0.1
- sass: 1.55.0
- sass-loader: 10.3.1_sass@1.55.0+webpack@4.46.0
+ sass: 1.57.1
+ sass-loader: 10.3.1_sass@1.57.1+webpack@4.46.0
storybook-addon-designs: 6.3.1_react@17.0.2
- storybook-addon-themes: 6.1.0_fdr5yqsnbg2irpjrsjxeyybfsm
+ storybook-addon-themes: 6.1.0_a5nuvzww5baef7fspvwijmdp24
trim: 1.0.1
- vite: 2.9.15_sass@1.55.0
- vitest: 0.9.3_b5ycfd3de3zzpsiaupqrfychby
- vue-class-component: 7.2.6_vue@2.7.13
- vue-loader: 15.10.0_bmmfcdfkgwka5ige2hekgeknby
- vue-property-decorator: 9.1.2_lh5kvfzhejbphpoiiowdoloare
- vue-template-compiler: 2.7.13
- vue-tsc: 0.35.2_typescript@4.8.4
+ vite: 4.0.4_sass@1.57.1
+ vitest: 0.27.2_jsdom@21.0.0+sass@1.57.1
+ vue-class-component: 7.2.6_vue@2.7.14
+ vue-loader: 15.10.1_kqygo6wsub6p3cpcl6idox7sza
+ vue-property-decorator: 9.1.2_jtyyyychrtcflhl7vfprhmeb3y
+ vue-template-compiler: 2.7.14
+ vue-tsc: 1.0.24_typescript@4.9.4
webpack: 4.46.0
packages/editor-ui:
@@ -540,8 +540,8 @@ importers:
'@types/lodash.set': ^4.3.6
'@types/luxon': ^2.0.9
'@types/uuid': ^8.3.2
- '@vitejs/plugin-legacy': ^1.8.2
- '@vitejs/plugin-vue2': ^1.1.2
+ '@vitejs/plugin-legacy': ^3.0.1
+ '@vitejs/plugin-vue2': ^2.2.0
axios: ^0.21.1
c8: ^7.12.0
codemirror-lang-html-n8n: ^1.0.0
@@ -572,15 +572,15 @@ importers:
prismjs: ^1.17.1
sass: ^1.55.0
sass-loader: ^10.1.1
+ stream-browserify: ^3.0.0
string-template-parser: ^1.2.6
timeago.js: ^4.0.2
uuid: ^8.3.2
v-click-outside: ^3.1.2
- vite: 2.9.5
- vite-plugin-html: ^3.2.0
+ vite: 4.0.4
vite-plugin-monaco-editor: ^1.0.10
- vitest: 0.9.3
- vue: ^2.7
+ vitest: 0.27.2
+ vue: ^2.7.14
vue-agile: ^2.0.0
vue-fragment: 1.5.1
vue-i18n: ^8.26.7
@@ -588,8 +588,8 @@ importers:
vue-json-pretty: 1.9.3
vue-prism-editor: ^0.3.0
vue-router: ^3.6.5
- vue-template-compiler: ^2.7
- vue-tsc: ^0.35.0
+ vue-template-compiler: ^2.7.14
+ vue-tsc: ^1.0.24
vue-typed-mixins: ^0.2.0
vue2-boring-avatars: 0.3.4
vue2-teleport: ^1.0.1
@@ -607,7 +607,7 @@ importers:
'@fortawesome/fontawesome-svg-core': 1.2.36
'@fortawesome/free-regular-svg-icons': 6.2.0
'@fortawesome/free-solid-svg-icons': 5.15.4
- '@fortawesome/vue-fontawesome': 2.0.8_tc4irwwlc7tvswdic4b5cxexom
+ '@fortawesome/vue-fontawesome': 2.0.8_dh3wzfumpzw6zsszdpw5cxouqy
axios: 0.21.4
codemirror-lang-html-n8n: 1.0.0
codemirror-lang-n8n-expression: 0.1.0_zyklskjzaprvz25ee7sq7godcq
@@ -631,30 +631,31 @@ importers:
n8n-design-system: link:../design-system
n8n-workflow: link:../workflow
normalize-wheel: 1.0.1
- pinia: 2.0.23_xjcbg5znturqejtkpd33hx726m
+ pinia: 2.0.23_vj744rb3neneiaeb3oalctaenu
prettier: 2.8.2
prismjs: 1.29.0
+ stream-browserify: 3.0.0
timeago.js: 4.0.2
uuid: 8.3.2
v-click-outside: 3.2.0
- vue: 2.7.13
+ vue: 2.7.14
vue-agile: 2.0.0
- vue-fragment: 1.5.1_vue@2.7.13
- vue-i18n: 8.27.2_vue@2.7.13
- vue-infinite-loading: 2.4.5_vue@2.7.13
+ vue-fragment: 1.5.1_vue@2.7.14
+ vue-i18n: 8.27.2_vue@2.7.14
+ vue-infinite-loading: 2.4.5_vue@2.7.14
vue-json-pretty: 1.9.3
vue-prism-editor: 0.3.0
- vue-router: 3.6.5_vue@2.7.13
- vue-template-compiler: 2.7.13
+ vue-router: 3.6.5_vue@2.7.14
+ vue-template-compiler: 2.7.14
vue-typed-mixins: 0.2.0
vue2-boring-avatars: 0.3.4
vue2-teleport: 1.0.1
vue2-touch-events: 3.2.2
xss: 1.0.14
devDependencies:
- '@pinia/testing': 0.0.14_pinia@2.0.23+vue@2.7.13
+ '@pinia/testing': 0.0.14_pinia@2.0.23+vue@2.7.14
'@testing-library/jest-dom': 5.16.5
- '@testing-library/vue': 5.8.3_2s2ymob7v2oigx3hqbmnjuqthq
+ '@testing-library/vue': 5.8.3_rhqkolmkwunxzlyyxxsuwaiuri
'@types/dateformat': 3.0.1
'@types/express': 4.17.14
'@types/file-saver': 2.0.5
@@ -666,18 +667,17 @@ importers:
'@types/lodash.set': 4.3.7
'@types/luxon': 2.4.0
'@types/uuid': 8.3.4
- '@vitejs/plugin-legacy': 1.8.2_vite@2.9.5
- '@vitejs/plugin-vue2': 1.1.2_vite@2.9.5+vue@2.7.13
+ '@vitejs/plugin-legacy': 3.0.1_terser@5.16.1+vite@4.0.4
+ '@vitejs/plugin-vue2': 2.2.0_vite@4.0.4+vue@2.7.14
c8: 7.12.0
jshint: 2.13.5
sass: 1.55.0
sass-loader: 10.3.1_sass@1.55.0+webpack@5.74.0
string-template-parser: 1.2.6
- vite: 2.9.5_sass@1.55.0
- vite-plugin-html: 3.2.0_vite@2.9.5
+ vite: 4.0.4_sass@1.55.0+terser@5.16.1
vite-plugin-monaco-editor: 1.1.0_monaco-editor@0.33.0
- vitest: 0.9.3_c8@7.12.0+sass@1.55.0
- vue-tsc: 0.35.2_typescript@4.8.4
+ vitest: 0.27.2_sass@1.55.0+terser@5.16.1
+ vue-tsc: 1.0.24_typescript@4.9.4
packages/node-dev:
specifiers:
@@ -895,7 +895,7 @@ importers:
'@types/tmp': 0.2.3
'@types/uuid': 8.3.4
'@types/xml2js': 0.4.11
- eslint-plugin-n8n-nodes-base: 1.12.0_zksrc6ykdxhogxjbhb5axiabwi
+ eslint-plugin-n8n-nodes-base: 1.12.0_wy4udjehnvkneqnogzx5kughki
gulp: 4.0.2
n8n-workflow: link:../workflow
@@ -961,8 +961,8 @@ packages:
- supports-color
dev: false
- /@adobe/css-tools/4.0.1:
- resolution: {integrity: sha512-+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigemIdIeTi1ODqjx6Tad9NCVnPRwewWlKkVab5PlK8DCtPTyX7S8g==}
+ /@adobe/css-tools/4.0.2:
+ resolution: {integrity: sha512-Fx6tYjk2wKUgLi8uMANZr8GNZx05u44ArIJldn9VxLvolzlJVgHbTUCbwhMd6bcYky178+WUSxPHO3DAtGLWpw==}
dev: true
/@ampproject/remapping/2.2.0:
@@ -970,7 +970,7 @@ packages:
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.1.1
- '@jridgewell/trace-mapping': 0.3.16
+ '@jridgewell/trace-mapping': 0.3.17
dev: true
/@apidevtools/json-schema-ref-parser/8.0.0:
@@ -1242,22 +1242,27 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
+ /@babel/compat-data/7.20.10:
+ resolution: {integrity: sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
/@babel/core/7.12.9:
resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.19.5
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helpers': 7.19.4
- '@babel/parser': 7.19.4
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/generator': 7.20.7
+ '@babel/helper-module-transforms': 7.20.11
+ '@babel/helpers': 7.20.7
+ '@babel/parser': 7.20.7
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.20.12
+ '@babel/types': 7.20.7
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
- json5: 2.2.1
+ json5: 2.2.3
lodash: 4.17.21
resolve: 1.22.1
semver: 5.7.1
@@ -1276,10 +1281,10 @@ packages:
'@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
'@babel/helper-module-transforms': 7.19.0
'@babel/helpers': 7.19.4
- '@babel/parser': 7.19.4
+ '@babel/parser': 7.20.7
'@babel/template': 7.18.10
'@babel/traverse': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -1289,11 +1294,43 @@ packages:
- supports-color
dev: true
+ /@babel/core/7.20.12:
+ resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.0
+ '@babel/code-frame': 7.18.6
+ '@babel/generator': 7.20.7
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
+ '@babel/helper-module-transforms': 7.20.11
+ '@babel/helpers': 7.20.7
+ '@babel/parser': 7.20.7
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.20.12
+ '@babel/types': 7.20.7
+ convert-source-map: 1.9.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/generator/7.19.5:
resolution: {integrity: sha512-DxbNz9Lz4aMZ99qPpO1raTbcrI1ZeYh+9NR9qhfkQIbFtVEqotHojEBxHzmxhVONkGt6VyrqVQcgpefMy9pqcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
+ '@jridgewell/gen-mapping': 0.3.2
+ jsesc: 2.5.2
+ dev: true
+
+ /@babel/generator/7.20.7:
+ resolution: {integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.20.7
'@jridgewell/gen-mapping': 0.3.2
jsesc: 2.5.2
dev: true
@@ -1302,7 +1339,7 @@ packages:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
@@ -1310,7 +1347,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-compilation-targets/7.19.3_@babel+core@7.19.3:
@@ -1326,45 +1363,60 @@ packages:
semver: 6.3.0
dev: true
- /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.3:
- resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
+ /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/compat-data': 7.20.10
+ '@babel/core': 7.20.12
+ '@babel/helper-validator-option': 7.18.6
+ browserslist: 4.21.4
+ lru-cache: 5.1.1
+ semver: 6.3.0
+ dev: true
+
+ /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.20.12:
+ resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
- '@babel/helper-member-expression-to-functions': 7.18.9
+ '@babel/helper-member-expression-to-functions': 7.20.7
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-replace-supers': 7.20.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
'@babel/helper-split-export-declaration': 7.18.6
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.19.3:
- resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
+ /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.12:
+ resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
- regexpu-core: 5.2.1
+ regexpu-core: 5.2.2
dev: true
- /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.19.3:
+ /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.20.12:
resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
'@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/traverse': 7.19.4
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/traverse': 7.20.12
debug: 4.3.4
lodash.debounce: 4.0.8
resolve: 1.22.1
@@ -1373,14 +1425,14 @@ packages:
- supports-color
dev: true
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.19.3:
+ /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.12:
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
debug: 4.3.4
lodash.debounce: 4.0.8
resolve: 1.22.1
@@ -1398,36 +1450,36 @@ packages:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-function-name/7.19.0:
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.18.10
- '@babel/types': 7.19.4
+ '@babel/template': 7.20.7
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
dev: true
- /@babel/helper-member-expression-to-functions/7.18.9:
- resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
+ /@babel/helper-member-expression-to-functions/7.20.7:
+ resolution: {integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-module-transforms/7.19.0:
@@ -1441,7 +1493,23 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
'@babel/template': 7.18.10
'@babel/traverse': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helper-module-transforms/7.20.11:
+ resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-simple-access': 7.20.2
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/helper-validator-identifier': 7.19.1
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.20.12
+ '@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
dev: true
@@ -1450,7 +1518,7 @@ packages:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-plugin-utils/7.10.4:
@@ -1462,30 +1530,36 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.3:
+ /@babel/helper-plugin-utils/7.20.2:
+ resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
+ /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-wrap-function': 7.19.0
- '@babel/types': 7.19.4
+ '@babel/helper-wrap-function': 7.20.5
+ '@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helper-replace-supers/7.19.1:
- resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==}
+ /@babel/helper-replace-supers/7.20.7:
+ resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-member-expression-to-functions': 7.18.9
+ '@babel/helper-member-expression-to-functions': 7.20.7
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/traverse': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.20.12
+ '@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
dev: true
@@ -1494,21 +1568,28 @@ packages:
resolution: {integrity: sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
dev: true
- /@babel/helper-skip-transparent-expression-wrappers/7.18.9:
- resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==}
+ /@babel/helper-simple-access/7.20.2:
+ resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
+ dev: true
+
+ /@babel/helper-skip-transparent-expression-wrappers/7.20.0:
+ resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
dev: true
/@babel/helper-string-parser/7.19.4:
@@ -1524,14 +1605,14 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-wrap-function/7.19.0:
- resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==}
+ /@babel/helper-wrap-function/7.20.5:
+ resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.19.0
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.20.12
+ '@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
dev: true
@@ -1542,7 +1623,18 @@ packages:
dependencies:
'@babel/template': 7.18.10
'@babel/traverse': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helpers/7.20.7:
+ resolution: {integrity: sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.20.12
+ '@babel/types': 7.20.7
transitivePeerDependencies:
- supports-color
dev: true
@@ -1556,168 +1648,168 @@ packages:
js-tokens: 4.0.0
dev: true
- /@babel/parser/7.19.4:
- resolution: {integrity: sha512-qpVT7gtuOLjWeDTKLkJ6sryqLliBaFpAtGeqw5cs5giLldvh+Ch0plqnUMKoVAUS6ZEueQQiZV+p5pxtPitEsA==}
+ /@babel/parser/7.20.7:
+ resolution: {integrity: sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.19.3:
- resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.19.3:
- resolution: {integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==}
+ /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.19.3:
- resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
+ /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-decorators/7.19.3_@babel+core@7.19.3:
- resolution: {integrity: sha512-MbgXtNXqo7RTKYIXVchVJGPvaVufQH3pxvQyfbGvNw1DObIhph+PesYXJTcd8J4DdWibvf6Z2eanOyItX8WnJg==}
+ /@babel/plugin-proposal-decorators/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-JB45hbUweYpwAGjkiM7uCyXMENH2lG+9r3G2E+ttc2PRXAoEkpfd/KW5jDg4j8RS6tLtTG1jZi9LbHZVSfs1/A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/core': 7.20.12
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.19.3
+ '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.19.3:
+ /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.20.12:
resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.3:
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.19.3:
- resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
+ /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12
dev: true
/@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9:
@@ -1726,85 +1818,85 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.12.9
+ '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.12.9
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.19.3:
- resolution: {integrity: sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==}
+ /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.4
- '@babel/core': 7.19.3
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.3
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3
+ '@babel/compat-data': 7.20.10
+ '@babel/core': 7.20.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.19.3:
- resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
+ /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12
dev: true
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.19.3:
- resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
+ /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.12:
+ resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.3
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.3:
@@ -1813,7 +1905,16 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: true
+
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12:
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.19.3:
@@ -1831,75 +1932,84 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.19.3:
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12:
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: true
+
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.19.3:
+ /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.20.12:
resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.19.3:
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.19.3:
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.19.3:
- resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==}
+ /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.12:
+ resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.19.3:
@@ -1917,7 +2027,16 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: true
+
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12:
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9:
@@ -1926,7 +2045,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.3:
@@ -1939,13 +2058,32 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
+ /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.12:
+ resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: true
+
/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.3:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: true
+
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12:
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.3:
@@ -1954,7 +2092,16 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: true
+
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12:
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.3:
@@ -1963,7 +2110,16 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: true
+
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12:
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9:
@@ -1972,7 +2128,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.3:
@@ -1981,7 +2137,16 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: true
+
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12:
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.3:
@@ -1990,7 +2155,16 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: true
+
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12:
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.3:
@@ -1999,17 +2173,26 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.19.3:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12:
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: true
+
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.3:
@@ -2019,7 +2202,17 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: true
+
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12:
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
/@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.3:
@@ -2032,596 +2225,604 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.3:
- resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
+ /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.12:
+ resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.19.3:
- resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
+ /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ dev: true
+
+ /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.20.12
'@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-block-scoping/7.19.4_@babel+core@7.19.3:
- resolution: {integrity: sha512-934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ==}
+ /@babel/plugin-transform-block-scoping/7.20.11_@babel+core@7.20.12:
+ resolution: {integrity: sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.3:
- resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==}
+ /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.18.6
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.3:
- resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
+ /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/template': 7.20.7
dev: true
- /@babel/plugin-transform-destructuring/7.19.4_@babel+core@7.19.3:
- resolution: {integrity: sha512-t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA==}
+ /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.19.3:
+ /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.19.3:
+ /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.20.12:
resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.12
dev: true
- /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.3:
+ /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.12:
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.3:
+ /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
'@babel/helper-function-name': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.3:
+ /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.19.3:
- resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
+ /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.12:
+ resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/core': 7.20.12
+ '@babel/helper-module-transforms': 7.20.11
+ '@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.19.3:
- resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
+ /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.12:
+ resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-simple-access': 7.19.4
- babel-plugin-dynamic-import-node: 2.3.3
+ '@babel/core': 7.20.12
+ '@babel/helper-module-transforms': 7.20.11
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-simple-access': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.19.3:
- resolution: {integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==}
+ /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.12:
+ resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
'@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-module-transforms': 7.20.11
+ '@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-identifier': 7.19.1
- babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-module-transforms': 7.20.11
+ '@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.19.3:
- resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
+ /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.12:
+ resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.12.9:
- resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
+ /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.12.9:
+ resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.3:
- resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
+ /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12
dev: true
- /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.19.3:
- resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
+ /@babel/plugin-transform-react-jsx/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.3
- '@babel/types': 7.19.4
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12
+ '@babel/types': 7.20.7
dev: true
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.3:
- resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
+ /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.12:
+ resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- regenerator-transform: 0.15.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ regenerator-transform: 0.15.1
dev: true
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.3:
- resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
+ /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
dev: true
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.3:
+ /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.19.3:
+ /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-typescript/7.19.3_@babel+core@7.19.3:
- resolution: {integrity: sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w==}
+ /@babel/plugin-transform-typescript/7.20.7_@babel+core@7.20.12:
+ resolution: {integrity: sha512-m3wVKEvf6SoszD8pu4NZz3PvfKRCMgk6D6d0Qi9hNnlM5M6CFS92EgF4EiHVLKbU0r/r7ty1hg7NPZwE7WRbYw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.19.3:
+ /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.12:
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.19.3:
+ /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
dev: true
- /@babel/preset-env/7.19.4_@babel+core@7.19.3:
- resolution: {integrity: sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==}
+ /@babel/preset-env/7.20.2_@babel+core@7.20.12:
+ resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.4
- '@babel/core': 7.19.3
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/compat-data': 7.20.10
+ '@babel/core': 7.20.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.19.3
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.3
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.3
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.3
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.3
- '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.3
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.3
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.3
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.3
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.3
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.3
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.3
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.3
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.3
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-block-scoping': 7.19.4_@babel+core@7.19.3
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.3
- '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.19.3
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.3
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.19.3
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.19.3
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.3
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.19.3
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.19.3
- '@babel/preset-modules': 0.1.5_@babel+core@7.19.3
- '@babel/types': 7.19.4
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.3
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.3
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.3
- core-js-compat: 3.25.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.12
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.12
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12
+ '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.12
+ '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.12
+ '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12
+ '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.12
+ '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.12
+ '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.12
+ '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.12
+ '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.12
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.12
+ '@babel/preset-modules': 0.1.5_@babel+core@7.20.12
+ '@babel/types': 7.20.7
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12
+ babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12
+ core-js-compat: 3.27.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-flow/7.18.6_@babel+core@7.19.3:
+ /@babel/preset-flow/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.19.3
+ '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.12
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.19.3:
+ /@babel/preset-modules/0.1.5_@babel+core@7.20.12:
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.3
- '@babel/types': 7.19.4
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12
+ '@babel/types': 7.20.7
esutils: 2.0.3
dev: true
- /@babel/preset-react/7.18.6_@babel+core@7.19.3:
+ /@babel/preset-react/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.12
dev: true
- /@babel/preset-typescript/7.18.6_@babel+core@7.19.3:
+ /@babel/preset-typescript/7.18.6_@babel+core@7.20.12:
resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/core': 7.20.12
+ '@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-typescript': 7.19.3_@babel+core@7.19.3
+ '@babel/plugin-transform-typescript': 7.20.7_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/register/7.18.9_@babel+core@7.19.3:
+ /@babel/register/7.18.9_@babel+core@7.20.12:
resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -2629,12 +2830,12 @@ packages:
source-map-support: 0.5.21
dev: true
- /@babel/runtime-corejs3/7.19.4:
- resolution: {integrity: sha512-HzjQ8+dzdx7dmZy4DQ8KV8aHi/74AjEbBGTFutBmg/pd3dY5/q1sfuOGPTFGEytlQhWoeVXqcK5BwMgIkRkNDQ==}
+ /@babel/runtime-corejs3/7.20.7:
+ resolution: {integrity: sha512-jr9lCZ4RbRQmCR28Q8U8Fu49zvFqLxTY9AMOUz+iyMohMoAgpEcVxY+wJNay99oXOpOcCTODkk70NDN2aaJEeg==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.25.5
- regenerator-runtime: 0.13.9
+ core-js-pure: 3.27.1
+ regenerator-runtime: 0.13.11
dev: true
/@babel/runtime/7.19.4:
@@ -2643,8 +2844,15 @@ packages:
dependencies:
regenerator-runtime: 0.13.9
- /@babel/standalone/7.19.5:
- resolution: {integrity: sha512-H2eXpo1ZfTZhBwsCbfSKHrjTb934laSas14hdjULLSKmLxU4B7kazQKm3mjpDuH/HyPmRq1cbrGL7223M7EDFw==}
+ /@babel/runtime/7.20.7:
+ resolution: {integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.13.11
+ dev: true
+
+ /@babel/standalone/7.20.12:
+ resolution: {integrity: sha512-hK/X+m1il3w1tYS4H8LDaGCEdiT47SVqEXY8RiEAgou26BystipSU8ZL6EvBR6t5l7lTv0ilBiChXWblKJ5iUA==}
engines: {node: '>=6.9.0'}
dev: true
@@ -2653,8 +2861,17 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
+ dev: true
+
+ /@babel/template/7.20.7:
+ resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.18.6
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
dev: true
/@babel/traverse/7.19.4:
@@ -2667,16 +2884,34 @@ packages:
'@babel/helper-function-name': 7.19.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/types/7.19.4:
- resolution: {integrity: sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==}
+ /@babel/traverse/7.20.12:
+ resolution: {integrity: sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.18.6
+ '@babel/generator': 7.20.7
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.19.0
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
+ debug: 4.3.4
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/types/7.20.7:
+ resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.19.4
@@ -2842,14 +3077,182 @@ packages:
engines: {node: '>=10.0.0'}
dev: true
- /@esbuild/linux-loong64/0.14.54:
- resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
+ /@esbuild/android-arm/0.16.17:
+ resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+ dev: true
+ optional: true
+
+ /@esbuild/android-arm64/0.16.17:
+ resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+ dev: true
+ optional: true
+
+ /@esbuild/android-x64/0.16.17:
+ resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+ dev: true
+ optional: true
+
+ /@esbuild/darwin-arm64/0.16.17:
+ resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+ dev: true
+ optional: true
+
+ /@esbuild/darwin-x64/0.16.17:
+ resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+ dev: true
+ optional: true
+
+ /@esbuild/freebsd-arm64/0.16.17:
+ resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+ dev: true
+ optional: true
+
+ /@esbuild/freebsd-x64/0.16.17:
+ resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+ dev: true
+ optional: true
+
+ /@esbuild/linux-arm/0.16.17:
+ resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+ dev: true
+ optional: true
+
+ /@esbuild/linux-arm64/0.16.17:
+ resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+ dev: true
+ optional: true
+
+ /@esbuild/linux-ia32/0.16.17:
+ resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+ dev: true
+ optional: true
+
+ /@esbuild/linux-loong64/0.16.17:
+ resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
dev: true
optional: true
+ /@esbuild/linux-mips64el/0.16.17:
+ resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+ dev: true
+ optional: true
+
+ /@esbuild/linux-ppc64/0.16.17:
+ resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+ dev: true
+ optional: true
+
+ /@esbuild/linux-riscv64/0.16.17:
+ resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+ dev: true
+ optional: true
+
+ /@esbuild/linux-s390x/0.16.17:
+ resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+ dev: true
+ optional: true
+
+ /@esbuild/linux-x64/0.16.17:
+ resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+ dev: true
+ optional: true
+
+ /@esbuild/netbsd-x64/0.16.17:
+ resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+ dev: true
+ optional: true
+
+ /@esbuild/openbsd-x64/0.16.17:
+ resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+ dev: true
+ optional: true
+
+ /@esbuild/sunos-x64/0.16.17:
+ resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+ dev: true
+ optional: true
+
+ /@esbuild/win32-arm64/0.16.17:
+ resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+ dev: true
+ optional: true
+
+ /@esbuild/win32-ia32/0.16.17:
+ resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+ dev: true
+ optional: true
+
+ /@esbuild/win32-x64/0.16.17:
+ resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+ dev: true
+ optional: true
+
/@eslint/eslintrc/1.3.3:
resolution: {integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -2870,16 +3273,16 @@ packages:
/@figspec/components/1.0.1:
resolution: {integrity: sha512-UvnEamPEAMh9HExViqpobWmX25g1+soA9kcJu+It3VerMa7CeVyaIbQydNf1Gys5v/rxJVdTDRgQ7OXW2zAAig==}
dependencies:
- lit: 2.4.0
+ lit: 2.6.1
dev: true
- /@figspec/react/1.0.2_react@17.0.2:
- resolution: {integrity: sha512-BG6TTySyyDPDeER1oHNNj7+UYu7NzXwqJM6Z2utJtvGGk/Vn4NzrSdDU+HVp04o0kDEEJd5hJbFgkH3uzqimPQ==}
+ /@figspec/react/1.0.3_react@17.0.2:
+ resolution: {integrity: sha512-r683qOko+5CbT48Ox280fMx2MNAtaFPgCNJvldOqN3YtmAzlcTT+YSxd3OahA+kjXGGrnzDbUgeTOX1cPLII+g==}
peerDependencies:
react: ^16.14.0 || ^17.0.0 || ^18.0.0
dependencies:
'@figspec/components': 1.0.1
- '@lit-labs/react': 1.0.9
+ '@lit-labs/react': 1.1.1
react: 17.0.2
dev: true
@@ -2915,14 +3318,25 @@ packages:
dependencies:
'@fortawesome/fontawesome-common-types': 0.2.36
- /@fortawesome/vue-fontawesome/2.0.8_tc4irwwlc7tvswdic4b5cxexom:
+ /@fortawesome/vue-fontawesome/2.0.8_dh3wzfumpzw6zsszdpw5cxouqy:
resolution: {integrity: sha512-SRmP0q9Ox4zq8ydDR/hrH+23TVU1bdwYVnugLVaAIwklOHbf56gx6JUGlwES7zjuNYqzKgl8e39iYf6ph8qSQw==}
peerDependencies:
'@fortawesome/fontawesome-svg-core': ~1 || ~6
vue: ~2
dependencies:
'@fortawesome/fontawesome-svg-core': 1.2.36
- vue: 2.7.13
+ vue: 2.7.14
+ dev: false
+
+ /@fortawesome/vue-fontawesome/2.0.9_dh3wzfumpzw6zsszdpw5cxouqy:
+ resolution: {integrity: sha512-tUmO92PFHbLOplitjHNBVGMJm6S57vp16tBXJVPKSI/6CfjrgLycqKxEpC6f7qsOqUdoXs5nIv4HLUfrOMHzuw==}
+ peerDependencies:
+ '@fortawesome/fontawesome-svg-core': ~1 || ~6
+ vue: ~2
+ dependencies:
+ '@fortawesome/fontawesome-svg-core': 1.2.36
+ vue: 2.7.14
+ dev: true
/@gar/promisify/1.1.3:
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
@@ -3049,13 +3463,6 @@ packages:
jest-mock: 29.3.1
dev: true
- /@jest/expect-utils/28.1.3:
- resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- jest-get-type: 28.0.2
- dev: true
-
/@jest/expect-utils/29.3.1:
resolution: {integrity: sha512-wlrznINZI5sMjwvUoLVk617ll/UYfGIZNxmbU+Pa7wmkL4vYzhV9R2pwVqUh4NWWuLQWkI8+8mOkxs//prKQ3g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -3134,18 +3541,11 @@ packages:
- supports-color
dev: true
- /@jest/schemas/28.1.3:
- resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@sinclair/typebox': 0.24.50
- dev: true
-
/@jest/schemas/29.0.0:
resolution: {integrity: sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@sinclair/typebox': 0.24.50
+ '@sinclair/typebox': 0.24.51
dev: true
/@jest/source-map/29.2.0:
@@ -3181,7 +3581,7 @@ packages:
resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
'@jest/types': 26.6.2
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
@@ -3229,20 +3629,8 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 16.11.65
- '@types/yargs': 15.0.14
- chalk: 4.1.2
- dev: true
-
- /@jest/types/28.1.3:
- resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@jest/schemas': 28.1.3
- '@types/istanbul-lib-coverage': 2.0.4
- '@types/istanbul-reports': 3.0.1
- '@types/node': 16.11.65
- '@types/yargs': 17.0.13
+ '@types/node': 18.11.18
+ '@types/yargs': 15.0.15
chalk: 4.1.2
dev: true
@@ -3253,8 +3641,8 @@ packages:
'@jest/schemas': 29.0.0
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 16.11.65
- '@types/yargs': 17.0.13
+ '@types/node': 18.11.18
+ '@types/yargs': 17.0.19
chalk: 4.1.2
dev: true
@@ -3272,7 +3660,7 @@ packages:
dependencies:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.14
- '@jridgewell/trace-mapping': 0.3.16
+ '@jridgewell/trace-mapping': 0.3.17
dev: true
/@jridgewell/resolve-uri/3.1.0:
@@ -3289,7 +3677,7 @@ packages:
resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
dependencies:
'@jridgewell/gen-mapping': 0.3.2
- '@jridgewell/trace-mapping': 0.3.16
+ '@jridgewell/trace-mapping': 0.3.17
dev: true
/@jridgewell/sourcemap-codec/1.4.14:
@@ -3303,6 +3691,13 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.14
dev: true
+ /@jridgewell/trace-mapping/0.3.17:
+ resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.0
+ '@jridgewell/sourcemap-codec': 1.4.14
+ dev: true
+
/@js-joda/core/5.4.1:
resolution: {integrity: sha512-+uMco2Xm9VYJ81XYWwrvgsM9xEvqs9JvLNrN4/fOg7YJKk4yeqAg+O/cpoFPTGxvfL2Zy0mUcnKlIz9UV0Cadw==}
dev: false
@@ -3367,12 +3762,18 @@ packages:
'@lezer/common': 1.0.1
dev: false
- /@lit-labs/react/1.0.9:
- resolution: {integrity: sha512-yjkdcciypTIJ6vUXzZJHTAwt2fdATUAfZMkHRbLpbgEnr8OwpwVOQ04me1Y7p5Vwtmcd4GWY0/BQ6G8jUgCK1w==}
+ /@lit-labs/react/1.1.1:
+ resolution: {integrity: sha512-9TC+/ZWb6BJlWCyUr14FKFlaGnyKpeEDorufXozQgke/VoVrslUQNaL7nBmrAWdNrmzx5jWgi8lFmWwrxMjnlA==}
dev: true
- /@lit/reactive-element/1.4.1:
- resolution: {integrity: sha512-qDv4851VFSaBWzpS02cXHclo40jsbAjRXnebNXpm0uVg32kCneZPo9RYVQtrTNICtZ+1wAYHu1ZtxWSWMbKrBw==}
+ /@lit-labs/ssr-dom-shim/1.0.0:
+ resolution: {integrity: sha512-ic93MBXfApIFTrup4a70M/+ddD8xdt2zxxj9sRwHQzhS9ag/syqkD8JPdTXsc1gUy2K8TTirhlCqyTEM/sifNw==}
+ dev: true
+
+ /@lit/reactive-element/1.6.1:
+ resolution: {integrity: sha512-va15kYZr7KZNNPZdxONGQzpUr+4sxVu7V/VG7a8mRfPPXUyhEYj5RzXCQmGrlP3tAh0L3HHm5AjBMFYRqlM9SA==}
+ dependencies:
+ '@lit-labs/ssr-dom-shim': 1.0.0
dev: true
/@mapbox/node-pre-gyp/1.0.10:
@@ -3514,7 +3915,7 @@ packages:
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.13.0
+ fastq: 1.15.0
/@npmcli/fs/1.1.1:
resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==}
@@ -3774,13 +4175,13 @@ packages:
engines: {node: '>=8.0.0'}
dev: false
- /@pinia/testing/0.0.14_pinia@2.0.23+vue@2.7.13:
+ /@pinia/testing/0.0.14_pinia@2.0.23+vue@2.7.14:
resolution: {integrity: sha512-ZmZwVNd/NnKYLIfjfuKl0zlJ3UdiXFpsHzSlL6wCeezSlyrqGMxsIQKv0J6fleu38gyCNTPBEipfxrt8V4+VIg==}
peerDependencies:
pinia: '>=2.0.19'
dependencies:
- pinia: 2.0.23_xjcbg5znturqejtkpd33hx726m
- vue-demi: 0.13.11_vue@2.7.13
+ pinia: 2.0.23_vj744rb3neneiaeb3oalctaenu
+ vue-demi: 0.13.11_vue@2.7.14
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -3798,14 +4199,6 @@ packages:
tslib: 2.4.0
dev: true
- /@rollup/pluginutils/4.2.1:
- resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
- engines: {node: '>= 8.0.0'}
- dependencies:
- estree-walker: 2.0.2
- picomatch: 2.3.1
- dev: true
-
/@rudderstack/rudder-sdk-node/1.0.6:
resolution: {integrity: sha512-kJYCXv6fRFbQrAp3hMsgRCnAa7RUBdbiGLBT9PcpQURi0VwHmD7mk3Ja7U4HDnL0EHXYJpPyx3oSonkklmPJ9Q==}
engines: {node: '>=4'}
@@ -3908,8 +4301,8 @@ packages:
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
dev: true
- /@sinclair/typebox/0.24.50:
- resolution: {integrity: sha512-k8ETQOOQDg5FtK7y9KJWpsGLik+QlPmIi8zzl/dGUgshV2QitprkFlCR/AemjWOTyKn9UwSSGRTzLVotvgCjYQ==}
+ /@sinclair/typebox/0.24.51:
+ resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==}
dev: true
/@sinonjs/commons/1.8.3:
@@ -3928,8 +4321,8 @@ packages:
resolution: {integrity: sha512-O3uyB/JbkAEMZaP3YqyHH7TMnex7tWyCbCI4EfJdOCoN6HIhqdJBWTM6aCCiWQ/5f5wxjgU735QAIpJbjDvmzg==}
dev: false
- /@storybook/addon-actions/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-vpCnEu81fmtYzOf0QsRYoDuf9wXgVVl2VysE1dWRebRhIUDU0JurrthTnw322e38D4FzaoNGqZE7wnBYBohzZA==}
+ /@storybook/addon-actions/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-cnLzVK1S+EydFDSuvxMmMAxVqNXijBGdV9QTgsu6ys5sOkoiXRETKZmxuN8/ZRbkfc4N+1KAylSCZOOHzBQTBQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -3939,14 +4332,14 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/api': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/client-logger': 6.5.10
- '@storybook/components': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/core-events': 6.5.10
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/api': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/client-logger': 6.5.15
+ '@storybook/components': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/theming': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- core-js: 3.25.5
+ '@storybook/theming': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ core-js: 3.27.1
fast-deep-equal: 3.1.3
global: 4.4.0
lodash: 4.17.21
@@ -3955,15 +4348,15 @@ packages:
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
react-inspector: 5.1.1_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
telejson: 6.0.8
ts-dedent: 2.2.0
util-deprecate: 1.0.2
uuid-browser: 3.1.0
dev: true
- /@storybook/addon-backgrounds/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-5uzQda3dh891h7BL8e9Ymk7BI+QgkkzDJXuA4mHjOXfIiD3S3efhJI8amXuBC2ZpIr6zmVit0MqZVyoVve46cQ==}
+ /@storybook/addon-backgrounds/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-9ddB3QIL8mRurf7TvYG1P9i1sW0b8Iik3kGlHggKogHER9WJPzbiUeH0XDjkASSa4rMCZdYn5CZKNkIAoJ2jdA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -3973,25 +4366,25 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/api': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/client-logger': 6.5.10
- '@storybook/components': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/core-events': 6.5.10
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/api': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/client-logger': 6.5.15
+ '@storybook/components': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/theming': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- core-js: 3.25.5
+ '@storybook/theming': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ core-js: 3.27.1
global: 4.4.0
memoizerific: 1.11.3
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
ts-dedent: 2.2.0
util-deprecate: 1.0.2
dev: true
- /@storybook/addon-controls/6.5.10_an6hscqj3p5vtflmk37kaverfi:
- resolution: {integrity: sha512-lC2y3XcolmQAJwFurIyGrynAHPWmfNtTCdu3rQBTVGwyxCoNwdOOeC2jV0BRqX2+CW6OHzJr9frNWXPSaZ8c4w==}
+ /@storybook/addon-controls/6.5.15_yonfb5w3xd2pgsvxfpudwaxcey:
+ resolution: {integrity: sha512-q5y0TvD0stvQoJZ2PnFmmKIRNSOI4/k2NKyZq//J2cBUBcP1reYlFxdsNwLZWmAFpSIkc2+nsliEzNxU1WByoA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4001,16 +4394,16 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/api': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/client-logger': 6.5.10
- '@storybook/components': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/core-common': 6.5.10_an6hscqj3p5vtflmk37kaverfi
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/api': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/client-logger': 6.5.15
+ '@storybook/components': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/core-common': 6.5.15_yonfb5w3xd2pgsvxfpudwaxcey
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/node-logger': 6.5.10
- '@storybook/store': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/theming': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- core-js: 3.25.5
+ '@storybook/node-logger': 6.5.15
+ '@storybook/store': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/theming': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ core-js: 3.27.1
lodash: 4.17.21
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
@@ -4024,8 +4417,8 @@ packages:
- webpack-command
dev: true
- /@storybook/addon-docs/6.5.10_tkr2hzfxakecjfuaaldpvrnkva:
- resolution: {integrity: sha512-1kgjo3f0vL6GN8fTwLL05M/q/kDdzvuqwhxPY/v5hubFb3aQZGr2yk9pRBaLAbs4bez0yG0ASXcwhYnrEZUppg==}
+ /@storybook/addon-docs/6.5.15_pveflopc7y5y46x7s5oinmobm4:
+ resolution: {integrity: sha512-k3LAu+wVp6pNhfh6B1soCRl6+7sNTNxtqy6WTrIeVJVCGbXbyc5s7gQ48gJ4WAk6meoDEZbypiP4NK1El03YLg==}
peerDependencies:
'@storybook/mdx2-csf': ^0.0.3
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4038,32 +4431,32 @@ packages:
react-dom:
optional: true
dependencies:
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3
- '@babel/preset-env': 7.19.4_@babel+core@7.19.3
+ '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12
+ '@babel/preset-env': 7.20.2_@babel+core@7.20.12
'@jest/transform': 26.6.2
'@mdx-js/react': 1.6.22_react@17.0.2
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/api': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/components': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/core-common': 6.5.10_an6hscqj3p5vtflmk37kaverfi
- '@storybook/core-events': 6.5.10
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/api': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/components': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/core-common': 6.5.15_yonfb5w3xd2pgsvxfpudwaxcey
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/docs-tools': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/mdx1-csf': 0.0.1_@babel+core@7.19.3
- '@storybook/node-logger': 6.5.10
- '@storybook/postinstall': 6.5.10
- '@storybook/preview-web': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/source-loader': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/store': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/theming': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4
- core-js: 3.25.5
+ '@storybook/docs-tools': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/mdx1-csf': 0.0.1_@babel+core@7.20.12
+ '@storybook/node-logger': 6.5.15
+ '@storybook/postinstall': 6.5.15
+ '@storybook/preview-web': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/source-loader': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/store': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/theming': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ babel-loader: 8.3.0_nwtvwtk5tmh22l2urnqucz7kqu
+ core-js: 3.27.1
fast-deep-equal: 3.1.3
global: 4.4.0
lodash: 4.17.21
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
remark-external-links: 8.0.0
remark-slug: 6.1.0
ts-dedent: 2.2.0
@@ -4079,8 +4472,8 @@ packages:
- webpack-command
dev: true
- /@storybook/addon-essentials/6.5.10_kmc26updsvlp2g3iikgef4xipm:
- resolution: {integrity: sha512-PT2aiR4vgAyB0pl3HNBUa4/a7NDRxASxAazz7zt9ZDirkipDKfxwdcLeRoJzwSngVDWEhuz5/paN5x4eNp4Hww==}
+ /@storybook/addon-essentials/6.5.15_tmwo376r55imxzsx4yykzrtc74:
+ resolution: {integrity: sha512-m3EY6BhUk6Z9Et7P5wGaRGNoEDHzJIOsLbGS/4IXvIoDfrqmNIilqUQl8kfDqpVdBSFprvpacHpKpLosu9H37w==}
peerDependencies:
'@babel/core': ^7.9.6
'@storybook/angular': '*'
@@ -4136,26 +4529,26 @@ packages:
webpack:
optional: true
dependencies:
- '@babel/core': 7.19.3
- '@storybook/addon-actions': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/addon-backgrounds': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/addon-controls': 6.5.10_an6hscqj3p5vtflmk37kaverfi
- '@storybook/addon-docs': 6.5.10_tkr2hzfxakecjfuaaldpvrnkva
- '@storybook/addon-measure': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/addon-outline': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/addon-toolbars': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/addon-viewport': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/api': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/core-common': 6.5.10_an6hscqj3p5vtflmk37kaverfi
- '@storybook/node-logger': 6.5.10
- '@storybook/vue': 6.5.10_u4sx4ptsds2ukklviwwrncv2bq
- core-js: 3.25.5
+ '@babel/core': 7.20.12
+ '@storybook/addon-actions': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/addon-backgrounds': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/addon-controls': 6.5.15_yonfb5w3xd2pgsvxfpudwaxcey
+ '@storybook/addon-docs': 6.5.15_pveflopc7y5y46x7s5oinmobm4
+ '@storybook/addon-measure': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/addon-outline': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/addon-toolbars': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/addon-viewport': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/api': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/core-common': 6.5.15_yonfb5w3xd2pgsvxfpudwaxcey
+ '@storybook/node-logger': 6.5.15
+ '@storybook/vue': 6.5.15_ogbyckaggwfyqweeqbx5bhjsqy
+ core-js: 3.27.1
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
ts-dedent: 2.2.0
- vue: 2.7.13
+ vue: 2.7.14
webpack: 4.46.0
transitivePeerDependencies:
- '@storybook/mdx2-csf'
@@ -4167,8 +4560,8 @@ packages:
- webpack-command
dev: true
- /@storybook/addon-links/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-r3WzYIPz7WjHiaPObC2Tg6bHuZRBb/Kt/X+Eitw+jTqBel7ksvkO36tn81q8Eyj61qIdNQmUWAaX/0aewT0kLA==}
+ /@storybook/addon-links/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-L7Q3u/xEUuy1uPq8ttjDfvDj19Hr2Crq/Us0RfowfGAAzOb7fCoiUJDP37ADtRUlCYyuKM5V/nHxN8eGpWtugw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4178,24 +4571,24 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/router': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/router': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
'@types/qs': 6.9.7
- core-js: 3.25.5
+ core-js: 3.27.1
global: 4.4.0
prop-types: 15.8.1
qs: 6.11.0
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-measure/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-ss7L1H5K5hXygDIoVwj+QyVXbve5V67x7CofLiLCgQYuJzfO16+sPGjiTGWMpTb4ijox2uKWnTkpilt5bCjXgw==}
+ /@storybook/addon-measure/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-j77WX/v6qpWK8ZuYscWLIc+Am4/WOJRsVgyXLIw1EZIviQsjoXPo7mmyoTneEIbbHfPtWlLRbtmkjh8DAVDrCA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4205,20 +4598,20 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/api': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/client-logger': 6.5.10
- '@storybook/components': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/core-events': 6.5.10
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/api': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/client-logger': 6.5.15
+ '@storybook/components': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- core-js: 3.25.5
+ core-js: 3.27.1
global: 4.4.0
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
dev: true
- /@storybook/addon-outline/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-AjdaeQ+/iBKmGrAqRW4niwMB6AkgGnYmSzVs5Cf6F/Sb4Dp+vzgLNOwLABD9qs8Ri8dvHl5J4QpVwQKUhYZaOQ==}
+ /@storybook/addon-outline/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-8yGEZQOYypnliU3rsakoZlgT4Pkq8iOhX9JclVXZL/fJMQWFQGCsXqlLaRn8sx7qsa+21PPxY5bd2+Hv/Au4zQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4228,17 +4621,17 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/api': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/client-logger': 6.5.10
- '@storybook/components': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/core-events': 6.5.10
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/api': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/client-logger': 6.5.15
+ '@storybook/components': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- core-js: 3.25.5
+ core-js: 3.27.1
global: 4.4.0
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
ts-dedent: 2.2.0
dev: true
@@ -4246,7 +4639,7 @@ packages:
resolution: {integrity: sha512-Nt82A7e9zJH4+A+VzLKKswUfru+T6FJTakj4dccP0i8DSn7a0CkzRPrLuZBq8tg4voV6gD74bcDf3gViCVBGtA==}
engines: {node: '>=10', yarn: ^1.17.0}
dependencies:
- '@storybook/node-logger': 6.5.12
+ '@storybook/node-logger': 6.5.15
css-loader: 3.6.0_webpack@4.46.0
postcss: 7.0.39
postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe
@@ -4255,8 +4648,8 @@ packages:
- webpack
dev: true
- /@storybook/addon-toolbars/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-S0Ljc6Wv+bPbx2e0iTveJ6bBDqjsemu+FZD4qDLsHreoI7DAcqyrF5Def1l8xNohixIVpx8dQpYXRtyzNlXekg==}
+ /@storybook/addon-toolbars/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-btwDTgElmaaT0dBRASABbTpq6m1UiQXQmLUmxfjLxVC3I2SK5tyJKbPQ2hVLFAQHK4cQn4u45BxdZ5LDpJ830A==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4266,19 +4659,19 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/api': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/client-logger': 6.5.10
- '@storybook/components': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/theming': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- core-js: 3.25.5
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/api': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/client-logger': 6.5.15
+ '@storybook/components': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/theming': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ core-js: 3.27.1
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
dev: true
- /@storybook/addon-viewport/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-RFMd+4kZljyuJjR9OJ2bFXHrSG7VTi5FDZYWEU+4W1sBxzC+JhnVnUP+HJH3gUxEFIRQC5neRzwWRE9RUUoALQ==}
+ /@storybook/addon-viewport/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-oOiVzgFMlTnzPLVoHWQNzWdmpksrUyT6Aq8ZOyBPNMQ0RN2doIgFr7W53nZ1OBB5cPQx9q2FgWwzJ7Tawo+iVA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4288,167 +4681,119 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/api': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/client-logger': 6.5.10
- '@storybook/components': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/core-events': 6.5.10
- '@storybook/theming': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- core-js: 3.25.5
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/api': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/client-logger': 6.5.15
+ '@storybook/components': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/core-events': 6.5.15
+ '@storybook/theming': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ core-js: 3.27.1
global: 4.4.0
memoizerific: 1.11.3
prop-types: 15.8.1
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
dev: true
- /@storybook/addons/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-VD4tBCQ23PkSeDoxuHcKy0RfhIs3oMYjBacOZx7d0bvOzK9WjPyvE2ysDAh7r/ceqnwmWHAScIpE+I1RU7gl+g==}
+ /@storybook/addons/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-xT31SuSX+kYGyxCNK2nqL7WTxucs3rSmhiCLovJcUjYk+QquV3c2c53Ki7lwwdDbzfXFcNAe0HJ4hoTN4jhn0Q==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/api': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/channels': 6.5.10
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
+ '@storybook/api': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/channels': 6.5.15
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/router': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/theming': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/router': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/theming': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
'@types/webpack-env': 1.18.0
- core-js: 3.25.5
+ core-js: 3.27.1
global: 4.4.0
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
dev: true
- /@storybook/addons/6.5.10_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-VD4tBCQ23PkSeDoxuHcKy0RfhIs3oMYjBacOZx7d0bvOzK9WjPyvE2ysDAh7r/ceqnwmWHAScIpE+I1RU7gl+g==}
+ /@storybook/addons/6.5.15_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-xT31SuSX+kYGyxCNK2nqL7WTxucs3rSmhiCLovJcUjYk+QquV3c2c53Ki7lwwdDbzfXFcNAe0HJ4hoTN4jhn0Q==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/api': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/channels': 6.5.10
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
+ '@storybook/api': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/channels': 6.5.15
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/router': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/theming': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/router': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/theming': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
'@types/webpack-env': 1.18.0
- core-js: 3.25.5
+ core-js: 3.27.1
global: 4.4.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
dev: true
- /@storybook/addons/6.5.12_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-y3cgxZq41YGnuIlBJEuJjSFdMsm8wnvlNOGUP9Q+Er2dgfx8rJz4Q22o4hPjpvpaj4XdBtxCJXI2NeFpN59+Cw==}
+ /@storybook/api/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-BBE0KXKvj1/3jTghbIoWfrcDM0t+xO7EYtWWAXD6XlhGsZVD2Dy82Z52ONyLulMDRpMWl0OYy3h6A1YnFUH25w==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/api': 6.5.12_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/channels': 6.5.12
- '@storybook/client-logger': 6.5.12
- '@storybook/core-events': 6.5.12
+ '@storybook/channels': 6.5.15
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/router': 6.5.12_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/theming': 6.5.12_6l5554ty5ajsajah6yazvrjhoe
- '@types/webpack-env': 1.18.0
- core-js: 3.25.5
- global: 4.4.0
- react: 17.0.2
- react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
- dev: true
-
- /@storybook/api/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-AkmgSPNEGdKp4oZA4KQ+RJsacw7GwfvjsVDnCkcXqS9zmSr/RNL0fhpcd60KKkmx/hGKPTDFpK3ZayxDrJ/h4A==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- '@storybook/channels': 6.5.10
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/router': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/router': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
'@storybook/semver': 7.3.2
- '@storybook/theming': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- core-js: 3.25.5
+ '@storybook/theming': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ core-js: 3.27.1
fast-deep-equal: 3.1.3
global: 4.4.0
lodash: 4.17.21
memoizerific: 1.11.3
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
store2: 2.14.2
telejson: 6.0.8
ts-dedent: 2.2.0
util-deprecate: 1.0.2
dev: true
- /@storybook/api/6.5.10_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-AkmgSPNEGdKp4oZA4KQ+RJsacw7GwfvjsVDnCkcXqS9zmSr/RNL0fhpcd60KKkmx/hGKPTDFpK3ZayxDrJ/h4A==}
+ /@storybook/api/6.5.15_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-BBE0KXKvj1/3jTghbIoWfrcDM0t+xO7EYtWWAXD6XlhGsZVD2Dy82Z52ONyLulMDRpMWl0OYy3h6A1YnFUH25w==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/channels': 6.5.10
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
+ '@storybook/channels': 6.5.15
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/router': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/router': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
'@storybook/semver': 7.3.2
- '@storybook/theming': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- core-js: 3.25.5
+ '@storybook/theming': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ core-js: 3.27.1
fast-deep-equal: 3.1.3
global: 4.4.0
lodash: 4.17.21
memoizerific: 1.11.3
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
store2: 2.14.2
telejson: 6.0.8
ts-dedent: 2.2.0
util-deprecate: 1.0.2
dev: true
- /@storybook/api/6.5.12_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-DuUZmMlQxkFNU9Vgkp9aNfCkAongU76VVmygvCuSpMVDI9HQ2lG0ydL+ppL4XKoSMCCoXTY6+rg4hJANnH+1AQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- '@storybook/channels': 6.5.12
- '@storybook/client-logger': 6.5.12
- '@storybook/core-events': 6.5.12
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/router': 6.5.12_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/semver': 7.3.2
- '@storybook/theming': 6.5.12_6l5554ty5ajsajah6yazvrjhoe
- core-js: 3.25.5
- fast-deep-equal: 3.1.3
- global: 4.4.0
- lodash: 4.17.21
- memoizerific: 1.11.3
- react: 17.0.2
- react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
- store2: 2.14.2
- telejson: 6.0.8
- ts-dedent: 2.2.0
- util-deprecate: 1.0.2
- dev: true
-
- /@storybook/builder-webpack4/6.5.10_6ofeo3u5rimauaiirtndwdyyli:
- resolution: {integrity: sha512-AoKjsCNoQQoZXYwBDxO8s+yVEd5FjBJAaysEuUTHq2fb81jwLrGcEOo6hjw4jqfugZQIzYUEjPazlvubS78zpw==}
+ /@storybook/builder-webpack4/6.5.15_osrebwaanaolfmicoqxqxv5ftu:
+ resolution: {integrity: sha512-1ZkMECUUdiYplhlgyUF5fqW3XU7eWNDJbuPUguyDOeidgJ111WZzBcLuKj+SNrzdNNgXwROCWAFybiNnX33YHQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4457,38 +4802,38 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.19.3
- '@storybook/addons': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/api': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/channel-postmessage': 6.5.10
- '@storybook/channels': 6.5.10
- '@storybook/client-api': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/client-logger': 6.5.10
- '@storybook/components': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/core-common': 6.5.10_6ofeo3u5rimauaiirtndwdyyli
- '@storybook/core-events': 6.5.10
- '@storybook/node-logger': 6.5.10
- '@storybook/preview-web': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/router': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
+ '@babel/core': 7.20.12
+ '@storybook/addons': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/api': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/channel-postmessage': 6.5.15
+ '@storybook/channels': 6.5.15
+ '@storybook/client-api': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/client-logger': 6.5.15
+ '@storybook/components': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/core-common': 6.5.15_osrebwaanaolfmicoqxqxv5ftu
+ '@storybook/core-events': 6.5.15
+ '@storybook/node-logger': 6.5.15
+ '@storybook/preview-web': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/router': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
'@storybook/semver': 7.3.2
- '@storybook/store': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/theming': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/ui': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@types/node': 16.11.65
- '@types/webpack': 4.41.32
+ '@storybook/store': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/theming': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/ui': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@types/node': 16.18.11
+ '@types/webpack': 4.41.33
autoprefixer: 9.8.8
- babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4
+ babel-loader: 8.3.0_nwtvwtk5tmh22l2urnqucz7kqu
case-sensitive-paths-webpack-plugin: 2.4.0
- core-js: 3.25.5
+ core-js: 3.27.1
css-loader: 3.6.0_webpack@4.46.0
file-loader: 6.2.0_webpack@4.46.0
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.2_ykheojhgetflommn34hnxhuop4
+ fork-ts-checker-webpack-plugin: 6.5.2_ujcznmgb2owsphq4mksjmidcsi
glob: 7.2.3
glob-promise: 3.4.0_glob@7.2.3
global: 4.4.0
html-webpack-plugin: 4.5.2_webpack@4.46.0
- pnp-webpack-plugin: 1.6.4_typescript@4.8.4
+ pnp-webpack-plugin: 1.6.4_typescript@4.9.4
postcss: 7.0.39
postcss-flexbugs-fixes: 4.2.1
postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe
@@ -4499,13 +4844,13 @@ packages:
style-loader: 1.3.0_webpack@4.46.0
terser-webpack-plugin: 4.2.3_webpack@4.46.0
ts-dedent: 2.2.0
- typescript: 4.8.4
+ typescript: 4.9.4
url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy
util-deprecate: 1.0.2
webpack: 4.46.0
webpack-dev-middleware: 3.7.3_webpack@4.46.0
webpack-filter-warnings-plugin: 1.2.1_webpack@4.46.0
- webpack-hot-middleware: 2.25.2
+ webpack-hot-middleware: 2.25.3
webpack-virtual-modules: 0.2.2
transitivePeerDependencies:
- bluebird
@@ -4516,60 +4861,52 @@ packages:
- webpack-command
dev: true
- /@storybook/channel-postmessage/6.5.10:
- resolution: {integrity: sha512-t9PTA0UzFvYa3IlOfpBOolfrRMPTjUMIeCQ6FNyM0aj5GqLKSvoQzP8NeoRpIrvyf6ljFKKdaMaZ3fiCvh45ag==}
+ /@storybook/channel-postmessage/6.5.15:
+ resolution: {integrity: sha512-gMpA8LWT8lC4z5KWnaMh03aazEwtDO7GtY5kZVru+EEMgExGmaR82qgekwmLmgLj2nRJEv0o138o9IqYUcou8w==}
dependencies:
- '@storybook/channels': 6.5.10
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
- core-js: 3.25.5
+ '@storybook/channels': 6.5.15
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-events': 6.5.15
+ core-js: 3.27.1
global: 4.4.0
qs: 6.11.0
telejson: 6.0.8
dev: true
- /@storybook/channel-websocket/6.5.10:
- resolution: {integrity: sha512-RTXMZbMWCS3xU+4GVIdfnUXsKcwg/WTozy88/5OxaKjGw6KgRedqLAQJKJ6Y5XlnwIcWelirkHj/COwTTXhbPg==}
+ /@storybook/channel-websocket/6.5.15:
+ resolution: {integrity: sha512-K85KEgzo5ahzJNJjyUbSNyuRmkeC8glJX2hCg2j9HiJ9rasX53qugkODrKDlWAeheulo3kR13VSuAqIuwVbmbw==}
dependencies:
- '@storybook/channels': 6.5.10
- '@storybook/client-logger': 6.5.10
- core-js: 3.25.5
+ '@storybook/channels': 6.5.15
+ '@storybook/client-logger': 6.5.15
+ core-js: 3.27.1
global: 4.4.0
telejson: 6.0.8
dev: true
- /@storybook/channels/6.5.10:
- resolution: {integrity: sha512-lo26YZ6kWpHXLhuHJF4P/bICY7jD/rXEZqReKtGOSk1Lv99/xvG6pqmcy3hWLf3v3Dy/8otjRPSR7izFVIIZgQ==}
+ /@storybook/channels/6.5.15:
+ resolution: {integrity: sha512-gPpsBgirv2NCXbH4WbYqdkI0JLE96aiVuu7UEWfn9yu071pQ9CLHbhXGD9fSFNrfOkyBBY10ppSE7uCXw3Wexg==}
dependencies:
- core-js: 3.25.5
+ core-js: 3.27.1
ts-dedent: 2.2.0
util-deprecate: 1.0.2
dev: true
- /@storybook/channels/6.5.12:
- resolution: {integrity: sha512-X5XaKbe4b7LXJ4sUakBo00x6pXnW78JkOonHoaKoWsccHLlEzwfBZpVVekhVZnqtCoLT23dB8wjKgA71RYWoiw==}
- dependencies:
- core-js: 3.25.5
- ts-dedent: 2.2.0
- util-deprecate: 1.0.2
- dev: true
-
- /@storybook/client-api/6.5.10_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-3wBWZl3NvMFgMovgEh+euiARAT2FXzpvTF4Q1gerGMNNDlrGxHnFvSuy4FHg/irtOGLa4yLz43ULFbYtpKw0Lg==}
+ /@storybook/client-api/6.5.15_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-0ZGpRgVz7rdbCguBqBpwObXbsVY5qlSTWDzzIBpmz8EkxW/MtK5wEyeq+0L0O+DTn41FwvH5yCGLAENpzWD8BQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/addons': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/channel-postmessage': 6.5.10
- '@storybook/channels': 6.5.10
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
+ '@storybook/addons': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/channel-postmessage': 6.5.15
+ '@storybook/channels': 6.5.15
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/store': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/store': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
'@types/qs': 6.9.7
'@types/webpack-env': 1.18.0
- core-js: 3.25.5
+ core-js: 3.27.1
fast-deep-equal: 3.1.3
global: 4.4.0
lodash: 4.17.21
@@ -4577,83 +4914,58 @@ packages:
qs: 6.11.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
store2: 2.14.2
synchronous-promise: 2.0.16
ts-dedent: 2.2.0
util-deprecate: 1.0.2
dev: true
- /@storybook/client-logger/6.5.10:
- resolution: {integrity: sha512-/xA0MHOevXev68hyLMQw8Qo8KczSIdXOxliAgrycMTkDmw5eKeA8TP7B8zP3wGuq/e3MrdD9/8MWhb/IQBNC3w==}
+ /@storybook/client-logger/6.5.15:
+ resolution: {integrity: sha512-0uyxKvodq+FycGv6aUwC1wUR6suXf2+7ywMFAOlYolI4UvNj8NyU/5AfgKT5XnxYAgPmoCiAjOE700TrfHrosw==}
dependencies:
- core-js: 3.25.5
+ core-js: 3.27.1
global: 4.4.0
dev: true
- /@storybook/client-logger/6.5.12:
- resolution: {integrity: sha512-IrkMr5KZcudX935/C2balFbxLHhkvQnJ78rbVThHDVckQ7l3oIXTh66IMzldeOabVFDZEMiW8AWuGEYof+JtLw==}
- dependencies:
- core-js: 3.25.5
- global: 4.4.0
- dev: true
-
- /@storybook/components/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-9OhgB8YQfGwOKjo/N96N5mrtJ6qDVVoEM1zuhea32tJUd2eYf0aSWpryA9VnOM0V1q/8DAoCg5rPBMYWMBU5uw==}
+ /@storybook/components/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-bHTT0Oa3s4g+MBMaLBbX9ofMtb1AW59AzIUNGrfqW1XqJMGuUHMiJ7TSo+i5dRSFpbFygnwMEG9LfHxpR2Z0Dw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/client-logger': 6.5.10
+ '@storybook/client-logger': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/theming': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- core-js: 3.25.5
+ '@storybook/theming': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ core-js: 3.27.1
memoizerific: 1.11.3
qs: 6.11.0
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
util-deprecate: 1.0.2
dev: true
- /@storybook/components/6.5.10_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-9OhgB8YQfGwOKjo/N96N5mrtJ6qDVVoEM1zuhea32tJUd2eYf0aSWpryA9VnOM0V1q/8DAoCg5rPBMYWMBU5uw==}
+ /@storybook/components/6.5.15_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-bHTT0Oa3s4g+MBMaLBbX9ofMtb1AW59AzIUNGrfqW1XqJMGuUHMiJ7TSo+i5dRSFpbFygnwMEG9LfHxpR2Z0Dw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/client-logger': 6.5.10
+ '@storybook/client-logger': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/theming': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- core-js: 3.25.5
+ '@storybook/theming': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ core-js: 3.27.1
memoizerific: 1.11.3
qs: 6.11.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
util-deprecate: 1.0.2
dev: true
- /@storybook/components/6.5.12_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-NAAGl5PDXaHdVLd6hA+ttmLwH3zAVGXeUmEubzKZ9bJzb+duhFKxDa9blM4YEkI+palumvgAMm0UgS7ou680Ig==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- '@storybook/client-logger': 6.5.12
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/theming': 6.5.12_6l5554ty5ajsajah6yazvrjhoe
- core-js: 3.25.5
- memoizerific: 1.11.3
- qs: 6.11.0
- react: 17.0.2
- react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
- util-deprecate: 1.0.2
- dev: true
-
- /@storybook/core-client/6.5.10_plmdyubmb7xm6euvqu3qohl7ea:
- resolution: {integrity: sha512-THsIjNrOrampTl0Lgfjvfjk1JnktKb4CQLOM80KpQb4cjDqorBjJmErzUkUQ2y3fXvrDmQ/kUREkShET4XEdtA==}
+ /@storybook/core-client/6.5.15_bmqcfyb5ehjqnclktwh7o6o4uy:
+ resolution: {integrity: sha512-i9t4WONy2MxJwLI1FIp5ck7b52EXyJfALnxUn4O/3GTkw09J0NOKi2DPjefUsi7IB5MzFpDjDH9vw/XiTM+OZw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4663,71 +4975,34 @@ packages:
typescript:
optional: true
dependencies:
- '@storybook/addons': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/channel-postmessage': 6.5.10
- '@storybook/channel-websocket': 6.5.10
- '@storybook/client-api': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
+ '@storybook/addons': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/channel-postmessage': 6.5.15
+ '@storybook/channel-websocket': 6.5.15
+ '@storybook/client-api': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/preview-web': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/store': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/ui': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/preview-web': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/store': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/ui': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
airbnb-js-shims: 2.2.1
ansi-to-html: 0.6.15
- core-js: 3.25.5
+ core-js: 3.27.1
global: 4.4.0
lodash: 4.17.21
qs: 6.11.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
ts-dedent: 2.2.0
- typescript: 4.8.4
- unfetch: 4.2.0
- util-deprecate: 1.0.2
- webpack: 5.74.0
- dev: true
-
- /@storybook/core-client/6.5.10_vvswzvegta47ikremfl73qk64u:
- resolution: {integrity: sha512-THsIjNrOrampTl0Lgfjvfjk1JnktKb4CQLOM80KpQb4cjDqorBjJmErzUkUQ2y3fXvrDmQ/kUREkShET4XEdtA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- typescript: '*'
- webpack: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@storybook/addons': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/channel-postmessage': 6.5.10
- '@storybook/channel-websocket': 6.5.10
- '@storybook/client-api': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
- '@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/preview-web': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/store': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/ui': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- airbnb-js-shims: 2.2.1
- ansi-to-html: 0.6.15
- core-js: 3.25.5
- global: 4.4.0
- lodash: 4.17.21
- qs: 6.11.0
- react: 16.14.0
- react-dom: 16.14.0_react@16.14.0
- regenerator-runtime: 0.13.9
- ts-dedent: 2.2.0
- typescript: 4.8.4
+ typescript: 4.9.4
unfetch: 4.2.0
util-deprecate: 1.0.2
webpack: 4.46.0
dev: true
- /@storybook/core-common/6.5.10_6ofeo3u5rimauaiirtndwdyyli:
- resolution: {integrity: sha512-Bx+VKkfWdrAmD8T51Sjq/mMhRaiapBHcpG4cU5bc3DMbg+LF2/yrgqv/cjVu+m5gHAzYCac5D7gqzBgvG7Myww==}
+ /@storybook/core-common/6.5.15_osrebwaanaolfmicoqxqxv5ftu:
+ resolution: {integrity: sha512-uits9o6qwHTPnjsNZP25f7hWmUBGRJ7FXtxxtEaNSmtiwk50KWxBaro7wt505lJ1Gb9vOhpNPhS7y3IxdsXNmQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4736,46 +5011,46 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.19.3
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-decorators': 7.19.3_@babel+core@7.19.3
- '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.19.3
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.3
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-block-scoping': 7.19.4_@babel+core@7.19.3
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.3
- '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.19.3
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.3
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.3
- '@babel/preset-env': 7.19.4_@babel+core@7.19.3
- '@babel/preset-react': 7.18.6_@babel+core@7.19.3
- '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3
- '@babel/register': 7.18.9_@babel+core@7.19.3
- '@storybook/node-logger': 6.5.10
+ '@babel/core': 7.20.12
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-decorators': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.20.12
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.12
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.12
+ '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12
+ '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12
+ '@babel/preset-env': 7.20.2_@babel+core@7.20.12
+ '@babel/preset-react': 7.18.6_@babel+core@7.20.12
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12
+ '@babel/register': 7.18.9_@babel+core@7.20.12
+ '@storybook/node-logger': 6.5.15
'@storybook/semver': 7.3.2
- '@types/node': 16.11.65
+ '@types/node': 16.18.11
'@types/pretty-hrtime': 1.0.1
- babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4
+ babel-loader: 8.3.0_nwtvwtk5tmh22l2urnqucz7kqu
babel-plugin-macros: 3.1.0
- babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.19.3
+ babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.12
chalk: 4.1.2
- core-js: 3.25.5
+ core-js: 3.27.1
express: 4.18.2
file-system-cache: 1.1.0
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.2_ykheojhgetflommn34hnxhuop4
+ fork-ts-checker-webpack-plugin: 6.5.2_ujcznmgb2owsphq4mksjmidcsi
fs-extra: 9.1.0
glob: 7.2.3
handlebars: 4.7.7
interpret: 2.2.0
- json5: 2.2.1
+ json5: 2.2.3
lazy-universal-dotenv: 3.0.1
picomatch: 2.3.1
pkg-dir: 5.0.0
@@ -4786,7 +5061,7 @@ packages:
slash: 3.0.0
telejson: 6.0.8
ts-dedent: 2.2.0
- typescript: 4.8.4
+ typescript: 4.9.4
util-deprecate: 1.0.2
webpack: 4.46.0
transitivePeerDependencies:
@@ -4797,8 +5072,8 @@ packages:
- webpack-command
dev: true
- /@storybook/core-common/6.5.10_an6hscqj3p5vtflmk37kaverfi:
- resolution: {integrity: sha512-Bx+VKkfWdrAmD8T51Sjq/mMhRaiapBHcpG4cU5bc3DMbg+LF2/yrgqv/cjVu+m5gHAzYCac5D7gqzBgvG7Myww==}
+ /@storybook/core-common/6.5.15_yonfb5w3xd2pgsvxfpudwaxcey:
+ resolution: {integrity: sha512-uits9o6qwHTPnjsNZP25f7hWmUBGRJ7FXtxxtEaNSmtiwk50KWxBaro7wt505lJ1Gb9vOhpNPhS7y3IxdsXNmQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4807,46 +5082,46 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.19.3
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-decorators': 7.19.3_@babel+core@7.19.3
- '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.19.3
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.3
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-block-scoping': 7.19.4_@babel+core@7.19.3
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.3
- '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.19.3
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.3
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.3
- '@babel/preset-env': 7.19.4_@babel+core@7.19.3
- '@babel/preset-react': 7.18.6_@babel+core@7.19.3
- '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3
- '@babel/register': 7.18.9_@babel+core@7.19.3
- '@storybook/node-logger': 6.5.10
+ '@babel/core': 7.20.12
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-decorators': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.20.12
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.12
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12
+ '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.12
+ '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12
+ '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12
+ '@babel/preset-env': 7.20.2_@babel+core@7.20.12
+ '@babel/preset-react': 7.18.6_@babel+core@7.20.12
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12
+ '@babel/register': 7.18.9_@babel+core@7.20.12
+ '@storybook/node-logger': 6.5.15
'@storybook/semver': 7.3.2
- '@types/node': 16.11.65
+ '@types/node': 16.18.11
'@types/pretty-hrtime': 1.0.1
- babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4
+ babel-loader: 8.3.0_nwtvwtk5tmh22l2urnqucz7kqu
babel-plugin-macros: 3.1.0
- babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.19.3
+ babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.12
chalk: 4.1.2
- core-js: 3.25.5
+ core-js: 3.27.1
express: 4.18.2
file-system-cache: 1.1.0
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.2_ykheojhgetflommn34hnxhuop4
+ fork-ts-checker-webpack-plugin: 6.5.2_ujcznmgb2owsphq4mksjmidcsi
fs-extra: 9.1.0
glob: 7.2.3
handlebars: 4.7.7
interpret: 2.2.0
- json5: 2.2.1
+ json5: 2.2.3
lazy-universal-dotenv: 3.0.1
picomatch: 2.3.1
pkg-dir: 5.0.0
@@ -4857,7 +5132,7 @@ packages:
slash: 3.0.0
telejson: 6.0.8
ts-dedent: 2.2.0
- typescript: 4.8.4
+ typescript: 4.9.4
util-deprecate: 1.0.2
webpack: 4.46.0
transitivePeerDependencies:
@@ -4868,20 +5143,14 @@ packages:
- webpack-command
dev: true
- /@storybook/core-events/6.5.10:
- resolution: {integrity: sha512-EVb1gO1172klVIAABLOoigFMx0V88uctY0K/qVCO8n6v+wd2+0Ccn63kl+gTxsAC3WZ8XhXh9q2w5ImHklVECw==}
+ /@storybook/core-events/6.5.15:
+ resolution: {integrity: sha512-B1Ba6l5W7MeNclclqMMTMHgYgfdpB5SIhNCQFnzIz8blynzRhNFMdxvbAl6Je5G0S4xydYYd7Lno2kXQebs7HA==}
dependencies:
- core-js: 3.25.5
+ core-js: 3.27.1
dev: true
- /@storybook/core-events/6.5.12:
- resolution: {integrity: sha512-0AMyMM19R/lHsYRfWqM8zZTXthasTAK2ExkSRzYi2GkIaVMxRKtM33YRwxKIpJ6KmIKIs8Ru3QCXu1mfCmGzNg==}
- dependencies:
- core-js: 3.25.5
- dev: true
-
- /@storybook/core-server/6.5.10_6ofeo3u5rimauaiirtndwdyyli:
- resolution: {integrity: sha512-jqwpA0ccA8X5ck4esWBid04+cEIVqirdAcqJeNb9IZAD+bRreO4Im8ilzr7jc5AmQ9fkqHs2NByFKh9TITp8NQ==}
+ /@storybook/core-server/6.5.15_osrebwaanaolfmicoqxqxv5ftu:
+ resolution: {integrity: sha512-m+pZwHhCjwryeqTptyyKHSbIjnnPGKoRSnkqLTOpKQf8llZMnNQWUFrn4fx6UDKzxFQ2st2+laV8O2QbMs8qwQ==}
peerDependencies:
'@storybook/builder-webpack5': '*'
'@storybook/manager-webpack5': '*'
@@ -4897,28 +5166,28 @@ packages:
optional: true
dependencies:
'@discoveryjs/json-ext': 0.5.7
- '@storybook/builder-webpack4': 6.5.10_6ofeo3u5rimauaiirtndwdyyli
- '@storybook/core-client': 6.5.10_vvswzvegta47ikremfl73qk64u
- '@storybook/core-common': 6.5.10_6ofeo3u5rimauaiirtndwdyyli
- '@storybook/core-events': 6.5.10
+ '@storybook/builder-webpack4': 6.5.15_osrebwaanaolfmicoqxqxv5ftu
+ '@storybook/core-client': 6.5.15_bmqcfyb5ehjqnclktwh7o6o4uy
+ '@storybook/core-common': 6.5.15_osrebwaanaolfmicoqxqxv5ftu
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/csf-tools': 6.5.10
- '@storybook/manager-webpack4': 6.5.10_6ofeo3u5rimauaiirtndwdyyli
- '@storybook/node-logger': 6.5.10
+ '@storybook/csf-tools': 6.5.15
+ '@storybook/manager-webpack4': 6.5.15_osrebwaanaolfmicoqxqxv5ftu
+ '@storybook/node-logger': 6.5.15
'@storybook/semver': 7.3.2
- '@storybook/store': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/telemetry': 6.5.10_6ofeo3u5rimauaiirtndwdyyli
- '@types/node': 16.11.65
+ '@storybook/store': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/telemetry': 6.5.15_osrebwaanaolfmicoqxqxv5ftu
+ '@types/node': 16.18.11
'@types/node-fetch': 2.6.2
'@types/pretty-hrtime': 1.0.1
- '@types/webpack': 4.41.32
+ '@types/webpack': 4.41.33
better-opn: 2.1.1
boxen: 5.1.2
chalk: 4.1.2
cli-table3: 0.6.3
commander: 6.2.1
compression: 1.7.4
- core-js: 3.25.5
+ core-js: 3.27.1
cpy: 8.1.2
detect-port: 1.5.1
express: 4.18.2
@@ -4927,22 +5196,22 @@ packages:
globby: 11.1.0
ip: 2.0.0
lodash: 4.17.21
- node-fetch: 2.6.7
+ node-fetch: 2.6.8
open: 8.4.0
pretty-hrtime: 1.0.3
prompts: 2.4.2
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
serve-favicon: 2.5.0
slash: 3.0.0
telejson: 6.0.8
ts-dedent: 2.2.0
- typescript: 4.8.4
+ typescript: 4.9.4
util-deprecate: 1.0.2
watchpack: 2.4.0
webpack: 4.46.0
- ws: 8.9.0
+ ws: 8.12.0
x-default-browser: 0.4.0
transitivePeerDependencies:
- '@storybook/mdx2-csf'
@@ -4957,8 +5226,8 @@ packages:
- webpack-command
dev: true
- /@storybook/core/6.5.10_odad3jmqkzkyj5wcekwtg4vdly:
- resolution: {integrity: sha512-K86yYa0tYlMxADlwQTculYvPROokQau09SCVqpsLg3wJCTvYFL4+SIqcYoyBSbFmHOdnYbJgPydjN33MYLiOZQ==}
+ /@storybook/core/6.5.15_gzqk2gwodf7pskyq5ws3vlplhm:
+ resolution: {integrity: sha512-T9TjLxbb5P/XvLEoj0dnbtexJa0V3pqCifRlIUNkTJO0nU3PdGLMcKMSyIYWjkthAJ9oBrajnodV0UveM/epTg==}
peerDependencies:
'@storybook/builder-webpack5': '*'
'@storybook/manager-webpack5': '*'
@@ -4974,12 +5243,12 @@ packages:
typescript:
optional: true
dependencies:
- '@storybook/core-client': 6.5.10_plmdyubmb7xm6euvqu3qohl7ea
- '@storybook/core-server': 6.5.10_6ofeo3u5rimauaiirtndwdyyli
+ '@storybook/core-client': 6.5.15_bmqcfyb5ehjqnclktwh7o6o4uy
+ '@storybook/core-server': 6.5.15_osrebwaanaolfmicoqxqxv5ftu
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- typescript: 4.8.4
- webpack: 5.74.0
+ typescript: 4.9.4
+ webpack: 4.46.0
transitivePeerDependencies:
- '@storybook/mdx2-csf'
- bluebird
@@ -4993,27 +5262,27 @@ packages:
- webpack-command
dev: true
- /@storybook/csf-tools/6.5.10:
- resolution: {integrity: sha512-H77kZQEisu7+skzeIbNZwmE09OqLjwJTeFhLN1pcjxKVa30LEI3pBHcNBxVKqgxl+Yg3KkB7W/ArLO2N+i2ohw==}
+ /@storybook/csf-tools/6.5.15:
+ resolution: {integrity: sha512-2LwSD7yE/ccXBc58K4vdKw/oJJg6IpC4WD51rBt2mAl5JUCkxhOq7wG/Z8Wy1lZw2LVuKNTmjVou5blGRI/bTg==}
peerDependencies:
'@storybook/mdx2-csf': ^0.0.3
peerDependenciesMeta:
'@storybook/mdx2-csf':
optional: true
dependencies:
- '@babel/core': 7.19.3
- '@babel/generator': 7.19.5
- '@babel/parser': 7.19.4
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3
- '@babel/preset-env': 7.19.4_@babel+core@7.19.3
- '@babel/traverse': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/core': 7.20.12
+ '@babel/generator': 7.20.7
+ '@babel/parser': 7.20.7
+ '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12
+ '@babel/preset-env': 7.20.2_@babel+core@7.20.12
+ '@babel/traverse': 7.20.12
+ '@babel/types': 7.20.7
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/mdx1-csf': 0.0.1_@babel+core@7.19.3
- core-js: 3.25.5
+ '@storybook/mdx1-csf': 0.0.1_@babel+core@7.20.12
+ core-js: 3.27.1
fs-extra: 9.1.0
global: 4.4.0
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
@@ -5025,40 +5294,40 @@ packages:
lodash: 4.17.21
dev: true
- /@storybook/docs-tools/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-/bvYgOO+CxMEcHifkjJg0A60OTGOhcjGxnsB1h0gJuxMrqA/7Qwc108bFmPiX0eiD1BovFkZLJV4O6OY7zP5Vw==}
+ /@storybook/docs-tools/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-8w78NFOtlJGuIa9vPPsr87J9iQUGmLFh7CrMS2+t9LxW+0oH5MZ8QqPQUHNuTuKsYN3r+QAmmi2pj0auZmCoKA==}
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/store': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- core-js: 3.25.5
+ '@storybook/store': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ core-js: 3.27.1
doctrine: 3.0.0
lodash: 4.17.21
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
transitivePeerDependencies:
- react
- react-dom
- supports-color
dev: true
- /@storybook/docs-tools/6.5.10_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-/bvYgOO+CxMEcHifkjJg0A60OTGOhcjGxnsB1h0gJuxMrqA/7Qwc108bFmPiX0eiD1BovFkZLJV4O6OY7zP5Vw==}
+ /@storybook/docs-tools/6.5.15_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-8w78NFOtlJGuIa9vPPsr87J9iQUGmLFh7CrMS2+t9LxW+0oH5MZ8QqPQUHNuTuKsYN3r+QAmmi2pj0auZmCoKA==}
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/store': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- core-js: 3.25.5
+ '@storybook/store': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ core-js: 3.27.1
doctrine: 3.0.0
lodash: 4.17.21
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
transitivePeerDependencies:
- react
- react-dom
- supports-color
dev: true
- /@storybook/manager-webpack4/6.5.10_6ofeo3u5rimauaiirtndwdyyli:
- resolution: {integrity: sha512-N/TlNDhuhARuFipR/ZJ/xEVESz23iIbCsZ4VNehLHm8PpiGlQUehk+jMjWmz5XV0bJItwjRclY+CU3GjZKblfQ==}
+ /@storybook/manager-webpack4/6.5.15_osrebwaanaolfmicoqxqxv5ftu:
+ resolution: {integrity: sha512-zRvBTMoaFO6MvHDsDLnt3tsFENhpY3k+e/UIPdqbIDMbUPGGQzxJucAM9aS/kbVSO5IVs8IflVxbeeB/uTIIfA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -5067,39 +5336,39 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.19.3
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.3
- '@babel/preset-react': 7.18.6_@babel+core@7.19.3
- '@storybook/addons': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/core-client': 6.5.10_vvswzvegta47ikremfl73qk64u
- '@storybook/core-common': 6.5.10_6ofeo3u5rimauaiirtndwdyyli
- '@storybook/node-logger': 6.5.10
- '@storybook/theming': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/ui': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@types/node': 16.11.65
- '@types/webpack': 4.41.32
- babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4
+ '@babel/core': 7.20.12
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12
+ '@babel/preset-react': 7.18.6_@babel+core@7.20.12
+ '@storybook/addons': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/core-client': 6.5.15_bmqcfyb5ehjqnclktwh7o6o4uy
+ '@storybook/core-common': 6.5.15_osrebwaanaolfmicoqxqxv5ftu
+ '@storybook/node-logger': 6.5.15
+ '@storybook/theming': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/ui': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@types/node': 16.18.11
+ '@types/webpack': 4.41.33
+ babel-loader: 8.3.0_nwtvwtk5tmh22l2urnqucz7kqu
case-sensitive-paths-webpack-plugin: 2.4.0
chalk: 4.1.2
- core-js: 3.25.5
+ core-js: 3.27.1
css-loader: 3.6.0_webpack@4.46.0
express: 4.18.2
file-loader: 6.2.0_webpack@4.46.0
find-up: 5.0.0
fs-extra: 9.1.0
html-webpack-plugin: 4.5.2_webpack@4.46.0
- node-fetch: 2.6.7
- pnp-webpack-plugin: 1.6.4_typescript@4.8.4
+ node-fetch: 2.6.8
+ pnp-webpack-plugin: 1.6.4_typescript@4.9.4
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
read-pkg-up: 7.0.1
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
resolve-from: 5.0.0
style-loader: 1.3.0_webpack@4.46.0
telejson: 6.0.8
terser-webpack-plugin: 4.2.3_webpack@4.46.0
ts-dedent: 2.2.0
- typescript: 4.8.4
+ typescript: 4.9.4
url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy
util-deprecate: 1.0.2
webpack: 4.46.0
@@ -5115,17 +5384,17 @@ packages:
- webpack-command
dev: true
- /@storybook/mdx1-csf/0.0.1_@babel+core@7.19.3:
+ /@storybook/mdx1-csf/0.0.1_@babel+core@7.20.12:
resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==}
dependencies:
- '@babel/generator': 7.19.5
- '@babel/parser': 7.19.4
- '@babel/preset-env': 7.19.4_@babel+core@7.19.3
- '@babel/types': 7.19.4
+ '@babel/generator': 7.20.7
+ '@babel/parser': 7.20.7
+ '@babel/preset-env': 7.20.2_@babel+core@7.20.12
+ '@babel/types': 7.20.7
'@mdx-js/mdx': 1.6.22
- '@types/lodash': 4.14.186
+ '@types/lodash': 4.14.191
js-string-escape: 1.0.1
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
lodash: 4.17.21
prettier: 2.3.0
ts-dedent: 2.2.0
@@ -5134,127 +5403,102 @@ packages:
- supports-color
dev: true
- /@storybook/node-logger/6.5.10:
- resolution: {integrity: sha512-bYswXIKV7Stru8vYfkjUMNN8UhF7Qg7NRsUvG5Djt5lLIae1XmUIgnH40mU/nW4X4BSfcR9MKxsSsngvn2WmQg==}
+ /@storybook/node-logger/6.5.15:
+ resolution: {integrity: sha512-LQjjbfMuUXm7wZTBKb+iGeCNnej4r1Jb2NxG3Svu2bVhaoB6u33jHAcbmhXpXW1jghzW3kQwOU7BoLuJiRRFIw==}
dependencies:
'@types/npmlog': 4.1.4
chalk: 4.1.2
- core-js: 3.25.5
+ core-js: 3.27.1
npmlog: 5.0.1
pretty-hrtime: 1.0.3
dev: true
- /@storybook/node-logger/6.5.12:
- resolution: {integrity: sha512-jdLtT3mX5GQKa+0LuX0q0sprKxtCGf6HdXlKZGD5FEuz4MgJUGaaiN0Hgi+U7Z4tVNOtSoIbYBYXHqfUgJrVZw==}
+ /@storybook/postinstall/6.5.15:
+ resolution: {integrity: sha512-l7pApTgLD10OedNOyuf4vUdVCHLOSaIUIL9gdJl1WaSFHiUpJvvzBIh5M4aRICYPbnuExQc8y2GAjERKO4Ep+g==}
dependencies:
- '@types/npmlog': 4.1.4
- chalk: 4.1.2
- core-js: 3.25.5
- npmlog: 5.0.1
- pretty-hrtime: 1.0.3
+ core-js: 3.27.1
dev: true
- /@storybook/postinstall/6.5.10:
- resolution: {integrity: sha512-xqUdpnFHYkn8MgtV+QztvIsRWa6jQUk7QT1Mu17Y0S7PbslNGsuskRPHenHhACXBJF+TM86R+4BaAhnVYTmElw==}
- dependencies:
- core-js: 3.25.5
- dev: true
-
- /@storybook/preview-web/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-sTC/o5gkvALOtcNgtApGKGN9EavvSxRHBeBh+5BQjV2qQ8ap+26RsfUizNBECAa2Jrn4osaDYn9HRhJLFL69WA==}
+ /@storybook/preview-web/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-gIHABSAD0JS0iRaG67BnSDq/q8Zf4fFwEWBQOSYgcEx2TzhAUeSkhGZUQHdlOTCwuA2PpXT0/cWDH8u2Ev+msg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/channel-postmessage': 6.5.10
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/channel-postmessage': 6.5.15
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/store': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/store': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
ansi-to-html: 0.6.15
- core-js: 3.25.5
+ core-js: 3.27.1
global: 4.4.0
lodash: 4.17.21
qs: 6.11.0
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
synchronous-promise: 2.0.16
ts-dedent: 2.2.0
unfetch: 4.2.0
util-deprecate: 1.0.2
dev: true
- /@storybook/preview-web/6.5.10_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-sTC/o5gkvALOtcNgtApGKGN9EavvSxRHBeBh+5BQjV2qQ8ap+26RsfUizNBECAa2Jrn4osaDYn9HRhJLFL69WA==}
+ /@storybook/preview-web/6.5.15_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-gIHABSAD0JS0iRaG67BnSDq/q8Zf4fFwEWBQOSYgcEx2TzhAUeSkhGZUQHdlOTCwuA2PpXT0/cWDH8u2Ev+msg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/addons': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/channel-postmessage': 6.5.10
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
+ '@storybook/addons': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/channel-postmessage': 6.5.15
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/store': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/store': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
ansi-to-html: 0.6.15
- core-js: 3.25.5
+ core-js: 3.27.1
global: 4.4.0
lodash: 4.17.21
qs: 6.11.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
synchronous-promise: 2.0.16
ts-dedent: 2.2.0
unfetch: 4.2.0
util-deprecate: 1.0.2
dev: true
- /@storybook/router/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-O+vNW/eEpYFF8eCg5jZjNQ6q2DKQVxqDRPCy9pJdEbvavMDZn6AFYgVK+VJe5F4211WW2yncOu922xObCxXJYg==}
+ /@storybook/router/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-9t8rI8t7/Krolau29gsdjdbRQ66orONIyP0efp0EukVgv6reNFzb/U14ARrl0uHys6Tl5Xyece9FoakQUdn8Kg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/client-logger': 6.5.10
- core-js: 3.25.5
+ '@storybook/client-logger': 6.5.15
+ core-js: 3.27.1
memoizerific: 1.11.3
qs: 6.11.0
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
dev: true
- /@storybook/router/6.5.10_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-O+vNW/eEpYFF8eCg5jZjNQ6q2DKQVxqDRPCy9pJdEbvavMDZn6AFYgVK+VJe5F4211WW2yncOu922xObCxXJYg==}
+ /@storybook/router/6.5.15_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-9t8rI8t7/Krolau29gsdjdbRQ66orONIyP0efp0EukVgv6reNFzb/U14ARrl0uHys6Tl5Xyece9FoakQUdn8Kg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/client-logger': 6.5.10
- core-js: 3.25.5
+ '@storybook/client-logger': 6.5.15
+ core-js: 3.27.1
memoizerific: 1.11.3
qs: 6.11.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- regenerator-runtime: 0.13.9
- dev: true
-
- /@storybook/router/6.5.12_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-xHubde9YnBbpkDY5+zGO4Pr6VPxP8H9J2v4OTF3H82uaxCIKR0PKG0utS9pFKIsEiP3aM62Hb9qB8nU+v1nj3w==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- '@storybook/client-logger': 6.5.12
- core-js: 3.25.5
- memoizerific: 1.11.3
- qs: 6.11.0
- react: 17.0.2
- react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
dev: true
/@storybook/semver/7.3.2:
@@ -5262,48 +5506,48 @@ packages:
engines: {node: '>=10'}
hasBin: true
dependencies:
- core-js: 3.25.5
+ core-js: 3.27.1
find-up: 4.1.0
dev: true
- /@storybook/source-loader/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-1RxxRumpjs8VUUwES9LId+cuNQnixhZAcwCxd6jaKkTZbjiQCtAhXX6DBTjJGV1u/JnCsqEp5b1wB8j/EioNHw==}
+ /@storybook/source-loader/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-MaWzki40g0/7NWmJgUBhOp+e7y8Ohw6G/bRr/rcDP7eXSnud6ThYylXv0QqBScLPPTy8txjmBClCoqdLGyvLWQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/client-logger': 6.5.10
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/client-logger': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- core-js: 3.25.5
+ core-js: 3.27.1
estraverse: 5.3.0
global: 4.4.0
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
lodash: 4.17.21
prettier: 2.3.0
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
dev: true
- /@storybook/store/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-RswrSYh2IiKkytFPxP9AvP+hekjrvHK2ILvyDk2ZgduCN4n5ivsekOb+N3M2t+dq1eLuW9or5n2T4OWwAwjxxQ==}
+ /@storybook/store/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-r6cYTf6GtbqgdI4ZG3xuWdJAAu5fJ3xAWMiDkHyoK2u+R2TeYXIsJvgn0BPrW87sZhELIkg4ckdFECmATs3kpQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/addons': 6.5.10_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- core-js: 3.25.5
+ core-js: 3.27.1
fast-deep-equal: 3.1.3
global: 4.4.0
lodash: 4.17.21
memoizerific: 1.11.3
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
slash: 3.0.0
stable: 0.1.8
synchronous-promise: 2.0.16
@@ -5311,24 +5555,24 @@ packages:
util-deprecate: 1.0.2
dev: true
- /@storybook/store/6.5.10_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-RswrSYh2IiKkytFPxP9AvP+hekjrvHK2ILvyDk2ZgduCN4n5ivsekOb+N3M2t+dq1eLuW9or5n2T4OWwAwjxxQ==}
+ /@storybook/store/6.5.15_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-r6cYTf6GtbqgdI4ZG3xuWdJAAu5fJ3xAWMiDkHyoK2u+R2TeYXIsJvgn0BPrW87sZhELIkg4ckdFECmATs3kpQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/addons': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/client-logger': 6.5.10
- '@storybook/core-events': 6.5.10
+ '@storybook/addons': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-events': 6.5.15
'@storybook/csf': 0.0.2--canary.4566f4d.1
- core-js: 3.25.5
+ core-js: 3.27.1
fast-deep-equal: 3.1.3
global: 4.4.0
lodash: 4.17.21
memoizerific: 1.11.3
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
slash: 3.0.0
stable: 0.1.8
synchronous-promise: 2.0.16
@@ -5336,13 +5580,13 @@ packages:
util-deprecate: 1.0.2
dev: true
- /@storybook/telemetry/6.5.10_6ofeo3u5rimauaiirtndwdyyli:
- resolution: {integrity: sha512-+M5HILDFS8nDumLxeSeAwi1MTzIuV6UWzV4yB2wcsEXOBTdplcl9oYqFKtlst78oOIdGtpPYxYfivDlqxC2K4g==}
+ /@storybook/telemetry/6.5.15_osrebwaanaolfmicoqxqxv5ftu:
+ resolution: {integrity: sha512-WHMRG6xMkEGscn1q4SotwzV8hxM1g3zHyXPN77iosY5zpOIn/qAzvkmW28V1DPH9jPWMZMizBgG1TIQvUpduXg==}
dependencies:
- '@storybook/client-logger': 6.5.10
- '@storybook/core-common': 6.5.10_6ofeo3u5rimauaiirtndwdyyli
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core-common': 6.5.15_osrebwaanaolfmicoqxqxv5ftu
chalk: 4.1.2
- core-js: 3.25.5
+ core-js: 3.27.1
detect-package-manager: 2.0.1
fetch-retry: 5.0.3
fs-extra: 9.1.0
@@ -5350,7 +5594,7 @@ packages:
isomorphic-unfetch: 3.1.0
nanoid: 3.3.4
read-pkg-up: 7.0.1
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
transitivePeerDependencies:
- encoding
- eslint
@@ -5363,74 +5607,60 @@ packages:
- webpack-command
dev: true
- /@storybook/theming/6.5.10_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-BvTQBBcSEwKKcsVmF+Ol6v0RIQUr+bxP7gb10wtfBd23mZTEFA0C1N5FnZr/dDeiBKG1pvf1UKvoYA731y0BsA==}
+ /@storybook/theming/6.5.15_6l5554ty5ajsajah6yazvrjhoe:
+ resolution: {integrity: sha512-pgdW0lVZKKXQ4VhIfLHycMmwFSVOY7vLTKnytag4Y8Yz+aXm0bwDN/QxPntFzDH47F1Rcy2ywNnvty8ooDTvuA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/client-logger': 6.5.10
- core-js: 3.25.5
+ '@storybook/client-logger': 6.5.15
+ core-js: 3.27.1
memoizerific: 1.11.3
react: 17.0.2
react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
dev: true
- /@storybook/theming/6.5.10_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-BvTQBBcSEwKKcsVmF+Ol6v0RIQUr+bxP7gb10wtfBd23mZTEFA0C1N5FnZr/dDeiBKG1pvf1UKvoYA731y0BsA==}
+ /@storybook/theming/6.5.15_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-pgdW0lVZKKXQ4VhIfLHycMmwFSVOY7vLTKnytag4Y8Yz+aXm0bwDN/QxPntFzDH47F1Rcy2ywNnvty8ooDTvuA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/client-logger': 6.5.10
- core-js: 3.25.5
+ '@storybook/client-logger': 6.5.15
+ core-js: 3.27.1
memoizerific: 1.11.3
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
dev: true
- /@storybook/theming/6.5.12_6l5554ty5ajsajah6yazvrjhoe:
- resolution: {integrity: sha512-uWOo84qMQ2R6c1C0faZ4Q0nY01uNaX7nXoJKieoiJ6ZqY9PSYxJl1kZLi3uPYnrxLZjzjVyXX8MgdxzbppYItA==}
+ /@storybook/ui/6.5.15_wcqkhtmu7mswc6yz4uyexck3ty:
+ resolution: {integrity: sha512-OO+TWZmI8ebWA1C3JBKNvbUbsgvt4GppqsGlkf5CTBZrT/MzmMlYiooLAtlY1ZPcMtTd5ynLxvroHWBEnMOk2A==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/client-logger': 6.5.12
- core-js: 3.25.5
- memoizerific: 1.11.3
- react: 17.0.2
- react-dom: 18.2.0_react@17.0.2
- regenerator-runtime: 0.13.9
- dev: true
-
- /@storybook/ui/6.5.10_wcqkhtmu7mswc6yz4uyexck3ty:
- resolution: {integrity: sha512-6iaoaRAiTqB1inTw35vao+5hjcDE0Qa0A3a9ZIeNa6yHvpB1k0lO/N/0PMrRdVvySYpXVD1iry4z4QYdo1rU+w==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- dependencies:
- '@storybook/addons': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/api': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/channels': 6.5.10
- '@storybook/client-logger': 6.5.10
- '@storybook/components': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/core-events': 6.5.10
- '@storybook/router': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/addons': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/api': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/channels': 6.5.15
+ '@storybook/client-logger': 6.5.15
+ '@storybook/components': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/core-events': 6.5.15
+ '@storybook/router': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
'@storybook/semver': 7.3.2
- '@storybook/theming': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- core-js: 3.25.5
+ '@storybook/theming': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ core-js: 3.27.1
memoizerific: 1.11.3
qs: 6.11.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
resolve-from: 5.0.0
dev: true
- /@storybook/vue/6.5.10_u4sx4ptsds2ukklviwwrncv2bq:
- resolution: {integrity: sha512-4MYYvRPkqTBqQUjCNXiTM/PJ6qfzKaECFtEe0H7TG+WP+TuKCCfTY2u1q4ru2qjf8BcSXUfpIWPlfEpZh7wdaQ==}
+ /@storybook/vue/6.5.15_ogbyckaggwfyqweeqbx5bhjsqy:
+ resolution: {integrity: sha512-rbNzev4V8ZElNEFt65v5qyb1WMt8ZpogNMoCYbHrQw+FzP0CqYtP/sMpQHP/J2TgfOtw8ykpusftV/A5lcQfyg==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -5441,46 +5671,43 @@ packages:
vue-loader: ^15.7.0
vue-template-compiler: ^2.6.8
dependencies:
- '@babel/core': 7.19.3
- '@storybook/addons': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/client-logger': 6.5.10
- '@storybook/core': 6.5.10_odad3jmqkzkyj5wcekwtg4vdly
- '@storybook/core-common': 6.5.10_6ofeo3u5rimauaiirtndwdyyli
+ '@babel/core': 7.20.12
+ '@storybook/addons': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/client-logger': 6.5.15
+ '@storybook/core': 6.5.15_gzqk2gwodf7pskyq5ws3vlplhm
+ '@storybook/core-common': 6.5.15_osrebwaanaolfmicoqxqxv5ftu
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/docs-tools': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@storybook/store': 6.5.10_wcqkhtmu7mswc6yz4uyexck3ty
- '@types/node': 16.11.65
+ '@storybook/docs-tools': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@storybook/store': 6.5.15_wcqkhtmu7mswc6yz4uyexck3ty
+ '@types/node': 16.18.11
'@types/webpack-env': 1.18.0
- babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4
- core-js: 3.25.5
- css-loader: 6.7.1_webpack@4.46.0
+ babel-loader: 8.3.0_nwtvwtk5tmh22l2urnqucz7kqu
+ core-js: 3.27.1
+ css-loader: 6.7.3_webpack@4.46.0
global: 4.4.0
react: 16.14.0
react-dom: 16.14.0_react@16.14.0
read-pkg-up: 7.0.1
- regenerator-runtime: 0.13.9
+ regenerator-runtime: 0.13.11
ts-dedent: 2.2.0
- ts-loader: 8.4.0_qqxisngxjbp7lstdk7boexbu3e
- vue: 2.7.13
- vue-docgen-api: 4.52.0_vue@2.7.13
- vue-docgen-loader: 1.5.1_wpwczm4j3sujbbwru7sb4vllc4
- vue-loader: 15.10.0_bmmfcdfkgwka5ige2hekgeknby
- vue-template-compiler: 2.7.13
- webpack: 5.74.0
+ ts-loader: 8.4.0_ad6xlx6c2kce7qmj5vxus5gywi
+ vue: 2.7.14
+ vue-docgen-api: 4.56.4_vue@2.7.14
+ vue-docgen-loader: 1.5.1_awh5tkduz2tly6kx55g4apqcei
+ vue-loader: 15.10.1_kqygo6wsub6p3cpcl6idox7sza
+ vue-template-compiler: 2.7.14
+ webpack: 4.46.0
transitivePeerDependencies:
- '@babel/preset-env'
- '@storybook/builder-webpack5'
- '@storybook/manager-webpack5'
- '@storybook/mdx2-csf'
- - '@swc/core'
- bluebird
- bufferutil
- encoding
- - esbuild
- eslint
- supports-color
- typescript
- - uglify-js
- utf-8-validate
- webpack-cli
- webpack-command
@@ -5505,11 +5732,11 @@ packages:
engines: {node: '>=10'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/runtime': 7.19.4
+ '@babel/runtime': 7.20.7
'@types/aria-query': 4.2.2
aria-query: 4.2.2
chalk: 4.1.2
- dom-accessibility-api: 0.5.14
+ dom-accessibility-api: 0.5.15
lz-string: 1.4.4
pretty-format: 26.6.2
dev: true
@@ -5518,18 +5745,18 @@ packages:
resolution: {integrity: sha512-N5ixQ2qKpi5OLYfwQmUb/5mSV9LneAcaUfp32pn4yCnpb8r/Yz0pXFPck21dIicKmi+ta5WRAknkZCfA8refMA==}
engines: {node: '>=8', npm: '>=6', yarn: '>=1'}
dependencies:
- '@adobe/css-tools': 4.0.1
- '@babel/runtime': 7.19.4
+ '@adobe/css-tools': 4.0.2
+ '@babel/runtime': 7.20.7
'@types/testing-library__jest-dom': 5.14.5
- aria-query: 5.0.2
+ aria-query: 5.1.3
chalk: 3.0.0
css.escape: 1.5.1
- dom-accessibility-api: 0.5.14
+ dom-accessibility-api: 0.5.15
lodash: 4.17.21
redent: 3.0.0
dev: true
- /@testing-library/vue/5.8.3_2s2ymob7v2oigx3hqbmnjuqthq:
+ /@testing-library/vue/5.8.3_rhqkolmkwunxzlyyxxsuwaiuri:
resolution: {integrity: sha512-M6+QqP1xuFHixKOeXF9pCLbtiyJZRKfJRP+unBf6Ljm7aS1V2CSS95oTetFoblaj0W1+AC9XJgwmUDtlLoaakQ==}
engines: {node: '>10.18'}
peerDependencies:
@@ -5538,9 +5765,9 @@ packages:
dependencies:
'@babel/runtime': 7.19.4
'@testing-library/dom': 7.31.2
- '@vue/test-utils': 1.3.0_2s2ymob7v2oigx3hqbmnjuqthq
- vue: 2.7.13
- vue-template-compiler: 2.7.13
+ '@vue/test-utils': 1.3.0_rhqkolmkwunxzlyyxxsuwaiuri
+ vue: 2.7.14
+ vue-template-compiler: 2.7.14
dev: true
/@tokenizer/token/0.3.0:
@@ -5581,8 +5808,8 @@ packages:
/@types/babel__core/7.1.19:
resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==}
dependencies:
- '@babel/parser': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.18.2
@@ -5591,20 +5818,20 @@ packages:
/@types/babel__generator/7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
dev: true
/@types/babel__template/7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
- '@babel/parser': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
dev: true
/@types/babel__traverse/7.18.2:
resolution: {integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
dev: true
/@types/basic-auth/1.1.3:
@@ -5644,11 +5871,11 @@ packages:
/@types/chai-subset/1.3.3:
resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==}
dependencies:
- '@types/chai': 4.3.3
+ '@types/chai': 4.3.4
dev: true
- /@types/chai/4.3.3:
- resolution: {integrity: sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g==}
+ /@types/chai/4.3.4:
+ resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==}
dev: true
/@types/cheerio/0.22.31:
@@ -5796,7 +6023,7 @@ packages:
resolution: {integrity: sha512-l6NQsDDyQUVeoTynNpC9uRvCUint/gSUXQA2euwmTuWGvPY5LSDUu6tkCtJB2SvGQlJQzLaKqcGZP4//7EDveA==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 16.11.65
+ '@types/node': 16.18.11
dev: true
/@types/gm/1.18.12:
@@ -5811,6 +6038,12 @@ packages:
'@types/node': 16.11.65
dev: true
+ /@types/graceful-fs/4.1.6:
+ resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==}
+ dependencies:
+ '@types/node': 18.11.18
+ dev: true
+
/@types/hast/2.3.4:
resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
dependencies:
@@ -5865,13 +6098,6 @@ packages:
'@types/istanbul-lib-report': 3.0.0
dev: true
- /@types/jest/28.1.8:
- resolution: {integrity: sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw==}
- dependencies:
- expect: 28.1.3
- pretty-format: 28.1.3
- dev: true
-
/@types/jest/29.2.2:
resolution: {integrity: sha512-og1wAmdxKoS71K2ZwSVqWPX6OVn3ihZ6ZT2qvZvZQm90lJVDyXIjYcu4Khx2CNIeaFv12rOU/YObOsI3VOkzog==}
dependencies:
@@ -5879,6 +6105,13 @@ packages:
pretty-format: 29.3.1
dev: true
+ /@types/jest/29.2.5:
+ resolution: {integrity: sha512-H2cSxkKgVmqNHXP7TC2L/WUorrZu8ZigyRywfVzv6EyBlxj39n4C00hjXYQWsbwqgElaj/CiAeSRmk5GoaKTgw==}
+ dependencies:
+ expect: 29.3.1
+ pretty-format: 29.3.1
+ dev: true
+
/@types/jmespath/0.15.0:
resolution: {integrity: sha512-uaht4XcYSq5ZrPriQW8C+g5DhptewRd1E84ph7L167sCyzLObz+U3JTpmYq/CNkvjNsz2mtyQoHPNEYQYTzWmg==}
dev: true
@@ -6023,6 +6256,10 @@ packages:
/@types/lodash/4.14.186:
resolution: {integrity: sha512-eHcVlLXP0c2FlMPm56ITode2AgLMSa6aJ05JTTbYbI+7EMkCEE5qk2E41d5g2lCVTqRe0GnnRFurmlCsDODrPw==}
+ /@types/lodash/4.14.191:
+ resolution: {integrity: sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==}
+ dev: true
+
/@types/lossless-json/1.0.1:
resolution: {integrity: sha512-zPE8kmpeL5/6L5gtTQHSOkAW/OSYYNTDRt6/2oEgLO1Zd3Rj5WVDoMloTtLJxQJhZGLGbL4pktKSh3NbzdaWdw==}
dev: true
@@ -6097,7 +6334,7 @@ packages:
/@types/node-fetch/2.6.2:
resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==}
dependencies:
- '@types/node': 16.11.65
+ '@types/node': 16.18.11
form-data: 3.0.1
/@types/node-ssh/7.0.1:
@@ -6115,6 +6352,13 @@ packages:
/@types/node/16.11.65:
resolution: {integrity: sha512-Vfz7wGMOr4jbQGiQHVJm8VjeQwM9Ya7mHe9LtQ264/Epf5n1KiZShOFqk++nBzw6a/ubgYdB9Od7P+MH/LjoWw==}
+ /@types/node/16.18.11:
+ resolution: {integrity: sha512-3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA==}
+
+ /@types/node/18.11.18:
+ resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==}
+ dev: true
+
/@types/nodemailer/6.4.6:
resolution: {integrity: sha512-pD6fL5GQtUKvD2WnPmg5bC2e8kWCAPDwMPmHe/ohQbW+Dy0EcHgZ2oCSuPlWNqk74LS5BVMig1SymQbFMPPK3w==}
dependencies:
@@ -6224,10 +6468,10 @@ packages:
form-data: 2.5.1
dev: true
- /@types/sanitize-html/2.6.2:
- resolution: {integrity: sha512-7Lu2zMQnmHHQGKXVvCOhSziQMpa+R2hMHFefzbYoYMHeaXR0uXqNeOc3JeQQQ8/6Xa2Br/P1IQTLzV09xxAiUQ==}
+ /@types/sanitize-html/2.8.0:
+ resolution: {integrity: sha512-Uih6caOm3DsBYnVGOYn0A9NoTNe1c4aPStmHC/YA2JrpP9kx//jzaRcIklFvSpvVQEcpl/ZCr4DgISSf/YxTvg==}
dependencies:
- htmlparser2: 6.1.0
+ htmlparser2: 8.0.1
dev: true
/@types/semver/7.3.13:
@@ -6338,7 +6582,7 @@ packages:
/@types/testing-library__jest-dom/5.14.5:
resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==}
dependencies:
- '@types/jest': 28.1.8
+ '@types/jest': 29.2.5
dev: true
/@types/through/0.0.30:
@@ -6369,8 +6613,8 @@ packages:
'@types/node': 16.11.65
dev: false
- /@types/uglify-js/3.17.0:
- resolution: {integrity: sha512-3HO6rm0y+/cqvOyA8xcYLweF0TKXlAxmQASjbOi49Co51A1N4nR4bEwBgRoD9kNM+rqFGArjKr654SLp2CoGmQ==}
+ /@types/uglify-js/3.17.1:
+ resolution: {integrity: sha512-GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g==}
dependencies:
source-map: 0.6.1
dev: true
@@ -6410,19 +6654,19 @@ packages:
/@types/webpack-sources/3.2.0:
resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==}
dependencies:
- '@types/node': 16.11.65
+ '@types/node': 16.18.11
'@types/source-list-map': 0.1.2
source-map: 0.7.4
dev: true
- /@types/webpack/4.41.32:
- resolution: {integrity: sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==}
+ /@types/webpack/4.41.33:
+ resolution: {integrity: sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==}
dependencies:
- '@types/node': 16.11.65
+ '@types/node': 16.18.11
'@types/tapable': 1.0.8
- '@types/uglify-js': 3.17.0
+ '@types/uglify-js': 3.17.1
'@types/webpack-sources': 3.2.0
- anymatch: 3.1.2
+ anymatch: 3.1.3
source-map: 0.6.1
dev: true
@@ -6447,14 +6691,14 @@ packages:
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
dev: true
- /@types/yargs/15.0.14:
- resolution: {integrity: sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==}
+ /@types/yargs/15.0.15:
+ resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==}
dependencies:
'@types/yargs-parser': 21.0.0
dev: true
- /@types/yargs/17.0.13:
- resolution: {integrity: sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg==}
+ /@types/yargs/17.0.19:
+ resolution: {integrity: sha512-cAx3qamwaYX9R0fzOIZAlFpo4A+1uBVCxqpKz9D26uTF4srRXaGTTsikQmaotCtNdbhzyUH7ft6p9ktz9s6UNQ==}
dependencies:
'@types/yargs-parser': 21.0.0
dev: true
@@ -6466,7 +6710,7 @@ packages:
dev: true
optional: true
- /@typescript-eslint/eslint-plugin/5.45.0_psz44bhp76u27vmulntnlx26h4:
+ /@typescript-eslint/eslint-plugin/5.45.0_wke4plxjew2ogjxrdwvzd2srfq:
resolution: {integrity: sha512-CXXHNlf0oL+Yg021cxgOdMHNTXD17rHkq7iW6RFHoybdFgQBjU3yIXhhcPpGwr1CjZlo6ET8C6tzX5juQoXeGA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -6477,23 +6721,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.45.0_zksrc6ykdxhogxjbhb5axiabwi
+ '@typescript-eslint/parser': 5.45.0_wy4udjehnvkneqnogzx5kughki
'@typescript-eslint/scope-manager': 5.45.0
- '@typescript-eslint/type-utils': 5.45.0_zksrc6ykdxhogxjbhb5axiabwi
- '@typescript-eslint/utils': 5.45.0_zksrc6ykdxhogxjbhb5axiabwi
+ '@typescript-eslint/type-utils': 5.45.0_wy4udjehnvkneqnogzx5kughki
+ '@typescript-eslint/utils': 5.45.0_wy4udjehnvkneqnogzx5kughki
debug: 4.3.4
eslint: 8.28.0
ignore: 5.2.0
natural-compare-lite: 1.4.0
regexpp: 3.2.0
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.8.4
- typescript: 4.8.4
+ tsutils: 3.21.0_typescript@4.9.4
+ typescript: 4.9.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser/5.45.0_zksrc6ykdxhogxjbhb5axiabwi:
+ /@typescript-eslint/parser/5.45.0_wy4udjehnvkneqnogzx5kughki:
resolution: {integrity: sha512-brvs/WSM4fKUmF5Ot/gEve6qYiCMjm6w4HkHPfS6ZNmxTS0m0iNN4yOChImaCkqc1hRwFGqUyanMXuGal6oyyQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -6505,10 +6749,10 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.45.0
'@typescript-eslint/types': 5.45.0
- '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.8.4
+ '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.4
debug: 4.3.4
eslint: 8.28.0
- typescript: 4.8.4
+ typescript: 4.9.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -6521,7 +6765,7 @@ packages:
'@typescript-eslint/visitor-keys': 5.45.0
dev: true
- /@typescript-eslint/type-utils/5.45.0_zksrc6ykdxhogxjbhb5axiabwi:
+ /@typescript-eslint/type-utils/5.45.0_wy4udjehnvkneqnogzx5kughki:
resolution: {integrity: sha512-DY7BXVFSIGRGFZ574hTEyLPRiQIvI/9oGcN8t1A7f6zIs6ftbrU0nhyV26ZW//6f85avkwrLag424n+fkuoJ1Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -6531,12 +6775,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.8.4
- '@typescript-eslint/utils': 5.45.0_zksrc6ykdxhogxjbhb5axiabwi
+ '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.4
+ '@typescript-eslint/utils': 5.45.0_wy4udjehnvkneqnogzx5kughki
debug: 4.3.4
eslint: 8.28.0
- tsutils: 3.21.0_typescript@4.8.4
- typescript: 4.8.4
+ tsutils: 3.21.0_typescript@4.9.4
+ typescript: 4.9.4
transitivePeerDependencies:
- supports-color
dev: true
@@ -6546,7 +6790,7 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/5.45.0_typescript@4.8.4:
+ /@typescript-eslint/typescript-estree/5.45.0_typescript@4.9.4:
resolution: {integrity: sha512-maRhLGSzqUpFcZgXxg1qc/+H0bT36lHK4APhp0AEUVrpSwXiRAomm/JGjSG+kNUio5kAa3uekCYu/47cnGn5EQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -6561,13 +6805,13 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.8.4
- typescript: 4.8.4
+ tsutils: 3.21.0_typescript@4.9.4
+ typescript: 4.9.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils/5.45.0_zksrc6ykdxhogxjbhb5axiabwi:
+ /@typescript-eslint/utils/5.45.0_wy4udjehnvkneqnogzx5kughki:
resolution: {integrity: sha512-OUg2JvsVI1oIee/SwiejTot2OxwU8a7UfTFMOdlhD2y+Hl6memUSL4s98bpUTo8EpVEr0lmwlU7JSu/p2QpSvA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -6577,7 +6821,7 @@ packages:
'@types/semver': 7.3.13
'@typescript-eslint/scope-manager': 5.45.0
'@typescript-eslint/types': 5.45.0
- '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.8.4
+ '@typescript-eslint/typescript-estree': 5.45.0_typescript@4.9.4
eslint: 8.28.0
eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@8.28.0
@@ -6595,115 +6839,115 @@ packages:
eslint-visitor-keys: 3.3.0
dev: true
- /@vitejs/plugin-legacy/1.8.2_vite@2.9.5:
- resolution: {integrity: sha512-NCOKU+pU+cxLMR9P9RTolEuOK+h+zYBXlknj+zGcKSj/NXBZYgA1GAH1FnO4zijoWRiTaiOm2ha9LQrELE7XHg==}
- engines: {node: '>=12.0.0'}
+ /@vitejs/plugin-legacy/3.0.1_terser@5.16.1+vite@4.0.4:
+ resolution: {integrity: sha512-XCtEjxoR3rmy000ujYRBp5kggWqzHz9+F20/yIMUWOzbvu0+KW1e14Fvb8h7SpNn+bfjGW1RiAs1Vrgb7Js+iQ==}
+ engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- vite: ^2.8.0
+ terser: ^5.4.0
+ vite: ^4.0.0
dependencies:
- '@babel/standalone': 7.19.5
- core-js: 3.25.5
- magic-string: 0.26.7
- regenerator-runtime: 0.13.9
+ '@babel/standalone': 7.20.12
+ core-js: 3.27.1
+ magic-string: 0.27.0
+ regenerator-runtime: 0.13.11
systemjs: 6.13.0
- vite: 2.9.5_sass@1.55.0
+ terser: 5.16.1
+ vite: 4.0.4_sass@1.55.0+terser@5.16.1
dev: true
- /@vitejs/plugin-vue2/1.1.2_vite@2.9.15+vue@2.7.13:
- resolution: {integrity: sha512-y6OEA+2UdJ0xrEQHodq20v9r3SpS62IOHrgN92JPLvVpNkhcissu7yvD5PXMzMESyazj0XNWGsc8UQk8+mVrjQ==}
- engines: {node: '>=14.6.0'}
+ /@vitejs/plugin-vue2/2.2.0_vite@4.0.4+vue@2.7.14:
+ resolution: {integrity: sha512-1km7zEuZ/9QRPvzXSjikbTYGQPG86Mq1baktpC4sXqsXlb02HQKfi+fl8qVS703JM7cgm24Ga9j+RwKmvFn90A==}
+ engines: {node: ^14.18.0 || >= 16.0.0}
peerDependencies:
- vite: '>=2.5.10'
+ vite: ^3.0.0 || ^4.0.0
vue: ^2.7.0-0
dependencies:
- vite: 2.9.15_sass@1.55.0
- vue: 2.7.13
+ vite: 4.0.4_sass@1.57.1
+ vue: 2.7.14
dev: true
- /@vitejs/plugin-vue2/1.1.2_vite@2.9.5+vue@2.7.13:
- resolution: {integrity: sha512-y6OEA+2UdJ0xrEQHodq20v9r3SpS62IOHrgN92JPLvVpNkhcissu7yvD5PXMzMESyazj0XNWGsc8UQk8+mVrjQ==}
- engines: {node: '>=14.6.0'}
- peerDependencies:
- vite: '>=2.5.10'
- vue: ^2.7.0-0
+ /@volar/language-core/1.0.24:
+ resolution: {integrity: sha512-vTN+alJiWwK0Pax6POqrmevbtFW2dXhjwWiW/MW4f48eDYPLdyURWcr8TixO7EN/nHsUBj2udT7igFKPtjyAKg==}
dependencies:
- vite: 2.9.5_sass@1.55.0
- vue: 2.7.13
+ '@volar/source-map': 1.0.24
+ muggle-string: 0.1.0
dev: true
- /@volar/code-gen/0.35.2:
- resolution: {integrity: sha512-MoZHuNnPfUWnCNkQUI5+U+gvLTxrU+XlCTusdNOTFYUUAa+M68MH0RxFIS9Ybj4uAUWTcZx0Ow1q5t/PZozo+Q==}
+ /@volar/source-map/1.0.24:
+ resolution: {integrity: sha512-Qsv/tkplx18pgBr8lKAbM1vcDqgkGKQzbChg6NW+v0CZc3G7FLmK+WrqEPzKlN7Cwdc6XVL559Nod8WKAfKr4A==}
dependencies:
- '@volar/source-map': 0.35.2
+ muggle-string: 0.1.0
dev: true
- /@volar/source-map/0.35.2:
- resolution: {integrity: sha512-PFHh9wN/qMkOWYyvmB8ckvIzolrpNOvK5EBdxxdTpiPJhfYjW82rMDBnYf6RxCe7yQxrUrmve6BWVO7flxWNVQ==}
- dev: true
-
- /@volar/vue-code-gen/0.35.2:
- resolution: {integrity: sha512-8H6P8EtN06eSVGjtcJhGqZzFIg6/nWoHVOlnhc5vKqC7tXwpqPbyMQae0tO7pLBd5qSb/dYU5GQcBAHsi2jgyA==}
+ /@volar/typescript/1.0.24:
+ resolution: {integrity: sha512-f8hCSk+PfKR1/RQHxZ79V1NpDImHoivqoizK+mstphm25tn/YJ/JnKNjZHB+o21fuW0yKlI26NV3jkVb2Cc/7A==}
dependencies:
- '@volar/code-gen': 0.35.2
- '@volar/source-map': 0.35.2
- '@vue/compiler-core': 3.2.40
- '@vue/compiler-dom': 3.2.40
- '@vue/shared': 3.2.40
+ '@volar/language-core': 1.0.24
dev: true
- /@volar/vue-typescript/0.35.2:
- resolution: {integrity: sha512-PZI6Urb+Vr5Dvgf9xysM8X7TP09inWDy1wjDtprBoBhxS7r0Dg3V0qZuJa7sSGz7M0QMa5R/CBaZPhlxFCfJBw==}
+ /@volar/vue-language-core/1.0.24:
+ resolution: {integrity: sha512-2NTJzSgrwKu6uYwPqLiTMuAzi7fAY3yFy5PJ255bGJc82If0Xr+cW8pC80vpjG0D/aVLmlwAdO4+Ya2BI8GdDg==}
dependencies:
- '@volar/code-gen': 0.35.2
- '@volar/source-map': 0.35.2
- '@volar/vue-code-gen': 0.35.2
- '@vue/compiler-sfc': 3.2.40
- '@vue/reactivity': 3.2.40
+ '@volar/language-core': 1.0.24
+ '@volar/source-map': 1.0.24
+ '@vue/compiler-dom': 3.2.45
+ '@vue/compiler-sfc': 3.2.45
+ '@vue/reactivity': 3.2.45
+ '@vue/shared': 3.2.45
+ minimatch: 5.1.5
+ vue-template-compiler: 2.7.14
dev: true
- /@vue/compiler-core/3.2.40:
- resolution: {integrity: sha512-2Dc3Stk0J/VyQ4OUr2yEC53kU28614lZS+bnrCbFSAIftBJ40g/2yQzf4mPBiFuqguMB7hyHaujdgZAQ67kZYA==}
+ /@volar/vue-typescript/1.0.24:
+ resolution: {integrity: sha512-9a25oHDvGaNC0okRS47uqJI6FxY4hUQZUsxeOUFHcqVxZEv8s17LPuP/pMMXyz7jPygrZubB/qXqHY5jEu/akA==}
dependencies:
- '@babel/parser': 7.19.4
- '@vue/shared': 3.2.40
+ '@volar/typescript': 1.0.24
+ '@volar/vue-language-core': 1.0.24
+ dev: true
+
+ /@vue/compiler-core/3.2.45:
+ resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==}
+ dependencies:
+ '@babel/parser': 7.20.7
+ '@vue/shared': 3.2.45
estree-walker: 2.0.2
source-map: 0.6.1
dev: true
- /@vue/compiler-dom/3.2.40:
- resolution: {integrity: sha512-OZCNyYVC2LQJy4H7h0o28rtk+4v+HMQygRTpmibGoG9wZyomQiS5otU7qo3Wlq5UfHDw2RFwxb9BJgKjVpjrQw==}
+ /@vue/compiler-dom/3.2.45:
+ resolution: {integrity: sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==}
dependencies:
- '@vue/compiler-core': 3.2.40
- '@vue/shared': 3.2.40
+ '@vue/compiler-core': 3.2.45
+ '@vue/shared': 3.2.45
dev: true
- /@vue/compiler-sfc/2.7.13:
- resolution: {integrity: sha512-zzu2rLRZlgIU+OT3Atbr7Y6PG+LW4wVQpPfNRrGDH3dM9PsrcVfa+1pKb8bW467bGM3aDOvAnsYLWVpYIv3GRg==}
+ /@vue/compiler-sfc/2.7.14:
+ resolution: {integrity: sha512-aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA==}
dependencies:
- '@babel/parser': 7.19.4
- postcss: 8.4.18
+ '@babel/parser': 7.20.7
+ postcss: 8.4.21
source-map: 0.6.1
- /@vue/compiler-sfc/3.2.40:
- resolution: {integrity: sha512-tzqwniIN1fu1PDHC3CpqY/dPCfN/RN1thpBC+g69kJcrl7mbGiHKNwbA6kJ3XKKy8R6JLKqcpVugqN4HkeBFFg==}
+ /@vue/compiler-sfc/3.2.45:
+ resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==}
dependencies:
- '@babel/parser': 7.19.4
- '@vue/compiler-core': 3.2.40
- '@vue/compiler-dom': 3.2.40
- '@vue/compiler-ssr': 3.2.40
- '@vue/reactivity-transform': 3.2.40
- '@vue/shared': 3.2.40
+ '@babel/parser': 7.20.7
+ '@vue/compiler-core': 3.2.45
+ '@vue/compiler-dom': 3.2.45
+ '@vue/compiler-ssr': 3.2.45
+ '@vue/reactivity-transform': 3.2.45
+ '@vue/shared': 3.2.45
estree-walker: 2.0.2
magic-string: 0.25.9
- postcss: 8.4.18
+ postcss: 8.4.21
source-map: 0.6.1
dev: true
- /@vue/compiler-ssr/3.2.40:
- resolution: {integrity: sha512-80cQcgasKjrPPuKcxwuCx7feq+wC6oFl5YaKSee9pV3DNq+6fmCVwEEC3vvkf/E2aI76rIJSOYHsWSEIxK74oQ==}
+ /@vue/compiler-ssr/3.2.45:
+ resolution: {integrity: sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==}
dependencies:
- '@vue/compiler-dom': 3.2.40
- '@vue/shared': 3.2.40
+ '@vue/compiler-dom': 3.2.45
+ '@vue/shared': 3.2.45
dev: true
/@vue/component-compiler-utils/3.3.0_6l5554ty5ajsajah6yazvrjhoe:
@@ -6714,11 +6958,11 @@ packages:
lru-cache: 4.1.5
merge-source-map: 1.1.0
postcss: 7.0.39
- postcss-selector-parser: 6.0.10
+ postcss-selector-parser: 6.0.11
source-map: 0.6.1
vue-template-es2015-compiler: 1.9.1
optionalDependencies:
- prettier: 2.7.1
+ prettier: 2.8.3
transitivePeerDependencies:
- arc-templates
- atpl
@@ -6778,7 +7022,7 @@ packages:
/@vue/devtools-api/6.4.5:
resolution: {integrity: sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ==}
- /@vue/eslint-config-typescript/8.0.0_waieggddnqlstdz3t2sku3jrrq:
+ /@vue/eslint-config-typescript/8.0.0_foaxzhaputljbcoeiwudem25oq:
resolution: {integrity: sha512-8u8Qpg4qfjJoNeRMdHlxif9BcGy4iYSSK4YYW5AFPPRtkBJiCqtoyT72l4F3ZeZII09ax2N6yQeHbQ0CXQi1bA==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -6791,37 +7035,37 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.45.0_psz44bhp76u27vmulntnlx26h4
- '@typescript-eslint/parser': 5.45.0_zksrc6ykdxhogxjbhb5axiabwi
+ '@typescript-eslint/eslint-plugin': 5.45.0_wke4plxjew2ogjxrdwvzd2srfq
+ '@typescript-eslint/parser': 5.45.0_wy4udjehnvkneqnogzx5kughki
eslint: 8.28.0
eslint-plugin-vue: 7.17.0_eslint@8.28.0
- typescript: 4.8.4
+ typescript: 4.9.4
vue-eslint-parser: 7.11.0_eslint@8.28.0
transitivePeerDependencies:
- supports-color
dev: true
- /@vue/reactivity-transform/3.2.40:
- resolution: {integrity: sha512-HQUCVwEaacq6fGEsg2NUuGKIhUveMCjOk8jGHqLXPI2w6zFoPrlQhwWEaINTv5kkZDXKEnCijAp+4gNEHG03yw==}
+ /@vue/reactivity-transform/3.2.45:
+ resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==}
dependencies:
- '@babel/parser': 7.19.4
- '@vue/compiler-core': 3.2.40
- '@vue/shared': 3.2.40
+ '@babel/parser': 7.20.7
+ '@vue/compiler-core': 3.2.45
+ '@vue/shared': 3.2.45
estree-walker: 2.0.2
magic-string: 0.25.9
dev: true
- /@vue/reactivity/3.2.40:
- resolution: {integrity: sha512-N9qgGLlZmtUBMHF9xDT4EkD9RdXde1Xbveb+niWMXuHVWQP5BzgRmE3SFyUBBcyayG4y1lhoz+lphGRRxxK4RA==}
+ /@vue/reactivity/3.2.45:
+ resolution: {integrity: sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==}
dependencies:
- '@vue/shared': 3.2.40
+ '@vue/shared': 3.2.45
dev: true
- /@vue/shared/3.2.40:
- resolution: {integrity: sha512-0PLQ6RUtZM0vO3teRfzGi4ltLUO5aO+kLgwh4Um3THSR03rpQWLTuRCkuO5A41ITzwdWeKdPHtSARuPkoo5pCQ==}
+ /@vue/shared/3.2.45:
+ resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==}
dev: true
- /@vue/test-utils/1.3.0_2s2ymob7v2oigx3hqbmnjuqthq:
+ /@vue/test-utils/1.3.0_rhqkolmkwunxzlyyxxsuwaiuri:
resolution: {integrity: sha512-Xk2Xiyj2k5dFb8eYUKkcN9PzqZSppTlx7LaQWBbdA8tqh3jHr/KHX2/YLhNFc/xwDrgeLybqd+4ZCPJSGPIqeA==}
peerDependencies:
vue: 2.x
@@ -6830,8 +7074,8 @@ packages:
dom-event-types: 1.1.0
lodash: 4.17.21
pretty: 2.0.0
- vue: 2.7.13
- vue-template-compiler: 2.7.13
+ vue: 2.7.14
+ vue-template-compiler: 2.7.14
dev: true
/@webassemblyjs/ast/1.11.1:
@@ -7093,13 +7337,6 @@ packages:
mime-types: 2.1.35
negotiator: 0.6.3
- /acorn-globals/6.0.0:
- resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==}
- dependencies:
- acorn: 7.4.1
- acorn-walk: 7.2.0
- dev: true
-
/acorn-globals/7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
dependencies:
@@ -7131,11 +7368,6 @@ packages:
acorn: 8.8.1
dev: true
- /acorn-walk/7.2.0:
- resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
- engines: {node: '>=0.4.0'}
- dev: true
-
/acorn-walk/8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
engines: {node: '>=0.4.0'}
@@ -7156,6 +7388,7 @@ packages:
resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==}
engines: {node: '>=0.4.0'}
hasBin: true
+ dev: false
/acorn/8.8.1:
resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==}
@@ -7166,6 +7399,12 @@ packages:
/address/1.2.1:
resolution: {integrity: sha512-B+6bi5D34+fDYENiH5qOlA0cV2rAGKuWZ9LeyUUehbXy8e0VS9e498yO0Jeeh+iM+6KbfudHTFjXw2MmJD4QRA==}
engines: {node: '>= 10.0.0'}
+ dev: false
+
+ /address/1.2.2:
+ resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
+ engines: {node: '>= 10.0.0'}
+ dev: true
/adler-32/1.2.0:
resolution: {integrity: sha512-/vUqU/UY4MVeFsg+SsK6c+/05RZXIHZMGJA+PX5JyWI0ZRcBpupnRuPLU/NXXoFwMYCPCoxIfElM2eS+DUXCqQ==}
@@ -7211,22 +7450,22 @@ packages:
/airbnb-js-shims/2.2.1:
resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==}
dependencies:
- array-includes: 3.1.5
- array.prototype.flat: 1.3.0
- array.prototype.flatmap: 1.3.0
+ array-includes: 3.1.6
+ array.prototype.flat: 1.3.1
+ array.prototype.flatmap: 1.3.1
es5-shim: 4.6.7
- es6-shim: 0.35.6
+ es6-shim: 0.35.7
function.prototype.name: 1.1.5
globalthis: 1.0.3
- object.entries: 1.1.5
- object.fromentries: 2.0.5
- object.getownpropertydescriptors: 2.1.4
- object.values: 1.1.5
- promise.allsettled: 1.0.5
- promise.prototype.finally: 3.1.3
- string.prototype.matchall: 4.0.7
- string.prototype.padend: 3.1.3
- string.prototype.padstart: 3.1.3
+ object.entries: 1.1.6
+ object.fromentries: 2.0.6
+ object.getownpropertydescriptors: 2.1.5
+ object.values: 1.1.6
+ promise.allsettled: 1.0.6
+ promise.prototype.finally: 3.1.4
+ string.prototype.matchall: 4.0.8
+ string.prototype.padend: 3.1.4
+ string.prototype.padstart: 3.1.4
symbol.prototype.description: 1.0.5
dev: true
@@ -7380,6 +7619,14 @@ packages:
normalize-path: 3.0.0
picomatch: 2.3.1
+ /anymatch/3.1.3:
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+ engines: {node: '>= 8'}
+ dependencies:
+ normalize-path: 3.0.0
+ picomatch: 2.3.1
+ dev: true
+
/app-root-dir/1.0.2:
resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==}
dev: true
@@ -7446,13 +7693,14 @@ packages:
resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
engines: {node: '>=6.0'}
dependencies:
- '@babel/runtime': 7.19.4
- '@babel/runtime-corejs3': 7.19.4
+ '@babel/runtime': 7.20.7
+ '@babel/runtime-corejs3': 7.20.7
dev: true
- /aria-query/5.0.2:
- resolution: {integrity: sha512-eigU3vhqSO+Z8BKDnVLN/ompjhf3pYzecKXz8+whRy+9gZu8n1TCGfwzQUUPnqdHl9ax1Hr9031orZ+UOEYr7Q==}
- engines: {node: '>=6.0'}
+ /aria-query/5.1.3:
+ resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
+ dependencies:
+ deep-equal: 2.2.0
dev: true
/arr-diff/4.0.0:
@@ -7509,6 +7757,17 @@ packages:
is-string: 1.0.7
dev: true
+ /array-includes/3.1.6:
+ resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
+ get-intrinsic: 1.1.3
+ is-string: 1.0.7
+ dev: true
+
/array-initial/1.1.0:
resolution: {integrity: sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==}
engines: {node: '>=0.10.0'}
@@ -7565,23 +7824,33 @@ packages:
es-shim-unscopables: 1.0.0
dev: true
- /array.prototype.flatmap/1.3.0:
- resolution: {integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==}
+ /array.prototype.flat/1.3.1:
+ resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.4
+ es-abstract: 1.21.1
es-shim-unscopables: 1.0.0
dev: true
- /array.prototype.map/1.0.4:
- resolution: {integrity: sha512-Qds9QnX7A0qISY7JT5WuJO0NJPE9CMlC6JzHQfhpqAAQQzufVRoeH7EzUY5GcPTx72voG8LV/5eo+b8Qi8hmhA==}
+ /array.prototype.flatmap/1.3.1:
+ resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.4
+ es-abstract: 1.21.1
+ es-shim-unscopables: 1.0.0
+ dev: true
+
+ /array.prototype.map/1.0.5:
+ resolution: {integrity: sha512-gfaKntvwqYIuC7mLLyv2wzZIJqrRhn5PZ9EfFejSx6a78sV7iDsGpG9P+3oUPtm1Rerqm6nrKS4FYuTIvWfo3g==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
es-array-method-boxes-properly: 1.0.0
is-string: 1.0.7
dev: true
@@ -7595,6 +7864,18 @@ packages:
es-abstract: 1.20.4
es-array-method-boxes-properly: 1.0.0
is-string: 1.0.7
+ dev: false
+
+ /array.prototype.reduce/1.0.5:
+ resolution: {integrity: sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
+ es-array-method-boxes-properly: 1.0.0
+ is-string: 1.0.7
+ dev: true
/arrify/2.0.1:
resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==}
@@ -7652,6 +7933,15 @@ packages:
util: 0.10.3
dev: true
+ /assert/2.0.0:
+ resolution: {integrity: sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==}
+ dependencies:
+ es6-object-assign: 1.1.0
+ is-nan: 1.3.2
+ object-is: 1.1.5
+ util: 0.12.5
+ dev: true
+
/assertion-error/1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
dev: true
@@ -7672,14 +7962,14 @@ packages:
resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==}
engines: {node: '>=4'}
dependencies:
- tslib: 2.4.0
+ tslib: 2.4.1
dev: true
/ast-types/0.15.2:
resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==}
engines: {node: '>=4'}
dependencies:
- tslib: 2.4.0
+ tslib: 2.4.1
/astral-regex/2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
@@ -7750,7 +8040,7 @@ packages:
hasBin: true
dependencies:
browserslist: 4.21.4
- caniuse-lite: 1.0.30001418
+ caniuse-lite: 1.0.30001445
normalize-range: 0.1.2
num2fraction: 1.2.2
picocolors: 0.2.1
@@ -7761,7 +8051,6 @@ packages:
/available-typed-arrays/1.0.5:
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
engines: {node: '>= 0.4'}
- dev: false
/avsc/5.7.6:
resolution: {integrity: sha512-jyn9tfd9J3h7pgJSk4qQ/1c1Tk5qiXrvmdCDON2UjcFplqRu/KpmKmpi+Ess8ZKmmqK12U4Y3VHrfwQs1xSMZA==}
@@ -7848,12 +8137,12 @@ packages:
- debug
dev: false
- /babel-core/7.0.0-bridge.0_@babel+core@7.19.3:
+ /babel-core/7.0.0-bridge.0_@babel+core@7.20.12:
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
dev: true
/babel-helper-vue-jsx-merge-props/2.0.3:
@@ -7878,16 +8167,16 @@ packages:
- supports-color
dev: true
- /babel-loader/8.2.5_jeg5564y5etyvi3ajplf6yhqg4:
- resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==}
+ /babel-loader/8.3.0_nwtvwtk5tmh22l2urnqucz7kqu:
+ resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
dependencies:
- '@babel/core': 7.19.3
+ '@babel/core': 7.20.12
find-cache-dir: 3.3.2
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
make-dir: 3.1.0
schema-utils: 2.7.1
webpack: 4.46.0
@@ -7903,12 +8192,6 @@ packages:
'@mdx-js/util': 1.6.22
dev: true
- /babel-plugin-dynamic-import-node/2.3.3:
- resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
- dependencies:
- object.assign: 4.1.4
- dev: true
-
/babel-plugin-extract-import-names/1.6.22:
resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==}
dependencies:
@@ -7919,7 +8202,7 @@ packages:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
dependencies:
- '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-plugin-utils': 7.20.2
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -7933,7 +8216,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/template': 7.18.10
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
'@types/babel__core': 7.1.19
'@types/babel__traverse': 7.18.2
dev: true
@@ -7942,55 +8225,55 @@ packages:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.19.4
- cosmiconfig: 7.0.1
+ '@babel/runtime': 7.20.7
+ cosmiconfig: 7.1.0
resolve: 1.22.1
dev: true
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.19.3:
+ /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12:
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.4
- '@babel/core': 7.19.3
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.3
+ '@babel/compat-data': 7.20.10
+ '@babel/core': 7.20.12
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.19.3:
+ /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.20.12:
resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.19.3
- core-js-compat: 3.25.5
+ '@babel/core': 7.20.12
+ '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.20.12
+ core-js-compat: 3.27.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.19.3:
+ /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.12:
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.3
- core-js-compat: 3.25.5
+ '@babel/core': 7.20.12
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
+ core-js-compat: 3.27.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.19.3:
+ /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12:
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.19.3
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12
transitivePeerDependencies:
- supports-color
dev: true
@@ -8037,7 +8320,7 @@ packages:
resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
dev: true
/bach/1.2.0:
@@ -8260,10 +8543,6 @@ packages:
resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==}
dev: true
- /browser-process-hrtime/1.0.0:
- resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
- dev: true
-
/browser-request/0.3.3:
resolution: {integrity: sha512-YyNI4qJJ+piQG6MMEuo7J3Bzaqssufx04zpEKYfSrl/1Op59HWali9zMtBpXnkmqMcOuWJPZvudrm9wISmnCbg==}
engines: {'0': node}
@@ -8329,9 +8608,9 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001418
- electron-to-chromium: 1.4.279
- node-releases: 2.0.6
+ caniuse-lite: 1.0.30001445
+ electron-to-chromium: 1.4.284
+ node-releases: 2.0.8
update-browserslist-db: 1.0.10_browserslist@4.21.4
dev: true
@@ -8468,25 +8747,6 @@ packages:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- /c8/7.11.0:
- resolution: {integrity: sha512-XqPyj1uvlHMr+Y1IeRndC2X5P7iJzJlEJwBpCdBbq2JocXOgJfr+JVfJkyNMGROke5LfKrhSFXGFXnwnRJAUJw==}
- engines: {node: '>=10.12.0'}
- hasBin: true
- dependencies:
- '@bcoe/v8-coverage': 0.2.3
- '@istanbuljs/schema': 0.1.3
- find-up: 5.0.0
- foreground-child: 2.0.0
- istanbul-lib-coverage: 3.2.0
- istanbul-lib-report: 3.0.0
- istanbul-reports: 3.1.5
- rimraf: 3.0.2
- test-exclude: 6.0.0
- v8-to-istanbul: 8.1.1
- yargs: 16.2.0
- yargs-parser: 20.2.9
- dev: true
-
/c8/7.12.0:
resolution: {integrity: sha512-CtgQrHOkyxr5koX1wEUmN/5cfDa2ckbHRA4Gy5LAL0zaCFtVWJS5++n+w4/sr2GWGerBxgTjpKeDclk/Qk6W/A==}
engines: {node: '>=10.12.0'}
@@ -8506,6 +8766,11 @@ packages:
yargs-parser: 20.2.9
dev: true
+ /cac/6.7.14:
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
+ engines: {node: '>=8'}
+ dev: true
+
/cacache/12.0.4:
resolution: {integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==}
dependencies:
@@ -8537,7 +8802,7 @@ packages:
glob: 7.2.3
infer-owner: 1.0.4
lru-cache: 6.0.0
- minipass: 3.3.4
+ minipass: 3.3.6
minipass-collect: 1.0.2
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
@@ -8546,7 +8811,7 @@ packages:
promise-inflight: 1.0.1
rimraf: 3.0.2
ssri: 8.0.1
- tar: 6.1.11
+ tar: 6.1.13
unique-filename: 1.1.1
transitivePeerDependencies:
- bluebird
@@ -8632,8 +8897,8 @@ packages:
engines: {node: '>=10'}
dev: true
- /caniuse-lite/1.0.30001418:
- resolution: {integrity: sha512-oIs7+JL3K9JRQ3jPZjlH6qyYDp+nBTCais7hjh0s+fuBwufc7uZ7hPYMXrDOJhV360KGMTcczMRObk0/iMqZRg==}
+ /caniuse-lite/1.0.30001445:
+ resolution: {integrity: sha512-8sdQIdMztYmzfTMO6KfLny878Ln9c2M0fc7EH60IjlP4Dc4PiCy7K2Vl3ITmWgOyPgVQKa5x+UP/KqFsxj4mBg==}
dev: true
/capital-case/1.0.4:
@@ -8678,15 +8943,15 @@ packages:
crc-32: 1.2.2
dev: false
- /chai/4.3.6:
- resolution: {integrity: sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==}
+ /chai/4.3.7:
+ resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==}
engines: {node: '>=4'}
dependencies:
assertion-error: 1.1.0
check-error: 1.0.2
- deep-eql: 3.0.1
+ deep-eql: 4.1.3
get-func-name: 2.0.0
- loupe: 2.3.4
+ loupe: 2.3.6
pathval: 1.1.1
type-detect: 4.0.8
dev: true
@@ -8834,7 +9099,7 @@ packages:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
dependencies:
- anymatch: 3.1.2
+ anymatch: 3.1.3
braces: 3.0.2
glob-parent: 5.1.2
is-binary-path: 2.1.0
@@ -8866,6 +9131,11 @@ packages:
resolution: {integrity: sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==}
dev: true
+ /ci-info/3.7.1:
+ resolution: {integrity: sha512-4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w==}
+ engines: {node: '>=8'}
+ dev: true
+
/cipher-base/1.0.4:
resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
dependencies:
@@ -8906,13 +9176,6 @@ packages:
source-map: 0.6.1
dev: true
- /clean-css/5.3.1:
- resolution: {integrity: sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==}
- engines: {node: '>= 10.0'}
- dependencies:
- source-map: 0.6.1
- dev: true
-
/clean-stack/2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
@@ -9250,11 +9513,6 @@ packages:
engines: {node: '>= 6'}
dev: true
- /commander/8.3.0:
- resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
- engines: {node: '>= 12'}
- dev: true
-
/commander/9.4.1:
resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==}
engines: {node: ^12.20.0 || >=14}
@@ -9372,10 +9630,7 @@ packages:
/connect-history-api-fallback/1.6.0:
resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
engines: {node: '>=0.8'}
-
- /consola/2.15.3:
- resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
- dev: true
+ dev: false
/console-browserify/1.1.0:
resolution: {integrity: sha512-duS7VP5pvfsNLDvL1O4VOEbw37AI3A4ZUQYemvDlnpGrNu9tprR7BYWpDYwC0Xia0Zxz5ZupdiIrUp0GH1aXfg==}
@@ -9571,8 +9826,8 @@ packages:
/constantinople/4.0.1:
resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==}
dependencies:
- '@babel/parser': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
dev: true
/constants-browserify/1.0.0:
@@ -9661,14 +9916,14 @@ packages:
resolution: {integrity: sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==}
dev: false
- /core-js-compat/3.25.5:
- resolution: {integrity: sha512-ovcyhs2DEBUIE0MGEKHP4olCUW/XYte3Vroyxuh38rD1wAO4dHohsovUC4eAOuzFxE6b+RXvBU3UZ9o0YhUTkA==}
+ /core-js-compat/3.27.1:
+ resolution: {integrity: sha512-Dg91JFeCDA17FKnneN7oCMz4BkQ4TcffkgHP4OWwp9yx3pi7ubqMDXXSacfNak1PQqjc95skyt+YBLHQJnkJwA==}
dependencies:
browserslist: 4.21.4
dev: true
- /core-js-pure/3.25.5:
- resolution: {integrity: sha512-oml3M22pHM+igfWHDfdLVq2ShWmjM2V4L+dQEBs0DWVIqEm9WHCwGAlZ6BmyBQGy5sFrJmcx+856D9lVKyGWYg==}
+ /core-js-pure/3.27.1:
+ resolution: {integrity: sha512-BS2NHgwwUppfeoqOXqi08mUqS5FiZpuRuJJpKsaME7kJz0xxuk0xkhDdfMIlP/zLa80krBqss1LtD7f889heAw==}
dev: true
/core-js/2.6.12:
@@ -9678,6 +9933,10 @@ packages:
/core-js/3.25.5:
resolution: {integrity: sha512-nbm6eZSjm+ZuBQxCUPQKQCoUEfFOXjUZ8dTTyikyKaWrTYmAVbykQfwsKE5dBK88u3QCkCrzsx/PPlKfhsvgpw==}
+ dev: false
+
+ /core-js/3.27.1:
+ resolution: {integrity: sha512-GutwJLBChfGCpwwhbYoqfv03LAfmiz7e7D/BNxzeMxwQf10GRSzqiOjx7AmtEk+heiD/JWmBuyBPgFtx0Sg1ww==}
/core-util-is/1.0.2:
resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
@@ -9696,8 +9955,8 @@ packages:
yaml: 1.10.2
dev: true
- /cosmiconfig/7.0.1:
- resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
+ /cosmiconfig/7.1.0:
+ resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
dependencies:
'@types/parse-json': 4.0.0
@@ -9879,7 +10138,7 @@ packages:
camelcase: 5.3.1
cssesc: 3.0.0
icss-utils: 4.1.1
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
normalize-path: 3.0.0
postcss: 7.0.39
postcss-modules-extract-imports: 2.0.0
@@ -9892,18 +10151,18 @@ packages:
webpack: 4.46.0
dev: true
- /css-loader/6.7.1_webpack@4.46.0:
- resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==}
+ /css-loader/6.7.3_webpack@4.46.0:
+ resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.18
- postcss: 8.4.18
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.18
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.18
- postcss-modules-scope: 3.0.0_postcss@8.4.18
- postcss-modules-values: 4.0.0_postcss@8.4.18
+ icss-utils: 5.1.0_postcss@8.4.21
+ postcss: 8.4.21
+ postcss-modules-extract-imports: 3.0.0_postcss@8.4.21
+ postcss-modules-local-by-default: 4.0.0_postcss@8.4.21
+ postcss-modules-scope: 3.0.0_postcss@8.4.21
+ postcss-modules-values: 4.0.0_postcss@8.4.21
postcss-value-parser: 4.2.0
semver: 7.3.8
webpack: 4.46.0
@@ -10174,21 +10433,53 @@ packages:
resolution: {integrity: sha512-F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw==}
dev: true
+ /decimal.js/10.4.3:
+ resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
+ dev: true
+
/decode-uri-component/0.2.0:
resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==}
engines: {node: '>=0.10'}
+ dev: false
+
+ /decode-uri-component/0.2.2:
+ resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
+ engines: {node: '>=0.10'}
+ dev: true
/dedent/0.7.0:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
dev: true
- /deep-eql/3.0.1:
- resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==}
- engines: {node: '>=0.12'}
+ /deep-eql/4.1.3:
+ resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==}
+ engines: {node: '>=6'}
dependencies:
type-detect: 4.0.8
dev: true
+ /deep-equal/2.2.0:
+ resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==}
+ dependencies:
+ call-bind: 1.0.2
+ es-get-iterator: 1.1.3
+ get-intrinsic: 1.1.3
+ is-arguments: 1.1.1
+ is-array-buffer: 3.0.1
+ is-date-object: 1.0.5
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.2
+ isarray: 2.0.5
+ object-is: 1.1.5
+ object-keys: 1.1.1
+ object.assign: 4.1.4
+ regexp.prototype.flags: 1.4.3
+ side-channel: 1.0.4
+ which-boxed-primitive: 1.0.2
+ which-collection: 1.0.1
+ which-typed-array: 1.1.9
+ dev: true
+
/deep-is/0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
@@ -10349,7 +10640,7 @@ packages:
resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==}
hasBin: true
dependencies:
- address: 1.2.1
+ address: 1.2.2
debug: 4.3.4
transitivePeerDependencies:
- supports-color
@@ -10362,11 +10653,6 @@ packages:
wrappy: 1.0.2
dev: true
- /diff-sequences/28.1.1:
- resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dev: true
-
/diff-sequences/29.3.1:
resolution: {integrity: sha512-hlM3QR272NXCi4pq+N4Kok4kOp6EsgOM3ZSpJI7Da3UAs+Ttsi8MRmB6trM/lhyzUxGfOgnpkHtgqm5Q/CTcfQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -10425,8 +10711,8 @@ packages:
resolution: {integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==}
dev: true
- /dom-accessibility-api/0.5.14:
- resolution: {integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==}
+ /dom-accessibility-api/0.5.15:
+ resolution: {integrity: sha512-8o+oVqLQZoruQPYy3uAAQtc6YbtSiRq5aPJBhJ82YTJRHvI6ofhYAkC81WmjFTnfUbqg6T3aCglIpU9p/5e7Cw==}
dev: true
/dom-converter/0.2.0:
@@ -10460,6 +10746,14 @@ packages:
domhandler: 4.3.1
entities: 2.2.0
+ /dom-serializer/2.0.0:
+ resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ entities: 4.4.0
+ dev: true
+
/dom-walk/0.1.2:
resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==}
dev: true
@@ -10495,6 +10789,13 @@ packages:
dependencies:
domelementtype: 2.3.0
+ /domhandler/5.0.3:
+ resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
+ engines: {node: '>= 4'}
+ dependencies:
+ domelementtype: 2.3.0
+ dev: true
+
/domutils/1.5.1:
resolution: {integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==}
dependencies:
@@ -10509,6 +10810,14 @@ packages:
domelementtype: 2.3.0
domhandler: 4.3.1
+ /domutils/3.0.1:
+ resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==}
+ dependencies:
+ dom-serializer: 2.0.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ dev: true
+
/dot-case/3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
@@ -10519,14 +10828,10 @@ packages:
resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==}
dev: true
- /dotenv-expand/8.0.3:
- resolution: {integrity: sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==}
- engines: {node: '>=12'}
- dev: true
-
/dotenv/16.0.3:
resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==}
engines: {node: '>=12'}
+ dev: false
/dotenv/8.6.0:
resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==}
@@ -10598,12 +10903,13 @@ packages:
hasBin: true
dependencies:
jake: 10.8.5
+ dev: false
- /electron-to-chromium/1.4.279:
- resolution: {integrity: sha512-xs7vEuSZ84+JsHSTFqqG0TE3i8EAivHomRQZhhcRvsmnjsh5C2KdhwNKf4ZRYtzq75wojpFyqb62m32Oam57wA==}
+ /electron-to-chromium/1.4.284:
+ resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==}
dev: true
- /element-ui/2.15.12_vue@2.7.13:
+ /element-ui/2.15.12_vue@2.7.14:
resolution: {integrity: sha512-Y5FMT2BPOindU2GkDEQ5ZKUVxDawKONRNMh2eL3uBx1FOtvUJ+L6IxXLVsNxq4WnaX/UnVNgWXebl7DobygZMg==}
peerDependencies:
vue: ^2.5.17
@@ -10614,7 +10920,7 @@ packages:
normalize-wheel: 1.0.1
resize-observer-polyfill: 1.5.1
throttle-debounce: 1.1.0
- vue: 2.7.13
+ vue: 2.7.14
dev: false
/elliptic/6.5.4:
@@ -10699,13 +11005,14 @@ packages:
resolution: {integrity: sha512-LbLqfXgJMmy81t+7c14mnulFHJ170cM6E+0vMXR9k/ZiZwgX8i5pNgjTCX3SO4VeUsFLV+8InixoretwU+MjBQ==}
dev: true
- /entities/2.1.0:
- resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==}
- dev: false
-
/entities/2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
+ /entities/3.0.1:
+ resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==}
+ engines: {node: '>=0.12'}
+ dev: false
+
/entities/4.4.0:
resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==}
engines: {node: '>=0.12'}
@@ -10763,6 +11070,44 @@ packages:
string.prototype.trimstart: 1.0.5
unbox-primitive: 1.0.2
+ /es-abstract/1.21.1:
+ resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.2
+ es-set-tostringtag: 2.0.1
+ es-to-primitive: 1.2.1
+ function-bind: 1.1.1
+ function.prototype.name: 1.1.5
+ get-intrinsic: 1.1.3
+ get-symbol-description: 1.0.0
+ globalthis: 1.0.3
+ gopd: 1.0.1
+ has: 1.0.3
+ has-property-descriptors: 1.0.0
+ has-proto: 1.0.1
+ has-symbols: 1.0.3
+ internal-slot: 1.0.4
+ is-array-buffer: 3.0.1
+ is-callable: 1.2.7
+ is-negative-zero: 2.0.2
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.2
+ is-string: 1.0.7
+ is-typed-array: 1.1.10
+ is-weakref: 1.0.2
+ object-inspect: 1.12.3
+ object-keys: 1.1.1
+ object.assign: 4.1.4
+ regexp.prototype.flags: 1.4.3
+ safe-regex-test: 1.0.0
+ string.prototype.trimend: 1.0.6
+ string.prototype.trimstart: 1.0.6
+ typed-array-length: 1.0.4
+ unbox-primitive: 1.0.2
+ which-typed-array: 1.1.9
+
/es-aggregate-error/1.0.8:
resolution: {integrity: sha512-AKUb5MKLWMozPlFRHOKqWD7yta5uaEhH21qwtnf6FlKjNjTJOoqFi0/G14+FfSkIQhhu6X68Af4xgRC6y8qG4A==}
engines: {node: '>= 0.4'}
@@ -10779,8 +11124,8 @@ packages:
/es-array-method-boxes-properly/1.0.0:
resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
- /es-get-iterator/1.1.2:
- resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==}
+ /es-get-iterator/1.1.3:
+ resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.1.3
@@ -10790,12 +11135,21 @@ packages:
is-set: 2.0.2
is-string: 1.0.7
isarray: 2.0.5
+ stop-iteration-iterator: 1.0.0
dev: true
/es-module-lexer/0.9.3:
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
dev: true
+ /es-set-tostringtag/2.0.1:
+ resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.1.3
+ has: 1.0.3
+ has-tostringtag: 1.0.0
+
/es-shim-unscopables/1.0.0:
resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
dependencies:
@@ -10837,8 +11191,12 @@ packages:
es6-symbol: 3.1.3
dev: true
- /es6-shim/0.35.6:
- resolution: {integrity: sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==}
+ /es6-object-assign/1.1.0:
+ resolution: {integrity: sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==}
+ dev: true
+
+ /es6-shim/0.35.7:
+ resolution: {integrity: sha512-baZkUfTDSx7X69+NA8imbvGrsPfqH0MX7ADdIDjqwsI8lkTgLIiD2QWrUCSGsUQ0YMnSCA/4pNgSyXdnLHWf3A==}
dev: true
/es6-symbol/3.1.3:
@@ -10857,192 +11215,33 @@ packages:
es6-symbol: 3.1.3
dev: true
- /esbuild-android-64/0.14.54:
- resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- dev: true
- optional: true
-
- /esbuild-android-arm64/0.14.54:
- resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
- dev: true
- optional: true
-
- /esbuild-darwin-64/0.14.54:
- resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- dev: true
- optional: true
-
- /esbuild-darwin-arm64/0.14.54:
- resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- dev: true
- optional: true
-
- /esbuild-freebsd-64/0.14.54:
- resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- dev: true
- optional: true
-
- /esbuild-freebsd-arm64/0.14.54:
- resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- dev: true
- optional: true
-
- /esbuild-linux-32/0.14.54:
- resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- dev: true
- optional: true
-
- /esbuild-linux-64/0.14.54:
- resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- dev: true
- optional: true
-
- /esbuild-linux-arm/0.14.54:
- resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- dev: true
- optional: true
-
- /esbuild-linux-arm64/0.14.54:
- resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- dev: true
- optional: true
-
- /esbuild-linux-mips64le/0.14.54:
- resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- dev: true
- optional: true
-
- /esbuild-linux-ppc64le/0.14.54:
- resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- dev: true
- optional: true
-
- /esbuild-linux-riscv64/0.14.54:
- resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- dev: true
- optional: true
-
- /esbuild-linux-s390x/0.14.54:
- resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- dev: true
- optional: true
-
- /esbuild-netbsd-64/0.14.54:
- resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- dev: true
- optional: true
-
- /esbuild-openbsd-64/0.14.54:
- resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- dev: true
- optional: true
-
- /esbuild-sunos-64/0.14.54:
- resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- dev: true
- optional: true
-
- /esbuild-windows-32/0.14.54:
- resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- dev: true
- optional: true
-
- /esbuild-windows-64/0.14.54:
- resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- dev: true
- optional: true
-
- /esbuild-windows-arm64/0.14.54:
- resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- dev: true
- optional: true
-
- /esbuild/0.14.54:
- resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
+ /esbuild/0.16.17:
+ resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==}
engines: {node: '>=12'}
hasBin: true
optionalDependencies:
- '@esbuild/linux-loong64': 0.14.54
- esbuild-android-64: 0.14.54
- esbuild-android-arm64: 0.14.54
- esbuild-darwin-64: 0.14.54
- esbuild-darwin-arm64: 0.14.54
- esbuild-freebsd-64: 0.14.54
- esbuild-freebsd-arm64: 0.14.54
- esbuild-linux-32: 0.14.54
- esbuild-linux-64: 0.14.54
- esbuild-linux-arm: 0.14.54
- esbuild-linux-arm64: 0.14.54
- esbuild-linux-mips64le: 0.14.54
- esbuild-linux-ppc64le: 0.14.54
- esbuild-linux-riscv64: 0.14.54
- esbuild-linux-s390x: 0.14.54
- esbuild-netbsd-64: 0.14.54
- esbuild-openbsd-64: 0.14.54
- esbuild-sunos-64: 0.14.54
- esbuild-windows-32: 0.14.54
- esbuild-windows-64: 0.14.54
- esbuild-windows-arm64: 0.14.54
+ '@esbuild/android-arm': 0.16.17
+ '@esbuild/android-arm64': 0.16.17
+ '@esbuild/android-x64': 0.16.17
+ '@esbuild/darwin-arm64': 0.16.17
+ '@esbuild/darwin-x64': 0.16.17
+ '@esbuild/freebsd-arm64': 0.16.17
+ '@esbuild/freebsd-x64': 0.16.17
+ '@esbuild/linux-arm': 0.16.17
+ '@esbuild/linux-arm64': 0.16.17
+ '@esbuild/linux-ia32': 0.16.17
+ '@esbuild/linux-loong64': 0.16.17
+ '@esbuild/linux-mips64el': 0.16.17
+ '@esbuild/linux-ppc64': 0.16.17
+ '@esbuild/linux-riscv64': 0.16.17
+ '@esbuild/linux-s390x': 0.16.17
+ '@esbuild/linux-x64': 0.16.17
+ '@esbuild/netbsd-x64': 0.16.17
+ '@esbuild/openbsd-x64': 0.16.17
+ '@esbuild/sunos-x64': 0.16.17
+ '@esbuild/win32-arm64': 0.16.17
+ '@esbuild/win32-ia32': 0.16.17
+ '@esbuild/win32-x64': 0.16.17
dev: true
/escalade/3.1.1:
@@ -11114,8 +11313,8 @@ packages:
eslint: ^7.32.0 || ^8.2.0
eslint-plugin-import: ^2.25.3
dependencies:
- '@typescript-eslint/eslint-plugin': 5.45.0_psz44bhp76u27vmulntnlx26h4
- '@typescript-eslint/parser': 5.45.0_zksrc6ykdxhogxjbhb5axiabwi
+ '@typescript-eslint/eslint-plugin': 5.45.0_wke4plxjew2ogjxrdwvzd2srfq
+ '@typescript-eslint/parser': 5.45.0_wy4udjehnvkneqnogzx5kughki
eslint: 8.28.0
eslint-config-airbnb-base: 15.0.0_ktrec6dplf4now6nlbc6d67jee
eslint-plugin-import: 2.26.0_xmouedd5rhgbah4737x2hltudq
@@ -11184,7 +11383,7 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.45.0_zksrc6ykdxhogxjbhb5axiabwi
+ '@typescript-eslint/parser': 5.45.0_wy4udjehnvkneqnogzx5kughki
debug: 3.2.7
eslint: 8.28.0
eslint-import-resolver-node: 0.3.6
@@ -11212,7 +11411,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.45.0_zksrc6ykdxhogxjbhb5axiabwi
+ '@typescript-eslint/parser': 5.45.0_wy4udjehnvkneqnogzx5kughki
array-includes: 3.1.5
array.prototype.flat: 1.3.0
debug: 2.6.9
@@ -11237,10 +11436,10 @@ packages:
resolution: {integrity: sha512-qe6sVFDP1Vj5eXlqZxYZpIjwYvhuqXlI0P8OfPyhiPOhMkFtr0TpFphD8/6WCzkm7LJCvG1eJEzURCtMIsFTAg==}
dev: true
- /eslint-plugin-n8n-nodes-base/1.12.0_zksrc6ykdxhogxjbhb5axiabwi:
+ /eslint-plugin-n8n-nodes-base/1.12.0_wy4udjehnvkneqnogzx5kughki:
resolution: {integrity: sha512-AotXR6IsxLNnxp4OxhD33xcmRFwVq7ZImBd0mTgpirV3VX8pCJDdiDlI2zCAICcICZxtOdbVtHOMhhnMjTh71A==}
dependencies:
- '@typescript-eslint/utils': 5.45.0_zksrc6ykdxhogxjbhb5axiabwi
+ '@typescript-eslint/utils': 5.45.0_wy4udjehnvkneqnogzx5kughki
camel-case: 4.1.2
indefinite: 2.4.1
pascal-case: 3.1.2
@@ -11254,7 +11453,7 @@ packages:
- typescript
dev: true
- /eslint-plugin-prettier/4.2.1_pgxuib4rd7wiymfktharf5ydt4:
+ /eslint-plugin-prettier/4.2.1_nrsoca4pvgxhpzs6enniz7suou:
resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -11267,7 +11466,7 @@ packages:
dependencies:
eslint: 8.28.0
eslint-config-prettier: 8.5.0_eslint@8.28.0
- prettier: 2.7.1
+ prettier: 2.8.3
prettier-linter-helpers: 1.0.0
dev: true
@@ -11595,17 +11794,6 @@ packages:
dependencies:
homedir-polyfill: 1.0.3
- /expect/28.1.3:
- resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@jest/expect-utils': 28.1.3
- jest-get-type: 28.0.2
- jest-matcher-utils: 28.1.3
- jest-message-util: 28.1.3
- jest-util: 28.1.3
- dev: true
-
/expect/29.3.1:
resolution: {integrity: sha512-gGb1yTgU30Q0O/tQq+z30KBWv24ApkMgFUpvKBkyLUBL68Wv8dHdJxTBZFl/iT8K/bqDHvUYRH6IIN3rToopPA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -11803,8 +11991,8 @@ packages:
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
dev: true
- /fastq/1.13.0:
- resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
+ /fastq/1.15.0:
+ resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
reusify: 1.0.4
@@ -11855,7 +12043,7 @@ packages:
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
dependencies:
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
schema-utils: 3.1.1
webpack: 4.46.0
dev: true
@@ -11894,6 +12082,7 @@ packages:
resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
dependencies:
minimatch: 5.1.0
+ dev: false
/fill-range/4.0.0:
resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
@@ -12040,8 +12229,8 @@ packages:
/flatted/3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
- /flow-parser/0.189.0:
- resolution: {integrity: sha512-dS8FC7Ek6UyhDkjoTBSvZNLvNI6ukDzUtuugaSlANQfVwdQwiIwAVVdqnbczHr5uuNLQc/mWCR0Ag6nPUIBH9g==}
+ /flow-parser/0.197.0:
+ resolution: {integrity: sha512-yhwkJPxH1JBg0aJunk/jVRy5p3UhVZBGkzL1hq/GK+GaBh6bKr2YKkv6gDuiufaw+i3pKWQgOLtD++1cvrgXLA==}
engines: {node: '>=0.4.0'}
dev: true
@@ -12105,7 +12294,6 @@ packages:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
dependencies:
is-callable: 1.2.7
- dev: false
/for-in/1.0.2:
resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
@@ -12130,7 +12318,7 @@ packages:
/forever-agent/0.6.1:
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
- /fork-ts-checker-webpack-plugin/6.5.2_ykheojhgetflommn34hnxhuop4:
+ /fork-ts-checker-webpack-plugin/6.5.2_ujcznmgb2owsphq4mksjmidcsi:
resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -12152,13 +12340,13 @@ packages:
deepmerge: 4.2.2
fs-extra: 9.1.0
glob: 7.2.3
- memfs: 3.4.7
+ memfs: 3.4.13
minimatch: 3.1.2
schema-utils: 2.7.0
semver: 7.3.8
tapable: 1.1.3
- typescript: 4.8.4
- vue-template-compiler: 2.7.13
+ typescript: 4.9.4
+ vue-template-compiler: 2.7.14
webpack: 4.46.0
dev: true
@@ -12290,7 +12478,7 @@ packages:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
dependencies:
- minipass: 3.3.4
+ minipass: 3.3.6
/fs-mkdirp-stream/1.0.0:
resolution: {integrity: sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==}
@@ -12350,7 +12538,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.4
+ es-abstract: 1.21.1
functions-have-names: 1.2.3
/functions-have-names/1.2.3:
@@ -12508,6 +12696,10 @@ packages:
resolution: {integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==}
dev: true
+ /github-slugger/1.5.0:
+ resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==}
+ dev: true
+
/glob-parent/3.1.0:
resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==}
dependencies:
@@ -12581,14 +12773,14 @@ packages:
once: 1.4.0
path-is-absolute: 1.0.1
- /glob/8.0.3:
- resolution: {integrity: sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==}
+ /glob/8.1.0:
+ resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
engines: {node: '>=12'}
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 5.1.0
+ minimatch: 5.1.5
once: 1.4.0
dev: true
@@ -12655,7 +12847,7 @@ packages:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.2.12
- ignore: 5.2.0
+ ignore: 5.2.4
merge2: 1.4.1
slash: 3.0.0
@@ -12697,6 +12889,11 @@ packages:
resolution: {integrity: sha512-UWXQ7BpSCW8erDespU2I4cri22xsKgwOCyhsJal0OJhi2tFpwJpsYNJt4vCiFPL1p2HzCGiS713LKpNR25n9Kg==}
dev: false
+ /gopd/1.0.1:
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ dependencies:
+ get-intrinsic: 1.1.3
+
/graceful-fs/4.2.10:
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
@@ -12765,7 +12962,7 @@ packages:
source-map: 0.6.1
wordwrap: 1.0.0
optionalDependencies:
- uglify-js: 3.17.3
+ uglify-js: 3.17.4
/har-schema/2.0.0:
resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==}
@@ -12805,6 +13002,10 @@ packages:
dependencies:
get-intrinsic: 1.1.3
+ /has-proto/1.0.1:
+ resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
+ engines: {node: '>= 0.4'}
+
/has-symbols/1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
@@ -13024,20 +13225,6 @@ packages:
terser: 4.8.1
dev: true
- /html-minifier-terser/6.1.0:
- resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
- engines: {node: '>=12'}
- hasBin: true
- dependencies:
- camel-case: 4.1.2
- clean-css: 5.3.1
- commander: 8.3.0
- he: 1.2.0
- param-case: 3.0.4
- relateurl: 0.2.7
- terser: 5.15.1
- dev: true
-
/html-to-text/8.2.0:
resolution: {integrity: sha512-CLXExYn1b++Lgri+ZyVvbUEFwzkLZppjjZOwB7X1qv2jIi8MrMEvxWX5KQ7zATAzTvcqgmtO00M2kCRMtEdOKQ==}
engines: {node: '>=10.23.2'}
@@ -13063,9 +13250,9 @@ packages:
dependencies:
'@types/html-minifier-terser': 5.1.2
'@types/tapable': 1.0.8
- '@types/webpack': 4.41.32
+ '@types/webpack': 4.41.33
html-minifier-terser: 5.1.1
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
lodash: 4.17.21
pretty-error: 2.1.2
tapable: 1.1.3
@@ -13091,6 +13278,15 @@ packages:
domutils: 2.8.0
entities: 2.2.0
+ /htmlparser2/8.0.1:
+ resolution: {integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ domutils: 3.0.1
+ entities: 4.4.0
+ dev: true
+
/http-cache-semantics/4.1.0:
resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==}
dev: false
@@ -13222,13 +13418,13 @@ packages:
postcss: 7.0.39
dev: true
- /icss-utils/5.1.0_postcss@8.4.18:
+ /icss-utils/5.1.0_postcss@8.4.21:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.21
dev: true
/ieee754/1.1.13:
@@ -13249,6 +13445,11 @@ packages:
/ignore/5.2.0:
resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==}
engines: {node: '>= 4'}
+ dev: true
+
+ /ignore/5.2.4:
+ resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
+ engines: {node: '>= 4'}
/imap-simple/4.3.0:
resolution: {integrity: sha512-SW3LtfEJFjlJKS/h2CmpX2IKpya2RXobR3ENJJW4iMQ3QYPxWxf5oeaz1K3P4eGUwfGEndkqt7uVDKnEyG9zeQ==}
@@ -13277,6 +13478,10 @@ packages:
resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==}
dev: true
+ /immutable/4.2.2:
+ resolution: {integrity: sha512-fTMKDwtbvO5tldky9QZ2fMX7slR0mYpY5nbnFWYp0fOzDhHqhgIw9KoYgxLWsoNTS9ZHGauHj18DTyEw6BK3Og==}
+ dev: true
+
/import-fresh/3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
@@ -13375,6 +13580,14 @@ packages:
has: 1.0.3
side-channel: 1.0.4
+ /internal-slot/1.0.4:
+ resolution: {integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ get-intrinsic: 1.1.3
+ has: 1.0.3
+ side-channel: 1.0.4
+
/interpret/1.4.0:
resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
engines: {node: '>= 0.10'}
@@ -13485,6 +13698,13 @@ packages:
call-bind: 1.0.2
has-tostringtag: 1.0.0
+ /is-array-buffer/3.0.1:
+ resolution: {integrity: sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.1.3
+ is-typed-array: 1.1.10
+
/is-arrayish/0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
dev: true
@@ -13661,7 +13881,6 @@ packages:
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
- dev: false
/is-glob/3.1.0:
resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==}
@@ -13702,7 +13921,6 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- dev: false
/is-negated-glob/1.0.0:
resolution: {integrity: sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==}
@@ -13828,6 +14046,16 @@ packages:
dependencies:
has-symbols: 1.0.3
+ /is-typed-array/1.1.10:
+ resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.0
+
/is-typed-array/1.1.9:
resolution: {integrity: sha512-kfrlnTTn8pZkfpJMUgYD7YZ3qzeJgWUn8XfVYBARc4wnmNOmLbmuuaAs3q5fvB0UJOn6yHAKaGTPM7d6ezoD/A==}
engines: {node: '>= 0.4'}
@@ -13862,11 +14090,22 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
+ /is-weakmap/2.0.1:
+ resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
+ dev: true
+
/is-weakref/1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
dependencies:
call-bind: 1.0.2
+ /is-weakset/2.0.2:
+ resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.1.3
+ dev: true
+
/is-whitespace-character/1.0.4:
resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==}
dev: true
@@ -13942,7 +14181,7 @@ packages:
/isomorphic-unfetch/3.1.0:
resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==}
dependencies:
- node-fetch: 2.6.7
+ node-fetch: 2.6.8
unfetch: 4.2.0
transitivePeerDependencies:
- encoding
@@ -13960,8 +14199,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.19.3
- '@babel/parser': 7.19.4
+ '@babel/core': 7.20.12
+ '@babel/parser': 7.20.7
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.0
@@ -14004,7 +14243,7 @@ packages:
/iterate-value/1.0.2:
resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==}
dependencies:
- es-get-iterator: 1.1.2
+ es-get-iterator: 1.1.3
iterate-iterator: 1.0.2
dev: true
@@ -14017,6 +14256,7 @@ packages:
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
+ dev: false
/jest-changed-files/29.2.0:
resolution: {integrity: sha512-qPVmLLyBmvF5HJrY7krDisx6Voi8DmlV3GZYX0aFNbaQsZeoz1hfxcCMbqDGuQCxU1dJy9eYc2xscE8QrCCYaA==}
@@ -14120,16 +14360,6 @@ packages:
- supports-color
dev: true
- /jest-diff/28.1.3:
- resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- chalk: 4.1.2
- diff-sequences: 28.1.1
- jest-get-type: 28.0.2
- pretty-format: 28.1.3
- dev: true
-
/jest-diff/29.3.1:
resolution: {integrity: sha512-vU8vyiO7568tmin2lA3r2DP8oRvzhvRcD4DjpXc6uGveQodyk7CKLhQlCSiwgx3g0pFaE88/KLZ0yaTWMc4Uiw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -14193,11 +14423,6 @@ packages:
jest-util: 29.3.1
dev: true
- /jest-get-type/28.0.2:
- resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dev: true
-
/jest-get-type/29.2.0:
resolution: {integrity: sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -14208,9 +14433,9 @@ packages:
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/types': 26.6.2
- '@types/graceful-fs': 4.1.5
- '@types/node': 16.11.65
- anymatch: 3.1.2
+ '@types/graceful-fs': 4.1.6
+ '@types/node': 18.11.18
+ anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.10
jest-regex-util: 26.0.0
@@ -14253,16 +14478,6 @@ packages:
pretty-format: 29.3.1
dev: true
- /jest-matcher-utils/28.1.3:
- resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- chalk: 4.1.2
- jest-diff: 28.1.3
- jest-get-type: 28.0.2
- pretty-format: 28.1.3
- dev: true
-
/jest-matcher-utils/29.3.1:
resolution: {integrity: sha512-fkRMZUAScup3txIKfMe3AIZZmPEjWEdsPJFK3AIy5qRohWqQFg1qrmKfYXR9qEkNc7OdAu2N4KPHibEmy4HPeQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -14273,21 +14488,6 @@ packages:
pretty-format: 29.3.1
dev: true
- /jest-message-util/28.1.3:
- resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@babel/code-frame': 7.18.6
- '@jest/types': 28.1.3
- '@types/stack-utils': 2.0.1
- chalk: 4.1.2
- graceful-fs: 4.2.10
- micromatch: 4.0.5
- pretty-format: 28.1.3
- slash: 3.0.0
- stack-utils: 2.0.5
- dev: true
-
/jest-message-util/29.3.1:
resolution: {integrity: sha512-lMJTbgNcDm5z+6KDxWtqOFWlGQxD6XaYwBqHR8kmpkP+WWWG90I35kdtQHY67Ay5CSuydkTBbJG+tH9JShFCyA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -14300,7 +14500,7 @@ packages:
micromatch: 4.0.5
pretty-format: 29.3.1
slash: 3.0.0
- stack-utils: 2.0.5
+ stack-utils: 2.0.6
dev: true
/jest-mock/29.3.1:
@@ -14422,7 +14622,7 @@ packages:
resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@types/node': 16.11.65
+ '@types/node': 18.11.18
graceful-fs: 4.2.10
dev: true
@@ -14435,7 +14635,7 @@ packages:
'@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.3
'@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.3
'@babel/traverse': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/types': 7.20.7
'@jest/expect-utils': 29.3.1
'@jest/transform': 29.3.1
'@jest/types': 29.3.1
@@ -14463,33 +14663,21 @@ packages:
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/types': 26.6.2
- '@types/node': 16.11.65
+ '@types/node': 18.11.18
chalk: 4.1.2
graceful-fs: 4.2.10
is-ci: 2.0.0
micromatch: 4.0.5
dev: true
- /jest-util/28.1.3:
- resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@jest/types': 28.1.3
- '@types/node': 16.11.65
- chalk: 4.1.2
- ci-info: 3.5.0
- graceful-fs: 4.2.10
- picomatch: 2.3.1
- dev: true
-
/jest-util/29.3.1:
resolution: {integrity: sha512-7YOVZaiX7RJLv76ZfHt4nbNEzzTRiMW/IiOG7ZOKmTXmoGBxUDefgMAxQubu6WPVqP5zSzAdZG0FfLcC7HOIFQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.3.1
- '@types/node': 16.11.65
+ '@types/node': 18.11.18
chalk: 4.1.2
- ci-info: 3.5.0
+ ci-info: 3.7.1
graceful-fs: 4.2.10
picomatch: 2.3.1
dev: true
@@ -14524,7 +14712,7 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 16.11.65
+ '@types/node': 18.11.18
merge-stream: 2.0.0
supports-color: 7.2.0
dev: true
@@ -14533,7 +14721,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 16.11.65
+ '@types/node': 18.11.18
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
@@ -14595,14 +14783,14 @@ packages:
resolution: {integrity: sha512-NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ==}
dev: false
- /js-beautify/1.14.6:
- resolution: {integrity: sha512-GfofQY5zDp+cuHc+gsEXKPpNw2KbPddreEo35O6jT6i0RVK6LhsoYBhq5TvK4/n74wnA0QbK8gGd+jUZwTMKJw==}
+ /js-beautify/1.14.7:
+ resolution: {integrity: sha512-5SOX1KXPFKx+5f6ZrPsIPEY7NwKeQz47n3jm2i+XeHx9MoRsfQenlOP13FQhWvg8JRS0+XLO6XYUQ2GX+q+T9A==}
engines: {node: '>=10'}
hasBin: true
dependencies:
config-chain: 1.1.13
editorconfig: 0.15.3
- glob: 8.0.3
+ glob: 8.1.0
nopt: 6.0.0
dev: true
@@ -14651,25 +14839,25 @@ packages:
/jsbn/0.1.1:
resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
- /jscodeshift/0.13.1_@babel+preset-env@7.19.4:
+ /jscodeshift/0.13.1_@babel+preset-env@7.20.2:
resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==}
hasBin: true
peerDependencies:
'@babel/preset-env': ^7.1.6
dependencies:
- '@babel/core': 7.19.3
- '@babel/parser': 7.19.4
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.3
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3
- '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.19.3
- '@babel/preset-env': 7.19.4_@babel+core@7.19.3
- '@babel/preset-flow': 7.18.6_@babel+core@7.19.3
- '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3
- '@babel/register': 7.18.9_@babel+core@7.19.3
- babel-core: 7.0.0-bridge.0_@babel+core@7.19.3
+ '@babel/core': 7.20.12
+ '@babel/parser': 7.20.7
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12
+ '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12
+ '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12
+ '@babel/preset-env': 7.20.2_@babel+core@7.20.12
+ '@babel/preset-flow': 7.18.6_@babel+core@7.20.12
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12
+ '@babel/register': 7.18.9_@babel+core@7.20.12
+ babel-core: 7.0.0-bridge.0_@babel+core@7.20.12
chalk: 4.1.2
- flow-parser: 0.189.0
+ flow-parser: 0.197.0
graceful-fs: 4.2.10
micromatch: 3.1.10
neo-async: 2.6.2
@@ -14681,48 +14869,6 @@ packages:
- supports-color
dev: true
- /jsdom/19.0.0:
- resolution: {integrity: sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==}
- engines: {node: '>=12'}
- peerDependencies:
- canvas: ^2.5.0
- peerDependenciesMeta:
- canvas:
- optional: true
- dependencies:
- abab: 2.0.6
- acorn: 8.8.0
- acorn-globals: 6.0.0
- cssom: 0.5.0
- cssstyle: 2.3.0
- data-urls: 3.0.2
- decimal.js: 10.4.1
- domexception: 4.0.0
- escodegen: 2.0.0
- form-data: 4.0.0
- html-encoding-sniffer: 3.0.0
- http-proxy-agent: 5.0.0
- https-proxy-agent: 5.0.1
- is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.2
- parse5: 6.0.1
- saxes: 5.0.1
- symbol-tree: 3.2.4
- tough-cookie: 4.1.2
- w3c-hr-time: 1.0.2
- w3c-xmlserializer: 3.0.0
- webidl-conversions: 7.0.0
- whatwg-encoding: 2.0.0
- whatwg-mimetype: 3.0.0
- whatwg-url: 10.0.0
- ws: 8.9.0
- xml-name-validator: 4.0.0
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- dev: true
-
/jsdom/20.0.2:
resolution: {integrity: sha512-AHWa+QO/cgRg4N+DsmHg1Y7xnz+8KU3EflM0LVDTdmrYOc1WWTSkOjtpUveQH+1Bqd5rtcVnb/DuxV/UjDO4rA==}
engines: {node: '>=14'}
@@ -14764,6 +14910,47 @@ packages:
- utf-8-validate
dev: true
+ /jsdom/21.0.0:
+ resolution: {integrity: sha512-AIw+3ZakSUtDYvhwPwWHiZsUi3zHugpMEKlNPaurviseYoBqo0zBd3zqoUi3LPCNtPFlEP8FiW9MqCZdjb2IYA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ canvas: ^2.5.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+ dependencies:
+ abab: 2.0.6
+ acorn: 8.8.1
+ acorn-globals: 7.0.1
+ cssom: 0.5.0
+ cssstyle: 2.3.0
+ data-urls: 3.0.2
+ decimal.js: 10.4.3
+ domexception: 4.0.0
+ escodegen: 2.0.0
+ form-data: 4.0.0
+ html-encoding-sniffer: 3.0.0
+ http-proxy-agent: 5.0.0
+ https-proxy-agent: 5.0.1
+ is-potential-custom-element-name: 1.0.1
+ nwsapi: 2.2.2
+ parse5: 7.1.1
+ saxes: 6.0.0
+ symbol-tree: 3.2.4
+ tough-cookie: 4.1.2
+ w3c-xmlserializer: 4.0.0
+ webidl-conversions: 7.0.0
+ whatwg-encoding: 2.0.0
+ whatwg-mimetype: 3.0.0
+ whatwg-url: 11.0.0
+ ws: 8.12.0
+ xml-name-validator: 4.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+ dev: true
+
/jsesc/0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
@@ -14837,12 +15024,29 @@ packages:
minimist: 1.2.7
dev: true
+ /json5/1.0.2:
+ resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
+ hasBin: true
+ dependencies:
+ minimist: 1.2.7
+ dev: true
+
/json5/2.2.1:
resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
engines: {node: '>=6'}
hasBin: true
dev: true
+ /json5/2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
+ hasBin: true
+ dev: true
+
+ /jsonc-parser/3.2.0:
+ resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
+ dev: true
+
/jsonfile/4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
optionalDependencies:
@@ -15003,6 +15207,11 @@ packages:
engines: {node: '>= 8'}
dev: true
+ /klona/2.0.6:
+ resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
+ engines: {node: '>= 8'}
+ dev: true
+
/kuler/2.0.0:
resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==}
dev: false
@@ -15024,9 +15233,9 @@ packages:
resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==}
engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'}
dependencies:
- '@babel/runtime': 7.19.4
+ '@babel/runtime': 7.20.7
app-root-dir: 1.0.2
- core-js: 3.25.5
+ core-js: 3.27.1
dotenv: 8.6.0
dotenv-expand: 5.1.0
dev: true
@@ -15143,14 +15352,14 @@ packages:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
dev: true
- /linkify-it/3.0.3:
- resolution: {integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==}
+ /linkify-it/4.0.0:
+ resolution: {integrity: sha512-QAxkXyzT/TXgwGyY4rTgC95Ex6/lZ5/lYTV9nug6eJt93BCBQGOE47D/g2+/m5J1MrVLr2ot97OXkBZ9bBpR4A==}
dependencies:
uc.micro: 1.0.6
dev: false
- /linkify-it/4.0.0:
- resolution: {integrity: sha512-QAxkXyzT/TXgwGyY4rTgC95Ex6/lZ5/lYTV9nug6eJt93BCBQGOE47D/g2+/m5J1MrVLr2ot97OXkBZ9bBpR4A==}
+ /linkify-it/4.0.1:
+ resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==}
dependencies:
uc.micro: 1.0.6
dev: false
@@ -15178,22 +15387,22 @@ packages:
/lit-element/3.2.2:
resolution: {integrity: sha512-6ZgxBR9KNroqKb6+htkyBwD90XGRiqKDHVrW/Eh0EZ+l+iC+u+v+w3/BA5NGi4nizAVHGYvQBHUDuSmLjPp7NQ==}
dependencies:
- '@lit/reactive-element': 1.4.1
- lit-html: 2.4.0
+ '@lit/reactive-element': 1.6.1
+ lit-html: 2.6.1
dev: true
- /lit-html/2.4.0:
- resolution: {integrity: sha512-G6qXu4JNUpY6aaF2VMfaszhO9hlWw0hOTRFDmuMheg/nDYGB+2RztUSOyrzALAbr8Nh0Y7qjhYkReh3rPnplVg==}
+ /lit-html/2.6.1:
+ resolution: {integrity: sha512-Z3iw+E+3KKFn9t2YKNjsXNEu/LRLI98mtH/C6lnFg7kvaqPIzPn124Yd4eT/43lyqrejpc5Wb6BHq3fdv4S8Rw==}
dependencies:
'@types/trusted-types': 2.0.2
dev: true
- /lit/2.4.0:
- resolution: {integrity: sha512-fdgzxEtLrZFQU/BqTtxFQCLwlZd9bdat+ltzSFjvWkZrs7eBmeX0L5MHUMb3kYIkuS8Xlfnii/iI5klirF8/Xg==}
+ /lit/2.6.1:
+ resolution: {integrity: sha512-DT87LD64f8acR7uVp7kZfhLRrHkfC/N4BVzAtnw9Yg8087mbBJ//qedwdwX0kzDbxgPccWRW6mFwGbRQIxy0pw==}
dependencies:
- '@lit/reactive-element': 1.4.1
+ '@lit/reactive-element': 1.6.1
lit-element: 3.2.2
- lit-html: 2.4.0
+ lit-html: 2.6.1
dev: true
/load-json-file/1.1.0:
@@ -15227,13 +15436,13 @@ packages:
engines: {node: '>=6.11.5'}
dev: true
- /loader-utils/1.4.0:
- resolution: {integrity: sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==}
+ /loader-utils/1.4.2:
+ resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
engines: {node: '>=4.0.0'}
dependencies:
big.js: 5.2.2
emojis-list: 3.0.0
- json5: 1.0.1
+ json5: 1.0.2
dev: true
/loader-utils/2.0.2:
@@ -15245,6 +15454,15 @@ packages:
json5: 2.2.1
dev: true
+ /loader-utils/2.0.4:
+ resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
+ engines: {node: '>=8.9.0'}
+ dependencies:
+ big.js: 5.2.2
+ emojis-list: 3.0.0
+ json5: 2.2.3
+ dev: true
+
/local-pkg/0.4.2:
resolution: {integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==}
engines: {node: '>=14'}
@@ -15449,8 +15667,8 @@ packages:
dev: true
optional: true
- /loupe/2.3.4:
- resolution: {integrity: sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==}
+ /loupe/2.3.6:
+ resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==}
dependencies:
get-func-name: 2.0.0
dev: true
@@ -15516,11 +15734,11 @@ packages:
sourcemap-codec: 1.4.8
dev: true
- /magic-string/0.26.7:
- resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==}
+ /magic-string/0.27.0:
+ resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==}
engines: {node: '>=12'}
dependencies:
- sourcemap-codec: 1.4.8
+ '@jridgewell/sourcemap-codec': 1.4.14
dev: true
/mailparser/3.5.0:
@@ -15653,13 +15871,13 @@ packages:
resolution: {integrity: sha512-TxFAc76Jnhb2OUu+n3yz9RMu4CwGfaT788br6HhEDlvWfdeJcLUsxk1Hgw2yJio0OXsxv7pyIPmvECY7bMbluA==}
dev: false
- /markdown-it/12.3.2:
- resolution: {integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==}
+ /markdown-it/13.0.1:
+ resolution: {integrity: sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==}
hasBin: true
dependencies:
argparse: 2.0.1
- entities: 2.1.0
- linkify-it: 3.0.3
+ entities: 3.0.1
+ linkify-it: 4.0.1
mdurl: 1.0.1
uc.micro: 1.0.6
dev: false
@@ -15737,8 +15955,8 @@ packages:
engines: {node: '>= 0.8'}
dev: false
- /memfs/3.4.7:
- resolution: {integrity: sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==}
+ /memfs/3.4.13:
+ resolution: {integrity: sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==}
engines: {node: '>= 4.0.0'}
dependencies:
fs-monkey: 1.0.3
@@ -15902,6 +16120,14 @@ packages:
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
+ dev: false
+
+ /minimatch/5.1.5:
+ resolution: {integrity: sha512-CI8wwdrll4ehjPAqs8TL8lBPyNnpZlQI02Wn8C1weNz/QbUbjh3OMxgMKSnvqfKFdLlks3EzHB9tO0BqGc3phQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: true
/minimist/1.2.7:
resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==}
@@ -15910,7 +16136,7 @@ packages:
resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
engines: {node: '>= 8'}
dependencies:
- minipass: 3.3.4
+ minipass: 3.3.6
/minipass-fetch/1.4.1:
resolution: {integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==}
@@ -15928,13 +16154,13 @@ packages:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
engines: {node: '>= 8'}
dependencies:
- minipass: 3.3.4
+ minipass: 3.3.6
/minipass-pipeline/1.2.4:
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
engines: {node: '>=8'}
dependencies:
- minipass: 3.3.4
+ minipass: 3.3.6
/minipass-sized/1.0.3:
resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
@@ -15949,12 +16175,25 @@ packages:
engines: {node: '>=8'}
dependencies:
yallist: 4.0.0
+ dev: false
+
+ /minipass/3.3.6:
+ resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
+ engines: {node: '>=8'}
+ dependencies:
+ yallist: 4.0.0
+
+ /minipass/4.0.0:
+ resolution: {integrity: sha512-g2Uuh2jEKoht+zvO6vJqXmYpflPqzRBT+Th2h01DKh5z7wbY/AZ2gCQ78cP70YoHPyFdY30YBV5WxgLOEwOykw==}
+ engines: {node: '>=8'}
+ dependencies:
+ yallist: 4.0.0
/minizlib/2.1.2:
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
engines: {node: '>= 8'}
dependencies:
- minipass: 3.3.4
+ minipass: 3.3.6
yallist: 4.0.0
/mississippi/3.0.0:
@@ -15996,6 +16235,15 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ /mlly/1.1.0:
+ resolution: {integrity: sha512-cwzBrBfwGC1gYJyfcy8TcZU1f+dbH/T+TuOhtYP2wLv/Fb51/uV7HJQfBPtEupZ2ORLRU1EKFS/QfS3eo9+kBQ==}
+ dependencies:
+ acorn: 8.8.1
+ pathe: 1.0.0
+ pkg-types: 1.0.1
+ ufo: 1.0.1
+ dev: true
+
/mock-require/3.0.3:
resolution: {integrity: sha512-lLzfLHcyc10MKQnNUCv7dMcoY/2Qxd6wJfbqCcVk3LDb8An4hF6ohk5AztrvgKhJCqj36uyzi/p5se+tvyD+Wg==}
engines: {node: '>=4.3.0'}
@@ -16134,6 +16382,10 @@ packages:
- supports-color
dev: false
+ /muggle-string/0.1.0:
+ resolution: {integrity: sha512-Tr1knR3d2mKvvWthlk7202rywKbiOm4rVFLsfAaSIhJ6dt9o47W4S+JMtWhd/PW9Wrdew2/S2fSvhz3E2gkfEg==}
+ dev: true
+
/multer/1.4.5-lts.1:
resolution: {integrity: sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==}
engines: {node: '>= 6.0.0'}
@@ -16322,6 +16574,18 @@ packages:
dependencies:
whatwg-url: 5.0.0
+ /node-fetch/2.6.8:
+ resolution: {integrity: sha512-RZ6dBYuj8dRSfxpUSu+NsdF1dpPpluJxwOp+6IoDp/sH2QNDSvurYsAa+F1WxY2RjA1iP93xhcsUoYbF2XBqVg==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
+ dependencies:
+ whatwg-url: 5.0.0
+ dev: true
+
/node-gyp-build-optional-packages/5.0.3:
resolution: {integrity: sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==}
hasBin: true
@@ -16361,6 +16625,7 @@ packages:
dependencies:
css-select: 4.3.0
he: 1.2.0
+ dev: false
/node-int64/0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
@@ -16409,8 +16674,8 @@ packages:
which: 2.0.2
dev: true
- /node-releases/2.0.6:
- resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
+ /node-releases/2.0.8:
+ resolution: {integrity: sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==}
dev: true
/node-rsa/1.1.1:
@@ -16627,6 +16892,17 @@ packages:
/object-inspect/1.12.2:
resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
+ /object-inspect/1.12.3:
+ resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
+
+ /object-is/1.1.5:
+ resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ dev: true
+
/object-keys/1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
@@ -16670,13 +16946,22 @@ packages:
es-abstract: 1.20.4
dev: true
- /object.fromentries/2.0.5:
- resolution: {integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==}
+ /object.entries/1.1.6:
+ resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.4
+ es-abstract: 1.21.1
+ dev: true
+
+ /object.fromentries/2.0.6:
+ resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
dev: true
/object.getownpropertydescriptors/2.1.4:
@@ -16687,6 +16972,17 @@ packages:
call-bind: 1.0.2
define-properties: 1.1.4
es-abstract: 1.20.4
+ dev: false
+
+ /object.getownpropertydescriptors/2.1.5:
+ resolution: {integrity: sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw==}
+ engines: {node: '>= 0.8'}
+ dependencies:
+ array.prototype.reduce: 1.0.5
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
+ dev: true
/object.map/1.0.1:
resolution: {integrity: sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==}
@@ -16720,6 +17016,15 @@ packages:
es-abstract: 1.20.4
dev: true
+ /object.values/1.1.6:
+ resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
+ dev: true
+
/on-finished/2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
@@ -17231,6 +17536,10 @@ packages:
resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==}
dev: true
+ /pathe/1.0.0:
+ resolution: {integrity: sha512-nPdMG0Pd09HuSsr7QOKUXO2Jr9eqaDiZvDwdyIhNG5SHYujkQHYKDfGQkulBxvbDHz8oHLsTgKN86LSwYzSHAg==}
+ dev: true
+
/pathval/1.1.1:
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
dev: true
@@ -17376,7 +17685,7 @@ packages:
engines: {node: '>=6'}
dev: true
- /pinia/2.0.23_xjcbg5znturqejtkpd33hx726m:
+ /pinia/2.0.23_vj744rb3neneiaeb3oalctaenu:
resolution: {integrity: sha512-N15hFf4o5STrxpNrib1IEb1GOArvPYf1zPvQVRGOO1G1d74Ak0J0lVyalX/SmrzdT4Q0nlEFjbURsmBmIGUR5Q==}
peerDependencies:
'@vue/composition-api': ^1.4.0
@@ -17389,9 +17698,9 @@ packages:
optional: true
dependencies:
'@vue/devtools-api': 6.4.5
- typescript: 4.8.4
- vue: 2.7.13
- vue-demi: 0.13.11_vue@2.7.13
+ typescript: 4.9.4
+ vue: 2.7.14
+ vue-demi: 0.13.11_vue@2.7.14
/pinkie-promise/2.0.1:
resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
@@ -17431,6 +17740,14 @@ packages:
find-up: 5.0.0
dev: true
+ /pkg-types/1.0.1:
+ resolution: {integrity: sha512-jHv9HB+Ho7dj6ItwppRDDl0iZRYBD0jsakHXtFgoLr+cHSF6xC+QL54sJmWxyGxOLYSHm0afhXhXcQDQqH9z8g==}
+ dependencies:
+ jsonc-parser: 3.2.0
+ mlly: 1.1.0
+ pathe: 1.0.0
+ dev: true
+
/plimit-lit/1.4.1:
resolution: {integrity: sha512-bK14ePAod0XWhXwjT6XvYfjcQ9PbCUkZXnDCAKRMZTJCaDIV9VFya1S/I+3WSbpdR8uBhCDh8TS4lQ/JQvhNFA==}
dependencies:
@@ -17442,11 +17759,11 @@ packages:
engines: {node: '>=4'}
dev: true
- /pnp-webpack-plugin/1.6.4_typescript@4.8.4:
+ /pnp-webpack-plugin/1.6.4_typescript@4.9.4:
resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==}
engines: {node: '>=6'}
dependencies:
- ts-pnp: 1.2.0_typescript@4.8.4
+ ts-pnp: 1.2.0_typescript@4.9.4
transitivePeerDependencies:
- typescript
dev: true
@@ -17455,7 +17772,7 @@ packages:
resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==}
engines: {node: '>=10'}
dependencies:
- '@babel/runtime': 7.19.4
+ '@babel/runtime': 7.20.7
dev: true
/popsicle-content-encoding/1.0.0_servie@4.3.3:
@@ -17540,9 +17857,9 @@ packages:
postcss: ^7.0.0 || ^8.0.1
webpack: ^4.0.0 || ^5.0.0
dependencies:
- cosmiconfig: 7.0.1
- klona: 2.0.5
- loader-utils: 2.0.2
+ cosmiconfig: 7.1.0
+ klona: 2.0.6
+ loader-utils: 2.0.4
postcss: 7.0.39
schema-utils: 3.1.1
semver: 7.3.8
@@ -17556,13 +17873,13 @@ packages:
postcss: 7.0.39
dev: true
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.18:
+ /postcss-modules-extract-imports/3.0.0_postcss@8.4.21:
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.18
+ postcss: 8.4.21
dev: true
/postcss-modules-local-by-default/3.0.3:
@@ -17571,19 +17888,19 @@ packages:
dependencies:
icss-utils: 4.1.1
postcss: 7.0.39
- postcss-selector-parser: 6.0.10
+ postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
dev: true
- /postcss-modules-local-by-default/4.0.0_postcss@8.4.18:
+ /postcss-modules-local-by-default/4.0.0_postcss@8.4.21:
resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.18
- postcss: 8.4.18
- postcss-selector-parser: 6.0.10
+ icss-utils: 5.1.0_postcss@8.4.21
+ postcss: 8.4.21
+ postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
dev: true
@@ -17592,17 +17909,17 @@ packages:
engines: {node: '>= 6'}
dependencies:
postcss: 7.0.39
- postcss-selector-parser: 6.0.10
+ postcss-selector-parser: 6.0.11
dev: true
- /postcss-modules-scope/3.0.0_postcss@8.4.18:
+ /postcss-modules-scope/3.0.0_postcss@8.4.21:
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.18
- postcss-selector-parser: 6.0.10
+ postcss: 8.4.21
+ postcss-selector-parser: 6.0.11
dev: true
/postcss-modules-values/3.0.0:
@@ -17612,18 +17929,18 @@ packages:
postcss: 7.0.39
dev: true
- /postcss-modules-values/4.0.0_postcss@8.4.18:
+ /postcss-modules-values/4.0.0_postcss@8.4.21:
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.18
- postcss: 8.4.18
+ icss-utils: 5.1.0_postcss@8.4.21
+ postcss: 8.4.21
dev: true
- /postcss-selector-parser/6.0.10:
- resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
+ /postcss-selector-parser/6.0.11:
+ resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
@@ -17642,8 +17959,8 @@ packages:
source-map: 0.6.1
dev: true
- /postcss/8.4.18:
- resolution: {integrity: sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==}
+ /postcss/8.4.21:
+ resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.4
@@ -17715,6 +18032,12 @@ packages:
hasBin: true
dev: false
+ /prettier/2.8.3:
+ resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ dev: true
+
/pretty-bytes/5.6.0:
resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
engines: {node: '>=6'}
@@ -17736,16 +18059,6 @@ packages:
react-is: 17.0.2
dev: true
- /pretty-format/28.1.3:
- resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==}
- engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
- dependencies:
- '@jest/schemas': 28.1.3
- ansi-regex: 5.0.1
- ansi-styles: 5.2.0
- react-is: 18.2.0
- dev: true
-
/pretty-format/29.3.1:
resolution: {integrity: sha512-FyLnmb1cYJV8biEIiRyzRFvs2lry7PPIvOqKVe1GCUEYg4YGmlx1qG9EJNMxArYm7piII4qb8UV1Pncq5dxmcg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -17766,7 +18079,7 @@ packages:
dependencies:
condense-newlines: 0.2.1
extend-shallow: 2.0.1
- js-beautify: 1.14.6
+ js-beautify: 1.14.7
dev: true
/printj/1.1.2:
@@ -17836,14 +18149,14 @@ packages:
retry: 0.12.0
dev: false
- /promise.allsettled/1.0.5:
- resolution: {integrity: sha512-tVDqeZPoBC0SlzJHzWGZ2NKAguVq2oiYj7gbggbiTvH2itHohijTp7njOUA0aQ/nl+0lr/r6egmhoYu63UZ/pQ==}
+ /promise.allsettled/1.0.6:
+ resolution: {integrity: sha512-22wJUOD3zswWFqgwjNHa1965LvqTX87WPu/lreY2KSd7SVcERfuZ4GfUaOnJNnvtoIv2yXT/W00YIGMetXtFXg==}
engines: {node: '>= 0.4'}
dependencies:
- array.prototype.map: 1.0.4
+ array.prototype.map: 1.0.5
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.4
+ es-abstract: 1.21.1
get-intrinsic: 1.1.3
iterate-value: 1.0.2
dev: true
@@ -17855,6 +18168,16 @@ packages:
call-bind: 1.0.2
define-properties: 1.1.4
es-abstract: 1.20.4
+ dev: false
+
+ /promise.prototype.finally/3.1.4:
+ resolution: {integrity: sha512-nNc3YbgMfLzqtqvO/q5DP6RR0SiHI9pUPGzyDf1q+usTwCN2kjvAnJkBb7bHe3o+fFSBPpsGMoYtaSi+LTNqng==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
+ dev: true
/promise/1.3.0:
resolution: {integrity: sha512-R9WrbTF3EPkVtWjp7B7umQGVndpsi+rsDAfrR4xAALQpFLa/+2OriecLhawxzvii2gd9+DZFwROWDuUUaqS5yA==}
@@ -18088,6 +18411,10 @@ packages:
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
engines: {node: '>=6'}
+ /punycode/2.2.0:
+ resolution: {integrity: sha512-LN6QV1IJ9ZhxWTNdktaPClrNfp8xdSAYS0Zk2ddX7XsXZAxckMHPCBcHRo0cTcEIgYPRiGEkmji3Idkh2yFtYw==}
+ engines: {node: '>=6'}
+
/python-struct/1.1.3:
resolution: {integrity: sha512-UsI/mNvk25jRpGKYI38Nfbv84z48oiIWwG67DLVvjRhy8B/0aIK+5Ju5WOHgw/o9rnEmbAS00v4rgKFQeC332Q==}
dependencies:
@@ -18225,7 +18552,7 @@ packages:
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
dependencies:
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
schema-utils: 3.1.1
webpack: 4.46.0
dev: true
@@ -18257,7 +18584,7 @@ packages:
peerDependencies:
react: ^16.8.4 || ^17.0.0
dependencies:
- '@babel/runtime': 7.19.4
+ '@babel/runtime': 7.20.7
is-dom: 1.1.0
prop-types: 15.8.1
react: 17.0.2
@@ -18395,17 +18722,7 @@ packages:
ast-types: 0.14.2
esprima: 4.0.1
source-map: 0.6.1
- tslib: 2.4.0
- dev: true
-
- /recast/0.21.1:
- resolution: {integrity: sha512-PF61BHLaOGF5oIKTpSrDM6Qfy2d7DIx5qblgqG+wjqHuFH97OgAqBYFIJwEuHTrM6pQGT17IJ8D0C/jVu/0tig==}
- engines: {node: '>= 4'}
- dependencies:
- ast-types: 0.15.2
- esprima: 4.0.1
- source-map: 0.6.1
- tslib: 2.4.0
+ tslib: 2.4.1
dev: true
/recast/0.21.5:
@@ -18418,6 +18735,17 @@ packages:
tslib: 2.4.0
dev: false
+ /recast/0.22.0:
+ resolution: {integrity: sha512-5AAx+mujtXijsEavc5lWXBPQqrM4+Dl5qNH96N2aNeuJFUzpiiToKPsxQD/zAIJHspz7zz0maX0PCtCTFVlixQ==}
+ engines: {node: '>= 4'}
+ dependencies:
+ assert: 2.0.0
+ ast-types: 0.15.2
+ esprima: 4.0.1
+ source-map: 0.6.1
+ tslib: 2.4.1
+ dev: true
+
/rechoir/0.6.2:
resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
engines: {node: '>= 0.10'}
@@ -18491,13 +18819,17 @@ packages:
resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
dev: false
+ /regenerator-runtime/0.13.11:
+ resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
+ dev: true
+
/regenerator-runtime/0.13.9:
resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
- /regenerator-transform/0.15.0:
- resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
+ /regenerator-transform/0.15.1:
+ resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
- '@babel/runtime': 7.19.4
+ '@babel/runtime': 7.20.7
dev: true
/regex-not/1.0.2:
@@ -18521,8 +18853,8 @@ packages:
engines: {node: '>=8'}
dev: true
- /regexpu-core/5.2.1:
- resolution: {integrity: sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==}
+ /regexpu-core/5.2.2:
+ resolution: {integrity: sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
@@ -18530,7 +18862,7 @@ packages:
regjsgen: 0.7.1
regjsparser: 0.9.1
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.0.0
+ unicode-match-property-value-ecmascript: 2.1.0
dev: true
/regjsgen/0.7.1:
@@ -18606,7 +18938,7 @@ packages:
/remark-slug/6.1.0:
resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==}
dependencies:
- github-slugger: 1.4.0
+ github-slugger: 1.5.0
mdast-util-to-string: 1.1.0
unist-util-visit: 2.0.3
dev: true
@@ -18888,17 +19220,9 @@ packages:
resolution: {integrity: sha512-fJhQQI5tLrQvYIYFpOnFinzv9dwmR7hRnUz1XqP3OJ1jIweTNOd6aTO4jwQSgcBSFUB+/KHJxuGneime+FdzOw==}
dev: false
- /rollup/2.77.3:
- resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==}
- engines: {node: '>=10.0.0'}
- hasBin: true
- optionalDependencies:
- fsevents: 2.3.2
- dev: true
-
- /rollup/2.79.1:
- resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
- engines: {node: '>=10.0.0'}
+ /rollup/3.10.0:
+ resolution: {integrity: sha512-JmRYz44NjC1MjVF2VKxc0M1a97vn+cDxeqWmnwyAF4FvpjK8YFdHpaqvQB+3IxCvX05vJxKZkoMDU8TShhmJVA==}
+ engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
fsevents: 2.3.2
@@ -18999,15 +19323,15 @@ packages:
- supports-color
dev: true
- /sanitize-html/2.7.0:
- resolution: {integrity: sha512-jfQelabOn5voO7FAfnQF7v+jsA6z9zC/O4ec0z3E35XPEtHYJT/OdUziVWlKW4irCr2kXaQAyXTXDHWAibg1tA==}
+ /sanitize-html/2.7.3:
+ resolution: {integrity: sha512-jMaHG29ak4miiJ8wgqA1849iInqORgNv7SLfSw9LtfOhEUQ1C0YHKH73R+hgyufBW9ZFeJrb057k9hjlfBCVlw==}
dependencies:
deepmerge: 4.2.2
escape-string-regexp: 4.0.0
htmlparser2: 6.1.0
is-plain-object: 5.0.0
parse-srcset: 1.0.2
- postcss: 8.4.18
+ postcss: 8.4.21
dev: false
/saslprep/1.0.3:
@@ -19018,31 +19342,6 @@ packages:
dev: false
optional: true
- /sass-loader/10.3.1_sass@1.55.0+webpack@4.46.0:
- resolution: {integrity: sha512-y2aBdtYkbqorVavkC3fcJIUDGIegzDWPn3/LAFhsf3G+MzPKTJx37sROf5pXtUeggSVbNbmfj8TgRaSLMelXRA==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- fibers: '>= 3.1.0'
- node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
- sass: ^1.3.0
- webpack: ^4.36.0 || ^5.0.0
- peerDependenciesMeta:
- fibers:
- optional: true
- node-sass:
- optional: true
- sass:
- optional: true
- dependencies:
- klona: 2.0.5
- loader-utils: 2.0.2
- neo-async: 2.6.2
- sass: 1.55.0
- schema-utils: 3.1.1
- semver: 7.3.8
- webpack: 4.46.0
- dev: true
-
/sass-loader/10.3.1_sass@1.55.0+webpack@5.74.0:
resolution: {integrity: sha512-y2aBdtYkbqorVavkC3fcJIUDGIegzDWPn3/LAFhsf3G+MzPKTJx37sROf5pXtUeggSVbNbmfj8TgRaSLMelXRA==}
engines: {node: '>= 10.13.0'}
@@ -19068,6 +19367,31 @@ packages:
webpack: 5.74.0
dev: true
+ /sass-loader/10.3.1_sass@1.57.1+webpack@4.46.0:
+ resolution: {integrity: sha512-y2aBdtYkbqorVavkC3fcJIUDGIegzDWPn3/LAFhsf3G+MzPKTJx37sROf5pXtUeggSVbNbmfj8TgRaSLMelXRA==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ fibers: '>= 3.1.0'
+ node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
+ sass: ^1.3.0
+ webpack: ^4.36.0 || ^5.0.0
+ peerDependenciesMeta:
+ fibers:
+ optional: true
+ node-sass:
+ optional: true
+ sass:
+ optional: true
+ dependencies:
+ klona: 2.0.5
+ loader-utils: 2.0.2
+ neo-async: 2.6.2
+ sass: 1.57.1
+ schema-utils: 3.1.1
+ semver: 7.3.8
+ webpack: 4.46.0
+ dev: true
+
/sass/1.55.0:
resolution: {integrity: sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A==}
engines: {node: '>=12.0.0'}
@@ -19078,6 +19402,16 @@ packages:
source-map-js: 1.0.2
dev: true
+ /sass/1.57.1:
+ resolution: {integrity: sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==}
+ engines: {node: '>=12.0.0'}
+ hasBin: true
+ dependencies:
+ chokidar: 3.5.3
+ immutable: 4.2.2
+ source-map-js: 1.0.2
+ dev: true
+
/sax/1.2.1:
resolution: {integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==}
dev: false
@@ -19086,13 +19420,6 @@ packages:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
dev: false
- /saxes/5.0.1:
- resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==}
- engines: {node: '>=10'}
- dependencies:
- xmlchars: 2.2.0
- dev: true
-
/saxes/6.0.0:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
@@ -19367,7 +19694,11 @@ packages:
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.1.3
- object-inspect: 1.12.2
+ object-inspect: 1.12.3
+
+ /siginfo/2.0.0:
+ resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
+ dev: true
/sigmund/1.0.1:
resolution: {integrity: sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==}
@@ -19569,7 +19900,7 @@ packages:
deprecated: See https://github.com/lydell/source-map-resolve#deprecated
dependencies:
atob: 2.1.2
- decode-uri-component: 0.2.0
+ decode-uri-component: 0.2.2
resolve-url: 0.2.1
source-map-url: 0.4.1
urix: 0.1.0
@@ -19609,6 +19940,7 @@ packages:
/sourcemap-codec/1.4.8:
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
+ deprecated: Please use @jridgewell/sourcemap-codec instead
dev: true
/space-separated-tokens/1.1.5:
@@ -19773,7 +20105,7 @@ packages:
resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
engines: {node: '>= 8'}
dependencies:
- minipass: 3.3.4
+ minipass: 3.3.6
/stable/0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
@@ -19790,6 +20122,17 @@ packages:
escape-string-regexp: 2.0.0
dev: true
+ /stack-utils/2.0.6:
+ resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
+ engines: {node: '>=10'}
+ dependencies:
+ escape-string-regexp: 2.0.0
+ dev: true
+
+ /stackback/0.0.2:
+ resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
+ dev: true
+
/standard-as-callback/2.1.0:
resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==}
dev: false
@@ -19842,6 +20185,13 @@ packages:
engines: {node: '>=0.10.0'}
dev: false
+ /stop-iteration-iterator/1.0.0:
+ resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ internal-slot: 1.0.4
+ dev: true
+
/stoppable/1.1.0:
resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==}
engines: {node: '>=4', npm: '>=6'}
@@ -19854,12 +20204,12 @@ packages:
/storybook-addon-designs/6.3.1_react@17.0.2:
resolution: {integrity: sha512-QCHZp4KuUikOq52MPiMfU8QifYTfhHar5vWlbcfkFDz1YrgGMy+QAEt5Y3Vdnffl4GKSK1lAsLuvTuzqTBRvnw==}
dependencies:
- '@figspec/react': 1.0.2_react@17.0.2
+ '@figspec/react': 1.0.3_react@17.0.2
transitivePeerDependencies:
- react
dev: true
- /storybook-addon-themes/6.1.0_fdr5yqsnbg2irpjrsjxeyybfsm:
+ /storybook-addon-themes/6.1.0_a5nuvzww5baef7fspvwijmdp24:
resolution: {integrity: sha512-ZT8aNgrwFVNEOmOPBLNS0WBacjvMFo/bZ83P8MmsJ3Ewqt0AbmPioghTZccARUn/EQ+LrDxyh2D0QgmLaKo07Q==}
peerDependencies:
react: '*'
@@ -19873,16 +20223,16 @@ packages:
vue:
optional: true
dependencies:
- '@storybook/addons': 6.5.12_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/api': 6.5.12_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/components': 6.5.12_6l5554ty5ajsajah6yazvrjhoe
- '@storybook/core-events': 6.5.12
- '@storybook/theming': 6.5.12_6l5554ty5ajsajah6yazvrjhoe
- core-js: 3.25.5
+ '@storybook/addons': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/api': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/components': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ '@storybook/core-events': 6.5.15
+ '@storybook/theming': 6.5.15_6l5554ty5ajsajah6yazvrjhoe
+ core-js: 3.27.1
global: 4.4.0
memoizerific: 1.11.3
react: 17.0.2
- vue: 2.7.13
+ vue: 2.7.14
transitivePeerDependencies:
- react-dom
dev: true
@@ -19894,6 +20244,13 @@ packages:
readable-stream: 2.3.7
dev: true
+ /stream-browserify/3.0.0:
+ resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}
+ dependencies:
+ inherits: 2.0.4
+ readable-stream: 3.6.0
+ dev: false
+
/stream-combiner/0.0.4:
resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==}
dependencies:
@@ -19985,35 +20342,35 @@ packages:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- /string.prototype.matchall/4.0.7:
- resolution: {integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==}
+ /string.prototype.matchall/4.0.8:
+ resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.4
+ es-abstract: 1.21.1
get-intrinsic: 1.1.3
has-symbols: 1.0.3
- internal-slot: 1.0.3
+ internal-slot: 1.0.4
regexp.prototype.flags: 1.4.3
side-channel: 1.0.4
dev: true
- /string.prototype.padend/3.1.3:
- resolution: {integrity: sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg==}
+ /string.prototype.padend/3.1.4:
+ resolution: {integrity: sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.4
+ es-abstract: 1.21.1
dev: true
- /string.prototype.padstart/3.1.3:
- resolution: {integrity: sha512-NZydyOMtYxpTjGqp0VN5PYUF/tsU15yDMZnUdj16qRUIUiMJkHHSDElYyQFrMu+/WloTpA7MQSiADhBicDfaoA==}
+ /string.prototype.padstart/3.1.4:
+ resolution: {integrity: sha512-XqOHj8horGsF+zwxraBvMTkBFM28sS/jHBJajh17JtJKA92qazidiQbLosV4UA18azvLOVKYo/E3g3T9Y5826w==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
- es-abstract: 1.20.4
+ es-abstract: 1.21.1
dev: true
/string.prototype.startswith/1.0.0:
@@ -20030,6 +20387,13 @@ packages:
define-properties: 1.1.4
es-abstract: 1.20.4
+ /string.prototype.trimend/1.0.6:
+ resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
+
/string.prototype.trimstart/1.0.5:
resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==}
dependencies:
@@ -20037,6 +20401,13 @@ packages:
define-properties: 1.1.4
es-abstract: 1.20.4
+ /string.prototype.trimstart/1.0.6:
+ resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
+ dependencies:
+ call-bind: 1.0.2
+ define-properties: 1.1.4
+ es-abstract: 1.21.1
+
/string_decoder/0.10.31:
resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
@@ -20124,6 +20495,12 @@ packages:
engines: {node: '>=8'}
dev: true
+ /strip-literal/1.0.0:
+ resolution: {integrity: sha512-5o4LsH1lzBzO9UFH63AJ2ad2/S2AVx6NtjOcaz+VTT2h1RiRvbipW72z8M/lxEhcPHDBQwpDrnTF7sXy/7OwCQ==}
+ dependencies:
+ acorn: 8.8.1
+ dev: true
+
/strtok3/6.3.0:
resolution: {integrity: sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==}
engines: {node: '>=10'}
@@ -20138,7 +20515,7 @@ packages:
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
dependencies:
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
schema-utils: 2.7.1
webpack: 4.46.0
dev: true
@@ -20251,7 +20628,7 @@ packages:
call-bind: 1.0.2
get-symbol-description: 1.0.0
has-symbols: 1.0.3
- object.getownpropertydescriptors: 2.1.4
+ object.getownpropertydescriptors: 2.1.5
dev: true
/synchronous-promise/2.0.16:
@@ -20314,6 +20691,18 @@ packages:
minizlib: 2.1.2
mkdirp: 1.0.4
yallist: 4.0.0
+ dev: false
+
+ /tar/6.1.13:
+ resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==}
+ engines: {node: '>=10'}
+ dependencies:
+ chownr: 2.0.0
+ fs-minipass: 2.1.0
+ minipass: 4.0.0
+ minizlib: 2.1.2
+ mkdirp: 1.0.4
+ yallist: 4.0.0
/tarn/3.0.2:
resolution: {integrity: sha512-51LAVKUSZSVfI05vjPESNc5vwqqZpbXCsU+/+wxlOrUjk2SnFTt97v9ZgQrD4YmxYW1Px6w2KjaDitCfkvgxMQ==}
@@ -20398,7 +20787,7 @@ packages:
schema-utils: 3.1.1
serialize-javascript: 5.0.1
source-map: 0.6.1
- terser: 5.15.1
+ terser: 5.16.1
webpack: 4.46.0
webpack-sources: 1.4.3
transitivePeerDependencies:
@@ -20421,11 +20810,11 @@ packages:
uglify-js:
optional: true
dependencies:
- '@jridgewell/trace-mapping': 0.3.16
+ '@jridgewell/trace-mapping': 0.3.17
jest-worker: 27.5.1
schema-utils: 3.1.1
serialize-javascript: 6.0.0
- terser: 5.15.1
+ terser: 5.16.1
webpack: 5.74.0
dev: true
@@ -20440,8 +20829,8 @@ packages:
source-map-support: 0.5.21
dev: true
- /terser/5.15.1:
- resolution: {integrity: sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==}
+ /terser/5.16.1:
+ resolution: {integrity: sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -20536,17 +20925,21 @@ packages:
globrex: 0.1.2
dev: true
- /tinycolor2/1.4.2:
- resolution: {integrity: sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==}
+ /tinybench/2.3.1:
+ resolution: {integrity: sha512-hGYWYBMPr7p4g5IarQE7XhlyWveh1EKhy4wUBS1LrHXCKYgvz+4/jCqgmJqZxxldesn05vccrtME2RLLZNW7iA==}
+ dev: true
+
+ /tinycolor2/1.5.2:
+ resolution: {integrity: sha512-h80m9GPFGbcLzZByXlNSEhp1gf8Dy+VX/2JCGUZsWLo7lV1mnE/XlxGYgRBoMLJh1lIDXP0EMC4RPTjlRaV+Bg==}
dev: false
- /tinypool/0.1.3:
- resolution: {integrity: sha512-2IfcQh7CP46XGWGGbdyO4pjcKqsmVqFAPcXfPxcPXmOWt9cYkTP9HcDmGgsfijYoAEc4z9qcpM/BaBz46Y9/CQ==}
+ /tinypool/0.3.0:
+ resolution: {integrity: sha512-NX5KeqHOBZU6Bc0xj9Vr5Szbb1j8tUHIeD18s41aDJaPeC5QTdEhK0SpdpUrZlj2nv5cctNcSjaKNanXlfcVEQ==}
engines: {node: '>=14.0.0'}
dev: true
- /tinyspy/0.3.3:
- resolution: {integrity: sha512-gRiUR8fuhUf0W9lzojPf1N1euJYA30ISebSfgca8z76FOvXtVXqd5ojEIaKLWbDQhAaC3ibxZIjqbyi4ybjcTw==}
+ /tinyspy/1.0.2:
+ resolution: {integrity: sha512-bSGlgwLBYf7PnUsQ6WOc6SJ3pGOcd+d8AA6EUnLDDM0kWEstC1JIlSZA3UNliDXhd9ABoS7hiRBDCu+XP/sf1Q==}
engines: {node: '>=14.0.0'}
dev: true
@@ -20692,7 +21085,7 @@ packages:
engines: {node: '>=6'}
dependencies:
psl: 1.9.0
- punycode: 2.1.1
+ punycode: 2.2.0
universalify: 0.2.0
url-parse: 1.5.10
@@ -20703,7 +21096,7 @@ packages:
resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
engines: {node: '>=12'}
dependencies:
- punycode: 2.1.1
+ punycode: 2.2.0
/transliteration/2.3.5:
resolution: {integrity: sha512-HAGI4Lq4Q9dZ3Utu2phaWgtm3vB6PkLUFqWAScg/UW+1eZ/Tg6Exo4oC0/3VUol/w4BlefLhUUSVBr/9/ZGQOw==}
@@ -20787,7 +21180,7 @@ packages:
yargs-parser: 21.1.1
dev: true
- /ts-loader/8.4.0_qqxisngxjbp7lstdk7boexbu3e:
+ /ts-loader/8.4.0_ad6xlx6c2kce7qmj5vxus5gywi:
resolution: {integrity: sha512-6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -20796,18 +21189,18 @@ packages:
dependencies:
chalk: 4.1.2
enhanced-resolve: 4.5.0
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
micromatch: 4.0.5
semver: 7.3.8
- typescript: 4.8.4
- webpack: 5.74.0
+ typescript: 4.9.4
+ webpack: 4.46.0
dev: true
/ts-map/1.0.3:
resolution: {integrity: sha512-vDWbsl26LIcPGmDpoVzjEP6+hvHZkBkLW7JpvwbCv/5IYPJlsbzCVXY3wsCeAxAUeTclNOUZxnLdGh3VBD/J6w==}
dev: true
- /ts-node/9.1.1_typescript@4.8.4:
+ /ts-node/9.1.1_typescript@4.9.4:
resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==}
engines: {node: '>=10.0.0'}
hasBin: true
@@ -20819,10 +21212,10 @@ packages:
diff: 4.0.2
make-error: 1.3.6
source-map-support: 0.5.21
- typescript: 4.8.4
+ typescript: 4.9.4
yn: 3.1.1
- /ts-pnp/1.2.0_typescript@4.8.4:
+ /ts-pnp/1.2.0_typescript@4.9.4:
resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
engines: {node: '>=6'}
peerDependencies:
@@ -20831,7 +21224,7 @@ packages:
typescript:
optional: true
dependencies:
- typescript: 4.8.4
+ typescript: 4.9.4
dev: true
/tsc-alias/1.7.1:
@@ -20884,14 +21277,14 @@ packages:
engines: {node: '>=0.6.x'}
dev: false
- /tsutils/3.21.0_typescript@4.8.4:
+ /tsutils/3.21.0_typescript@4.9.4:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 4.8.4
+ typescript: 4.9.4
dev: true
/tty-browserify/0.0.0:
@@ -21017,6 +21410,13 @@ packages:
resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==}
dev: true
+ /typed-array-length/1.0.4:
+ resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
+ dependencies:
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ is-typed-array: 1.1.10
+
/typedarray-to-buffer/3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
dependencies:
@@ -21101,7 +21501,7 @@ packages:
reflect-metadata: 0.1.13
sha.js: 2.4.11
sqlite3: 5.1.4
- ts-node: 9.1.1_typescript@4.8.4
+ ts-node: 9.1.1_typescript@4.9.4
tslib: 2.4.0
uuid: 8.3.2
xml2js: 0.4.23
@@ -21114,13 +21514,23 @@ packages:
resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==}
engines: {node: '>=4.2.0'}
hasBin: true
+ dev: true
+
+ /typescript/4.9.4:
+ resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==}
+ engines: {node: '>=4.2.0'}
+ hasBin: true
/uc.micro/1.0.6:
resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
dev: false
- /uglify-js/3.17.3:
- resolution: {integrity: sha512-JmMFDME3iufZnBpyKL+uS78LRiC+mK55zWfM5f/pWBJfpOttXAqYfdDGRukYhJuyRinvPVAtUhvy7rlDybNtFg==}
+ /ufo/1.0.1:
+ resolution: {integrity: sha512-boAm74ubXHY7KJQZLlXrtMz52qFvpsbOxDcZOnw/Wf+LS4Mmyu7JxmzD4tDLtUQtmZECypJ0FrCz4QIe6dvKRA==}
+ dev: true
+
+ /uglify-js/3.17.4:
+ resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
engines: {node: '>=0.8.0'}
hasBin: true
optional: true
@@ -21204,8 +21614,8 @@ packages:
unicode-property-aliases-ecmascript: 2.1.0
dev: true
- /unicode-match-property-value-ecmascript/2.0.0:
- resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==}
+ /unicode-match-property-value-ecmascript/2.1.0:
+ resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
dev: true
@@ -21368,7 +21778,7 @@ packages:
/uri-js/4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
- punycode: 2.1.1
+ punycode: 2.2.0
/urix/0.1.0:
resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
@@ -21386,7 +21796,7 @@ packages:
optional: true
dependencies:
file-loader: 6.2.0_webpack@4.46.0
- loader-utils: 2.0.2
+ loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.1.1
webpack: 4.46.0
@@ -21462,7 +21872,7 @@ packages:
resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==}
dependencies:
define-properties: 1.1.4
- object.getownpropertydescriptors: 2.1.4
+ object.getownpropertydescriptors: 2.1.5
dev: true
/util.promisify/1.1.1:
@@ -21498,6 +21908,16 @@ packages:
which-typed-array: 1.1.8
dev: false
+ /util/0.12.5:
+ resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
+ dependencies:
+ inherits: 2.0.4
+ is-arguments: 1.1.1
+ is-generator-function: 1.0.10
+ is-typed-array: 1.1.10
+ which-typed-array: 1.1.9
+ dev: true
+
/utila/0.4.0:
resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
dev: true
@@ -21556,20 +21976,11 @@ packages:
engines: {node: '>=6'}
dev: false
- /v8-to-istanbul/8.1.1:
- resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==}
- engines: {node: '>=10.12.0'}
- dependencies:
- '@types/istanbul-lib-coverage': 2.0.4
- convert-source-map: 1.9.0
- source-map: 0.7.4
- dev: true
-
/v8-to-istanbul/9.0.1:
resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==}
engines: {node: '>=10.12.0'}
dependencies:
- '@jridgewell/trace-mapping': 0.3.16
+ '@jridgewell/trace-mapping': 0.3.17
'@types/istanbul-lib-coverage': 2.0.4
convert-source-map: 1.9.0
dev: true
@@ -21677,24 +22088,50 @@ packages:
replace-ext: 1.0.1
dev: true
- /vite-plugin-html/3.2.0_vite@2.9.5:
- resolution: {integrity: sha512-2VLCeDiHmV/BqqNn5h2V+4280KRgQzCFN47cst3WiNK848klESPQnzuC3okH5XHtgwHH/6s1Ho/YV6yIO0pgoQ==}
- peerDependencies:
- vite: '>=2.0.0'
+ /vite-node/0.27.2_7rfoeown37vwv4fneiebr6nt2u:
+ resolution: {integrity: sha512-IDwuVhslF10qCnWOGJui7/2KksAOBHi+UbVo6Pqt4f5lgn+kS2sVvYDsETRG5PSuslisGB5CFGvb9I6FQgymBQ==}
+ engines: {node: '>=v14.16.0'}
+ hasBin: true
dependencies:
- '@rollup/pluginutils': 4.2.1
- colorette: 2.0.19
- connect-history-api-fallback: 1.6.0
- consola: 2.15.3
- dotenv: 16.0.3
- dotenv-expand: 8.0.3
- ejs: 3.1.8
- fast-glob: 3.2.12
- fs-extra: 10.1.0
- html-minifier-terser: 6.1.0
- node-html-parser: 5.4.2
+ cac: 6.7.14
+ debug: 4.3.4
+ mlly: 1.1.0
pathe: 0.2.0
- vite: 2.9.5_sass@1.55.0
+ picocolors: 1.0.0
+ source-map: 0.6.1
+ source-map-support: 0.5.21
+ vite: 4.0.4_7rfoeown37vwv4fneiebr6nt2u
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: true
+
+ /vite-node/0.27.2_ovmyjmuuyckt3r3gpaexj2onji:
+ resolution: {integrity: sha512-IDwuVhslF10qCnWOGJui7/2KksAOBHi+UbVo6Pqt4f5lgn+kS2sVvYDsETRG5PSuslisGB5CFGvb9I6FQgymBQ==}
+ engines: {node: '>=v14.16.0'}
+ hasBin: true
+ dependencies:
+ cac: 6.7.14
+ debug: 4.3.4
+ mlly: 1.1.0
+ pathe: 0.2.0
+ picocolors: 1.0.0
+ source-map: 0.6.1
+ source-map-support: 0.5.21
+ vite: 4.0.4_ovmyjmuuyckt3r3gpaexj2onji
+ transitivePeerDependencies:
+ - '@types/node'
+ - less
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
dev: true
/vite-plugin-monaco-editor/1.1.0_monaco-editor@0.33.0:
@@ -21705,121 +22142,243 @@ packages:
monaco-editor: 0.33.0
dev: true
- /vite/2.9.15_sass@1.55.0:
- resolution: {integrity: sha512-fzMt2jK4vQ3yK56te3Kqpkaeq9DkcZfBbzHwYpobasvgYmP2SoAr6Aic05CsB4CzCZbsDv4sujX3pkEGhLabVQ==}
- engines: {node: '>=12.2.0'}
+ /vite/4.0.4_7rfoeown37vwv4fneiebr6nt2u:
+ resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==}
+ engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
+ '@types/node': '>= 14'
less: '*'
sass: '*'
stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
peerDependenciesMeta:
+ '@types/node':
+ optional: true
less:
optional: true
sass:
optional: true
stylus:
optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
dependencies:
- esbuild: 0.14.54
- postcss: 8.4.18
+ '@types/node': 18.11.18
+ esbuild: 0.16.17
+ postcss: 8.4.21
resolve: 1.22.1
- rollup: 2.77.3
+ rollup: 3.10.0
sass: 1.55.0
+ terser: 5.16.1
optionalDependencies:
fsevents: 2.3.2
dev: true
- /vite/2.9.5_sass@1.55.0:
- resolution: {integrity: sha512-dvMN64X2YEQgSXF1lYabKXw3BbN6e+BL67+P3Vy4MacnY+UzT1AfkHiioFSi9+uiDUiaDy7Ax/LQqivk6orilg==}
- engines: {node: '>=12.2.0'}
+ /vite/4.0.4_ovmyjmuuyckt3r3gpaexj2onji:
+ resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==}
+ engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
+ '@types/node': '>= 14'
less: '*'
sass: '*'
stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
peerDependenciesMeta:
+ '@types/node':
+ optional: true
less:
optional: true
sass:
optional: true
stylus:
optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
dependencies:
- esbuild: 0.14.54
- postcss: 8.4.18
+ '@types/node': 18.11.18
+ esbuild: 0.16.17
+ postcss: 8.4.21
resolve: 1.22.1
- rollup: 2.79.1
- sass: 1.55.0
+ rollup: 3.10.0
+ sass: 1.57.1
optionalDependencies:
fsevents: 2.3.2
dev: true
- /vitest/0.9.3_b5ycfd3de3zzpsiaupqrfychby:
- resolution: {integrity: sha512-hKjqdBI732cV5giNLERyAsaJBebstrX5mvTbZr+jUDYUHnX1O4DpAJcHtqBOutuBi7lVIGQ5IF8eWvHHqbCHBA==}
- engines: {node: '>=v14.16.0'}
+ /vite/4.0.4_sass@1.55.0+terser@5.16.1:
+ resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==}
+ engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
peerDependencies:
- '@vitest/ui': '*'
- c8: '*'
- happy-dom: '*'
- jsdom: '*'
+ '@types/node': '>= 14'
+ less: '*'
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
peerDependenciesMeta:
- '@vitest/ui':
+ '@types/node':
optional: true
- c8:
+ less:
optional: true
- happy-dom:
+ sass:
optional: true
- jsdom:
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
optional: true
dependencies:
- '@types/chai': 4.3.3
- '@types/chai-subset': 1.3.3
- c8: 7.11.0
- chai: 4.3.6
- jsdom: 19.0.0
- local-pkg: 0.4.2
- tinypool: 0.1.3
- tinyspy: 0.3.3
- vite: 2.9.15_sass@1.55.0
- transitivePeerDependencies:
- - less
- - sass
- - stylus
+ esbuild: 0.16.17
+ postcss: 8.4.21
+ resolve: 1.22.1
+ rollup: 3.10.0
+ sass: 1.55.0
+ terser: 5.16.1
+ optionalDependencies:
+ fsevents: 2.3.2
dev: true
- /vitest/0.9.3_c8@7.12.0+sass@1.55.0:
- resolution: {integrity: sha512-hKjqdBI732cV5giNLERyAsaJBebstrX5mvTbZr+jUDYUHnX1O4DpAJcHtqBOutuBi7lVIGQ5IF8eWvHHqbCHBA==}
+ /vite/4.0.4_sass@1.57.1:
+ resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': '>= 14'
+ less: '*'
+ sass: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ sass:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ dependencies:
+ esbuild: 0.16.17
+ postcss: 8.4.21
+ resolve: 1.22.1
+ rollup: 3.10.0
+ sass: 1.57.1
+ optionalDependencies:
+ fsevents: 2.3.2
+ dev: true
+
+ /vitest/0.27.2_jsdom@21.0.0+sass@1.57.1:
+ resolution: {integrity: sha512-y7tdsL2uaQy+KF18AlmNHZe29ukyFytlxrpSTwwmgLE2XHR/aPucJP9FLjWoqjgqFlXzRAjHlFJLU+HDyI/OsA==}
engines: {node: '>=v14.16.0'}
hasBin: true
peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@vitest/browser': '*'
'@vitest/ui': '*'
- c8: '*'
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
- '@vitest/ui':
+ '@edge-runtime/vm':
optional: true
- c8:
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
optional: true
happy-dom:
optional: true
jsdom:
optional: true
dependencies:
- '@types/chai': 4.3.3
+ '@types/chai': 4.3.4
'@types/chai-subset': 1.3.3
- c8: 7.12.0
- chai: 4.3.6
+ '@types/node': 18.11.18
+ acorn: 8.8.1
+ acorn-walk: 8.2.0
+ cac: 6.7.14
+ chai: 4.3.7
+ debug: 4.3.4
+ jsdom: 21.0.0
local-pkg: 0.4.2
- tinypool: 0.1.3
- tinyspy: 0.3.3
- vite: 2.9.15_sass@1.55.0
+ picocolors: 1.0.0
+ source-map: 0.6.1
+ strip-literal: 1.0.0
+ tinybench: 2.3.1
+ tinypool: 0.3.0
+ tinyspy: 1.0.2
+ vite: 4.0.4_ovmyjmuuyckt3r3gpaexj2onji
+ vite-node: 0.27.2_ovmyjmuuyckt3r3gpaexj2onji
+ why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
- sass
- stylus
+ - sugarss
+ - supports-color
+ - terser
+ dev: true
+
+ /vitest/0.27.2_sass@1.55.0+terser@5.16.1:
+ resolution: {integrity: sha512-y7tdsL2uaQy+KF18AlmNHZe29ukyFytlxrpSTwwmgLE2XHR/aPucJP9FLjWoqjgqFlXzRAjHlFJLU+HDyI/OsA==}
+ engines: {node: '>=v14.16.0'}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@vitest/browser': '*'
+ '@vitest/ui': '*'
+ happy-dom: '*'
+ jsdom: '*'
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+ dependencies:
+ '@types/chai': 4.3.4
+ '@types/chai-subset': 1.3.3
+ '@types/node': 18.11.18
+ acorn: 8.8.1
+ acorn-walk: 8.2.0
+ cac: 6.7.14
+ chai: 4.3.7
+ debug: 4.3.4
+ local-pkg: 0.4.2
+ picocolors: 1.0.0
+ source-map: 0.6.1
+ strip-literal: 1.0.0
+ tinybench: 2.3.1
+ tinypool: 0.3.0
+ tinyspy: 1.0.2
+ vite: 4.0.4_7rfoeown37vwv4fneiebr6nt2u
+ vite-node: 0.27.2_7rfoeown37vwv4fneiebr6nt2u
+ why-is-node-running: 2.2.2
+ transitivePeerDependencies:
+ - less
+ - sass
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
dev: true
/vm-browserify/1.1.2:
@@ -21847,12 +22406,12 @@ packages:
lodash.throttle: 4.1.1
dev: false
- /vue-class-component/7.2.6_vue@2.7.13:
+ /vue-class-component/7.2.6_vue@2.7.14:
resolution: {integrity: sha512-+eaQXVrAm/LldalI272PpDe3+i4mPis0ORiMYxF6Ae4hyuCh15W8Idet7wPUEs4N4YptgFHGys4UrgNQOMyO6w==}
peerDependencies:
vue: ^2.0.0
dependencies:
- vue: 2.7.13
+ vue: 2.7.14
dev: true
/vue-color/2.8.1:
@@ -21861,10 +22420,10 @@ packages:
clamp: 1.0.1
lodash.throttle: 4.1.1
material-colors: 1.2.6
- tinycolor2: 1.4.2
+ tinycolor2: 1.5.2
dev: false
- /vue-demi/0.13.11_vue@2.7.13:
+ /vue-demi/0.13.11_vue@2.7.14:
resolution: {integrity: sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==}
engines: {node: '>=12'}
hasBin: true
@@ -21876,27 +22435,27 @@ packages:
'@vue/composition-api':
optional: true
dependencies:
- vue: 2.7.13
+ vue: 2.7.14
- /vue-docgen-api/4.52.0_vue@2.7.13:
- resolution: {integrity: sha512-2HSt9KLQ/ehJiwV4+6LgOjRqzh37vtUv6sKhSIp3CAPlwSd4/Bq2uvbs0+GJxdfrMnVquwY5DOavgNSEHsPA2w==}
+ /vue-docgen-api/4.56.4_vue@2.7.14:
+ resolution: {integrity: sha512-Z59qNUYZNHMZL0QITNbqobGKJgmqyOs4OiAdzr1Ug7ys1gkFBGewiuwPURTsoM2zi4GWZWy2eW4B5FevwT7gpA==}
dependencies:
- '@babel/parser': 7.19.4
- '@babel/types': 7.19.4
- '@vue/compiler-dom': 3.2.40
- '@vue/compiler-sfc': 3.2.40
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
+ '@vue/compiler-dom': 3.2.45
+ '@vue/compiler-sfc': 3.2.45
ast-types: 0.14.2
hash-sum: 1.0.2
lru-cache: 4.1.5
pug: 3.0.2
- recast: 0.21.1
+ recast: 0.22.0
ts-map: 1.0.3
- vue-inbrowser-compiler-independent-utils: 4.54.1_vue@2.7.13
+ vue-inbrowser-compiler-independent-utils: 4.56.2_vue@2.7.14
transitivePeerDependencies:
- vue
dev: true
- /vue-docgen-loader/1.5.1_wpwczm4j3sujbbwru7sb4vllc4:
+ /vue-docgen-loader/1.5.1_awh5tkduz2tly6kx55g4apqcei:
resolution: {integrity: sha512-coMmQYsg+fy18SVtBNU7/tztdqEyrneFfwQFLmx8O7jaJ11VZ//9tRWXlwGzJM07cPRwMHDKMlAdWrpuw3U46A==}
engines: {node: '>= 8.16'}
peerDependencies:
@@ -21904,11 +22463,11 @@ packages:
webpack: '>=4'
dependencies:
clone: 2.1.2
- jscodeshift: 0.13.1_@babel+preset-env@7.19.4
- loader-utils: 1.4.0
+ jscodeshift: 0.13.1_@babel+preset-env@7.20.2
+ loader-utils: 1.4.2
querystring: 0.2.1
- vue-docgen-api: 4.52.0_vue@2.7.13
- webpack: 5.74.0
+ vue-docgen-api: 4.56.4_vue@2.7.14
+ webpack: 4.46.0
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
@@ -21932,40 +22491,40 @@ packages:
- supports-color
dev: true
- /vue-fragment/1.5.1_vue@2.7.13:
+ /vue-fragment/1.5.1_vue@2.7.14:
resolution: {integrity: sha512-ig6eES6TcMBbANW71ylB+AJgRN+Zksb3f50AxjGpAk6hMzqmeuD80qeh4LJP0jVw2dMBMjgRUfIkrvxygoRgtQ==}
peerDependencies:
vue: ^2.5.16
dependencies:
- vue: 2.7.13
+ vue: 2.7.14
dev: false
/vue-hot-reload-api/2.3.4:
resolution: {integrity: sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==}
dev: true
- /vue-i18n/8.27.2_vue@2.7.13:
+ /vue-i18n/8.27.2_vue@2.7.14:
resolution: {integrity: sha512-QVzn7u2WVH8F7eSKIM00lujC7x1mnuGPaTnDTmB01Hd709jDtB9kYtBqM+MWmp5AJRx3gnqAdZbee9MelqwFBg==}
peerDependencies:
vue: ^2
dependencies:
- vue: 2.7.13
+ vue: 2.7.14
dev: false
- /vue-inbrowser-compiler-independent-utils/4.54.1_vue@2.7.13:
- resolution: {integrity: sha512-hQN3mzLmWM33Ua2Oua5OgF8/BJjP6+T1Wzea5xHDRYCwVvJo2pxSJLhVqluaeBe3PB5vquMddceaKC4mhLe25A==}
+ /vue-inbrowser-compiler-independent-utils/4.56.2_vue@2.7.14:
+ resolution: {integrity: sha512-szE2vZDSkZlItq+K4MevgvCGKt5IzM6OkIjyCuj/09ty2akixeQGNFRXyDELMdmVVzmN+9nJn02YKnoPkhXHwA==}
peerDependencies:
vue: '>=2'
dependencies:
- vue: 2.7.13
+ vue: 2.7.14
dev: true
- /vue-infinite-loading/2.4.5_vue@2.7.13:
+ /vue-infinite-loading/2.4.5_vue@2.7.14:
resolution: {integrity: sha512-xhq95Mxun060bRnsOoLE2Be6BR7jYwuC89kDe18+GmCLVrRA/dU0jrGb12Xu6NjmKs+iTW0AA6saSEmEW4cR7g==}
peerDependencies:
vue: ^2.6.10
dependencies:
- vue: 2.7.13
+ vue: 2.7.14
dev: false
/vue-json-pretty/1.9.3:
@@ -21973,8 +22532,8 @@ packages:
engines: {node: '>= 10.0.0', npm: '>= 5.0.0'}
dev: false
- /vue-loader/15.10.0_bmmfcdfkgwka5ige2hekgeknby:
- resolution: {integrity: sha512-VU6tuO8eKajrFeBzMssFUP9SvakEeeSi1BxdTH5o3+1yUyrldp8IERkSdXlMI2t4kxF2sqYUDsQY+WJBxzBmZg==}
+ /vue-loader/15.10.1_kqygo6wsub6p3cpcl6idox7sza:
+ resolution: {integrity: sha512-SaPHK1A01VrNthlix6h1hq4uJu7S/z0kdLUb6klubo738NeQoLbS6V9/d8Pv19tU0XdQKju3D1HSKuI8wJ5wMA==}
peerDependencies:
'@vue/compiler-sfc': ^3.0.8
cache-loader: '*'
@@ -21990,12 +22549,12 @@ packages:
optional: true
dependencies:
'@vue/component-compiler-utils': 3.3.0_6l5554ty5ajsajah6yazvrjhoe
- css-loader: 6.7.1_webpack@4.46.0
+ css-loader: 6.7.3_webpack@4.46.0
hash-sum: 1.0.2
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
vue-hot-reload-api: 2.3.4
vue-style-loader: 4.1.3
- vue-template-compiler: 2.7.13
+ vue-template-compiler: 2.7.14
webpack: 4.46.0
transitivePeerDependencies:
- arc-templates
@@ -22061,33 +22620,33 @@ packages:
unescape: 1.0.1
dev: false
- /vue-property-decorator/9.1.2_lh5kvfzhejbphpoiiowdoloare:
+ /vue-property-decorator/9.1.2_jtyyyychrtcflhl7vfprhmeb3y:
resolution: {integrity: sha512-xYA8MkZynPBGd/w5QFJ2d/NM0z/YeegMqYTphy7NJQXbZcuU6FC6AOdUAcy4SXP+YnkerC6AfH+ldg7PDk9ESQ==}
peerDependencies:
vue: '*'
vue-class-component: '*'
dependencies:
- vue: 2.7.13
- vue-class-component: 7.2.6_vue@2.7.13
+ vue: 2.7.14
+ vue-class-component: 7.2.6_vue@2.7.14
dev: true
- /vue-router/3.6.5_vue@2.7.13:
+ /vue-router/3.6.5_vue@2.7.14:
resolution: {integrity: sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ==}
peerDependencies:
vue: ^2
dependencies:
- vue: 2.7.13
+ vue: 2.7.14
dev: false
/vue-style-loader/4.1.3:
resolution: {integrity: sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==}
dependencies:
hash-sum: 1.0.2
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
dev: true
- /vue-template-compiler/2.7.13:
- resolution: {integrity: sha512-jYM6TClwDS9YqP48gYrtAtaOhRKkbYmbzE+Q51gX5YDr777n7tNI/IZk4QV4l/PjQPNh/FVa/E92sh/RqKMrog==}
+ /vue-template-compiler/2.7.14:
+ resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==}
dependencies:
de-indent: 1.0.2
he: 1.2.0
@@ -22096,31 +22655,40 @@ packages:
resolution: {integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==}
dev: true
- /vue-tsc/0.35.2_typescript@4.8.4:
- resolution: {integrity: sha512-aqY16VlODHzqtKGUkqdumNpH+s5ABCkufRyvMKQlL/mua+N2DfSVnHufzSNNUMr7vmOO0YsNg27jsspBMq4iGA==}
+ /vue-tsc/1.0.24_typescript@4.9.4:
+ resolution: {integrity: sha512-mmU1s5SAqE1nByQAiQnao9oU4vX+mSdsgI8H57SfKH6UVzq/jP9+Dbi2GaV+0b4Cn361d2ln8m6xeU60ApiEXg==}
hasBin: true
peerDependencies:
typescript: '*'
dependencies:
- '@volar/vue-typescript': 0.35.2
- typescript: 4.8.4
+ '@volar/vue-language-core': 1.0.24
+ '@volar/vue-typescript': 1.0.24
+ typescript: 4.9.4
dev: true
/vue-typed-mixins/0.2.0:
resolution: {integrity: sha512-0OxuinandPWv3nm5k/reYkuKtX3jjPZ40Sy9roJz0ih8PUzmI7zSRiXFEJ62LsyRegw9Tqy+qMkajk7ipKP8Vg==}
dev: false
- /vue/2.7.13:
- resolution: {integrity: sha512-QnM6ULTNnPmn71eUO+4hdjfBIA3H0GLsBnchnI/kS678tjI45GOUZhXd0oP/gX9isikXz1PAzSnkPspp9EUNfQ==}
+ /vue/2.7.14:
+ resolution: {integrity: sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ==}
dependencies:
- '@vue/compiler-sfc': 2.7.13
+ '@vue/compiler-sfc': 2.7.14
csstype: 3.1.1
/vue2-boring-avatars/0.3.4:
resolution: {integrity: sha512-N3FYX9Z6rZdTeP3BOBz2LMxlWo9WRmPF6SOsYzz+tEuUH0QjX8UD7c1X95J8pZ7cFvbh9QflVujYQRqRiiwoAg==}
dependencies:
- core-js: 3.25.5
- vue: 2.7.13
+ core-js: 3.27.1
+ vue: 2.7.14
+ vue-color: 2.8.1
+ dev: false
+
+ /vue2-boring-avatars/0.3.8:
+ resolution: {integrity: sha512-8vNN+zhCIiIMnSQDu0DwhJ11e9r3t4t12dromXmXDtRryBhV58NPn4XgMb4JKrBlfNK92KFrY/cxRy3nzhQfpQ==}
+ dependencies:
+ core-js: 3.27.1
+ vue: 2.7.14
vue-color: 2.8.1
dev: false
@@ -22132,12 +22700,6 @@ packages:
resolution: {integrity: sha512-rGV8jxgOQEJYkJCp7uOBe3hjvmG1arThrq1wGtJHwJTgi65+P2a+0l4CYcQO/U1ZFqTq2/TT2+oTE6H7Y+6Eog==}
dev: false
- /w3c-hr-time/1.0.2:
- resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}
- dependencies:
- browser-process-hrtime: 1.0.0
- dev: true
-
/w3c-keyname/2.2.6:
resolution: {integrity: sha512-f+fciywl1SJEniZHD6H+kUO8gOnwIr7f4ijKA6+ZvJFjeGi1r4PDLl53Ayud9O/rk64RqgoQine0feoeOU0kXg==}
dev: false
@@ -22149,6 +22711,13 @@ packages:
xml-name-validator: 4.0.0
dev: true
+ /w3c-xmlserializer/4.0.0:
+ resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==}
+ engines: {node: '>=14'}
+ dependencies:
+ xml-name-validator: 4.0.0
+ dev: true
+
/wait-on/6.0.0_debug@4.3.2:
resolution: {integrity: sha512-tnUJr9p5r+bEYXPUdRseolmz5XqJTTj98JgOsfBn7Oz2dxfE2g3zw1jE+Mo8lopM3j3et/Mq1yW7kKX6qw7RVw==}
engines: {node: '>=10.0.0'}
@@ -22232,8 +22801,8 @@ packages:
webpack: 4.46.0
dev: true
- /webpack-hot-middleware/2.25.2:
- resolution: {integrity: sha512-CVgm3NAQyfdIonRvXisRwPTUYuSbyZ6BY7782tMeUzWOO7RmVI2NaBYuCp41qyD4gYCkJyTneAJdK69A13B0+A==}
+ /webpack-hot-middleware/2.25.3:
+ resolution: {integrity: sha512-IK/0WAHs7MTu1tzLTjio73LjS3Ov+VvBKQmE8WPlJutgG5zT6Urgq/BbAdRrHTRpyzK0dvAvFh1Qg98akxgZpA==}
dependencies:
ansi-html-community: 0.0.8
html-entities: 2.3.3
@@ -22293,7 +22862,7 @@ packages:
eslint-scope: 4.0.3
json-parse-better-errors: 1.0.2
loader-runner: 2.4.0
- loader-utils: 1.4.0
+ loader-utils: 1.4.2
memory-fs: 0.4.1
micromatch: 3.1.10
mkdirp: 0.5.6
@@ -22360,14 +22929,6 @@ packages:
engines: {node: '>=12'}
dev: true
- /whatwg-url/10.0.0:
- resolution: {integrity: sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==}
- engines: {node: '>=12'}
- dependencies:
- tr46: 3.0.0
- webidl-conversions: 7.0.0
- dev: true
-
/whatwg-url/11.0.0:
resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
engines: {node: '>=12'}
@@ -22390,6 +22951,15 @@ packages:
is-string: 1.0.7
is-symbol: 1.0.4
+ /which-collection/1.0.1:
+ resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
+ dependencies:
+ is-map: 2.0.2
+ is-set: 2.0.2
+ is-weakmap: 2.0.1
+ is-weakset: 2.0.2
+ dev: true
+
/which-module/1.0.0:
resolution: {integrity: sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==}
dev: true
@@ -22410,6 +22980,17 @@ packages:
is-typed-array: 1.1.9
dev: false
+ /which-typed-array/1.1.9:
+ resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ gopd: 1.0.1
+ has-tostringtag: 1.0.0
+ is-typed-array: 1.1.10
+
/which/1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
@@ -22423,6 +23004,15 @@ packages:
dependencies:
isexe: 2.0.0
+ /why-is-node-running/2.2.2:
+ resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==}
+ engines: {node: '>=8'}
+ hasBin: true
+ dependencies:
+ siginfo: 2.0.0
+ stackback: 0.0.2
+ dev: true
+
/wide-align/1.1.5:
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
dependencies:
@@ -22471,8 +23061,8 @@ packages:
resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==}
engines: {node: '>= 10.0.0'}
dependencies:
- '@babel/parser': 7.19.4
- '@babel/types': 7.19.4
+ '@babel/parser': 7.20.7
+ '@babel/types': 7.20.7
assert-never: 1.2.1
babel-walk: 3.0.0-canary-5
dev: true
@@ -22586,6 +23176,19 @@ packages:
optional: true
dev: false
+ /ws/8.12.0:
+ resolution: {integrity: sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+ dev: true
+
/ws/8.9.0:
resolution: {integrity: sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==}
engines: {node: '>=10.0.0'}