diff --git a/.changeset/six-rules-sip.md b/.changeset/six-rules-sip.md new file mode 100644 index 0000000000..4a45c29a74 --- /dev/null +++ b/.changeset/six-rules-sip.md @@ -0,0 +1,11 @@ +--- +'@swisspost/design-system-intranet-header': patch +'@swisspost/design-system-components-angular': patch +'@swisspost/internet-header': patch +'@swisspost/design-system-documentation': patch +'@swisspost/design-system-components': patch +'@swisspost/design-system-styles': patch +'@swisspost/design-system-demo': patch +--- + +Reverted the update to Bootstrap 5.2 and Angular 15. This update should have been a major release and will be re-released as such as soon as possible. diff --git a/packages/changelog-github/package.json b/packages/changelog-github/package.json index f3d2ae9ab5..d03fb8ca8f 100644 --- a/packages/changelog-github/package.json +++ b/packages/changelog-github/package.json @@ -26,6 +26,6 @@ }, "devDependencies": { "@changesets/parse": "*", - "typescript": "4.9.5" + "typescript": "4.8.4" } } diff --git a/packages/components-angular/angular.json b/packages/components-angular/angular.json index f138ec852e..20ba29bdf4 100644 --- a/packages/components-angular/angular.json +++ b/packages/components-angular/angular.json @@ -147,13 +147,5 @@ } } } - }, - "schematics": { - "@angular-eslint/schematics:application": { - "setParserOptionsProject": true - }, - "@angular-eslint/schematics:library": { - "setParserOptionsProject": true - } } } diff --git a/packages/components-angular/package.json b/packages/components-angular/package.json index ab04a0c1fa..63e401905f 100644 --- a/packages/components-angular/package.json +++ b/packages/components-angular/package.json @@ -10,16 +10,16 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "15.1.5", - "@angular/common": "15.1.5", - "@angular/compiler": "15.1.5", - "@angular/core": "15.1.5", - "@angular/forms": "15.1.5", - "@angular/localize": "15.1.5", - "@angular/platform-browser": "15.1.5", - "@angular/platform-browser-dynamic": "15.1.5", - "@angular/router": "15.1.5", - "@ng-bootstrap/ng-bootstrap": "14.0.1", + "@angular/animations": "14.2.12", + "@angular/common": "14.2.12", + "@angular/compiler": "14.2.12", + "@angular/core": "14.2.12", + "@angular/forms": "14.2.12", + "@angular/localize": "14.2.12", + "@angular/platform-browser": "14.2.12", + "@angular/platform-browser-dynamic": "14.2.12", + "@angular/router": "14.2.12", + "@ng-bootstrap/ng-bootstrap": "12.1.2", "@popperjs/core": "2.11.6", "@swisspost/design-system-styles": "workspace:5.4.0", "rxjs": "7.8.0", @@ -28,14 +28,14 @@ "zone.js": "0.12.0" }, "devDependencies": { - "@angular-devkit/build-angular": "15.1.6", - "@angular-eslint/builder": "15.2.1", - "@angular-eslint/eslint-plugin": "15.2.1", - "@angular-eslint/eslint-plugin-template": "15.2.1", - "@angular-eslint/schematics": "15.2.1", - "@angular-eslint/template-parser": "15.2.1", - "@angular/cli": "15.1.6", - "@angular/compiler-cli": "15.1.5", + "@angular-devkit/build-angular": "14.2.10", + "@angular-eslint/builder": "14.4.0", + "@angular-eslint/eslint-plugin": "14.4.0", + "@angular-eslint/eslint-plugin-template": "14.4.0", + "@angular-eslint/schematics": "14.4.0", + "@angular-eslint/template-parser": "14.4.0", + "@angular/cli": "14.2.10", + "@angular/compiler-cli": "14.2.12", "@types/jasmine": "4.3.1", "@types/node": "18.14.0", "@typescript-eslint/eslint-plugin": "5.53.0", @@ -47,8 +47,8 @@ "karma-coverage": "2.2.0", "karma-jasmine": "5.1.0", "karma-jasmine-html-reporter": "2.0.0", - "ng-packagr": "15.1.2", + "ng-packagr": "14.2.2", "rimraf": "4.1.2", - "typescript": "4.9.5" + "typescript": "4.8.4" } } diff --git a/packages/components-angular/projects/intranet-header-showcase/src/test.ts b/packages/components-angular/projects/intranet-header-showcase/src/test.ts index 51bb0206a2..c04c876075 100644 --- a/packages/components-angular/projects/intranet-header-showcase/src/test.ts +++ b/packages/components-angular/projects/intranet-header-showcase/src/test.ts @@ -7,8 +7,20 @@ import { platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing'; +declare const require: { + context(path: string, deep?: boolean, filter?: RegExp): { + (id: string): T; + keys(): string[]; + }; +}; + // First, initialize the Angular testing environment. getTestBed().initTestEnvironment( BrowserDynamicTestingModule, platformBrowserDynamicTesting(), ); + +// Then we find all the tests. +const context = require.context('./', true, /\.spec\.ts$/); +// And load the modules. +context.keys().forEach(context); diff --git a/packages/components-angular/projects/intranet-header/src/test.ts b/packages/components-angular/projects/intranet-header/src/test.ts index 438083679a..5775317abc 100644 --- a/packages/components-angular/projects/intranet-header/src/test.ts +++ b/packages/components-angular/projects/intranet-header/src/test.ts @@ -8,8 +8,20 @@ import { platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing'; +declare const require: { + context(path: string, deep?: boolean, filter?: RegExp): { + (id: string): T; + keys(): string[]; + }; +}; + // First, initialize the Angular testing environment. getTestBed().initTestEnvironment( BrowserDynamicTestingModule, platformBrowserDynamicTesting(), ); + +// Then we find all the tests. +const context = require.context('./', true, /\.spec\.ts$/); +// And load the modules. +context.keys().forEach(context); diff --git a/packages/components-angular/tsconfig.json b/packages/components-angular/tsconfig.json index 9bd267b72d..c128662d0a 100644 --- a/packages/components-angular/tsconfig.json +++ b/packages/components-angular/tsconfig.json @@ -16,7 +16,7 @@ "experimentalDecorators": true, "moduleResolution": "node", "importHelpers": true, - "target": "ES2022", + "target": "es2020", "module": "es2020", "paths": { "intranet-header": [ @@ -27,8 +27,7 @@ "lib": [ "es2020", "dom" - ], - "useDefineForClassFields": false + ] }, "angularCompilerOptions": { "enableI18nLegacyMessageIdFormat": false, diff --git a/packages/components/package.json b/packages/components/package.json index e8545f2690..d10cb6452a 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -41,7 +41,7 @@ "@stencil/react-output-target": "0.4.0", "@stencil/sass": "2.0.3", "@swisspost/design-system-styles": "workspace:5.4.0", - "bootstrap": "5.2.3", + "bootstrap": "5.1.3", "puppeteer": "19.7.2", "sass": "1.58.3" }, @@ -54,6 +54,6 @@ "jest": "27.5.1", "jest-cli": "27.5.1", "npm-run-all": "4.1.5", - "typescript": "4.9.5" + "typescript": "4.8.4" } } diff --git a/packages/demo/angular.json b/packages/demo/angular.json index 8105a9e39b..86dda927af 100644 --- a/packages/demo/angular.json +++ b/packages/demo/angular.json @@ -13,16 +13,23 @@ "build": { "builder": "@angular-devkit/build-angular:browser", "options": { - "allowedCommonJsDependencies": ["bootstrap/js/dist/collapse", "prettier"], "outputPath": "dist/demo", "index": "src/index.html", "main": "src/main.ts", "polyfills": "src/polyfills.ts", "tsConfig": "src/tsconfig.app.json", - "assets": ["src/favicon.ico", "src/assets"], - "styles": ["src/styles.scss", "./node_modules/highlight.js/styles/vs2015.css"], + "assets": [ + "src/favicon.ico", + "src/assets" + ], + "styles": [ + "src/styles.scss", + "./node_modules/highlight.js/styles/vs2015.css" + ], "stylePreprocessorOptions": { - "includePaths": ["node_modules"] + "includePaths": [ + "node_modules" + ] }, "vendorChunk": true, "extractLicenses": false, @@ -80,15 +87,23 @@ "polyfills": "src/polyfills.ts", "tsConfig": "src/tsconfig.spec.json", "karmaConfig": "src/karma.conf.js", - "styles": ["src/styles.scss"], + "styles": [ + "src/styles.scss" + ], "scripts": [], - "assets": ["src/favicon.ico", "src/assets"] + "assets": [ + "src/favicon.ico", + "src/assets" + ] } }, "lint": { "builder": "@angular-eslint/builder:lint", "options": { - "lintFilePatterns": ["src/**/*.ts", "src/**/*.html"] + "lintFilePatterns": [ + "src/**/*.ts", + "src/**/*.html" + ] } } } @@ -106,13 +121,5 @@ } } } - }, - "schematics": { - "@angular-eslint/schematics:application": { - "setParserOptionsProject": true - }, - "@angular-eslint/schematics:library": { - "setParserOptionsProject": true - } } } diff --git a/packages/demo/package.json b/packages/demo/package.json index ce343d9f28..f5016f992d 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -12,42 +12,42 @@ "lint": "ng lint" }, "dependencies": { - "@angular/animations": "15.1.5", - "@angular/cdk": "15.2.0", - "@angular/common": "15.1.5", - "@angular/compiler": "15.1.5", - "@angular/core": "15.1.5", - "@angular/forms": "15.1.5", - "@angular/localize": "15.1.5", - "@angular/platform-browser": "15.1.5", - "@angular/platform-browser-dynamic": "15.1.5", - "@angular/router": "15.1.5", - "@ng-bootstrap/ng-bootstrap": "14.0.1", + "@angular/animations": "14.2.12", + "@angular/cdk": "14.2.7", + "@angular/common": "14.2.12", + "@angular/compiler": "14.2.12", + "@angular/core": "14.2.12", + "@angular/forms": "14.2.12", + "@angular/localize": "14.2.12", + "@angular/platform-browser": "14.2.12", + "@angular/platform-browser-dynamic": "14.2.12", + "@angular/router": "14.2.12", + "@ng-bootstrap/ng-bootstrap": "12.1.2", "@popperjs/core": "2.11.6", "@swimlane/ngx-datatable": "20.1.0", "@swisspost/design-system-intranet-header": "workspace:3.1.0", "@swisspost/design-system-styles": "workspace:5.4.0", - "bootstrap": "5.2.3", + "bootstrap": "5.1.3", "core-js": "3.28.0", "highlight.js": "11.7.0", - "ngx-highlightjs": "8.0.0", - "ngx-toastr": "16.0.2", + "ngx-highlightjs": "7.0.1", + "ngx-toastr": "15.2.2", "rxjs": "7.8.0", "tslib": "2.5.0", "zone.js": "0.12.0" }, "devDependencies": { - "@angular-devkit/build-angular": "15.1.6", + "@angular-devkit/build-angular": "14.2.10", "@angular-devkit/build-optimizer": "0.1202.18", - "@angular-eslint/builder": "15.2.1", - "@angular-eslint/eslint-plugin": "15.2.1", - "@angular-eslint/eslint-plugin-template": "15.2.1", - "@angular-eslint/schematics": "15.2.1", - "@angular-eslint/template-parser": "15.2.1", - "@angular/cli": "15.1.6", - "@angular/compiler-cli": "15.1.5", - "@angular/elements": "15.1.5", - "@angular/language-service": "15.1.5", + "@angular-eslint/builder": "14.4.0", + "@angular-eslint/eslint-plugin": "14.4.0", + "@angular-eslint/eslint-plugin-template": "14.4.0", + "@angular-eslint/schematics": "14.4.0", + "@angular-eslint/template-parser": "14.4.0", + "@angular/cli": "14.2.10", + "@angular/compiler-cli": "14.2.12", + "@angular/elements": "14.2.12", + "@angular/language-service": "14.2.12", "@types/highlight.js": "9.12.4", "@types/jasmine": "4.3.1", "@types/jasminewd2": "2.0.10", @@ -71,7 +71,7 @@ "sass": "1.58.3", "sockjs": "0.3.24", "ts-node": "10.9.1", - "typescript": "4.9.5", + "typescript": "4.8.4", "webpack": "5.75.0" } } diff --git a/packages/demo/src/app/app-routing.module.ts b/packages/demo/src/app/app-routing.module.ts index 1c7f4c1314..ccfcad001c 100644 --- a/packages/demo/src/app/app-routing.module.ts +++ b/packages/demo/src/app/app-routing.module.ts @@ -150,6 +150,7 @@ const routes: Routes = [ imports: [ RouterModule.forRoot(routes, { useHash: true, + relativeLinkResolution: "legacy", }), ], exports: [RouterModule], diff --git a/packages/demo/src/app/home/home.component.html b/packages/demo/src/app/home/home.component.html index e4775869df..5edb4fdfb8 100644 --- a/packages/demo/src/app/home/home.component.html +++ b/packages/demo/src/app/home/home.component.html @@ -164,22 +164,17 @@

  • Update your packages 🩺

    - If your Angular version is lower than 15, use - - https://update.angular.io/ - - to update Angular step by step to version 15. + If your Angular version is lower than 14, use + https://update.angular.io/ + to update Angular step by step to version 14.

    Make sure, you have updated all your packages as far as possible.

  • Bootstrap migration 🥾

    - Check the - - Bootstrap migration guide - - to see if you need to update any Bootstrap-related code. + Check the Bootstrap + migration guide to see if you need to update any Bootstrap-related code.

  • @@ -191,8 +186,8 @@

    Automatic migration tool ⚙️

  • Commit all the changes you made until now
  • Make sure you are running on a node version >= 16
  • - You should now be able to run the following command to have automatic migrations applied - to your application: + You should now be able to run the following command to have automatic migrations + applied to your application: Migrations list
  • Some changes cannot be migrated automatically.
    - Check the list of changes below and apply the transformations manually if your application - is affected. + Check the list of changes below and apply the transformations manually if your application is affected.

    - Changes flagged with the ⚙️ symbol should be automatically migrated with our migration - tool. + Changes flagged with the ⚙️ symbol should be automatically migrated with our migration tool.

    @@ -353,10 +346,7 @@
    Paths & Files
    Read more about Sass modules and the @use rule in the Sass - - @use documentation - - . + @use documentation. diff --git a/packages/demo/src/test.ts b/packages/demo/src/test.ts index 51bb0206a2..183bbb7c20 100644 --- a/packages/demo/src/test.ts +++ b/packages/demo/src/test.ts @@ -7,8 +7,19 @@ import { platformBrowserDynamicTesting } from '@angular/platform-browser-dynamic/testing'; +declare const require: { + context(path: string, deep?: boolean, filter?: RegExp): { + keys(): string[]; + (id: string): T; + }; +}; + // First, initialize the Angular testing environment. getTestBed().initTestEnvironment( BrowserDynamicTestingModule, platformBrowserDynamicTesting(), ); +// Then we find all the tests. +const context = require.context('./', true, /\.spec\.ts$/); +// And load the modules. +context.keys().forEach(context); diff --git a/packages/demo/tsconfig.json b/packages/demo/tsconfig.json index 303c871354..70cb3ae299 100644 --- a/packages/demo/tsconfig.json +++ b/packages/demo/tsconfig.json @@ -10,7 +10,7 @@ "moduleResolution": "node", "experimentalDecorators": true, "importHelpers": true, - "target": "ES2022", + "target": "es2020", "allowJs": true, "resolveJsonModule": true, "allowSyntheticDefaultImports": true, @@ -20,7 +20,6 @@ "lib": [ "es2018", "dom" - ], - "useDefineForClassFields": false + ] } } diff --git a/packages/documentation/package.json b/packages/documentation/package.json index 129eca9d30..30b4ae92a2 100644 --- a/packages/documentation/package.json +++ b/packages/documentation/package.json @@ -66,6 +66,6 @@ "start-server-and-test": "1.15.4", "storybook-dark-mode": "2.1.0", "style-loader": "2.0.0", - "typescript": "4.9.5" + "typescript": "4.6.4" } } diff --git a/packages/icons/package.json b/packages/icons/package.json index ab87af2094..1b27c3b753 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -43,6 +43,6 @@ "svgo": "3.0.2", "ts-jest": "26.5.6", "ts-node": "10.9.1", - "typescript": "4.9.5" + "typescript": "4.8.4" } } diff --git a/packages/internet-header/package.json b/packages/internet-header/package.json index 6bbd2042f9..0c9450c6de 100644 --- a/packages/internet-header/package.json +++ b/packages/internet-header/package.json @@ -66,7 +66,7 @@ "@types/node": "18.14.0", "@types/throttle-debounce": "5.0.0", "babel-loader": "9.1.2", - "bootstrap": "5.2.3", + "bootstrap": "5.1", "cypress": "12.6.0", "cypress-each": "1.13.1", "cypress-storybook": "0.5.1", @@ -80,6 +80,6 @@ "sass": "1.58.3", "start-server-and-test": "1.15.4", "ts-jest": "26.5.6", - "typescript": "4.9.5" + "typescript": "4.8.4" } } diff --git a/packages/styles/package.json b/packages/styles/package.json index 490b8ee045..e509f1afe4 100644 --- a/packages/styles/package.json +++ b/packages/styles/package.json @@ -33,17 +33,17 @@ "schematics:build": "copyfiles schematics/migrations.json dist && tsc -p tsconfig.schematics.json" }, "dependencies": { - "@angular-devkit/core": "<=15.0.4", - "@angular-devkit/schematics": "<=15.0.4", - "@angular/core": "<=15.0.4", + "@angular-devkit/core": "14.2.10", + "@angular-devkit/schematics": "14.2.10", + "@angular/core": "14.2.12", "@popperjs/core": "2.11.6", - "bootstrap": "5.2.3", + "bootstrap": "5.1.3", "cheerio": "1.0.0-rc.12", "prettier": "2.8.4", - "typescript": "4.9.5" + "typescript": "4.8.4" }, "devDependencies": { - "@angular/compiler": "<=15.0.4", + "@angular/compiler": "14.2.12", "@percy/cli": "1.20.0", "@percy/cypress": "3.1.2", "@types/node": "18.14.0", diff --git a/packages/styles/schematics/utils/css/css-classes-update.ts b/packages/styles/schematics/utils/css/css-classes-update.ts new file mode 100644 index 0000000000..460e2e7c1e --- /dev/null +++ b/packages/styles/schematics/utils/css/css-classes-update.ts @@ -0,0 +1,33 @@ +type Replacer = ((...params: any) => string); + +export abstract class CssClassesUpdate { + tagSelector: string; + classSelector: string; + attributeSelector: string; + abstract searchValue: string; + abstract replaceValue: string | Replacer; + + get tag(): RegExp | null { + return this.tagSelector ? new RegExp(`^${this.tagSelector}$`) : null; + } + + get class(): RegExp | null { + return this.classSelector ? new RegExp(`^${this.classSelector}$`) : null; + } + + get attribute(): RegExp | null { + return this.attributeSelector ? new RegExp(`^${this.attributeSelector}$`) : null; + } + + get searcher(): RegExp { + return new RegExp(`^${this.searchValue}$`); + } + + get replacer(): (substring: string, ...args: any[]) => string { + if (typeof this.replaceValue === "string") { + return () => (this.replaceValue); + } else { + return (_substring: string, ...args: any[]) => (this.replaceValue)(...args); + } + } +} diff --git a/packages/styles/schematics/utils/css/css-migration-rule.ts b/packages/styles/schematics/utils/css/css-migration-rule.ts new file mode 100644 index 0000000000..909c09456a --- /dev/null +++ b/packages/styles/schematics/utils/css/css-migration-rule.ts @@ -0,0 +1,122 @@ +import {logging, normalize} from '@angular-devkit/core'; +import {Rule, SchematicContext, SchematicsException, Tree} from '@angular-devkit/schematics'; +import {loadEsmModule} from "@angular/core/schematics/utils/load_esm"; +import {NgComponentTemplateVisitor, ResolvedTemplate} from "@angular/core/schematics/utils/ng_component_template"; +import {parseHtmlGracefully} from "@angular/core/schematics/utils/parse_html"; +import {getProjectTsConfigPaths} from "@angular/core/schematics/utils/project_tsconfig_paths"; +import {canMigrateFile, createMigrationProgram} from "@angular/core/schematics/utils/typescript/compiler_host"; +import {relative} from 'path'; +import {SourceFile} from "typescript"; +import {CssMigration} from "./css-migration"; +import {CssClassesVisitor, Replacement} from "./html_css_classes_visitor"; + +type Logger = logging.LoggerApi; + +interface FixedTemplate { + originalTemplate: ResolvedTemplate; + replacements: Replacement[]; +} + +/** Entry point for the CSS migration. */ +export function getCssMigrationRule(cssMigration: CssMigration): Rule { + return async (tree: Tree, context: SchematicContext) => { + const {buildPaths, testPaths} = await getProjectTsConfigPaths(tree); + const basePath = process.cwd(); + + if (!buildPaths.length && !testPaths.length) { + throw new SchematicsException('Could not find any tsconfig file. Cannot check templates for empty routerLinks.'); + } + + let compilerModule; + try { + compilerModule = await loadEsmModule('@angular/compiler'); + } catch (e) { + throw new SchematicsException(`Unable to load the '@angular/compiler' package. Details: ${(e as Error).message}`); + } + + for (const tsconfigPath of [...buildPaths, ...testPaths]) { + runCssMigration(cssMigration, tree, tsconfigPath, basePath, context.logger, compilerModule); + } + }; +} + +/** + * Runs the CSS migration, updating CSS classes base on given configuration + */ +function runCssMigration(cssMigration: CssMigration, tree: Tree, tsconfigPath: string, basePath: string, logger: Logger, compilerModule: typeof import('@angular/compiler')) { + const {program} = createMigrationProgram(tree, tsconfigPath, basePath); + const typeChecker = program.getTypeChecker(); + const templateVisitor = new NgComponentTemplateVisitor(typeChecker, basePath, tree); + const sourceFiles = program.getSourceFiles() + .filter((sourceFile: SourceFile) => canMigrateFile(basePath, sourceFile, program)); + + sourceFiles.forEach((sourceFile: SourceFile) => templateVisitor.visitNode(sourceFile)); + + const {resolvedTemplates} = templateVisitor; + updateOutdatedCss(cssMigration, resolvedTemplates, tree, logger, compilerModule); +} + +function updateOutdatedCss(cssMigration: CssMigration, resolvedTemplates: ResolvedTemplate[], tree: Tree, logger: Logger, compilerModule: typeof import('@angular/compiler')) { + const basePath = process.cwd(); + const fixesByFile = getFixesByFile(cssMigration, resolvedTemplates, compilerModule); + + for (const [absFilePath, templateFixes] of fixesByFile) { + const treeFilePath = relative(normalize(basePath), normalize(absFilePath)); + const originalFileContent = tree.read(treeFilePath)?.toString(); + if (originalFileContent === undefined) { + logger.error(`Failed to read file containing template; cannot apply CSS changes in ${treeFilePath}.`); + continue; + } + + const updater = tree.beginUpdate(treeFilePath); + for (const templateFix of templateFixes) { + templateFix.replacements.sort((a, b) => b.start - a.start); + for (const replacement of templateFix.replacements) { + updater.remove(replacement.start, replacement.end - replacement.start); + updater.insertLeft(replacement.start, replacement.newContent); + } + tree.commitUpdate(updater); + } + } +} + +/** + * Returns fixes for nodes in templates which use lft and right CSS classes, grouped by file. + */ +function getFixesByFile(cssMigration: CssMigration, templates: ResolvedTemplate[], compilerModule: typeof import('@angular/compiler')): Map { + const fixesByFile = new Map(); + for (const template of templates) { + const templateFix = updateOutdatedCssInTemplate(cssMigration, template, compilerModule); + if (templateFix === null) { + continue; + } + + const file = template.filePath; + if (fixesByFile.has(file)) { + if (template.inline) { + fixesByFile.get(file)!.push(templateFix); + } + } else { + fixesByFile.set(file, [templateFix]); + } + } + + return fixesByFile; +} + +function updateOutdatedCssInTemplate(cssMigration: CssMigration, template: ResolvedTemplate, compilerModule: typeof import('@angular/compiler')): FixedTemplate|null { + const templateNodes = parseHtmlGracefully(template.content, template.filePath, compilerModule); + + if (!templateNodes) { + return null; + } + + const visitor = new CssClassesVisitor(cssMigration, compilerModule); + visitor.visitAll(templateNodes); + + if (!visitor.replacements || visitor.replacements.length === 0) { + return null; + } + + return {originalTemplate: template, replacements: visitor.replacements}; +} diff --git a/packages/styles/schematics/utils/css/css-migration.ts b/packages/styles/schematics/utils/css/css-migration.ts new file mode 100644 index 0000000000..aaf98e3fad --- /dev/null +++ b/packages/styles/schematics/utils/css/css-migration.ts @@ -0,0 +1,43 @@ +import { TmplAstElement, TmplAstTemplate } from "@angular/compiler"; +import {Rule} from "@angular-devkit/schematics"; +import {CssClassesUpdate} from "./css-classes-update"; +import {getCssMigrationRule} from "./css-migration-rule"; + +export class CssMigration { + updates: CssClassesUpdate[] + filteredUpdates: CssClassesUpdate[] + rule: Rule; + + constructor(...updates: CssClassesUpdate[]) { + this.updates = updates; + this.rule = getCssMigrationRule(this); + } + + currentElement (element: TmplAstElement | null) { + this.filteredUpdates = this.updates + .filter(u => u.tag === null || u.tag.test(element?.name ?? '')) + .filter(u => u.class === null || element?.attributes.some(a => a.name === 'class' && a.value.split(' ').some(v => u.class?.test(v)))) + .filter(u => u.attribute === null || element?.attributes.some(a => u.attribute?.test(a.name))); + } + + currentTemplate (element: TmplAstTemplate | null) { + this.filteredUpdates = this.updates + .filter(u => u.tag === null || u.tag.test(element?.tagName ?? '')) + .filter(u => u.class === null || element?.attributes.some(a => a.name === 'class' && a.value.split(' ').some(v => u.class?.test(v)))) + .filter(u => u.attribute === null || element?.attributes.some(a => u.attribute?.test(a.name))); + } + + evaluate(classes: string = ''): boolean { + return classes + .split(' ') + .some(cssClass => this.filteredUpdates.some(update => update.searcher.test(cssClass))); + } + + apply(classes: string = ''): string { + return classes + .split(' ') + .map(cssClass => this.filteredUpdates.reduce((updatedClass, update) => updatedClass.replace(update.searcher, update.replacer), cssClass)) + .filter(cssClass => cssClass !== '') + .join(' '); + } +} diff --git a/packages/styles/schematics/utils/css/html_css_classes_visitor.ts b/packages/styles/schematics/utils/css/html_css_classes_visitor.ts new file mode 100644 index 0000000000..575b747066 --- /dev/null +++ b/packages/styles/schematics/utils/css/html_css_classes_visitor.ts @@ -0,0 +1,91 @@ +import {TmplAstBoundAttribute, TmplAstTextAttribute} from "@angular/compiler"; +import type {TmplAstElement, TmplAstTemplate} from '@angular/compiler'; +import {TemplateAstVisitor} from "@angular/core/schematics/utils/template_ast_visitor"; +import {CssMigration} from "./css-migration"; + +export interface Replacement { + id: string, + start: number; + end: number; + newContent: string; +} + +/** + * HTML AST visitor that traverses the Render3 HTML AST in order to find all outdated CSS classes. + */ +export class CssClassesVisitor extends TemplateAstVisitor { + readonly replacements: Replacement[] = []; + + constructor(private cssMigration: CssMigration, compilerModule: typeof import('@angular/compiler')) { + super(compilerModule); + } + + override visitElement(element: TmplAstElement): void { + this.cssMigration.currentElement(element); + + this.visitAll(element.attributes); // text attributes + this.visitAll(element.inputs); // bound attributes + this.visitAll(element.children); + } + + override visitTemplate(t: TmplAstTemplate): void { + this.cssMigration.currentTemplate(t); + + this.visitAll(t.attributes); // text attributes + this.visitAll(t.inputs); // bound attributes + this.visitAll(t.children); + } + + override visitBoundAttribute(node: TmplAstBoundAttribute) { + // check classes bound using [class.someClassName] directive + if (node.keySpan?.details?.startsWith('class.') && this.cssMigration.evaluate(node.name)) { + this.setReplacement('directive', node.keySpan.start.offset, node.keySpan.end.offset, 'class.' + this.cssMigration.apply(node.name)); + } + + // check classes bound using [ngClass] directive + if (node.name === 'ngClass' && node.value instanceof this.compilerModule.ASTWithSource) { + const ast = node.value.ast; + + + if (ast instanceof this.compilerModule.LiteralPrimitive) { // bounded value is a string + this.setReplacement('string', ast.sourceSpan.start + 1, ast.sourceSpan.end - 1, this.cssMigration.apply(ast.value)); + + } else if (ast instanceof this.compilerModule.LiteralArray) { // bounded value is an array of strings + ast.expressions + .filter(expr => this.cssMigration.evaluate(expr.value)) + .forEach(expr => { + this.setReplacement('string-array', expr.sourceSpan.start + 1, expr.sourceSpan.end - 1, this.cssMigration.apply(expr.value)); + }); + + } else if (ast instanceof this.compilerModule.LiteralMap) { // bounded value is an object + const source = node.value.source || ''; + ast.keys + .filter(expr => this.cssMigration.evaluate(expr.key)) + .forEach((expr, i) => { + const valueStart = ast.values[i].span.start; + const keyStart = source.lastIndexOf(expr.key, valueStart); + const offset = ast.sourceSpan.start; + this.setReplacement('object', keyStart + offset, keyStart + expr.key.length + offset, this.cssMigration.apply(expr.key)); + }); + } + } + } + + override visitTextAttribute(node: TmplAstTextAttribute) { + // check basic class attributes + if (node.name === 'class' && node.valueSpan && this.cssMigration.evaluate(node.value)) { + this.setReplacement('class', node.valueSpan.start.offset, node.valueSpan.end.offset, this.cssMigration.apply(node.value)); + } + } + + private setReplacement (type: string, start: number, end: number, newContent: string) { + const replacement = { + id: `${type}::${start}::${end}::${newContent}`, + start, + end, + newContent + }; + + if (!this.replacements.some(r => r.id === replacement.id)) this.replacements.push(replacement); + } +} diff --git a/packages/styles/src/components/accordion.scss b/packages/styles/src/components/accordion.scss index 504ce3135a..18a63c3193 100644 --- a/packages/styles/src/components/accordion.scss +++ b/packages/styles/src/components/accordion.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/accordion' as ba; @use './../mixins/type'; diff --git a/packages/styles/src/components/alert.scss b/packages/styles/src/components/alert.scss index 8c60a112e8..779d82d5b8 100644 --- a/packages/styles/src/components/alert.scss +++ b/packages/styles/src/components/alert.scss @@ -3,7 +3,7 @@ @use 'sass:map'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../variables/color'; @use './../variables/commons'; diff --git a/packages/styles/src/components/badge.scss b/packages/styles/src/components/badge.scss index 03a30a505b..37ac36adb4 100644 --- a/packages/styles/src/components/badge.scss +++ b/packages/styles/src/components/badge.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/badge' as bb; @use './../themes/bootstrap/close' as bc; // Styles for the close icon diff --git a/packages/styles/src/components/breadcrumb.scss b/packages/styles/src/components/breadcrumb.scss index d8a26acf70..b85b1d244e 100644 --- a/packages/styles/src/components/breadcrumb.scss +++ b/packages/styles/src/components/breadcrumb.scss @@ -3,7 +3,7 @@ @use 'sass:map'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/breadcrumbs' as bb; @use './../variables/type'; diff --git a/packages/styles/src/components/card.scss b/packages/styles/src/components/card.scss index ca61142feb..ef61795ca3 100644 --- a/packages/styles/src/components/card.scss +++ b/packages/styles/src/components/card.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as bootstrap; @use './../themes/bootstrap/card' as bootstrap-card; @use './../variables/color'; @use './../variables/spacing'; @@ -92,19 +92,19 @@ .product-card &, .card-button & { - @include media-breakpoint-down(sm) { + @include bootstrap.media-breakpoint-down(sm) { padding: spacing.$size-regular; } - @include media-breakpoint-between(sm, md) { + @include bootstrap.media-breakpoint-between(sm, md) { padding: spacing.$size-large; } - @include media-breakpoint-between(md, xxl) { + @include bootstrap.media-breakpoint-between(md, xxl) { padding: spacing.$size-big; } - @include media-breakpoint-up(xxl) { + @include bootstrap.media-breakpoint-up(xxl) { padding: spacing.$size-bigger-big; } } diff --git a/packages/styles/src/components/carousel.scss b/packages/styles/src/components/carousel.scss index 9ff9c65d63..97b03a3408 100644 --- a/packages/styles/src/components/carousel.scss +++ b/packages/styles/src/components/carousel.scss @@ -2,7 +2,7 @@ @use './../lic/bootstrap-license'; @use './../themes/bootstrap/carousel' as bc; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../functions/icons'; @use './../variables/color'; diff --git a/packages/styles/src/components/close.scss b/packages/styles/src/components/close.scss index bdc680d859..abbddc3f16 100644 --- a/packages/styles/src/components/close.scss +++ b/packages/styles/src/components/close.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/close' as bc; @use './../variables/components/close'; diff --git a/packages/styles/src/components/form-check.scss b/packages/styles/src/components/form-check.scss index d56089c2fd..3f54fae524 100644 --- a/packages/styles/src/components/form-check.scss +++ b/packages/styles/src/components/form-check.scss @@ -2,7 +2,7 @@ @use 'sass:math'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/forms/form-check' as bfc; @use './../variables/color'; diff --git a/packages/styles/src/components/form-range.scss b/packages/styles/src/components/form-range.scss index 0f0d21b90a..623be518c7 100644 --- a/packages/styles/src/components/form-range.scss +++ b/packages/styles/src/components/form-range.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/forms' as bf; @use './../variables/commons'; diff --git a/packages/styles/src/components/form-select.scss b/packages/styles/src/components/form-select.scss index 15a3402f7c..f5cf1dbe67 100644 --- a/packages/styles/src/components/form-select.scss +++ b/packages/styles/src/components/form-select.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/forms' as bf; @use './../mixins/forms' as forms-mixins; @use './../mixins/utilities'; diff --git a/packages/styles/src/components/grid.scss b/packages/styles/src/components/grid.scss index a0773991ef..4b9d15a0ae 100644 --- a/packages/styles/src/components/grid.scss +++ b/packages/styles/src/components/grid.scss @@ -3,7 +3,7 @@ @use 'sass:map'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/grid' as bg; @use './../themes/bootstrap/containers' as bc; diff --git a/packages/styles/src/components/intranet-header/_logo.scss b/packages/styles/src/components/intranet-header/_logo.scss index 98c7d3a20f..a0ac80e33d 100644 --- a/packages/styles/src/components/intranet-header/_logo.scss +++ b/packages/styles/src/components/intranet-header/_logo.scss @@ -1,7 +1,7 @@ @use './../../variables/color'; @use './../../variables/components/intranet-header'; -@use './../../themes/bootstrap/core' as *; +@use './../../themes/bootstrap/overrides' as *; %header-logo { display: block; diff --git a/packages/styles/src/components/intranet-header/_nav-overflow.scss b/packages/styles/src/components/intranet-header/_nav-overflow.scss index f574cbcd15..36fb375ce1 100644 --- a/packages/styles/src/components/intranet-header/_nav-overflow.scss +++ b/packages/styles/src/components/intranet-header/_nav-overflow.scss @@ -2,7 +2,7 @@ @use './../../variables/commons'; @use './../../functions/icons'; -@use './../../themes/bootstrap/core' as *; +@use './../../themes/bootstrap/overrides' as *; @use './../../placeholders/dropdown'; .top-navigation { diff --git a/packages/styles/src/components/intranet-header/_scaffolding.scss b/packages/styles/src/components/intranet-header/_scaffolding.scss index b2c806f773..87f11756c8 100644 --- a/packages/styles/src/components/intranet-header/_scaffolding.scss +++ b/packages/styles/src/components/intranet-header/_scaffolding.scss @@ -3,7 +3,7 @@ @use './../../variables/commons'; @use './../../variables/components/intranet-header'; -@use './../../themes/bootstrap/core' as *; +@use './../../themes/bootstrap/overrides' as *; // based from http://getbootstrap.com/docs/4.1/examples/dashboard/ .navbar-brand { diff --git a/packages/styles/src/components/intranet-header/_searchbox.scss b/packages/styles/src/components/intranet-header/_searchbox.scss index affe578973..a9e5770e65 100644 --- a/packages/styles/src/components/intranet-header/_searchbox.scss +++ b/packages/styles/src/components/intranet-header/_searchbox.scss @@ -4,7 +4,7 @@ @use './../../variables/commons'; @use './../../variables/components/intranet-header'; -@use './../../themes/bootstrap/core' as *; +@use './../../themes/bootstrap/overrides' as *; header.navbar { .search-textbox { diff --git a/packages/styles/src/components/intranet-header/_sidebar.scss b/packages/styles/src/components/intranet-header/_sidebar.scss index ece89761d5..db7b734996 100644 --- a/packages/styles/src/components/intranet-header/_sidebar.scss +++ b/packages/styles/src/components/intranet-header/_sidebar.scss @@ -3,7 +3,7 @@ @use './../../variables/commons'; @use './../../variables/components/intranet-header'; -@use './../../themes/bootstrap/core' as *; +@use './../../themes/bootstrap/overrides' as *; // Sidebar #sidebar { diff --git a/packages/styles/src/components/intranet-header/_top-navigation.scss b/packages/styles/src/components/intranet-header/_top-navigation.scss index f102a4c53f..9449c8aae7 100644 --- a/packages/styles/src/components/intranet-header/_top-navigation.scss +++ b/packages/styles/src/components/intranet-header/_top-navigation.scss @@ -8,7 +8,7 @@ @use './../../mixins/utilities'; @use './../../themes/bootstrap/navbar' as bn; -@use './../../themes/bootstrap/core' as *; +@use './../../themes/bootstrap/overrides' as *; .top-navigation { button.nav-link { diff --git a/packages/styles/src/components/list-group.scss b/packages/styles/src/components/list-group.scss index e600048d63..4870bd8c63 100644 --- a/packages/styles/src/components/list-group.scss +++ b/packages/styles/src/components/list-group.scss @@ -3,7 +3,7 @@ @use 'sass:map'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/list-group' as bl; @use './../variables/color'; diff --git a/packages/styles/src/components/modal.scss b/packages/styles/src/components/modal.scss index ca4e0c11a3..2e23f7aa89 100644 --- a/packages/styles/src/components/modal.scss +++ b/packages/styles/src/components/modal.scss @@ -3,7 +3,7 @@ @use './../lic/bootstrap-license'; @use './../themes/bootstrap/modal' as bm; @use './../themes/bootstrap/close' as bc; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../mixins/icons' as icon-mixin; @use './../mixins/scroll-shadows' as scroll-shadows-mixin; diff --git a/packages/styles/src/components/offcanvas.scss b/packages/styles/src/components/offcanvas.scss index 718f9c43bf..fe71c78be6 100644 --- a/packages/styles/src/components/offcanvas.scss +++ b/packages/styles/src/components/offcanvas.scss @@ -1,5 +1,5 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/offcanvas' as bc; diff --git a/packages/styles/src/components/popover.scss b/packages/styles/src/components/popover.scss index ab2fda09f9..3dba603241 100644 --- a/packages/styles/src/components/popover.scss +++ b/packages/styles/src/components/popover.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/popover' as bp; @use './../variables/type'; diff --git a/packages/styles/src/components/product-card.scss b/packages/styles/src/components/product-card.scss index 0418fc5a6c..1e46dd42de 100644 --- a/packages/styles/src/components/product-card.scss +++ b/packages/styles/src/components/product-card.scss @@ -3,6 +3,7 @@ @use 'sass:map'; @use './../lic/bootstrap-license'; +@use './../themes/bootstrap/overrides' as bootstrap; @use './../themes/bootstrap/card' as bootstrap-card; @use './../variables/color'; @use './../variables/spacing'; diff --git a/packages/styles/src/components/progress.scss b/packages/styles/src/components/progress.scss index dccaab5dfe..59c8176769 100644 --- a/packages/styles/src/components/progress.scss +++ b/packages/styles/src/components/progress.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/progress' as bp; @use './../variables/commons'; diff --git a/packages/styles/src/components/sizing.scss b/packages/styles/src/components/sizing.scss index 3d2afd6906..7473060550 100644 --- a/packages/styles/src/components/sizing.scss +++ b/packages/styles/src/components/sizing.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use 'sass:map'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../variables/spacing'; @use './../variables/breakpoints'; @use './../mixins/utilities'; diff --git a/packages/styles/src/components/spinner.scss b/packages/styles/src/components/spinner.scss index 77cb862fca..fa99f507cb 100644 --- a/packages/styles/src/components/spinner.scss +++ b/packages/styles/src/components/spinner.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/progress' as bp; @use './../mixins/utilities'; diff --git a/packages/styles/src/components/stepper.scss b/packages/styles/src/components/stepper.scss index 96f52c2aff..d72c36bf42 100644 --- a/packages/styles/src/components/stepper.scss +++ b/packages/styles/src/components/stepper.scss @@ -4,7 +4,7 @@ @use './../variables/spacing'; @use './../variables/components/stepper'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; .stepper-container { @include size-mx.responsive-size('big', 'margin-bottom'); diff --git a/packages/styles/src/components/subnavigation.scss b/packages/styles/src/components/subnavigation.scss index e8b2f3a569..156207c16e 100644 --- a/packages/styles/src/components/subnavigation.scss +++ b/packages/styles/src/components/subnavigation.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../mixins'; @use './../mixins/utilities'; diff --git a/packages/styles/src/components/tabs.scss b/packages/styles/src/components/tabs.scss index f1d4b53965..8ec9e20ead 100644 --- a/packages/styles/src/components/tabs.scss +++ b/packages/styles/src/components/tabs.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/nav' as n; @use './../variables/components/nav'; diff --git a/packages/styles/src/components/toast.scss b/packages/styles/src/components/toast.scss index c9f7708166..2a5863cf11 100644 --- a/packages/styles/src/components/toast.scss +++ b/packages/styles/src/components/toast.scss @@ -1,7 +1,7 @@ @forward './../variables/options'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../variables/components/toasts'; @use './../variables/components/alert'; diff --git a/packages/styles/src/components/topic-teaser.scss b/packages/styles/src/components/topic-teaser.scss index 23b4e92849..0c333bcfab 100644 --- a/packages/styles/src/components/topic-teaser.scss +++ b/packages/styles/src/components/topic-teaser.scss @@ -2,7 +2,7 @@ @use 'sass:map'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../functions/icons'; @use './../variables/color'; diff --git a/packages/styles/src/components/type.scss b/packages/styles/src/components/type.scss index 8bb0cad31c..515ca7f9a7 100644 --- a/packages/styles/src/components/type.scss +++ b/packages/styles/src/components/type.scss @@ -4,7 +4,7 @@ @use 'sass:meta'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../themes/bootstrap/type' as bt; @use './../variables/color'; diff --git a/packages/styles/src/components/utilities.scss b/packages/styles/src/components/utilities.scss index 415e64825a..96ada1aa1d 100644 --- a/packages/styles/src/components/utilities.scss +++ b/packages/styles/src/components/utilities.scss @@ -3,7 +3,7 @@ @use 'sass:map'; @use 'sass:list'; @use './../lic/bootstrap-license'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as bootstrap; @use './../themes/bootstrap/utilities' as bu; // TODO: Move Design System utilities to utilities folder. @use './../mixins/utilities'; @use './../variables/color'; @@ -30,25 +30,25 @@ } .h-visuallyhidden-up-md { - @include media-breakpoint-up(md) { + @include bootstrap.media-breakpoint-up(md) { @include utilities.visuallyhidden; } } .h-visuallyhidden-down-rg { - @include media-breakpoint-down(rg) { + @include bootstrap.media-breakpoint-down(rg) { @include utilities.visuallyhidden; } } .h-visuallyhidden-down-lg { - @include media-breakpoint-down(lg) { + @include bootstrap.media-breakpoint-down(lg) { @include utilities.visuallyhidden; } } .h-clearfix { - @include clearfix; + @include bootstrap.clearfix; } //-- Legacy -- diff --git a/packages/styles/src/core.scss b/packages/styles/src/core.scss index fca9f758e1..75b9d28944 100644 --- a/packages/styles/src/core.scss +++ b/packages/styles/src/core.scss @@ -2,4 +2,4 @@ @forward './variables'; @forward './mixins'; -@import './themes/bootstrap/core'; +@import './themes/bootstrap/overrides'; diff --git a/packages/styles/src/layouts/portal/_grid.scss b/packages/styles/src/layouts/portal/_grid.scss index 18043ecf62..506251eb28 100644 --- a/packages/styles/src/layouts/portal/_grid.scss +++ b/packages/styles/src/layouts/portal/_grid.scss @@ -1,6 +1,6 @@ @use 'sass:map'; -@use './../../themes/bootstrap/core' as *; +@use './../../themes/bootstrap/overrides' as *; @use './../../variables/grid'; @use './../../variables/commons'; diff --git a/packages/styles/src/layouts/portal/_type.scss b/packages/styles/src/layouts/portal/_type.scss index 83f7a8bfb7..0acf8480c8 100644 --- a/packages/styles/src/layouts/portal/_type.scss +++ b/packages/styles/src/layouts/portal/_type.scss @@ -1,6 +1,6 @@ @use 'sass:map'; -@use './../../themes/bootstrap/core' as *; +@use './../../themes/bootstrap/overrides' as *; @use './../../variables/spacing'; @use './../../variables/type'; diff --git a/packages/styles/src/mixins/_animation.scss b/packages/styles/src/mixins/_animation.scss index 98b215f22d..395a78da9e 100644 --- a/packages/styles/src/mixins/_animation.scss +++ b/packages/styles/src/mixins/_animation.scss @@ -1,4 +1,4 @@ -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../functions/icons'; @mixin hover-animation( diff --git a/packages/styles/src/mixins/_size.scss b/packages/styles/src/mixins/_size.scss index 51d27bfe0a..595d95ffeb 100644 --- a/packages/styles/src/mixins/_size.scss +++ b/packages/styles/src/mixins/_size.scss @@ -1,7 +1,7 @@ @use 'sass:map'; @use 'sass:string'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../variables/spacing'; @use './../functions/utilities'; diff --git a/packages/styles/src/mixins/_type.scss b/packages/styles/src/mixins/_type.scss index f1d68ae3f1..8f1b15a361 100644 --- a/packages/styles/src/mixins/_type.scss +++ b/packages/styles/src/mixins/_type.scss @@ -6,7 +6,7 @@ @use './../variables/type'; @use './../functions/sizing'; @use './../functions/utilities'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as bootstrap; @mixin font-curve($curve-size: 'regular') { $curve: map.get(type.$font-curves, $curve-size); @@ -25,7 +25,7 @@ line-height: $lh; } @else { @if ($font-cache != $value) { - @include media-breakpoint-up($key) { + @include bootstrap.media-breakpoint-up($key) { font-size: $value; @if ($line-height-cache != $lh) { diff --git a/packages/styles/src/placeholders/_notifications.scss b/packages/styles/src/placeholders/_notifications.scss index 70176aab70..1824755900 100644 --- a/packages/styles/src/placeholders/_notifications.scss +++ b/packages/styles/src/placeholders/_notifications.scss @@ -1,4 +1,4 @@ -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../variables/commons'; @use './../variables/color'; diff --git a/packages/styles/src/placeholders/_text.scss b/packages/styles/src/placeholders/_text.scss index 13d08271df..7f764e4173 100644 --- a/packages/styles/src/placeholders/_text.scss +++ b/packages/styles/src/placeholders/_text.scss @@ -1,5 +1,5 @@ @use 'sass:map'; -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../variables/spacing'; @use './../variables/type'; @use './../variables/color'; diff --git a/packages/styles/src/placeholders/badge.scss b/packages/styles/src/placeholders/badge.scss index bb8dc14413..d0359ab0a9 100644 --- a/packages/styles/src/placeholders/badge.scss +++ b/packages/styles/src/placeholders/badge.scss @@ -1,4 +1,4 @@ -@use './../themes/bootstrap/core' as *; +@use './../themes/bootstrap/overrides' as *; @use './../variables/components/badge'; diff --git a/packages/styles/src/themes/bootstrap/_accordion.scss b/packages/styles/src/themes/bootstrap/_accordion.scss index 99fc424b35..5e5f07b832 100644 --- a/packages/styles/src/themes/bootstrap/_accordion.scss +++ b/packages/styles/src/themes/bootstrap/_accordion.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/accordion'; diff --git a/packages/styles/src/themes/bootstrap/_alert.scss b/packages/styles/src/themes/bootstrap/_alert.scss index 8f168e7d68..84436b9a99 100644 --- a/packages/styles/src/themes/bootstrap/_alert.scss +++ b/packages/styles/src/themes/bootstrap/_alert.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/alert'; diff --git a/packages/styles/src/themes/bootstrap/_badge.scss b/packages/styles/src/themes/bootstrap/_badge.scss index 878ad1acd6..7ce6f10165 100644 --- a/packages/styles/src/themes/bootstrap/_badge.scss +++ b/packages/styles/src/themes/bootstrap/_badge.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/badge'; diff --git a/packages/styles/src/themes/bootstrap/_breadcrumbs.scss b/packages/styles/src/themes/bootstrap/_breadcrumbs.scss index 1dcdaed6ab..0836253a02 100644 --- a/packages/styles/src/themes/bootstrap/_breadcrumbs.scss +++ b/packages/styles/src/themes/bootstrap/_breadcrumbs.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/breadcrumb'; diff --git a/packages/styles/src/themes/bootstrap/_button-group.scss b/packages/styles/src/themes/bootstrap/_button-group.scss index 9ad9414ecd..dc9cf87964 100644 --- a/packages/styles/src/themes/bootstrap/_button-group.scss +++ b/packages/styles/src/themes/bootstrap/_button-group.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/button-group'; diff --git a/packages/styles/src/themes/bootstrap/_buttons.scss b/packages/styles/src/themes/bootstrap/_buttons.scss index 7b1dc544a0..160c069abd 100644 --- a/packages/styles/src/themes/bootstrap/_buttons.scss +++ b/packages/styles/src/themes/bootstrap/_buttons.scss @@ -1,3 +1,3 @@ -@use './core' as *; +@use './overrides' as *; @import './../../mixins/button'; @import 'bootstrap/scss/buttons'; diff --git a/packages/styles/src/themes/bootstrap/_card.scss b/packages/styles/src/themes/bootstrap/_card.scss index d9356dee28..43d9c1bebd 100644 --- a/packages/styles/src/themes/bootstrap/_card.scss +++ b/packages/styles/src/themes/bootstrap/_card.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/card'; diff --git a/packages/styles/src/themes/bootstrap/_carousel.scss b/packages/styles/src/themes/bootstrap/_carousel.scss index d50b6dae05..b7b75bc2db 100644 --- a/packages/styles/src/themes/bootstrap/_carousel.scss +++ b/packages/styles/src/themes/bootstrap/_carousel.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/carousel'; diff --git a/packages/styles/src/themes/bootstrap/_close.scss b/packages/styles/src/themes/bootstrap/_close.scss index 185f03506b..fb6e6f4cb5 100644 --- a/packages/styles/src/themes/bootstrap/_close.scss +++ b/packages/styles/src/themes/bootstrap/_close.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/close'; diff --git a/packages/styles/src/themes/bootstrap/_containers.scss b/packages/styles/src/themes/bootstrap/_containers.scss index 2f52471490..8655da54c9 100644 --- a/packages/styles/src/themes/bootstrap/_containers.scss +++ b/packages/styles/src/themes/bootstrap/_containers.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/containers'; diff --git a/packages/styles/src/themes/bootstrap/_dropdown.scss b/packages/styles/src/themes/bootstrap/_dropdown.scss index a776a280d3..b6ac7733a4 100644 --- a/packages/styles/src/themes/bootstrap/_dropdown.scss +++ b/packages/styles/src/themes/bootstrap/_dropdown.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/dropdown'; diff --git a/packages/styles/src/themes/bootstrap/_grid.scss b/packages/styles/src/themes/bootstrap/_grid.scss index 1581478a7f..e20011ce86 100644 --- a/packages/styles/src/themes/bootstrap/_grid.scss +++ b/packages/styles/src/themes/bootstrap/_grid.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/grid'; diff --git a/packages/styles/src/themes/bootstrap/_images.scss b/packages/styles/src/themes/bootstrap/_images.scss index 14f58db3d4..843c59a361 100644 --- a/packages/styles/src/themes/bootstrap/_images.scss +++ b/packages/styles/src/themes/bootstrap/_images.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/images'; diff --git a/packages/styles/src/themes/bootstrap/_list-group.scss b/packages/styles/src/themes/bootstrap/_list-group.scss index 9642620788..b7028395b5 100644 --- a/packages/styles/src/themes/bootstrap/_list-group.scss +++ b/packages/styles/src/themes/bootstrap/_list-group.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/list-group'; diff --git a/packages/styles/src/themes/bootstrap/_modal.scss b/packages/styles/src/themes/bootstrap/_modal.scss index ac222d10da..4d4a786faf 100644 --- a/packages/styles/src/themes/bootstrap/_modal.scss +++ b/packages/styles/src/themes/bootstrap/_modal.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/modal'; diff --git a/packages/styles/src/themes/bootstrap/_nav.scss b/packages/styles/src/themes/bootstrap/_nav.scss index 130ed90074..68eef0021f 100644 --- a/packages/styles/src/themes/bootstrap/_nav.scss +++ b/packages/styles/src/themes/bootstrap/_nav.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/nav'; diff --git a/packages/styles/src/themes/bootstrap/_navbar.scss b/packages/styles/src/themes/bootstrap/_navbar.scss index 8a0c6755c5..afdd090faf 100644 --- a/packages/styles/src/themes/bootstrap/_navbar.scss +++ b/packages/styles/src/themes/bootstrap/_navbar.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/navbar'; diff --git a/packages/styles/src/themes/bootstrap/_offcanvas.scss b/packages/styles/src/themes/bootstrap/_offcanvas.scss index 806829d86c..ebc1d556f2 100644 --- a/packages/styles/src/themes/bootstrap/_offcanvas.scss +++ b/packages/styles/src/themes/bootstrap/_offcanvas.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/offcanvas'; diff --git a/packages/styles/src/themes/bootstrap/_core.scss b/packages/styles/src/themes/bootstrap/_overrides.scss similarity index 56% rename from packages/styles/src/themes/bootstrap/_core.scss rename to packages/styles/src/themes/bootstrap/_overrides.scss index 85fdaba96e..679750164b 100644 --- a/packages/styles/src/themes/bootstrap/_core.scss +++ b/packages/styles/src/themes/bootstrap/_overrides.scss @@ -1,11 +1,5 @@ -@import 'bootstrap/scss/functions'; - -// Optional variable overrides here @import './overrides-variables'; +@import 'bootstrap/scss/functions'; @import 'bootstrap/scss/variables'; - -// Optional Sass map overrides here - -@import 'bootstrap/scss/maps'; @import 'bootstrap/scss/mixins'; diff --git a/packages/styles/src/themes/bootstrap/_pagination.scss b/packages/styles/src/themes/bootstrap/_pagination.scss index 12a59c986d..cce5af562c 100644 --- a/packages/styles/src/themes/bootstrap/_pagination.scss +++ b/packages/styles/src/themes/bootstrap/_pagination.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/pagination'; diff --git a/packages/styles/src/themes/bootstrap/_popover.scss b/packages/styles/src/themes/bootstrap/_popover.scss index d05efd82aa..75ffbe5d54 100644 --- a/packages/styles/src/themes/bootstrap/_popover.scss +++ b/packages/styles/src/themes/bootstrap/_popover.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/popover'; diff --git a/packages/styles/src/themes/bootstrap/_progress.scss b/packages/styles/src/themes/bootstrap/_progress.scss index f4819cc795..c11befc503 100644 --- a/packages/styles/src/themes/bootstrap/_progress.scss +++ b/packages/styles/src/themes/bootstrap/_progress.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/progress'; diff --git a/packages/styles/src/themes/bootstrap/_reboot.scss b/packages/styles/src/themes/bootstrap/_reboot.scss index 5fdb597fa6..fc9bebff7a 100644 --- a/packages/styles/src/themes/bootstrap/_reboot.scss +++ b/packages/styles/src/themes/bootstrap/_reboot.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/reboot'; diff --git a/packages/styles/src/themes/bootstrap/_root.scss b/packages/styles/src/themes/bootstrap/_root.scss index 0d05c011c0..d525d97bb6 100644 --- a/packages/styles/src/themes/bootstrap/_root.scss +++ b/packages/styles/src/themes/bootstrap/_root.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/root'; diff --git a/packages/styles/src/themes/bootstrap/_spinners.scss b/packages/styles/src/themes/bootstrap/_spinners.scss index 3a77384375..6bf15287ad 100644 --- a/packages/styles/src/themes/bootstrap/_spinners.scss +++ b/packages/styles/src/themes/bootstrap/_spinners.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/spinners'; diff --git a/packages/styles/src/themes/bootstrap/_tables.scss b/packages/styles/src/themes/bootstrap/_tables.scss index 664b8eeac1..6e33ebb8ad 100644 --- a/packages/styles/src/themes/bootstrap/_tables.scss +++ b/packages/styles/src/themes/bootstrap/_tables.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/tables'; diff --git a/packages/styles/src/themes/bootstrap/_toasts.scss b/packages/styles/src/themes/bootstrap/_toasts.scss index e1ce71efb6..440329ba1d 100644 --- a/packages/styles/src/themes/bootstrap/_toasts.scss +++ b/packages/styles/src/themes/bootstrap/_toasts.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/toasts'; diff --git a/packages/styles/src/themes/bootstrap/_tooltip.scss b/packages/styles/src/themes/bootstrap/_tooltip.scss index 4d46dbf822..5dfe275a4f 100644 --- a/packages/styles/src/themes/bootstrap/_tooltip.scss +++ b/packages/styles/src/themes/bootstrap/_tooltip.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/tooltip'; diff --git a/packages/styles/src/themes/bootstrap/_transitions.scss b/packages/styles/src/themes/bootstrap/_transitions.scss index 0d4444bee7..c8d77ccaae 100644 --- a/packages/styles/src/themes/bootstrap/_transitions.scss +++ b/packages/styles/src/themes/bootstrap/_transitions.scss @@ -1,2 +1,2 @@ -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/transitions'; diff --git a/packages/styles/src/themes/bootstrap/_type.scss b/packages/styles/src/themes/bootstrap/_type.scss index 97dbf0e0fd..13323c58df 100644 --- a/packages/styles/src/themes/bootstrap/_type.scss +++ b/packages/styles/src/themes/bootstrap/_type.scss @@ -1,4 +1,4 @@ -@use './core' as *; +@use './overrides' as *; // Reboot is needed here because type.scss is extending the h1/2/... selectors @use './reboot' as *; diff --git a/packages/styles/src/themes/bootstrap/_utilities.scss b/packages/styles/src/themes/bootstrap/_utilities.scss index cff122af29..73ba1490fe 100644 --- a/packages/styles/src/themes/bootstrap/_utilities.scss +++ b/packages/styles/src/themes/bootstrap/_utilities.scss @@ -1,5 +1,5 @@ @use 'sass:map'; -@use './core' as *; +@use './overrides' as *; @import 'bootstrap/scss/helpers'; @import 'bootstrap/scss/utilities'; diff --git a/packages/styles/src/themes/bootstrap/forms/_floating-labels.scss b/packages/styles/src/themes/bootstrap/forms/_floating-labels.scss index f7c69948dd..c0781a9d48 100644 --- a/packages/styles/src/themes/bootstrap/forms/_floating-labels.scss +++ b/packages/styles/src/themes/bootstrap/forms/_floating-labels.scss @@ -1,2 +1,2 @@ -@use './../core' as *; +@use './../overrides' as *; @import 'bootstrap/scss/forms/floating-labels'; diff --git a/packages/styles/src/themes/bootstrap/forms/_form-check.scss b/packages/styles/src/themes/bootstrap/forms/_form-check.scss index 5b5a4f8e15..048e84047f 100644 --- a/packages/styles/src/themes/bootstrap/forms/_form-check.scss +++ b/packages/styles/src/themes/bootstrap/forms/_form-check.scss @@ -1,2 +1,2 @@ -@use './../core' as *; +@use './../overrides' as *; @import 'bootstrap/scss/forms/form-check'; diff --git a/packages/styles/src/themes/bootstrap/forms/_form-control.scss b/packages/styles/src/themes/bootstrap/forms/_form-control.scss index bb8933d8a9..c4243f2624 100644 --- a/packages/styles/src/themes/bootstrap/forms/_form-control.scss +++ b/packages/styles/src/themes/bootstrap/forms/_form-control.scss @@ -1,2 +1,2 @@ -@use './../core' as *; +@use './../overrides' as *; @import 'bootstrap/scss/forms/form-control'; diff --git a/packages/styles/src/themes/bootstrap/forms/_form-range.scss b/packages/styles/src/themes/bootstrap/forms/_form-range.scss index 30f8816f66..905178d21c 100644 --- a/packages/styles/src/themes/bootstrap/forms/_form-range.scss +++ b/packages/styles/src/themes/bootstrap/forms/_form-range.scss @@ -1,2 +1,2 @@ -@use './../core' as *; +@use './../overrides' as *; @import 'bootstrap/scss/forms/form-range'; diff --git a/packages/styles/src/themes/bootstrap/forms/_form-select.scss b/packages/styles/src/themes/bootstrap/forms/_form-select.scss index 286e51bf48..bdf057a7c0 100644 --- a/packages/styles/src/themes/bootstrap/forms/_form-select.scss +++ b/packages/styles/src/themes/bootstrap/forms/_form-select.scss @@ -1,2 +1,2 @@ -@use './../core' as *; +@use './../overrides' as *; @import 'bootstrap/scss/forms/form-select'; diff --git a/packages/styles/src/themes/bootstrap/forms/_form-text.scss b/packages/styles/src/themes/bootstrap/forms/_form-text.scss index 27b503aa42..08583159c4 100644 --- a/packages/styles/src/themes/bootstrap/forms/_form-text.scss +++ b/packages/styles/src/themes/bootstrap/forms/_form-text.scss @@ -1,2 +1,2 @@ -@use './../core' as *; +@use './../overrides' as *; @import 'bootstrap/scss/forms/form-text'; diff --git a/packages/styles/src/themes/bootstrap/forms/_input-group.scss b/packages/styles/src/themes/bootstrap/forms/_input-group.scss index 33ea1c01aa..2c08743238 100644 --- a/packages/styles/src/themes/bootstrap/forms/_input-group.scss +++ b/packages/styles/src/themes/bootstrap/forms/_input-group.scss @@ -1,2 +1,2 @@ -@use './../core' as *; +@use './../overrides' as *; @import 'bootstrap/scss/forms/input-group'; diff --git a/packages/styles/src/themes/bootstrap/forms/_labels.scss b/packages/styles/src/themes/bootstrap/forms/_labels.scss index a473da5f49..a09a742a91 100644 --- a/packages/styles/src/themes/bootstrap/forms/_labels.scss +++ b/packages/styles/src/themes/bootstrap/forms/_labels.scss @@ -1,2 +1,2 @@ -@use './../core' as *; +@use './../overrides' as *; @import 'bootstrap/scss/forms/labels'; diff --git a/packages/styles/src/themes/bootstrap/forms/_validation.scss b/packages/styles/src/themes/bootstrap/forms/_validation.scss index 7b5371dad5..9a7fdaa4dd 100644 --- a/packages/styles/src/themes/bootstrap/forms/_validation.scss +++ b/packages/styles/src/themes/bootstrap/forms/_validation.scss @@ -1,2 +1,2 @@ -@use './../core' as *; +@use './../overrides' as *; @import 'bootstrap/scss/forms/validation'; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d0291481b9..c95422bb9b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -18,14 +18,14 @@ importers: '@changesets/parse': '*' '@changesets/types': 5.2.1 dotenv: 16.0.3 - typescript: 4.9.5 + typescript: 4.8.4 dependencies: '@changesets/get-github-info': 0.5.2 '@changesets/types': 5.2.1 dotenv: 16.0.3 devDependencies: '@changesets/parse': 0.3.15 - typescript: 4.9.5 + typescript: 4.8.4 packages/components: specifiers: @@ -37,7 +37,7 @@ importers: '@stencil/sass': 2.0.3 '@swisspost/design-system-styles': workspace:5.4.0 '@types/jest': 27.5.2 - bootstrap: 5.2.3 + bootstrap: 5.1.3 cypress: 12.6.0 cypress-storybook: 0.5.1 jest: 27.5.1 @@ -45,15 +45,15 @@ importers: npm-run-all: 4.1.5 puppeteer: 19.7.2 sass: 1.58.3 - typescript: 4.9.5 + typescript: 4.8.4 dependencies: '@popperjs/core': 2.11.6 '@stencil/core': 3.0.1 '@stencil/react-output-target': 0.4.0_@stencil+core@3.0.1 '@stencil/sass': 2.0.3_@stencil+core@3.0.1 '@swisspost/design-system-styles': link:../styles/dist - bootstrap: 5.2.3_@popperjs+core@2.11.6 - puppeteer: 19.7.2_typescript@4.9.5 + bootstrap: 5.1.3_@popperjs+core@2.11.6 + puppeteer: 19.7.2_typescript@4.8.4 sass: 1.58.3 devDependencies: '@percy/cli': 1.20.0 @@ -64,28 +64,28 @@ importers: jest: 27.5.1 jest-cli: 27.5.1 npm-run-all: 4.1.5 - typescript: 4.9.5 + typescript: 4.8.4 packages/components-angular: specifiers: - '@angular-devkit/build-angular': 15.1.6 - '@angular-eslint/builder': 15.2.1 - '@angular-eslint/eslint-plugin': 15.2.1 - '@angular-eslint/eslint-plugin-template': 15.2.1 - '@angular-eslint/schematics': 15.2.1 - '@angular-eslint/template-parser': 15.2.1 - '@angular/animations': 15.1.5 - '@angular/cli': 15.1.6 - '@angular/common': 15.1.5 - '@angular/compiler': 15.1.5 - '@angular/compiler-cli': 15.1.5 - '@angular/core': 15.1.5 - '@angular/forms': 15.1.5 - '@angular/localize': 15.1.5 - '@angular/platform-browser': 15.1.5 - '@angular/platform-browser-dynamic': 15.1.5 - '@angular/router': 15.1.5 - '@ng-bootstrap/ng-bootstrap': 14.0.1 + '@angular-devkit/build-angular': 14.2.10 + '@angular-eslint/builder': 14.4.0 + '@angular-eslint/eslint-plugin': 14.4.0 + '@angular-eslint/eslint-plugin-template': 14.4.0 + '@angular-eslint/schematics': 14.4.0 + '@angular-eslint/template-parser': 14.4.0 + '@angular/animations': 14.2.12 + '@angular/cli': 14.2.10 + '@angular/common': 14.2.12 + '@angular/compiler': 14.2.12 + '@angular/compiler-cli': 14.2.12 + '@angular/core': 14.2.12 + '@angular/forms': 14.2.12 + '@angular/localize': 14.2.12 + '@angular/platform-browser': 14.2.12 + '@angular/platform-browser-dynamic': 14.2.12 + '@angular/router': 14.2.12 + '@ng-bootstrap/ng-bootstrap': 12.1.2 '@popperjs/core': 2.11.6 '@swisspost/design-system-styles': workspace:5.4.0 '@types/jasmine': 4.3.1 @@ -99,24 +99,24 @@ importers: karma-coverage: 2.2.0 karma-jasmine: 5.1.0 karma-jasmine-html-reporter: 2.0.0 - ng-packagr: 15.1.2 + ng-packagr: 14.2.2 rimraf: 4.1.2 rxjs: 7.8.0 tslib: 2.5.0 - typescript: 4.9.5 + typescript: 4.8.4 watch: 1.0.2 zone.js: 0.12.0 dependencies: - '@angular/animations': 15.1.5_@angular+core@15.1.5 - '@angular/common': 15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq - '@angular/compiler': 15.1.5_@angular+core@15.1.5 - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 - '@angular/forms': 15.1.5_yndgxvmaauschrcdo656cxz5sy - '@angular/localize': 15.1.5_ibnfrx3mdk7k6nb6hkpwkyin2q - '@angular/platform-browser': 15.1.5_s7kwnqxnlkypgp4vtemlnxkbmi - '@angular/platform-browser-dynamic': 15.1.5_pzachiwybhx467gapqhrlestmm - '@angular/router': 15.1.5_yndgxvmaauschrcdo656cxz5sy - '@ng-bootstrap/ng-bootstrap': 14.0.1_ebru4yhfxqozwfzbilvzthf6fy + '@angular/animations': 14.2.12_@angular+core@14.2.12 + '@angular/common': 14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4 + '@angular/compiler': 14.2.12_@angular+core@14.2.12 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 + '@angular/forms': 14.2.12_ft6phxovscixssjysxonv3pqk4 + '@angular/localize': 14.2.12_cqwiofdtgqwkx67gfnt5blkgxu + '@angular/platform-browser': 14.2.12_dax2jypo47bpgiczdvqsh7iq24 + '@angular/platform-browser-dynamic': 14.2.12_6cqhozsvdfqcnce26piw2go6r4 + '@angular/router': 14.2.12_ft6phxovscixssjysxonv3pqk4 + '@ng-bootstrap/ng-bootstrap': 12.1.2_aazybjdowcfmlncjubh2qcoxky '@popperjs/core': 2.11.6 '@swisspost/design-system-styles': link:../styles/dist rxjs: 7.8.0 @@ -124,18 +124,18 @@ importers: watch: 1.0.2 zone.js: 0.12.0 devDependencies: - '@angular-devkit/build-angular': 15.1.6_njyphgzcghy4ywd2ijokiidocq - '@angular-eslint/builder': 15.2.1_7kw3g6rralp5ps6mg3uyzz6azm - '@angular-eslint/eslint-plugin': 15.2.1_7kw3g6rralp5ps6mg3uyzz6azm - '@angular-eslint/eslint-plugin-template': 15.2.1_7kw3g6rralp5ps6mg3uyzz6azm - '@angular-eslint/schematics': 15.2.1_3aaiaq6n6osk45otwoyijptuyq - '@angular-eslint/template-parser': 15.2.1_7kw3g6rralp5ps6mg3uyzz6azm - '@angular/cli': 15.1.6 - '@angular/compiler-cli': 15.1.5_nolqrmukmycxjx7xovu3ezjhk4 + '@angular-devkit/build-angular': 14.2.10_yoo73bwfrjawohf4lsscqxcktu + '@angular-eslint/builder': 14.4.0_vvbfoh7ci2jjuy6alapehrh2ri + '@angular-eslint/eslint-plugin': 14.4.0_vvbfoh7ci2jjuy6alapehrh2ri + '@angular-eslint/eslint-plugin-template': 14.4.0_vvbfoh7ci2jjuy6alapehrh2ri + '@angular-eslint/schematics': 14.4.0_tc3zsogufm7jxburyf76xjxseu + '@angular-eslint/template-parser': 14.4.0_vvbfoh7ci2jjuy6alapehrh2ri + '@angular/cli': 14.2.10 + '@angular/compiler-cli': 14.2.12_xny3jupsupef4qvbeynwkkewkm '@types/jasmine': 4.3.1 '@types/node': 18.14.0 - '@typescript-eslint/eslint-plugin': 5.53.0_ny4s7qc6yg74faf3d6xty2ofzy - '@typescript-eslint/parser': 5.53.0_7kw3g6rralp5ps6mg3uyzz6azm + '@typescript-eslint/eslint-plugin': 5.53.0_scegsshm245kz7hxo76dd7oegq + '@typescript-eslint/parser': 5.53.0_vvbfoh7ci2jjuy6alapehrh2ri eslint: 8.34.0 jasmine-core: 4.5.0 karma: 6.4.1 @@ -143,9 +143,9 @@ importers: karma-coverage: 2.2.0 karma-jasmine: 5.1.0_karma@6.4.1 karma-jasmine-html-reporter: 2.0.0_uk6l45dlsjldsnfgnal4othgyq - ng-packagr: 15.1.2_jzeiugkiglfx2y542pr37o6vve + ng-packagr: 14.2.2_uagavn7dbwvtglbldk5giq5ssq rimraf: 4.1.2 - typescript: 4.9.5 + typescript: 4.8.4 packages/components-angular/projects/intranet-header: specifiers: @@ -199,28 +199,28 @@ importers: packages/demo: specifiers: - '@angular-devkit/build-angular': 15.1.6 + '@angular-devkit/build-angular': 14.2.10 '@angular-devkit/build-optimizer': 0.1202.18 - '@angular-eslint/builder': 15.2.1 - '@angular-eslint/eslint-plugin': 15.2.1 - '@angular-eslint/eslint-plugin-template': 15.2.1 - '@angular-eslint/schematics': 15.2.1 - '@angular-eslint/template-parser': 15.2.1 - '@angular/animations': 15.1.5 - '@angular/cdk': 15.2.0 - '@angular/cli': 15.1.6 - '@angular/common': 15.1.5 - '@angular/compiler': 15.1.5 - '@angular/compiler-cli': 15.1.5 - '@angular/core': 15.1.5 - '@angular/elements': 15.1.5 - '@angular/forms': 15.1.5 - '@angular/language-service': 15.1.5 - '@angular/localize': 15.1.5 - '@angular/platform-browser': 15.1.5 - '@angular/platform-browser-dynamic': 15.1.5 - '@angular/router': 15.1.5 - '@ng-bootstrap/ng-bootstrap': 14.0.1 + '@angular-eslint/builder': 14.4.0 + '@angular-eslint/eslint-plugin': 14.4.0 + '@angular-eslint/eslint-plugin-template': 14.4.0 + '@angular-eslint/schematics': 14.4.0 + '@angular-eslint/template-parser': 14.4.0 + '@angular/animations': 14.2.12 + '@angular/cdk': 14.2.7 + '@angular/cli': 14.2.10 + '@angular/common': 14.2.12 + '@angular/compiler': 14.2.12 + '@angular/compiler-cli': 14.2.12 + '@angular/core': 14.2.12 + '@angular/elements': 14.2.12 + '@angular/forms': 14.2.12 + '@angular/language-service': 14.2.12 + '@angular/localize': 14.2.12 + '@angular/platform-browser': 14.2.12 + '@angular/platform-browser-dynamic': 14.2.12 + '@angular/router': 14.2.12 + '@ng-bootstrap/ng-bootstrap': 12.1.2 '@popperjs/core': 2.11.6 '@swimlane/ngx-datatable': 20.1.0 '@swisspost/design-system-intranet-header': workspace:3.1.0 @@ -231,7 +231,7 @@ importers: '@types/node': 18.14.0 '@typescript-eslint/eslint-plugin': 5.53.0 '@typescript-eslint/parser': 5.53.0 - bootstrap: 5.2.3 + bootstrap: 5.1.3 core-js: 3.28.0 eslint: 8.34.0 highlight.js: 11.7.0 @@ -244,8 +244,8 @@ importers: karma-coverage-istanbul-reporter: 3.0.3 karma-jasmine: 5.1.0 karma-jasmine-html-reporter: 2.0.0 - ngx-highlightjs: 8.0.0 - ngx-toastr: 16.0.2 + ngx-highlightjs: 7.0.1 + ngx-toastr: 15.2.2 prettier: 2.8.4 protractor: 7.0.0 raw-loader: 4.0.2 @@ -255,51 +255,51 @@ importers: sockjs: 0.3.24 ts-node: 10.9.1 tslib: 2.5.0 - typescript: 4.9.5 + typescript: 4.8.4 webpack: 5.75.0 zone.js: 0.12.0 dependencies: - '@angular/animations': 15.1.5_@angular+core@15.1.5 - '@angular/cdk': 15.2.0_pq7so2lxnramwprfbopfupfyze - '@angular/common': 15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq - '@angular/compiler': 15.1.5_@angular+core@15.1.5 - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 - '@angular/forms': 15.1.5_yndgxvmaauschrcdo656cxz5sy - '@angular/localize': 15.1.5_ibnfrx3mdk7k6nb6hkpwkyin2q - '@angular/platform-browser': 15.1.5_s7kwnqxnlkypgp4vtemlnxkbmi - '@angular/platform-browser-dynamic': 15.1.5_pzachiwybhx467gapqhrlestmm - '@angular/router': 15.1.5_yndgxvmaauschrcdo656cxz5sy - '@ng-bootstrap/ng-bootstrap': 14.0.1_ebru4yhfxqozwfzbilvzthf6fy + '@angular/animations': 14.2.12_@angular+core@14.2.12 + '@angular/cdk': 14.2.7_yg5i7pymki4meqci6ecgolbxoi + '@angular/common': 14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4 + '@angular/compiler': 14.2.12_@angular+core@14.2.12 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 + '@angular/forms': 14.2.12_ft6phxovscixssjysxonv3pqk4 + '@angular/localize': 14.2.12_cqwiofdtgqwkx67gfnt5blkgxu + '@angular/platform-browser': 14.2.12_dax2jypo47bpgiczdvqsh7iq24 + '@angular/platform-browser-dynamic': 14.2.12_6cqhozsvdfqcnce26piw2go6r4 + '@angular/router': 14.2.12_ft6phxovscixssjysxonv3pqk4 + '@ng-bootstrap/ng-bootstrap': 12.1.2_aazybjdowcfmlncjubh2qcoxky '@popperjs/core': 2.11.6 - '@swimlane/ngx-datatable': 20.1.0_yndgxvmaauschrcdo656cxz5sy + '@swimlane/ngx-datatable': 20.1.0_ft6phxovscixssjysxonv3pqk4 '@swisspost/design-system-intranet-header': link:../components-angular/dist/intranet-header '@swisspost/design-system-styles': link:../styles/dist - bootstrap: 5.2.3_@popperjs+core@2.11.6 + bootstrap: 5.1.3_@popperjs+core@2.11.6 core-js: 3.28.0 highlight.js: 11.7.0 - ngx-highlightjs: 8.0.0_pq7so2lxnramwprfbopfupfyze - ngx-toastr: 16.0.2_r5w6u7fwq2my5aduzicwtvscb4 + ngx-highlightjs: 7.0.1_yg5i7pymki4meqci6ecgolbxoi + ngx-toastr: 15.2.2_575hqlbkduhazj74z2li43juyy rxjs: 7.8.0 tslib: 2.5.0 zone.js: 0.12.0 devDependencies: - '@angular-devkit/build-angular': 15.1.6_5m44fyt3bdkrjmrip2suqlswpm + '@angular-devkit/build-angular': 14.2.10_jyrcix76lobc7ensxbp3g33f54 '@angular-devkit/build-optimizer': 0.1202.18_webpack@5.75.0 - '@angular-eslint/builder': 15.2.1_7kw3g6rralp5ps6mg3uyzz6azm - '@angular-eslint/eslint-plugin': 15.2.1_7kw3g6rralp5ps6mg3uyzz6azm - '@angular-eslint/eslint-plugin-template': 15.2.1_7kw3g6rralp5ps6mg3uyzz6azm - '@angular-eslint/schematics': 15.2.1_3aaiaq6n6osk45otwoyijptuyq - '@angular-eslint/template-parser': 15.2.1_7kw3g6rralp5ps6mg3uyzz6azm - '@angular/cli': 15.1.6 - '@angular/compiler-cli': 15.1.5_nolqrmukmycxjx7xovu3ezjhk4 - '@angular/elements': 15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq - '@angular/language-service': 15.1.5 + '@angular-eslint/builder': 14.4.0_vvbfoh7ci2jjuy6alapehrh2ri + '@angular-eslint/eslint-plugin': 14.4.0_vvbfoh7ci2jjuy6alapehrh2ri + '@angular-eslint/eslint-plugin-template': 14.4.0_vvbfoh7ci2jjuy6alapehrh2ri + '@angular-eslint/schematics': 14.4.0_tc3zsogufm7jxburyf76xjxseu + '@angular-eslint/template-parser': 14.4.0_vvbfoh7ci2jjuy6alapehrh2ri + '@angular/cli': 14.2.10 + '@angular/compiler-cli': 14.2.12_xny3jupsupef4qvbeynwkkewkm + '@angular/elements': 14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4 + '@angular/language-service': 14.2.12 '@types/highlight.js': 9.12.4 '@types/jasmine': 4.3.1 '@types/jasminewd2': 2.0.10 '@types/node': 18.14.0 - '@typescript-eslint/eslint-plugin': 5.53.0_ny4s7qc6yg74faf3d6xty2ofzy - '@typescript-eslint/parser': 5.53.0_7kw3g6rralp5ps6mg3uyzz6azm + '@typescript-eslint/eslint-plugin': 5.53.0_scegsshm245kz7hxo76dd7oegq + '@typescript-eslint/parser': 5.53.0_vvbfoh7ci2jjuy6alapehrh2ri eslint: 8.34.0 jasmine-core: 4.5.0 jasmine-marbles: 0.9.2_rxjs@7.8.0 @@ -316,8 +316,8 @@ importers: rimraf: 4.1.2 sass: 1.58.3 sockjs: 0.3.24 - ts-node: 10.9.1_tncu2ai53lzgmizdedur7lbibe - typescript: 4.9.5 + ts-node: 10.9.1_qcqsnqvvdpjatba7u2dizzf44y + typescript: 4.8.4 webpack: 5.75.0 packages/documentation: @@ -362,7 +362,7 @@ importers: start-server-and-test: 1.15.4 storybook-dark-mode: 2.1.0 style-loader: 2.0.0 - typescript: 4.9.5 + typescript: 4.6.4 dependencies: '@swisspost/design-system-components': link:../components '@swisspost/design-system-components-react': link:../components-react/dist @@ -381,13 +381,13 @@ importers: '@percy/cypress': 3.1.2_cypress@12.6.0 '@pxtrn/storybook-addon-docs-stencil': 6.4.1_biqbaboplfbrettd7655fr4n2y '@storybook/addon-a11y': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-docs': 6.5.16_6mbplxbx6s7x4hmdmervij2kcu - '@storybook/addon-essentials': 6.5.16_6mbplxbx6s7x4hmdmervij2kcu + '@storybook/addon-docs': 6.5.16_kv2wqippxinsxghwtjel5xswuq + '@storybook/addon-essentials': 6.5.16_kv2wqippxinsxghwtjel5xswuq '@storybook/addon-links': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addons': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/client-api': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/preset-scss': 1.0.3_7yyjlakj7kidaoj2rqhkbn5gom - '@storybook/react': 6.5.16_6mbplxbx6s7x4hmdmervij2kcu + '@storybook/react': 6.5.16_kv2wqippxinsxghwtjel5xswuq '@storybook/testing-library': 0.0.13_biqbaboplfbrettd7655fr4n2y '@storybook/theming': 6.5.16_biqbaboplfbrettd7655fr4n2y '@types/mdx': 2.0.3 @@ -405,7 +405,7 @@ importers: start-server-and-test: 1.15.4 storybook-dark-mode: 2.1.0_biqbaboplfbrettd7655fr4n2y style-loader: 2.0.0 - typescript: 4.9.5 + typescript: 4.6.4 packages/icons: specifiers: @@ -424,7 +424,7 @@ importers: svgo: 3.0.2 ts-jest: 26.5.6 ts-node: 10.9.1 - typescript: 4.9.5 + typescript: 4.8.4 devDependencies: '@tsconfig/node16': 1.0.3 '@types/jest': 26.0.24 @@ -439,9 +439,9 @@ importers: mock-fs: 5.2.0 node-fetch: 2.6.9 svgo: 3.0.2 - ts-jest: 26.5.6_xuote2qreek47x2di7kesslrai - ts-node: 10.9.1_tncu2ai53lzgmizdedur7lbibe - typescript: 4.9.5 + ts-jest: 26.5.6_we2p4sglclq5bmc4orivof3sv4 + ts-node: 10.9.1_qcqsnqvvdpjatba7u2dizzf44y + typescript: 4.8.4 packages/internet-header: specifiers: @@ -460,7 +460,7 @@ importers: '@types/throttle-debounce': 5.0.0 babel-loader: 9.1.2 body-scroll-lock: 4.0.0-beta.0 - bootstrap: 5.2.3 + bootstrap: '5.1' cypress: 12.6.0 cypress-each: 1.13.1 cypress-storybook: 0.5.1 @@ -478,7 +478,7 @@ importers: tabbable: 6.1.1 throttle-debounce: 5.0.0 ts-jest: 26.5.6 - typescript: 4.9.5 + typescript: 4.8.4 url-polyfill: 1.1.12 dependencies: '@stencil/core': 3.0.1 @@ -493,7 +493,7 @@ importers: '@babel/core': 7.21.0 '@percy/cli': 1.20.0 '@percy/cypress': 3.1.2_cypress@12.6.0 - '@stencil/eslint-plugin': 0.4.0_w5c5dbqc272erzbms35isk44xy + '@stencil/eslint-plugin': 0.4.0_amwcv7xlxldl7plzy4gagvnzj4 '@stencil/sass': 2.0.3_@stencil+core@3.0.1 '@swisspost/design-system-styles': link:../styles/dist '@types/iframe-resizer': 3.5.9 @@ -502,7 +502,7 @@ importers: '@types/node': 18.14.0 '@types/throttle-debounce': 5.0.0 babel-loader: 9.1.2_@babel+core@7.21.0 - bootstrap: 5.2.3 + bootstrap: 5.1.3 cypress: 12.6.0 cypress-each: 1.13.1 cypress-storybook: 0.5.1_cypress@12.6.0 @@ -515,21 +515,21 @@ importers: rollup-plugin-visualizer: 5.9.0 sass: 1.58.3 start-server-and-test: 1.15.4 - ts-jest: 26.5.6_xuote2qreek47x2di7kesslrai - typescript: 4.9.5 + ts-jest: 26.5.6_we2p4sglclq5bmc4orivof3sv4 + typescript: 4.8.4 packages/styles: specifiers: - '@angular-devkit/core': <=15.0.4 - '@angular-devkit/schematics': <=15.0.4 - '@angular/compiler': <=15.0.4 - '@angular/core': <=15.0.4 + '@angular-devkit/core': 14.2.10 + '@angular-devkit/schematics': 14.2.10 + '@angular/compiler': 14.2.12 + '@angular/core': 14.2.12 '@percy/cli': 1.20.0 '@percy/cypress': 3.1.2 '@popperjs/core': 2.11.6 '@types/node': 18.14.0 autoprefixer: 10.4.13 - bootstrap: 5.2.3 + bootstrap: 5.1.3 cheerio: 1.0.0-rc.12 copyfiles: 2.4.1 cypress: 12.6.0 @@ -550,18 +550,18 @@ importers: stylelint-config-sass-guidelines: 9.0.1 stylelint-prettier: 2.0.0 stylelint-scss: 4.4.0 - typescript: 4.9.5 + typescript: 4.8.4 dependencies: - '@angular-devkit/core': 15.0.4 - '@angular-devkit/schematics': 15.0.4 - '@angular/core': 15.0.4 + '@angular-devkit/core': 14.2.10 + '@angular-devkit/schematics': 14.2.10 + '@angular/core': 14.2.12 '@popperjs/core': 2.11.6 - bootstrap: 5.2.3_@popperjs+core@2.11.6 + bootstrap: 5.1.3_@popperjs+core@2.11.6 cheerio: 1.0.0-rc.12 prettier: 2.8.4 - typescript: 4.9.5 + typescript: 4.8.4 devDependencies: - '@angular/compiler': 15.0.4_@angular+core@15.0.4 + '@angular/compiler': 14.2.12_@angular+core@14.2.12 '@percy/cli': 1.20.0 '@percy/cypress': 3.1.2_cypress@12.6.0 '@types/node': 18.14.0 @@ -588,6 +588,10 @@ importers: packages: + /@adobe/css-tools/4.0.1: + resolution: {integrity: sha512-+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigemIdIeTi1ODqjx6Tad9NCVnPRwewWlKkVab5PlK8DCtPTyX7S8g==} + dev: true + /@ampproject/remapping/2.2.0: resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} engines: {node: '>=6.0.0'} @@ -595,44 +599,31 @@ packages: '@jridgewell/gen-mapping': 0.1.1 '@jridgewell/trace-mapping': 0.3.17 - /@angular-devkit/architect/0.1501.6: - resolution: {integrity: sha512-u07zZFlfrg0Qn4mu5M9Nz0pH2Yd2028XF/73980PsZMxwkSm4diF08v4bHk3UyR7yPT7phwvt4znj6ryZhx1gw==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - dependencies: - '@angular-devkit/core': 15.1.6 - rxjs: 6.6.7 - transitivePeerDependencies: - - chokidar - dev: true - - /@angular-devkit/architect/0.1501.6_chokidar@3.5.3: - resolution: {integrity: sha512-u07zZFlfrg0Qn4mu5M9Nz0pH2Yd2028XF/73980PsZMxwkSm4diF08v4bHk3UyR7yPT7phwvt4znj6ryZhx1gw==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + /@angular-devkit/architect/0.1402.10: + resolution: {integrity: sha512-/6YmPrgataj1jD2Uqd1ED+CG4DaZGacoeZd/89hH7hF76Nno8K18DrSOqJAEmDnOWegpSRGVLd0qP09IHmaG5w==} + engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 15.1.6_chokidar@3.5.3 + '@angular-devkit/core': 14.2.10 rxjs: 6.6.7 transitivePeerDependencies: - chokidar dev: true - /@angular-devkit/build-angular/15.1.6_5m44fyt3bdkrjmrip2suqlswpm: - resolution: {integrity: sha512-cUiS1ziIPwuDmz+vt7ycHKt+B5w4JOQITZgZGZ0ddcJNJ257xG9OvF+WZ9unef4yte1wWscHkxDBHUHo7pHglA==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + /@angular-devkit/build-angular/14.2.10_jyrcix76lobc7ensxbp3g33f54: + resolution: {integrity: sha512-VCeZAyq4uPCJukKInaSiD4i/GgxgcU4jFlLFQtoYNmaBS4xbPOymL19forRIihiV0dwNEa2L694vRTAPMBxIfw==} + engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: - '@angular/compiler-cli': ^15.0.0 - '@angular/localize': ^15.0.0 - '@angular/platform-server': ^15.0.0 - '@angular/service-worker': ^15.0.0 + '@angular/compiler-cli': ^14.0.0 + '@angular/localize': ^14.0.0 + '@angular/service-worker': ^14.0.0 karma: ^6.3.0 - ng-packagr: ^15.0.0 + ng-packagr: ^14.0.0 protractor: ^7.0.0 tailwindcss: ^2.0.0 || ^3.0.0 - typescript: '>=4.8.2 <5.0' + typescript: '>=4.6.2 <4.9' peerDependenciesMeta: '@angular/localize': optional: true - '@angular/platform-server': - optional: true '@angular/service-worker': optional: true karma: @@ -645,76 +636,79 @@ packages: optional: true dependencies: '@ampproject/remapping': 2.2.0 - '@angular-devkit/architect': 0.1501.6_chokidar@3.5.3 - '@angular-devkit/build-webpack': 0.1501.6_oc46zsvsns3nh7f43oasdmifbu - '@angular-devkit/core': 15.1.6_chokidar@3.5.3 - '@angular/compiler-cli': 15.1.5_nolqrmukmycxjx7xovu3ezjhk4 - '@angular/localize': 15.1.5_ibnfrx3mdk7k6nb6hkpwkyin2q - '@babel/core': 7.20.12 - '@babel/generator': 7.20.7 + '@angular-devkit/architect': 0.1402.10 + '@angular-devkit/build-webpack': 0.1402.10_mldmorf72vas4wjtkspcp7zl7m + '@angular-devkit/core': 14.2.10 + '@angular/compiler-cli': 14.2.12_xny3jupsupef4qvbeynwkkewkm + '@angular/localize': 14.2.12_cqwiofdtgqwkx67gfnt5blkgxu + '@babel/core': 7.18.10 + '@babel/generator': 7.18.12 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-proposal-async-generator-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-runtime': 7.19.6_@babel+core@7.20.12 - '@babel/preset-env': 7.20.2_@babel+core@7.20.12 - '@babel/runtime': 7.20.7 - '@babel/template': 7.20.7 + '@babel/plugin-proposal-async-generator-functions': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 + '@babel/preset-env': 7.18.10_@babel+core@7.18.10 + '@babel/runtime': 7.18.9 + '@babel/template': 7.18.10 '@discoveryjs/json-ext': 0.5.7 - '@ngtools/webpack': 15.1.6_pejm6ti7kzcgvm2k72sd7tsi2y + '@ngtools/webpack': 14.2.10_q7d232hfbrbym4wwkrc4egci5m ansi-colors: 4.1.3 - autoprefixer: 10.4.13_postcss@8.4.21 - babel-loader: 9.1.2_la66t7xldg4uecmyawueag5wkm + babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm babel-plugin-istanbul: 6.1.1 browserslist: 4.21.4 - cacache: 17.0.4 - chokidar: 3.5.3 - copy-webpack-plugin: 11.0.0_webpack@5.75.0 + cacache: 16.1.2 + copy-webpack-plugin: 11.0.0_webpack@5.74.0 critters: 0.0.16 - css-loader: 6.7.3_webpack@5.75.0 - esbuild-wasm: 0.16.17 + css-loader: 6.7.1_webpack@5.74.0 + esbuild-wasm: 0.15.5 glob: 8.0.3 https-proxy-agent: 5.0.1 inquirer: 8.2.4 - jsonc-parser: 3.2.0 + jsonc-parser: 3.1.0 karma: 6.4.1 karma-source-map-support: 1.4.0 less: 4.1.3 - less-loader: 11.1.0_less@4.1.3+webpack@5.75.0 - license-webpack-plugin: 4.0.2_webpack@5.75.0 + less-loader: 11.0.0_less@4.1.3+webpack@5.74.0 + license-webpack-plugin: 4.0.2_webpack@5.74.0 loader-utils: 3.2.1 - magic-string: 0.27.0 - mini-css-extract-plugin: 2.7.2_webpack@5.75.0 + mini-css-extract-plugin: 2.6.1_webpack@5.74.0 + minimatch: 5.1.0 open: 8.4.0 ora: 5.4.1 parse5-html-rewriting-stream: 6.0.1 piscina: 3.2.0 - postcss: 8.4.21 - postcss-loader: 7.0.2_6jdsrmfenkuhhw3gx4zvjlznce + postcss: 8.4.16 + postcss-import: 15.0.0_postcss@8.4.16 + postcss-loader: 7.0.1_qjv4cptcpse3y5hrjkrbb7drda + postcss-preset-env: 7.8.0_postcss@8.4.16 protractor: 7.0.0 + regenerator-runtime: 0.13.9 resolve-url-loader: 5.0.0 rxjs: 6.6.7 - sass: 1.57.1 - sass-loader: 13.2.0_sass@1.57.1+webpack@5.75.0 - semver: 7.3.8 - source-map-loader: 4.0.1_webpack@5.75.0 + sass: 1.54.4 + sass-loader: 13.0.2_sass@1.54.4+webpack@5.74.0 + semver: 7.3.7 + source-map-loader: 4.0.0_webpack@5.74.0 source-map-support: 0.5.21 - terser: 5.16.1 + stylus: 0.59.0 + stylus-loader: 7.0.0_rgwcw63jhyplbyg2jpw7ajyoqm + terser: 5.14.2 text-table: 0.2.0 tree-kill: 1.2.2 - tslib: 2.4.1 - typescript: 4.9.5 - webpack: 5.75.0_esbuild@0.16.17 - webpack-dev-middleware: 6.0.1_webpack@5.75.0 - webpack-dev-server: 4.11.1_webpack@5.75.0 + tslib: 2.4.0 + typescript: 4.8.4 + webpack: 5.74.0_esbuild@0.15.5 + webpack-dev-middleware: 5.3.3_webpack@5.74.0 + webpack-dev-server: 4.11.0_webpack@5.74.0 webpack-merge: 5.8.0 - webpack-subresource-integrity: 5.1.0_webpack@5.75.0 + webpack-subresource-integrity: 5.1.0_webpack@5.74.0 optionalDependencies: - esbuild: 0.16.17 + esbuild: 0.15.5 transitivePeerDependencies: - '@swc/core' - bluebird - bufferutil + - chokidar - debug - fibers - html-webpack-plugin @@ -726,24 +720,21 @@ packages: - webpack-cli dev: true - /@angular-devkit/build-angular/15.1.6_njyphgzcghy4ywd2ijokiidocq: - resolution: {integrity: sha512-cUiS1ziIPwuDmz+vt7ycHKt+B5w4JOQITZgZGZ0ddcJNJ257xG9OvF+WZ9unef4yte1wWscHkxDBHUHo7pHglA==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + /@angular-devkit/build-angular/14.2.10_yoo73bwfrjawohf4lsscqxcktu: + resolution: {integrity: sha512-VCeZAyq4uPCJukKInaSiD4i/GgxgcU4jFlLFQtoYNmaBS4xbPOymL19forRIihiV0dwNEa2L694vRTAPMBxIfw==} + engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: - '@angular/compiler-cli': ^15.0.0 - '@angular/localize': ^15.0.0 - '@angular/platform-server': ^15.0.0 - '@angular/service-worker': ^15.0.0 + '@angular/compiler-cli': ^14.0.0 + '@angular/localize': ^14.0.0 + '@angular/service-worker': ^14.0.0 karma: ^6.3.0 - ng-packagr: ^15.0.0 + ng-packagr: ^14.0.0 protractor: ^7.0.0 tailwindcss: ^2.0.0 || ^3.0.0 - typescript: '>=4.8.2 <5.0' + typescript: '>=4.6.2 <4.9' peerDependenciesMeta: '@angular/localize': optional: true - '@angular/platform-server': - optional: true '@angular/service-worker': optional: true karma: @@ -756,76 +747,79 @@ packages: optional: true dependencies: '@ampproject/remapping': 2.2.0 - '@angular-devkit/architect': 0.1501.6_chokidar@3.5.3 - '@angular-devkit/build-webpack': 0.1501.6_oc46zsvsns3nh7f43oasdmifbu - '@angular-devkit/core': 15.1.6_chokidar@3.5.3 - '@angular/compiler-cli': 15.1.5_nolqrmukmycxjx7xovu3ezjhk4 - '@angular/localize': 15.1.5_ibnfrx3mdk7k6nb6hkpwkyin2q - '@babel/core': 7.20.12 - '@babel/generator': 7.20.7 + '@angular-devkit/architect': 0.1402.10 + '@angular-devkit/build-webpack': 0.1402.10_mldmorf72vas4wjtkspcp7zl7m + '@angular-devkit/core': 14.2.10 + '@angular/compiler-cli': 14.2.12_xny3jupsupef4qvbeynwkkewkm + '@angular/localize': 14.2.12_cqwiofdtgqwkx67gfnt5blkgxu + '@babel/core': 7.18.10 + '@babel/generator': 7.18.12 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-proposal-async-generator-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-runtime': 7.19.6_@babel+core@7.20.12 - '@babel/preset-env': 7.20.2_@babel+core@7.20.12 - '@babel/runtime': 7.20.7 - '@babel/template': 7.20.7 + '@babel/plugin-proposal-async-generator-functions': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 + '@babel/preset-env': 7.18.10_@babel+core@7.18.10 + '@babel/runtime': 7.18.9 + '@babel/template': 7.18.10 '@discoveryjs/json-ext': 0.5.7 - '@ngtools/webpack': 15.1.6_pejm6ti7kzcgvm2k72sd7tsi2y + '@ngtools/webpack': 14.2.10_q7d232hfbrbym4wwkrc4egci5m ansi-colors: 4.1.3 - autoprefixer: 10.4.13_postcss@8.4.21 - babel-loader: 9.1.2_la66t7xldg4uecmyawueag5wkm + babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm babel-plugin-istanbul: 6.1.1 browserslist: 4.21.4 - cacache: 17.0.4 - chokidar: 3.5.3 - copy-webpack-plugin: 11.0.0_webpack@5.75.0 + cacache: 16.1.2 + copy-webpack-plugin: 11.0.0_webpack@5.74.0 critters: 0.0.16 - css-loader: 6.7.3_webpack@5.75.0 - esbuild-wasm: 0.16.17 + css-loader: 6.7.1_webpack@5.74.0 + esbuild-wasm: 0.15.5 glob: 8.0.3 https-proxy-agent: 5.0.1 inquirer: 8.2.4 - jsonc-parser: 3.2.0 + jsonc-parser: 3.1.0 karma: 6.4.1 karma-source-map-support: 1.4.0 less: 4.1.3 - less-loader: 11.1.0_less@4.1.3+webpack@5.75.0 - license-webpack-plugin: 4.0.2_webpack@5.75.0 + less-loader: 11.0.0_less@4.1.3+webpack@5.74.0 + license-webpack-plugin: 4.0.2_webpack@5.74.0 loader-utils: 3.2.1 - magic-string: 0.27.0 - mini-css-extract-plugin: 2.7.2_webpack@5.75.0 - ng-packagr: 15.1.2_jzeiugkiglfx2y542pr37o6vve + mini-css-extract-plugin: 2.6.1_webpack@5.74.0 + minimatch: 5.1.0 + ng-packagr: 14.2.2_uagavn7dbwvtglbldk5giq5ssq open: 8.4.0 ora: 5.4.1 parse5-html-rewriting-stream: 6.0.1 piscina: 3.2.0 - postcss: 8.4.21 - postcss-loader: 7.0.2_6jdsrmfenkuhhw3gx4zvjlznce + postcss: 8.4.16 + postcss-import: 15.0.0_postcss@8.4.16 + postcss-loader: 7.0.1_qjv4cptcpse3y5hrjkrbb7drda + postcss-preset-env: 7.8.0_postcss@8.4.16 + regenerator-runtime: 0.13.9 resolve-url-loader: 5.0.0 rxjs: 6.6.7 - sass: 1.57.1 - sass-loader: 13.2.0_sass@1.57.1+webpack@5.75.0 - semver: 7.3.8 - source-map-loader: 4.0.1_webpack@5.75.0 + sass: 1.54.4 + sass-loader: 13.0.2_sass@1.54.4+webpack@5.74.0 + semver: 7.3.7 + source-map-loader: 4.0.0_webpack@5.74.0 source-map-support: 0.5.21 - terser: 5.16.1 + stylus: 0.59.0 + stylus-loader: 7.0.0_rgwcw63jhyplbyg2jpw7ajyoqm + terser: 5.14.2 text-table: 0.2.0 tree-kill: 1.2.2 - tslib: 2.4.1 - typescript: 4.9.5 - webpack: 5.75.0_esbuild@0.16.17 - webpack-dev-middleware: 6.0.1_webpack@5.75.0 - webpack-dev-server: 4.11.1_webpack@5.75.0 + tslib: 2.4.0 + typescript: 4.8.4 + webpack: 5.74.0_esbuild@0.15.5 + webpack-dev-middleware: 5.3.3_webpack@5.74.0 + webpack-dev-server: 4.11.0_webpack@5.74.0 webpack-merge: 5.8.0 - webpack-subresource-integrity: 5.1.0_webpack@5.75.0 + webpack-subresource-integrity: 5.1.0_webpack@5.74.0 optionalDependencies: - esbuild: 0.16.17 + esbuild: 0.15.5 transitivePeerDependencies: - '@swc/core' - bluebird - bufferutil + - chokidar - debug - fibers - html-webpack-plugin @@ -853,24 +847,24 @@ packages: webpack: 5.75.0 dev: true - /@angular-devkit/build-webpack/0.1501.6_oc46zsvsns3nh7f43oasdmifbu: - resolution: {integrity: sha512-FVWtzpCfakEvQGSFGiKoGSLxz2KoZqPdca5WiT4sHRO+hD0IvP+cABxvWJgRXYpeeQGqV9BgHz5pV7v20i4U8Q==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + /@angular-devkit/build-webpack/0.1402.10_mldmorf72vas4wjtkspcp7zl7m: + resolution: {integrity: sha512-h+2MaSY7QSvoJ3R+Hvin21jVCfPGOTLdASIUk4Jmq6J3y5BSku3KSSaV8dWoBOBkFCwQyPQMRjiHoHKLpC1K7g==} + engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: webpack: ^5.30.0 webpack-dev-server: ^4.0.0 dependencies: - '@angular-devkit/architect': 0.1501.6_chokidar@3.5.3 + '@angular-devkit/architect': 0.1402.10 rxjs: 6.6.7 - webpack: 5.75.0_esbuild@0.16.17 - webpack-dev-server: 4.11.1_webpack@5.75.0 + webpack: 5.74.0_esbuild@0.15.5 + webpack-dev-server: 4.11.0_webpack@5.74.0 transitivePeerDependencies: - chokidar dev: true - /@angular-devkit/core/15.0.4: - resolution: {integrity: sha512-4ITpRAevd652SxB+qNesIQ9qfbm7wT5UBU5kJOPPwGL77I21g8CQpkmV1n5VSacPvC9Zbz90feOWexf7w7JzcA==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + /@angular-devkit/core/14.2.10: + resolution: {integrity: sha512-K4AO7mROTdbhQ7chtyQd6oPwmuL+BPUh+wn6Aq1qrmYJK4UZYFOPp8fi/Ehs8meCEeywtrssOPfrOE4Gsre9dg==} + engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: chokidar: ^3.5.2 peerDependenciesMeta: @@ -879,125 +873,77 @@ packages: dependencies: ajv: 8.11.0 ajv-formats: 2.1.1 - jsonc-parser: 3.2.0 - rxjs: 6.6.7 - source-map: 0.7.4 - dev: false - - /@angular-devkit/core/15.1.6: - resolution: {integrity: sha512-jGgxyRjecVf6lEyqDxz7ltMEndNPxIg720pk6r40fgsu0dU8w9vjJSJe7k0XdJiXVRcN6wZa/J5nO/xcwWVIsA==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - peerDependencies: - chokidar: ^3.5.2 - peerDependenciesMeta: - chokidar: - optional: true - dependencies: - ajv: 8.12.0 - ajv-formats: 2.1.1 - jsonc-parser: 3.2.0 - rxjs: 6.6.7 - source-map: 0.7.4 - dev: true - - /@angular-devkit/core/15.1.6_chokidar@3.5.3: - resolution: {integrity: sha512-jGgxyRjecVf6lEyqDxz7ltMEndNPxIg720pk6r40fgsu0dU8w9vjJSJe7k0XdJiXVRcN6wZa/J5nO/xcwWVIsA==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - peerDependencies: - chokidar: ^3.5.2 - peerDependenciesMeta: - chokidar: - optional: true - dependencies: - ajv: 8.12.0 - ajv-formats: 2.1.1 - chokidar: 3.5.3 - jsonc-parser: 3.2.0 + jsonc-parser: 3.1.0 rxjs: 6.6.7 source-map: 0.7.4 - dev: true - - /@angular-devkit/schematics/15.0.4: - resolution: {integrity: sha512-/gXiLFS0+xFdx6wPoBpe/c6/K9I5edMpaASqPf4XheKtrsSvL+qTlIi3nsbfItzOiDXbaBmlbxGfkMHz/yg0Ig==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} - dependencies: - '@angular-devkit/core': 15.0.4 - jsonc-parser: 3.2.0 - magic-string: 0.26.7 - ora: 5.4.1 - rxjs: 6.6.7 - transitivePeerDependencies: - - chokidar - dev: false - /@angular-devkit/schematics/15.1.6: - resolution: {integrity: sha512-cwmJFpS43zrdlmfwfHIxG/Nzg5rzFdtKrHx64ZXxNFm6JdyK2JTs/qrHUwv1FYWAcqhdiHn+00jYklMmvsvPOA==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + /@angular-devkit/schematics/14.2.10: + resolution: {integrity: sha512-MMp31KpJTwKHisXOq+6VOXYApq97hZxFaFmZk396X5aIFTCELUwjcezQDk+u2nEs5iK/COUfnN3plGcfJxYhQA==} + engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 15.1.6 - jsonc-parser: 3.2.0 - magic-string: 0.27.0 + '@angular-devkit/core': 14.2.10 + jsonc-parser: 3.1.0 + magic-string: 0.26.2 ora: 5.4.1 rxjs: 6.6.7 transitivePeerDependencies: - chokidar - dev: true - /@angular-eslint/builder/15.2.1_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-7x2DANebLRl997Mj4DhZrnz5+vnSjavGGveJ0mBuU7CEsL0ZYLftdRqL0e0HtU3ksseS7xpchD6OM08nkNgySw==} + /@angular-eslint/builder/14.4.0_vvbfoh7ci2jjuy6alapehrh2ri: + resolution: {integrity: sha512-AhAUFvSg0urtb6Lsowvuxwu6DMXUy0BPwrnfNOBGjRt9vG7F9kgXXAsm5DnIS0GNy/mLZ9mSfa86fv++1e0KUA==} peerDependencies: - eslint: ^7.20.0 || ^8.0.0 + eslint: ^7.0.0 || ^8.0.0 typescript: '*' dependencies: eslint: 8.34.0 - typescript: 4.9.5 + typescript: 4.8.4 dev: true - /@angular-eslint/bundled-angular-compiler/15.2.1: - resolution: {integrity: sha512-LO7Am8eVCr7oh6a0VmKSL7K03CnQEQhFO7Wt/YtbfYOxVjrbwmYLwJn+wZPOT7A02t/BttOD/WXuDrOWtSMQ/Q==} + /@angular-eslint/bundled-angular-compiler/14.4.0: + resolution: {integrity: sha512-KMHPHd24s0HVvAP/DxSSqhYBWhwW8FgS/r0Uwv8eWpsIdc/z/Chd2ush2SgPchmmquAXTgOZsbEY7ZmW+XkJfQ==} dev: true - /@angular-eslint/eslint-plugin-template/15.2.1_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-IeiSLk6YxapFdH2z5o/O3R7VwtBd2T6fWmhLFPwDYMDknrwegnOjwswCdBplOccpUp0wqlCeGUx7LTsuzwaz7w==} + /@angular-eslint/eslint-plugin-template/14.4.0_vvbfoh7ci2jjuy6alapehrh2ri: + resolution: {integrity: sha512-d3GM/EU2iWzr+BrITwO4gBf9WfDfuOdTjfinV/zN84oXMFaK2ENo+IP6OEsD9hh36rdPps+m2gFGDdx+rTzBpg==} peerDependencies: - eslint: ^7.20.0 || ^8.0.0 + eslint: ^7.0.0 || ^8.0.0 typescript: '*' dependencies: - '@angular-eslint/bundled-angular-compiler': 15.2.1 - '@angular-eslint/utils': 15.2.1_7kw3g6rralp5ps6mg3uyzz6azm - '@typescript-eslint/type-utils': 5.48.2_7kw3g6rralp5ps6mg3uyzz6azm - '@typescript-eslint/utils': 5.48.2_7kw3g6rralp5ps6mg3uyzz6azm + '@angular-eslint/bundled-angular-compiler': 14.4.0 + '@angular-eslint/utils': 14.4.0_vvbfoh7ci2jjuy6alapehrh2ri + '@typescript-eslint/type-utils': 5.43.0_vvbfoh7ci2jjuy6alapehrh2ri + '@typescript-eslint/utils': 5.43.0_vvbfoh7ci2jjuy6alapehrh2ri aria-query: 5.1.3 axobject-query: 3.1.1 eslint: 8.34.0 - typescript: 4.9.5 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@angular-eslint/eslint-plugin/15.2.1_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-OM7b1kS4E4CkXjkaWN+lEzawh4VxY6l7FO1Cuk4s7iv3/YpZG3rJxIZBqnFLTixwrBuqw8y4FNBzF3eDgmFAUw==} + /@angular-eslint/eslint-plugin/14.4.0_vvbfoh7ci2jjuy6alapehrh2ri: + resolution: {integrity: sha512-2rZQ4mt7tEUW+lI5jjuj3HWaT4VQtWTG6+LDnmuUmx76m8hqQ7NvFUpOcNDofu5KbEVBP+oF2DA6wjoZOIuSOA==} peerDependencies: - eslint: ^7.20.0 || ^8.0.0 + eslint: ^7.0.0 || ^8.0.0 typescript: '*' dependencies: - '@angular-eslint/utils': 15.2.1_7kw3g6rralp5ps6mg3uyzz6azm - '@typescript-eslint/utils': 5.48.2_7kw3g6rralp5ps6mg3uyzz6azm + '@angular-eslint/utils': 14.4.0_vvbfoh7ci2jjuy6alapehrh2ri + '@typescript-eslint/utils': 5.43.0_vvbfoh7ci2jjuy6alapehrh2ri eslint: 8.34.0 - typescript: 4.9.5 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@angular-eslint/schematics/15.2.1_3aaiaq6n6osk45otwoyijptuyq: - resolution: {integrity: sha512-0ZfBCejHWIcgy3J5kFs9sS/jqi8i5AptxggOwFySOlCLJ+CzNrktjD4jff1Zy8K/VLzY0Ci0BSZXvgWfP0k9Rg==} + /@angular-eslint/schematics/14.4.0_tc3zsogufm7jxburyf76xjxseu: + resolution: {integrity: sha512-BrGkPug+CZQWOfmNRsJDrEtYJcxvzF/kLlV7RjvIN9Ky5TjUiJVCeafl3VY6COSY32tjlh2GvBdl1AQKWWovbA==} peerDependencies: - '@angular/cli': '>= 15.0.0 < 16.0.0' + '@angular/cli': '>= 14.0.0 < 15.0.0' dependencies: - '@angular-eslint/eslint-plugin': 15.2.1_7kw3g6rralp5ps6mg3uyzz6azm - '@angular-eslint/eslint-plugin-template': 15.2.1_7kw3g6rralp5ps6mg3uyzz6azm - '@angular/cli': 15.1.6 - ignore: 5.2.4 + '@angular-eslint/eslint-plugin': 14.4.0_vvbfoh7ci2jjuy6alapehrh2ri + '@angular-eslint/eslint-plugin-template': 14.4.0_vvbfoh7ci2jjuy6alapehrh2ri + '@angular/cli': 14.2.10 + ignore: 5.2.0 strip-json-comments: 3.1.1 tmp: 0.2.1 transitivePeerDependencies: @@ -1006,158 +952,148 @@ packages: - typescript dev: true - /@angular-eslint/template-parser/15.2.1_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-ViCi79gC2aKJecmYLkOT+QlT5WMRNXeYz0Dr9Pr8qXzIbY0oAWE7nOT5jkXwQ9oUk+ybtGCWHma5JVJWVJsIog==} + /@angular-eslint/template-parser/14.4.0_vvbfoh7ci2jjuy6alapehrh2ri: + resolution: {integrity: sha512-zq888KpQB0YTEK26mkKcT4fs8LDWWT1oAEXU8DrXhvkikS8XavTSHOWJye/bVZR4oJRFCF5YTJV75DEMcGNIpQ==} peerDependencies: - eslint: ^7.20.0 || ^8.0.0 + eslint: ^7.0.0 || ^8.0.0 typescript: '*' dependencies: - '@angular-eslint/bundled-angular-compiler': 15.2.1 + '@angular-eslint/bundled-angular-compiler': 14.4.0 eslint: 8.34.0 eslint-scope: 7.1.1 - typescript: 4.9.5 + typescript: 4.8.4 dev: true - /@angular-eslint/utils/15.2.1_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-++FneAJHxJqcSu0igVN6uOkSoHxlzgLoMBswuovYJy3UKwm33/T6WFku8++753Ca/JucIoR1gdUfO7SoSspMDg==} + /@angular-eslint/utils/14.4.0_vvbfoh7ci2jjuy6alapehrh2ri: + resolution: {integrity: sha512-dPHklAVfh+JfueDfXre9Xooq7p5bFyKO2Z6y1agYeofAgHCPIJOPx2AhtFPrOtsc4VXFFiyE9XbowlXh4ogoKQ==} peerDependencies: - eslint: ^7.20.0 || ^8.0.0 + eslint: ^7.0.0 || ^8.0.0 typescript: '*' dependencies: - '@angular-eslint/bundled-angular-compiler': 15.2.1 - '@typescript-eslint/utils': 5.48.2_7kw3g6rralp5ps6mg3uyzz6azm + '@angular-eslint/bundled-angular-compiler': 14.4.0 + '@typescript-eslint/utils': 5.43.0_vvbfoh7ci2jjuy6alapehrh2ri eslint: 8.34.0 - typescript: 4.9.5 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true - /@angular/animations/15.1.5_@angular+core@15.1.5: - resolution: {integrity: sha512-yac9PHy5Y72MtKQhaBSQFOdIxEJIacmJrYNRFoa82z0YCa3VrEYjvuG0x5JewBN4gQGC5IOpj2C7c9zdXZv5HA==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/animations/14.2.12_@angular+core@14.2.12: + resolution: {integrity: sha512-gwdnFZkvVUr+enUNfhfCGRGGqNHn1+vTA81apLfHYhJxgjiLUtETc4KTOrQevtDm022pEd+LSrvr8r+7ag+jkw==} + engines: {node: ^14.15.0 || >=16.10.0} peerDependencies: - '@angular/core': 15.1.5 + '@angular/core': 14.2.12 dependencies: - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 tslib: 2.5.0 dev: false - /@angular/cdk/15.2.0_pq7so2lxnramwprfbopfupfyze: - resolution: {integrity: sha512-+D0gLmDZVCBMSZ6juImP0eXpL40hw4Ipm8KRQmF3UOU9T5xXMxzYjUI8N3J+ZUZsNzQwy+eW0HImkZ5St6YxvA==} + /@angular/cdk/14.2.7_yg5i7pymki4meqci6ecgolbxoi: + resolution: {integrity: sha512-/tEsYaUbDSnfEmKVvAMramIptmhI67O+9STjOV0i+74XR2NospeK0fkbywIANu1n3w6AHGMotvRWJrjmbCElFg==} peerDependencies: - '@angular/common': ^15.0.0 || ^16.0.0 - '@angular/core': ^15.0.0 || ^16.0.0 + '@angular/common': ^14.0.0 || ^15.0.0 + '@angular/core': ^14.0.0 || ^15.0.0 rxjs: ^6.5.3 || ^7.4.0 dependencies: - '@angular/common': 15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 + '@angular/common': 14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 rxjs: 7.8.0 tslib: 2.5.0 optionalDependencies: - parse5: 7.1.2 + parse5: 5.1.1 dev: false - /@angular/cli/15.1.6: - resolution: {integrity: sha512-GmC9jZK2ipUWj0dlfTI5oEYia4y1fLfO3AtAKU5CylNYrGyB+DRytKY8Bx6Fs4kaNBY8V8YnyLi7E/78gziMdg==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + /@angular/cli/14.2.10: + resolution: {integrity: sha512-gX9sAKOwq4lKdPWeABB7TzKDHdjQXvkUU8NmPJA6mEAVXvm3lhQtFvHDalZstwK8au2LY0LaXTcEtcKYOt3AXQ==} + engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} hasBin: true dependencies: - '@angular-devkit/architect': 0.1501.6 - '@angular-devkit/core': 15.1.6 - '@angular-devkit/schematics': 15.1.6 - '@schematics/angular': 15.1.6 + '@angular-devkit/architect': 0.1402.10 + '@angular-devkit/core': 14.2.10 + '@angular-devkit/schematics': 14.2.10 + '@schematics/angular': 14.2.10 '@yarnpkg/lockfile': 1.1.0 ansi-colors: 4.1.3 - ini: 3.0.1 + debug: 4.3.4 + ini: 3.0.0 inquirer: 8.2.4 - jsonc-parser: 3.2.0 - npm-package-arg: 10.1.0 - npm-pick-manifest: 8.0.1 + jsonc-parser: 3.1.0 + npm-package-arg: 9.1.0 + npm-pick-manifest: 7.0.1 open: 8.4.0 ora: 5.4.1 - pacote: 15.0.8 + pacote: 13.6.2 resolve: 1.22.1 - semver: 7.3.8 + semver: 7.3.7 symbol-observable: 4.0.0 - yargs: 17.6.2 + uuid: 8.3.2 + yargs: 17.5.1 transitivePeerDependencies: - bluebird - chokidar - supports-color dev: true - /@angular/common/15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq: - resolution: {integrity: sha512-52Ut/IeoM3avzV3Ts/ISkq7cc1FlA6dhLUq+L3ebY+Z8zZskCWjJWu4UgLGyVdtgSuAItyQm9CoZd+DrPLYtDA==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/common/14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4: + resolution: {integrity: sha512-oZunh9wfInFWhNO1P8uoEs/o4u8kerKMhw8GruywKm1TV7gHDP2Fi5WHGjFqq3XYptgBTPCTSEfyLX6Cwq1PUw==} + engines: {node: ^14.15.0 || >=16.10.0} peerDependencies: - '@angular/core': 15.1.5 + '@angular/core': 14.2.12 rxjs: ^6.5.3 || ^7.4.0 dependencies: - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 rxjs: 7.8.0 tslib: 2.5.0 dev: false - /@angular/compiler-cli/15.1.5_nolqrmukmycxjx7xovu3ezjhk4: - resolution: {integrity: sha512-gWg6MpMJOpfkwf2zxHJDp9EGwORga4MLTkvugL+1KbN+lvx4Ac9Y0GinlJ4+EGpttvQlTYHzn8GabWhcdzzUiQ==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/compiler-cli/14.2.12_xny3jupsupef4qvbeynwkkewkm: + resolution: {integrity: sha512-9Gkb9KFkaQPz8XaS8ZwwTioRZ4ywykdAWyceICEi78/Y9ConYrTX2SbFogzI2dPUZU8a04tMlbqTSmHjVbJftQ==} + engines: {node: ^14.15.0 || >=16.10.0} hasBin: true peerDependencies: - '@angular/compiler': 15.1.5 - typescript: '>=4.8.2 <5.0' + '@angular/compiler': 14.2.12 + typescript: '>=4.6.2 <4.9' dependencies: - '@angular/compiler': 15.1.5_@angular+core@15.1.5 - '@babel/core': 7.19.3 - '@jridgewell/sourcemap-codec': 1.4.14 + '@angular/compiler': 14.2.12_@angular+core@14.2.12 + '@babel/core': 7.21.0 chokidar: 3.5.3 convert-source-map: 1.8.0 dependency-graph: 0.11.0 - magic-string: 0.27.0 + magic-string: 0.26.2 reflect-metadata: 0.1.13 semver: 7.3.8 + sourcemap-codec: 1.4.8 tslib: 2.5.0 - typescript: 4.9.5 - yargs: 17.6.2 + typescript: 4.8.4 + yargs: 17.5.1 transitivePeerDependencies: - supports-color - /@angular/compiler/15.0.4_@angular+core@15.0.4: - resolution: {integrity: sha512-KtxgRJUGZamOXpIILFG2FTUW+bbc2phi/o6955/Q4LR1HOICQrYEy8PrT1Gp+lVXFKgDG+6cb01lH14LoBQvyw==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} - peerDependencies: - '@angular/core': 15.0.4 - peerDependenciesMeta: - '@angular/core': - optional: true - dependencies: - '@angular/core': 15.0.4 - tslib: 2.5.0 - dev: true - - /@angular/compiler/15.1.5_@angular+core@15.1.5: - resolution: {integrity: sha512-4Ciswu3HKE+Pk+6Lhi6v3inZ01WkNBi9D33OKGC+7uEAjl8DCNF13rBXLyMF6tIFd+L98KYpzwUyQYk8FI/vgA==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/compiler/14.2.12_@angular+core@14.2.12: + resolution: {integrity: sha512-u2MH9+NRwbbFDRNiPWPexed9CnCq9+pGHLuyACSP2uR6Ik68cE6cayeZbIeoEV5vWpda/XsLmJgPJysw7dAZLQ==} + engines: {node: ^14.15.0 || >=16.10.0} peerDependencies: - '@angular/core': 15.1.5 + '@angular/core': 14.2.12 peerDependenciesMeta: '@angular/core': optional: true dependencies: - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 tslib: 2.5.0 - /@angular/core/15.0.4: - resolution: {integrity: sha512-Xf8Nuu0iM/VjQHPS4A0jufqTYZCfiGqc0iAD7j9zM3TD6caQ3OP4mxXVYYTpIG+APKel38+Gol8cpQB/8PVbqQ==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/core/14.2.12: + resolution: {integrity: sha512-sGQxU5u4uawwvJa6jOTmGoisJiQ5HIN/RoBw99CmoqZIVyUSg9IRJJC1KVdH8gbpWBNLkElZv21lwJTL/msWyg==} + engines: {node: ^14.15.0 || >=16.10.0} peerDependencies: rxjs: ^6.5.3 || ^7.4.0 zone.js: ~0.11.4 || ~0.12.0 dependencies: tslib: 2.5.0 + dev: false - /@angular/core/15.1.5_rxjs@7.8.0+zone.js@0.12.0: - resolution: {integrity: sha512-JCbhGVaskqrstLB8CJoPtMQKH4gryhuLFUVL5cwbVy3UJGGNmc3Gzvk+9I7zDf/D08vKyXGGmBNBVx2J65SJgw==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/core/14.2.12_rxjs@7.8.0+zone.js@0.12.0: + resolution: {integrity: sha512-sGQxU5u4uawwvJa6jOTmGoisJiQ5HIN/RoBw99CmoqZIVyUSg9IRJJC1KVdH8gbpWBNLkElZv21lwJTL/msWyg==} + engines: {node: ^14.15.0 || >=16.10.0} peerDependencies: rxjs: ^6.5.3 || ^7.4.0 zone.js: ~0.11.4 || ~0.12.0 @@ -1166,100 +1102,100 @@ packages: tslib: 2.5.0 zone.js: 0.12.0 - /@angular/elements/15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq: - resolution: {integrity: sha512-Nqoh9Rpht0CromN1Xfmyw2Affp1sfETN82XO4HpsWZ6OdXNyl7nOsCrSBHKGcd8YppDdb7Av4euih8PNpGrduQ==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/elements/14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4: + resolution: {integrity: sha512-FSAM5wz/Vi0DZZ9do4tuo1m8XyioBH9htsv1E2vStr6NXaq13U6TImQs9RcLIAOoKFV+pSuxSqHpT/Wfs9G30Q==} + engines: {node: ^14.15.0 || >=16.10.0} peerDependencies: - '@angular/core': 15.1.5 + '@angular/core': 14.2.12 rxjs: ^6.5.3 || ^7.4.0 dependencies: - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 rxjs: 7.8.0 tslib: 2.5.0 dev: true - /@angular/forms/15.1.5_yndgxvmaauschrcdo656cxz5sy: - resolution: {integrity: sha512-FnuEdyYs1o/DJepLpTsY2/GwKTEXJ7sZlQb+NKkRWOoGpA0E4nSbhn3aCUic++MTgbZyHO0rmFKnD8TI2yyJDA==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/forms/14.2.12_ft6phxovscixssjysxonv3pqk4: + resolution: {integrity: sha512-7abYlGIT2JnAtutQUlH3fQS6QEpbfftgvsVcZJCyvX0rXL3u2w2vUQkDHJH4YJJp3AHFVCH4/l7R4VcaPnrwvA==} + engines: {node: ^14.15.0 || >=16.10.0} peerDependencies: - '@angular/common': 15.1.5 - '@angular/core': 15.1.5 - '@angular/platform-browser': 15.1.5 + '@angular/common': 14.2.12 + '@angular/core': 14.2.12 + '@angular/platform-browser': 14.2.12 rxjs: ^6.5.3 || ^7.4.0 dependencies: - '@angular/common': 15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 - '@angular/platform-browser': 15.1.5_s7kwnqxnlkypgp4vtemlnxkbmi + '@angular/common': 14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 + '@angular/platform-browser': 14.2.12_dax2jypo47bpgiczdvqsh7iq24 rxjs: 7.8.0 tslib: 2.5.0 dev: false - /@angular/language-service/15.1.5: - resolution: {integrity: sha512-jdvWZXcAn5Cei21HT8LhdKWMXcSzARURJXSFuX27IAfq74Jy9Z0et9QgHNDymX78N2Ti1/ZgjbdLNusDPvun0Q==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/language-service/14.2.12: + resolution: {integrity: sha512-YmW6simyEVmpDmbYVUhZ2IxSP6pmsWrV120rB9Y21/BeM39WIXA4NCNirVWlAd/KAKY9O7Sbn1nXI6rSDfhopQ==} + engines: {node: ^14.15.0 || >=16.10.0} dev: true - /@angular/localize/15.1.5_ibnfrx3mdk7k6nb6hkpwkyin2q: - resolution: {integrity: sha512-M9K6KrlQT7XG9MqXeMooPjmdWM/V/XtXuXJhO3ICraCAPiIXFGisQcSpN12WALo5HmswKJsasl2qM/ZjoapVRQ==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/localize/14.2.12_cqwiofdtgqwkx67gfnt5blkgxu: + resolution: {integrity: sha512-6TTnuvubvYL1LDIJhDfd7ygxTaj0ShTILCDXT4URBhZKQbQ3HAorDqsc6SXqZVGCHdqF0hGTaeN/7zVvgP9kzA==} + engines: {node: ^14.15.0 || >=16.10.0} hasBin: true peerDependencies: - '@angular/compiler': 15.1.5 - '@angular/compiler-cli': 15.1.5 + '@angular/compiler': 14.2.12 + '@angular/compiler-cli': 14.2.12 dependencies: - '@angular/compiler': 15.1.5_@angular+core@15.1.5 - '@angular/compiler-cli': 15.1.5_nolqrmukmycxjx7xovu3ezjhk4 - '@babel/core': 7.19.3 - glob: 8.1.0 - yargs: 17.6.2 + '@angular/compiler': 14.2.12_@angular+core@14.2.12 + '@angular/compiler-cli': 14.2.12_xny3jupsupef4qvbeynwkkewkm + '@babel/core': 7.18.9 + glob: 8.0.3 + yargs: 17.5.1 transitivePeerDependencies: - supports-color - /@angular/platform-browser-dynamic/15.1.5_pzachiwybhx467gapqhrlestmm: - resolution: {integrity: sha512-pPnNyXqnkeUcFAy6DHxeC26dS/Te55Lnf+Yjn3ijvxM6bUcLkdhoIUKEuuMRPOrRiBLk4Ha/rSCzr2GpJPlZog==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/platform-browser-dynamic/14.2.12_6cqhozsvdfqcnce26piw2go6r4: + resolution: {integrity: sha512-oZhNJeaBmgw8+KBSYpKz2RYqEDyETC+HJXH8dwIFcP6BqqwL2NE70FdSR7EnOa5c41MEtTmMCGhrJSFR60x5/w==} + engines: {node: ^14.15.0 || >=16.10.0} peerDependencies: - '@angular/common': 15.1.5 - '@angular/compiler': 15.1.5 - '@angular/core': 15.1.5 - '@angular/platform-browser': 15.1.5 + '@angular/common': 14.2.12 + '@angular/compiler': 14.2.12 + '@angular/core': 14.2.12 + '@angular/platform-browser': 14.2.12 dependencies: - '@angular/common': 15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq - '@angular/compiler': 15.1.5_@angular+core@15.1.5 - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 - '@angular/platform-browser': 15.1.5_s7kwnqxnlkypgp4vtemlnxkbmi + '@angular/common': 14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4 + '@angular/compiler': 14.2.12_@angular+core@14.2.12 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 + '@angular/platform-browser': 14.2.12_dax2jypo47bpgiczdvqsh7iq24 tslib: 2.5.0 dev: false - /@angular/platform-browser/15.1.5_s7kwnqxnlkypgp4vtemlnxkbmi: - resolution: {integrity: sha512-epeESrWEt41W6i2NqIbGKNE0Oa1JfeDtKfMXtcjUNCgT76qS3zmC0G6irO8BOVbrwpA/YI4yYx1B9vTDUXYbEg==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/platform-browser/14.2.12_dax2jypo47bpgiczdvqsh7iq24: + resolution: {integrity: sha512-vOarWym8ucl1gjYWCzdwyBha+MTvL381mvTTUu8aUx6nVhHFjv4bvpjlZnZgojecqUPyxOwmPLLHvCZPJVHZYg==} + engines: {node: ^14.15.0 || >=16.10.0} peerDependencies: - '@angular/animations': 15.1.5 - '@angular/common': 15.1.5 - '@angular/core': 15.1.5 + '@angular/animations': 14.2.12 + '@angular/common': 14.2.12 + '@angular/core': 14.2.12 peerDependenciesMeta: '@angular/animations': optional: true dependencies: - '@angular/animations': 15.1.5_@angular+core@15.1.5 - '@angular/common': 15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 + '@angular/animations': 14.2.12_@angular+core@14.2.12 + '@angular/common': 14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 tslib: 2.5.0 dev: false - /@angular/router/15.1.5_yndgxvmaauschrcdo656cxz5sy: - resolution: {integrity: sha512-1NXyXySE2/8aVjHk2e977b2uEDpKe3QIRSndpQXEmlqkQDPYKz8wwo4vyLlL5XK3k7pVKpcqDStvVyddD6YUvQ==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /@angular/router/14.2.12_ft6phxovscixssjysxonv3pqk4: + resolution: {integrity: sha512-r5tVus5RJDNc4U2v0jMtjPiAS1xDsVsJ70lS313DgZmBDHIVZP1cWIehdxwgNlGwQQtAA36eG7toBwqUU3gb/A==} + engines: {node: ^14.15.0 || >=16.10.0} peerDependencies: - '@angular/common': 15.1.5 - '@angular/core': 15.1.5 - '@angular/platform-browser': 15.1.5 + '@angular/common': 14.2.12 + '@angular/core': 14.2.12 + '@angular/platform-browser': 14.2.12 rxjs: ^6.5.3 || ^7.4.0 dependencies: - '@angular/common': 15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 - '@angular/platform-browser': 15.1.5_s7kwnqxnlkypgp4vtemlnxkbmi + '@angular/common': 14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 + '@angular/platform-browser': 14.2.12_dax2jypo47bpgiczdvqsh7iq24 rxjs: 7.8.0 tslib: 2.5.0 dev: false @@ -1302,19 +1238,19 @@ packages: - supports-color dev: true - /@babel/core/7.19.3: - resolution: {integrity: sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==} + /@babel/core/7.18.10: + resolution: {integrity: sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==} 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.19.3 - '@babel/helper-module-transforms': 7.20.11 - '@babel/helpers': 7.20.7 - '@babel/parser': 7.20.7 + '@babel/generator': 7.21.1 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.18.10 + '@babel/helper-module-transforms': 7.21.0 + '@babel/helpers': 7.21.0 + '@babel/parser': 7.21.1 '@babel/template': 7.20.7 - '@babel/traverse': 7.20.12 + '@babel/traverse': 7.21.0 '@babel/types': 7.21.0 convert-source-map: 1.8.0 debug: 4.3.4 @@ -1323,15 +1259,16 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: true - /@babel/core/7.20.12: - resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} + /@babel/core/7.18.9: + resolution: {integrity: sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 '@babel/generator': 7.21.1 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.18.9 '@babel/helper-module-transforms': 7.21.0 '@babel/helpers': 7.21.0 '@babel/parser': 7.21.1 @@ -1345,7 +1282,6 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color - dev: true /@babel/core/7.21.0: resolution: {integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA==} @@ -1368,15 +1304,24 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color - dev: true - /@babel/generator/7.20.7: - resolution: {integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==} + /@babel/generator/7.18.12: + resolution: {integrity: sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.21.0 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 + dev: true + + /@babel/generator/7.18.13: + resolution: {integrity: sha512-CkPg8ySSPuHTYPJYo7IRALdqyjM9HCbt/3uOBEFbzyGVP6Mn8bwFPB0jX6982JVNBlYzM1nnPkfjuXSOPtQeEQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.13 + '@jridgewell/gen-mapping': 0.3.2 + jsesc: 2.5.2 + dev: true /@babel/generator/7.21.1: resolution: {integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==} @@ -1402,32 +1347,32 @@ packages: '@babel/types': 7.21.0 dev: true - /@babel/helper-compilation-targets/7.20.7_@babel+core@7.19.3: + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.18.10: resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.20.10 - '@babel/core': 7.19.3 + '@babel/core': 7.18.10 '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.5 + browserslist: 4.21.4 lru-cache: 5.1.1 semver: 6.3.0 + dev: true - /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12: + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.18.9: resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.20.10 - '@babel/core': 7.20.12 + '@babel/core': 7.18.9 '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.5 + browserslist: 4.21.4 lru-cache: 5.1.1 semver: 6.3.0 - dev: true /@babel/helper-compilation-targets/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} @@ -1438,24 +1383,23 @@ packages: '@babel/compat-data': 7.20.10 '@babel/core': 7.21.0 '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.5 + browserslist: 4.21.4 lru-cache: 5.1.1 semver: 6.3.0 - dev: true - /@babel/helper-create-class-features-plugin/7.18.13_@babel+core@7.20.12: + /@babel/helper-create-class-features-plugin/7.18.13_@babel+core@7.18.10: resolution: {integrity: sha512-hDvXp+QYxSRL+23mpAlSGxHMDyIGChm0/AwTfTAAK5Ufe40nCsyNdaYCGuK91phn/fVu9kqayImRDkvNAgdrsA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.21.0 - '@babel/helper-member-expression-to-functions': 7.21.0 + '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.18.9 '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color @@ -1471,34 +1415,34 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.21.0 - '@babel/helper-member-expression-to-functions': 7.21.0 + '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.18.9 '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.21.0_@babel+core@7.20.12: - resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==} + /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-annotate-as-pure': 7.18.6 - regexpu-core: 5.3.1 + regexpu-core: 5.1.0 dev: true - /@babel/helper-create-regexp-features-plugin/7.21.0_@babel+core@7.21.0: - resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==} + /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.21.0: + resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 - regexpu-core: 5.3.1 + regexpu-core: 5.1.0 dev: true /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.21.0: @@ -1519,14 +1463,15 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.12: - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.18.10: + resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.20.2 + '@babel/traverse': 7.18.13 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -1535,8 +1480,8 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.21.0: - resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.21.0: + resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: @@ -1562,6 +1507,14 @@ packages: '@babel/types': 7.21.0 dev: true + /@babel/helper-function-name/7.18.9: + resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.18.10 + '@babel/types': 7.18.13 + dev: true + /@babel/helper-function-name/7.21.0: resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} engines: {node: '>=6.9.0'} @@ -1575,8 +1528,8 @@ packages: dependencies: '@babel/types': 7.21.0 - /@babel/helper-member-expression-to-functions/7.21.0: - resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==} + /@babel/helper-member-expression-to-functions/7.18.9: + resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.21.0 @@ -1588,21 +1541,6 @@ packages: dependencies: '@babel/types': 7.21.0 - /@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.21.0 - '@babel/types': 7.21.0 - transitivePeerDependencies: - - supports-color - /@babel/helper-module-transforms/7.21.0: resolution: {integrity: sha512-eD/JQ21IG2i1FraJnTMbUarAUkA7G988ofehG5MDCRXaUU91rEBJuCeSoou2Sk1y4RbLYXzqEg1QLwEmRU4qcQ==} engines: {node: '>=6.9.0'} @@ -1617,7 +1555,6 @@ packages: '@babel/types': 7.21.0 transitivePeerDependencies: - supports-color - dev: true /@babel/helper-optimise-call-expression/7.18.6: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} @@ -1635,13 +1572,13 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12: + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-wrap-function': 7.18.11 @@ -1665,14 +1602,13 @@ packages: - supports-color dev: true - /@babel/helper-replace-supers/7.20.7: - resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} + /@babel/helper-replace-supers/7.18.9: + resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-member-expression-to-functions': 7.21.0 + '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/template': 7.20.7 '@babel/traverse': 7.21.0 '@babel/types': 7.21.0 transitivePeerDependencies: @@ -1685,8 +1621,8 @@ packages: dependencies: '@babel/types': 7.21.0 - /@babel/helper-skip-transparent-expression-wrappers/7.20.0: - resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} + /@babel/helper-skip-transparent-expression-wrappers/7.18.9: + resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.21.0 @@ -1698,10 +1634,20 @@ packages: dependencies: '@babel/types': 7.21.0 + /@babel/helper-string-parser/7.18.10: + resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/helper-string-parser/7.19.4: resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} engines: {node: '>=6.9.0'} + /@babel/helper-validator-identifier/7.18.6: + resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/helper-validator-identifier/7.19.1: resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} engines: {node: '>=6.9.0'} @@ -1722,16 +1668,6 @@ packages: - 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.21.0 - '@babel/types': 7.21.0 - transitivePeerDependencies: - - supports-color - /@babel/helpers/7.21.0: resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==} engines: {node: '>=6.9.0'} @@ -1741,7 +1677,6 @@ packages: '@babel/types': 7.21.0 transitivePeerDependencies: - supports-color - dev: true /@babel/highlight/7.18.6: resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} @@ -1751,12 +1686,21 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 + /@babel/parser/7.18.13: + resolution: {integrity: sha512-dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.18.13 + dev: true + /@babel/parser/7.20.7: resolution: {integrity: sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.21.0 + dev: true /@babel/parser/7.21.1: resolution: {integrity: sha512-JzhBFpkuhBNYUY7qs+wTzNmyCWUHEaAFpQQD2YfU1rPL38/L43Wvid0fFkiOCnHvsGncRZgEPyGnltABLcVDTg==} @@ -1765,13 +1709,13 @@ packages: dependencies: '@babel/types': 7.21.0 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.12: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -1785,16 +1729,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.12: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.12 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10 dev: true /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.21.0: @@ -1805,27 +1749,27 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.0 dev: true - /@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==} + /@babel/plugin-proposal-async-generator-functions/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-environment-visitor': 7.18.9 '@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 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.0: - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + /@babel/plugin-proposal-async-generator-functions/7.18.10_@babel+core@7.21.0: + resolution: {integrity: sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1839,14 +1783,14 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.10: 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.20.12 - '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -1865,16 +1809,16 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10 transitivePeerDependencies: - supports-color dev: true @@ -1902,7 +1846,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.18.9 '@babel/helper-split-export-declaration': 7.18.6 '@babel/plugin-syntax-decorators': 7.17.12_@babel+core@7.21.0 charcodes: 0.2.0 @@ -1910,15 +1854,15 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 dev: true /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.21.0: @@ -1943,15 +1887,15 @@ packages: '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12: + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10 dev: true /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.0: @@ -1965,15 +1909,15 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 dev: true /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.21.0: @@ -1987,15 +1931,15 @@ packages: '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.12: + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 dev: true /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.21.0: @@ -2009,15 +1953,15 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 dev: true /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.21.0: @@ -2031,15 +1975,15 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 dev: true /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.21.0: @@ -2061,25 +2005,25 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 - '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.12.9 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.12: - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.20.10 - '@babel/core': 7.20.12 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.18.10 '@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 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10 dev: true - /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.0: - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.21.0: + resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2089,18 +2033,18 @@ packages: '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 dev: true /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.0: @@ -2114,16 +2058,16 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.12: + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@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 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 dev: true /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.21.0: @@ -2134,18 +2078,18 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 dev: true - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -2164,17 +2108,17 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.20.12 + '@babel/helper-create-class-features-plugin': 7.18.13_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10 transitivePeerDependencies: - supports-color dev: true @@ -2194,14 +2138,14 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12: + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2212,16 +2156,16 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.10: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2243,12 +2187,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.10: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2261,13 +2205,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.10: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2291,12 +2235,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.10: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2319,12 +2263,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.10: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2347,18 +2291,18 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.12: - resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} + /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.21.0: - resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} + /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.21.0: + resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2376,12 +2320,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.10: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2413,12 +2357,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.10: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2431,12 +2375,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.10: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2449,12 +2393,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.10: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2476,12 +2420,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.10: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2494,12 +2438,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.10: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2512,12 +2456,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.10: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2530,13 +2474,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.10: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2550,13 +2494,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.10: 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/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2580,13 +2524,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2600,22 +2544,22 @@ packages: '@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==} + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.10 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.0: - resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.21.0: + resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2628,13 +2572,13 @@ packages: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2648,18 +2592,18 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.20.12: - resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} + /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.21.0: - resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} + /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.21.0: + resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2668,53 +2612,51 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-classes/7.21.0_@babel+core@7.20.12: - resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} + /@babel/plugin-transform-classes/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.18.9 '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-classes/7.21.0_@babel+core@7.21.0: - resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} + /@babel/plugin-transform-classes/7.18.9_@babel+core@7.21.0: + resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.18.9 '@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.20.12: + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2728,18 +2670,18 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.12: - resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} + /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.18.10: + resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.21.0: - resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} + /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.21.0: + resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2748,14 +2690,14 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2766,17 +2708,17 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.12: + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2790,13 +2732,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2823,13 +2765,13 @@ packages: '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.21.0 dev: true - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.12: + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.10: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2843,14 +2785,14 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.12: + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.18.10 '@babel/helper-function-name': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2867,13 +2809,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.12: + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2887,13 +2829,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2907,21 +2849,22 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.12: - resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} + /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-module-transforms': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.21.0: - resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} + /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.21.0: + resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2929,26 +2872,28 @@ packages: '@babel/core': 7.21.0 '@babel/helper-module-transforms': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.12: - resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} + /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-module-transforms': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-simple-access': 7.20.2 + babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.21.0: - resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} + /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.21.0: + resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2957,27 +2902,29 @@ packages: '@babel/helper-module-transforms': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-simple-access': 7.20.2 + babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.12: - resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} + /@babel/plugin-transform-modules-systemjs/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-module-transforms': 7.21.0 '@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-systemjs/7.20.11_@babel+core@7.21.0: - resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} + /@babel/plugin-transform-modules-systemjs/7.18.9_@babel+core@7.21.0: + resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2987,17 +2934,18 @@ packages: '@babel/helper-module-transforms': 7.21.0 '@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.20.12: + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-module-transforms': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: @@ -3017,35 +2965,35 @@ packages: - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.12: - resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} + /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.21.0: - resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} + /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.21.0: + resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.10: 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.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -3059,15 +3007,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.18.9 transitivePeerDependencies: - supports-color dev: true @@ -3080,13 +3028,13 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.12.9: - resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.12.9: + resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3095,18 +3043,18 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.12: - resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.18.10: + resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.21.0: - resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.21.0: + resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3115,13 +3063,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -3180,13 +3128,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 regenerator-transform: 0.15.0 dev: true @@ -3202,13 +3150,13 @@ packages: regenerator-transform: 0.15.0 dev: true - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -3222,30 +3170,30 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.20.12: - resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==} + /@babel/plugin-transform-runtime/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - 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 + babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.10 + babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.10 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -3259,35 +3207,35 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.12: - resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} + /@babel/plugin-transform-spread/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 dev: true - /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.0: - resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} + /@babel/plugin-transform-spread/7.18.9_@babel+core@7.21.0: + resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 dev: true - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -3301,13 +3249,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.12: + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -3321,13 +3269,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.12: + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -3355,13 +3303,13 @@ packages: - supports-color dev: true - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.12: + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.18.10: 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.20.12 + '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -3375,14 +3323,14 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.12: + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -3393,184 +3341,98 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.0 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.21.0 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/preset-env/7.18.10_@babel+core@7.21.0: + /@babel/preset-env/7.18.10_@babel+core@7.18.10: resolution: {integrity: sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.20.10 - '@babel/core': 7.21.0 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 - '@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.21.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.0 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.21.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.0 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.0 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.21.0 - '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.21.0 - '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.21.0 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.0 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.21.0 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.0 - '@babel/preset-modules': 0.1.5_@babel+core@7.21.0 - '@babel/types': 7.21.0 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0 - babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.21.0 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0 - core-js-compat: 3.28.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@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.20.10 - '@babel/core': 7.20.12 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.18.10 '@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.20.12 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@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.18.6_@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.18.9_@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.18.9_@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.18.6_@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.18.6_@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.21.0_@babel+core@7.20.12 - '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.20.12 - '@babel/plugin-transform-computed-properties': 7.18.9_@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.18.6_@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/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-async-generator-functions': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.18.10 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.18.10 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-systemjs': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.10 + '@babel/preset-modules': 0.1.5_@babel+core@7.18.10 '@babel/types': 7.21.0 - 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.28.0 + babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.10 + babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.10 + core-js-compat: 3.23.1 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-env/7.20.2_@babel+core@7.21.0: - resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} + /@babel/preset-env/7.18.10_@babel+core@7.21.0: + resolution: {integrity: sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3582,7 +3444,7 @@ packages: '@babel/helper-validator-option': 7.18.6 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.21.0 '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-proposal-async-generator-functions': 7.18.10_@babel+core@7.21.0 '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.21.0 '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.21.0 @@ -3591,7 +3453,7 @@ packages: '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.21.0 '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0 '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.21.0 '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.0 '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.0 '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.0 @@ -3602,7 +3464,7 @@ packages: '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.0 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0 '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.21.0 + '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.21.0 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.0 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.0 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0 @@ -3613,12 +3475,12 @@ packages: '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0 '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.0 '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.21.0 '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.0 @@ -3626,19 +3488,19 @@ packages: '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.21.0 - '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.21.0 - '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.21.0 + '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-modules-systemjs': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.0 + '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.0 '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.21.0 @@ -3646,10 +3508,10 @@ packages: '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.0 '@babel/preset-modules': 0.1.5_@babel+core@7.21.0 '@babel/types': 7.21.0 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.0 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0 - core-js-compat: 3.28.0 + babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.21.0 + babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.21.0 + babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.21.0 + core-js-compat: 3.23.1 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -3667,15 +3529,15 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.21.0 dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.20.12: + /@babel/preset-modules/0.1.5_@babel+core@7.18.10: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 + '@babel/core': 7.18.10 '@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/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10 '@babel/types': 7.21.0 esutils: 2.0.3 dev: true @@ -3736,8 +3598,11 @@ packages: source-map-support: 0.5.21 dev: true - /@babel/regjsgen/0.8.0: - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + /@babel/runtime/7.18.9: + resolution: {integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.11 dev: true /@babel/runtime/7.20.7: @@ -3747,11 +3612,13 @@ packages: regenerator-runtime: 0.13.11 dev: true - /@babel/runtime/7.21.0: - resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} + /@babel/template/7.18.10: + resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} engines: {node: '>=6.9.0'} dependencies: - regenerator-runtime: 0.13.11 + '@babel/code-frame': 7.18.6 + '@babel/parser': 7.21.1 + '@babel/types': 7.21.0 dev: true /@babel/template/7.20.7: @@ -3762,22 +3629,23 @@ packages: '@babel/parser': 7.21.1 '@babel/types': 7.21.0 - /@babel/traverse/7.20.12: - resolution: {integrity: sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==} + /@babel/traverse/7.18.13: + resolution: {integrity: sha512-N6kt9X1jRMLPxxxPYWi7tgvJRH/rtoU+dbKAPDM44RFHiMH8igdsaSBgFeskhSl/kLWLDUvIh1RXCrTmg0/zvA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.21.1 + '@babel/generator': 7.18.13 '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.21.0 + '@babel/helper-function-name': 7.18.9 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.21.1 - '@babel/types': 7.21.0 + '@babel/parser': 7.18.13 + '@babel/types': 7.18.13 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: true /@babel/traverse/7.21.0: resolution: {integrity: sha512-Xdt2P1H4LKTO8ApPfnO1KmzYMFpp7D/EinoXzLYN/cHcBNrVCAkAtGUcXnHXrl/VGktureU6fkQrHSBE2URfoA==} @@ -3814,6 +3682,15 @@ packages: - supports-color dev: true + /@babel/types/7.18.13: + resolution: {integrity: sha512-ePqfTihzW0W6XAU+aMw2ykilisStJfDnsejDCXRchCcMJ4O0+8DhPXf2YUbZ6wjBlsEmZwLK/sPweWtu8hcJYQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.18.10 + '@babel/helper-validator-identifier': 7.18.6 + to-fast-properties: 2.0.0 + dev: true + /@babel/types/7.21.0: resolution: {integrity: sha512-uR7NWq2VNFnDi7EYqiRz2Jv/VQIu38tu64Zy8TX2nQFQ6etJ9V/Rr2msW8BS132mum2rL645qpDrLtAJtVpuow==} engines: {node: '>=6.9.0'} @@ -3833,7 +3710,7 @@ packages: /@changesets/apply-release-plan/6.1.3: resolution: {integrity: sha512-ECDNeoc3nfeAe1jqJb5aFQX7CqzQhD2klXRez2JDb/aVpGUbX673HgKrnrgJRuQR/9f2TtLoYIzrGB9qwD77mg==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.20.7 '@changesets/config': 2.3.0 '@changesets/get-version-range-type': 0.3.2 '@changesets/git': 2.0.0 @@ -3851,7 +3728,7 @@ packages: /@changesets/assemble-release-plan/5.2.3: resolution: {integrity: sha512-g7EVZCmnWz3zMBAdrcKhid4hkHT+Ft1n0mLussFMcB1dE2zCuwcvGoy9ec3yOgPGF4hoMtgHaMIk3T3TBdvU9g==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.20.7 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.3.5 '@changesets/types': 5.2.1 @@ -3879,7 +3756,7 @@ packages: resolution: {integrity: sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==} hasBin: true dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.20.7 '@changesets/apply-release-plan': 6.1.3 '@changesets/assemble-release-plan': 5.2.3 '@changesets/changelog-git': 0.1.14 @@ -3953,7 +3830,7 @@ packages: /@changesets/get-release-plan/3.0.16: resolution: {integrity: sha512-OpP9QILpBp1bY2YNIKFzwigKh7Qe9KizRsZomzLe6pK8IUo8onkAAVUD8+JRKSr8R7d4+JRuQrfSSNlEwKyPYg==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.20.7 '@changesets/assemble-release-plan': 5.2.3 '@changesets/config': 2.3.0 '@changesets/pre': 1.0.14 @@ -3969,7 +3846,7 @@ packages: /@changesets/git/2.0.0: resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.20.7 '@changesets/errors': 0.1.4 '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 @@ -4001,7 +3878,7 @@ packages: /@changesets/pre/1.0.14: resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.20.7 '@changesets/errors': 0.1.4 '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 @@ -4011,7 +3888,7 @@ packages: /@changesets/read/0.5.9: resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.20.7 '@changesets/git': 2.0.0 '@changesets/logger': 0.0.5 '@changesets/parse': 0.3.16 @@ -4031,7 +3908,7 @@ packages: /@changesets/write/0.2.3: resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.20.7 '@changesets/types': 5.2.1 fs-extra: 7.0.1 human-id: 1.0.2 @@ -4085,6 +3962,305 @@ packages: '@csstools/css-tokenizer': 2.0.1 dev: true + /@csstools/postcss-cascade-layers/1.0.5_postcss@8.4.16: + resolution: {integrity: sha512-Id/9wBT7FkgFzdEpiEWrsVd4ltDxN0rI0QS0SChbeQiSuux3z21SJCRLu6h2cvCEUmaRi+VD0mHFj+GJD4GFnw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/selector-specificity': 2.1.1_lwhgtcofezsdkzkak5o4oyxzba + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + + /@csstools/postcss-cascade-layers/1.0.5_postcss@8.4.21: + resolution: {integrity: sha512-Id/9wBT7FkgFzdEpiEWrsVd4ltDxN0rI0QS0SChbeQiSuux3z21SJCRLu6h2cvCEUmaRi+VD0mHFj+GJD4GFnw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/selector-specificity': 2.1.1_wajs5nedgkikc5pcuwett7legi + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 + dev: true + + /@csstools/postcss-color-function/1.1.1_postcss@8.4.16: + resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-color-function/1.1.1_postcss@8.4.21: + resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.21 + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-font-format-keywords/1.0.1_postcss@8.4.16: + resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-font-format-keywords/1.0.1_postcss@8.4.21: + resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-hwb-function/1.0.2_postcss@8.4.16: + resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-hwb-function/1.0.2_postcss@8.4.21: + resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-ic-unit/1.0.1_postcss@8.4.16: + resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-ic-unit/1.0.1_postcss@8.4.21: + resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.21 + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-is-pseudo-class/2.0.7_postcss@8.4.16: + resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/selector-specificity': 2.1.1_lwhgtcofezsdkzkak5o4oyxzba + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + + /@csstools/postcss-is-pseudo-class/2.0.7_postcss@8.4.21: + resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/selector-specificity': 2.1.1_wajs5nedgkikc5pcuwett7legi + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 + dev: true + + /@csstools/postcss-nested-calc/1.0.0_postcss@8.4.16: + resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-nested-calc/1.0.0_postcss@8.4.21: + resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-normalize-display-values/1.0.1_postcss@8.4.16: + resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-normalize-display-values/1.0.1_postcss@8.4.21: + resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-oklab-function/1.1.1_postcss@8.4.16: + resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-oklab-function/1.1.1_postcss@8.4.21: + resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.21 + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-progressive-custom-properties/1.3.0_postcss@8.4.16: + resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-progressive-custom-properties/1.3.0_postcss@8.4.21: + resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-stepped-value-functions/1.0.1_postcss@8.4.16: + resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-stepped-value-functions/1.0.1_postcss@8.4.21: + resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-text-decoration-shorthand/1.0.0_postcss@8.4.16: + resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-text-decoration-shorthand/1.0.0_postcss@8.4.21: + resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-trigonometric-functions/1.0.2_postcss@8.4.16: + resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} + engines: {node: ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-trigonometric-functions/1.0.2_postcss@8.4.21: + resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} + engines: {node: ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /@csstools/postcss-unset-value/1.0.2_postcss@8.4.16: + resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + dev: true + + /@csstools/postcss-unset-value/1.0.2_postcss@8.4.21: + resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + dev: true + + /@csstools/selector-specificity/2.1.1_lwhgtcofezsdkzkak5o4oyxzba: + resolution: {integrity: sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==} + engines: {node: ^14 || ^16 || >=18} + peerDependencies: + postcss: ^8.4 + postcss-selector-parser: ^6.0.10 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + /@csstools/selector-specificity/2.1.1_wajs5nedgkikc5pcuwett7legi: resolution: {integrity: sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw==} engines: {node: ^14 || ^16 || >=18} @@ -4152,444 +4328,55 @@ packages: resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} dev: true - /@esbuild/android-arm/0.16.17: - resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==} + /@esbuild/linux-loong64/0.15.5: + resolution: {integrity: sha512-UHkDFCfSGTuXq08oQltXxSZmH1TXyWsL+4QhZDWvvLl6mEJQqk3u7/wq1LjhrrAXYIllaTtRSzUXl4Olkf2J8A==} engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@esbuild/android-arm/0.17.10: - resolution: {integrity: sha512-7YEBfZ5lSem9Tqpsz+tjbdsEshlO9j/REJrfv4DXgKTt1+/MHqGwbtlyxQuaSlMeUZLxUKBaX8wdzlTfHkmnLw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm64/0.16.17: - resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true + /@eslint/eslintrc/1.4.1: + resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 9.4.0 + globals: 13.19.0 + ignore: 5.2.4 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color dev: true - optional: true - /@esbuild/android-arm64/0.17.10: - resolution: {integrity: sha512-ht1P9CmvrPF5yKDtyC+z43RczVs4rrHpRqrmIuoSvSdn44Fs1n6DGlpZKdK6rM83pFLbVaSUwle8IN+TPmkv7g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true + /@gar/promisify/1.1.3: + resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} dev: true - optional: true - /@esbuild/android-x64/0.16.17: - resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true + /@geometricpanda/storybook-addon-badges/0.2.2: + resolution: {integrity: sha512-jnlPw4VKUYc0nDxS3/lPYPxD9y8vpim80Buh8HqvjabMRM7dHKs6frGJbd/0uQIHKevLhFDYdYqAmHblqH4nwA==} + dependencies: + '@storybook/addons': 6.5.16_sfoxds7t5ydpegc3knd667wn6m + '@storybook/api': 6.5.16_sfoxds7t5ydpegc3knd667wn6m + '@storybook/components': 6.5.16_sfoxds7t5ydpegc3knd667wn6m + '@storybook/theming': 6.5.16_sfoxds7t5ydpegc3knd667wn6m + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-is: 17.0.2 + styled-components: 5.3.6_fane7jikarojcev26y27hpbhu4 dev: true - optional: true - /@esbuild/android-x64/0.17.10: - resolution: {integrity: sha512-CYzrm+hTiY5QICji64aJ/xKdN70IK8XZ6iiyq0tZkd3tfnwwSWTYH1t3m6zyaaBxkuj40kxgMyj1km/NqdjQZA==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true + /@hapi/hoek/9.3.0: + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} dev: true - optional: true - /@esbuild/darwin-arm64/0.16.17: - resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-arm64/0.17.10: - resolution: {integrity: sha512-3HaGIowI+nMZlopqyW6+jxYr01KvNaLB5znXfbyyjuo4lE0VZfvFGcguIJapQeQMS4cX/NEispwOekJt3gr5Dg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-x64/0.16.17: - resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/darwin-x64/0.17.10: - resolution: {integrity: sha512-J4MJzGchuCRG5n+B4EHpAMoJmBeAE1L3wGYDIN5oWNqX0tEr7VKOzw0ymSwpoeSpdCa030lagGUfnfhS7OvzrQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-arm64/0.16.17: - resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-arm64/0.17.10: - resolution: {integrity: sha512-ZkX40Z7qCbugeK4U5/gbzna/UQkM9d9LNV+Fro8r7HA7sRof5Rwxc46SsqeMvB5ZaR0b1/ITQ/8Y1NmV2F0fXQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-x64/0.16.17: - resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/freebsd-x64/0.17.10: - resolution: {integrity: sha512-0m0YX1IWSLG9hWh7tZa3kdAugFbZFFx9XrvfpaCMMvrswSTvUZypp0NFKriUurHpBA3xsHVE9Qb/0u2Bbi/otg==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm/0.16.17: - resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm/0.17.10: - resolution: {integrity: sha512-whRdrrl0X+9D6o5f0sTZtDM9s86Xt4wk1bf7ltx6iQqrIIOH+sre1yjpcCdrVXntQPCNw/G+XqsD4HuxeS+2QA==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm64/0.16.17: - resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-arm64/0.17.10: - resolution: {integrity: sha512-g1EZJR1/c+MmCgVwpdZdKi4QAJ8DCLP5uTgLWSAVd9wlqk9GMscaNMEViG3aE1wS+cNMzXXgdWiW/VX4J+5nTA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ia32/0.16.17: - resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ia32/0.17.10: - resolution: {integrity: sha512-1vKYCjfv/bEwxngHERp7huYfJ4jJzldfxyfaF7hc3216xiDA62xbXJfRlradiMhGZbdNLj2WA1YwYFzs9IWNPw==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-loong64/0.16.17: - resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-loong64/0.17.10: - resolution: {integrity: sha512-mvwAr75q3Fgc/qz3K6sya3gBmJIYZCgcJ0s7XshpoqIAIBszzfXsqhpRrRdVFAyV1G9VUjj7VopL2HnAS8aHFA==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-mips64el/0.16.17: - resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-mips64el/0.17.10: - resolution: {integrity: sha512-XilKPgM2u1zR1YuvCsFQWl9Fc35BqSqktooumOY2zj7CSn5czJn279j9TE1JEqSqz88izJo7yE4x3LSf7oxHzg==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ppc64/0.16.17: - resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-ppc64/0.17.10: - resolution: {integrity: sha512-kM4Rmh9l670SwjlGkIe7pYWezk8uxKHX4Lnn5jBZYBNlWpKMBCVfpAgAJqp5doLobhzF3l64VZVrmGeZ8+uKmQ==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - 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] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-riscv64/0.17.10: - resolution: {integrity: sha512-r1m9ZMNJBtOvYYGQVXKy+WvWd0BPvSxMsVq8Hp4GzdMBQvfZRvRr5TtX/1RdN6Va8JMVQGpxqde3O+e8+khNJQ==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-s390x/0.16.17: - resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-s390x/0.17.10: - resolution: {integrity: sha512-LsY7QvOLPw9WRJ+fU5pNB3qrSfA00u32ND5JVDrn/xG5hIQo3kvTxSlWFRP0NJ0+n6HmhPGG0Q4jtQsb6PFoyg==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-x64/0.16.17: - resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/linux-x64/0.17.10: - resolution: {integrity: sha512-zJUfJLebCYzBdIz/Z9vqwFjIA7iSlLCFvVi7glMgnu2MK7XYigwsonXshy9wP9S7szF+nmwrelNaP3WGanstEg==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@esbuild/netbsd-x64/0.16.17: - resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/netbsd-x64/0.17.10: - resolution: {integrity: sha512-lOMkailn4Ok9Vbp/q7uJfgicpDTbZFlXlnKT2DqC8uBijmm5oGtXAJy2ZZVo5hX7IOVXikV9LpCMj2U8cTguWA==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/openbsd-x64/0.16.17: - resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/openbsd-x64/0.17.10: - resolution: {integrity: sha512-/VE0Kx6y7eekqZ+ZLU4AjMlB80ov9tEz4H067Y0STwnGOYL8CsNg4J+cCmBznk1tMpxMoUOf0AbWlb1d2Pkbig==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - dev: true - optional: true - - /@esbuild/sunos-x64/0.16.17: - resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - - /@esbuild/sunos-x64/0.17.10: - resolution: {integrity: sha512-ERNO0838OUm8HfUjjsEs71cLjLMu/xt6bhOlxcJ0/1MG3hNqCmbWaS+w/8nFLa0DDjbwZQuGKVtCUJliLmbVgg==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-arm64/0.16.17: - resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-arm64/0.17.10: - resolution: {integrity: sha512-fXv+L+Bw2AeK+XJHwDAQ9m3NRlNemG6Z6ijLwJAAVdu4cyoFbBWbEtyZzDeL+rpG2lWI51cXeMt70HA8g2MqIg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-ia32/0.16.17: - resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-ia32/0.17.10: - resolution: {integrity: sha512-3s+HADrOdCdGOi5lnh5DMQEzgbsFsd4w57L/eLKKjMnN0CN4AIEP0DCP3F3N14xnxh3ruNc32A0Na9zYe1Z/AQ==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - 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] - requiresBuild: true - dev: true - optional: true - - /@esbuild/win32-x64/0.17.10: - resolution: {integrity: sha512-oP+zFUjYNaMNmjTwlFtWep85hvwUu19cZklB3QsBOcZSs6y7hmH4LNCJ7075bsqzYaNvZFXJlAVaQ2ApITDXtw==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@eslint/eslintrc/1.4.1: - resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - ajv: 6.12.6 - debug: 4.3.4 - espree: 9.4.0 - globals: 13.19.0 - ignore: 5.2.4 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@gar/promisify/1.1.3: - resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - dev: true - - /@geometricpanda/storybook-addon-badges/0.2.2: - resolution: {integrity: sha512-jnlPw4VKUYc0nDxS3/lPYPxD9y8vpim80Buh8HqvjabMRM7dHKs6frGJbd/0uQIHKevLhFDYdYqAmHblqH4nwA==} - dependencies: - '@storybook/addons': 6.5.16_sfoxds7t5ydpegc3knd667wn6m - '@storybook/api': 6.5.16_sfoxds7t5ydpegc3knd667wn6m - '@storybook/components': 6.5.16_sfoxds7t5ydpegc3knd667wn6m - '@storybook/theming': 6.5.16_sfoxds7t5ydpegc3knd667wn6m - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 - styled-components: 5.3.6_fane7jikarojcev26y27hpbhu4 - dev: true - - /@hapi/hoek/9.3.0: - resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} - dev: true - - /@hapi/topo/5.1.0: - resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} - dependencies: - '@hapi/hoek': 9.3.0 + /@hapi/topo/5.1.0: + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + dependencies: + '@hapi/hoek': 9.3.0 dev: true /@humanwhocodes/config-array/0.11.8: @@ -4806,7 +4593,7 @@ packages: '@types/node': 18.14.0 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.3.2 exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 29.4.3 @@ -5309,13 +5096,6 @@ packages: /@jridgewell/sourcemap-codec/1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - /@jridgewell/trace-mapping/0.3.15: - resolution: {integrity: sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==} - dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@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: @@ -5336,7 +5116,7 @@ packages: /@manypkg/find-root/1.1.0: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.20.7 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 @@ -5345,7 +5125,7 @@ packages: /@manypkg/get-packages/1.1.3: resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.20.7 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -5399,40 +5179,40 @@ packages: glob-to-regexp: 0.3.0 dev: true - /@ng-bootstrap/ng-bootstrap/14.0.1_ebru4yhfxqozwfzbilvzthf6fy: - resolution: {integrity: sha512-JF4U4IIix+g6VBFfG8stf0Un5K//ypoN+pTuRs6kjUhsHBsa2m7yKE6bCe3fMhatFZFr2fcSswDzRUnAUiHhWg==} + /@ng-bootstrap/ng-bootstrap/12.1.2_aazybjdowcfmlncjubh2qcoxky: + resolution: {integrity: sha512-p27c+mYVdHiJMYrj5hwClVJxLdiZxafAqlbw1sdJh2xJ1rGOe+H/kCf5YDRbhlHqRN+34Gr0RQqIUeD1I2V8hg==} peerDependencies: - '@angular/common': ^15.0.0 - '@angular/core': ^15.0.0 - '@angular/forms': ^15.0.0 - '@angular/localize': ^15.0.0 - '@popperjs/core': ^2.11.6 + '@angular/common': ^13.0.0 + '@angular/core': ^13.0.0 + '@angular/forms': ^13.0.0 + '@angular/localize': ^13.0.0 + '@popperjs/core': ^2.10.2 rxjs: ^6.5.3 || ^7.4.0 dependencies: - '@angular/common': 15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 - '@angular/forms': 15.1.5_yndgxvmaauschrcdo656cxz5sy - '@angular/localize': 15.1.5_ibnfrx3mdk7k6nb6hkpwkyin2q + '@angular/common': 14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 + '@angular/forms': 14.2.12_ft6phxovscixssjysxonv3pqk4 + '@angular/localize': 14.2.12_cqwiofdtgqwkx67gfnt5blkgxu '@popperjs/core': 2.11.6 rxjs: 7.8.0 tslib: 2.5.0 dev: false - /@ngtools/webpack/15.1.6_pejm6ti7kzcgvm2k72sd7tsi2y: - resolution: {integrity: sha512-ieHO6c3m+LZ93/B4n4QD908tUCkyNPFF9spMjJFZf8SRpLLvzOISMgiAej7UUxcBiB2kOfdVrpHf4Os4D9CsrQ==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + /@ngtools/webpack/14.2.10_q7d232hfbrbym4wwkrc4egci5m: + resolution: {integrity: sha512-sLHapZLVub6mEz5b19tf1VfIV1w3tYfg7FNPLeni79aldxu1FbP1v2WmiFAnMzrswqyK0bhTtxrl+Z/CLKqyoQ==} + engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} peerDependencies: - '@angular/compiler-cli': ^15.0.0 - typescript: '>=4.8.2 <5.0' + '@angular/compiler-cli': ^14.0.0 + typescript: '>=4.6.2 <4.9' webpack: ^5.54.0 dependencies: - '@angular/compiler-cli': 15.1.5_nolqrmukmycxjx7xovu3ezjhk4 - typescript: 4.9.5 - webpack: 5.75.0_esbuild@0.16.17 + '@angular/compiler-cli': 14.2.12_xny3jupsupef4qvbeynwkkewkm + typescript: 4.8.4 + webpack: 5.74.0_esbuild@0.15.5 dev: true /@nodelib/fs.scandir/2.1.5: - resolution: {integrity: sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=} + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} dependencies: '@nodelib/fs.stat': 2.0.5 @@ -5472,37 +5252,30 @@ packages: semver: 7.3.8 dev: true - /@npmcli/fs/3.1.0: - resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - semver: 7.3.8 - dev: true - - /@npmcli/git/4.0.3: - resolution: {integrity: sha512-8cXNkDIbnXPVbhXMmQ7/bklCAjtmPaXfI9aEM4iH+xSuEHINLMHhlfESvVwdqmHJRJkR48vNJTSUvoF6GRPSFA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /@npmcli/git/3.0.2: + resolution: {integrity: sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: - '@npmcli/promise-spawn': 6.0.2 + '@npmcli/promise-spawn': 3.0.0 lru-cache: 7.10.1 mkdirp: 1.0.4 - npm-pick-manifest: 8.0.1 - proc-log: 3.0.0 + npm-pick-manifest: 7.0.1 + proc-log: 2.0.1 promise-inflight: 1.0.1 promise-retry: 2.0.1 semver: 7.3.8 - which: 3.0.0 + which: 2.0.2 transitivePeerDependencies: - bluebird dev: true - /@npmcli/installed-package-contents/2.0.1: - resolution: {integrity: sha512-GIykAFdOVK31Q1/zAtT5MbxqQL2vyl9mvFJv+OGu01zxbhL3p0xc8gJjdNGX1mWmUT43aEKVO2L6V/2j4TOsAA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /@npmcli/installed-package-contents/1.0.7: + resolution: {integrity: sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw==} + engines: {node: '>= 10'} hasBin: true dependencies: - npm-bundled: 3.0.0 - npm-normalize-package-bin: 3.0.0 + npm-bundled: 1.1.2 + npm-normalize-package-bin: 1.0.1 dev: true /@npmcli/move-file/1.1.2: @@ -5523,27 +5296,27 @@ packages: rimraf: 3.0.2 dev: true - /@npmcli/node-gyp/3.0.0: - resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /@npmcli/node-gyp/2.0.0: + resolution: {integrity: sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true - /@npmcli/promise-spawn/6.0.2: - resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /@npmcli/promise-spawn/3.0.0: + resolution: {integrity: sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: - which: 3.0.0 + infer-owner: 1.0.4 dev: true - /@npmcli/run-script/6.0.0: - resolution: {integrity: sha512-ql+AbRur1TeOdl1FY+RAwGW9fcr4ZwiVKabdvm93mujGREVuVLbdkXRJDrkTXSdCjaxYydr1wlA2v67jxWG5BQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /@npmcli/run-script/4.2.1: + resolution: {integrity: sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: - '@npmcli/node-gyp': 3.0.0 - '@npmcli/promise-spawn': 6.0.2 + '@npmcli/node-gyp': 2.0.0 + '@npmcli/promise-spawn': 3.0.0 node-gyp: 9.1.0 - read-package-json-fast: 3.0.2 - which: 3.0.0 + read-package-json-fast: 2.0.3 + which: 2.0.2 transitivePeerDependencies: - bluebird - supports-color @@ -5668,7 +5441,7 @@ packages: engines: {node: '>=14'} dependencies: '@percy/logger': 1.20.0 - ajv: 8.12.0 + ajv: 8.11.0 cosmiconfig: 7.1.0 yaml: 2.1.1 dev: true @@ -5778,59 +5551,49 @@ packages: - react-dom dev: true - /@rollup/plugin-json/6.0.0_rollup@3.17.2: - resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==} - engines: {node: '>=14.0.0'} + /@rollup/plugin-json/4.1.0_rollup@2.75.6: + resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0 - peerDependenciesMeta: - rollup: - optional: true + rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 5.0.2_rollup@3.17.2 - rollup: 3.17.2 + '@rollup/pluginutils': 3.1.0_rollup@2.75.6 + rollup: 2.75.6 dev: true - /@rollup/plugin-node-resolve/15.0.1_rollup@3.17.2: - resolution: {integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==} - engines: {node: '>=14.0.0'} + /@rollup/plugin-node-resolve/13.3.0_rollup@2.75.6: + resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} + engines: {node: '>= 10.0.0'} peerDependencies: - rollup: ^2.78.0||^3.0.0 - peerDependenciesMeta: - rollup: - optional: true + rollup: ^2.42.0 dependencies: - '@rollup/pluginutils': 5.0.2_rollup@3.17.2 - '@types/resolve': 1.20.2 + '@rollup/pluginutils': 3.1.0_rollup@2.75.6 + '@types/resolve': 1.17.1 deepmerge: 4.2.2 - is-builtin-module: 3.2.1 + is-builtin-module: 3.1.0 is-module: 1.0.0 resolve: 1.22.1 - rollup: 3.17.2 + rollup: 2.75.6 dev: true - /@rollup/pluginutils/5.0.2_rollup@3.17.2: - resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} - engines: {node: '>=14.0.0'} + /@rollup/pluginutils/3.1.0_rollup@2.75.6: + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0 - peerDependenciesMeta: - rollup: - optional: true + rollup: ^1.20.0||^2.0.0 dependencies: - '@types/estree': 1.0.0 - estree-walker: 2.0.2 + '@types/estree': 0.0.39 + estree-walker: 1.0.1 picomatch: 2.3.1 - rollup: 3.17.2 + rollup: 2.75.6 dev: true - /@schematics/angular/15.1.6: - resolution: {integrity: sha512-y2kIQ1wJL0wR6v/LM5+PFJUivrYtdaIJVRdOXLLWl0AB5aLwObiWgLzAuBsbGm/9//WPPhw9PglS5EFFxTBDzg==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + /@schematics/angular/14.2.10: + resolution: {integrity: sha512-YFTc/9QJdx422XcApizEcVLKoyknu8b9zHIlAepZCu7WkV8GPT0hvVEHQ7KBWys5aQ7pPZMT0JpZLeAz0F2xYQ==} + engines: {node: ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} dependencies: - '@angular-devkit/core': 15.1.6 - '@angular-devkit/schematics': 15.1.6 - jsonc-parser: 3.2.0 + '@angular-devkit/core': 14.2.10 + '@angular-devkit/schematics': 14.2.10 + jsonc-parser: 3.1.0 transitivePeerDependencies: - chokidar dev: true @@ -5888,7 +5651,7 @@ packages: engines: {node: '>=14.10.0', npm: '>=6.0.0'} hasBin: true - /@stencil/eslint-plugin/0.4.0_w5c5dbqc272erzbms35isk44xy: + /@stencil/eslint-plugin/0.4.0_amwcv7xlxldl7plzy4gagvnzj4: resolution: {integrity: sha512-2tjDOjyh0DLt1NITII4s+rU1UwcomrbR/yei3fIU83l7PLNdZvBCSCopsXYyxaY/C37aYJQ0LR8edlLVEk6EUw==} engines: {node: '>=12.0.0'} peerDependencies: @@ -5900,8 +5663,8 @@ packages: dependencies: eslint-plugin-react: 7.32.2 eslint-utils: 3.0.0 - tsutils: 3.0.0_typescript@4.9.5 - typescript: 4.9.5 + tsutils: 3.0.0_typescript@4.8.4 + typescript: 4.8.4 dev: true /@stencil/react-output-target/0.4.0_@stencil+core@3.0.1: @@ -6020,7 +5783,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/addon-controls/6.5.16_ygqkwb4gg3aean7xjfdauovyqq: + /@storybook/addon-controls/6.5.16_eb43oqwzvklbwyl4z5o4jhog3m: resolution: {integrity: sha512-kShSGjq1MjmmyL3l8i+uPz6yddtf82mzys0l82VKtcuyjrr5944wYFJ5NTXMfZxrO/U6FeFsfuFZE/k6ex3EMg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6035,7 +5798,7 @@ packages: '@storybook/api': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.16 '@storybook/components': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-common': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/node-logger': 6.5.16 '@storybook/store': 6.5.16_biqbaboplfbrettd7655fr4n2y @@ -6054,7 +5817,7 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.5.16_6mbplxbx6s7x4hmdmervij2kcu: + /@storybook/addon-docs/6.5.16_kv2wqippxinsxghwtjel5xswuq: resolution: {integrity: sha512-QM9WDZG9P02UvbzLu947a8ZngOrQeAKAT8jCibQFM/+RJ39xBlfm8rm+cQy3dm94wgtjmVkA3mKGOV/yrrsddg==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 @@ -6075,7 +5838,7 @@ packages: '@storybook/addons': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/components': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-common': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.16_biqbaboplfbrettd7655fr4n2y @@ -6109,7 +5872,7 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.5.16_6mbplxbx6s7x4hmdmervij2kcu: + /@storybook/addon-essentials/6.5.16_kv2wqippxinsxghwtjel5xswuq: resolution: {integrity: sha512-TeoMr6tEit4Pe91GH6f8g/oar1P4M0JL9S6oMcFxxrhhtOGO7XkWD5EnfyCx272Ok2VYfE58FNBTGPNBVIqYKQ==} peerDependencies: '@babel/core': ^7.9.6 @@ -6169,15 +5932,15 @@ packages: '@babel/core': 7.21.0 '@storybook/addon-actions': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addon-backgrounds': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-controls': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq - '@storybook/addon-docs': 6.5.16_6mbplxbx6s7x4hmdmervij2kcu + '@storybook/addon-controls': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m + '@storybook/addon-docs': 6.5.16_kv2wqippxinsxghwtjel5xswuq '@storybook/addon-measure': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addon-outline': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addon-toolbars': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addon-viewport': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/addons': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-common': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m '@storybook/node-logger': 6.5.16 core-js: 3.28.0 react: 18.2.0 @@ -6461,7 +6224,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.5.16_ygqkwb4gg3aean7xjfdauovyqq: + /@storybook/builder-webpack4/6.5.16_eb43oqwzvklbwyl4z5o4jhog3m: resolution: {integrity: sha512-YqDIrVNsUo8r9xc6AxsYDLxVYtMgl5Bxk+8/h1adsOko+jAFhdg6hOcAVxEmoSI0TMASOOVMFlT2hr23ppN2rQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6479,7 +6242,7 @@ packages: '@storybook/client-api': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.16 '@storybook/components': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-common': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m '@storybook/core-events': 6.5.16 '@storybook/node-logger': 6.5.16 '@storybook/preview-web': 6.5.16_biqbaboplfbrettd7655fr4n2y @@ -6497,12 +6260,12 @@ packages: 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: 4.1.6_evijigonbo4skk2vlqtwtdqibu + fork-ts-checker-webpack-plugin: 4.1.6_u7kjabuvawcog7hjctusduehvm 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.9.5 + pnp-webpack-plugin: 1.6.4_typescript@4.6.4 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe @@ -6513,7 +6276,7 @@ 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.9.5 + typescript: 4.6.4 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -6648,7 +6411,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/core-client/6.5.16_7cwjmjvoo2q6bjzwgpqtqos7pu: + /@storybook/core-client/6.5.16_3rnyr4wzsyxsarjflruafcve6y: resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6679,13 +6442,13 @@ packages: react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.6.4 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.75.0 + webpack: 4.46.0 dev: true - /@storybook/core-client/6.5.16_yx6v2mahc4rgaakyal2wzgtgta: + /@storybook/core-client/6.5.16_shcgkxw5oqy5ymbd3yqfdtfzym: resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6716,13 +6479,13 @@ packages: react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.6.4 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 4.46.0 + webpack: 5.75.0 dev: true - /@storybook/core-common/6.5.16_ygqkwb4gg3aean7xjfdauovyqq: + /@storybook/core-common/6.5.16_eb43oqwzvklbwyl4z5o4jhog3m: resolution: {integrity: sha512-2qtnKP3TTOzt2cp6LXKRTh7XrI9z5VanMnMTgeoFcA5ebnndD4V6BExQUdYPClE/QooLx6blUWNgS9dFEpjSqQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6737,20 +6500,20 @@ packages: '@babel/plugin-proposal-decorators': 7.18.2_@babel+core@7.21.0 '@babel/plugin-proposal-export-default-from': 7.17.12_@babel+core@7.21.0 '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.21.0 '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.0 '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.0 '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.21.0 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0 '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0 - '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.21.0 '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.0 - '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.0 '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0 - '@babel/preset-env': 7.20.2_@babel+core@7.21.0 + '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.21.0 + '@babel/preset-env': 7.18.10_@babel+core@7.21.0 '@babel/preset-react': 7.17.12_@babel+core@7.21.0 '@babel/preset-typescript': 7.17.12_@babel+core@7.21.0 '@babel/register': 7.17.7_@babel+core@7.21.0 @@ -6766,7 +6529,7 @@ packages: express: 4.18.1 file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.2_evijigonbo4skk2vlqtwtdqibu + fork-ts-checker-webpack-plugin: 6.5.2_u7kjabuvawcog7hjctusduehvm fs-extra: 9.1.0 glob: 7.2.3 handlebars: 4.7.7 @@ -6782,7 +6545,7 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.6.4 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -6805,7 +6568,7 @@ packages: core-js: 3.28.0 dev: true - /@storybook/core-server/6.5.16_ygqkwb4gg3aean7xjfdauovyqq: + /@storybook/core-server/6.5.16_eb43oqwzvklbwyl4z5o4jhog3m: resolution: {integrity: sha512-/3NPfmNyply395Dm0zaVZ8P9aruwO+tPx4D6/jpw8aqrRSwvAMndPMpoMCm0NXcpSm5rdX+Je4S3JW6JcggFkA==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -6822,17 +6585,17 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq - '@storybook/core-client': 6.5.16_yx6v2mahc4rgaakyal2wzgtgta - '@storybook/core-common': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/builder-webpack4': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m + '@storybook/core-client': 6.5.16_3rnyr4wzsyxsarjflruafcve6y + '@storybook/core-common': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m '@storybook/core-events': 6.5.16 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/csf-tools': 6.5.16 - '@storybook/manager-webpack4': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/manager-webpack4': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m '@storybook/node-logger': 6.5.16 '@storybook/semver': 7.3.2 '@storybook/store': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/telemetry': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/telemetry': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m '@types/node': 16.18.3 '@types/node-fetch': 2.6.2 '@types/pretty-hrtime': 1.0.1 @@ -6863,7 +6626,7 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.6.4 util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 @@ -6882,7 +6645,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.5.16_7cwjmjvoo2q6bjzwgpqtqos7pu: + /@storybook/core/6.5.16_shcgkxw5oqy5ymbd3yqfdtfzym: resolution: {integrity: sha512-CEF3QFTsm/VMnMKtRNr4rRdLeIkIG0g1t26WcmxTdSThNPBd8CsWzQJ7Jqu7CKiut+MU4A1LMOwbwCE5F2gmyA==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -6899,11 +6662,11 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.5.16_7cwjmjvoo2q6bjzwgpqtqos7pu - '@storybook/core-server': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-client': 6.5.16_shcgkxw5oqy5ymbd3yqfdtfzym + '@storybook/core-server': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - typescript: 4.9.5 + typescript: 4.6.4 webpack: 5.75.0 transitivePeerDependencies: - '@storybook/mdx2-csf' @@ -6930,7 +6693,7 @@ packages: '@babel/generator': 7.21.1 '@babel/parser': 7.21.1 '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.21.0 - '@babel/preset-env': 7.20.2_@babel+core@7.21.0 + '@babel/preset-env': 7.18.10_@babel+core@7.21.0 '@babel/traverse': 7.21.0 '@babel/types': 7.21.0 '@storybook/csf': 0.0.2--canary.4566f4d.1 @@ -6983,7 +6746,7 @@ packages: - react-dom dev: true - /@storybook/manager-webpack4/6.5.16_ygqkwb4gg3aean7xjfdauovyqq: + /@storybook/manager-webpack4/6.5.16_eb43oqwzvklbwyl4z5o4jhog3m: resolution: {integrity: sha512-5VJZwmQU6AgdsBPsYdu886UKBHQ9SJEnFMaeUxKEclXk+iRsmbzlL4GHKyVd6oGX/ZaecZtcHPR6xrzmA4Ziew==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6997,8 +6760,8 @@ packages: '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0 '@babel/preset-react': 7.17.12_@babel+core@7.21.0 '@storybook/addons': 6.5.16_biqbaboplfbrettd7655fr4n2y - '@storybook/core-client': 6.5.16_yx6v2mahc4rgaakyal2wzgtgta - '@storybook/core-common': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-client': 6.5.16_3rnyr4wzsyxsarjflruafcve6y + '@storybook/core-common': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m '@storybook/node-logger': 6.5.16 '@storybook/theming': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/ui': 6.5.16_biqbaboplfbrettd7655fr4n2y @@ -7015,7 +6778,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.9 - pnp-webpack-plugin: 1.6.4_typescript@4.9.5 + pnp-webpack-plugin: 1.6.4_typescript@4.6.4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 read-pkg-up: 7.0.1 @@ -7025,7 +6788,7 @@ packages: telejson: 6.0.8 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.6.4 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -7046,7 +6809,7 @@ packages: dependencies: '@babel/generator': 7.21.1 '@babel/parser': 7.21.1 - '@babel/preset-env': 7.20.2_@babel+core@7.21.0 + '@babel/preset-env': 7.18.10_@babel+core@7.21.0 '@babel/types': 7.21.0 '@mdx-js/mdx': 1.6.22 '@types/lodash': 4.14.182 @@ -7114,7 +6877,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_hhrrucqyg4eysmfpujvov2ym5u: + /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_ot4tevpsagasia5fdh7emkeuyq: resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} peerDependencies: typescript: '>= 3.x' @@ -7125,15 +6888,15 @@ packages: find-cache-dir: 3.3.2 flat-cache: 3.0.4 micromatch: 4.0.5 - react-docgen-typescript: 2.2.2_typescript@4.9.5 + react-docgen-typescript: 2.2.2_typescript@4.6.4 tslib: 2.5.0 - typescript: 4.9.5 + typescript: 4.6.4 webpack: 5.75.0 transitivePeerDependencies: - supports-color dev: true - /@storybook/react/6.5.16_6mbplxbx6s7x4hmdmervij2kcu: + /@storybook/react/6.5.16_kv2wqippxinsxghwtjel5xswuq: resolution: {integrity: sha512-cBtNlOzf/MySpNLBK22lJ8wFU22HnfTB2xJyBk7W7Zi71Lm7Uxkhv1Pz8HdiQndJ0SlsAAQOWjQYsSZsGkZIaA==} engines: {node: '>=10.13.0'} hasBin: true @@ -7167,12 +6930,12 @@ packages: '@pmmmwh/react-refresh-webpack-plugin': 0.5.9_ohj47mxwagpoxvu7nhhwxzphqm '@storybook/addons': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.16 - '@storybook/core': 6.5.16_7cwjmjvoo2q6bjzwgpqtqos7pu - '@storybook/core-common': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core': 6.5.16_shcgkxw5oqy5ymbd3yqfdtfzym + '@storybook/core-common': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.16_biqbaboplfbrettd7655fr4n2y '@storybook/node-logger': 6.5.16 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_hhrrucqyg4eysmfpujvov2ym5u + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_ot4tevpsagasia5fdh7emkeuyq '@storybook/semver': 7.3.2 '@storybook/store': 6.5.16_biqbaboplfbrettd7655fr4n2y '@types/estree': 0.0.51 @@ -7197,7 +6960,7 @@ packages: read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.6.4 util-deprecate: 1.0.2 webpack: 5.75.0 transitivePeerDependencies: @@ -7321,11 +7084,11 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/telemetry/6.5.16_ygqkwb4gg3aean7xjfdauovyqq: + /@storybook/telemetry/6.5.16_eb43oqwzvklbwyl4z5o4jhog3m: resolution: {integrity: sha512-CWr5Uko1l9jJW88yTXsZTj/3GTabPvw0o7pDPOXPp8JRZiJTxv1JFaFCafhK9UzYbgcRuGfCC8kEWPZims7iKA==} dependencies: '@storybook/client-logger': 6.5.16 - '@storybook/core-common': 6.5.16_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-common': 6.5.16_eb43oqwzvklbwyl4z5o4jhog3m chalk: 4.1.2 core-js: 3.28.0 detect-package-manager: 2.0.1 @@ -7427,7 +7190,7 @@ packages: resolve-from: 5.0.0 dev: true - /@swimlane/ngx-datatable/20.1.0_yndgxvmaauschrcdo656cxz5sy: + /@swimlane/ngx-datatable/20.1.0_ft6phxovscixssjysxonv3pqk4: resolution: {integrity: sha512-oHnnx1QRNmv10l5UME13v5JP3M3GesM9K3QH6TRYo2C7UbbhY7vL5EZ4HGqcvtMMW4FOzqNOSltE++IVL99F3g==} peerDependencies: '@angular/common': '>=11.0.2' @@ -7435,9 +7198,9 @@ packages: '@angular/platform-browser': '>=11.0.2' rxjs: ^6.6.3 || ^7.4.0 dependencies: - '@angular/common': 15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 - '@angular/platform-browser': 15.1.5_s7kwnqxnlkypgp4vtemlnxkbmi + '@angular/common': 14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 + '@angular/platform-browser': 14.2.12_dax2jypo47bpgiczdvqsh7iq24 rxjs: 7.8.0 tslib: 2.5.0 dev: false @@ -7584,16 +7347,16 @@ packages: /@types/eslint/8.4.3: resolution: {integrity: sha512-YP1S7YJRMPs+7KZKDb9G63n8YejIwW9BALq7a5j2+H4yl6iOv9CB29edho+cuFRrvmJbbaH2yiVChKLJVysDGw==} dependencies: - '@types/estree': 1.0.0 + '@types/estree': 0.0.51 '@types/json-schema': 7.0.11 dev: true - /@types/estree/0.0.51: - resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} + /@types/estree/0.0.39: + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} dev: true - /@types/estree/1.0.0: - resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} + /@types/estree/0.0.51: + resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} dev: true /@types/express-serve-static-core/4.17.29: @@ -7653,7 +7416,7 @@ packages: /@types/is-ci/3.0.0: resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==} dependencies: - ci-info: 3.8.0 + ci-info: 3.3.2 dev: true /@types/is-function/1.0.1: @@ -7853,8 +7616,10 @@ packages: csstype: 3.1.1 dev: true - /@types/resolve/1.20.2: - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + /@types/resolve/1.17.1: + resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + dependencies: + '@types/node': 18.14.0 dev: true /@types/retry/0.12.0: @@ -7997,34 +7762,6 @@ packages: '@types/node': 18.14.0 optional: true - /@typescript-eslint/eslint-plugin/5.53.0_ny4s7qc6yg74faf3d6xty2ofzy: - resolution: {integrity: sha512-alFpFWNucPLdUOySmXCJpzr6HKC3bu7XooShWM+3w/EL6J2HIoB2PFxpLnq4JauWVk6DiVeNKzQlFEaE+X9sGw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/parser': 5.53.0_7kw3g6rralp5ps6mg3uyzz6azm - '@typescript-eslint/scope-manager': 5.53.0 - '@typescript-eslint/type-utils': 5.53.0_7kw3g6rralp5ps6mg3uyzz6azm - '@typescript-eslint/utils': 5.53.0_7kw3g6rralp5ps6mg3uyzz6azm - debug: 4.3.4 - eslint: 8.34.0 - grapheme-splitter: 1.0.4 - ignore: 5.2.4 - natural-compare-lite: 1.4.0 - regexpp: 3.2.0 - semver: 7.3.8 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/eslint-plugin/5.53.0_scegsshm245kz7hxo76dd7oegq: resolution: {integrity: sha512-alFpFWNucPLdUOySmXCJpzr6HKC3bu7XooShWM+3w/EL6J2HIoB2PFxpLnq4JauWVk6DiVeNKzQlFEaE+X9sGw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -8053,26 +7790,6 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.53.0_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-MKBw9i0DLYlmdOb3Oq/526+al20AJZpANdT6Ct9ffxcV8nKCHz63t/S0IhlTFNsBIHJv+GY5SFJ0XfqVeydQrQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.53.0 - '@typescript-eslint/types': 5.53.0 - '@typescript-eslint/typescript-estree': 5.53.0_typescript@4.9.5 - debug: 4.3.4 - eslint: 8.34.0 - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/parser/5.53.0_vvbfoh7ci2jjuy6alapehrh2ri: resolution: {integrity: sha512-MKBw9i0DLYlmdOb3Oq/526+al20AJZpANdT6Ct9ffxcV8nKCHz63t/S0IhlTFNsBIHJv+GY5SFJ0XfqVeydQrQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -8093,12 +7810,12 @@ packages: - supports-color dev: true - /@typescript-eslint/scope-manager/5.48.2: - resolution: {integrity: sha512-zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw==} + /@typescript-eslint/scope-manager/5.43.0: + resolution: {integrity: sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.48.2 - '@typescript-eslint/visitor-keys': 5.48.2 + '@typescript-eslint/types': 5.43.0 + '@typescript-eslint/visitor-keys': 5.43.0 dev: true /@typescript-eslint/scope-manager/5.53.0: @@ -8109,28 +7826,8 @@ packages: '@typescript-eslint/visitor-keys': 5.53.0 dev: true - /@typescript-eslint/type-utils/5.48.2_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-QVWx7J5sPMRiOMJp5dYshPxABRoZV1xbRirqSk8yuIIsu0nvMTZesKErEA3Oix1k+uvsk8Cs8TGJ6kQ0ndAcew==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/typescript-estree': 5.48.2_typescript@4.9.5 - '@typescript-eslint/utils': 5.48.2_7kw3g6rralp5ps6mg3uyzz6azm - debug: 4.3.4 - eslint: 8.34.0 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/type-utils/5.53.0_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-HO2hh0fmtqNLzTAme/KnND5uFNwbsdYhCZghK2SoxGp3Ifn2emv+hi0PBUjzzSh0dstUIFqOj3bp0AwQlK4OWw==} + /@typescript-eslint/type-utils/5.43.0_vvbfoh7ci2jjuy6alapehrh2ri: + resolution: {integrity: sha512-K21f+KY2/VvYggLf5Pk4tgBOPs2otTaIHy2zjclo7UZGLyFH86VfUOm5iq+OtDtxq/Zwu2I3ujDBykVW4Xtmtg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -8139,12 +7836,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.53.0_typescript@4.9.5 - '@typescript-eslint/utils': 5.53.0_7kw3g6rralp5ps6mg3uyzz6azm + '@typescript-eslint/typescript-estree': 5.43.0_typescript@4.8.4 + '@typescript-eslint/utils': 5.43.0_vvbfoh7ci2jjuy6alapehrh2ri debug: 4.3.4 eslint: 8.34.0 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 + tsutils: 3.21.0_typescript@4.8.4 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true @@ -8169,8 +7866,8 @@ packages: - supports-color dev: true - /@typescript-eslint/types/5.48.2: - resolution: {integrity: sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==} + /@typescript-eslint/types/5.43.0: + resolution: {integrity: sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true @@ -8179,8 +7876,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.48.2_typescript@4.9.5: - resolution: {integrity: sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==} + /@typescript-eslint/typescript-estree/5.43.0_typescript@4.8.4: + resolution: {integrity: sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -8188,14 +7885,14 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.48.2 - '@typescript-eslint/visitor-keys': 5.48.2 + '@typescript-eslint/types': 5.43.0 + '@typescript-eslint/visitor-keys': 5.43.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 + tsutils: 3.21.0_typescript@4.8.4 + typescript: 4.8.4 transitivePeerDependencies: - supports-color dev: true @@ -8221,58 +7918,17 @@ packages: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.53.0_typescript@4.9.5: - resolution: {integrity: sha512-eKmipH7QyScpHSkhbptBBYh9v8FxtngLquq292YTEQ1pxVs39yFBlLC1xeIZcPPz1RWGqb7YgERJRGkjw8ZV7w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 5.53.0 - '@typescript-eslint/visitor-keys': 5.53.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/utils/5.48.2_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-2h18c0d7jgkw6tdKTlNaM7wyopbLRBiit8oAxoP89YnuBOzCZ8g8aBCaCqq7h208qUTroL7Whgzam7UY3HVLow==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - '@types/json-schema': 7.0.11 - '@types/semver': 7.3.12 - '@typescript-eslint/scope-manager': 5.48.2 - '@typescript-eslint/types': 5.48.2 - '@typescript-eslint/typescript-estree': 5.48.2_typescript@4.9.5 - eslint: 8.34.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.34.0 - semver: 7.3.8 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - /@typescript-eslint/utils/5.53.0_7kw3g6rralp5ps6mg3uyzz6azm: - resolution: {integrity: sha512-VUOOtPv27UNWLxFwQK/8+7kvxVC+hPHNsJjzlJyotlaHjLSIgOCKj9I0DBUjwOOA64qjBwx5afAPjksqOxMO0g==} + /@typescript-eslint/utils/5.43.0_vvbfoh7ci2jjuy6alapehrh2ri: + resolution: {integrity: sha512-8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.11 '@types/semver': 7.3.12 - '@typescript-eslint/scope-manager': 5.53.0 - '@typescript-eslint/types': 5.53.0 - '@typescript-eslint/typescript-estree': 5.53.0_typescript@4.9.5 + '@typescript-eslint/scope-manager': 5.43.0 + '@typescript-eslint/types': 5.43.0 + '@typescript-eslint/typescript-estree': 5.43.0_typescript@4.8.4 eslint: 8.34.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.34.0 @@ -8302,11 +7958,11 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys/5.48.2: - resolution: {integrity: sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ==} + /@typescript-eslint/visitor-keys/5.43.0: + resolution: {integrity: sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.48.2 + '@typescript-eslint/types': 5.43.0 eslint-visitor-keys: 3.3.0 dev: true @@ -8724,7 +8380,7 @@ packages: ajv: optional: true dependencies: - ajv: 8.12.0 + ajv: 8.11.0 /ajv-keywords/3.5.2_ajv@6.12.6: resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} @@ -8734,12 +8390,12 @@ packages: ajv: 6.12.6 dev: true - /ajv-keywords/5.1.0_ajv@8.12.0: + /ajv-keywords/5.1.0_ajv@8.11.0: resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} peerDependencies: ajv: ^8.8.2 dependencies: - ajv: 8.12.0 + ajv: 8.11.0 fast-deep-equal: 3.1.3 dev: true @@ -8760,14 +8416,6 @@ packages: require-from-string: 2.0.2 uri-js: 4.4.1 - /ajv/8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} - dependencies: - fast-deep-equal: 3.1.3 - json-schema-traverse: 1.0.0 - require-from-string: 2.0.2 - uri-js: 4.4.1 - /ansi-align/3.0.1: resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} dependencies: @@ -9052,7 +8700,7 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - define-properties: 1.2.0 + define-properties: 1.1.4 es-abstract: 1.21.1 es-shim-unscopables: 1.0.0 dev: true @@ -9199,6 +8847,22 @@ packages: hasBin: true dev: true + /autoprefixer/10.4.13_postcss@8.4.16: + resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.21.4 + caniuse-lite: 1.0.30001426 + fraction.js: 4.2.0 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + /autoprefixer/10.4.13_postcss@8.4.21: resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} engines: {node: ^10 || ^12 || >=14} @@ -9219,8 +8883,8 @@ packages: resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} hasBin: true dependencies: - browserslist: 4.21.5 - caniuse-lite: 1.0.30001457 + browserslist: 4.21.4 + caniuse-lite: 1.0.30001426 normalize-range: 0.1.2 num2fraction: 1.2.2 picocolors: 0.2.1 @@ -9317,6 +8981,21 @@ packages: - supports-color dev: true + /babel-loader/8.2.5_xc6oct4hcywdrbo4ned6ytbybm: + resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2' + dependencies: + '@babel/core': 7.18.10 + find-cache-dir: 3.3.2 + loader-utils: 2.0.4 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 5.74.0_esbuild@0.15.5 + dev: true + /babel-loader/8.3.0_@babel+core@7.21.0: resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} engines: {node: '>= 8.9'} @@ -9358,19 +9037,6 @@ packages: schema-utils: 4.0.0 dev: true - /babel-loader/9.1.2_la66t7xldg4uecmyawueag5wkm: - resolution: {integrity: sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==} - engines: {node: '>= 14.15.0'} - peerDependencies: - '@babel/core': ^7.12.0 - webpack: '>=5' - dependencies: - '@babel/core': 7.20.12 - find-cache-dir: 3.3.2 - schema-utils: 4.0.0 - webpack: 5.75.0_esbuild@0.16.17 - dev: true - /babel-plugin-add-react-displayname/0.0.5: resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} dev: true @@ -9385,6 +9051,12 @@ 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: @@ -9443,27 +9115,27 @@ packages: resolve: 1.22.1 dev: true - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12: - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} + /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.18.10: + resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.20.10 - '@babel/core': 7.20.12 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.0: - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} + /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.21.0: + resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.20.10 '@babel/core': 7.21.0 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.21.0 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -9476,65 +9148,53 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.21.0 - core-js-compat: 3.28.0 + core-js-compat: 3.23.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.21.0: + /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.18.10: resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.0 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0 - core-js-compat: 3.28.0 - transitivePeerDependencies: - - supports-color - dev: true - - /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.20.12 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 - core-js-compat: 3.28.0 + '@babel/core': 7.18.10 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 + core-js-compat: 3.23.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.21.0: - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.21.0: + resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0 - core-js-compat: 3.28.0 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.21.0 + core-js-compat: 3.23.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12: - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.18.10: + resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.12 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 + '@babel/core': 7.18.10 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.21.0: - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.21.0: + resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.0 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.21.0 transitivePeerDependencies: - supports-color dev: true @@ -9682,7 +9342,7 @@ packages: dev: true /batch/0.6.1: - resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=} + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} dev: true /bcrypt-pbkdf/1.0.2: @@ -9799,16 +9459,16 @@ packages: /boolbase/1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} - /bootstrap/5.2.3: - resolution: {integrity: sha512-cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ==} + /bootstrap/5.1.3: + resolution: {integrity: sha512-fcQztozJ8jToQWXxVuEyXWW+dSo8AiXWKwiSSrKWsRB/Qt+Ewwza+JWoLKiTuQLaEPhdNAJ7+Dosc9DOIqNy7Q==} peerDependencies: - '@popperjs/core': ^2.11.6 + '@popperjs/core': ^2.10.2 dev: true - /bootstrap/5.2.3_@popperjs+core@2.11.6: - resolution: {integrity: sha512-cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ==} + /bootstrap/5.1.3_@popperjs+core@2.11.6: + resolution: {integrity: sha512-fcQztozJ8jToQWXxVuEyXWW+dSo8AiXWKwiSSrKWsRB/Qt+Ewwza+JWoLKiTuQLaEPhdNAJ7+Dosc9DOIqNy7Q==} peerDependencies: - '@popperjs/core': ^2.11.6 + '@popperjs/core': ^2.10.2 dependencies: '@popperjs/core': 2.11.6 dev: false @@ -9943,20 +9603,10 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001457 - electron-to-chromium: 1.4.304 - node-releases: 2.0.10 - update-browserslist-db: 1.0.10_browserslist@4.21.4 - - /browserslist/4.21.5: - resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - dependencies: - caniuse-lite: 1.0.30001457 - electron-to-chromium: 1.4.304 - node-releases: 2.0.10 - update-browserslist-db: 1.0.10_browserslist@4.21.5 + caniuse-lite: 1.0.30001426 + electron-to-chromium: 1.4.262 + node-releases: 2.0.6 + update-browserslist-db: 1.0.9_browserslist@4.21.4 /browserstack/1.6.1: resolution: {integrity: sha512-GxtFjpIaKdbAyzHfFDKixKO8IBT7wR3NjbzrGc78nNs/Ciys9wU3/nBtsqsWv5nDSrdI5tz0peKuzCPuNXNUiw==} @@ -10025,7 +9675,7 @@ packages: dev: true /bytes/3.0.0: - resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=} + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} engines: {node: '>= 0.8'} dev: true @@ -10125,27 +9775,6 @@ packages: - bluebird dev: true - /cacache/17.0.4: - resolution: {integrity: sha512-Z/nL3gU+zTUjz5pCA5vVjYM8pmaw2kxM7JEiE0fv3w77Wj+sFbi70CrBruUWH0uNcEdvLDixFpgA2JM4F4DBjA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - '@npmcli/fs': 3.1.0 - fs-minipass: 3.0.1 - glob: 8.1.0 - lru-cache: 7.10.1 - minipass: 4.0.3 - minipass-collect: 1.0.2 - minipass-flush: 1.0.5 - minipass-pipeline: 1.2.4 - p-map: 4.0.0 - promise-inflight: 1.0.1 - ssri: 10.0.1 - tar: 6.1.11 - unique-filename: 3.0.0 - transitivePeerDependencies: - - bluebird - dev: true - /cache-base/1.0.1: resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} engines: {node: '>=0.10.0'} @@ -10238,10 +9867,6 @@ packages: /caniuse-lite/1.0.30001426: resolution: {integrity: sha512-n7cosrHLl8AWt0wwZw/PJZgUg3lV0gk9LMI7ikGJwhyhgsd2Nb65vKvmSexCqq/J7rbH3mFG6yZZiPR5dLPW5A==} - dev: true - - /caniuse-lite/1.0.30001457: - resolution: {integrity: sha512-SDIV6bgE1aVbK6XyxdURbUE89zY7+k1BBBaOwYwkNCglXlel/E7mELiHC64HQ+W0xSKlqWhV9Wh7iHxUjMs4fA==} /capture-exit/2.0.0: resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} @@ -10413,11 +10038,6 @@ packages: resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==} dev: true - /ci-info/3.8.0: - resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} - engines: {node: '>=8'} - dev: true - /cipher-base/1.0.4: resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} dependencies: @@ -10514,15 +10134,6 @@ packages: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - dev: true - - /cliui/8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} - dependencies: - string-width: 4.2.3 - strip-ansi: 6.0.1 - wrap-ansi: 7.0.0 /clone-buffer/1.0.0: resolution: {integrity: sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==} @@ -10644,11 +10255,6 @@ packages: resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} dev: true - /commander/10.0.0: - resolution: {integrity: sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==} - engines: {node: '>=14'} - dev: true - /commander/2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} dev: true @@ -10673,6 +10279,11 @@ packages: engines: {node: '>= 10'} dev: true + /commander/9.4.0: + resolution: {integrity: sha512-sRPT+umqkz90UA8M1yqYfnHlZA7fF6nSphDtxeywPZ49ysjxDQybzk13CL+mXekDRG92skbcqCLVovuCusNmFw==} + engines: {node: ^12.20.0 || >=14} + dev: true + /common-path-prefix/3.0.0: resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} dev: true @@ -10713,7 +10324,7 @@ packages: dev: true /concat-map/0.0.1: - resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} /concat-stream/1.6.2: resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} @@ -10776,7 +10387,7 @@ packages: dev: true /cookie-signature/1.0.6: - resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} dev: true /cookie/0.4.2: @@ -10818,7 +10429,7 @@ packages: is-plain-object: 5.0.0 dev: true - /copy-webpack-plugin/11.0.0_webpack@5.75.0: + /copy-webpack-plugin/11.0.0_webpack@5.74.0: resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -10830,7 +10441,7 @@ packages: normalize-path: 3.0.0 schema-utils: 4.0.0 serialize-javascript: 6.0.0 - webpack: 5.75.0_esbuild@0.16.17 + webpack: 5.74.0_esbuild@0.15.5 dev: true /copyfiles/2.4.1: @@ -10846,10 +10457,11 @@ packages: yargs: 16.2.0 dev: true - /core-js-compat/3.28.0: - resolution: {integrity: sha512-myzPgE7QodMg4nnd3K1TDoES/nADRStM8Gpz0D6nhkwbmwEnE0ZGJgoWsvQ722FR8D7xS0n0LV556RcEicjTyg==} + /core-js-compat/3.23.1: + resolution: {integrity: sha512-KeYrEc8t6FJsKYB2qnDwRHWaC0cJNaqlHfCpMe5q3j/W1nje3moib/txNklddLPCtGb+etcBIyJ8zuMa/LN5/A==} dependencies: - browserslist: 4.21.5 + browserslist: 4.21.4 + semver: 7.0.0 dev: true /core-js-pure/3.26.1: @@ -11035,6 +10647,28 @@ packages: randomfill: 1.0.4 dev: true + /css-blank-pseudo/3.0.3_postcss@8.4.16: + resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + + /css-blank-pseudo/3.0.3_postcss@8.4.21: + resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 + dev: true + /css-color-keywords/1.0.0: resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} engines: {node: '>=4'} @@ -11045,6 +10679,28 @@ packages: engines: {node: '>=12.22'} dev: true + /css-has-pseudo/3.0.4_postcss@8.4.16: + resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + + /css-has-pseudo/3.0.4_postcss@8.4.21: + resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 + dev: true + /css-loader/3.6.0_webpack@4.46.0: resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} engines: {node: '>= 8.9.0'} @@ -11085,8 +10741,8 @@ packages: semver: 7.3.7 dev: true - /css-loader/6.7.3_webpack@5.75.0: - resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==} + /css-loader/6.7.1_webpack@5.74.0: + resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 @@ -11099,7 +10755,27 @@ packages: postcss-modules-values: 4.0.0_postcss@8.4.21 postcss-value-parser: 4.2.0 semver: 7.3.8 - webpack: 5.75.0_esbuild@0.16.17 + webpack: 5.74.0_esbuild@0.15.5 + dev: true + + /css-prefers-color-scheme/6.0.3_postcss@8.4.16: + resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.16 + dev: true + + /css-prefers-color-scheme/6.0.3_postcss@8.4.21: + resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} + engines: {node: ^12 || ^14 || >=16} + hasBin: true + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.21 dev: true /css-select/4.3.0: @@ -11149,6 +10825,10 @@ packages: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} + /cssdb/7.0.1: + resolution: {integrity: sha512-pT3nzyGM78poCKLAEy2zWIVX2hikq6dIrjuZzLV98MumBg+xMTNYfHx7paUlfiRTgg91O/vR889CIf+qiv79Rw==} + dev: true + /cssesc/3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} engines: {node: '>=4'} @@ -11391,15 +11071,7 @@ packages: dev: true /decamelize-keys/1.1.0: - resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==} - engines: {node: '>=0.10.0'} - dependencies: - decamelize: 1.2.0 - map-obj: 1.0.1 - dev: true - - /decamelize-keys/1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==} engines: {node: '>=0.10.0'} dependencies: decamelize: 1.2.0 @@ -11490,8 +11162,8 @@ packages: engines: {node: '>= 0.10'} dev: true - /defaults/1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + /defaults/1.0.3: + resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==} dependencies: clone: 1.0.4 @@ -11508,14 +11180,6 @@ packages: object-keys: 1.1.1 dev: true - /define-properties/1.2.0: - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} - engines: {node: '>= 0.4'} - dependencies: - has-property-descriptors: 1.0.0 - object-keys: 1.1.1 - dev: true - /define-property/0.2.5: resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} engines: {node: '>=0.10.0'} @@ -11843,11 +11507,11 @@ packages: dev: true /ee-first/1.1.1: - resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} dev: true - /electron-to-chromium/1.4.304: - resolution: {integrity: sha512-6c8M+ojPgDIXN2NyfGn8oHASXYnayj+gSEnGeLMKb9zjsySeVB/j7KkNAAG9yDcv8gNlhvFg5REa1N/kQU6pgA==} + /electron-to-chromium/1.4.262: + resolution: {integrity: sha512-Ckn5haqmGh/xS8IbcgK3dnwAVnhDyo/WQnklWn6yaMucYTq7NNxwlGE8ElzEOnonzRLzUCo2Ot3vUb2GYUF2Hw==} /element-resize-detector/1.2.4: resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==} @@ -12142,78 +11806,220 @@ packages: es6-symbol: 3.1.3 dev: true - /esbuild-wasm/0.16.17: - resolution: {integrity: sha512-Tn7NuMqRcM+T/qCOxbQRq0qrwWl1sUWp6ARfJRakE8Bepew6zata4qrKgH2YqovNC5e/2fcTa7o+VL/FAOZC1Q==} + /esbuild-android-64/0.15.5: + resolution: {integrity: sha512-dYPPkiGNskvZqmIK29OPxolyY3tp+c47+Fsc2WYSOVjEPWNCHNyqhtFqQadcXMJDQt8eN0NMDukbyQgFcHquXg==} engines: {node: '>=12'} - hasBin: true + cpu: [x64] + os: [android] + requiresBuild: true dev: true + optional: true - /esbuild-wasm/0.17.10: - resolution: {integrity: sha512-iDPIYZXoY6RWXIt3BpnENIdgKvkfYv8YdvrdjK3n8c1reGq3d38h8ETWvrpy1+0r5gR74vEb73TMonh5FbVZxw==} + /esbuild-android-arm64/0.15.5: + resolution: {integrity: sha512-YyEkaQl08ze3cBzI/4Cm1S+rVh8HMOpCdq8B78JLbNFHhzi4NixVN93xDrHZLztlocEYqi45rHHCgA8kZFidFg==} engines: {node: '>=12'} - hasBin: true + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /esbuild-darwin-64/0.15.5: + resolution: {integrity: sha512-Cr0iIqnWKx3ZTvDUAzG0H/u9dWjLE4c2gTtRLz4pqOBGjfjqdcZSfAObFzKTInLLSmD0ZV1I/mshhPoYSBMMCQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /esbuild-darwin-arm64/0.15.5: + resolution: {integrity: sha512-WIfQkocGtFrz7vCu44ypY5YmiFXpsxvz2xqwe688jFfSVCnUsCn2qkEVDo7gT8EpsLOz1J/OmqjExePL1dr1Kg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /esbuild-freebsd-64/0.15.5: + resolution: {integrity: sha512-M5/EfzV2RsMd/wqwR18CELcenZ8+fFxQAAEO7TJKDmP3knhWSbD72ILzrXFMMwshlPAS1ShCZ90jsxkm+8FlaA==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-freebsd-arm64/0.15.5: + resolution: {integrity: sha512-2JQQ5Qs9J0440F/n/aUBNvY6lTo4XP/4lt1TwDfHuo0DY3w5++anw+jTjfouLzbJmFFiwmX7SmUhMnysocx96w==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-32/0.15.5: + resolution: {integrity: sha512-gO9vNnIN0FTUGjvTFucIXtBSr1Woymmx/aHQtuU+2OllGU6YFLs99960UD4Dib1kFovVgs59MTXwpFdVoSMZoQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-64/0.15.5: + resolution: {integrity: sha512-ne0GFdNLsm4veXbTnYAWjbx3shpNKZJUd6XpNbKNUZaNllDZfYQt0/zRqOg0sc7O8GQ+PjSMv9IpIEULXVTVmg==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-arm/0.15.5: + resolution: {integrity: sha512-wvAoHEN+gJ/22gnvhZnS/+2H14HyAxM07m59RSLn3iXrQsdS518jnEWRBnJz3fR6BJa+VUTo0NxYjGaNt7RA7Q==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-arm64/0.15.5: + resolution: {integrity: sha512-7EgFyP2zjO065XTfdCxiXVEk+f83RQ1JsryN1X/VSX2li9rnHAt2swRbpoz5Vlrl6qjHrCmq5b6yxD13z6RheA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-mips64le/0.15.5: + resolution: {integrity: sha512-KdnSkHxWrJ6Y40ABu+ipTZeRhFtc8dowGyFsZY5prsmMSr1ZTG9zQawguN4/tunJ0wy3+kD54GaGwdcpwWAvZQ==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-ppc64le/0.15.5: + resolution: {integrity: sha512-QdRHGeZ2ykl5P0KRmfGBZIHmqcwIsUKWmmpZTOq573jRWwmpfRmS7xOhmDHBj9pxv+6qRMH8tLr2fe+ZKQvCYw==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-riscv64/0.15.5: + resolution: {integrity: sha512-p+WE6RX+jNILsf+exR29DwgV6B73khEQV0qWUbzxaycxawZ8NE0wA6HnnTxbiw5f4Gx9sJDUBemh9v49lKOORA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-s390x/0.15.5: + resolution: {integrity: sha512-J2ngOB4cNzmqLHh6TYMM/ips8aoZIuzxJnDdWutBw5482jGXiOzsPoEF4j2WJ2mGnm7FBCO4StGcwzOgic70JQ==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-netbsd-64/0.15.5: + resolution: {integrity: sha512-MmKUYGDizYjFia0Rwt8oOgmiFH7zaYlsoQ3tIOfPxOqLssAsEgG0MUdRDm5lliqjiuoog8LyDu9srQk5YwWF3w==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-openbsd-64/0.15.5: + resolution: {integrity: sha512-2mMFfkLk3oPWfopA9Plj4hyhqHNuGyp5KQyTT9Rc8hFd8wAn5ZrbJg+gNcLMo2yzf8Uiu0RT6G9B15YN9WQyMA==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-sunos-64/0.15.5: + resolution: {integrity: sha512-2sIzhMUfLNoD+rdmV6AacilCHSxZIoGAU2oT7XmJ0lXcZWnCvCtObvO6D4puxX9YRE97GodciRGDLBaiC6x1SA==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true dev: true + optional: true - /esbuild/0.16.17: - resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==} + /esbuild-wasm/0.15.5: + resolution: {integrity: sha512-lTJOEKekN/4JI/eOEq0wLcx53co2N6vaT/XjBz46D1tvIVoUEyM0o2K6txW6gEotf31szFD/J1PbxmnbkGlK9A==} engines: {node: '>=12'} hasBin: true + dev: true + + /esbuild-windows-32/0.15.5: + resolution: {integrity: sha512-e+duNED9UBop7Vnlap6XKedA/53lIi12xv2ebeNS4gFmu7aKyTrok7DPIZyU5w/ftHD4MUDs5PJUkQPP9xJRzg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] requiresBuild: true - optionalDependencies: - '@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 - - /esbuild/0.17.10: - resolution: {integrity: sha512-n7V3v29IuZy5qgxx25TKJrEm0FHghAlS6QweUcyIgh/U0zYmQcvogWROitrTyZId1mHSkuhhuyEXtI9OXioq7A==} + dev: true + optional: true + + /esbuild-windows-64/0.15.5: + resolution: {integrity: sha512-v+PjvNtSASHOjPDMIai9Yi+aP+Vwox+3WVdg2JB8N9aivJ7lyhp4NVU+J0MV2OkWFPnVO8AE/7xH+72ibUUEnw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-arm64/0.15.5: + resolution: {integrity: sha512-Yz8w/D8CUPYstvVQujByu6mlf48lKmXkq6bkeSZZxTA626efQOJb26aDGLzmFWx6eg/FwrXgt6SZs9V8Pwy/aA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild/0.15.5: + resolution: {integrity: sha512-VSf6S1QVqvxfIsSKb3UKr3VhUCis7wgDbtF4Vd9z84UJr05/Sp2fRKmzC+CSPG/dNAPPJZ0BTBLTT1Fhd6N9Gg==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.17.10 - '@esbuild/android-arm64': 0.17.10 - '@esbuild/android-x64': 0.17.10 - '@esbuild/darwin-arm64': 0.17.10 - '@esbuild/darwin-x64': 0.17.10 - '@esbuild/freebsd-arm64': 0.17.10 - '@esbuild/freebsd-x64': 0.17.10 - '@esbuild/linux-arm': 0.17.10 - '@esbuild/linux-arm64': 0.17.10 - '@esbuild/linux-ia32': 0.17.10 - '@esbuild/linux-loong64': 0.17.10 - '@esbuild/linux-mips64el': 0.17.10 - '@esbuild/linux-ppc64': 0.17.10 - '@esbuild/linux-riscv64': 0.17.10 - '@esbuild/linux-s390x': 0.17.10 - '@esbuild/linux-x64': 0.17.10 - '@esbuild/netbsd-x64': 0.17.10 - '@esbuild/openbsd-x64': 0.17.10 - '@esbuild/sunos-x64': 0.17.10 - '@esbuild/win32-arm64': 0.17.10 - '@esbuild/win32-ia32': 0.17.10 - '@esbuild/win32-x64': 0.17.10 + '@esbuild/linux-loong64': 0.15.5 + esbuild-android-64: 0.15.5 + esbuild-android-arm64: 0.15.5 + esbuild-darwin-64: 0.15.5 + esbuild-darwin-arm64: 0.15.5 + esbuild-freebsd-64: 0.15.5 + esbuild-freebsd-arm64: 0.15.5 + esbuild-linux-32: 0.15.5 + esbuild-linux-64: 0.15.5 + esbuild-linux-arm: 0.15.5 + esbuild-linux-arm64: 0.15.5 + esbuild-linux-mips64le: 0.15.5 + esbuild-linux-ppc64le: 0.15.5 + esbuild-linux-riscv64: 0.15.5 + esbuild-linux-s390x: 0.15.5 + esbuild-netbsd-64: 0.15.5 + esbuild-openbsd-64: 0.15.5 + esbuild-sunos-64: 0.15.5 + esbuild-windows-32: 0.15.5 + esbuild-windows-64: 0.15.5 + esbuild-windows-arm64: 0.15.5 dev: true - optional: true /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -12609,8 +12415,8 @@ packages: resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} dev: true - /estree-walker/2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + /estree-walker/1.0.1: + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} dev: true /esutils/2.0.3: @@ -13069,7 +12875,7 @@ packages: dev: true /finalhandler/1.2.0: - resolution: {integrity: sha1-fSP+VzGyB7RkDk/NAK7B+SB6ezI=} + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} engines: {node: '>= 0.8'} dependencies: debug: 2.6.9 @@ -13250,7 +13056,7 @@ packages: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} dev: true - /fork-ts-checker-webpack-plugin/4.1.6_evijigonbo4skk2vlqtwtdqibu: + /fork-ts-checker-webpack-plugin/4.1.6_u7kjabuvawcog7hjctusduehvm: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -13270,14 +13076,14 @@ packages: minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 - typescript: 4.9.5 + typescript: 4.6.4 webpack: 4.46.0 worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color dev: true - /fork-ts-checker-webpack-plugin/6.5.2_evijigonbo4skk2vlqtwtdqibu: + /fork-ts-checker-webpack-plugin/6.5.2_u7kjabuvawcog7hjctusduehvm: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -13299,12 +13105,12 @@ packages: deepmerge: 4.2.2 fs-extra: 9.1.0 glob: 7.2.3 - memfs: 3.4.13 + memfs: 3.4.4 minimatch: 3.1.2 schema-utils: 2.7.0 semver: 7.3.8 tapable: 1.1.3 - typescript: 4.9.5 + typescript: 4.6.4 webpack: 4.46.0 dev: true @@ -13336,7 +13142,7 @@ packages: dev: true /forwarded/0.2.0: - resolution: {integrity: sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=} + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} engines: {node: '>= 0.6'} dev: true @@ -13415,13 +13221,6 @@ packages: minipass: 3.1.6 dev: true - /fs-minipass/3.0.1: - resolution: {integrity: sha512-MhaJDcFRTuLidHrIttu0RDGyyXs/IYHVmlcxfLAEFIWjc1vdLAkdwT7Ace2u7DbitWC0toKMl5eJZRYNVreIMw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - minipass: 4.0.3 - dev: true - /fs-mkdirp-stream/1.0.0: resolution: {integrity: sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==} engines: {node: '>= 0.10'} @@ -13449,7 +13248,6 @@ packages: /fsevents/1.2.13: resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} engines: {node: '>= 4.0'} - os: [darwin] deprecated: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2. requiresBuild: true dependencies: @@ -13461,7 +13259,6 @@ packages: /fsevents/2.3.2: resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] requiresBuild: true optional: true @@ -13678,7 +13475,6 @@ packages: inherits: 2.0.4 minimatch: 5.1.0 once: 1.4.0 - dev: true /glob/8.1.0: resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} @@ -13689,6 +13485,7 @@ packages: inherits: 2.0.4 minimatch: 5.1.0 once: 1.4.0 + dev: true /global-dirs/3.0.0: resolution: {integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==} @@ -14248,9 +14045,9 @@ packages: lru-cache: 6.0.0 dev: true - /hosted-git-info/6.1.1: - resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /hosted-git-info/5.1.0: + resolution: {integrity: sha512-Ek+QmMEqZF8XrbFdwoDjSbm7rT23pCgEMOJmz6GPk/s4yH//RQfNPArhIxbguNxROq/+5lNBwCDHMhA903Kx1Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: lru-cache: 7.10.1 dev: true @@ -14368,8 +14165,8 @@ packages: entities: 4.4.0 dev: false - /http-cache-semantics/4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + /http-cache-semantics/4.1.0: + resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==} dev: true /http-deceiver/1.2.7: @@ -14579,11 +14376,11 @@ packages: engines: {node: '>=0.8.0'} dev: false - /ignore-walk/6.0.1: - resolution: {integrity: sha512-/c8MxUAqpRccq+LyDOecwF+9KqajueJHh8fz7g3YqjMZt+NSfJzx05zrKiXwa2sKwFCzaiZ5qUVfRj0pmxixEA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /ignore-walk/5.0.1: + resolution: {integrity: sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: - minimatch: 6.2.0 + minimatch: 5.1.0 dev: true /ignore/4.0.6: @@ -14591,6 +14388,11 @@ packages: engines: {node: '>= 4'} dev: true + /ignore/5.2.0: + resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} + engines: {node: '>= 4'} + dev: true + /ignore/5.2.1: resolution: {integrity: sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==} engines: {node: '>= 4'} @@ -14693,8 +14495,8 @@ packages: engines: {node: '>=10'} dev: true - /ini/3.0.1: - resolution: {integrity: sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==} + /ini/3.0.0: + resolution: {integrity: sha512-TxYQaeNW/N8ymDvwAxPyRbhMBtnEwuvaTYpOQkFx1nSeusgezHniEc/l35Vo4iCq/mMiTJbpD7oYxN98hFlfmw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true @@ -14869,8 +14671,8 @@ packages: engines: {node: '>=4'} dev: true - /is-builtin-module/3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} + /is-builtin-module/3.1.0: + resolution: {integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==} engines: {node: '>=6'} dependencies: builtin-modules: 3.3.0 @@ -14892,7 +14694,7 @@ packages: resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true dependencies: - ci-info: 3.8.0 + ci-info: 3.3.2 dev: true /is-core-module/2.11.0: @@ -15356,7 +15158,7 @@ packages: engines: {node: '>=8'} dependencies: '@babel/core': 7.21.0 - '@babel/parser': 7.21.1 + '@babel/parser': 7.20.7 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -15636,7 +15438,7 @@ packages: jest-util: 29.4.3 jest-validate: 29.4.3 prompts: 2.4.2 - yargs: 17.6.2 + yargs: 17.5.1 transitivePeerDependencies: - '@types/node' - supports-color @@ -15704,7 +15506,7 @@ packages: jest-validate: 26.6.2 micromatch: 4.0.5 pretty-format: 26.6.2 - ts-node: 10.9.1_tncu2ai53lzgmizdedur7lbibe + ts-node: 10.9.1_qcqsnqvvdpjatba7u2dizzf44y transitivePeerDependencies: - bufferutil - canvas @@ -15770,7 +15572,7 @@ packages: '@types/node': 18.14.0 babel-jest: 29.4.3_@babel+core@7.21.0 chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.3.2 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 @@ -16759,7 +16561,7 @@ packages: '@jest/types': 29.4.3 '@types/node': 18.14.0 chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.3.2 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: true @@ -17044,11 +16846,6 @@ packages: /json-parse-even-better-errors/2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} - /json-parse-even-better-errors/3.0.0: - resolution: {integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dev: true - /json-schema-traverse/0.4.1: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} dev: true @@ -17080,8 +16877,8 @@ packages: engines: {node: '>=6'} hasBin: true - /jsonc-parser/3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + /jsonc-parser/3.1.0: + resolution: {integrity: sha512-DRf0QjnNeCUds3xTjKlQQ3DpJD51GvDjJfnxUVWg6PZTo2otSm+slzNAxU/35hF8/oJIKoG9slq30JYOsF2azg==} /jsonfile/4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} @@ -17278,11 +17075,6 @@ packages: engines: {node: '>=6'} dev: true - /kleur/4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} - dev: true - /klona/2.0.5: resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==} engines: {node: '>= 8'} @@ -17337,8 +17129,8 @@ packages: flush-write-stream: 1.1.1 dev: true - /less-loader/11.1.0_less@4.1.3+webpack@5.75.0: - resolution: {integrity: sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==} + /less-loader/11.0.0_less@4.1.3+webpack@5.74.0: + resolution: {integrity: sha512-9+LOWWjuoectIEx3zrfN83NAGxSUB5pWEabbbidVQVgZhN+wN68pOvuyirVlH1IK4VT1f3TmlyvAnCXh8O5KEw==} engines: {node: '>= 14.15.0'} peerDependencies: less: ^3.5.0 || ^4.0.0 @@ -17346,7 +17138,7 @@ packages: dependencies: klona: 2.0.5 less: 4.1.3 - webpack: 5.75.0_esbuild@0.16.17 + webpack: 5.74.0_esbuild@0.15.5 dev: true /less/4.1.3: @@ -17390,7 +17182,7 @@ packages: type-check: 0.4.0 dev: true - /license-webpack-plugin/4.0.2_webpack@5.75.0: + /license-webpack-plugin/4.0.2_webpack@5.74.0: resolution: {integrity: sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==} peerDependencies: webpack: '*' @@ -17400,7 +17192,7 @@ packages: webpack-sources: optional: true dependencies: - webpack: 5.75.0_esbuild@0.16.17 + webpack: 5.74.0_esbuild@0.15.5 webpack-sources: 3.2.3 dev: true @@ -17666,18 +17458,11 @@ packages: sourcemap-codec: 1.4.8 dev: true - /magic-string/0.26.7: - resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==} + /magic-string/0.26.2: + resolution: {integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==} engines: {node: '>=12'} dependencies: sourcemap-codec: 1.4.8 - dev: false - - /magic-string/0.27.0: - resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} - engines: {node: '>=12'} - dependencies: - '@jridgewell/sourcemap-codec': 1.4.14 /make-dir/2.1.0: resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} @@ -17705,7 +17490,7 @@ packages: dependencies: agentkeepalive: 4.2.1 cacache: 16.1.2 - http-cache-semantics: 4.1.1 + http-cache-semantics: 4.1.0 http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 is-lambda: 1.0.1 @@ -17724,30 +17509,6 @@ packages: - supports-color dev: true - /make-fetch-happen/11.0.3: - resolution: {integrity: sha512-oPLh5m10lRNNZDjJ2kP8UpboUx2uFXVaVweVe/lWut4iHWcQEmfqSVJt2ihZsFI8HbpwyyocaXbCAWf0g1ukIA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - agentkeepalive: 4.2.1 - cacache: 17.0.4 - http-cache-semantics: 4.1.1 - http-proxy-agent: 5.0.0 - https-proxy-agent: 5.0.1 - is-lambda: 1.0.1 - lru-cache: 7.10.1 - minipass: 4.0.3 - minipass-fetch: 3.0.1 - minipass-flush: 1.0.5 - minipass-pipeline: 1.2.4 - negotiator: 0.6.3 - promise-retry: 2.0.1 - socks-proxy-agent: 7.0.0 - ssri: 10.0.1 - transitivePeerDependencies: - - bluebird - - supports-color - dev: true - /make-iterator/1.0.1: resolution: {integrity: sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==} engines: {node: '>=0.10.0'} @@ -17910,8 +17671,8 @@ packages: engines: {node: '>= 0.6'} dev: true - /memfs/3.4.13: - resolution: {integrity: sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==} + /memfs/3.4.4: + resolution: {integrity: sha512-W4gHNUE++1oSJVn8Y68jPXi+mkx3fXR5ITE/Ubz6EQ3xRpCN5k2CQ4AUR8094Z7211F876TyoBACGsIveqgiGA==} engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.3 @@ -17966,7 +17727,7 @@ packages: dependencies: '@types/minimist': 1.2.2 camelcase-keys: 6.2.2 - decamelize-keys: 1.1.1 + decamelize-keys: 1.1.0 hard-rejection: 2.1.0 minimist-options: 4.1.0 normalize-package-data: 2.5.0 @@ -17996,7 +17757,7 @@ packages: dev: true /merge-descriptors/1.0.1: - resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=} + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} dev: true /merge-stream/2.0.0: @@ -18279,14 +18040,14 @@ packages: engines: {node: '>=4'} dev: true - /mini-css-extract-plugin/2.7.2_webpack@5.75.0: - resolution: {integrity: sha512-EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw==} + /mini-css-extract-plugin/2.6.1_webpack@5.74.0: + resolution: {integrity: sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.75.0_esbuild@0.16.17 + webpack: 5.74.0_esbuild@0.15.5 dev: true /minimalistic-assert/1.0.1: @@ -18314,13 +18075,6 @@ packages: dependencies: brace-expansion: 2.0.1 - /minimatch/6.2.0: - resolution: {integrity: sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg==} - engines: {node: '>=10'} - dependencies: - brace-expansion: 2.0.1 - dev: true - /minimist-options/4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} @@ -18356,17 +18110,6 @@ packages: encoding: 0.1.13 dev: true - /minipass-fetch/3.0.1: - resolution: {integrity: sha512-t9/wowtf7DYkwz8cfMSt0rMwiyNIBXf5CKZ3S5ZMqRqMYT0oLTp0x1WorMI9WTwvaPg21r1JbFxJMum8JrLGfw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - minipass: 4.0.3 - minipass-sized: 1.0.3 - minizlib: 2.1.2 - optionalDependencies: - encoding: 0.1.13 - dev: true - /minipass-flush/1.0.5: resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} engines: {node: '>= 8'} @@ -18402,11 +18145,6 @@ packages: yallist: 4.0.0 dev: true - /minipass/4.0.3: - resolution: {integrity: sha512-OW2r4sQ0sI+z5ckEt5c1Tri4xTgZwYDxpE54eqWlQloQRoWtXjqt9udJ5Z4dSv7wK+nfFI7FRXyCpBSft+gpFw==} - engines: {node: '>=8'} - dev: true - /minizlib/2.1.2: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} @@ -18443,8 +18181,8 @@ packages: is-extendable: 1.0.1 dev: true - /mixme/0.5.5: - resolution: {integrity: sha512-/6IupbRx32s7jjEwHcycXikJwFD5UujbVNuJFkeKLYje+92OvtuPniF6JhnFm5JCTDUhS+kYK3W/4BWYQYXz7w==} + /mixme/0.5.4: + resolution: {integrity: sha512-3KYa4m4Vlqx98GPdOHghxSdNtTvcP8E0kkaJ5Dlh+h2DRzF7zpuVVcA8B0QpKd11YJeP9QQ7ASkKzOeu195Wzw==} engines: {node: '>= 8.0.0'} dev: true @@ -18588,84 +18326,80 @@ packages: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} dev: true - /ng-packagr/15.1.2_jzeiugkiglfx2y542pr37o6vve: - resolution: {integrity: sha512-GpVySff7Wwx+eAW+HXkFD8et05UK0/usHnFEKznXhxmhML7XOGYaK74tAsgUwA06GUQofQH/VjdsBGi6XlVNjA==} - engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0} + /ng-packagr/14.2.2_uagavn7dbwvtglbldk5giq5ssq: + resolution: {integrity: sha512-AqwHcMM6x+JkCHT++IsbulnTdyoXcC2Cr4tbPamuieacc77+fFbB195hdcqEFwsKX5410cymx/ZUyHird9rxlg==} + engines: {node: ^14.15.0 || >=16.10.0} hasBin: true peerDependencies: - '@angular/compiler-cli': ^15.0.0 || ^15.1.0-next.0 || ^15.2.0-next.0 - tailwindcss: ^2.0.0 || ^3.0.0 + '@angular/compiler-cli': ^14.0.0 || ^14.0.0-next || ^14.2.0-next tslib: ^2.3.0 - typescript: '>=4.8.2 <5.0' - peerDependenciesMeta: - tailwindcss: - optional: true + typescript: '>=4.6.2 <4.9' dependencies: - '@angular/compiler-cli': 15.1.5_nolqrmukmycxjx7xovu3ezjhk4 - '@rollup/plugin-json': 6.0.0_rollup@3.17.2 - '@rollup/plugin-node-resolve': 15.0.1_rollup@3.17.2 + '@angular/compiler-cli': 14.2.12_xny3jupsupef4qvbeynwkkewkm + '@rollup/plugin-json': 4.1.0_rollup@2.75.6 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.6 ajv: 8.11.0 ansi-colors: 4.1.3 - autoprefixer: 10.4.13_postcss@8.4.21 browserslist: 4.21.4 - cacache: 17.0.4 + cacache: 16.1.2 chokidar: 3.5.3 - commander: 10.0.0 - convert-source-map: 2.0.0 + commander: 9.4.0 dependency-graph: 0.11.0 - esbuild-wasm: 0.17.10 + esbuild-wasm: 0.15.5 find-cache-dir: 3.3.2 glob: 8.1.0 injection-js: 2.4.0 - jsonc-parser: 3.2.0 + jsonc-parser: 3.1.0 less: 4.1.3 ora: 5.4.1 - piscina: 3.2.0 postcss: 8.4.21 + postcss-preset-env: 7.8.0_postcss@8.4.21 postcss-url: 10.1.3_postcss@8.4.21 - rollup: 3.17.2 + rollup: 2.75.6 + rollup-plugin-sourcemaps: 0.6.3_metu4hjlfxtmjed5cy3s7lylvy rxjs: 7.8.0 sass: 1.58.3 + stylus: 0.59.0 tslib: 2.5.0 - typescript: 4.9.5 + typescript: 4.8.4 optionalDependencies: - esbuild: 0.17.10 + esbuild: 0.15.5 transitivePeerDependencies: + - '@types/node' - bluebird - supports-color dev: true - /ngx-highlightjs/8.0.0_pq7so2lxnramwprfbopfupfyze: - resolution: {integrity: sha512-joRqwYnliH+Qv5ceM/YmUWaryO+7hhBp8KVs91GSmTf8mZdD0OL6iYsQgg0p64YAjoStmO6MR11BP9W847NYEg==} + /ngx-highlightjs/7.0.1_yg5i7pymki4meqci6ecgolbxoi: + resolution: {integrity: sha512-ZmA6RUBRB0tqAlsGYR21kCna9ror51FZwpV7Y94yCuyVv24u5bhg9nfLnFPDBJJ1u1vfNKV1R1TNTXUm/SiRjw==} peerDependencies: '@angular/common': '>=14.0.0' '@angular/core': '>=14.0.0' rxjs: '>=6.0.0' dependencies: - '@angular/common': 15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 + '@angular/common': 14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 highlight.js: 11.7.0 highlightjs-line-numbers.js: 2.8.0 rxjs: 7.8.0 tslib: 2.5.0 dev: false - /ngx-toastr/16.0.2_r5w6u7fwq2my5aduzicwtvscb4: - resolution: {integrity: sha512-J6SueNCaGwm/gpXdsG56UzMEAcuayYWEW6NmIrNoe5iP7lOUohg4xYXWipkbMH9wGWmLPD9gU8AufUVWMplCvg==} + /ngx-toastr/15.2.2_575hqlbkduhazj74z2li43juyy: + resolution: {integrity: sha512-srdxKKf1+B/7z11M4Ty7bnkme2xjdUcnP/t7mNG/2gRM1h0P/7Lbz71FIQHuKZOCdnGdXjsT6OXU0dRvNyrkyg==} peerDependencies: '@angular/common': '>=14.0.0-0' '@angular/core': '>=14.0.0-0' '@angular/platform-browser': '>=14.0.0-0' dependencies: - '@angular/common': 15.1.5_bj7gay3f2iqhd2jhj4xbvfa7uq - '@angular/core': 15.1.5_rxjs@7.8.0+zone.js@0.12.0 - '@angular/platform-browser': 15.1.5_s7kwnqxnlkypgp4vtemlnxkbmi + '@angular/common': 14.2.12_3q4hhdsn6lsnyersxa5ubqxwe4 + '@angular/core': 14.2.12_rxjs@7.8.0+zone.js@0.12.0 + '@angular/platform-browser': 14.2.12_dax2jypo47bpgiczdvqsh7iq24 tslib: 2.5.0 dev: false /nice-napi/1.0.2: resolution: {integrity: sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==} - os: ['!win32'] requiresBuild: true dependencies: node-addon-api: 3.2.1 @@ -18797,8 +18531,8 @@ packages: dev: true optional: true - /node-releases/2.0.10: - resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==} + /node-releases/2.0.6: + resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} /noms/0.0.0: resolution: {integrity: sha512-lNDU9VJaOPxUmXcLb+HQFeUgQQPtMI24Gt6hgfuMHRJgMRHMF/qZ4HJD3GDru4sSw9IQl2jPjAYnQrdIeLbwow==} @@ -18834,11 +18568,11 @@ packages: validate-npm-package-license: 3.0.4 dev: true - /normalize-package-data/5.0.0: - resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /normalize-package-data/4.0.1: + resolution: {integrity: sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: - hosted-git-info: 6.1.1 + hosted-git-info: 5.1.0 is-core-module: 2.11.0 semver: 7.3.8 validate-npm-package-license: 3.0.4 @@ -18867,63 +18601,65 @@ packages: once: 1.4.0 dev: true - /npm-bundled/3.0.0: - resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /npm-bundled/1.1.2: + resolution: {integrity: sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==} dependencies: - npm-normalize-package-bin: 3.0.0 + npm-normalize-package-bin: 1.0.1 dev: true - /npm-install-checks/6.0.0: - resolution: {integrity: sha512-SBU9oFglRVZnfElwAtF14NivyulDqF1VKqqwNsFW9HDcbHMAPHpRSsVFgKuwFGq/hVvWZExz62Th0kvxn/XE7Q==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /npm-install-checks/5.0.0: + resolution: {integrity: sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: semver: 7.3.8 dev: true - /npm-normalize-package-bin/3.0.0: - resolution: {integrity: sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /npm-normalize-package-bin/1.0.1: + resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==} dev: true - /npm-package-arg/10.1.0: - resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /npm-package-arg/9.1.0: + resolution: {integrity: sha512-4J0GL+u2Nh6OnhvUKXRr2ZMG4lR8qtLp+kv7UiV00Y+nGiSxtttCyIRHCt5L5BNkXQld/RceYItau3MDOoGiBw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: - hosted-git-info: 6.1.1 - proc-log: 3.0.0 + hosted-git-info: 5.1.0 + proc-log: 2.0.1 semver: 7.3.8 - validate-npm-package-name: 5.0.0 + validate-npm-package-name: 4.0.0 dev: true - /npm-packlist/7.0.4: - resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /npm-packlist/5.1.1: + resolution: {integrity: sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + hasBin: true dependencies: - ignore-walk: 6.0.1 + glob: 8.1.0 + ignore-walk: 5.0.1 + npm-bundled: 1.1.2 + npm-normalize-package-bin: 1.0.1 dev: true - /npm-pick-manifest/8.0.1: - resolution: {integrity: sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /npm-pick-manifest/7.0.1: + resolution: {integrity: sha512-IA8+tuv8KujbsbLQvselW2XQgmXWS47t3CB0ZrzsRZ82DbDfkcFunOaPm4X7qNuhMfq+FmV7hQT4iFVpHqV7mg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: - npm-install-checks: 6.0.0 - npm-normalize-package-bin: 3.0.0 - npm-package-arg: 10.1.0 + npm-install-checks: 5.0.0 + npm-normalize-package-bin: 1.0.1 + npm-package-arg: 9.1.0 semver: 7.3.8 dev: true - /npm-registry-fetch/14.0.3: - resolution: {integrity: sha512-YaeRbVNpnWvsGOjX2wk5s85XJ7l1qQBGAp724h8e2CZFFhMSuw9enom7K1mWVUtvXO1uUSFIAPofQK0pPN0ZcA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /npm-registry-fetch/13.3.1: + resolution: {integrity: sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: - make-fetch-happen: 11.0.3 - minipass: 4.0.3 - minipass-fetch: 3.0.1 + make-fetch-happen: 10.1.7 + minipass: 3.1.6 + minipass-fetch: 2.1.0 minipass-json-stream: 1.0.1 minizlib: 2.1.2 - npm-package-arg: 10.1.0 - proc-log: 3.0.0 + npm-package-arg: 9.1.0 + proc-log: 2.0.1 transitivePeerDependencies: - bluebird - supports-color @@ -19364,27 +19100,31 @@ packages: engines: {node: '>=6'} dev: true - /pacote/15.0.8: - resolution: {integrity: sha512-UlcumB/XS6xyyIMwg/WwMAyUmga+RivB5KgkRwA1hZNtrx+0Bt41KxHCvg1kr0pZ/ZeD8qjhW4fph6VaYRCbLw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /pacote/13.6.2: + resolution: {integrity: sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} hasBin: true dependencies: - '@npmcli/git': 4.0.3 - '@npmcli/installed-package-contents': 2.0.1 - '@npmcli/promise-spawn': 6.0.2 - '@npmcli/run-script': 6.0.0 - cacache: 17.0.4 - fs-minipass: 3.0.1 - minipass: 4.0.3 - npm-package-arg: 10.1.0 - npm-packlist: 7.0.4 - npm-pick-manifest: 8.0.1 - npm-registry-fetch: 14.0.3 - proc-log: 3.0.0 + '@npmcli/git': 3.0.2 + '@npmcli/installed-package-contents': 1.0.7 + '@npmcli/promise-spawn': 3.0.0 + '@npmcli/run-script': 4.2.1 + cacache: 16.1.2 + chownr: 2.0.0 + fs-minipass: 2.1.0 + infer-owner: 1.0.4 + minipass: 3.1.6 + mkdirp: 1.0.4 + npm-package-arg: 9.1.0 + npm-packlist: 5.1.1 + npm-pick-manifest: 7.0.1 + npm-registry-fetch: 13.3.1 + proc-log: 2.0.1 promise-retry: 2.0.1 - read-package-json: 6.0.0 - read-package-json-fast: 3.0.2 - ssri: 10.0.1 + read-package-json: 5.0.1 + read-package-json-fast: 2.0.3 + rimraf: 3.0.2 + ssri: 9.0.1 tar: 6.1.11 transitivePeerDependencies: - bluebird @@ -19497,7 +19237,7 @@ packages: resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} dependencies: domhandler: 5.0.3 - parse5: 7.1.2 + parse5: 7.1.1 dev: false /parse5-sax-parser/6.0.1: @@ -19506,6 +19246,12 @@ packages: parse5: 6.0.1 dev: true + /parse5/5.1.1: + resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} + requiresBuild: true + dev: false + optional: true + /parse5/6.0.1: resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} dev: true @@ -19516,12 +19262,6 @@ packages: entities: 4.4.0 dev: false - /parse5/7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} - dependencies: - entities: 4.4.0 - dev: false - /parseurl/1.3.3: resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} engines: {node: '>= 0.8'} @@ -19740,11 +19480,11 @@ packages: extend-shallow: 3.0.2 dev: true - /pnp-webpack-plugin/1.6.4_typescript@4.9.5: + /pnp-webpack-plugin/1.6.4_typescript@4.6.4: resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.9.5 + ts-pnp: 1.2.0_typescript@4.6.4 transitivePeerDependencies: - typescript dev: true @@ -19772,12 +19512,378 @@ packages: engines: {node: '>=0.10.0'} dev: true + /postcss-attribute-case-insensitive/5.0.2_postcss@8.4.16: + resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-attribute-case-insensitive/5.0.2_postcss@8.4.21: + resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-clamp/4.1.0_postcss@8.4.16: + resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} + engines: {node: '>=7.6.0'} + peerDependencies: + postcss: ^8.4.6 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-clamp/4.1.0_postcss@8.4.21: + resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} + engines: {node: '>=7.6.0'} + peerDependencies: + postcss: ^8.4.6 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-color-functional-notation/4.2.4_postcss@8.4.16: + resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-color-functional-notation/4.2.4_postcss@8.4.21: + resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-color-hex-alpha/8.0.4_postcss@8.4.16: + resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-color-hex-alpha/8.0.4_postcss@8.4.21: + resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-color-rebeccapurple/7.1.1_postcss@8.4.16: + resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-color-rebeccapurple/7.1.1_postcss@8.4.21: + resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-custom-media/8.0.2_postcss@8.4.16: + resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-custom-media/8.0.2_postcss@8.4.21: + resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-custom-properties/12.1.8_postcss@8.4.16: + resolution: {integrity: sha512-8rbj8kVu00RQh2fQF81oBqtduiANu4MIxhyf0HbbStgPtnFlWn0yiaYTpLHrPnJbffVY1s9apWsIoVZcc68FxA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-custom-properties/12.1.8_postcss@8.4.21: + resolution: {integrity: sha512-8rbj8kVu00RQh2fQF81oBqtduiANu4MIxhyf0HbbStgPtnFlWn0yiaYTpLHrPnJbffVY1s9apWsIoVZcc68FxA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-custom-selectors/6.0.3_postcss@8.4.16: + resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-custom-selectors/6.0.3_postcss@8.4.21: + resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + dependencies: + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-dir-pseudo-class/6.0.5_postcss@8.4.16: + resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-dir-pseudo-class/6.0.5_postcss@8.4.21: + resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-double-position-gradients/3.1.2_postcss@8.4.16: + resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-double-position-gradients/3.1.2_postcss@8.4.21: + resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.21 + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-env-function/4.0.6_postcss@8.4.16: + resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-env-function/4.0.6_postcss@8.4.21: + resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + /postcss-flexbugs-fixes/4.2.1: resolution: {integrity: sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==} dependencies: postcss: 7.0.39 dev: true + /postcss-focus-visible/6.0.4_postcss@8.4.16: + resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-focus-visible/6.0.4_postcss@8.4.21: + resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-focus-within/5.0.4_postcss@8.4.16: + resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-focus-within/5.0.4_postcss@8.4.21: + resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-font-variant/5.0.0_postcss@8.4.16: + resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.16 + dev: true + + /postcss-font-variant/5.0.0_postcss@8.4.21: + resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.21 + dev: true + + /postcss-gap-properties/3.0.5_postcss@8.4.16: + resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + dev: true + + /postcss-gap-properties/3.0.5_postcss@8.4.21: + resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + dev: true + + /postcss-image-set-function/4.0.7_postcss@8.4.16: + resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-image-set-function/4.0.7_postcss@8.4.21: + resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-import/15.0.0_postcss@8.4.16: + resolution: {integrity: sha512-Y20shPQ07RitgBGv2zvkEAu9bqvrD77C9axhj/aA1BQj4czape2MdClCExvB27EwYEJdGgKZBpKanb0t1rK2Kg==} + engines: {node: '>=14.0.0'} + peerDependencies: + postcss: ^8.0.0 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.1 + dev: true + + /postcss-initial/4.0.1_postcss@8.4.16: + resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} + peerDependencies: + postcss: ^8.0.0 + dependencies: + postcss: 8.4.16 + dev: true + + /postcss-initial/4.0.1_postcss@8.4.21: + resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} + peerDependencies: + postcss: ^8.0.0 + dependencies: + postcss: 8.4.21 + dev: true + + /postcss-lab-function/4.2.1_postcss@8.4.16: + resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-lab-function/4.2.1_postcss@8.4.21: + resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.21 + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + /postcss-load-config/3.1.4_postcss@8.4.21: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} @@ -19795,34 +19901,70 @@ packages: yaml: 1.10.2 dev: true - /postcss-loader/4.3.0_gzaxsinx64nntyd3vmdqwl7coe: - resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} - engines: {node: '>= 10.13.0'} + /postcss-loader/4.3.0_gzaxsinx64nntyd3vmdqwl7coe: + resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} + engines: {node: '>= 10.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^4.0.0 || ^5.0.0 + dependencies: + cosmiconfig: 7.1.0 + klona: 2.0.5 + loader-utils: 2.0.4 + postcss: 7.0.39 + schema-utils: 3.1.1 + semver: 7.3.8 + webpack: 4.46.0 + dev: true + + /postcss-loader/7.0.1_qjv4cptcpse3y5hrjkrbb7drda: + resolution: {integrity: sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==} + engines: {node: '>= 14.15.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^5.0.0 + dependencies: + cosmiconfig: 7.1.0 + klona: 2.0.5 + postcss: 8.4.16 + semver: 7.3.8 + webpack: 5.74.0_esbuild@0.15.5 + dev: true + + /postcss-logical/5.0.4_postcss@8.4.16: + resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.16 + dev: true + + /postcss-logical/5.0.4_postcss@8.4.21: + resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.4 + dependencies: + postcss: 8.4.21 + dev: true + + /postcss-media-minmax/5.0.0_postcss@8.4.16: + resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} + engines: {node: '>=10.0.0'} peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: ^4.0.0 || ^5.0.0 + postcss: ^8.1.0 dependencies: - cosmiconfig: 7.1.0 - klona: 2.0.5 - loader-utils: 2.0.4 - postcss: 7.0.39 - schema-utils: 3.1.1 - semver: 7.3.8 - webpack: 4.46.0 + postcss: 8.4.16 dev: true - /postcss-loader/7.0.2_6jdsrmfenkuhhw3gx4zvjlznce: - resolution: {integrity: sha512-fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg==} - engines: {node: '>= 14.15.0'} + /postcss-media-minmax/5.0.0_postcss@8.4.21: + resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} + engines: {node: '>=10.0.0'} peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: ^5.0.0 + postcss: ^8.1.0 dependencies: - cosmiconfig: 7.1.0 - klona: 2.0.5 postcss: 8.4.21 - semver: 7.3.8 - webpack: 5.75.0_esbuild@0.16.17 dev: true /postcss-media-query-parser/0.2.3: @@ -19902,6 +20044,241 @@ packages: postcss: 8.4.21 dev: true + /postcss-nesting/10.1.10_postcss@8.4.16: + resolution: {integrity: sha512-lqd7LXCq0gWc0wKXtoKDru5wEUNjm3OryLVNRZ8OnW8km6fSNUuFrjEhU3nklxXE2jvd4qrox566acgh+xQt8w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/selector-specificity': 2.1.1_lwhgtcofezsdkzkak5o4oyxzba + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-nesting/10.1.10_postcss@8.4.21: + resolution: {integrity: sha512-lqd7LXCq0gWc0wKXtoKDru5wEUNjm3OryLVNRZ8OnW8km6fSNUuFrjEhU3nklxXE2jvd4qrox566acgh+xQt8w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/selector-specificity': 2.1.1_wajs5nedgkikc5pcuwett7legi + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-opacity-percentage/1.1.2: + resolution: {integrity: sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==} + engines: {node: ^12 || ^14 || >=16} + dev: true + + /postcss-overflow-shorthand/3.0.4_postcss@8.4.16: + resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-overflow-shorthand/3.0.4_postcss@8.4.21: + resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-page-break/3.0.4_postcss@8.4.16: + resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} + peerDependencies: + postcss: ^8 + dependencies: + postcss: 8.4.16 + dev: true + + /postcss-page-break/3.0.4_postcss@8.4.21: + resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} + peerDependencies: + postcss: ^8 + dependencies: + postcss: 8.4.21 + dev: true + + /postcss-place/7.0.5_postcss@8.4.16: + resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-place/7.0.5_postcss@8.4.21: + resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-preset-env/7.8.0_postcss@8.4.16: + resolution: {integrity: sha512-leqiqLOellpLKfbHkD06E04P6d9ZQ24mat6hu4NSqun7WG0UhspHR5Myiv/510qouCjoo4+YJtNOqg5xHaFnCA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-cascade-layers': 1.0.5_postcss@8.4.16 + '@csstools/postcss-color-function': 1.1.1_postcss@8.4.16 + '@csstools/postcss-font-format-keywords': 1.0.1_postcss@8.4.16 + '@csstools/postcss-hwb-function': 1.0.2_postcss@8.4.16 + '@csstools/postcss-ic-unit': 1.0.1_postcss@8.4.16 + '@csstools/postcss-is-pseudo-class': 2.0.7_postcss@8.4.16 + '@csstools/postcss-nested-calc': 1.0.0_postcss@8.4.16 + '@csstools/postcss-normalize-display-values': 1.0.1_postcss@8.4.16 + '@csstools/postcss-oklab-function': 1.1.1_postcss@8.4.16 + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.16 + '@csstools/postcss-stepped-value-functions': 1.0.1_postcss@8.4.16 + '@csstools/postcss-text-decoration-shorthand': 1.0.0_postcss@8.4.16 + '@csstools/postcss-trigonometric-functions': 1.0.2_postcss@8.4.16 + '@csstools/postcss-unset-value': 1.0.2_postcss@8.4.16 + autoprefixer: 10.4.13_postcss@8.4.16 + browserslist: 4.21.4 + css-blank-pseudo: 3.0.3_postcss@8.4.16 + css-has-pseudo: 3.0.4_postcss@8.4.16 + css-prefers-color-scheme: 6.0.3_postcss@8.4.16 + cssdb: 7.0.1 + postcss: 8.4.16 + postcss-attribute-case-insensitive: 5.0.2_postcss@8.4.16 + postcss-clamp: 4.1.0_postcss@8.4.16 + postcss-color-functional-notation: 4.2.4_postcss@8.4.16 + postcss-color-hex-alpha: 8.0.4_postcss@8.4.16 + postcss-color-rebeccapurple: 7.1.1_postcss@8.4.16 + postcss-custom-media: 8.0.2_postcss@8.4.16 + postcss-custom-properties: 12.1.8_postcss@8.4.16 + postcss-custom-selectors: 6.0.3_postcss@8.4.16 + postcss-dir-pseudo-class: 6.0.5_postcss@8.4.16 + postcss-double-position-gradients: 3.1.2_postcss@8.4.16 + postcss-env-function: 4.0.6_postcss@8.4.16 + postcss-focus-visible: 6.0.4_postcss@8.4.16 + postcss-focus-within: 5.0.4_postcss@8.4.16 + postcss-font-variant: 5.0.0_postcss@8.4.16 + postcss-gap-properties: 3.0.5_postcss@8.4.16 + postcss-image-set-function: 4.0.7_postcss@8.4.16 + postcss-initial: 4.0.1_postcss@8.4.16 + postcss-lab-function: 4.2.1_postcss@8.4.16 + postcss-logical: 5.0.4_postcss@8.4.16 + postcss-media-minmax: 5.0.0_postcss@8.4.16 + postcss-nesting: 10.1.10_postcss@8.4.16 + postcss-opacity-percentage: 1.1.2 + postcss-overflow-shorthand: 3.0.4_postcss@8.4.16 + postcss-page-break: 3.0.4_postcss@8.4.16 + postcss-place: 7.0.5_postcss@8.4.16 + postcss-pseudo-class-any-link: 7.1.6_postcss@8.4.16 + postcss-replace-overflow-wrap: 4.0.0_postcss@8.4.16 + postcss-selector-not: 6.0.1_postcss@8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-preset-env/7.8.0_postcss@8.4.21: + resolution: {integrity: sha512-leqiqLOellpLKfbHkD06E04P6d9ZQ24mat6hu4NSqun7WG0UhspHR5Myiv/510qouCjoo4+YJtNOqg5xHaFnCA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + '@csstools/postcss-cascade-layers': 1.0.5_postcss@8.4.21 + '@csstools/postcss-color-function': 1.1.1_postcss@8.4.21 + '@csstools/postcss-font-format-keywords': 1.0.1_postcss@8.4.21 + '@csstools/postcss-hwb-function': 1.0.2_postcss@8.4.21 + '@csstools/postcss-ic-unit': 1.0.1_postcss@8.4.21 + '@csstools/postcss-is-pseudo-class': 2.0.7_postcss@8.4.21 + '@csstools/postcss-nested-calc': 1.0.0_postcss@8.4.21 + '@csstools/postcss-normalize-display-values': 1.0.1_postcss@8.4.21 + '@csstools/postcss-oklab-function': 1.1.1_postcss@8.4.21 + '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.21 + '@csstools/postcss-stepped-value-functions': 1.0.1_postcss@8.4.21 + '@csstools/postcss-text-decoration-shorthand': 1.0.0_postcss@8.4.21 + '@csstools/postcss-trigonometric-functions': 1.0.2_postcss@8.4.21 + '@csstools/postcss-unset-value': 1.0.2_postcss@8.4.21 + autoprefixer: 10.4.13_postcss@8.4.21 + browserslist: 4.21.4 + css-blank-pseudo: 3.0.3_postcss@8.4.21 + css-has-pseudo: 3.0.4_postcss@8.4.21 + css-prefers-color-scheme: 6.0.3_postcss@8.4.21 + cssdb: 7.0.1 + postcss: 8.4.21 + postcss-attribute-case-insensitive: 5.0.2_postcss@8.4.21 + postcss-clamp: 4.1.0_postcss@8.4.21 + postcss-color-functional-notation: 4.2.4_postcss@8.4.21 + postcss-color-hex-alpha: 8.0.4_postcss@8.4.21 + postcss-color-rebeccapurple: 7.1.1_postcss@8.4.21 + postcss-custom-media: 8.0.2_postcss@8.4.21 + postcss-custom-properties: 12.1.8_postcss@8.4.21 + postcss-custom-selectors: 6.0.3_postcss@8.4.21 + postcss-dir-pseudo-class: 6.0.5_postcss@8.4.21 + postcss-double-position-gradients: 3.1.2_postcss@8.4.21 + postcss-env-function: 4.0.6_postcss@8.4.21 + postcss-focus-visible: 6.0.4_postcss@8.4.21 + postcss-focus-within: 5.0.4_postcss@8.4.21 + postcss-font-variant: 5.0.0_postcss@8.4.21 + postcss-gap-properties: 3.0.5_postcss@8.4.21 + postcss-image-set-function: 4.0.7_postcss@8.4.21 + postcss-initial: 4.0.1_postcss@8.4.21 + postcss-lab-function: 4.2.1_postcss@8.4.21 + postcss-logical: 5.0.4_postcss@8.4.21 + postcss-media-minmax: 5.0.0_postcss@8.4.21 + postcss-nesting: 10.1.10_postcss@8.4.21 + postcss-opacity-percentage: 1.1.2 + postcss-overflow-shorthand: 3.0.4_postcss@8.4.21 + postcss-page-break: 3.0.4_postcss@8.4.21 + postcss-place: 7.0.5_postcss@8.4.21 + postcss-pseudo-class-any-link: 7.1.6_postcss@8.4.21 + postcss-replace-overflow-wrap: 4.0.0_postcss@8.4.21 + postcss-selector-not: 6.0.1_postcss@8.4.21 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-pseudo-class-any-link/7.1.6_postcss@8.4.16: + resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-pseudo-class-any-link/7.1.6_postcss@8.4.21: + resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-replace-overflow-wrap/4.0.0_postcss@8.4.16: + resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} + peerDependencies: + postcss: ^8.0.3 + dependencies: + postcss: 8.4.16 + dev: true + + /postcss-replace-overflow-wrap/4.0.0_postcss@8.4.21: + resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} + peerDependencies: + postcss: ^8.0.3 + dependencies: + postcss: 8.4.21 + dev: true + /postcss-resolve-nested-selector/0.1.1: resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} dev: true @@ -19924,6 +20301,26 @@ packages: postcss: 8.4.21 dev: true + /postcss-selector-not/6.0.1_postcss@8.4.16: + resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.11 + dev: true + + /postcss-selector-not/6.0.1_postcss@8.4.21: + resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.2 + dependencies: + postcss: 8.4.21 + postcss-selector-parser: 6.0.11 + dev: true + /postcss-selector-parser/6.0.11: resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} engines: {node: '>=4'} @@ -19965,6 +20362,15 @@ packages: source-map: 0.6.1 dev: true + /postcss/8.4.16: + resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.4 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + /postcss/8.4.21: resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} engines: {node: ^10 || ^12 || >=14} @@ -20057,9 +20463,9 @@ packages: engines: {node: '>= 0.8'} dev: true - /proc-log/3.0.0: - resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /proc-log/2.0.1: + resolution: {integrity: sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dev: true /process-nextick-args/2.0.1: @@ -20244,7 +20650,7 @@ packages: resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} engines: {node: '>=6'} - /puppeteer-core/19.7.2_typescript@4.9.5: + /puppeteer-core/19.7.2_typescript@4.8.4: resolution: {integrity: sha512-PvI+fXqgP0uGJxkyZcX51bnzjFA73MODZOAv0fSD35yR7tvbqwtMV3/Y+hxQ0AMMwzxkEebP6c7po/muqxJvmQ==} engines: {node: '>=14.1.0'} peerDependencies: @@ -20262,7 +20668,7 @@ packages: proxy-from-env: 1.1.0 rimraf: 3.0.2 tar-fs: 2.1.1 - typescript: 4.9.5 + typescript: 4.8.4 unbzip2-stream: 1.4.3 ws: 8.11.0 transitivePeerDependencies: @@ -20272,7 +20678,7 @@ packages: - utf-8-validate dev: false - /puppeteer/19.7.2_typescript@4.9.5: + /puppeteer/19.7.2_typescript@4.8.4: resolution: {integrity: sha512-4Lm7Qpe/LU95Svirei/jDLDvR5oMrl9BPGd7HMY5+Q28n+BhvKuW97gKkR+1LlI86bO8J3g8rG/Ll5kv9J1nlQ==} engines: {node: '>=14.1.0'} requiresBuild: true @@ -20281,7 +20687,7 @@ packages: https-proxy-agent: 5.0.1 progress: 2.0.3 proxy-from-env: 1.1.0 - puppeteer-core: 19.7.2_typescript@4.9.5 + puppeteer-core: 19.7.2_typescript@4.8.4 transitivePeerDependencies: - bufferutil - encoding @@ -20414,12 +20820,12 @@ packages: webpack: 5.75.0 dev: true - /react-docgen-typescript/2.2.2_typescript@4.9.5: + /react-docgen-typescript/2.2.2_typescript@4.6.4: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: typescript: '>= 4.3.x' dependencies: - typescript: 4.9.5 + typescript: 4.6.4 dev: true /react-docgen/5.4.3: @@ -20575,22 +20981,28 @@ packages: dependencies: loose-envify: 1.4.0 - /read-package-json-fast/3.0.2: - resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /read-cache/1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + dependencies: + pify: 2.3.0 + dev: true + + /read-package-json-fast/2.0.3: + resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==} + engines: {node: '>=10'} dependencies: - json-parse-even-better-errors: 3.0.0 - npm-normalize-package-bin: 3.0.0 + json-parse-even-better-errors: 2.3.1 + npm-normalize-package-bin: 1.0.1 dev: true - /read-package-json/6.0.0: - resolution: {integrity: sha512-b/9jxWJ8EwogJPpv99ma+QwtqB7FSl3+V6UXS7Aaay8/5VwMY50oIFooY1UKXMWpfNCM6T/PoGqa5GD1g9xf9w==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /read-package-json/5.0.1: + resolution: {integrity: sha512-MALHuNgYWdGW3gKzuNMuYtcSSZbGQm94fAp16xt8VsYTLBjUSc55bLMKe6gzpWue0Tfi6CBgwCSdDAqutGDhMg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: glob: 8.1.0 - json-parse-even-better-errors: 3.0.0 - normalize-package-data: 5.0.0 - npm-normalize-package-bin: 3.0.0 + json-parse-even-better-errors: 2.3.1 + normalize-package-data: 4.0.1 + npm-normalize-package-bin: 1.0.1 dev: true /read-pkg-up/1.0.1: @@ -20721,8 +21133,8 @@ packages: /reflect-metadata/0.1.13: resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==} - /regenerate-unicode-properties/10.1.0: - resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} + /regenerate-unicode-properties/10.0.1: + resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 @@ -20736,6 +21148,10 @@ packages: resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} dev: true + /regenerator-runtime/0.13.9: + resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} + dev: true + /regenerator-transform/0.15.0: resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} dependencies: @@ -20768,20 +21184,24 @@ packages: engines: {node: '>=8'} dev: true - /regexpu-core/5.3.1: - resolution: {integrity: sha512-nCOzW2V/X15XpLsK2rlgdwrysrBq+AauCn+omItIz4R1pIcmeot5zvjdmOBRLzEH/CkC6IxMJVmxDe3QcMuNVQ==} + /regexpu-core/5.1.0: + resolution: {integrity: sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==} engines: {node: '>=4'} dependencies: - '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.0 - regjsparser: 0.9.1 + regenerate-unicode-properties: 10.0.1 + regjsgen: 0.6.0 + regjsparser: 0.8.4 unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 + unicode-match-property-value-ecmascript: 2.0.0 + dev: true + + /regjsgen/0.6.0: + resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==} dev: true - /regjsparser/0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + /regjsparser/0.8.4: + resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==} hasBin: true dependencies: jsesc: 0.5.0 @@ -21157,6 +21577,22 @@ packages: rollup-pluginutils: 2.8.2 dev: true + /rollup-plugin-sourcemaps/0.6.3_metu4hjlfxtmjed5cy3s7lylvy: + resolution: {integrity: sha512-paFu+nT1xvuO1tPFYXGe+XnQvg4Hjqv/eIhG8i5EspfYYPBKL57X7iVbfv55aNVASg3dzWvES9dmWsL2KhfByw==} + engines: {node: '>=10.0.0'} + peerDependencies: + '@types/node': '>=10.0.0' + rollup: '>=0.31.2' + peerDependenciesMeta: + '@types/node': + optional: true + dependencies: + '@rollup/pluginutils': 3.1.0_rollup@2.75.6 + '@types/node': 18.14.0 + rollup: 2.75.6 + source-map-resolve: 0.6.0 + dev: true + /rollup-plugin-visualizer/5.9.0: resolution: {integrity: sha512-bbDOv47+Bw4C/cgs0czZqfm8L82xOZssk4ayZjG40y9zbXclNk7YikrZTDao6p7+HDiGxrN0b65SgZiVm9k1Cg==} engines: {node: '>=14'} @@ -21179,9 +21615,9 @@ packages: estree-walker: 0.6.1 dev: true - /rollup/3.17.2: - resolution: {integrity: sha512-qMNZdlQPCkWodrAZ3qnJtvCAl4vpQ8q77uEujVCCbC/6CLB7Lcmvjq7HyiOSnf4fxTT9XgsE36oLHJBH49xjqA==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} + /rollup/2.75.6: + resolution: {integrity: sha512-OEf0TgpC9vU6WGROJIk1JA3LR5vk/yvqlzxqdrE2CzzXnqKXNzbAwlWUXis8RS3ZPe7LAq+YUxsRa0l3r27MLA==} + engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 @@ -21298,12 +21734,12 @@ packages: semver: 7.3.7 dev: true - /sass-loader/13.2.0_sass@1.57.1+webpack@5.75.0: - resolution: {integrity: sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==} + /sass-loader/13.0.2_sass@1.54.4+webpack@5.74.0: + resolution: {integrity: sha512-BbiqbVmbfJaWVeOOAu2o7DhYWtcNmTfvroVgFXa6k2hHheMxNAeDHLNoDy/Q5aoaVlz0LH+MbMktKwm9vN/j8Q==} engines: {node: '>= 14.15.0'} peerDependencies: fibers: '>= 3.1.0' - node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 sass: ^1.3.0 sass-embedded: '*' webpack: ^5.0.0 @@ -21319,12 +21755,12 @@ packages: dependencies: klona: 2.0.5 neo-async: 2.6.2 - sass: 1.57.1 - webpack: 5.75.0_esbuild@0.16.17 + sass: 1.54.4 + webpack: 5.74.0_esbuild@0.15.5 dev: true - /sass/1.57.1: - resolution: {integrity: sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==} + /sass/1.54.4: + resolution: {integrity: sha512-3tmF16yvnBwtlPrNBHw/H907j8MlOX8aTBnlNX1yrKx24RKcJGPyLhFUwkoKBKesR3unP93/2z14Ll8NicwQUA==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -21414,9 +21850,9 @@ packages: engines: {node: '>= 12.13.0'} dependencies: '@types/json-schema': 7.0.11 - ajv: 8.12.0 + ajv: 8.11.0 ajv-formats: 2.1.1 - ajv-keywords: 5.1.0_ajv@8.12.0 + ajv-keywords: 5.1.0_ajv@8.11.0 dev: true /secure-compare/3.0.1: @@ -21437,8 +21873,8 @@ packages: xml2js: 0.4.23 dev: true - /selfsigned/2.1.1: - resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==} + /selfsigned/2.0.1: + resolution: {integrity: sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==} engines: {node: '>=10'} dependencies: node-forge: 1.3.1 @@ -21460,6 +21896,11 @@ packages: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true + /semver/7.0.0: + resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} + hasBin: true + dev: true + /semver/7.3.7: resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} engines: {node: '>=10'} @@ -21476,7 +21917,7 @@ packages: lru-cache: 6.0.0 /send/0.18.0: - resolution: {integrity: sha1-ZwFnzGVLBfWqSnZ/kRO7NxvHBr4=} + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} engines: {node: '>= 0.8.0'} dependencies: debug: 2.6.9 @@ -21541,7 +21982,7 @@ packages: dev: true /serve-static/1.15.0: - resolution: {integrity: sha1-+q7wjP/goaYvYMrQxOUTz/CslUA=} + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} engines: {node: '>= 0.8.0'} dependencies: encodeurl: 1.0.2 @@ -21571,11 +22012,11 @@ packages: dev: true /setprototypeof/1.1.0: - resolution: {integrity: sha1-0L2FU2iHtv58DYGMuWLZ2RxU5lY=} + resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} dev: true /setprototypeof/1.2.0: - resolution: {integrity: sha1-ZsmiSnP5/CjL5msJ/tPTPcrxtCQ=} + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} dev: true /sha.js/2.4.11: @@ -21794,8 +22235,8 @@ packages: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} - /source-map-loader/4.0.1_webpack@5.75.0: - resolution: {integrity: sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==} + /source-map-loader/4.0.0_webpack@5.74.0: + resolution: {integrity: sha512-i3KVgM3+QPAHNbGavK+VBq03YoJl24m9JWNbLgsjTj8aJzXG9M61bantBTNBt7CNwY2FYf+RJRYJ3pzalKjIrw==} engines: {node: '>= 14.15.0'} peerDependencies: webpack: ^5.72.1 @@ -21803,7 +22244,7 @@ packages: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: 5.75.0_esbuild@0.16.17 + webpack: 5.74.0_esbuild@0.15.5 dev: true /source-map-resolve/0.5.3: @@ -21817,6 +22258,14 @@ packages: urix: 0.1.0 dev: true + /source-map-resolve/0.6.0: + resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + dependencies: + atob: 2.1.2 + decode-uri-component: 0.2.0 + dev: true + /source-map-support/0.4.18: resolution: {integrity: sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==} dependencies: @@ -21966,13 +22415,6 @@ packages: tweetnacl: 0.14.5 dev: true - /ssri/10.0.1: - resolution: {integrity: sha512-WVy6di9DlPOeBWEjMScpNipeSX2jIZBGEn5Uuo8Q7aIuFEuDX0pw8RxcOjlD1TWP4obi24ki7m/13+nFpcbXrw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - minipass: 4.0.3 - dev: true - /ssri/6.0.2: resolution: {integrity: sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==} dependencies: @@ -22120,7 +22562,7 @@ packages: /stream-transform/2.1.3: resolution: {integrity: sha512-9GHUiM5hMiCi6Y03jD2ARC1ettBXkQBoQAe7nJsPknnI0ow10aXjTnew8QtYQmLjzn974BnmWEAJgCY6ZP1DeQ==} dependencies: - mixme: 0.5.5 + mixme: 0.5.4 dev: true /streamroller/3.1.1: @@ -22458,6 +22900,33 @@ packages: - supports-color dev: true + /stylus-loader/7.0.0_rgwcw63jhyplbyg2jpw7ajyoqm: + resolution: {integrity: sha512-WTbtLrNfOfLgzTaR9Lj/BPhQroKk/LC1hfTXSUbrxmxgfUo3Y3LpmKRVA2R1XbjvTAvOfaian9vOyfv1z99E+A==} + engines: {node: '>= 14.15.0'} + peerDependencies: + stylus: '>=0.52.4' + webpack: ^5.0.0 + dependencies: + fast-glob: 3.2.12 + klona: 2.0.5 + normalize-path: 3.0.0 + stylus: 0.59.0 + webpack: 5.74.0_esbuild@0.15.5 + dev: true + + /stylus/0.59.0: + resolution: {integrity: sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==} + hasBin: true + dependencies: + '@adobe/css-tools': 4.0.1 + debug: 4.3.4 + glob: 7.2.3 + sax: 1.2.4 + source-map: 0.7.4 + transitivePeerDependencies: + - supports-color + dev: true + /supports-color/2.0.0: resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} engines: {node: '>=0.8.0'} @@ -22550,7 +23019,7 @@ packages: resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} engines: {node: '>=10.0.0'} dependencies: - ajv: 8.12.0 + ajv: 8.11.0 lodash.truncate: 4.4.2 slice-ansi: 4.0.0 string-width: 4.2.3 @@ -22656,14 +23125,14 @@ packages: schema-utils: 3.1.1 serialize-javascript: 5.0.1 source-map: 0.6.1 - terser: 5.16.1 + terser: 5.14.2 webpack: 4.46.0 webpack-sources: 1.4.3 transitivePeerDependencies: - bluebird dev: true - /terser-webpack-plugin/5.3.3_htvmhiqynazf46fjrszipnqp7a: + /terser-webpack-plugin/5.3.3_opeswuojjimgier3zsvonpntbm: resolution: {integrity: sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -22679,13 +23148,13 @@ packages: uglify-js: optional: true dependencies: - '@jridgewell/trace-mapping': 0.3.15 - esbuild: 0.16.17 + '@jridgewell/trace-mapping': 0.3.17 + esbuild: 0.15.5 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - terser: 5.16.1 - webpack: 5.75.0_esbuild@0.16.17 + terser: 5.14.2 + webpack: 5.74.0_esbuild@0.15.5 dev: true /terser-webpack-plugin/5.3.3_webpack@5.75.0: @@ -22704,11 +23173,11 @@ packages: uglify-js: optional: true dependencies: - '@jridgewell/trace-mapping': 0.3.15 + '@jridgewell/trace-mapping': 0.3.17 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - terser: 5.16.1 + terser: 5.14.2 webpack: 5.75.0 dev: true @@ -22723,8 +23192,8 @@ packages: source-map-support: 0.5.21 dev: true - /terser/5.16.1: - resolution: {integrity: sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==} + /terser/5.14.2: + resolution: {integrity: sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==} engines: {node: '>=10'} hasBin: true dependencies: @@ -22882,7 +23351,7 @@ packages: dev: true /toidentifier/1.0.1: - resolution: {integrity: sha1-O+NDIaiKgg7RvYDfqjPkefu43TU=} + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} dev: true @@ -22955,7 +23424,7 @@ packages: engines: {node: '>=6.10'} dev: true - /ts-jest/26.5.6_xuote2qreek47x2di7kesslrai: + /ts-jest/26.5.6_we2p4sglclq5bmc4orivof3sv4: resolution: {integrity: sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA==} engines: {node: '>= 10'} hasBin: true @@ -22973,11 +23442,11 @@ packages: make-error: 1.3.6 mkdirp: 1.0.4 semver: 7.3.8 - typescript: 4.9.5 + typescript: 4.8.4 yargs-parser: 20.2.9 dev: true - /ts-node/10.9.1_tncu2ai53lzgmizdedur7lbibe: + /ts-node/10.9.1_qcqsnqvvdpjatba7u2dizzf44y: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -23003,12 +23472,12 @@ packages: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.9.5 + typescript: 4.8.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true - /ts-pnp/1.2.0_typescript@4.9.5: + /ts-pnp/1.2.0_typescript@4.6.4: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -23017,7 +23486,7 @@ packages: typescript: optional: true dependencies: - typescript: 4.9.5 + typescript: 4.6.4 dev: true /tsconfig-paths/3.14.1: @@ -23036,21 +23505,21 @@ packages: resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==} dev: true - /tslib/2.4.1: - resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} + /tslib/2.4.0: + resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} dev: true /tslib/2.5.0: resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - /tsutils/3.0.0_typescript@4.9.5: + /tsutils/3.0.0_typescript@4.8.4: resolution: {integrity: sha512-LjHBWR0vWAUHWdIAoTjoqi56Kz+FDKBgVEuL+gVPG/Pv7QW5IdaDDeK9Txlr6U0Cmckp5EgCIq1T25qe3J6hyw==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.1.0-dev' dependencies: tslib: 1.14.1 - typescript: 4.9.5 + typescript: 4.8.4 dev: true /tsutils/3.21.0_typescript@4.8.4: @@ -23063,16 +23532,6 @@ packages: typescript: 4.8.4 dev: true - /tsutils/3.21.0_typescript@4.9.5: - 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.9.5 - dev: true - /tty-browserify/0.0.0: resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==} dev: true @@ -23084,11 +23543,11 @@ packages: dependencies: chalk: 4.1.2 csv: 5.5.3 - kleur: 4.1.5 + kleur: 4.1.4 smartwrap: 2.0.2 strip-ansi: 6.0.1 wcwidth: 1.0.1 - yargs: 17.7.0 + yargs: 17.5.1 dev: true /tunnel-agent/0.6.0: @@ -23194,14 +23653,14 @@ packages: hasBin: true dev: true - /typescript/4.8.4: - resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==} + /typescript/4.6.4: + resolution: {integrity: sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==} engines: {node: '>=4.2.0'} hasBin: true dev: true - /typescript/4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + /typescript/4.8.4: + resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==} engines: {node: '>=4.2.0'} hasBin: true @@ -23283,8 +23742,8 @@ packages: unicode-property-aliases-ecmascript: 2.0.0 dev: true - /unicode-match-property-value-ecmascript/2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + /unicode-match-property-value-ecmascript/2.0.0: + resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==} engines: {node: '>=4'} dev: true @@ -23340,26 +23799,12 @@ packages: unique-slug: 2.0.2 dev: true - /unique-filename/3.0.0: - resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - unique-slug: 4.0.0 - dev: true - /unique-slug/2.0.2: resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} dependencies: imurmurhash: 0.1.4 dev: true - /unique-slug/4.0.0: - resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - dependencies: - imurmurhash: 0.1.4 - dev: true - /unique-stream/2.3.1: resolution: {integrity: sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==} dependencies: @@ -23503,8 +23948,8 @@ packages: engines: {node: '>=4'} dev: true - /update-browserslist-db/1.0.10_browserslist@4.21.4: - resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} + /update-browserslist-db/1.0.9_browserslist@4.21.4: + resolution: {integrity: sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -23513,16 +23958,6 @@ packages: escalade: 3.1.1 picocolors: 1.0.0 - /update-browserslist-db/1.0.10_browserslist@4.21.5: - resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - dependencies: - browserslist: 4.21.5 - escalade: 3.1.1 - picocolors: 1.0.0 - /uri-js/4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: @@ -23604,7 +24039,7 @@ packages: dev: true /utils-merge/1.0.1: - resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=} + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} dev: true @@ -23683,9 +24118,9 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /validate-npm-package-name/5.0.0: - resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + /validate-npm-package-name/4.0.0: + resolution: {integrity: sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: builtins: 5.0.1 dev: true @@ -23701,7 +24136,7 @@ packages: dev: true /verror/1.10.0: - resolution: {integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=} + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} engines: {'0': node >=0.6.0} dependencies: assert-plus: 1.0.0 @@ -23897,7 +24332,7 @@ packages: /wcwidth/1.0.1: resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: - defaults: 1.0.4 + defaults: 1.0.3 /web-namespaces/1.1.4: resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==} @@ -23960,36 +24395,22 @@ packages: webpack-log: 2.0.0 dev: true - /webpack-dev-middleware/5.3.3_webpack@5.75.0: + /webpack-dev-middleware/5.3.3_webpack@5.74.0: resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 dependencies: colorette: 2.0.19 - memfs: 3.4.13 - mime-types: 2.1.35 - range-parser: 1.2.1 - schema-utils: 4.0.0 - webpack: 5.75.0_esbuild@0.16.17 - dev: true - - /webpack-dev-middleware/6.0.1_webpack@5.75.0: - resolution: {integrity: sha512-PZPZ6jFinmqVPJZbisfggDiC+2EeGZ1ZByyMP5sOFJcPPWSexalISz+cvm+j+oYPT7FIJyxT76esjnw9DhE5sw==} - engines: {node: '>= 14.15.0'} - peerDependencies: - webpack: ^5.0.0 - dependencies: - colorette: 2.0.19 - memfs: 3.4.13 + memfs: 3.4.4 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.75.0_esbuild@0.16.17 + webpack: 5.74.0_esbuild@0.15.5 dev: true - /webpack-dev-server/4.11.1_webpack@5.75.0: - resolution: {integrity: sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==} + /webpack-dev-server/4.11.0_webpack@5.74.0: + resolution: {integrity: sha512-L5S4Q2zT57SK7tazgzjMiSMBdsw+rGYIX27MgPgx7LDhWO0lViPrHKoLS7jo5In06PWYAhlYu3PbyoC6yAThbw==} engines: {node: '>= 12.13.0'} hasBin: true peerDependencies: @@ -24022,12 +24443,12 @@ packages: p-retry: 4.6.2 rimraf: 3.0.2 schema-utils: 4.0.0 - selfsigned: 2.1.1 + selfsigned: 2.0.1 serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.75.0_esbuild@0.16.17 - webpack-dev-middleware: 5.3.3_webpack@5.75.0 + webpack: 5.74.0_esbuild@0.15.5 + webpack-dev-middleware: 5.3.3_webpack@5.74.0 ws: 8.12.0 transitivePeerDependencies: - bufferutil @@ -24082,7 +24503,7 @@ packages: engines: {node: '>=10.13.0'} dev: true - /webpack-subresource-integrity/5.1.0_webpack@5.75.0: + /webpack-subresource-integrity/5.1.0_webpack@5.74.0: resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==} engines: {node: '>= 12'} peerDependencies: @@ -24093,7 +24514,7 @@ packages: optional: true dependencies: typed-assert: 1.0.9 - webpack: 5.75.0_esbuild@0.16.17 + webpack: 5.74.0_esbuild@0.15.5 dev: true /webpack-virtual-modules/0.2.2: @@ -24144,8 +24565,8 @@ packages: - supports-color dev: true - /webpack/5.75.0: - resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} + /webpack/5.74.0_esbuild@0.15.5: + resolution: {integrity: sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -24175,7 +24596,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.3_webpack@5.75.0 + terser-webpack-plugin: 5.3.3_opeswuojjimgier3zsvonpntbm watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -24184,7 +24605,7 @@ packages: - uglify-js dev: true - /webpack/5.75.0_esbuild@0.16.17: + /webpack/5.75.0: resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -24215,7 +24636,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.3_htvmhiqynazf46fjrszipnqp7a + terser-webpack-plugin: 5.3.3_webpack@5.75.0 watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -24332,14 +24753,6 @@ packages: isexe: 2.0.0 dev: true - /which/3.0.0: - resolution: {integrity: sha512-nla//68K9NU6yRiwDY/Q8aU6siKlSs64aEC7+IV56QoAuyQT2ovsJcgGYGyqMOmI/CGN1BOR6mM5EN0FBO+zyQ==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} - hasBin: true - dependencies: - isexe: 2.0.0 - dev: true - /wide-align/1.1.5: resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} dependencies: @@ -24570,11 +24983,6 @@ packages: /yargs-parser/21.0.1: resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} engines: {node: '>=12'} - dev: true - - /yargs-parser/21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} /yargs-parser/5.0.1: resolution: {integrity: sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==} @@ -24624,32 +25032,6 @@ packages: string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.0.1 - dev: true - - /yargs/17.6.2: - resolution: {integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==} - engines: {node: '>=12'} - dependencies: - cliui: 8.0.1 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 21.1.1 - - /yargs/17.7.0: - resolution: {integrity: sha512-dwqOPg5trmrre9+v8SUo2q/hAwyKoVfu8OC1xPHKJGNdxAvPl4sKxL4vBnh3bQz/ZvvGAFeA5H3ou2kcOY8sQQ==} - engines: {node: '>=12'} - dependencies: - cliui: 8.0.1 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.8 - yargs-parser: 21.1.1 - dev: true /yargs/7.1.2: resolution: {integrity: sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==} diff --git a/renovate.json b/renovate.json index bf39896746..04039cd0c8 100644 --- a/renovate.json +++ b/renovate.json @@ -15,7 +15,7 @@ }, { "matchPackagePatterns": ["*"], - "excludePackageNames": ["typescript"], + "excludePackageNames": ["bootstrap", "typescript"], "matchUpdateTypes": ["minor", "patch"], "groupName": "all non-major dependencies", "groupSlug": "all-minor-patch"