diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index ec3c02d81..1ba9ec82a 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: 20.15.1 # This builds the project for projects/demo-maps and outputs the result to the 'dist' folder. # https://github.com/angular/angular-cli/issues/9016#issuecomment-526825531 diff --git a/.github/workflows/package-main-release.yml b/.github/workflows/package-main-release.yml index 903efc39d..3367d45ce 100644 --- a/.github/workflows/package-main-release.yml +++ b/.github/workflows/package-main-release.yml @@ -68,7 +68,7 @@ jobs: git checkout ${{ needs.checkTitelTag.outputs.VERSION_TAG }} - uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: 20.15.1 - run: rm -f .npmrc - uses: ./.github/actions/check-tag-on-npm with: @@ -88,7 +88,7 @@ jobs: git checkout ${{ needs.checkTitelTag.outputs.VERSION_TAG }} - uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: 20.15.1 - name: build run: | npm ci @@ -146,7 +146,7 @@ jobs: path: dist - uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: 20.15.1 registry-url: https://npm.pkg.github.com/ scope: "@dlr-eoc" - run: npm ci @@ -177,7 +177,7 @@ jobs: path: dist - uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: 20.15.1 registry-url: https://registry.npmjs.org/ scope: "@dlr-eoc" - run: npm ci diff --git a/.github/workflows/package-pre-release.yml b/.github/workflows/package-pre-release.yml index ac353502f..b97bac594 100644 --- a/.github/workflows/package-pre-release.yml +++ b/.github/workflows/package-pre-release.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: 20.15.1 - run: rm -f .npmrc - uses: ./.github/actions/check-tag-on-npm with: @@ -41,7 +41,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: 20.15.1 - uses: ./.github/actions/test - name: build run: | @@ -65,7 +65,7 @@ jobs: path: dist - uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: 20.15.1 registry-url: https://npm.pkg.github.com/ scope: "@dlr-eoc" - run: npm ci @@ -96,7 +96,7 @@ jobs: path: dist - uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: 20.15.1 registry-url: https://registry.npmjs.org/ scope: "@dlr-eoc" - run: npm ci diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index d9f38757d..3db1ca686 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -19,6 +19,6 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20.10.0 + node-version: 20.15.1 - uses: ./.github/actions/test - uses: ./.github/actions/build diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b141d4b0..0c6df5bf4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ -# [13.X.X](https://github.com/dlr-eoc/ukis-frontend-libraries/tree/v13.X.X) (2024-07-10) (map-cesium) +# [x.y.z]() (YYYY-mm-dd) (map-cesium, angular update) + +### Breaking Changes + - Update angular from `^16.2.3` to `^17.3.11` [Issue #232](https://github.com/dlr-eoc/ukis-frontend-libraries/issues/232) + - Upadte @clr/angular from `^15.12.0` to `^17.2.1` [Issue #232](https://github.com/dlr-eoc/ukis-frontend-libraries/issues/232) + - Upadte @clr/ui from `^15.12.0` to `^17.2.1` [Issue #232](https://github.com/dlr-eoc/ukis-frontend-libraries/issues/232) + Clients now have to set the clarity theme as described in their documentation ([Step 3: Set the Theme](https://clarity.design/pages/developing)) + - Remove `@clr/icons` and replace it with the icons from `@cds/core`. + Now each icon that is used must be imported into the component where it is in the template. See [clarity documentation icons](https://clarity.design/documentation/icons). Use `import '@cds/core/icon/register.js';` in a main file of the application so that it is used only once. + - Set node and npm compatibility for angular 17 (node: 20.15.1 and npm: 10.7.0) ### Features * **@dlr-eoc/map-cesium:** diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 538cc0716..cabce1ab8 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -78,7 +78,8 @@ Example: "@angular/core": "
", "@angular/cdk": "
", "@clr/angular": "
", - "@clr/icons": "
", + "@cds/core": "
", + "@clr/ui": "
", "rxjs": "
", "md5": "
" }, @@ -173,7 +174,7 @@ Whereby after semantic versioning the following order exists: 7.2.0 < 7.3.0-alph To create a new prerelease, you only have to create a new version from your current branch - `npm version prerelease --preid=next -m "prerelease message" --workspace=projects --include-workspace-root` (premajor | preminor | prepatch). Append `--no-git-tag-version` to `npm version ...` if you want to skip creating a tag. -- run `node scripts/library/index.js --set-source` to sync all versions and run npm install to regenerate `package-lock.json` (If something failed during the npm version, remove the local tag and create a new one. `git tag -d && git tag -a <(v)version> -m "`). +- run `node scripts/library/index.js --set-source` to sync all versions and run `npm i --workspaces --include-workspace-root` to regenerate `package-lock.json` (If something failed during the npm version, remove the local tag and create a new one. `git tag -d && git tag -a <(v)version> -m "`). And then `git push origin --tags` which will trigger the [Pre Release](.github/workflows/pre-release-package.yml) workflow. **Before doing this you should [locally test and build](#further-you-can-test-and-build-locally)!!!** to prevent failed workflows but created tags. diff --git a/TUTORIALS.md b/TUTORIALS.md index 1244e0098..42acd1a74 100644 --- a/TUTORIALS.md +++ b/TUTORIALS.md @@ -27,19 +27,9 @@ cd project-tutorial-map - At the moment Clarity does not support angular schematics ([github ng add issue](https://github.com/vmware-clarity/ng-clarity/issues/120)). Therefore Clarity has to be installed manually. For the versions also see ukis-frontend-libraries [package.json](package.json) - Run ``` -npm install @cds/core@ @clr/angular@ @clr/ui@ @clr/icons@ -``` -- Add Clarity styles and scripts in the angular.json: -``` - "styles": [ - "node_modules/@clr/ui/clr-ui.min.css", - "node_modules/@clr/icons/clr-icons.min.css" - ... any other styles - ], - "scripts": [ - "node_modules/@clr/icons/clr-icons.min.js" - ] +npm install @cds/core@ @clr/angular@ @clr/ui@ ``` + - Add the Clarity module and icons inside the app.module.ts: ``` import { NgModule } from "@angular/core"; import { BrowserModule } from "@angular/platform-browser"; @@ -63,6 +53,11 @@ npm install @cds/core@ @clr/angular@ @clr/ui@ @clr/ic }) export class AppModule { } ``` + +- Set Clarity Theme (index.html) +``` + +``` - For more information see [Adding Clarity to an Angular project](https://clarity.design/documentation/get-started#seedProjectAngular) @@ -191,7 +186,7 @@ More information about this library can be found [in the layer-control library f - + Overlays @@ -200,7 +195,7 @@ More information about this library can be found [in the layer-control library f - + Layers @@ -208,7 +203,7 @@ More information about this library can be found [in the layer-control library f - + Baselayers diff --git a/angular.json b/angular.json index eba495605..a72f94361 100644 --- a/angular.json +++ b/angular.json @@ -66,7 +66,7 @@ "prefix": "ukis", "architect": { "build": { - "builder": "./projects/core-ui/core-ui-packagr:build", + "builder": "@angular-devkit/build-angular:ng-packagr", "options": { "tsConfig": "projects/core-ui/tsconfig.lib.json", "project": "projects/core-ui/ng-package.json" @@ -367,14 +367,8 @@ "styles": [ "node_modules/@fontsource/metropolis/all.css", "node_modules/@fontsource/noto-sans/index.css", - "node_modules/@clr/icons/clr-icons.min.css", - "node_modules/@clr/ui/clr-ui.min.css", "projects/demo-maps/src/styles.scss" ], - "scripts": [ - "node_modules/@webcomponents/custom-elements/custom-elements.min.js", - "node_modules/@clr/icons/clr-icons.min.js" - ], "vendorChunk": true, "extractLicenses": false, "buildOptimizer": false, @@ -426,18 +420,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo-maps:build" + "buildTarget": "demo-maps:build" }, "configurations": { "production": { - "browserTarget": "demo-maps:build:production" + "buildTarget": "demo-maps:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo-maps:build" + "buildTarget": "demo-maps:build" } }, "test": { @@ -505,14 +499,8 @@ } ], "styles": [ - "node_modules/@clr/icons/clr-icons.min.css", - "node_modules/@clr/ui/clr-ui.min.css", "projects/demo-auth/src/styles.scss" ], - "scripts": [ - "node_modules/@webcomponents/custom-elements/custom-elements.min.js", - "node_modules/@clr/icons/clr-icons.min.js" - ], "vendorChunk": true, "extractLicenses": false, "buildOptimizer": false, @@ -554,18 +542,18 @@ "serve": { "builder": "@angular-devkit/build-angular:dev-server", "options": { - "browserTarget": "demo-auth:build" + "buildTarget": "demo-auth:build" }, "configurations": { "production": { - "browserTarget": "demo-auth:build:production" + "buildTarget": "demo-auth:build:production" } } }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "demo-auth:build" + "buildTarget": "demo-auth:build" } }, "test": { diff --git a/package-lock.json b/package-lock.json index c62ccc2f8..37b247788 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ukis-frontend-libraries", - "version": "13.0.0", + "version": "14.0.0-next.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ukis-frontend-libraries", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "workspaces": [ "scripts/library", @@ -33,69 +33,67 @@ "projects/map-maplibre" ], "dependencies": { - "@angular-devkit/core": "^16.2.1", - "@angular-devkit/schematics": "^16.2.1", - "@angular/animations": "^16.2.3", - "@angular/common": "^16.2.3", - "@angular/compiler": "^16.2.3", - "@angular/core": "^16.2.3", - "@angular/forms": "^16.2.3", - "@angular/platform-browser": "^16.2.3", - "@angular/platform-browser-dynamic": "^16.2.3", - "@angular/router": "^16.2.3", - "@cds/core": "^6.6.2", - "@clr/angular": "^15.12.0", - "@clr/icons": "^13.0.2", - "@clr/ui": "^15.12.0", + "@angular-devkit/core": "^17.3.8", + "@angular-devkit/schematics": "^17.3.8", + "@angular/animations": "^17.3.11", + "@angular/common": "^17.3.11", + "@angular/compiler": "^17.3.11", + "@angular/core": "^17.3.11", + "@angular/forms": "^17.3.11", + "@angular/platform-browser": "^17.3.11", + "@angular/platform-browser-dynamic": "^17.3.11", + "@angular/router": "^17.3.11", + "@cds/core": "^6.12.0", + "@clr/angular": "^17.2.1", + "@clr/ui": "^17.2.1", "@fontsource/metropolis": "^4.5.3", "@fontsource/noto-sans": "^4.5.11", "@michaellangbein/jsonix": "3.0.1-SNAPSHOT-3", - "@schematics/angular": "^16.2.1", + "@schematics/angular": "^17.3.8", "@webcomponents/webcomponentsjs": "^2.5.0", - "delaunator": "^5.0.0", "luxon": "^2.5.0", "ogc-schemas": "^2.6.1", "ol": "^v9.2.4", - "proj4": "^2.9.0", + "proj4": "^2.11.0", "rxjs": "~7.8.0", - "tslib": "^2.4.0", + "tslib": "^2.6.3", "w3c-schemas": "^1.4.0", "xmlserializer": "^0.6.1", - "zone.js": "~0.13.0" + "zone.js": "~0.14.7" }, "devDependencies": { - "@angular-devkit/architect": "^0.1602.1", - "@angular-devkit/build-angular": "^16.2.1", - "@angular/cli": "^16.2.1", - "@angular/compiler-cli": "^16.2.3", - "@angular/language-service": "^16.2.3", - "@compodoc/compodoc": "^1.1.21", + "@angular-devkit/architect": "^0.1703.8", + "@angular-devkit/build-angular": "^17.3.8", + "@angular/cli": "^17.3.8", + "@angular/compiler-cli": "^17.3.11", + "@angular/language-service": "^17.3.11", + "@compodoc/compodoc": "1.1.24", "@types/geojson": "^7946.0.10", "@types/jasmine": "^4.3.5", "@types/jasminewd2": "^2.0.10", - "@types/node": "^20.10.1", + "@types/node": "^20.14.10", "@types/offscreencanvas": "^2019.7.0", "codelyzer": "^6.0.2", "jasmine": "^4.6.0", - "jasmine-core": "^4.6.0", + "jasmine-core": "^4.6.1", "jasmine-spec-reporter": "^7.0.0", - "jsonc-parser": "^3.1.0", - "karma": "^6.4.0", + "jsonc-parser": "^3.3.1", + "karma": "^6.4.3", "karma-chrome-launcher": "^3.2.0", "karma-coverage": "^2.2.0", "karma-jasmine": "^5.1.0", "karma-jasmine-html-reporter": "^2.1.0", "karma-junit-reporter": "^2.0.1", - "ng-packagr": "^16.2.2", + "ng-packagr": "^17.3.0", "path-browserify": "^1.0.1", "protractor": "^7.0.0", "ts-node": "^8.3.0", "tslint": "^6.1.0", - "typescript": "^5.1.3" + "typescript": "^5.4.5" }, "engines": { - "node": ">= 18.13.0", - "npm": ">= 8.19.3" + "node": ">= 20.15.1", + "npm": ">= 10.7.0" } }, "node_modules/@aduh95/viz.js": { @@ -104,120 +102,121 @@ "license": "MIT" }, "node_modules/@ampproject/remapping": { - "version": "2.2.1", + "version": "2.3.0", "dev": true, "license": "Apache-2.0", "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@angular-devkit/architect": { - "version": "0.1602.10", + "version": "0.1703.8", "license": "MIT", "dependencies": { - "@angular-devkit/core": "16.2.10", + "@angular-devkit/core": "17.3.8", "rxjs": "7.8.1" }, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@angular-devkit/build-angular": { - "version": "16.2.10", + "version": "17.3.8", "dev": true, "license": "MIT", "dependencies": { - "@ampproject/remapping": "2.2.1", - "@angular-devkit/architect": "0.1602.10", - "@angular-devkit/build-webpack": "0.1602.10", - "@angular-devkit/core": "16.2.10", - "@babel/core": "7.22.9", - "@babel/generator": "7.22.9", + "@ampproject/remapping": "2.3.0", + "@angular-devkit/architect": "0.1703.8", + "@angular-devkit/build-webpack": "0.1703.8", + "@angular-devkit/core": "17.3.8", + "@babel/core": "7.24.0", + "@babel/generator": "7.23.6", "@babel/helper-annotate-as-pure": "7.22.5", "@babel/helper-split-export-declaration": "7.22.6", - "@babel/plugin-proposal-async-generator-functions": "7.20.7", - "@babel/plugin-transform-async-to-generator": "7.22.5", - "@babel/plugin-transform-runtime": "7.22.9", - "@babel/preset-env": "7.22.9", - "@babel/runtime": "7.22.6", - "@babel/template": "7.22.5", + "@babel/plugin-transform-async-generator-functions": "7.23.9", + "@babel/plugin-transform-async-to-generator": "7.23.3", + "@babel/plugin-transform-runtime": "7.24.0", + "@babel/preset-env": "7.24.0", + "@babel/runtime": "7.24.0", "@discoveryjs/json-ext": "0.5.7", - "@ngtools/webpack": "16.2.10", - "@vitejs/plugin-basic-ssl": "1.0.1", + "@ngtools/webpack": "17.3.8", + "@vitejs/plugin-basic-ssl": "1.1.0", "ansi-colors": "4.1.3", - "autoprefixer": "10.4.14", + "autoprefixer": "10.4.18", "babel-loader": "9.1.3", "babel-plugin-istanbul": "6.1.1", "browserslist": "^4.21.5", - "chokidar": "3.5.3", "copy-webpack-plugin": "11.0.0", - "critters": "0.0.20", - "css-loader": "6.8.1", - "esbuild-wasm": "0.18.17", - "fast-glob": "3.3.1", - "guess-parser": "0.4.22", - "https-proxy-agent": "5.0.1", - "inquirer": "8.2.4", - "jsonc-parser": "3.2.0", + "critters": "0.0.22", + "css-loader": "6.10.0", + "esbuild-wasm": "0.20.1", + "fast-glob": "3.3.2", + "http-proxy-middleware": "2.0.6", + "https-proxy-agent": "7.0.4", + "inquirer": "9.2.15", + "jsonc-parser": "3.2.1", "karma-source-map-support": "1.4.0", - "less": "4.1.3", + "less": "4.2.0", "less-loader": "11.1.0", "license-webpack-plugin": "4.0.2", "loader-utils": "3.2.1", - "magic-string": "0.30.1", - "mini-css-extract-plugin": "2.7.6", - "mrmime": "1.0.1", + "magic-string": "0.30.8", + "mini-css-extract-plugin": "2.8.1", + "mrmime": "2.0.0", "open": "8.4.2", "ora": "5.4.1", "parse5-html-rewriting-stream": "7.0.0", - "picomatch": "2.3.1", - "piscina": "4.0.0", - "postcss": "8.4.31", - "postcss-loader": "7.3.3", + "picomatch": "4.0.1", + "piscina": "4.4.0", + "postcss": "8.4.35", + "postcss-loader": "8.1.1", "resolve-url-loader": "5.0.0", "rxjs": "7.8.1", - "sass": "1.64.1", - "sass-loader": "13.3.2", - "semver": "7.5.4", - "source-map-loader": "4.0.1", + "sass": "1.71.1", + "sass-loader": "14.1.1", + "semver": "7.6.0", + "source-map-loader": "5.0.0", "source-map-support": "0.5.21", - "terser": "5.19.2", - "text-table": "0.2.0", + "terser": "5.29.1", "tree-kill": "1.2.2", - "tslib": "2.6.1", - "vite": "4.4.7", - "webpack": "5.88.2", - "webpack-dev-middleware": "6.1.1", + "tslib": "2.6.2", + "undici": "6.11.1", + "vite": "5.1.7", + "watchpack": "2.4.0", + "webpack": "5.90.3", + "webpack-dev-middleware": "6.1.2", "webpack-dev-server": "4.15.1", - "webpack-merge": "5.9.0", + "webpack-merge": "5.10.0", "webpack-subresource-integrity": "5.1.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "optionalDependencies": { - "esbuild": "0.18.17" + "esbuild": "0.20.1" }, "peerDependencies": { - "@angular/compiler-cli": "^16.0.0", - "@angular/localize": "^16.0.0", - "@angular/platform-server": "^16.0.0", - "@angular/service-worker": "^16.0.0", + "@angular/compiler-cli": "^17.0.0", + "@angular/localize": "^17.0.0", + "@angular/platform-server": "^17.0.0", + "@angular/service-worker": "^17.0.0", + "@web/test-runner": "^0.18.0", + "browser-sync": "^3.0.2", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "karma": "^6.3.0", - "ng-packagr": "^16.0.0", + "ng-packagr": "^17.0.0", "protractor": "^7.0.0", "tailwindcss": "^2.0.0 || ^3.0.0", - "typescript": ">=4.9.3 <5.2" + "typescript": ">=5.2 <5.5" }, "peerDependenciesMeta": { "@angular/localize": { @@ -229,6 +228,12 @@ "@angular/service-worker": { "optional": true }, + "@web/test-runner": { + "optional": true + }, + "browser-sync": { + "optional": true + }, "jest": { "optional": true }, @@ -249,37 +254,110 @@ } } }, - "node_modules/@angular-devkit/build-angular/node_modules/@ngtools/webpack": { - "version": "16.2.10", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-16.2.10.tgz", - "integrity": "sha512-XAVn59zP3ztuKDtw92Xc9+64RK4u4c9g8y5GgtjIWeOwgNXl8bYhAo3uTZzrSrOu96DFZGjsmghFab/7/C2pDg==", + "node_modules/@angular-devkit/build-angular/node_modules/@babel/core": { + "version": "7.24.0", "dev": true, + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.24.0", + "@babel/parser": "^7.24.0", + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.0", + "@babel/types": "^7.24.0", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, "engines": { - "node": "^16.14.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" + "node": ">=6.9.0" }, - "peerDependencies": { - "@angular/compiler-cli": "^16.0.0", - "typescript": ">=4.9.3 <5.2", - "webpack": "^5.54.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/convert-source-map": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, + "node_modules/@angular-devkit/build-angular/node_modules/jsonc-parser": { + "version": "3.2.1", + "dev": true, + "license": "MIT" + }, + "node_modules/@angular-devkit/build-angular/node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/picomatch": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@angular-devkit/build-angular/node_modules/semver": { + "version": "7.6.0", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, "node_modules/@angular-devkit/build-angular/node_modules/tslib": { - "version": "2.6.1", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + }, + "node_modules/@angular-devkit/build-angular/node_modules/yallist": { + "version": "4.0.0", "dev": true, - "license": "0BSD" + "license": "ISC" }, "node_modules/@angular-devkit/build-webpack": { - "version": "0.1602.10", + "version": "0.1703.8", "dev": true, "license": "MIT", "dependencies": { - "@angular-devkit/architect": "0.1602.10", + "@angular-devkit/architect": "0.1703.8", "rxjs": "7.8.1" }, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, @@ -289,18 +367,18 @@ } }, "node_modules/@angular-devkit/core": { - "version": "16.2.10", + "version": "17.3.8", "license": "MIT", "dependencies": { "ajv": "8.12.0", "ajv-formats": "2.1.1", - "jsonc-parser": "3.2.0", - "picomatch": "2.3.1", + "jsonc-parser": "3.2.1", + "picomatch": "4.0.1", "rxjs": "7.8.1", "source-map": "0.7.4" }, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, @@ -313,39 +391,57 @@ } } }, + "node_modules/@angular-devkit/core/node_modules/jsonc-parser": { + "version": "3.2.1", + "license": "MIT" + }, + "node_modules/@angular-devkit/core/node_modules/picomatch": { + "version": "4.0.1", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/@angular-devkit/schematics": { - "version": "16.2.10", + "version": "17.3.8", "license": "MIT", "dependencies": { - "@angular-devkit/core": "16.2.10", - "jsonc-parser": "3.2.0", - "magic-string": "0.30.1", + "@angular-devkit/core": "17.3.8", + "jsonc-parser": "3.2.1", + "magic-string": "0.30.8", "ora": "5.4.1", "rxjs": "7.8.1" }, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, + "node_modules/@angular-devkit/schematics/node_modules/jsonc-parser": { + "version": "3.2.1", + "license": "MIT" + }, "node_modules/@angular/animations": { - "version": "16.2.12", + "version": "17.3.11", "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/core": "16.2.12" + "@angular/core": "17.3.11" } }, "node_modules/@angular/cdk": { - "version": "16.2.12", - "license": "MIT", - "peer": true, + "version": "17.3.10", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-17.3.10.tgz", + "integrity": "sha512-b1qktT2c1TTTe5nTji/kFAVW92fULK0YhYAvJ+BjZTPKu2FniZNe8o4qqQ0pUuvtMu+ZQxp/QqFYoidIVCjScg==", "dependencies": { "tslib": "^2.3.0" }, @@ -353,31 +449,31 @@ "parse5": "^7.1.2" }, "peerDependencies": { - "@angular/common": "^16.0.0 || ^17.0.0", - "@angular/core": "^16.0.0 || ^17.0.0", + "@angular/common": "^17.0.0 || ^18.0.0", + "@angular/core": "^17.0.0 || ^18.0.0", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/cli": { - "version": "16.2.10", + "version": "17.3.8", "license": "MIT", "dependencies": { - "@angular-devkit/architect": "0.1602.10", - "@angular-devkit/core": "16.2.10", - "@angular-devkit/schematics": "16.2.10", - "@schematics/angular": "16.2.10", + "@angular-devkit/architect": "0.1703.8", + "@angular-devkit/core": "17.3.8", + "@angular-devkit/schematics": "17.3.8", + "@schematics/angular": "17.3.8", "@yarnpkg/lockfile": "1.1.0", "ansi-colors": "4.1.3", - "ini": "4.1.1", - "inquirer": "8.2.4", - "jsonc-parser": "3.2.0", - "npm-package-arg": "10.1.0", - "npm-pick-manifest": "8.0.1", + "ini": "4.1.2", + "inquirer": "9.2.15", + "jsonc-parser": "3.2.1", + "npm-package-arg": "11.0.1", + "npm-pick-manifest": "9.0.0", "open": "8.4.2", "ora": "5.4.1", - "pacote": "15.2.0", - "resolve": "1.22.2", - "semver": "7.5.4", + "pacote": "17.0.6", + "resolve": "1.22.8", + "semver": "7.6.0", "symbol-observable": "4.0.0", "yargs": "17.7.2" }, @@ -385,36 +481,67 @@ "ng": "bin/ng.js" }, "engines": { - "node": "^16.14.0 || >=18.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, + "node_modules/@angular/cli/node_modules/jsonc-parser": { + "version": "3.2.1", + "license": "MIT" + }, + "node_modules/@angular/cli/node_modules/lru-cache": { + "version": "6.0.0", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@angular/cli/node_modules/semver": { + "version": "7.6.0", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@angular/cli/node_modules/yallist": { + "version": "4.0.0", + "license": "ISC" + }, "node_modules/@angular/common": { - "version": "16.2.12", + "version": "17.3.11", "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/core": "16.2.12", + "@angular/core": "17.3.11", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/compiler": { - "version": "16.2.12", + "version": "17.3.11", "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/core": "16.2.12" + "@angular/core": "17.3.11" }, "peerDependenciesMeta": { "@angular/core": { @@ -423,15 +550,15 @@ } }, "node_modules/@angular/compiler-cli": { - "version": "16.2.12", + "version": "17.3.11", "dev": true, "license": "MIT", "dependencies": { - "@babel/core": "7.23.2", + "@babel/core": "7.23.9", "@jridgewell/sourcemap-codec": "^1.4.14", "chokidar": "^3.0.0", "convert-source-map": "^1.5.1", - "reflect-metadata": "^0.1.2", + "reflect-metadata": "^0.2.0", "semver": "^7.0.0", "tslib": "^2.3.0", "yargs": "^17.2.1" @@ -442,133 +569,64 @@ "ngcc": "bundles/ngcc/index.js" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/compiler": "16.2.12", - "typescript": ">=4.9.3 <5.2" - } - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core": { - "version": "7.23.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.0", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-module-transforms": "^7.23.0", - "@babel/helpers": "^7.23.2", - "@babel/parser": "^7.23.0", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/convert-source-map": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/semver": { - "version": "6.3.1", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/generator": { - "version": "7.23.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.23.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/template": { - "version": "7.22.15", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" + "@angular/compiler": "17.3.11", + "typescript": ">=5.2 <5.5" } }, "node_modules/@angular/core": { - "version": "16.2.12", + "version": "17.3.11", "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { "rxjs": "^6.5.3 || ^7.4.0", - "zone.js": "~0.13.0" + "zone.js": "~0.14.0" } }, "node_modules/@angular/forms": { - "version": "16.2.12", + "version": "17.3.11", "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/common": "16.2.12", - "@angular/core": "16.2.12", - "@angular/platform-browser": "16.2.12", + "@angular/common": "17.3.11", + "@angular/core": "17.3.11", + "@angular/platform-browser": "17.3.11", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/language-service": { - "version": "16.2.12", + "version": "17.3.11", "dev": true, "license": "MIT", "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" } }, "node_modules/@angular/platform-browser": { - "version": "16.2.12", + "version": "17.3.11", "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/animations": "16.2.12", - "@angular/common": "16.2.12", - "@angular/core": "16.2.12" + "@angular/animations": "17.3.11", + "@angular/common": "17.3.11", + "@angular/core": "17.3.11" }, "peerDependenciesMeta": { "@angular/animations": { @@ -577,55 +635,50 @@ } }, "node_modules/@angular/platform-browser-dynamic": { - "version": "16.2.12", + "version": "17.3.11", "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/common": "16.2.12", - "@angular/compiler": "16.2.12", - "@angular/core": "16.2.12", - "@angular/platform-browser": "16.2.12" + "@angular/common": "17.3.11", + "@angular/compiler": "17.3.11", + "@angular/core": "17.3.11", + "@angular/platform-browser": "17.3.11" } }, "node_modules/@angular/router": { - "version": "16.2.12", + "version": "17.3.11", "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "peerDependencies": { - "@angular/common": "16.2.12", - "@angular/core": "16.2.12", - "@angular/platform-browser": "16.2.12", + "@angular/common": "17.3.11", + "@angular/core": "17.3.11", + "@angular/platform-browser": "17.3.11", "rxjs": "^6.5.3 || ^7.4.0" } }, - "node_modules/@assemblyscript/loader": { - "version": "0.10.1", - "dev": true, - "license": "Apache-2.0" - }, "node_modules/@babel/code-frame": { - "version": "7.23.5", + "version": "7.24.7", "license": "MIT", "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.23.5", + "version": "7.24.7", "dev": true, "license": "MIT", "engines": { @@ -633,24 +686,24 @@ } }, "node_modules/@babel/core": { - "version": "7.22.9", + "version": "7.23.9", "dev": true, "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.5", - "@babel/generator": "^7.22.9", - "@babel/helper-compilation-targets": "^7.22.9", - "@babel/helper-module-transforms": "^7.22.9", - "@babel/helpers": "^7.22.6", - "@babel/parser": "^7.22.7", - "@babel/template": "^7.22.5", - "@babel/traverse": "^7.22.8", - "@babel/types": "^7.22.5", - "convert-source-map": "^1.7.0", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.9", + "@babel/parser": "^7.23.9", + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9", + "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", + "json5": "^2.2.3", "semver": "^6.3.1" }, "engines": { @@ -661,6 +714,11 @@ "url": "https://opencollective.com/babel" } }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "dev": true, + "license": "MIT" + }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.1", "dev": true, @@ -670,11 +728,11 @@ } }, "node_modules/@babel/generator": { - "version": "7.22.9", + "version": "7.23.6", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5", + "@babel/types": "^7.23.6", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" @@ -695,24 +753,26 @@ } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.15", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", + "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.22.15" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.15", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", + "@babel/compat-data": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -729,18 +789,19 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.23.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz", + "integrity": "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", "semver": "^6.3.1" }, "engines": { @@ -750,6 +811,30 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", + "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { "version": "6.3.1", "dev": true, @@ -759,11 +844,12 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.15", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz", + "integrity": "sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-annotate-as-pure": "^7.24.7", "regexpu-core": "^5.3.1", "semver": "^6.3.1" }, @@ -774,6 +860,18 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { "version": "6.3.1", "dev": true, @@ -783,7 +881,7 @@ } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.4.3", + "version": "0.6.2", "dev": true, "license": "MIT", "dependencies": { @@ -798,77 +896,70 @@ } }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", + "version": "7.24.7", "license": "MIT", "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/helper-function-name/node_modules/@babel/template": { - "version": "7.22.15", + "node_modules/@babel/helper-function-name": { + "version": "7.24.7", "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", + "version": "7.24.7", "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.23.0", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.23.0" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.22.15" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.23.3", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -877,19 +968,30 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.22.5", + "version": "7.24.7", "dev": true, "license": "MIT", "engines": { @@ -897,13 +999,14 @@ } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.20", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz", + "integrity": "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-wrap-function": "^7.22.20" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-wrap-function": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -912,14 +1015,26 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-remap-async-to-generator/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-replace-supers": { - "version": "7.22.20", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.22.15", - "@babel/helper-optimise-call-expression": "^7.22.5" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.7", + "@babel/helper-optimise-call-expression": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -929,22 +1044,24 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -952,6 +1069,7 @@ }, "node_modules/@babel/helper-split-export-declaration": { "version": "7.22.6", + "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.22.5" @@ -961,21 +1079,21 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", + "version": "7.24.7", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", + "version": "7.24.7", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", + "version": "7.24.7", "dev": true, "license": "MIT", "engines": { @@ -983,71 +1101,47 @@ } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.22.20", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz", + "integrity": "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.15", - "@babel/types": "^7.22.19" + "@babel/helper-function-name": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/helper-wrap-function/node_modules/@babel/template": { - "version": "7.22.15", + "node_modules/@babel/helpers": { + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.23.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.5", - "@babel/types": "^7.23.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers/node_modules/@babel/template": { - "version": "7.22.15", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.23.4", + "version": "7.24.7", "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-validator-identifier": "^7.24.7", "chalk": "^2.4.2", - "js-tokens": "^4.0.0" + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.23.5", + "version": "7.24.7", "license": "MIT", "bin": { "parser": "bin/babel-parser.js" @@ -1056,12 +1150,14 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.23.3", + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz", + "integrity": "sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1070,58 +1166,59 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.23.3", + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz", + "integrity": "sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.23.3" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.13.0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.23.3", + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", + "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0" + "@babel/core": "^7.13.0" } }, - "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.7", + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-proposal-private-methods": { "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1144,21 +1241,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", "dev": true, @@ -1218,11 +1300,12 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", + "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1232,11 +1315,12 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1377,11 +1461,12 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", + "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1391,7 +1476,7 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.23.4", + "version": "7.23.9", "dev": true, "license": "MIT", "dependencies": { @@ -1408,13 +1493,13 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.22.5", + "version": "7.23.3", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.5" + "@babel/helper-remap-async-to-generator": "^7.22.20" }, "engines": { "node": ">=6.9.0" @@ -1424,11 +1509,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", + "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1438,11 +1524,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.23.4", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz", + "integrity": "sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1452,12 +1539,13 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", + "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1467,12 +1555,13 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.23.4", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", + "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "engines": { @@ -1483,18 +1572,17 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.23.5", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", - "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", "globals": "^11.1.0" }, "engines": { @@ -1504,40 +1592,51 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.23.3", + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.15" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-computed-properties/node_modules/@babel/template": { - "version": "7.22.15", + "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", + "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/template": "^7.24.7" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz", + "integrity": "sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1547,12 +1646,13 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", + "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1562,11 +1662,12 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", + "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1576,11 +1677,12 @@ } }, "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.23.4", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", + "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { @@ -1591,12 +1693,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", + "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1606,11 +1709,12 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.23.4", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", + "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { @@ -1621,11 +1725,12 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.23.3", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1635,13 +1740,14 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz", + "integrity": "sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1651,11 +1757,12 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.23.4", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", + "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { @@ -1666,11 +1773,12 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", + "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1680,11 +1788,12 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.23.4", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", + "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { @@ -1695,11 +1804,12 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", + "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1709,12 +1819,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", + "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1724,13 +1835,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz", + "integrity": "sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1740,14 +1852,14 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.23.3", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1757,12 +1869,13 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", + "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1772,12 +1885,13 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", + "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1787,11 +1901,12 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", + "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1801,11 +1916,12 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.23.4", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", + "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { @@ -1816,11 +1932,12 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.23.4", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", + "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { @@ -1831,15 +1948,14 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.23.4", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.23.3", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.23.3" + "@babel/plugin-transform-parameters": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1849,12 +1965,13 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", + "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-replace-supers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1864,11 +1981,12 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.23.4", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", + "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" }, "engines": { @@ -1879,12 +1997,13 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.23.4", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz", + "integrity": "sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { @@ -1895,11 +2014,11 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.23.3", + "version": "7.24.7", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1909,12 +2028,13 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", + "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1924,13 +2044,14 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.23.4", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", + "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { @@ -1940,12 +2061,25 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-private-property-in-object/node_modules/@babel/helper-annotate-as-pure": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", + "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1955,11 +2089,12 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", + "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.7", "regenerator-transform": "^0.15.2" }, "engines": { @@ -1970,11 +2105,12 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", + "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -1984,15 +2120,15 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.22.9", + "version": "7.24.0", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "babel-plugin-polyfill-corejs2": "^0.4.4", - "babel-plugin-polyfill-corejs3": "^0.8.2", - "babel-plugin-polyfill-regenerator": "^0.5.1", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0", + "babel-plugin-polyfill-corejs2": "^0.4.8", + "babel-plugin-polyfill-corejs3": "^0.9.0", + "babel-plugin-polyfill-regenerator": "^0.5.5", "semver": "^6.3.1" }, "engines": { @@ -2011,11 +2147,12 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", + "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2025,12 +2162,13 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", + "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2040,11 +2178,12 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", + "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2054,11 +2193,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", + "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2068,11 +2208,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz", + "integrity": "sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2082,11 +2223,12 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", + "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2096,12 +2238,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", + "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2111,12 +2254,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", + "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2126,12 +2270,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.23.3", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", + "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-regexp-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2141,24 +2286,25 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.22.9", + "version": "7.24.0", "dev": true, "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-compilation-targets": "^7.22.9", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", + "@babel/compat-data": "^7.23.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.7", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.22.5", - "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-assertions": "^7.23.3", + "@babel/plugin-syntax-import-attributes": "^7.23.3", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", @@ -2170,59 +2316,58 @@ "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.22.5", - "@babel/plugin-transform-async-generator-functions": "^7.22.7", - "@babel/plugin-transform-async-to-generator": "^7.22.5", - "@babel/plugin-transform-block-scoped-functions": "^7.22.5", - "@babel/plugin-transform-block-scoping": "^7.22.5", - "@babel/plugin-transform-class-properties": "^7.22.5", - "@babel/plugin-transform-class-static-block": "^7.22.5", - "@babel/plugin-transform-classes": "^7.22.6", - "@babel/plugin-transform-computed-properties": "^7.22.5", - "@babel/plugin-transform-destructuring": "^7.22.5", - "@babel/plugin-transform-dotall-regex": "^7.22.5", - "@babel/plugin-transform-duplicate-keys": "^7.22.5", - "@babel/plugin-transform-dynamic-import": "^7.22.5", - "@babel/plugin-transform-exponentiation-operator": "^7.22.5", - "@babel/plugin-transform-export-namespace-from": "^7.22.5", - "@babel/plugin-transform-for-of": "^7.22.5", - "@babel/plugin-transform-function-name": "^7.22.5", - "@babel/plugin-transform-json-strings": "^7.22.5", - "@babel/plugin-transform-literals": "^7.22.5", - "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", - "@babel/plugin-transform-member-expression-literals": "^7.22.5", - "@babel/plugin-transform-modules-amd": "^7.22.5", - "@babel/plugin-transform-modules-commonjs": "^7.22.5", - "@babel/plugin-transform-modules-systemjs": "^7.22.5", - "@babel/plugin-transform-modules-umd": "^7.22.5", + "@babel/plugin-transform-arrow-functions": "^7.23.3", + "@babel/plugin-transform-async-generator-functions": "^7.23.9", + "@babel/plugin-transform-async-to-generator": "^7.23.3", + "@babel/plugin-transform-block-scoped-functions": "^7.23.3", + "@babel/plugin-transform-block-scoping": "^7.23.4", + "@babel/plugin-transform-class-properties": "^7.23.3", + "@babel/plugin-transform-class-static-block": "^7.23.4", + "@babel/plugin-transform-classes": "^7.23.8", + "@babel/plugin-transform-computed-properties": "^7.23.3", + "@babel/plugin-transform-destructuring": "^7.23.3", + "@babel/plugin-transform-dotall-regex": "^7.23.3", + "@babel/plugin-transform-duplicate-keys": "^7.23.3", + "@babel/plugin-transform-dynamic-import": "^7.23.4", + "@babel/plugin-transform-exponentiation-operator": "^7.23.3", + "@babel/plugin-transform-export-namespace-from": "^7.23.4", + "@babel/plugin-transform-for-of": "^7.23.6", + "@babel/plugin-transform-function-name": "^7.23.3", + "@babel/plugin-transform-json-strings": "^7.23.4", + "@babel/plugin-transform-literals": "^7.23.3", + "@babel/plugin-transform-logical-assignment-operators": "^7.23.4", + "@babel/plugin-transform-member-expression-literals": "^7.23.3", + "@babel/plugin-transform-modules-amd": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-modules-systemjs": "^7.23.9", + "@babel/plugin-transform-modules-umd": "^7.23.3", "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.22.5", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", - "@babel/plugin-transform-numeric-separator": "^7.22.5", - "@babel/plugin-transform-object-rest-spread": "^7.22.5", - "@babel/plugin-transform-object-super": "^7.22.5", - "@babel/plugin-transform-optional-catch-binding": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.22.6", - "@babel/plugin-transform-parameters": "^7.22.5", - "@babel/plugin-transform-private-methods": "^7.22.5", - "@babel/plugin-transform-private-property-in-object": "^7.22.5", - "@babel/plugin-transform-property-literals": "^7.22.5", - "@babel/plugin-transform-regenerator": "^7.22.5", - "@babel/plugin-transform-reserved-words": "^7.22.5", - "@babel/plugin-transform-shorthand-properties": "^7.22.5", - "@babel/plugin-transform-spread": "^7.22.5", - "@babel/plugin-transform-sticky-regex": "^7.22.5", - "@babel/plugin-transform-template-literals": "^7.22.5", - "@babel/plugin-transform-typeof-symbol": "^7.22.5", - "@babel/plugin-transform-unicode-escapes": "^7.22.5", - "@babel/plugin-transform-unicode-property-regex": "^7.22.5", - "@babel/plugin-transform-unicode-regex": "^7.22.5", - "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.22.5", - "babel-plugin-polyfill-corejs2": "^0.4.4", - "babel-plugin-polyfill-corejs3": "^0.8.2", - "babel-plugin-polyfill-regenerator": "^0.5.1", + "@babel/plugin-transform-new-target": "^7.23.3", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4", + "@babel/plugin-transform-numeric-separator": "^7.23.4", + "@babel/plugin-transform-object-rest-spread": "^7.24.0", + "@babel/plugin-transform-object-super": "^7.23.3", + "@babel/plugin-transform-optional-catch-binding": "^7.23.4", + "@babel/plugin-transform-optional-chaining": "^7.23.4", + "@babel/plugin-transform-parameters": "^7.23.3", + "@babel/plugin-transform-private-methods": "^7.23.3", + "@babel/plugin-transform-private-property-in-object": "^7.23.4", + "@babel/plugin-transform-property-literals": "^7.23.3", + "@babel/plugin-transform-regenerator": "^7.23.3", + "@babel/plugin-transform-reserved-words": "^7.23.3", + "@babel/plugin-transform-shorthand-properties": "^7.23.3", + "@babel/plugin-transform-spread": "^7.23.3", + "@babel/plugin-transform-sticky-regex": "^7.23.3", + "@babel/plugin-transform-template-literals": "^7.23.3", + "@babel/plugin-transform-typeof-symbol": "^7.23.3", + "@babel/plugin-transform-unicode-escapes": "^7.23.3", + "@babel/plugin-transform-unicode-property-regex": "^7.23.3", + "@babel/plugin-transform-unicode-regex": "^7.23.3", + "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.8", + "babel-plugin-polyfill-corejs3": "^0.9.0", + "babel-plugin-polyfill-regenerator": "^0.5.5", "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, @@ -2242,13 +2387,11 @@ } }, "node_modules/@babel/preset-modules": { - "version": "0.1.6", + "version": "0.1.6-no-external-plugins", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", "@babel/types": "^7.4.4", "esutils": "^2.0.2" }, @@ -2262,42 +2405,41 @@ "license": "MIT" }, "node_modules/@babel/runtime": { - "version": "7.22.6", + "version": "7.24.0", "dev": true, "license": "MIT", "dependencies": { - "regenerator-runtime": "^0.13.11" + "regenerator-runtime": "^0.14.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.22.5", - "dev": true, + "version": "7.24.7", "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.22.5", - "@babel/parser": "^7.22.5", - "@babel/types": "^7.22.5" + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.23.5", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.5", - "@babel/types": "^7.23.5", - "debug": "^4.1.0", + "version": "7.24.7", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.7", + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-function-name": "^7.24.7", + "@babel/helper-hoist-variables": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/types": "^7.24.7", + "debug": "^4.3.1", "globals": "^11.1.0" }, "engines": { @@ -2305,24 +2447,34 @@ } }, "node_modules/@babel/traverse/node_modules/@babel/generator": { - "version": "7.23.5", + "version": "7.24.7", "license": "MIT", "dependencies": { - "@babel/types": "^7.23.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", + "@babel/types": "^7.24.7", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/traverse/node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/types": { - "version": "7.23.5", + "version": "7.24.7", "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-string-parser": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" }, "engines": { @@ -2335,7 +2487,7 @@ "optional": true }, "node_modules/@cds/core": { - "version": "6.9.0", + "version": "6.12.0", "license": "MIT", "dependencies": { "lit": "^2.1.3", @@ -2349,8 +2501,7 @@ }, "node_modules/@cesium/engine": { "version": "10.0.0", - "resolved": "https://registry.npmjs.org/@cesium/engine/-/engine-10.0.0.tgz", - "integrity": "sha512-0bynRIV5nGjZGuRm0ajvZ4cyIwSW/Z29CMaWcruJUhjprEW9u9YvJ5xsJkTe1qD45sR2E1XEejVkPv056x5GNg==", + "license": "Apache-2.0", "dependencies": { "@tweenjs/tween.js": "^23.1.1", "@zip.js/zip.js": "^2.7.34", @@ -2378,13 +2529,11 @@ }, "node_modules/@cesium/engine/node_modules/lerc": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lerc/-/lerc-2.0.0.tgz", - "integrity": "sha512-7qo1Mq8ZNmaR4USHHm615nEW2lPeeWJ3bTyoqFbd35DLx0LUH7C6ptt5FDCTAlbIzs3+WKrk5SkJvw8AFDE2hg==" + "license": "Apache-2.0" }, "node_modules/@cesium/widgets": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@cesium/widgets/-/widgets-7.0.0.tgz", - "integrity": "sha512-h8ntI7irvzZbtXcYmwDXxJe8WDbrGreoV7Z+IyA18M+ko7wI5oFtWwVsqH6QwNPNqE7gk7YxqVbGUi0UsRPC8g==", + "license": "Apache-2.0", "dependencies": { "@cesium/engine": "^10.0.0", "nosleep.js": "^0.12.0" @@ -2394,30 +2543,26 @@ } }, "node_modules/@clr/angular": { - "version": "15.13.0", + "version": "17.2.1", "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "peerDependencies": { - "@angular/cdk": "15 || 16", - "@angular/common": "15 || 16", - "@angular/core": "15 || 16", - "@cds/core": "^5.6.0 || ^6.0.0", - "@clr/ui": "15.13.0" + "@angular/cdk": "15 || 16 || 17", + "@angular/common": "15 || 16 || 17", + "@angular/core": "15 || 16 || 17", + "@cds/core": ">= 6.9.2", + "@clr/ui": "17.2.1" } }, - "node_modules/@clr/icons": { - "version": "13.0.2", + "node_modules/@clr/ui": { + "version": "17.2.1", "license": "MIT", "peerDependencies": { - "@webcomponents/custom-elements": "^1.0.0" + "@cds/core": "^6.9.2" } }, - "node_modules/@clr/ui": { - "version": "15.13.0", - "license": "MIT" - }, "node_modules/@colors/colors": { "version": "1.5.0", "dev": true, @@ -2427,36 +2572,37 @@ } }, "node_modules/@compodoc/compodoc": { - "version": "1.1.23", + "version": "1.1.24", + "resolved": "https://registry.npmjs.org/@compodoc/compodoc/-/compodoc-1.1.24.tgz", + "integrity": "sha512-m1NNB8N1V87cXzuts/t3FO5UFnbvhJUVO9rB/+QeIvTDpUy1MYprvZQNTWEEMXPg4+J7lXfTRc55KMLiB79jkA==", "dev": true, "hasInstallScript": true, - "license": "MIT", "dependencies": { - "@angular-devkit/schematics": "14.2.12", - "@babel/core": "^7.23.3", + "@angular-devkit/schematics": "17.3.5", + "@babel/core": "^7.24.4", "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/preset-env": "^7.23.3", + "@babel/preset-env": "^7.24.4", "@compodoc/live-server": "^1.2.3", "@compodoc/ngd-transformer": "^2.1.3", - "bootstrap.native": "^5.0.10", + "bootstrap.native": "^5.0.12", "chalk": "4.1.2", "cheerio": "^1.0.0-rc.12", - "chokidar": "^3.5.3", + "chokidar": "^3.6.0", "colors": "1.4.0", - "commander": "^11.1.0", - "cosmiconfig": "^8.3.6", + "commander": "^12.0.0", + "cosmiconfig": "^9.0.0", "decache": "^4.6.2", "es6-shim": "^0.35.8", "fancy-log": "^2.0.0", "fast-glob": "^3.3.2", - "fs-extra": "^11.1.1", - "glob": "^10.3.10", + "fs-extra": "^11.2.0", + "glob": "^10.3.12", "handlebars": "^4.7.8", - "html-entities": "^2.4.0", - "i18next": "^23.7.6", + "html-entities": "^2.5.2", + "i18next": "^23.11.2", "json5": "^2.2.3", "lodash": "^4.17.21", - "loglevel": "^1.8.1", + "loglevel": "^1.9.1", "loglevel-plugin-prefix": "^0.8.4", "lunr": "^2.3.9", "marked": "7.0.3", @@ -2464,13 +2610,13 @@ "opencollective-postinstall": "^2.0.3", "os-name": "4.0.1", "pdfjs-dist": "2.12.313", - "pdfmake": "^0.2.8", + "pdfmake": "^0.2.10", "prismjs": "^1.29.0", - "semver": "^7.5.4", + "semver": "^7.6.0", "svg-pan-zoom": "^3.6.1", "tablesort": "^5.3.0", - "traverse": "^0.6.7", - "ts-morph": "^20.0.0", + "traverse": "^0.6.9", + "ts-morph": "^22.0.0", "uuid": "^9.0.1", "vis": "^4.21.0-EOL", "zepto": "^1.2.0" @@ -2479,22 +2625,24 @@ "compodoc": "bin/index-cli.js" }, "engines": { - "node": ">= 14.0.0" + "node": ">= 16.0.0" } }, "node_modules/@compodoc/compodoc/node_modules/@angular-devkit/core": { - "version": "14.2.12", + "version": "17.3.5", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-17.3.5.tgz", + "integrity": "sha512-iqGv45HVI+yRROoTqQTY0QChYlRCZkFUfIjdfJLegjc6xq9sLtxDr03CWM45BKGG5lSxDOy+qu/pdRvtL3V2eg==", "dev": true, - "license": "MIT", "dependencies": { - "ajv": "8.11.0", + "ajv": "8.12.0", "ajv-formats": "2.1.1", - "jsonc-parser": "3.1.0", - "rxjs": "6.6.7", + "jsonc-parser": "3.2.1", + "picomatch": "4.0.1", + "rxjs": "7.8.1", "source-map": "0.7.4" }, "engines": { - "node": "^14.15.0 || >=16.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, @@ -2508,37 +2656,39 @@ } }, "node_modules/@compodoc/compodoc/node_modules/@angular-devkit/schematics": { - "version": "14.2.12", + "version": "17.3.5", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-17.3.5.tgz", + "integrity": "sha512-oh/mvpMKxGfk5v9QIB7LfGsDC/iVpmsIAvbb4+1ddCx86EJXdz3xWnVDbUehOd6n7HJXnQrNirWjWvWquM2GhQ==", "dev": true, - "license": "MIT", "dependencies": { - "@angular-devkit/core": "14.2.12", - "jsonc-parser": "3.1.0", - "magic-string": "0.26.2", + "@angular-devkit/core": "17.3.5", + "jsonc-parser": "3.2.1", + "magic-string": "0.30.8", "ora": "5.4.1", - "rxjs": "6.6.7" + "rxjs": "7.8.1" }, "engines": { - "node": "^14.15.0 || >=16.10.0", + "node": "^18.13.0 || >=20.9.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@compodoc/compodoc/node_modules/@babel/core": { - "version": "7.23.5", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", + "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", "dev": true, - "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.5", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.23.5", - "@babel/parser": "^7.23.5", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.5", - "@babel/types": "^7.23.5", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helpers": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -2555,34 +2705,38 @@ }, "node_modules/@compodoc/compodoc/node_modules/@babel/core/node_modules/semver": { "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@compodoc/compodoc/node_modules/@babel/generator": { - "version": "7.23.5", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", + "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/types": "^7.23.5", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", + "@babel/types": "^7.24.7", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@compodoc/compodoc/node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.23.3", + "node_modules/@compodoc/compodoc/node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.7.tgz", + "integrity": "sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.20" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7", + "@babel/plugin-syntax-async-generators": "^7.8.4" }, "engines": { "node": ">=6.9.0" @@ -2591,26 +2745,45 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@compodoc/compodoc/node_modules/@babel/preset-env": { - "version": "7.23.5", + "node_modules/@compodoc/compodoc/node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.7.tgz", + "integrity": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==", "dev": true, - "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.3", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-remap-async-to-generator": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@compodoc/compodoc/node_modules/@babel/preset-env": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.7.tgz", + "integrity": "sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.7", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.7", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.7", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.7", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.23.3", - "@babel/plugin-syntax-import-attributes": "^7.23.3", + "@babel/plugin-syntax-import-assertions": "^7.24.7", + "@babel/plugin-syntax-import-attributes": "^7.24.7", "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", @@ -2622,58 +2795,58 @@ "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.23.3", - "@babel/plugin-transform-async-generator-functions": "^7.23.4", - "@babel/plugin-transform-async-to-generator": "^7.23.3", - "@babel/plugin-transform-block-scoped-functions": "^7.23.3", - "@babel/plugin-transform-block-scoping": "^7.23.4", - "@babel/plugin-transform-class-properties": "^7.23.3", - "@babel/plugin-transform-class-static-block": "^7.23.4", - "@babel/plugin-transform-classes": "^7.23.5", - "@babel/plugin-transform-computed-properties": "^7.23.3", - "@babel/plugin-transform-destructuring": "^7.23.3", - "@babel/plugin-transform-dotall-regex": "^7.23.3", - "@babel/plugin-transform-duplicate-keys": "^7.23.3", - "@babel/plugin-transform-dynamic-import": "^7.23.4", - "@babel/plugin-transform-exponentiation-operator": "^7.23.3", - "@babel/plugin-transform-export-namespace-from": "^7.23.4", - "@babel/plugin-transform-for-of": "^7.23.3", - "@babel/plugin-transform-function-name": "^7.23.3", - "@babel/plugin-transform-json-strings": "^7.23.4", - "@babel/plugin-transform-literals": "^7.23.3", - "@babel/plugin-transform-logical-assignment-operators": "^7.23.4", - "@babel/plugin-transform-member-expression-literals": "^7.23.3", - "@babel/plugin-transform-modules-amd": "^7.23.3", - "@babel/plugin-transform-modules-commonjs": "^7.23.3", - "@babel/plugin-transform-modules-systemjs": "^7.23.3", - "@babel/plugin-transform-modules-umd": "^7.23.3", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.23.3", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4", - "@babel/plugin-transform-numeric-separator": "^7.23.4", - "@babel/plugin-transform-object-rest-spread": "^7.23.4", - "@babel/plugin-transform-object-super": "^7.23.3", - "@babel/plugin-transform-optional-catch-binding": "^7.23.4", - "@babel/plugin-transform-optional-chaining": "^7.23.4", - "@babel/plugin-transform-parameters": "^7.23.3", - "@babel/plugin-transform-private-methods": "^7.23.3", - "@babel/plugin-transform-private-property-in-object": "^7.23.4", - "@babel/plugin-transform-property-literals": "^7.23.3", - "@babel/plugin-transform-regenerator": "^7.23.3", - "@babel/plugin-transform-reserved-words": "^7.23.3", - "@babel/plugin-transform-shorthand-properties": "^7.23.3", - "@babel/plugin-transform-spread": "^7.23.3", - "@babel/plugin-transform-sticky-regex": "^7.23.3", - "@babel/plugin-transform-template-literals": "^7.23.3", - "@babel/plugin-transform-typeof-symbol": "^7.23.3", - "@babel/plugin-transform-unicode-escapes": "^7.23.3", - "@babel/plugin-transform-unicode-property-regex": "^7.23.3", - "@babel/plugin-transform-unicode-regex": "^7.23.3", - "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", + "@babel/plugin-transform-arrow-functions": "^7.24.7", + "@babel/plugin-transform-async-generator-functions": "^7.24.7", + "@babel/plugin-transform-async-to-generator": "^7.24.7", + "@babel/plugin-transform-block-scoped-functions": "^7.24.7", + "@babel/plugin-transform-block-scoping": "^7.24.7", + "@babel/plugin-transform-class-properties": "^7.24.7", + "@babel/plugin-transform-class-static-block": "^7.24.7", + "@babel/plugin-transform-classes": "^7.24.7", + "@babel/plugin-transform-computed-properties": "^7.24.7", + "@babel/plugin-transform-destructuring": "^7.24.7", + "@babel/plugin-transform-dotall-regex": "^7.24.7", + "@babel/plugin-transform-duplicate-keys": "^7.24.7", + "@babel/plugin-transform-dynamic-import": "^7.24.7", + "@babel/plugin-transform-exponentiation-operator": "^7.24.7", + "@babel/plugin-transform-export-namespace-from": "^7.24.7", + "@babel/plugin-transform-for-of": "^7.24.7", + "@babel/plugin-transform-function-name": "^7.24.7", + "@babel/plugin-transform-json-strings": "^7.24.7", + "@babel/plugin-transform-literals": "^7.24.7", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.7", + "@babel/plugin-transform-member-expression-literals": "^7.24.7", + "@babel/plugin-transform-modules-amd": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-modules-systemjs": "^7.24.7", + "@babel/plugin-transform-modules-umd": "^7.24.7", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7", + "@babel/plugin-transform-new-target": "^7.24.7", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7", + "@babel/plugin-transform-numeric-separator": "^7.24.7", + "@babel/plugin-transform-object-rest-spread": "^7.24.7", + "@babel/plugin-transform-object-super": "^7.24.7", + "@babel/plugin-transform-optional-catch-binding": "^7.24.7", + "@babel/plugin-transform-optional-chaining": "^7.24.7", + "@babel/plugin-transform-parameters": "^7.24.7", + "@babel/plugin-transform-private-methods": "^7.24.7", + "@babel/plugin-transform-private-property-in-object": "^7.24.7", + "@babel/plugin-transform-property-literals": "^7.24.7", + "@babel/plugin-transform-regenerator": "^7.24.7", + "@babel/plugin-transform-reserved-words": "^7.24.7", + "@babel/plugin-transform-shorthand-properties": "^7.24.7", + "@babel/plugin-transform-spread": "^7.24.7", + "@babel/plugin-transform-sticky-regex": "^7.24.7", + "@babel/plugin-transform-template-literals": "^7.24.7", + "@babel/plugin-transform-typeof-symbol": "^7.24.7", + "@babel/plugin-transform-unicode-escapes": "^7.24.7", + "@babel/plugin-transform-unicode-property-regex": "^7.24.7", + "@babel/plugin-transform-unicode-regex": "^7.24.7", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.7", "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.6", - "babel-plugin-polyfill-corejs3": "^0.8.5", - "babel-plugin-polyfill-regenerator": "^0.5.3", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, @@ -2686,65 +2859,50 @@ }, "node_modules/@compodoc/compodoc/node_modules/@babel/preset-env/node_modules/semver": { "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "license": "ISC", "bin": { "semver": "bin/semver.js" } }, - "node_modules/@compodoc/compodoc/node_modules/@babel/preset-modules": { - "version": "0.1.6-no-external-plugins", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@compodoc/compodoc/node_modules/@babel/template": { - "version": "7.22.15", + "node_modules/@compodoc/compodoc/node_modules/ansi-styles": { + "version": "4.3.0", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=6.9.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@compodoc/compodoc/node_modules/ajv": { - "version": "8.11.0", + "node_modules/@compodoc/compodoc/node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", "dev": true, - "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@compodoc/compodoc/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/@compodoc/compodoc/node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", + "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", "dev": true, - "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "@babel/helper-define-polyfill-provider": "^0.6.2" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@compodoc/compodoc/node_modules/chalk": { @@ -2780,23 +2938,9 @@ }, "node_modules/@compodoc/compodoc/node_modules/convert-source-map": { "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/@compodoc/compodoc/node_modules/fast-glob": { - "version": "3.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true }, "node_modules/@compodoc/compodoc/node_modules/has-flag": { "version": "4.0.0", @@ -2807,30 +2951,33 @@ } }, "node_modules/@compodoc/compodoc/node_modules/jsonc-parser": { - "version": "3.1.0", - "dev": true, - "license": "MIT" + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", + "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", + "dev": true }, - "node_modules/@compodoc/compodoc/node_modules/magic-string": { - "version": "0.26.2", + "node_modules/@compodoc/compodoc/node_modules/picomatch": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.1.tgz", + "integrity": "sha512-xUXwsxNjwTQ8K3GnT4pCJm+xq3RUPQbmkYJTP5aFIfNIvbcc/4MUxgBaaRSZJ6yGJZiGSyYlM6MzwTsRk8SYCg==", "dev": true, - "license": "MIT", - "dependencies": { - "sourcemap-codec": "^1.4.8" - }, "engines": { "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/@compodoc/compodoc/node_modules/rxjs": { - "version": "6.6.7", + "node_modules/@compodoc/compodoc/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", "dev": true, - "license": "Apache-2.0", - "dependencies": { - "tslib": "^1.9.0" + "bin": { + "semver": "bin/semver.js" }, "engines": { - "npm": ">=2.0.0" + "node": ">=10" } }, "node_modules/@compodoc/compodoc/node_modules/supports-color": { @@ -2844,11 +2991,6 @@ "node": ">=8" } }, - "node_modules/@compodoc/compodoc/node_modules/tslib": { - "version": "1.14.1", - "dev": true, - "license": "0BSD" - }, "node_modules/@compodoc/live-server": { "version": "1.2.3", "dev": true, @@ -3004,7 +3146,7 @@ "link": true }, "node_modules/@esbuild/win32-x64": { - "version": "0.18.17", + "version": "0.20.1", "cpu": [ "x64" ], @@ -3019,14 +3161,13 @@ } }, "node_modules/@foliojs-fork/fontkit": { - "version": "1.9.1", + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@foliojs-fork/fontkit/-/fontkit-1.9.2.tgz", + "integrity": "sha512-IfB5EiIb+GZk+77TRB86AHroVaqfq8JRFlUbz0WEwsInyCG0epX2tCPOy+UfaWPju30DeVoUAXfzWXmhn753KA==", "dev": true, - "license": "MIT", "dependencies": { "@foliojs-fork/restructure": "^2.0.2", - "brfs": "^2.0.0", "brotli": "^1.2.0", - "browserify-optional": "^1.0.1", "clone": "^1.0.4", "deep-equal": "^1.0.0", "dfa": "^1.2.0", @@ -3036,24 +3177,26 @@ } }, "node_modules/@foliojs-fork/linebreak": { - "version": "1.1.1", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@foliojs-fork/linebreak/-/linebreak-1.1.2.tgz", + "integrity": "sha512-ZPohpxxbuKNE0l/5iBJnOAfUaMACwvUIKCvqtWGKIMv1lPYoNjYXRfhi9FeeV9McBkBLxsMFWTVVhHJA8cyzvg==", "dev": true, - "license": "MIT", "dependencies": { "base64-js": "1.3.1", - "brfs": "^2.0.2", "unicode-trie": "^2.0.0" } }, "node_modules/@foliojs-fork/linebreak/node_modules/base64-js": { "version": "1.3.1", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", + "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==", + "dev": true }, "node_modules/@foliojs-fork/pdfkit": { "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@foliojs-fork/pdfkit/-/pdfkit-0.14.0.tgz", + "integrity": "sha512-nMOiQAv6id89MT3tVTCgc7HxD5ZMANwio2o5yvs5sexQkC0KI3BLaLakpsrHmFfeGFAhqPmZATZGbJGXTUebpg==", "dev": true, - "license": "MIT", "dependencies": { "@foliojs-fork/fontkit": "^1.9.1", "@foliojs-fork/linebreak": "^1.1.1", @@ -3063,8 +3206,9 @@ }, "node_modules/@foliojs-fork/restructure": { "version": "2.0.2", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/@foliojs-fork/restructure/-/restructure-2.0.2.tgz", + "integrity": "sha512-59SgoZ3EXbkfSX7b63tsou/SDGzwUEK6MuB5sKqgVK1/XE0fxmpsOb9DQI8LXW3KfGnAjImCGhhEb7uPPAUVNA==", + "dev": true }, "node_modules/@fontsource/metropolis": { "version": "4.5.3", @@ -3074,13 +3218,10 @@ "version": "4.5.11", "license": "MIT" }, - "node_modules/@gar/promisify": { - "version": "1.1.3", - "license": "MIT" - }, "node_modules/@isaacs/cliui": { "version": "8.0.2", - "license": "ISC", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", @@ -3095,7 +3236,8 @@ }, "node_modules/@isaacs/cliui/node_modules/ansi-regex": { "version": "6.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "engines": { "node": ">=12" }, @@ -3105,7 +3247,8 @@ }, "node_modules/@isaacs/cliui/node_modules/ansi-styles": { "version": "6.2.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "engines": { "node": ">=12" }, @@ -3115,11 +3258,13 @@ }, "node_modules/@isaacs/cliui/node_modules/emoji-regex": { "version": "9.2.2", - "license": "MIT" + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" }, "node_modules/@isaacs/cliui/node_modules/string-width": { "version": "5.1.2", - "license": "MIT", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", @@ -3134,7 +3279,8 @@ }, "node_modules/@isaacs/cliui/node_modules/strip-ansi": { "version": "7.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dependencies": { "ansi-regex": "^6.0.1" }, @@ -3147,7 +3293,8 @@ }, "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { "version": "8.1.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", @@ -3184,12 +3331,12 @@ } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", + "version": "0.3.5", "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.0.1", + "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" @@ -3203,7 +3350,7 @@ } }, "node_modules/@jridgewell/set-array": { - "version": "1.1.2", + "version": "1.2.1", "license": "MIT", "engines": { "node": ">=6.0.0" @@ -3223,7 +3370,7 @@ "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.20", + "version": "0.3.25", "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", @@ -3231,7 +3378,7 @@ } }, "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.4", + "version": "2.0.5", "dev": true, "license": "MIT" }, @@ -3246,6 +3393,16 @@ "@lit-labs/ssr-dom-shim": "^1.0.0" } }, + "node_modules/@ljharb/through": { + "version": "2.3.13", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/@mapbox/geojson-rewind": { "version": "0.5.2", "license": "ISC", @@ -3293,8 +3450,7 @@ }, "node_modules/@mapbox/togeojson": { "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@mapbox/togeojson/-/togeojson-0.16.2.tgz", - "integrity": "sha512-DcApudmw4g/grOrpM5gYPZfts6Kr8litBESN6n/27sDsjR2f+iJhx4BA0J2B+XrLlnHyJkKztYApe6oCUZpzFA==", + "license": "BSD-2-Clause", "dependencies": { "@xmldom/xmldom": "^0.8.10", "concat-stream": "~2.0.0", @@ -3306,11 +3462,10 @@ }, "node_modules/@mapbox/togeojson/node_modules/concat-stream": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", - "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "engines": [ "node >= 6.0" ], + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", @@ -3338,8 +3493,7 @@ }, "node_modules/@maplibre/maplibre-gl-style-spec": { "version": "20.3.0", - "resolved": "https://registry.npmjs.org/@maplibre/maplibre-gl-style-spec/-/maplibre-gl-style-spec-20.3.0.tgz", - "integrity": "sha512-eSiQ3E5LUSxAOY9ABXGyfNhout2iEa6mUxKeaQ9nJ8NL1NuaQYU7zKqzx/LEYcXe1neT4uYAgM1wYZj3fTSXtA==", + "license": "ISC", "dependencies": { "@mapbox/jsonlint-lines-primitives": "~2.0.2", "@mapbox/unitbezier": "^0.0.1", @@ -3358,34 +3512,29 @@ }, "node_modules/@maplibre/maplibre-gl-style-spec/node_modules/@mapbox/unitbezier": { "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", - "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==" + "license": "BSD-2-Clause" }, "node_modules/@maplibre/maplibre-gl-style-spec/node_modules/json-stringify-pretty-compact": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/json-stringify-pretty-compact/-/json-stringify-pretty-compact-4.0.0.tgz", - "integrity": "sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==" + "license": "MIT" }, "node_modules/@maplibre/maplibre-gl-style-spec/node_modules/sort-asc": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/sort-asc/-/sort-asc-0.2.0.tgz", - "integrity": "sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/@maplibre/maplibre-gl-style-spec/node_modules/sort-desc": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/sort-desc/-/sort-desc-0.2.0.tgz", - "integrity": "sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/@maplibre/maplibre-gl-style-spec/node_modules/sort-object": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/sort-object/-/sort-object-3.0.3.tgz", - "integrity": "sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ==", + "license": "MIT", "dependencies": { "bytewise": "^1.1.0", "get-value": "^2.0.2", @@ -3401,6 +3550,21 @@ "node_modules/@michaellangbein/jsonix": { "version": "3.0.1-SNAPSHOT-3" }, + "node_modules/@ngtools/webpack": { + "version": "17.3.8", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.13.0 || >=20.9.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + }, + "peerDependencies": { + "@angular/compiler-cli": "^17.0.0", + "typescript": ">=5.2 <5.5", + "webpack": "^5.54.0" + } + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "dev": true, @@ -3433,8 +3597,26 @@ "node": ">= 8" } }, + "node_modules/@npmcli/agent": { + "version": "2.2.2", + "license": "ISC", + "dependencies": { + "agent-base": "^7.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.1", + "lru-cache": "^10.0.1", + "socks-proxy-agent": "^8.0.3" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/agent/node_modules/lru-cache": { + "version": "10.4.3", + "license": "ISC" + }, "node_modules/@npmcli/fs": { - "version": "3.1.0", + "version": "3.1.1", "license": "ISC", "dependencies": { "semver": "^7.3.5" @@ -3444,132 +3626,181 @@ } }, "node_modules/@npmcli/git": { - "version": "4.1.0", + "version": "5.0.8", "license": "ISC", "dependencies": { - "@npmcli/promise-spawn": "^6.0.0", - "lru-cache": "^7.4.4", - "npm-pick-manifest": "^8.0.0", - "proc-log": "^3.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "ini": "^4.1.3", + "lru-cache": "^10.0.1", + "npm-pick-manifest": "^9.0.0", + "proc-log": "^4.0.0", "promise-inflight": "^1.0.1", "promise-retry": "^2.0.1", "semver": "^7.3.5", - "which": "^3.0.0" + "which": "^4.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@npmcli/git/node_modules/lru-cache": { - "version": "7.18.3", + "node_modules/@npmcli/git/node_modules/ini": { + "version": "4.1.3", "license": "ISC", "engines": { - "node": ">=12" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@npmcli/git/node_modules/which": { - "version": "3.0.1", + "node_modules/@npmcli/git/node_modules/isexe": { + "version": "3.1.1", "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { + "engines": { + "node": ">=16" + } + }, + "node_modules/@npmcli/git/node_modules/lru-cache": { + "version": "10.4.3", + "license": "ISC" + }, + "node_modules/@npmcli/git/node_modules/proc-log": { + "version": "4.2.0", + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/git/node_modules/which": { + "version": "4.0.0", + "license": "ISC", + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { "node-which": "bin/which.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.13.0 || >=18.0.0" } }, "node_modules/@npmcli/installed-package-contents": { - "version": "2.0.2", + "version": "2.1.0", "license": "ISC", "dependencies": { "npm-bundled": "^3.0.0", "npm-normalize-package-bin": "^3.0.0" }, "bin": { - "installed-package-contents": "lib/index.js" + "installed-package-contents": "bin/index.js" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@npmcli/move-file": { - "version": "2.0.1", - "license": "MIT", + "node_modules/@npmcli/node-gyp": { + "version": "3.0.0", + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/package-json": { + "version": "5.2.0", + "license": "ISC", "dependencies": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" + "@npmcli/git": "^5.0.0", + "glob": "^10.2.2", + "hosted-git-info": "^7.0.0", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "proc-log": "^4.0.0", + "semver": "^7.5.3" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@npmcli/move-file/node_modules/mkdirp": { - "version": "1.0.4", + "node_modules/@npmcli/package-json/node_modules/json-parse-even-better-errors": { + "version": "3.0.2", "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, "engines": { - "node": ">=10" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@npmcli/node-gyp": { - "version": "3.0.0", + "node_modules/@npmcli/package-json/node_modules/proc-log": { + "version": "4.2.0", "license": "ISC", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/@npmcli/promise-spawn": { - "version": "6.0.2", + "version": "7.0.2", "license": "ISC", "dependencies": { - "which": "^3.0.0" + "which": "^4.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/promise-spawn/node_modules/isexe": { + "version": "3.1.1", + "license": "ISC", + "engines": { + "node": ">=16" } }, "node_modules/@npmcli/promise-spawn/node_modules/which": { - "version": "3.0.1", + "version": "4.0.0", "license": "ISC", "dependencies": { - "isexe": "^2.0.0" + "isexe": "^3.1.1" }, "bin": { "node-which": "bin/which.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/redact": { + "version": "1.1.0", + "license": "ISC", + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@npmcli/run-script": { - "version": "6.0.2", + "version": "7.0.4", "license": "ISC", "dependencies": { "@npmcli/node-gyp": "^3.0.0", - "@npmcli/promise-spawn": "^6.0.0", - "node-gyp": "^9.0.0", - "read-package-json-fast": "^3.0.0", - "which": "^3.0.0" + "@npmcli/package-json": "^5.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "node-gyp": "^10.0.0", + "which": "^4.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/run-script/node_modules/isexe": { + "version": "3.1.1", + "license": "ISC", + "engines": { + "node": ">=16" } }, "node_modules/@npmcli/run-script/node_modules/which": { - "version": "3.0.1", + "version": "4.0.0", "license": "ISC", "dependencies": { - "isexe": "^2.0.0" + "isexe": "^3.1.1" }, "bin": { "node-which": "bin/which.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.13.0 || >=18.0.0" } }, "node_modules/@petamoriken/float16": { @@ -3578,7 +3809,8 @@ }, "node_modules/@pkgjs/parseargs": { "version": "0.11.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "optional": true, "engines": { "node": ">=14" @@ -3629,11 +3861,11 @@ "license": "BSD-3-Clause" }, "node_modules/@rollup/plugin-json": { - "version": "6.0.1", + "version": "6.1.0", "dev": true, "license": "MIT", "dependencies": { - "@rollup/pluginutils": "^5.0.1" + "@rollup/pluginutils": "^5.1.0" }, "engines": { "node": ">=14.0.0" @@ -3692,175 +3924,123 @@ } } }, - "node_modules/@schematics/angular": { - "version": "16.2.10", + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.18.1", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/wasm-node": { + "version": "4.18.1", + "dev": true, "license": "MIT", "dependencies": { - "@angular-devkit/core": "16.2.10", - "@angular-devkit/schematics": "16.2.10", - "jsonc-parser": "3.2.0" + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" }, "engines": { - "node": "^16.14.0 || >=18.10.0", - "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", - "yarn": ">= 1.13.0" + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/@sigstore/bundle": { - "version": "1.1.0", - "license": "Apache-2.0", + "node_modules/@schematics/angular": { + "version": "17.3.8", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-17.3.8.tgz", + "integrity": "sha512-2g4OmSyE9YGq50Uj7fNI26P/TSAFJ7ZuirwTF2O7Xc4XRQ29/tYIIqhezpNlTb6rlYblcQuMcUZBrMfWJHcqJw==", "dependencies": { - "@sigstore/protobuf-specs": "^0.2.0" + "@angular-devkit/core": "17.3.8", + "@angular-devkit/schematics": "17.3.8", + "jsonc-parser": "3.2.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^18.13.0 || >=20.9.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" } }, - "node_modules/@sigstore/protobuf-specs": { - "version": "0.2.1", - "license": "Apache-2.0", - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } + "node_modules/@schematics/angular/node_modules/jsonc-parser": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", + "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==" }, - "node_modules/@sigstore/sign": { - "version": "1.0.0", + "node_modules/@sigstore/bundle": { + "version": "2.3.2", "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^1.1.0", - "@sigstore/protobuf-specs": "^0.2.0", - "make-fetch-happen": "^11.0.1" + "@sigstore/protobuf-specs": "^0.3.2" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@sigstore/sign/node_modules/@tootallnate/once": { - "version": "2.0.0", - "license": "MIT", + "node_modules/@sigstore/core": { + "version": "1.1.0", + "license": "Apache-2.0", "engines": { - "node": ">= 10" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@sigstore/sign/node_modules/cacache": { - "version": "17.1.4", - "license": "ISC", - "dependencies": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^7.7.1", - "minipass": "^7.0.3", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" - }, + "node_modules/@sigstore/protobuf-specs": { + "version": "0.3.2", + "license": "Apache-2.0", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@sigstore/sign/node_modules/http-proxy-agent": { - "version": "5.0.0", - "license": "MIT", + "node_modules/@sigstore/sign": { + "version": "2.3.2", + "license": "Apache-2.0", "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" + "@sigstore/bundle": "^2.3.2", + "@sigstore/core": "^1.0.0", + "@sigstore/protobuf-specs": "^0.3.2", + "make-fetch-happen": "^13.0.1", + "proc-log": "^4.2.0", + "promise-retry": "^2.0.1" }, "engines": { - "node": ">= 6" - } - }, - "node_modules/@sigstore/sign/node_modules/lru-cache": { - "version": "7.18.3", - "license": "ISC", - "engines": { - "node": ">=12" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@sigstore/sign/node_modules/make-fetch-happen": { - "version": "11.1.1", + "node_modules/@sigstore/sign/node_modules/proc-log": { + "version": "4.2.0", "license": "ISC", - "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "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.0" - }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@sigstore/sign/node_modules/make-fetch-happen/node_modules/minipass": { - "version": "5.0.0", - "license": "ISC", - "engines": { - "node": ">=8" - } - }, - "node_modules/@sigstore/sign/node_modules/minipass-collect": { - "version": "1.0.2", - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@sigstore/sign/node_modules/minipass-collect/node_modules/minipass": { - "version": "3.3.6", - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@sigstore/sign/node_modules/minipass-fetch": { - "version": "3.0.4", - "license": "MIT", + "node_modules/@sigstore/tuf": { + "version": "2.3.4", + "license": "Apache-2.0", "dependencies": { - "minipass": "^7.0.3", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" + "@sigstore/protobuf-specs": "^0.3.2", + "tuf-js": "^2.2.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - }, - "optionalDependencies": { - "encoding": "^0.1.13" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/@sigstore/sign/node_modules/yallist": { - "version": "4.0.0", - "license": "ISC" - }, - "node_modules/@sigstore/tuf": { - "version": "1.0.3", + "node_modules/@sigstore/verify": { + "version": "1.2.1", "license": "Apache-2.0", "dependencies": { - "@sigstore/protobuf-specs": "^0.2.0", - "tuf-js": "^1.1.7" + "@sigstore/bundle": "^2.3.2", + "@sigstore/core": "^1.1.0", + "@sigstore/protobuf-specs": "^0.3.2" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@socket.io/component-emitter": { @@ -3870,8 +4050,9 @@ }, "node_modules/@thednp/event-listener": { "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@thednp/event-listener/-/event-listener-2.0.4.tgz", + "integrity": "sha512-sc4B7AzYAIvnGnivirq0XyR7LfzEDhGiiB70Q0qdNn8wSJ2pL1buVAsEZxrlc47qRJiBV4YIP+BFkyMm2r3NLg==", "dev": true, - "license": "MIT", "engines": { "node": ">=16", "pnpm": ">=8.6.0" @@ -3879,58 +4060,55 @@ }, "node_modules/@thednp/shorty": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@thednp/shorty/-/shorty-2.0.0.tgz", + "integrity": "sha512-kwtLivCxYIoFfGIVU4NlZtfdA/zxZ6X8UcWaJrb7XqU3WQ4Q1p5IaZlLBfOVAO06WH5oWE87QUdK/dS56Wnfjg==", "dev": true, - "license": "MIT", "engines": { "node": ">=16", "pnpm": ">=8.6.0" } }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, "node_modules/@ts-morph/common": { - "version": "0.21.0", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.23.0.tgz", + "integrity": "sha512-m7Lllj9n/S6sOkCkRftpM7L24uvmfXQFedlW/4hENcuJH1HHm9u5EgxZb9uVjQSCGrbBWBkOGgcTxNg36r6ywA==", "dev": true, - "license": "MIT", "dependencies": { - "fast-glob": "^3.2.12", - "minimatch": "^7.4.3", - "mkdirp": "^2.1.6", + "fast-glob": "^3.3.2", + "minimatch": "^9.0.3", + "mkdirp": "^3.0.1", "path-browserify": "^1.0.1" } }, "node_modules/@ts-morph/common/node_modules/brace-expansion": { "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/@ts-morph/common/node_modules/minimatch": { - "version": "7.4.6", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, - "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/@ts-morph/common/node_modules/mkdirp": { - "version": "2.1.6", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", "dev": true, - "license": "MIT", "bin": { "mkdirp": "dist/cjs/src/bin.js" }, @@ -3942,21 +4120,21 @@ } }, "node_modules/@tufjs/canonical-json": { - "version": "1.0.0", + "version": "2.0.0", "license": "MIT", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@tufjs/models": { - "version": "1.0.4", + "version": "2.0.1", "license": "MIT", "dependencies": { - "@tufjs/canonical-json": "1.0.0", - "minimatch": "^9.0.0" + "@tufjs/canonical-json": "2.0.0", + "minimatch": "^9.0.4" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@tufjs/models/node_modules/brace-expansion": { @@ -3967,7 +4145,7 @@ } }, "node_modules/@tufjs/models/node_modules/minimatch": { - "version": "9.0.3", + "version": "9.0.5", "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" @@ -3981,8 +4159,7 @@ }, "node_modules/@tweenjs/tween.js": { "version": "23.1.2", - "resolved": "https://registry.npmjs.org/@tweenjs/tween.js/-/tween.js-23.1.2.tgz", - "integrity": "sha512-kMCNaZCJugWI86xiEHaY338CU5JpD0B97p1j1IKNn/Zto8PgACjQx0UxbHjmOcLl/dDOBnItwD07KmCs75pxtQ==" + "license": "MIT" }, "node_modules/@types/body-parser": { "version": "1.19.5", @@ -4031,14 +4208,6 @@ "@types/node": "*" } }, - "node_modules/@types/cpx": { - "version": "1.5.5", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/eslint": { "version": "8.44.8", "dev": true, @@ -4074,7 +4243,7 @@ } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.41", + "version": "4.19.5", "dev": true, "license": "MIT", "dependencies": { @@ -4086,13 +4255,11 @@ }, "node_modules/@types/geojson": { "version": "7946.0.14", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.14.tgz", - "integrity": "sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==" + "license": "MIT" }, "node_modules/@types/geojson-vt": { "version": "3.2.5", - "resolved": "https://registry.npmjs.org/@types/geojson-vt/-/geojson-vt-3.2.5.tgz", - "integrity": "sha512-qDO7wqtprzlpe8FfQ//ClPV9xiuoh2nkIgiouIptON9w5jvD/fA4szvP9GBlDVdJ5dldAl0kX/sy3URbWwLx0g==", + "license": "MIT", "dependencies": { "@types/geojson": "*" } @@ -4130,8 +4297,7 @@ }, "node_modules/@types/junit-report-builder": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@types/junit-report-builder/-/junit-report-builder-3.0.2.tgz", - "integrity": "sha512-R5M+SYhMbwBeQcNXYWNCZkl09vkVfAtcPIaCGdzIkkbeaTrVbGQ7HVgi4s+EmM/M1K4ZuWQH0jGcvMvNePfxYA==" + "license": "MIT" }, "node_modules/@types/mapbox__point-geometry": { "version": "0.1.4", @@ -4156,14 +4322,15 @@ "license": "MIT" }, "node_modules/@types/node": { - "version": "20.10.1", - "license": "MIT", + "version": "20.14.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.10.tgz", + "integrity": "sha512-MdiXf+nDuMvY0gJKxyfZ7/6UFsETO7mGKF54MVD/ekJS6HdFtpZFBgrh6Pseu64XTb2MLyFPlbW6hj8HYRQNOQ==", "dependencies": { "undici-types": "~5.26.4" } }, "node_modules/@types/node-forge": { - "version": "1.3.10", + "version": "1.3.11", "dev": true, "license": "MIT", "dependencies": { @@ -4189,7 +4356,7 @@ "license": "MIT" }, "node_modules/@types/qs": { - "version": "6.9.10", + "version": "6.9.15", "dev": true, "license": "MIT" }, @@ -4231,13 +4398,13 @@ } }, "node_modules/@types/serve-static": { - "version": "1.15.5", + "version": "1.15.7", "dev": true, "license": "MIT", "dependencies": { "@types/http-errors": "*", - "@types/mime": "*", - "@types/node": "*" + "@types/node": "*", + "@types/send": "*" } }, "node_modules/@types/sockjs": { @@ -4273,14 +4440,14 @@ } }, "node_modules/@vitejs/plugin-basic-ssl": { - "version": "1.0.1", + "version": "1.1.0", "dev": true, "license": "MIT", "engines": { "node": ">=14.6.0" }, "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0" + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" } }, "node_modules/@vue/compiler-core": { @@ -4317,16 +4484,6 @@ "source-map-js": "^1.0.2" } }, - "node_modules/@vue/compiler-sfc/node_modules/magic-string": { - "version": "0.30.5", - "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/@vue/compiler-ssr": { "version": "3.3.9", "license": "MIT", @@ -4346,16 +4503,6 @@ "magic-string": "^0.30.5" } }, - "node_modules/@vue/reactivity-transform/node_modules/magic-string": { - "version": "0.30.5", - "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/@vue/shared": { "version": "3.3.9", "license": "MIT" @@ -4491,104 +4638,13 @@ "@xtuc/long": "4.2.2" } }, - "node_modules/@webcomponents/custom-elements": { - "version": "1.6.0", - "license": "BSD-3-Clause", - "peer": true - }, "node_modules/@webcomponents/webcomponentsjs": { "version": "2.8.0", "license": "BSD-3-Clause" }, - "node_modules/@wessberg/ts-evaluator": { - "version": "0.0.27", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "jsdom": "^16.4.0", - "object-path": "^0.11.5", - "tslib": "^2.0.3" - }, - "engines": { - "node": ">=10.1.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/wessberg/ts-evaluator?sponsor=1" - }, - "peerDependencies": { - "typescript": ">=3.2.x || >= 4.x" - } - }, - "node_modules/@wessberg/ts-evaluator/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@wessberg/ts-evaluator/node_modules/chalk": { - "version": "4.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@wessberg/ts-evaluator/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@wessberg/ts-evaluator/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "license": "MIT" - }, - "node_modules/@wessberg/ts-evaluator/node_modules/has-flag": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@wessberg/ts-evaluator/node_modules/supports-color": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@xmldom/xmldom": { "version": "0.8.10", - "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.10.tgz", - "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==", + "license": "MIT", "engines": { "node": ">=10.0.0" } @@ -4609,22 +4665,19 @@ }, "node_modules/@zip.js/zip.js": { "version": "2.7.45", - "resolved": "https://registry.npmjs.org/@zip.js/zip.js/-/zip.js-2.7.45.tgz", - "integrity": "sha512-Mm2EXF33DJQ/3GWWEWeP1UCqzpQ5+fiMvT3QWspsXY05DyqqxWu7a9awSzU4/spHMHVFrTjani1PR0vprgZpow==", + "license": "BSD-3-Clause", "engines": { "bun": ">=0.7.0", "deno": ">=1.0.0", "node": ">=16.5.0" } }, - "node_modules/abab": { - "version": "2.0.6", - "dev": true, - "license": "BSD-3-Clause" - }, "node_modules/abbrev": { - "version": "1.1.1", - "license": "ISC" + "version": "2.0.0", + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, "node_modules/accepts": { "version": "1.3.8", @@ -4649,26 +4702,6 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-globals": { - "version": "6.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" - } - }, - "node_modules/acorn-globals/node_modules/acorn": { - "version": "7.4.1", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/acorn-import-assertions": { "version": "1.9.0", "dev": true, @@ -4677,35 +4710,6 @@ "acorn": "^8" } }, - "node_modules/acorn-node": { - "version": "1.8.2", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "xtend": "^4.0.2" - } - }, - "node_modules/acorn-node/node_modules/acorn": { - "version": "7.4.1", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-walk": { - "version": "7.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/adjust-sourcemap-loader": { "version": "4.0.0", "dev": true, @@ -4740,23 +4744,13 @@ } }, "node_modules/agent-base": { - "version": "6.0.2", - "license": "MIT", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/agentkeepalive": { - "version": "4.5.0", + "version": "7.1.1", "license": "MIT", "dependencies": { - "humanize-ms": "^1.2.1" + "debug": "^4.3.4" }, "engines": { - "node": ">= 8.0.0" + "node": ">= 14" } }, "node_modules/aggregate-error": { @@ -4904,21 +4898,6 @@ "node": ">= 6.0.0" } }, - "node_modules/aproba": { - "version": "2.0.0", - "license": "ISC" - }, - "node_modules/are-we-there-yet": { - "version": "3.0.1", - "license": "ISC", - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, "node_modules/arg": { "version": "4.1.3", "dev": true, @@ -4949,30 +4928,27 @@ "dev": true, "license": "MIT" }, - "node_modules/arr-diff": { - "version": "2.0.0", - "dev": true, + "node_modules/arr-union": { + "version": "3.1.0", "license": "MIT", - "dependencies": { - "arr-flatten": "^1.0.1" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/arr-flatten": { - "version": "1.1.0", + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-union": { - "version": "3.1.0", - "license": "MIT", + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/array-differ": { @@ -4983,12 +4959,7 @@ } }, "node_modules/array-flatten": { - "version": "2.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/array-from": { - "version": "2.1.1", + "version": "1.1.1", "dev": true, "license": "MIT" }, @@ -5007,12 +4978,26 @@ "node": ">=0.10.0" } }, - "node_modules/array-unique": { - "version": "0.2.1", + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", "dev": true, - "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/arrify": { @@ -5045,148 +5030,72 @@ "node": ">=0.10.0" } }, - "node_modules/ast-transform": { - "version": "0.0.0", + "node_modules/ast-types-flow": { + "version": "0.0.7", + "dev": true, + "license": "ISC" + }, + "node_modules/asynckit": { + "version": "0.4.0", "dev": true, + "license": "MIT" + }, + "node_modules/autolinker": { + "version": "4.0.0", "license": "MIT", "dependencies": { - "escodegen": "~1.2.0", - "esprima": "~1.0.4", - "through": "~2.3.4" + "tslib": "^2.3.0" } }, - "node_modules/ast-transform/node_modules/escodegen": { - "version": "1.2.0", + "node_modules/autoprefixer": { + "version": "10.4.18", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", "dependencies": { - "esprima": "~1.0.4", - "estraverse": "~1.5.0", - "esutils": "~1.0.0" + "browserslist": "^4.23.0", + "caniuse-lite": "^1.0.30001591", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" }, "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" + "autoprefixer": "bin/autoprefixer" }, "engines": { - "node": ">=0.4.0" + "node": "^10 || ^12 || >=14" }, - "optionalDependencies": { - "source-map": "~0.1.30" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/ast-transform/node_modules/esprima": { - "version": "1.0.4", + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" + "dependencies": { + "possible-typed-array-names": "^1.0.0" }, "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/ast-transform/node_modules/estraverse": { - "version": "1.5.1", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/ast-transform/node_modules/esutils": { - "version": "1.0.0", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ast-transform/node_modules/source-map": { - "version": "0.1.43", - "dev": true, - "optional": true, - "dependencies": { - "amdefine": ">=0.0.4" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/ast-types": { - "version": "0.7.8", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/ast-types-flow": { - "version": "0.0.7", - "dev": true, - "license": "ISC" - }, - "node_modules/async-each": { - "version": "1.0.6", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "license": "MIT" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "dev": true, - "license": "MIT" - }, - "node_modules/atob": { - "version": "2.1.2", - "dev": true, - "license": "(MIT OR Apache-2.0)", - "bin": { - "atob": "bin/atob.js" - }, - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/autolinker": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "tslib": "^2.3.0" - } - }, - "node_modules/autoprefixer": { - "version": "10.4.14", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - } - ], - "license": "MIT", - "dependencies": { - "browserslist": "^4.21.5", - "caniuse-lite": "^1.0.30001464", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" + "node": ">= 0.4" }, - "peerDependencies": { - "postcss": "^8.1.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/aws-sign2": { @@ -5242,12 +5151,12 @@ } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.6", + "version": "0.4.11", "dev": true, "license": "MIT", "dependencies": { "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.4.3", + "@babel/helper-define-polyfill-provider": "^0.6.2", "semver": "^6.3.1" }, "peerDependencies": { @@ -5263,74 +5172,62 @@ } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.8.6", + "version": "0.9.0", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.3", - "core-js-compat": "^3.33.1" + "@babel/helper-define-polyfill-provider": "^0.5.0", + "core-js-compat": "^3.34.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.3", + "node_modules/babel-plugin-polyfill-corejs3/node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.5.0", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.3" + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/babel-runtime": { - "version": "6.26.0", - "dev": true, - "license": "MIT", - "dependencies": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - } - }, - "node_modules/babel-runtime/node_modules/regenerator-runtime": { - "version": "0.11.1", - "dev": true, - "license": "MIT" - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/base": { - "version": "0.11.2", + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.5", "dev": true, "license": "MIT", "dependencies": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" + "@babel/helper-define-polyfill-provider": "^0.5.0" }, - "engines": { - "node": ">=0.10.0" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", + "node_modules/babel-plugin-polyfill-regenerator/node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.5.0", "dev": true, "license": "MIT", "dependencies": { - "is-descriptor": "^1.0.0" + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" }, - "engines": { - "node": ">=0.10.0" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, + "node_modules/balanced-match": { + "version": "1.0.2", + "license": "MIT" + }, "node_modules/base64-js": { "version": "1.5.1", "funding": [ @@ -5482,12 +5379,10 @@ } }, "node_modules/bonjour-service": { - "version": "1.1.1", + "version": "1.2.1", "dev": true, "license": "MIT", "dependencies": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", "fast-deep-equal": "^3.1.3", "multicast-dns": "^7.2.5" } @@ -5498,9 +5393,10 @@ "license": "ISC" }, "node_modules/bootstrap.native": { - "version": "5.0.11", + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/bootstrap.native/-/bootstrap.native-5.0.12.tgz", + "integrity": "sha512-qTiFBK7//IgdF9u67w3W91U8C2Fc3TGQh61xa0pbtHmD1YRncncFNNs+6ewG2tW7fBGGMXg57gj5d9Qamr0S+w==", "dev": true, - "license": "MIT", "dependencies": { "@thednp/event-listener": "^2.0.4", "@thednp/shorty": "^2.0.0" @@ -5528,58 +5424,17 @@ "node": ">=8" } }, - "node_modules/brfs": { - "version": "2.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "quote-stream": "^1.0.1", - "resolve": "^1.1.5", - "static-module": "^3.0.2", - "through2": "^2.0.0" - }, - "bin": { - "brfs": "bin/cmd.js" - } - }, "node_modules/brotli": { "version": "1.3.3", + "resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz", + "integrity": "sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==", "dev": true, - "license": "MIT", "dependencies": { "base64-js": "^1.1.2" } }, - "node_modules/browser-process-hrtime": { - "version": "1.0.0", - "dev": true, - "license": "BSD-2-Clause" - }, - "node_modules/browser-resolve": { - "version": "1.11.3", - "dev": true, - "license": "MIT", - "dependencies": { - "resolve": "1.1.7" - } - }, - "node_modules/browser-resolve/node_modules/resolve": { - "version": "1.1.7", - "dev": true, - "license": "MIT" - }, - "node_modules/browserify-optional": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "ast-transform": "0.0.0", - "ast-types": "^0.7.0", - "browser-resolve": "^1.8.1" - } - }, "node_modules/browserslist": { - "version": "4.22.1", + "version": "4.23.2", "dev": true, "funding": [ { @@ -5597,10 +5452,10 @@ ], "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001640", + "electron-to-chromium": "^1.4.820", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.1.0" }, "bin": { "browserslist": "cli.js" @@ -5670,14 +5525,6 @@ "ieee754": "^1.1.13" } }, - "node_modules/buffer-equal": { - "version": "0.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/buffer-from": { "version": "1.1.2", "license": "MIT" @@ -5693,13 +5540,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/builtins": { - "version": "5.0.1", - "license": "MIT", - "dependencies": { - "semver": "^7.0.0" - } - }, "node_modules/bytes": { "version": "3.1.2", "dev": true, @@ -5710,8 +5550,7 @@ }, "node_modules/bytewise": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/bytewise/-/bytewise-1.1.0.tgz", - "integrity": "sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ==", + "license": "MIT", "dependencies": { "bytewise-core": "^1.2.2", "typewise": "^1.0.3" @@ -5719,15 +5558,13 @@ }, "node_modules/bytewise-core": { "version": "1.2.3", - "resolved": "https://registry.npmjs.org/bytewise-core/-/bytewise-core-1.2.3.tgz", - "integrity": "sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA==", + "license": "MIT", "dependencies": { "typewise-core": "^1.2" } }, "node_modules/cacache": { - "version": "18.0.1", - "dev": true, + "version": "18.0.3", "license": "ISC", "dependencies": { "@npmcli/fs": "^3.1.0", @@ -5748,40 +5585,21 @@ } }, "node_modules/cacache/node_modules/lru-cache": { - "version": "10.1.0", - "dev": true, - "license": "ISC", - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/cache-base": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } + "version": "10.4.3", + "license": "ISC" }, "node_modules/call-bind": { - "version": "1.0.5", - "dev": true, + "version": "1.0.7", "license": "MIT", "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -5809,7 +5627,7 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001565", + "version": "1.0.30001641", "dev": true, "funding": [ { @@ -5892,15 +5710,10 @@ } }, "node_modules/chokidar": { - "version": "3.5.3", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "devOptional": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "license": "MIT", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -5913,6 +5726,9 @@ "engines": { "node": ">= 8.10.0" }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, "optionalDependencies": { "fsevents": "~2.3.2" } @@ -5932,43 +5748,6 @@ "node": ">=6.0" } }, - "node_modules/class-utils": { - "version": "0.3.6", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-descriptor": { - "version": "0.1.7", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, "node_modules/clean-stack": { "version": "2.2.0", "license": "MIT", @@ -5997,10 +5776,10 @@ } }, "node_modules/cli-width": { - "version": "3.0.0", + "version": "4.1.0", "license": "ISC", "engines": { - "node": ">= 10" + "node": ">= 12" } }, "node_modules/cliui": { @@ -6036,9 +5815,10 @@ } }, "node_modules/code-block-writer": { - "version": "12.0.0", - "dev": true, - "license": "MIT" + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-13.0.1.tgz", + "integrity": "sha512-c5or4P6erEA69TxaxTNcHUNcIn+oyxSRTOWV+pSYF+z4epXqNvwvJ70XPGjPNgue83oAFAPBRQYwpAJ/Hpe/Sg==", + "dev": true }, "node_modules/codelyzer": { "version": "6.0.2", @@ -6113,18 +5893,6 @@ "dev": true, "license": "MIT" }, - "node_modules/collection-visit": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/color-convert": { "version": "1.9.3", "license": "MIT", @@ -6138,24 +5906,21 @@ }, "node_modules/color-parse": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/color-parse/-/color-parse-2.0.2.tgz", - "integrity": "sha512-eCtOz5w5ttWIUcaKLiktF+DxZO1R9KLNY/xhbV6CkhM7sR3GhVghmt6X6yOnzeaM24po+Z9/S1apbXMwA3Iepw==", + "license": "MIT", "dependencies": { "color-name": "^2.0.0" } }, "node_modules/color-parse/node_modules/color-name": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-2.0.0.tgz", - "integrity": "sha512-SbtvAMWvASO5TE2QP07jHBMXKafgdZz8Vrsrn96fiL+O92/FN/PLARzUW5sKt013fjAprK2d2iCn2hk2Xb5oow==", + "license": "MIT", "engines": { "node": ">=12.20" } }, "node_modules/color-rgba": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/color-rgba/-/color-rgba-3.0.0.tgz", - "integrity": "sha512-PPwZYkEY3M2THEHHV6Y95sGUie77S7X8v+h1r6LSAPF3/LL2xJ8duUXSrkic31Nzc4odPwHgUbiX/XuTYzQHQg==", + "license": "MIT", "dependencies": { "color-parse": "^2.0.0", "color-space": "^2.0.0" @@ -6163,11 +5928,11 @@ }, "node_modules/color-space": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-space/-/color-space-2.0.1.tgz", - "integrity": "sha512-nKqUYlo0vZATVOFHY810BSYjmCARrG7e5R3UE3CQlyjJTvv5kSSmPG1kzm/oDyyqjehM+lW1RnEt9It9GNa5JA==" + "license": "MIT" }, "node_modules/color-support": { "version": "1.1.3", + "dev": true, "license": "ISC", "bin": { "color-support": "bin.js" @@ -6198,11 +5963,12 @@ } }, "node_modules/commander": { - "version": "11.1.0", + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", + "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", "dev": true, - "license": "MIT", "engines": { - "node": ">=16" + "node": ">=18" } }, "node_modules/common-path-prefix": { @@ -6215,14 +5981,6 @@ "dev": true, "license": "MIT" }, - "node_modules/component-emitter": { - "version": "1.3.1", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/compressible": { "version": "2.0.18", "dev": true, @@ -6281,47 +6039,6 @@ "version": "0.0.1", "license": "MIT" }, - "node_modules/concat-stream": { - "version": "1.6.2", - "dev": true, - "engines": [ - "node >= 0.8" - ], - "license": "MIT", - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/concat-stream/node_modules/readable-stream": { - "version": "2.3.8", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/concat-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/concat-stream/node_modules/string_decoder": { - "version": "1.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/connect": { "version": "3.7.0", "dev": true, @@ -6357,10 +6074,6 @@ "dev": true, "license": "MIT" }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "license": "ISC" - }, "node_modules/content-disposition": { "version": "0.5.4", "dev": true, @@ -6390,587 +6103,135 @@ "dev": true, "license": "MIT", "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "dev": true, - "license": "MIT" - }, - "node_modules/copy-anything": { - "version": "2.0.6", - "dev": true, - "license": "MIT", - "dependencies": { - "is-what": "^3.14.1" - }, - "funding": { - "url": "https://github.com/sponsors/mesqueeb" - } - }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/copy-webpack-plugin": { - "version": "11.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-glob": "^3.2.11", - "glob-parent": "^6.0.1", - "globby": "^13.1.1", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" - }, - "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - } - }, - "node_modules/copy-webpack-plugin/node_modules/glob-parent": { - "version": "6.0.2", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/core-js": { - "version": "2.6.12", - "dev": true, - "hasInstallScript": true, - "license": "MIT" - }, - "node_modules/core-js-compat": { - "version": "3.33.3", - "dev": true, - "license": "MIT", - "dependencies": { - "browserslist": "^4.22.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.2", - "dev": true, - "license": "MIT" - }, - "node_modules/cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "dev": true, - "dependencies": { - "object-assign": "^4", - "vary": "^1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/cosmiconfig": { - "version": "8.3.6", - "dev": true, - "license": "MIT", - "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/cosmiconfig/node_modules/argparse": { - "version": "2.0.1", - "dev": true, - "license": "Python-2.0" - }, - "node_modules/cosmiconfig/node_modules/js-yaml": { - "version": "4.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/cpx": { - "version": "1.5.0", - "dev": true, - "license": "MIT", - "dependencies": { - "babel-runtime": "^6.9.2", - "chokidar": "^1.6.0", - "duplexer": "^0.1.1", - "glob": "^7.0.5", - "glob2base": "^0.0.12", - "minimatch": "^3.0.2", - "mkdirp": "^0.5.1", - "resolve": "^1.1.7", - "safe-buffer": "^5.0.1", - "shell-quote": "^1.6.1", - "subarg": "^1.0.0" - }, - "bin": { - "cpx": "bin/index.js" - } - }, - "node_modules/cpx/node_modules/anymatch": { - "version": "1.3.2", - "dev": true, - "license": "ISC", - "dependencies": { - "micromatch": "^2.1.5", - "normalize-path": "^2.0.0" - } - }, - "node_modules/cpx/node_modules/binary-extensions": { - "version": "1.13.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/braces": { - "version": "1.8.5", - "dev": true, - "license": "MIT", - "dependencies": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/chokidar": { - "version": "1.7.0", - "dev": true, - "license": "MIT", - "dependencies": { - "anymatch": "^1.3.0", - "async-each": "^1.0.0", - "glob-parent": "^2.0.0", - "inherits": "^2.0.1", - "is-binary-path": "^1.0.0", - "is-glob": "^2.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.0.0" - }, - "optionalDependencies": { - "fsevents": "^1.0.0" - } - }, - "node_modules/cpx/node_modules/debug": { - "version": "2.6.9", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/cpx/node_modules/fill-range": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/fill-range/node_modules/extend-shallow": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/glob": { - "version": "7.2.3", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/cpx/node_modules/glob-parent": { - "version": "2.0.0", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^2.0.0" - } - }, - "node_modules/cpx/node_modules/is-binary-path": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "binary-extensions": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/is-extglob": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/is-glob": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/is-number": { - "version": "3.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/kind-of": { - "version": "3.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/micromatch": { - "version": "2.3.11", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/ms": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/cpx/node_modules/normalize-path": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "remove-trailing-separator": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/readable-stream": { - "version": "2.3.8", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/cpx/node_modules/readdirp": { - "version": "2.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/cpx/node_modules/readdirp/node_modules/arr-diff": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/readdirp/node_modules/array-unique": { - "version": "0.3.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/readdirp/node_modules/braces": { - "version": "2.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/readdirp/node_modules/braces/node_modules/extend-shallow": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/readdirp/node_modules/expand-brackets": { - "version": "2.1.4", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/readdirp/node_modules/expand-brackets/node_modules/define-property": { - "version": "0.2.5", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cpx/node_modules/readdirp/node_modules/expand-brackets/node_modules/extend-shallow": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" + "node": ">= 0.6" } }, - "node_modules/cpx/node_modules/readdirp/node_modules/expand-brackets/node_modules/is-descriptor": { - "version": "0.1.7", + "node_modules/cookie-signature": { + "version": "1.0.6", + "dev": true, + "license": "MIT" + }, + "node_modules/copy-anything": { + "version": "2.0.6", "dev": true, "license": "MIT", "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" + "is-what": "^3.14.1" }, - "engines": { - "node": ">= 0.4" + "funding": { + "url": "https://github.com/sponsors/mesqueeb" } }, - "node_modules/cpx/node_modules/readdirp/node_modules/extglob": { - "version": "2.0.4", + "node_modules/copy-webpack-plugin": { + "version": "11.0.0", "dev": true, "license": "MIT", "dependencies": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.1", + "globby": "^13.1.1", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" } }, - "node_modules/cpx/node_modules/readdirp/node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", + "node_modules/copy-webpack-plugin/node_modules/glob-parent": { + "version": "6.0.2", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "is-descriptor": "^1.0.0" + "is-glob": "^4.0.3" }, "engines": { - "node": ">=0.10.0" + "node": ">=10.13.0" } }, - "node_modules/cpx/node_modules/readdirp/node_modules/extglob/node_modules/extend-shallow": { - "version": "2.0.1", + "node_modules/core-js-compat": { + "version": "3.37.1", "dev": true, "license": "MIT", "dependencies": { - "is-extendable": "^0.1.0" + "browserslist": "^4.23.0" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/cpx/node_modules/readdirp/node_modules/kind-of": { - "version": "6.0.3", + "node_modules/core-util-is": { + "version": "1.0.2", "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } + "license": "MIT" }, - "node_modules/cpx/node_modules/readdirp/node_modules/micromatch": { - "version": "3.1.10", + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", "dev": true, - "license": "MIT", "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" + "object-assign": "^4", + "vary": "^1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.10" } }, - "node_modules/cpx/node_modules/safe-buffer": { - "version": "5.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/cpx/node_modules/string_decoder": { - "version": "1.1.1", + "node_modules/cosmiconfig": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", "dev": true, - "license": "MIT", "dependencies": { - "safe-buffer": "~5.1.0" + "env-paths": "^2.2.1", + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/cpx/node_modules/to-regex-range": { - "version": "2.1.1", + "node_modules/cosmiconfig/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/cosmiconfig/node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "license": "MIT", "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" + "argparse": "^2.0.1" }, - "engines": { - "node": ">=0.10.0" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, "node_modules/critters": { - "version": "0.0.20", + "version": "0.0.22", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -6980,7 +6241,7 @@ "domhandler": "^5.0.2", "htmlparser2": "^8.0.2", "postcss": "^8.4.23", - "pretty-bytes": "^5.3.0" + "postcss-media-query-parser": "^0.2.3" } }, "node_modules/critters/node_modules/ansi-styles": { @@ -7068,22 +6329,23 @@ }, "node_modules/crypto-js": { "version": "4.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", + "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==", + "dev": true }, "node_modules/css-loader": { - "version": "6.8.1", + "version": "6.10.0", "dev": true, "license": "MIT", "dependencies": { "icss-utils": "^5.1.0", - "postcss": "^8.4.21", + "postcss": "^8.4.33", "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.3", - "postcss-modules-scope": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.4", + "postcss-modules-scope": "^3.1.1", "postcss-modules-values": "^4.0.0", "postcss-value-parser": "^4.2.0", - "semver": "^7.3.8" + "semver": "^7.5.4" }, "engines": { "node": ">= 12.13.0" @@ -7093,7 +6355,16 @@ "url": "https://opencollective.com/webpack" }, "peerDependencies": { + "@rspack/core": "0.x || 1.x", "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, "node_modules/css-select": { @@ -7154,32 +6425,6 @@ "node": ">=4" } }, - "node_modules/cssom": { - "version": "0.4.4", - "dev": true, - "license": "MIT" - }, - "node_modules/cssstyle": { - "version": "2.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "cssom": "~0.3.6" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "dev": true, - "license": "MIT" - }, - "node_modules/cuint": { - "version": "0.2.2", - "dev": true, - "license": "MIT" - }, "node_modules/custom-event": { "version": "1.0.1", "dev": true, @@ -7198,11 +6443,6 @@ "dev": true, "license": "BSD-2-Clause" }, - "node_modules/dash-ast": { - "version": "2.0.1", - "dev": true, - "license": "Apache-2.0" - }, "node_modules/dashdash": { "version": "1.14.1", "dev": true, @@ -7214,17 +6454,55 @@ "node": ">=0.10" } }, - "node_modules/data-urls": { - "version": "2.0.0", + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", "dev": true, - "license": "MIT", "dependencies": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/date-format": { @@ -7266,23 +6544,11 @@ "node": ">=0.10.0" } }, - "node_modules/decimal.js": { - "version": "10.4.3", - "dev": true, - "license": "MIT" - }, - "node_modules/decode-uri-component": { - "version": "0.2.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10" - } - }, "node_modules/deep-equal": { "version": "1.1.2", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz", + "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==", "dev": true, - "license": "MIT", "dependencies": { "is-arguments": "^1.1.1", "is-date-object": "^1.0.5", @@ -7298,11 +6564,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "dev": true, - "license": "MIT" - }, "node_modules/deepmerge": { "version": "4.3.1", "dev": true, @@ -7333,16 +6594,18 @@ } }, "node_modules/define-data-property": { - "version": "1.1.1", - "dev": true, + "version": "1.1.4", "license": "MIT", "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/define-lazy-prop": { @@ -7354,8 +6617,9 @@ }, "node_modules/define-properties": { "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, - "license": "MIT", "dependencies": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", @@ -7368,18 +6632,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/define-property": { - "version": "2.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/del": { "version": "2.2.2", "dev": true, @@ -7463,10 +6715,11 @@ } }, "node_modules/delaunator": { - "version": "5.0.0", - "license": "ISC", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz", + "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==", "dependencies": { - "robust-predicates": "^3.0.0" + "robust-predicates": "^3.0.2" } }, "node_modules/delayed-stream": { @@ -7477,10 +6730,6 @@ "node": ">=0.4.0" } }, - "node_modules/delegates": { - "version": "1.0.0", - "license": "MIT" - }, "node_modules/demo-auth": { "resolved": "projects/demo-auth", "link": true @@ -7577,21 +6826,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/depcheck/node_modules/resolve": { - "version": "1.22.8", - "license": "MIT", - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/depcheck/node_modules/yargs": { "version": "16.2.0", "license": "MIT", @@ -7624,11 +6858,11 @@ } }, "node_modules/dependency-graph": { - "version": "0.11.0", + "version": "1.0.0", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.6.0" + "node": ">=4" } }, "node_modules/deps-regex": { @@ -7658,8 +6892,9 @@ }, "node_modules/dfa": { "version": "1.2.0", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz", + "integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==", + "dev": true }, "node_modules/di": { "version": "0.0.1", @@ -7685,11 +6920,6 @@ "node": ">=8" } }, - "node_modules/dns-equal": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, "node_modules/dns-packet": { "version": "5.6.1", "dev": true, @@ -7728,32 +6958,13 @@ "node_modules/domelementtype": { "version": "2.3.0", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "BSD-2-Clause" - }, - "node_modules/domexception": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "webidl-conversions": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "5.0.0", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=8" - } + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" }, "node_modules/domhandler": { "version": "5.0.3", @@ -7793,56 +7004,21 @@ }, "node_modules/draco3d": { "version": "1.5.6", - "resolved": "https://registry.npmjs.org/draco3d/-/draco3d-1.5.6.tgz", - "integrity": "sha512-+3NaRjWktb5r61ZFoDejlykPEFKT5N/LkbXsaddlw6xNSXBanUYpFc2AXXpbJDilPHazcSreU/DpQIaxfX0NfQ==" + "license": "Apache-2.0" }, "node_modules/duplexer": { "version": "0.1.2", "dev": true, "license": "MIT" }, - "node_modules/duplexer2": { - "version": "0.1.4", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "readable-stream": "^2.0.2" - } - }, - "node_modules/duplexer2/node_modules/readable-stream": { - "version": "2.3.8", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/duplexer2/node_modules/safe-buffer": { - "version": "5.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/duplexer2/node_modules/string_decoder": { - "version": "1.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/earcut": { "version": "2.2.4", "license": "ISC" }, "node_modules/eastasianwidth": { "version": "0.2.0", - "license": "MIT" + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" }, "node_modules/ecc-jsbn": { "version": "0.1.2", @@ -7859,7 +7035,7 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.4.597", + "version": "1.4.823", "dev": true, "license": "ISC" }, @@ -8022,11 +7198,131 @@ "is-arrayish": "^0.2.1" } }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-module-lexer": { "version": "1.4.1", "dev": true, "license": "MIT" }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/es5-ext": { "version": "0.10.62", "hasInstallScript": true, @@ -8049,19 +7345,6 @@ "es6-symbol": "^3.1.1" } }, - "node_modules/es6-map": { - "version": "0.1.5", - "dev": true, - "license": "MIT", - "dependencies": { - "d": "1", - "es5-ext": "~0.10.14", - "es6-iterator": "~2.0.1", - "es6-set": "~0.1.5", - "es6-symbol": "~3.1.1", - "event-emitter": "~0.3.5" - } - }, "node_modules/es6-promise": { "version": "4.2.8", "dev": true, @@ -8075,27 +7358,6 @@ "es6-promise": "^4.0.3" } }, - "node_modules/es6-set": { - "version": "0.1.6", - "dev": true, - "license": "ISC", - "dependencies": { - "d": "^1.0.1", - "es5-ext": "^0.10.62", - "es6-iterator": "~2.0.3", - "es6-symbol": "^3.1.3", - "event-emitter": "^0.3.5", - "type": "^2.7.2" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/es6-set/node_modules/type": { - "version": "2.7.2", - "dev": true, - "license": "ISC" - }, "node_modules/es6-shim": { "version": "0.35.8", "dev": true, @@ -8110,10 +7372,11 @@ } }, "node_modules/esbuild": { - "version": "0.18.17", + "version": "0.20.1", "dev": true, "hasInstallScript": true, "license": "MIT", + "optional": true, "bin": { "esbuild": "bin/esbuild" }, @@ -8121,32 +7384,33 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/android-arm": "0.18.17", - "@esbuild/android-arm64": "0.18.17", - "@esbuild/android-x64": "0.18.17", - "@esbuild/darwin-arm64": "0.18.17", - "@esbuild/darwin-x64": "0.18.17", - "@esbuild/freebsd-arm64": "0.18.17", - "@esbuild/freebsd-x64": "0.18.17", - "@esbuild/linux-arm": "0.18.17", - "@esbuild/linux-arm64": "0.18.17", - "@esbuild/linux-ia32": "0.18.17", - "@esbuild/linux-loong64": "0.18.17", - "@esbuild/linux-mips64el": "0.18.17", - "@esbuild/linux-ppc64": "0.18.17", - "@esbuild/linux-riscv64": "0.18.17", - "@esbuild/linux-s390x": "0.18.17", - "@esbuild/linux-x64": "0.18.17", - "@esbuild/netbsd-x64": "0.18.17", - "@esbuild/openbsd-x64": "0.18.17", - "@esbuild/sunos-x64": "0.18.17", - "@esbuild/win32-arm64": "0.18.17", - "@esbuild/win32-ia32": "0.18.17", - "@esbuild/win32-x64": "0.18.17" + "@esbuild/aix-ppc64": "0.20.1", + "@esbuild/android-arm": "0.20.1", + "@esbuild/android-arm64": "0.20.1", + "@esbuild/android-x64": "0.20.1", + "@esbuild/darwin-arm64": "0.20.1", + "@esbuild/darwin-x64": "0.20.1", + "@esbuild/freebsd-arm64": "0.20.1", + "@esbuild/freebsd-x64": "0.20.1", + "@esbuild/linux-arm": "0.20.1", + "@esbuild/linux-arm64": "0.20.1", + "@esbuild/linux-ia32": "0.20.1", + "@esbuild/linux-loong64": "0.20.1", + "@esbuild/linux-mips64el": "0.20.1", + "@esbuild/linux-ppc64": "0.20.1", + "@esbuild/linux-riscv64": "0.20.1", + "@esbuild/linux-s390x": "0.20.1", + "@esbuild/linux-x64": "0.20.1", + "@esbuild/netbsd-x64": "0.20.1", + "@esbuild/openbsd-x64": "0.20.1", + "@esbuild/sunos-x64": "0.20.1", + "@esbuild/win32-arm64": "0.20.1", + "@esbuild/win32-ia32": "0.20.1", + "@esbuild/win32-x64": "0.20.1" } }, "node_modules/esbuild-wasm": { - "version": "0.18.17", + "version": "0.20.1", "dev": true, "license": "MIT", "bin": { @@ -8157,7 +7421,7 @@ } }, "node_modules/escalade": { - "version": "3.1.1", + "version": "3.1.2", "license": "MIT", "engines": { "node": ">=6" @@ -8175,35 +7439,6 @@ "node": ">=0.8.0" } }, - "node_modules/escodegen": { - "version": "2.1.0", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=6.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/eslint-scope": { "version": "5.1.1", "dev": true, @@ -8254,11 +7489,6 @@ "node": ">=4.0" } }, - "node_modules/estree-is-function": { - "version": "1.0.0", - "dev": true, - "license": "Apache-2.0" - }, "node_modules/estree-walker": { "version": "2.0.2", "license": "MIT" @@ -8301,11 +7531,6 @@ "through": "^2.3.8" } }, - "node_modules/eventemitter-asyncresource": { - "version": "1.0.0", - "dev": true, - "license": "MIT" - }, "node_modules/eventemitter3": { "version": "4.0.7", "dev": true, @@ -8353,76 +7578,6 @@ "node": ">= 0.8.0" } }, - "node_modules/expand-brackets": { - "version": "0.1.5", - "dev": true, - "license": "MIT", - "dependencies": { - "is-posix-bracket": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-range": { - "version": "1.8.2", - "dev": true, - "license": "MIT", - "dependencies": { - "fill-range": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-range/node_modules/fill-range": { - "version": "2.2.4", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-range/node_modules/is-number": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-range/node_modules/isobject": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-range/node_modules/kind-of": { - "version": "3.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/expand-tilde": { "version": "2.0.2", "license": "MIT", @@ -8438,16 +7593,16 @@ "license": "Apache-2.0" }, "node_modules/express": { - "version": "4.18.2", + "version": "4.19.2", "dev": true, "license": "MIT", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.1", + "body-parser": "1.20.2", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.5.0", + "cookie": "0.6.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", @@ -8478,36 +7633,8 @@ "node": ">= 0.10.0" } }, - "node_modules/express/node_modules/array-flatten": { - "version": "1.1.1", - "dev": true, - "license": "MIT" - }, - "node_modules/express/node_modules/body-parser": { - "version": "1.20.1", - "dev": true, - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, "node_modules/express/node_modules/cookie": { - "version": "0.5.0", + "version": "0.6.0", "dev": true, "license": "MIT", "engines": { @@ -8555,20 +7682,6 @@ "node": ">= 0.8" } }, - "node_modules/express/node_modules/raw-body": { - "version": "2.5.1", - "dev": true, - "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, "node_modules/express/node_modules/statuses": { "version": "2.0.1", "dev": true, @@ -8626,25 +7739,6 @@ "node": ">=4" } }, - "node_modules/extglob": { - "version": "0.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/is-extglob": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/extsprintf": { "version": "1.3.0", "dev": true, @@ -8669,7 +7763,7 @@ "license": "MIT" }, "node_modules/fast-glob": { - "version": "3.3.1", + "version": "3.3.2", "dev": true, "license": "MIT", "dependencies": { @@ -8688,11 +7782,6 @@ "dev": true, "license": "MIT" }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "dev": true, - "license": "MIT" - }, "node_modules/fastparse": { "version": "1.1.2", "dev": true, @@ -8730,14 +7819,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/filename-regex": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/fill-range": { "version": "7.0.1", "license": "MIT", @@ -8793,11 +7874,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/find-index": { - "version": "0.1.1", - "dev": true, - "license": "MIT" - }, "node_modules/find-up": { "version": "4.1.0", "dev": true, @@ -8823,6 +7899,14 @@ "node": ">= 10.13.0" } }, + "node_modules/flat": { + "version": "5.0.2", + "dev": true, + "license": "BSD-3-Clause", + "bin": { + "flat": "cli.js" + } + }, "node_modules/flatted": { "version": "3.2.9", "dev": true, @@ -8847,23 +7931,13 @@ } } }, - "node_modules/for-in": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/for-own": { - "version": "0.1.5", + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, - "license": "MIT", "dependencies": { - "for-in": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" + "is-callable": "^1.1.3" } }, "node_modules/foreground-child": { @@ -8888,19 +7962,6 @@ "node": "*" } }, - "node_modules/form-data": { - "version": "3.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/forwarded": { "version": "0.2.0", "dev": true, @@ -8921,17 +7982,6 @@ "url": "https://github.com/sponsors/rawify" } }, - "node_modules/fragment-cache": { - "version": "0.2.1", - "dev": true, - "license": "MIT", - "dependencies": { - "map-cache": "^0.2.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/fresh": { "version": "0.5.2", "dev": true, @@ -8969,14 +8019,29 @@ } }, "node_modules/fs-monkey": { - "version": "1.0.5", + "version": "1.0.6", "dev": true, "license": "Unlicense" }, "node_modules/fs.realpath": { "version": "1.0.0", + "dev": true, "license": "ISC" }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/function-bind": { "version": "1.1.2", "license": "MIT", @@ -8984,34 +8049,32 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/functions-have-names": { - "version": "1.2.3", + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gauge": { - "version": "4.0.4", - "license": "ISC", "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/gauge/node_modules/signal-exit": { - "version": "3.0.7", - "license": "ISC" + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/gensync": { "version": "1.0.0-beta.2", @@ -9023,8 +8086,7 @@ }, "node_modules/geojson-vt": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/geojson-vt/-/geojson-vt-4.0.2.tgz", - "integrity": "sha512-AV9ROqlNqoZEIJGfm1ncNjEXfkz2hdFlZf0qkVfmkwdKa8vj7H16YUOT81rJw1rdFhyEDlN2Tds91p/glzbl5A==" + "license": "ISC" }, "node_modules/geotiff": { "version": "2.1.0", @@ -9043,11 +8105,6 @@ "node": ">=10.19" } }, - "node_modules/get-assigned-identifiers": { - "version": "1.2.0", - "dev": true, - "license": "Apache-2.0" - }, "node_modules/get-caller-file": { "version": "2.0.5", "license": "ISC", @@ -9056,15 +8113,18 @@ } }, "node_modules/get-intrinsic": { - "version": "1.2.2", - "dev": true, + "version": "1.2.4", "license": "MIT", "dependencies": { + "es-errors": "^1.3.0", "function-bind": "^1.1.2", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "hasown": "^2.0.0" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -9087,6 +8147,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/get-value": { "version": "2.0.6", "license": "MIT", @@ -9107,64 +8184,24 @@ "license": "MIT" }, "node_modules/glob": { - "version": "10.3.10", - "license": "ISC", + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/glob-base": { - "version": "0.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "glob-parent": "^2.0.0", - "is-glob": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-base/node_modules/glob-parent": { - "version": "2.0.0", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^2.0.0" - } - }, - "node_modules/glob-base/node_modules/is-extglob": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/glob-base/node_modules/is-glob": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/glob-parent": { "version": "5.1.2", "devOptional": true, @@ -9183,14 +8220,16 @@ }, "node_modules/glob/node_modules/brace-expansion": { "version": "2.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/glob/node_modules/minimatch": { - "version": "9.0.3", - "license": "ISC", + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dependencies": { "brace-expansion": "^2.0.1" }, @@ -9201,16 +8240,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/glob2base": { - "version": "0.0.12", - "dev": true, - "dependencies": { - "find-index": "^0.1.1" - }, - "engines": { - "node": ">= 0.10" - } - }, "node_modules/global-modules": { "version": "1.0.0", "license": "MIT", @@ -9258,6 +8287,22 @@ "node": ">=4" } }, + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/globby": { "version": "13.2.2", "dev": true, @@ -9278,7 +8323,6 @@ }, "node_modules/gopd": { "version": "1.0.1", - "dev": true, "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.3" @@ -9295,17 +8339,6 @@ "version": "1.0.4", "license": "MIT" }, - "node_modules/guess-parser": { - "version": "0.4.22", - "dev": true, - "license": "MIT", - "dependencies": { - "@wessberg/ts-evaluator": "0.0.27" - }, - "peerDependencies": { - "typescript": ">=3.7.5" - } - }, "node_modules/hammerjs": { "version": "2.0.8", "dev": true, @@ -9387,152 +8420,91 @@ "dev": true, "license": "MIT" }, - "node_modules/has": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-ansi": { "version": "2.0.0", "dev": true, "license": "MIT", "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-ansi/node_modules/ansi-regex": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-unicode": { - "version": "2.0.1", - "license": "ISC" - }, - "node_modules/has-value": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" + "ansi-regex": "^2.0.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/has-values": { - "version": "1.0.0", + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", "dev": true, "license": "MIT", - "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, "engines": { "node": ">=0.10.0" } }, - "node_modules/has-values/node_modules/is-number": { - "version": "3.0.0", + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "dev": true, + "node_modules/has-property-descriptors": { + "version": "1.0.2", "license": "MIT", "dependencies": { - "is-buffer": "^1.1.5" + "es-define-property": "^1.0.0" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", - "dev": true, + "node_modules/has-symbols": { + "version": "1.0.3", "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, "dependencies": { - "is-buffer": "^1.1.5" + "has-symbols": "^1.0.3" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/hasown": { - "version": "2.0.0", - "license": "MIT", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dependencies": { "function-bind": "^1.1.2" }, @@ -9540,26 +8512,6 @@ "node": ">= 0.4" } }, - "node_modules/hdr-histogram-js": { - "version": "2.0.3", - "dev": true, - "license": "BSD", - "dependencies": { - "@assemblyscript/loader": "^0.10.1", - "base64-js": "^1.2.0", - "pako": "^1.0.3" - } - }, - "node_modules/hdr-histogram-js/node_modules/pako": { - "version": "1.0.11", - "dev": true, - "license": "(MIT AND Zlib)" - }, - "node_modules/hdr-histogram-percentiles-obj": { - "version": "3.0.0", - "dev": true, - "license": "MIT" - }, "node_modules/homedir-polyfill": { "version": "1.0.3", "license": "MIT", @@ -9571,21 +8523,18 @@ } }, "node_modules/hosted-git-info": { - "version": "6.1.1", + "version": "7.0.2", "license": "ISC", "dependencies": { - "lru-cache": "^7.5.1" + "lru-cache": "^10.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "7.18.3", - "license": "ISC", - "engines": { - "node": ">=12" - } + "version": "10.4.3", + "license": "ISC" }, "node_modules/hpack.js": { "version": "2.1.6", @@ -9625,19 +8574,10 @@ "safe-buffer": "~5.1.0" } }, - "node_modules/html-encoding-sniffer": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "whatwg-encoding": "^1.0.5" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/html-entities": { - "version": "2.4.0", + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", + "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", "dev": true, "funding": [ { @@ -9648,8 +8588,7 @@ "type": "patreon", "url": "https://patreon.com/mdevils" } - ], - "license": "MIT" + ] }, "node_modules/html-escaper": { "version": "2.0.2", @@ -9755,16 +8694,14 @@ } }, "node_modules/http-proxy-agent": { - "version": "4.0.1", - "dev": true, + "version": "7.0.2", "license": "MIT", "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" + "agent-base": "^7.1.0", + "debug": "^4.3.4" }, "engines": { - "node": ">= 6" + "node": ">= 14" } }, "node_modules/http-proxy-middleware": { @@ -9805,14 +8742,14 @@ } }, "node_modules/https-proxy-agent": { - "version": "5.0.1", + "version": "7.0.4", "license": "MIT", "dependencies": { - "agent-base": "6", + "agent-base": "^7.0.2", "debug": "4" }, "engines": { - "node": ">= 6" + "node": ">= 14" } }, "node_modules/human-signals": { @@ -9823,15 +8760,10 @@ "node": ">=10.17.0" } }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "license": "MIT", - "dependencies": { - "ms": "^2.0.0" - } - }, "node_modules/i18next": { - "version": "23.7.7", + "version": "23.11.5", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-23.11.5.tgz", + "integrity": "sha512-41pvpVbW9rhZPk5xjCX2TPJi2861LEig/YRhUkY+1FQ2IQPS0bKUDYnEqY8XPPbB48h1uIwLnP9iiEfuSl20CA==", "dev": true, "funding": [ { @@ -9847,27 +8779,10 @@ "url": "https://www.i18next.com/how-to/faq#i18next-is-awesome.-how-can-i-support-the-project" } ], - "license": "MIT", "dependencies": { "@babel/runtime": "^7.23.2" } }, - "node_modules/i18next/node_modules/@babel/runtime": { - "version": "7.23.5", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/i18next/node_modules/regenerator-runtime": { - "version": "0.14.0", - "dev": true, - "license": "MIT" - }, "node_modules/iconv-lite": { "version": "0.4.24", "license": "MIT", @@ -9915,7 +8830,7 @@ } }, "node_modules/ignore-walk": { - "version": "6.0.4", + "version": "6.0.5", "license": "ISC", "dependencies": { "minimatch": "^9.0.0" @@ -9932,7 +8847,7 @@ } }, "node_modules/ignore-walk/node_modules/minimatch": { - "version": "9.0.3", + "version": "9.0.5", "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" @@ -9962,7 +8877,7 @@ "license": "MIT" }, "node_modules/immutable": { - "version": "4.3.4", + "version": "4.3.6", "dev": true, "license": "MIT" }, @@ -10001,12 +8916,9 @@ "node": ">=8" } }, - "node_modules/infer-owner": { - "version": "1.0.4", - "license": "ISC" - }, "node_modules/inflight": { "version": "1.0.6", + "dev": true, "license": "ISC", "dependencies": { "once": "^1.3.0", @@ -10018,7 +8930,7 @@ "license": "ISC" }, "node_modules/ini": { - "version": "4.1.1", + "version": "4.1.2", "license": "ISC", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -10033,27 +8945,27 @@ } }, "node_modules/inquirer": { - "version": "8.2.4", + "version": "9.2.15", "license": "MIT", "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", + "@ljharb/through": "^2.3.12", + "ansi-escapes": "^4.3.2", + "chalk": "^5.3.0", "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", + "cli-width": "^4.1.0", + "external-editor": "^3.1.0", + "figures": "^3.2.0", "lodash": "^4.17.21", - "mute-stream": "0.0.8", + "mute-stream": "1.0.0", "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" + "run-async": "^3.0.0", + "rxjs": "^7.8.1", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^6.2.0" }, "engines": { - "node": ">=12.0.0" + "node": ">=18" } }, "node_modules/inquirer/node_modules/ansi-styles": { @@ -10070,14 +8982,10 @@ } }, "node_modules/inquirer/node_modules/chalk": { - "version": "4.1.2", + "version": "5.3.0", "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": "^12.17.0 || ^14.13 || >=16.0.0" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" @@ -10097,53 +9005,79 @@ "version": "1.1.4", "license": "MIT" }, - "node_modules/inquirer/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/inquirer/node_modules/wrap-ansi": { + "version": "6.2.0", "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/inquirer/node_modules/supports-color": { - "version": "7.2.0", + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ip-address": { + "version": "9.0.5", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "jsbn": "1.1.0", + "sprintf-js": "^1.1.3" }, "engines": { - "node": ">=8" + "node": ">= 12" } }, - "node_modules/ip": { - "version": "2.0.0", + "node_modules/ip-address/node_modules/jsbn": { + "version": "1.1.0", "license": "MIT" }, "node_modules/ipaddr.js": { - "version": "2.1.0", + "version": "2.2.0", "dev": true, "license": "MIT", "engines": { "node": ">= 10" } }, - "node_modules/is-accessor-descriptor": { - "version": "1.0.1", + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, - "license": "MIT", "dependencies": { - "hasown": "^2.0.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">= 0.10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-arguments": { - "version": "1.1.1", + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, - "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "get-intrinsic": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -10156,6 +9090,18 @@ "version": "0.2.1", "license": "MIT" }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-binary-path": { "version": "2.1.0", "devOptional": true, @@ -10167,6 +9113,22 @@ "node": ">=8" } }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-buffer": { "version": "1.1.6", "license": "MIT" @@ -10185,6 +9147,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-core-module": { "version": "2.13.1", "license": "MIT", @@ -10195,21 +9169,26 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-data-descriptor": { + "node_modules/is-data-view": { "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", "dev": true, - "license": "MIT", "dependencies": { - "hasown": "^2.0.0" + "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-date-object": { "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, - "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -10220,18 +9199,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-descriptor": { - "version": "1.0.3", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, "node_modules/is-docker": { "version": "2.2.1", "license": "MIT", @@ -10245,25 +9212,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-dotfile": { - "version": "1.0.3", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-equal-shallow": { - "version": "0.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "is-primitive": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-extendable": { "version": "0.1.1", "license": "MIT", @@ -10311,11 +9259,38 @@ "dev": true, "license": "MIT" }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-number": { "version": "7.0.0", "license": "MIT", "engines": { - "node": ">=0.12.0" + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-path-cwd": { @@ -10369,33 +9344,54 @@ "node": ">=0.10.0" } }, - "node_modules/is-posix-bracket": { - "version": "0.1.1", + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, - "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, - "license": "MIT" + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/is-primitive": { - "version": "2.0.0", + "node_modules/is-stream": { + "version": "2.0.1", "dev": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-regex": { - "version": "1.1.4", + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, - "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" }, "engines": { @@ -10405,15 +9401,34 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-stream": { - "version": "2.0.1", + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, - "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.2" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-typedarray": { @@ -10431,6 +9446,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-what": { "version": "3.14.1", "dev": true, @@ -10590,14 +9617,12 @@ } }, "node_modules/jackspeak": { - "version": "2.3.6", - "license": "BlueOak-1.0.0", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "dependencies": { "@isaacs/cliui": "^8.0.2" }, - "engines": { - "node": ">=14" - }, "funding": { "url": "https://github.com/sponsors/isaacs" }, @@ -10618,9 +9643,10 @@ } }, "node_modules/jasmine-core": { - "version": "4.6.0", - "dev": true, - "license": "MIT" + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.6.1.tgz", + "integrity": "sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ==", + "dev": true }, "node_modules/jasmine-spec-reporter": { "version": "7.0.0", @@ -10693,7 +9719,7 @@ } }, "node_modules/jiti": { - "version": "1.21.0", + "version": "1.21.6", "dev": true, "license": "MIT", "bin": { @@ -10720,56 +9746,6 @@ "dev": true, "license": "MIT" }, - "node_modules/jsdom": { - "version": "16.7.0", - "dev": true, - "license": "MIT", - "dependencies": { - "abab": "^2.0.5", - "acorn": "^8.2.4", - "acorn-globals": "^6.0.0", - "cssom": "^0.4.4", - "cssstyle": "^2.3.0", - "data-urls": "^2.0.0", - "decimal.js": "^10.2.1", - "domexception": "^2.0.1", - "escodegen": "^2.0.0", - "form-data": "^3.0.0", - "html-encoding-sniffer": "^2.0.1", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "6.0.1", - "saxes": "^5.0.1", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", - "w3c-xmlserializer": "^2.0.0", - "webidl-conversions": "^6.1.0", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.5.0", - "ws": "^7.4.6", - "xml-name-validator": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } - }, - "node_modules/jsdom/node_modules/parse5": { - "version": "6.0.1", - "dev": true, - "license": "MIT" - }, "node_modules/jsep": { "version": "1.3.8", "license": "MIT", @@ -10820,8 +9796,9 @@ } }, "node_modules/jsonc-parser": { - "version": "3.2.0", - "license": "MIT" + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==" }, "node_modules/jsonfile": { "version": "6.1.0", @@ -10910,9 +9887,10 @@ } }, "node_modules/karma": { - "version": "6.4.2", + "version": "6.4.3", + "resolved": "https://registry.npmjs.org/karma/-/karma-6.4.3.tgz", + "integrity": "sha512-LuucC/RE92tJ8mlCwqEoRWXP38UMAqpnq98vktmS9SznSoUPPUJQbc91dHcxcunROvfQjdORVA/YFviH+Xci9Q==", "dev": true, - "license": "MIT", "dependencies": { "@colors/colors": "1.5.0", "body-parser": "^1.19.0", @@ -10933,7 +9911,7 @@ "qjobs": "^1.2.0", "range-parser": "^1.2.1", "rimraf": "^3.0.2", - "socket.io": "^4.4.1", + "socket.io": "^4.7.2", "source-map": "^0.6.1", "tmp": "^0.2.1", "ua-parser-js": "^0.7.30", @@ -11126,11 +10104,10 @@ }, "node_modules/ktx-parse": { "version": "0.7.0", - "resolved": "https://registry.npmjs.org/ktx-parse/-/ktx-parse-0.7.0.tgz", - "integrity": "sha512-naezun/2iiWrantwoRI9mw6E4iN41ggYzJSR9XAZzf6+rv+2Tb1yYN8VJhGsA0uptBexE0m4GDh+iiQhYpW+Qw==" + "license": "MIT" }, "node_modules/launch-editor": { - "version": "2.6.1", + "version": "2.8.0", "dev": true, "license": "MIT", "dependencies": { @@ -11143,7 +10120,7 @@ "license": "Apache-2.0" }, "node_modules/less": { - "version": "4.1.3", + "version": "4.2.0", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -11238,18 +10215,6 @@ "node": ">=0.10.0" } }, - "node_modules/levn": { - "version": "0.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/license-webpack-plugin": { "version": "4.0.2", "dev": true, @@ -11427,9 +10392,10 @@ } }, "node_modules/loglevel": { - "version": "1.8.1", + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.9.1.tgz", + "integrity": "sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.6.0" }, @@ -11479,7 +10445,7 @@ } }, "node_modules/magic-string": { - "version": "0.30.1", + "version": "0.30.8", "license": "MIT", "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" @@ -11508,208 +10474,31 @@ "license": "ISC" }, "node_modules/make-fetch-happen": { - "version": "10.2.1", + "version": "13.0.1", "license": "ISC", "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^16.1.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", + "@npmcli/agent": "^2.0.0", + "cacache": "^18.0.0", + "http-cache-semantics": "^4.1.1", "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^2.0.3", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "negotiator": "^0.6.3", + "proc-log": "^4.2.0", "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^9.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/make-fetch-happen/node_modules/@npmcli/fs": { - "version": "2.1.2", - "license": "ISC", - "dependencies": { - "@gar/promisify": "^1.1.3", - "semver": "^7.3.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/make-fetch-happen/node_modules/@tootallnate/once": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/make-fetch-happen/node_modules/brace-expansion": { - "version": "2.0.1", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/make-fetch-happen/node_modules/cacache": { - "version": "16.1.3", - "license": "ISC", - "dependencies": { - "@npmcli/fs": "^2.1.0", - "@npmcli/move-file": "^2.0.0", - "chownr": "^2.0.0", - "fs-minipass": "^2.1.0", - "glob": "^8.0.1", - "infer-owner": "^1.0.4", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "mkdirp": "^1.0.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^9.0.0", - "tar": "^6.1.11", - "unique-filename": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/make-fetch-happen/node_modules/fs-minipass": { - "version": "2.1.0", - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/make-fetch-happen/node_modules/glob": { - "version": "8.1.0", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/make-fetch-happen/node_modules/http-proxy-agent": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/make-fetch-happen/node_modules/lru-cache": { - "version": "7.18.3", - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/make-fetch-happen/node_modules/minimatch": { - "version": "5.1.6", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/make-fetch-happen/node_modules/minipass": { - "version": "3.3.6", - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/make-fetch-happen/node_modules/minipass-collect": { - "version": "1.0.2", - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/make-fetch-happen/node_modules/mkdirp": { - "version": "1.0.4", - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/make-fetch-happen/node_modules/ssri": { - "version": "9.0.1", - "license": "ISC", - "dependencies": { - "minipass": "^3.1.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/make-fetch-happen/node_modules/unique-filename": { - "version": "2.0.1", - "license": "ISC", - "dependencies": { - "unique-slug": "^3.0.0" + "ssri": "^10.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/make-fetch-happen/node_modules/unique-slug": { - "version": "3.0.0", + "node_modules/make-fetch-happen/node_modules/proc-log": { + "version": "4.2.0", "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/make-fetch-happen/node_modules/yallist": { - "version": "4.0.0", - "license": "ISC" - }, - "node_modules/map-cache": { - "version": "0.2.2", - "dev": true, - "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/map-stream": { @@ -11717,25 +10506,13 @@ "dev": true, "license": "MIT" }, - "node_modules/map-visit": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/mapbox-to-css-font": { "version": "2.4.2", "license": "BSD-2-Clause" }, "node_modules/maplibre-gl": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-4.5.0.tgz", - "integrity": "sha512-qOS1hn4d/pn2i0uva4S5Oz+fACzTkgBKq+NpwT/Tqzi4MSyzcWNtDELzLUSgWqHfNIkGCl5CZ/w7dtis+t4RCw==", + "license": "BSD-3-Clause", "dependencies": { "@mapbox/geojson-rewind": "^0.5.2", "@mapbox/jsonlint-lines-primitives": "^2.0.2", @@ -11814,11 +10591,6 @@ "node": ">= 16" } }, - "node_modules/math-random": { - "version": "1.0.4", - "dev": true, - "license": "MIT" - }, "node_modules/md5": { "version": "2.3.0", "license": "BSD-3-Clause", @@ -11852,22 +10624,6 @@ "dev": true, "license": "MIT" }, - "node_modules/merge-source-map": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "source-map": "^0.5.6" - } - }, - "node_modules/merge-source-map/node_modules/source-map": { - "version": "0.5.7", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/merge-stream": { "version": "2.0.0", "dev": true, @@ -11887,8 +10643,7 @@ }, "node_modules/meshoptimizer": { "version": "0.21.0", - "resolved": "https://registry.npmjs.org/meshoptimizer/-/meshoptimizer-0.21.0.tgz", - "integrity": "sha512-WabtlpnK/GgD0GMwYd1fBTfYHf4MIcQPEg6dt7y4GuDcY51RzLSkSNE8ZogD7U3Vs2/fIf4z89TOLpA80EOnhg==" + "license": "MIT" }, "node_modules/methods": { "version": "1.1.2", @@ -11951,11 +10706,12 @@ } }, "node_modules/mini-css-extract-plugin": { - "version": "2.7.6", + "version": "2.8.1", "dev": true, "license": "MIT", "dependencies": { - "schema-utils": "^4.0.0" + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" }, "engines": { "node": ">= 12.13.0" @@ -11991,15 +10747,15 @@ } }, "node_modules/minipass": { - "version": "7.0.4", - "license": "ISC", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "engines": { "node": ">=16 || 14 >=14.17" } }, "node_modules/minipass-collect": { "version": "2.0.1", - "dev": true, "license": "ISC", "dependencies": { "minipass": "^7.0.3" @@ -12009,34 +10765,20 @@ } }, "node_modules/minipass-fetch": { - "version": "2.1.2", + "version": "3.0.5", "license": "MIT", "dependencies": { - "minipass": "^3.1.6", + "minipass": "^7.0.3", "minipass-sized": "^1.0.3", "minizlib": "^2.1.2" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" }, "optionalDependencies": { "encoding": "^0.1.13" } }, - "node_modules/minipass-fetch/node_modules/minipass": { - "version": "3.3.6", - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-fetch/node_modules/yallist": { - "version": "4.0.0", - "license": "ISC" - }, "node_modules/minipass-flush": { "version": "1.0.5", "license": "ISC", @@ -12156,29 +10898,6 @@ "version": "4.0.0", "license": "ISC" }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "dev": true, - "license": "MIT", - "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mixin-deep/node_modules/is-extendable": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-plain-object": "^2.0.4" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/mkdirp": { "version": "0.5.6", "dev": true, @@ -12238,7 +10957,7 @@ "license": "MIT" }, "node_modules/mrmime": { - "version": "1.0.1", + "version": "2.0.0", "dev": true, "license": "MIT", "engines": { @@ -12283,8 +11002,11 @@ "license": "MIT" }, "node_modules/mute-stream": { - "version": "0.0.8", - "license": "ISC" + "version": "1.0.0", + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } }, "node_modules/nanoid": { "version": "3.3.7", @@ -12302,43 +11024,6 @@ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/nanomatch": { - "version": "1.2.13", - "dev": true, - "license": "MIT", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/arr-diff": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nanomatch/node_modules/array-unique": { - "version": "0.3.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/needle": { "version": "3.2.0", "dev": true, @@ -12394,49 +11079,48 @@ "license": "ISC" }, "node_modules/ng-packagr": { - "version": "16.2.3", + "version": "17.3.0", "dev": true, "license": "MIT", "dependencies": { - "@rollup/plugin-json": "^6.0.0", - "@rollup/plugin-node-resolve": "^15.0.0", - "ajv": "^8.11.0", + "@rollup/plugin-json": "^6.0.1", + "@rollup/plugin-node-resolve": "^15.2.3", + "@rollup/wasm-node": "^4.5.0", + "ajv": "^8.12.0", "ansi-colors": "^4.1.3", - "autoprefixer": "^10.4.12", - "browserslist": "^4.21.4", + "browserslist": "^4.22.1", "cacache": "^18.0.0", "chokidar": "^3.5.3", - "commander": "^11.0.0", + "commander": "^12.0.0", "convert-source-map": "^2.0.0", - "dependency-graph": "^0.11.0", - "esbuild-wasm": "^0.19.0", - "fast-glob": "^3.2.12", + "dependency-graph": "^1.0.0", + "esbuild-wasm": "^0.20.0", + "fast-glob": "^3.3.1", "find-cache-dir": "^3.3.2", "injection-js": "^2.4.0", "jsonc-parser": "^3.2.0", - "less": "^4.1.3", + "less": "^4.2.0", "ora": "^5.1.0", - "piscina": "^4.0.0", - "postcss": "^8.4.16", - "postcss-url": "^10.1.3", - "rollup": "^3.0.0", - "rxjs": "^7.5.6", - "sass": "^1.55.0" + "piscina": "^4.4.0", + "postcss": "^8.4.31", + "rxjs": "^7.8.1", + "sass": "^1.69.5" }, "bin": { "ng-packagr": "cli/main.js" }, "engines": { - "node": "^16.14.0 || >=18.10.0" + "node": "^18.13.0 || >=20.9.0" }, "optionalDependencies": { - "esbuild": "^0.19.0" + "esbuild": "^0.20.0", + "rollup": "^4.5.0" }, "peerDependencies": { - "@angular/compiler-cli": "^16.0.0 || ^16.2.0-next.0", + "@angular/compiler-cli": "^17.0.0 || ^17.2.0-next.0 || ^17.3.0-next.0", "tailwindcss": "^2.0.0 || ^3.0.0", "tslib": "^2.3.0", - "typescript": ">=4.9.3 <5.2" + "typescript": ">=5.2 <5.5" }, "peerDependenciesMeta": { "tailwindcss": { @@ -12444,74 +11128,11 @@ } } }, - "node_modules/ng-packagr/node_modules/@esbuild/win32-x64": { - "version": "0.19.8", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, "node_modules/ng-packagr/node_modules/convert-source-map": { "version": "2.0.0", "dev": true, "license": "MIT" }, - "node_modules/ng-packagr/node_modules/esbuild": { - "version": "0.19.8", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.19.8", - "@esbuild/android-arm64": "0.19.8", - "@esbuild/android-x64": "0.19.8", - "@esbuild/darwin-arm64": "0.19.8", - "@esbuild/darwin-x64": "0.19.8", - "@esbuild/freebsd-arm64": "0.19.8", - "@esbuild/freebsd-x64": "0.19.8", - "@esbuild/linux-arm": "0.19.8", - "@esbuild/linux-arm64": "0.19.8", - "@esbuild/linux-ia32": "0.19.8", - "@esbuild/linux-loong64": "0.19.8", - "@esbuild/linux-mips64el": "0.19.8", - "@esbuild/linux-ppc64": "0.19.8", - "@esbuild/linux-riscv64": "0.19.8", - "@esbuild/linux-s390x": "0.19.8", - "@esbuild/linux-x64": "0.19.8", - "@esbuild/netbsd-x64": "0.19.8", - "@esbuild/openbsd-x64": "0.19.8", - "@esbuild/sunos-x64": "0.19.8", - "@esbuild/win32-arm64": "0.19.8", - "@esbuild/win32-ia32": "0.19.8", - "@esbuild/win32-x64": "0.19.8" - } - }, - "node_modules/ng-packagr/node_modules/esbuild-wasm": { - "version": "0.19.8", - "dev": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - } - }, "node_modules/ng-packagr/node_modules/find-cache-dir": { "version": "3.3.2", "dev": true, @@ -12604,75 +11225,75 @@ } }, "node_modules/node-gyp": { - "version": "9.4.1", + "version": "10.1.0", "license": "MIT", "dependencies": { "env-paths": "^2.2.0", "exponential-backoff": "^3.1.1", - "glob": "^7.1.4", + "glob": "^10.3.10", "graceful-fs": "^4.2.6", - "make-fetch-happen": "^10.0.3", - "nopt": "^6.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", + "make-fetch-happen": "^13.0.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", "semver": "^7.3.5", "tar": "^6.1.2", - "which": "^2.0.2" + "which": "^4.0.0" }, "bin": { "node-gyp": "bin/node-gyp.js" }, "engines": { - "node": "^12.13 || ^14.13 || >=16" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/node-gyp/node_modules/glob": { - "version": "7.2.3", + "node_modules/node-gyp/node_modules/isexe": { + "version": "3.1.1", + "license": "ISC", + "engines": { + "node": ">=16" + } + }, + "node_modules/node-gyp/node_modules/which": { + "version": "4.0.0", "license": "ISC", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "isexe": "^3.1.1" }, - "engines": { - "node": "*" + "bin": { + "node-which": "bin/which.js" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": "^16.13.0 || >=18.0.0" } }, "node_modules/node-releases": { - "version": "2.0.13", + "version": "2.0.14", "dev": true, "license": "MIT" }, "node_modules/nopt": { - "version": "6.0.0", + "version": "7.2.1", "license": "ISC", "dependencies": { - "abbrev": "^1.0.0" + "abbrev": "^2.0.0" }, "bin": { "nopt": "bin/nopt.js" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/normalize-package-data": { - "version": "5.0.0", + "version": "6.0.2", "license": "BSD-2-Clause", "dependencies": { - "hosted-git-info": "^6.0.0", - "is-core-module": "^2.8.1", + "hosted-git-info": "^7.0.0", "semver": "^7.3.5", "validate-npm-package-license": "^3.0.4" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/normalize-path": { @@ -12680,231 +11301,108 @@ "devOptional": true, "license": "MIT", "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-range": { - "version": "0.1.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/nosleep.js": { - "version": "0.12.0", - "license": "MIT" - }, - "node_modules/npm-bundled": { - "version": "3.0.0", - "license": "ISC", - "dependencies": { - "npm-normalize-package-bin": "^3.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm-install-checks": { - "version": "6.3.0", - "license": "BSD-2-Clause", - "dependencies": { - "semver": "^7.1.1" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm-normalize-package-bin": { - "version": "3.0.1", - "license": "ISC", - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm-package-arg": { - "version": "10.1.0", - "license": "ISC", - "dependencies": { - "hosted-git-info": "^6.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^5.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm-packlist": { - "version": "7.0.4", - "license": "ISC", - "dependencies": { - "ignore-walk": "^6.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm-pick-manifest": { - "version": "8.0.1", - "license": "ISC", - "dependencies": { - "npm-install-checks": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0", - "npm-package-arg": "^10.0.0", - "semver": "^7.3.5" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm-registry-fetch": { - "version": "14.0.5", - "license": "ISC", - "dependencies": { - "make-fetch-happen": "^11.0.0", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "minipass-json-stream": "^1.0.1", - "minizlib": "^2.1.2", - "npm-package-arg": "^10.0.0", - "proc-log": "^3.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">=0.10.0" } }, - "node_modules/npm-registry-fetch/node_modules/@tootallnate/once": { - "version": "2.0.0", + "node_modules/normalize-range": { + "version": "0.1.2", + "dev": true, "license": "MIT", "engines": { - "node": ">= 10" + "node": ">=0.10.0" } }, - "node_modules/npm-registry-fetch/node_modules/cacache": { - "version": "17.1.4", + "node_modules/nosleep.js": { + "version": "0.12.0", + "license": "MIT" + }, + "node_modules/npm-bundled": { + "version": "3.0.1", "license": "ISC", "dependencies": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^7.7.1", - "minipass": "^7.0.3", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" + "npm-normalize-package-bin": "^3.0.0" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm-registry-fetch/node_modules/cacache/node_modules/minipass": { - "version": "7.0.4", - "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/npm-registry-fetch/node_modules/http-proxy-agent": { - "version": "5.0.0", - "license": "MIT", + "node_modules/npm-install-checks": { + "version": "6.3.0", + "license": "BSD-2-Clause", "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" + "semver": "^7.1.1" }, "engines": { - "node": ">= 6" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm-registry-fetch/node_modules/lru-cache": { - "version": "7.18.3", + "node_modules/npm-normalize-package-bin": { + "version": "3.0.1", "license": "ISC", "engines": { - "node": ">=12" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm-registry-fetch/node_modules/make-fetch-happen": { - "version": "11.1.1", + "node_modules/npm-package-arg": { + "version": "11.0.1", "license": "ISC", "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "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.0" + "hosted-git-info": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm-registry-fetch/node_modules/minipass": { - "version": "5.0.0", - "license": "ISC", - "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm-registry-fetch/node_modules/minipass-collect": { - "version": "1.0.2", + "node_modules/npm-packlist": { + "version": "8.0.2", "license": "ISC", "dependencies": { - "minipass": "^3.0.0" + "ignore-walk": "^6.0.4" }, "engines": { - "node": ">= 8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm-registry-fetch/node_modules/minipass-collect/node_modules/minipass": { - "version": "3.3.6", + "node_modules/npm-pick-manifest": { + "version": "9.0.0", "license": "ISC", "dependencies": { - "yallist": "^4.0.0" + "npm-install-checks": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "npm-package-arg": "^11.0.0", + "semver": "^7.3.5" }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm-registry-fetch/node_modules/minipass-fetch": { - "version": "3.0.4", - "license": "MIT", + "node_modules/npm-registry-fetch": { + "version": "16.2.1", + "license": "ISC", "dependencies": { - "minipass": "^7.0.3", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" + "@npmcli/redact": "^1.1.0", + "make-fetch-happen": "^13.0.0", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^11.0.0", + "proc-log": "^4.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - }, - "optionalDependencies": { - "encoding": "^0.1.13" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm-registry-fetch/node_modules/minipass-fetch/node_modules/minipass": { - "version": "7.0.4", + "node_modules/npm-registry-fetch/node_modules/proc-log": { + "version": "4.2.0", "license": "ISC", "engines": { - "node": ">=16 || 14 >=14.17" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm-registry-fetch/node_modules/yallist": { - "version": "4.0.0", - "license": "ISC" - }, "node_modules/npm-run-path": { "version": "4.0.1", "dev": true, @@ -12916,19 +11414,6 @@ "node": ">=8" } }, - "node_modules/npmlog": { - "version": "6.0.2", - "license": "ISC", - "dependencies": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, "node_modules/nth-check": { "version": "2.1.1", "dev": true, @@ -12940,11 +11425,6 @@ "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/nwsapi": { - "version": "2.2.7", - "dev": true, - "license": "MIT" - }, "node_modules/oauth-sign": { "version": "0.9.0", "dev": true, @@ -12962,53 +11442,6 @@ "node": ">=0.10.0" } }, - "node_modules/object-copy": { - "version": "0.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/define-property": { - "version": "0.2.5", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-copy/node_modules/is-descriptor": { - "version": "0.1.7", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object-copy/node_modules/kind-of": { - "version": "3.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/object-inspect": { "version": "1.13.1", "dev": true, @@ -13018,12 +11451,13 @@ } }, "node_modules/object-is": { - "version": "1.1.5", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", "dev": true, - "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -13034,52 +11468,29 @@ }, "node_modules/object-keys": { "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, - "license": "MIT", "engines": { "node": ">= 0.4" } }, - "node_modules/object-path": { - "version": "0.11.8", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.12.0" - } - }, - "node_modules/object-visit": { - "version": "1.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.omit": { - "version": "2.0.1", + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, - "license": "MIT", "dependencies": { - "for-own": "^0.1.4", - "is-extendable": "^0.1.1" + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object.pick": { - "version": "1.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "isobject": "^3.0.1" + "node": ">= 0.4" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/obuf": { @@ -13096,8 +11507,7 @@ }, "node_modules/ol": { "version": "9.2.4", - "resolved": "https://registry.npmjs.org/ol/-/ol-9.2.4.tgz", - "integrity": "sha512-bsbu4ObaAlbELMIZWnYEvX4Z9jO+OyCBshtODhDKmqYTPEfnKOX3RieCr97tpJkqWTZvyV4tS9UQDvHoCdxS+A==", + "license": "BSD-2-Clause", "dependencies": { "color-rgba": "^3.0.0", "color-space": "^2.0.1", @@ -13113,8 +11523,7 @@ }, "node_modules/ol-mapbox-style": { "version": "12.3.4", - "resolved": "https://registry.npmjs.org/ol-mapbox-style/-/ol-mapbox-style-12.3.4.tgz", - "integrity": "sha512-TxGJZw4hmvc6n5dHSyAE8ZpgALJ6hVG5Q9yl0j2Q1KmLS9iq4wMpb383TAitWiG86SvJV4oDkWMGkyyMLfVyew==", + "license": "BSD-2-Clause", "dependencies": { "@mapbox/mapbox-gl-style-spec": "^13.23.1", "mapbox-to-css-font": "^2.4.1" @@ -13144,6 +11553,7 @@ }, "node_modules/once": { "version": "1.4.0", + "dev": true, "license": "ISC", "dependencies": { "wrappy": "1" @@ -13194,22 +11604,6 @@ "url-parse": "^1.4.7" } }, - "node_modules/optionator": { - "version": "0.8.3", - "dev": true, - "license": "MIT", - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/ora": { "version": "5.4.1", "license": "MIT", @@ -13374,105 +11768,44 @@ "dev": true, "license": "MIT", "engines": { - "node": ">=6" - } - }, - "node_modules/pacote": { - "version": "15.2.0", - "license": "ISC", - "dependencies": { - "@npmcli/git": "^4.0.0", - "@npmcli/installed-package-contents": "^2.0.1", - "@npmcli/promise-spawn": "^6.0.1", - "@npmcli/run-script": "^6.0.0", - "cacache": "^17.0.0", - "fs-minipass": "^3.0.0", - "minipass": "^5.0.0", - "npm-package-arg": "^10.0.0", - "npm-packlist": "^7.0.0", - "npm-pick-manifest": "^8.0.0", - "npm-registry-fetch": "^14.0.0", - "proc-log": "^3.0.0", - "promise-retry": "^2.0.1", - "read-package-json": "^6.0.0", - "read-package-json-fast": "^3.0.0", - "sigstore": "^1.3.0", - "ssri": "^10.0.0", - "tar": "^6.1.11" - }, - "bin": { - "pacote": "lib/bin.js" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/pacote/node_modules/cacache": { - "version": "17.1.4", - "license": "ISC", - "dependencies": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^7.7.1", - "minipass": "^7.0.3", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/pacote/node_modules/cacache/node_modules/minipass": { - "version": "7.0.4", - "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/pacote/node_modules/lru-cache": { - "version": "7.18.3", - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/pacote/node_modules/minipass": { - "version": "5.0.0", - "license": "ISC", - "engines": { - "node": ">=8" - } - }, - "node_modules/pacote/node_modules/minipass-collect": { - "version": "1.0.2", - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" + "node": ">=6" } }, - "node_modules/pacote/node_modules/minipass-collect/node_modules/minipass": { - "version": "3.3.6", + "node_modules/package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==" + }, + "node_modules/pacote": { + "version": "17.0.6", "license": "ISC", "dependencies": { - "yallist": "^4.0.0" + "@npmcli/git": "^5.0.0", + "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.0", + "cacache": "^18.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^7.0.2", + "npm-package-arg": "^11.0.0", + "npm-packlist": "^8.0.0", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^7.0.0", + "read-package-json-fast": "^3.0.0", + "sigstore": "^2.2.0", + "ssri": "^10.0.0", + "tar": "^6.1.11" + }, + "bin": { + "pacote": "lib/bin.js" }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/pacote/node_modules/yallist": { - "version": "4.0.0", - "license": "ISC" - }, "node_modules/pako": { "version": "2.1.0", "license": "(MIT AND Zlib)" @@ -13487,39 +11820,6 @@ "node": ">=6" } }, - "node_modules/parse-glob": { - "version": "3.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "glob-base": "^0.3.0", - "is-dotfile": "^1.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse-glob/node_modules/is-extglob": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse-glob/node_modules/is-glob": { - "version": "2.0.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/parse-headers": { "version": "2.0.5", "license": "MIT" @@ -13607,14 +11907,6 @@ "node": ">= 0.8" } }, - "node_modules/pascalcase": { - "version": "0.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/path-browserify": { "version": "1.0.1", "dev": true, @@ -13630,6 +11922,7 @@ }, "node_modules/path-is-absolute": { "version": "1.0.1", + "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" @@ -13652,25 +11945,24 @@ "license": "MIT" }, "node_modules/path-scurry": { - "version": "1.10.1", - "license": "BlueOak-1.0.0", + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", + "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.1.0", - "license": "ISC", - "engines": { - "node": "14 || >=16.14" - } + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" }, "node_modules/path-to-regexp": { "version": "0.1.7", @@ -13708,8 +12000,9 @@ }, "node_modules/pdfjs-dist": { "version": "2.12.313", + "resolved": "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-2.12.313.tgz", + "integrity": "sha512-1x6iXO4Qnv6Eb+YFdN5JdUzt4pAkxSp3aLAYPX93eQCyg/m7QFzXVWJHJVtoW48CI8HCXju4dSkhQZwoheL5mA==", "dev": true, - "license": "Apache-2.0", "peerDependencies": { "worker-loader": "^3.0.8" }, @@ -13720,9 +12013,10 @@ } }, "node_modules/pdfmake": { - "version": "0.2.8", + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.2.10.tgz", + "integrity": "sha512-doipFnmE1UHSk+Z3wfQuVweVQqx2pE/Ns2G5gCqZmWwqjDj+mZHnZYH/ryXWoIfD+iVdZUAutgI/VHkTCN+Xrw==", "dev": true, - "license": "MIT", "dependencies": { "@foliojs-fork/linebreak": "^1.1.1", "@foliojs-fork/pdfkit": "^0.14.0", @@ -13735,8 +12029,9 @@ }, "node_modules/pdfmake/node_modules/iconv-lite": { "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, - "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, @@ -13750,7 +12045,7 @@ "license": "MIT" }, "node_modules/picocolors": { - "version": "1.0.0", + "version": "1.0.1", "license": "ISC" }, "node_modules/picomatch": { @@ -13791,14 +12086,9 @@ } }, "node_modules/piscina": { - "version": "4.0.0", + "version": "4.4.0", "dev": true, "license": "MIT", - "dependencies": { - "eventemitter-asyncresource": "^1.0.0", - "hdr-histogram-js": "^2.0.1", - "hdr-histogram-percentiles-obj": "^3.0.0" - }, "optionalDependencies": { "nice-napi": "^1.0.2" } @@ -13891,18 +12181,21 @@ }, "node_modules/png-js": { "version": "1.0.0", + "resolved": "https://registry.npmjs.org/png-js/-/png-js-1.0.0.tgz", + "integrity": "sha512-k+YsbhpA9e+EFfKjTCH3VW6aoKlyNYI6NYdTfDL4CIvFnvsuO84ttonmZE7rc+v23SLTH8XX+5w/Ak9v0xGY4g==", "dev": true }, - "node_modules/posix-character-classes": { - "version": "0.1.1", + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", "dev": true, - "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" } }, "node_modules/postcss": { - "version": "8.4.31", + "version": "8.4.35", "funding": [ { "type": "opencollective", @@ -13919,7 +12212,7 @@ ], "license": "MIT", "dependencies": { - "nanoid": "^3.3.6", + "nanoid": "^3.3.7", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -13928,28 +12221,42 @@ } }, "node_modules/postcss-loader": { - "version": "7.3.3", + "version": "8.1.1", "dev": true, "license": "MIT", "dependencies": { - "cosmiconfig": "^8.2.0", - "jiti": "^1.18.2", - "semver": "^7.3.8" + "cosmiconfig": "^9.0.0", + "jiti": "^1.20.0", + "semver": "^7.5.4" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { + "@rspack/core": "0.x || 1.x", "postcss": "^7.0.0 || ^8.0.1", "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, + "node_modules/postcss-media-query-parser": { + "version": "0.2.3", + "dev": true, + "license": "MIT" + }, "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", + "version": "3.1.0", "dev": true, "license": "ISC", "engines": { @@ -13960,7 +12267,7 @@ } }, "node_modules/postcss-modules-local-by-default": { - "version": "4.0.3", + "version": "4.0.5", "dev": true, "license": "MIT", "dependencies": { @@ -13976,7 +12283,7 @@ } }, "node_modules/postcss-modules-scope": { - "version": "3.0.0", + "version": "3.2.0", "dev": true, "license": "ISC", "dependencies": { @@ -14004,7 +12311,7 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.0.13", + "version": "6.1.0", "dev": true, "license": "MIT", "dependencies": { @@ -14015,67 +12322,6 @@ "node": ">=4" } }, - "node_modules/postcss-url": { - "version": "10.1.3", - "dev": true, - "license": "MIT", - "dependencies": { - "make-dir": "~3.1.0", - "mime": "~2.5.2", - "minimatch": "~3.0.4", - "xxhashjs": "~0.2.2" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-url/node_modules/make-dir": { - "version": "3.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/postcss-url/node_modules/mime": { - "version": "2.5.2", - "dev": true, - "license": "MIT", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/postcss-url/node_modules/minimatch": { - "version": "3.0.8", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/postcss-url/node_modules/semver": { - "version": "6.3.1", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/postcss-value-parser": { "version": "4.2.0", "dev": true, @@ -14085,32 +12331,6 @@ "version": "2.0.0", "license": "ISC" }, - "node_modules/prelude-ls": { - "version": "1.1.2", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/preserve": { - "version": "0.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pretty-bytes": { - "version": "5.6.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/prismjs": { "version": "1.29.0", "dev": true, @@ -14132,8 +12352,9 @@ "license": "MIT" }, "node_modules/proj4": { - "version": "2.9.2", - "license": "MIT", + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/proj4/-/proj4-2.11.0.tgz", + "integrity": "sha512-SasuTkAx8HnWQHfIyhkdUNJorSJqINHAN3EyMWYiQRVorftz9DHz650YraFgczwgtHOxqnfuDxSNv3C8MUnHeg==", "dependencies": { "mgrs": "1.0.0", "wkt-parser": "^1.3.3" @@ -14573,19 +12794,6 @@ "version": "2.0.0", "license": "ISC" }, - "node_modules/quote-stream": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer-equal": "0.0.1", - "minimist": "^1.1.3", - "through2": "^2.0.0" - }, - "bin": { - "quote-stream": "bin/cmd.js" - } - }, "node_modules/ramda": { "version": "0.29.1", "license": "MIT", @@ -14594,27 +12802,6 @@ "url": "https://opencollective.com/ramda" } }, - "node_modules/randomatic": { - "version": "3.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^4.0.0", - "kind-of": "^6.0.0", - "math-random": "^1.0.1" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/randomatic/node_modules/is-number": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/randombytes": { "version": "2.1.0", "dev": true, @@ -14653,16 +12840,16 @@ } }, "node_modules/read-package-json": { - "version": "6.0.4", + "version": "7.0.1", "license": "ISC", "dependencies": { "glob": "^10.2.2", "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^5.0.0", + "normalize-package-data": "^6.0.0", "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/read-package-json-fast": { @@ -14677,14 +12864,14 @@ } }, "node_modules/read-package-json-fast/node_modules/json-parse-even-better-errors": { - "version": "3.0.1", + "version": "3.0.2", "license": "MIT", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/read-package-json/node_modules/json-parse-even-better-errors": { - "version": "3.0.1", + "version": "3.0.2", "license": "MIT", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -14713,7 +12900,7 @@ } }, "node_modules/reflect-metadata": { - "version": "0.1.13", + "version": "0.2.2", "dev": true, "license": "Apache-2.0" }, @@ -14734,7 +12921,7 @@ } }, "node_modules/regenerator-runtime": { - "version": "0.13.11", + "version": "0.14.1", "dev": true, "license": "MIT" }, @@ -14746,42 +12933,21 @@ "@babel/runtime": "^7.8.4" } }, - "node_modules/regex-cache": { - "version": "0.4.4", - "dev": true, - "license": "MIT", - "dependencies": { - "is-equal-shallow": "^0.1.3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/regex-not": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/regex-parser": { "version": "2.2.11", "dev": true, "license": "MIT" }, "node_modules/regexp.prototype.flags": { - "version": "1.5.1", + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", "dev": true, - "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" }, "engines": { "node": ">= 0.4" @@ -14824,27 +12990,6 @@ "jsesc": "bin/jsesc" } }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "dev": true, - "license": "ISC" - }, - "node_modules/repeat-element": { - "version": "1.1.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/repeat-string": { - "version": "1.6.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10" - } - }, "node_modules/request": { "version": "2.88.2", "dev": true, @@ -14944,10 +13089,10 @@ "license": "MIT" }, "node_modules/resolve": { - "version": "1.22.2", + "version": "1.22.8", "license": "MIT", "dependencies": { - "is-core-module": "^2.11.0", + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, @@ -14983,11 +13128,6 @@ "protocol-buffers-schema": "^3.3.1" } }, - "node_modules/resolve-url": { - "version": "0.2.1", - "dev": true, - "license": "MIT" - }, "node_modules/resolve-url-loader": { "version": "5.0.0", "dev": true, @@ -15039,14 +13179,6 @@ "version": "3.0.7", "license": "ISC" }, - "node_modules/ret": { - "version": "0.1.15", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12" - } - }, "node_modules/retry": { "version": "0.12.0", "license": "MIT", @@ -15070,6 +13202,7 @@ }, "node_modules/rimraf": { "version": "3.0.2", + "dev": true, "license": "ISC", "dependencies": { "glob": "^7.1.3" @@ -15083,6 +13216,7 @@ }, "node_modules/rimraf/node_modules/glob": { "version": "7.2.3", + "dev": true, "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", @@ -15104,22 +13238,41 @@ "license": "Unlicense" }, "node_modules/rollup": { - "version": "3.29.4", + "version": "4.18.1", "dev": true, "license": "MIT", + "dependencies": { + "@types/estree": "1.0.5" + }, "bin": { "rollup": "dist/bin/rollup" }, "engines": { - "node": ">=14.18.0", + "node": ">=18.0.0", "npm": ">=8.0.0" }, "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.18.1", + "@rollup/rollup-android-arm64": "4.18.1", + "@rollup/rollup-darwin-arm64": "4.18.1", + "@rollup/rollup-darwin-x64": "4.18.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.18.1", + "@rollup/rollup-linux-arm-musleabihf": "4.18.1", + "@rollup/rollup-linux-arm64-gnu": "4.18.1", + "@rollup/rollup-linux-arm64-musl": "4.18.1", + "@rollup/rollup-linux-powerpc64le-gnu": "4.18.1", + "@rollup/rollup-linux-riscv64-gnu": "4.18.1", + "@rollup/rollup-linux-s390x-gnu": "4.18.1", + "@rollup/rollup-linux-x64-gnu": "4.18.1", + "@rollup/rollup-linux-x64-musl": "4.18.1", + "@rollup/rollup-win32-arm64-msvc": "4.18.1", + "@rollup/rollup-win32-ia32-msvc": "4.18.1", + "@rollup/rollup-win32-x64-msvc": "4.18.1", "fsevents": "~2.3.2" } }, "node_modules/run-async": { - "version": "2.4.1", + "version": "3.0.0", "license": "MIT", "engines": { "node": ">=0.12.0" @@ -15158,6 +13311,30 @@ "tslib": "^2.1.0" } }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, "node_modules/safe-buffer": { "version": "5.2.1", "funding": [ @@ -15176,12 +13353,21 @@ ], "license": "MIT" }, - "node_modules/safe-regex": { - "version": "1.1.0", + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, - "license": "MIT", "dependencies": { - "ret": "~0.1.10" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/safer-buffer": { @@ -15189,7 +13375,7 @@ "license": "MIT" }, "node_modules/sass": { - "version": "1.64.1", + "version": "1.71.1", "dev": true, "license": "MIT", "dependencies": { @@ -15205,28 +13391,28 @@ } }, "node_modules/sass-loader": { - "version": "13.3.2", + "version": "14.1.1", "dev": true, "license": "MIT", "dependencies": { "neo-async": "^2.6.2" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "fibers": ">= 3.1.0", + "@rspack/core": "0.x || 1.x", "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", "sass": "^1.3.0", "sass-embedded": "*", "webpack": "^5.0.0" }, "peerDependenciesMeta": { - "fibers": { + "@rspack/core": { "optional": true }, "node-sass": { @@ -15237,6 +13423,9 @@ }, "sass-embedded": { "optional": true + }, + "webpack": { + "optional": true } } }, @@ -15286,17 +13475,6 @@ "dev": true, "license": "ISC" }, - "node_modules/saxes": { - "version": "5.0.1", - "dev": true, - "license": "ISC", - "dependencies": { - "xmlchars": "^2.2.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/schema-utils": { "version": "4.2.0", "dev": true, @@ -15315,20 +13493,6 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/scope-analyzer": { - "version": "2.1.2", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "array-from": "^2.1.1", - "dash-ast": "^2.0.1", - "es6-map": "^0.1.5", - "es6-set": "^0.1.5", - "es6-symbol": "^3.1.1", - "estree-is-function": "^1.0.0", - "get-assigned-identifiers": "^1.1.0" - } - }, "node_modules/select-hose": { "version": "2.0.0", "dev": true, @@ -15606,30 +13770,34 @@ }, "node_modules/set-blocking": { "version": "2.0.0", + "dev": true, "license": "ISC" }, "node_modules/set-function-length": { - "version": "1.1.1", - "dev": true, + "version": "1.2.2", "license": "MIT", "dependencies": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/set-function-name": { - "version": "2.0.1", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, - "license": "MIT", "dependencies": { - "define-data-property": "^1.0.1", + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.0" + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -15676,332 +13844,89 @@ "kind-of": "^6.0.2" }, "engines": { - "node": ">=8" - } - }, - "node_modules/shallow-copy": { - "version": "0.0.1", - "dev": true, - "license": "MIT" - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/shell-quote": { - "version": "1.8.1", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "4.1.0", - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/sigstore": { - "version": "1.9.0", - "license": "Apache-2.0", - "dependencies": { - "@sigstore/bundle": "^1.1.0", - "@sigstore/protobuf-specs": "^0.2.0", - "@sigstore/sign": "^1.0.0", - "@sigstore/tuf": "^1.0.3", - "make-fetch-happen": "^11.0.1" - }, - "bin": { - "sigstore": "bin/sigstore.js" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/sigstore/node_modules/@tootallnate/once": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/sigstore/node_modules/cacache": { - "version": "17.1.4", - "license": "ISC", - "dependencies": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^7.7.1", - "minipass": "^7.0.3", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/sigstore/node_modules/http-proxy-agent": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/sigstore/node_modules/lru-cache": { - "version": "7.18.3", - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/sigstore/node_modules/make-fetch-happen": { - "version": "11.1.1", - "license": "ISC", - "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "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.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/sigstore/node_modules/make-fetch-happen/node_modules/minipass": { - "version": "5.0.0", - "license": "ISC", - "engines": { - "node": ">=8" - } - }, - "node_modules/sigstore/node_modules/minipass-collect": { - "version": "1.0.2", - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/sigstore/node_modules/minipass-collect/node_modules/minipass": { - "version": "3.3.6", - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/sigstore/node_modules/minipass-fetch": { - "version": "3.0.4", - "license": "MIT", - "dependencies": { - "minipass": "^7.0.3", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - }, - "optionalDependencies": { - "encoding": "^0.1.13" - } - }, - "node_modules/sigstore/node_modules/yallist": { - "version": "4.0.0", - "license": "ISC" - }, - "node_modules/slash": { - "version": "4.0.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "license": "MIT", - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/snapdragon": { - "version": "0.8.2", - "dev": true, - "license": "MIT", - "dependencies": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node": { - "version": "2.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon-node/node_modules/define-property": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/snapdragon-util": { - "version": "3.0.1", - "dev": true, + "node_modules/shebang-command": { + "version": "2.0.0", "license": "MIT", "dependencies": { - "kind-of": "^3.2.0" + "shebang-regex": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/snapdragon-util/node_modules/kind-of": { - "version": "3.2.2", - "dev": true, + "node_modules/shebang-regex": { + "version": "3.0.0", "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/snapdragon/node_modules/debug": { - "version": "2.6.9", + "node_modules/shell-quote": { + "version": "1.8.1", "dev": true, "license": "MIT", - "dependencies": { - "ms": "2.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/snapdragon/node_modules/define-property": { - "version": "0.2.5", + "node_modules/side-channel": { + "version": "1.0.4", "dev": true, "license": "MIT", "dependencies": { - "is-descriptor": "^0.1.0" + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "license": "ISC", "engines": { - "node": ">=0.10.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/snapdragon/node_modules/extend-shallow": { - "version": "2.0.1", - "dev": true, - "license": "MIT", + "node_modules/sigstore": { + "version": "2.3.1", + "license": "Apache-2.0", "dependencies": { - "is-extendable": "^0.1.0" + "@sigstore/bundle": "^2.3.2", + "@sigstore/core": "^1.0.0", + "@sigstore/protobuf-specs": "^0.3.2", + "@sigstore/sign": "^2.3.2", + "@sigstore/tuf": "^2.3.4", + "@sigstore/verify": "^1.2.1" }, "engines": { - "node": ">=0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/snapdragon/node_modules/is-descriptor": { - "version": "0.1.7", + "node_modules/slash": { + "version": "4.0.0", "dev": true, "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, "engines": { - "node": ">= 0.4" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/snapdragon/node_modules/ms": { - "version": "2.0.0", - "dev": true, - "license": "MIT" - }, - "node_modules/snapdragon/node_modules/source-map": { - "version": "0.5.7", - "dev": true, - "license": "BSD-3-Clause", + "node_modules/smart-buffer": { + "version": "4.2.0", + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 6.0.0", + "npm": ">= 3.0.0" } }, "node_modules/socket.io": { @@ -16080,27 +14005,27 @@ } }, "node_modules/socks": { - "version": "2.7.1", + "version": "2.8.3", "license": "MIT", "dependencies": { - "ip": "^2.0.0", + "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" }, "engines": { - "node": ">= 10.13.0", + "node": ">= 10.0.0", "npm": ">= 3.0.0" } }, "node_modules/socks-proxy-agent": { - "version": "7.0.0", + "version": "8.0.4", "license": "MIT", "dependencies": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" + "agent-base": "^7.1.1", + "debug": "^4.3.4", + "socks": "^2.8.3" }, "engines": { - "node": ">= 10" + "node": ">= 14" } }, "node_modules/sort-asc": { @@ -16140,16 +14065,15 @@ } }, "node_modules/source-map-loader": { - "version": "4.0.1", + "version": "5.0.0", "dev": true, "license": "MIT", "dependencies": { - "abab": "^2.0.6", "iconv-lite": "^0.6.3", "source-map-js": "^1.0.2" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", @@ -16170,18 +14094,6 @@ "node": ">=0.10.0" } }, - "node_modules/source-map-resolve": { - "version": "0.5.3", - "dev": true, - "license": "MIT", - "dependencies": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, "node_modules/source-map-support": { "version": "0.5.21", "dev": true, @@ -16199,16 +14111,6 @@ "node": ">=0.10.0" } }, - "node_modules/source-map-url": { - "version": "0.4.1", - "dev": true, - "license": "MIT" - }, - "node_modules/sourcemap-codec": { - "version": "1.4.8", - "dev": true, - "license": "MIT" - }, "node_modules/spdx-correct": { "version": "3.2.0", "license": "Apache-2.0", @@ -16218,7 +14120,7 @@ } }, "node_modules/spdx-exceptions": { - "version": "2.3.0", + "version": "2.5.0", "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { @@ -16230,7 +14132,7 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.16", + "version": "3.0.18", "license": "CC0-1.0" }, "node_modules/spdy": { @@ -16284,7 +14186,6 @@ }, "node_modules/sprintf-js": { "version": "1.1.3", - "dev": true, "license": "BSD-3-Clause" }, "node_modules/sshpk": { @@ -16312,7 +14213,7 @@ } }, "node_modules/ssri": { - "version": "10.0.5", + "version": "10.0.6", "license": "ISC", "dependencies": { "minipass": "^7.0.3" @@ -16321,181 +14222,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/static-eval": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "escodegen": "^1.11.1" - } - }, - "node_modules/static-eval/node_modules/escodegen": { - "version": "1.14.3", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=4.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/static-eval/node_modules/estraverse": { - "version": "4.3.0", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/static-eval/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend": { - "version": "0.1.2", - "dev": true, - "license": "MIT", - "dependencies": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/define-property": { - "version": "0.2.5", - "dev": true, - "license": "MIT", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-extend/node_modules/is-descriptor": { - "version": "0.1.7", - "dev": true, - "license": "MIT", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/static-module": { - "version": "3.0.4", - "dev": true, - "license": "MIT", - "dependencies": { - "acorn-node": "^1.3.0", - "concat-stream": "~1.6.0", - "convert-source-map": "^1.5.1", - "duplexer2": "~0.1.4", - "escodegen": "^1.11.1", - "has": "^1.0.1", - "magic-string": "0.25.1", - "merge-source-map": "1.0.4", - "object-inspect": "^1.6.0", - "readable-stream": "~2.3.3", - "scope-analyzer": "^2.0.1", - "shallow-copy": "~0.0.1", - "static-eval": "^2.0.5", - "through2": "~2.0.3" - } - }, - "node_modules/static-module/node_modules/escodegen": { - "version": "1.14.3", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=4.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" - } - }, - "node_modules/static-module/node_modules/estraverse": { - "version": "4.3.0", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/static-module/node_modules/magic-string": { - "version": "0.25.1", - "dev": true, - "license": "MIT", - "dependencies": { - "sourcemap-codec": "^1.4.1" - } - }, - "node_modules/static-module/node_modules/readable-stream": { - "version": "2.3.8", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/static-module/node_modules/safe-buffer": { - "version": "5.1.2", - "dev": true, - "license": "MIT" - }, - "node_modules/static-module/node_modules/source-map": { - "version": "0.6.1", - "dev": true, - "license": "BSD-3-Clause", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/static-module/node_modules/string_decoder": { - "version": "1.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/statuses": { "version": "1.5.0", "dev": true, @@ -16577,7 +14303,8 @@ "node_modules/string-width-cjs": { "name": "string-width", "version": "4.2.3", - "license": "MIT", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -16587,6 +14314,55 @@ "node": ">=8" } }, + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/strip-ansi": { "version": "6.0.1", "license": "MIT", @@ -16600,7 +14376,8 @@ "node_modules/strip-ansi-cjs": { "name": "strip-ansi", "version": "6.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -16616,14 +14393,6 @@ "node": ">=6" } }, - "node_modules/subarg": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.1.0" - } - }, "node_modules/supercluster": { "version": "8.0.1", "license": "ISC", @@ -16660,13 +14429,8 @@ "version": "4.0.0", "license": "MIT", "engines": { - "node": ">=0.10" - } - }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "dev": true, - "license": "MIT" + "node": ">=0.10" + } }, "node_modules/tablesort": { "version": "5.3.0", @@ -16682,7 +14446,7 @@ } }, "node_modules/tar": { - "version": "6.2.0", + "version": "6.2.1", "license": "ISC", "dependencies": { "chownr": "^2.0.0", @@ -16738,7 +14502,7 @@ "license": "ISC" }, "node_modules/terser": { - "version": "5.19.2", + "version": "5.29.1", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -16755,15 +14519,15 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.9", + "version": "5.3.10", "dev": true, "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.20", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "terser": "^5.26.0" }, "engines": { "node": ">= 10.13.0" @@ -16869,55 +14633,15 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/text-table": { - "version": "0.2.0", - "dev": true, - "license": "MIT" - }, "node_modules/three": { "version": "0.137.5", "license": "MIT" }, "node_modules/through": { "version": "2.3.8", - "license": "MIT" - }, - "node_modules/through2": { - "version": "2.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/through2/node_modules/safe-buffer": { - "version": "5.1.2", "dev": true, "license": "MIT" }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, "node_modules/thunky": { "version": "1.1.0", "dev": true, @@ -16925,8 +14649,9 @@ }, "node_modules/tiny-inflate": { "version": "1.0.3", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", + "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", + "dev": true }, "node_modules/tinyqueue": { "version": "2.0.3", @@ -16949,42 +14674,6 @@ "node": ">=4" } }, - "node_modules/to-object-path": { - "version": "0.3.0", - "dev": true, - "license": "MIT", - "dependencies": { - "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-object-path/node_modules/kind-of": { - "version": "3.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/to-regex": { - "version": "3.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/to-regex-range": { "version": "5.0.1", "license": "MIT", @@ -17023,43 +14712,19 @@ "version": "2.0.2", "license": "MIT" }, - "node_modules/tough-cookie": { - "version": "4.1.3", + "node_modules/traverse": { + "version": "0.6.9", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.9.tgz", + "integrity": "sha512-7bBrcF+/LQzSgFmT0X5YclVqQxtv7TDJ1f8Wj7ibBu/U6BMLeOpUxuZjV7rMc44UtKxlnMFigdhFAIszSX1DMg==", "dev": true, - "license": "BSD-3-Clause", "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.2.0", - "url-parse": "^1.5.3" + "gopd": "^1.0.1", + "typedarray.prototype.slice": "^1.0.3", + "which-typed-array": "^1.1.15" }, "engines": { - "node": ">=6" - } - }, - "node_modules/tough-cookie/node_modules/universalify": { - "version": "0.2.0", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/tr46": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "punycode": "^2.1.1" + "node": ">= 0.4" }, - "engines": { - "node": ">=8" - } - }, - "node_modules/traverse": { - "version": "0.6.7", - "dev": true, - "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -17073,12 +14738,13 @@ } }, "node_modules/ts-morph": { - "version": "20.0.0", + "version": "22.0.0", + "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-22.0.0.tgz", + "integrity": "sha512-M9MqFGZREyeb5fTl6gNHKZLqBQA0TjA1lea+CR48R8EBTDuWrNqW6ccC5QvjNR4s6wDumD3LTCjOFSp9iwlzaw==", "dev": true, - "license": "MIT", "dependencies": { - "@ts-morph/common": "~0.21.0", - "code-block-writer": "^12.0.0" + "@ts-morph/common": "~0.23.0", + "code-block-writer": "^13.0.1" } }, "node_modules/ts-node": { @@ -17106,8 +14772,9 @@ } }, "node_modules/tslib": { - "version": "2.6.2", - "license": "0BSD" + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", + "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" }, "node_modules/tslint": { "version": "6.1.3", @@ -17200,200 +14867,164 @@ "license": "0BSD" }, "node_modules/tuf-js": { - "version": "1.1.7", + "version": "2.2.1", "license": "MIT", "dependencies": { - "@tufjs/models": "1.0.4", + "@tufjs/models": "2.0.1", "debug": "^4.3.4", - "make-fetch-happen": "^11.1.1" + "make-fetch-happen": "^13.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/tuf-js/node_modules/@tootallnate/once": { - "version": "2.0.0", - "license": "MIT", - "engines": { - "node": ">= 10" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/tuf-js/node_modules/cacache": { - "version": "17.1.4", - "license": "ISC", + "node_modules/tunnel-agent": { + "version": "0.6.0", + "dev": true, + "license": "Apache-2.0", "dependencies": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^7.7.1", - "minipass": "^7.0.3", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" + "safe-buffer": "^5.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "*" } }, - "node_modules/tuf-js/node_modules/http-proxy-agent": { - "version": "5.0.0", - "license": "MIT", - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } + "node_modules/tweetnacl": { + "version": "0.14.5", + "dev": true, + "license": "Unlicense" }, - "node_modules/tuf-js/node_modules/lru-cache": { - "version": "7.18.3", - "license": "ISC", + "node_modules/type": { + "version": "1.2.0", + "license": "ISC" + }, + "node_modules/type-fest": { + "version": "0.21.3", + "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/tuf-js/node_modules/make-fetch-happen": { - "version": "11.1.1", - "license": "ISC", + "node_modules/type-is": { + "version": "1.6.18", + "dev": true, + "license": "MIT", "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "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.0" + "media-typer": "0.3.0", + "mime-types": "~2.1.24" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/tuf-js/node_modules/make-fetch-happen/node_modules/minipass": { - "version": "5.0.0", - "license": "ISC", - "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/tuf-js/node_modules/minipass-collect": { + "node_modules/typed-array-buffer": { "version": "1.0.2", - "license": "ISC", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dev": true, "dependencies": { - "minipass": "^3.0.0" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" }, "engines": { - "node": ">= 8" + "node": ">= 0.4" } }, - "node_modules/tuf-js/node_modules/minipass-collect/node_modules/minipass": { - "version": "3.3.6", - "license": "ISC", + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dev": true, "dependencies": { - "yallist": "^4.0.0" + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/tuf-js/node_modules/minipass-fetch": { - "version": "3.0.4", - "license": "MIT", + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dev": true, "dependencies": { - "minipass": "^7.0.3", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": ">= 0.4" }, - "optionalDependencies": { - "encoding": "^0.1.13" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/tuf-js/node_modules/yallist": { - "version": "4.0.0", - "license": "ISC" - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", "dev": true, - "license": "Apache-2.0", "dependencies": { - "safe-buffer": "^5.0.1" + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" }, "engines": { - "node": "*" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/tweetnacl": { - "version": "0.14.5", + "node_modules/typed-assert": { + "version": "1.0.9", "dev": true, - "license": "Unlicense" + "license": "MIT" }, - "node_modules/type": { - "version": "1.2.0", - "license": "ISC" + "node_modules/typedarray": { + "version": "0.0.6", + "license": "MIT" }, - "node_modules/type-check": { - "version": "0.3.2", + "node_modules/typedarray.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz", + "integrity": "sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==", "dev": true, - "license": "MIT", "dependencies": { - "prelude-ls": "~1.1.2" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-errors": "^1.3.0", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-offset": "^1.0.2" }, "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.21.3", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "dev": true, - "license": "MIT", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typed-assert": { - "version": "1.0.9", - "dev": true, - "license": "MIT" - }, - "node_modules/typedarray": { - "version": "0.0.6", - "license": "MIT" - }, "node_modules/typescript": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", - "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "version": "5.4.5", + "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -17404,16 +15035,14 @@ }, "node_modules/typewise": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/typewise/-/typewise-1.0.3.tgz", - "integrity": "sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ==", + "license": "MIT", "dependencies": { "typewise-core": "^1.2.0" } }, "node_modules/typewise-core": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/typewise-core/-/typewise-core-1.2.0.tgz", - "integrity": "sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg==" + "license": "MIT" }, "node_modules/ua-parser-js": { "version": "0.7.37", @@ -17453,6 +15082,29 @@ "resolved": "scripts/library", "link": true }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici": { + "version": "6.11.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.0" + } + }, "node_modules/undici-types": { "version": "5.26.5", "license": "MIT" @@ -17487,8 +15139,9 @@ }, "node_modules/unicode-properties": { "version": "1.4.1", + "resolved": "https://registry.npmjs.org/unicode-properties/-/unicode-properties-1.4.1.tgz", + "integrity": "sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==", "dev": true, - "license": "MIT", "dependencies": { "base64-js": "^1.3.0", "unicode-trie": "^2.0.0" @@ -17504,8 +15157,9 @@ }, "node_modules/unicode-trie": { "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz", + "integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==", "dev": true, - "license": "MIT", "dependencies": { "pako": "^0.2.5", "tiny-inflate": "^1.0.0" @@ -17513,8 +15167,9 @@ }, "node_modules/unicode-trie/node_modules/pako": { "version": "0.2.9", - "dev": true, - "license": "MIT" + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "dev": true }, "node_modules/union-value": { "version": "1.0.1", @@ -17570,52 +15225,8 @@ "node": ">= 0.8" } }, - "node_modules/unset-value": { - "version": "1.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value": { - "version": "0.3.1", - "dev": true, - "license": "MIT", - "dependencies": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { - "version": "2.1.0", - "dev": true, - "license": "MIT", - "dependencies": { - "isarray": "1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/unset-value/node_modules/has-values": { - "version": "0.1.4", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/update-browserslist-db": { - "version": "1.0.13", + "version": "1.1.0", "dev": true, "funding": [ { @@ -17633,8 +15244,8 @@ ], "license": "MIT", "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.1.2", + "picocolors": "^1.0.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -17654,11 +15265,6 @@ "version": "1.19.11", "license": "MIT" }, - "node_modules/urix": { - "version": "0.1.0", - "dev": true, - "license": "MIT" - }, "node_modules/url-parse": { "version": "1.5.10", "license": "MIT", @@ -17667,14 +15273,6 @@ "requires-port": "^1.0.0" } }, - "node_modules/use": { - "version": "3.1.1", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/util-deprecate": { "version": "1.0.2", "license": "MIT" @@ -17708,11 +15306,8 @@ } }, "node_modules/validate-npm-package-name": { - "version": "5.0.0", + "version": "5.0.1", "license": "ISC", - "dependencies": { - "builtins": "^5.0.0" - }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } @@ -17751,28 +15346,28 @@ } }, "node_modules/vite": { - "version": "4.4.7", + "version": "5.1.7", "dev": true, "license": "MIT", "dependencies": { - "esbuild": "^0.18.10", - "postcss": "^8.4.26", - "rollup": "^3.25.2" + "esbuild": "^0.19.3", + "postcss": "^8.4.35", + "rollup": "^4.2.0" }, "bin": { "vite": "bin/vite.js" }, "engines": { - "node": "^14.18.0 || >=16.0.0" + "node": "^18.0.0 || >=20.0.0" }, "funding": { "url": "https://github.com/vitejs/vite?sponsor=1" }, "optionalDependencies": { - "fsevents": "~2.3.2" + "fsevents": "~2.3.3" }, "peerDependencies": { - "@types/node": ">= 14", + "@types/node": "^18.0.0 || >=20.0.0", "less": "*", "lightningcss": "^1.21.0", "sass": "*", @@ -17804,6 +15399,58 @@ } } }, + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.19.12", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/esbuild": { + "version": "0.19.12", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.19.12", + "@esbuild/android-arm": "0.19.12", + "@esbuild/android-arm64": "0.19.12", + "@esbuild/android-x64": "0.19.12", + "@esbuild/darwin-arm64": "0.19.12", + "@esbuild/darwin-x64": "0.19.12", + "@esbuild/freebsd-arm64": "0.19.12", + "@esbuild/freebsd-x64": "0.19.12", + "@esbuild/linux-arm": "0.19.12", + "@esbuild/linux-arm64": "0.19.12", + "@esbuild/linux-ia32": "0.19.12", + "@esbuild/linux-loong64": "0.19.12", + "@esbuild/linux-mips64el": "0.19.12", + "@esbuild/linux-ppc64": "0.19.12", + "@esbuild/linux-riscv64": "0.19.12", + "@esbuild/linux-s390x": "0.19.12", + "@esbuild/linux-x64": "0.19.12", + "@esbuild/netbsd-x64": "0.19.12", + "@esbuild/openbsd-x64": "0.19.12", + "@esbuild/sunos-x64": "0.19.12", + "@esbuild/win32-arm64": "0.19.12", + "@esbuild/win32-ia32": "0.19.12", + "@esbuild/win32-x64": "0.19.12" + } + }, "node_modules/void-elements": { "version": "2.0.1", "dev": true, @@ -17821,31 +15468,12 @@ "pbf": "^3.2.1" } }, - "node_modules/w3c-hr-time": { - "version": "1.0.2", - "dev": true, - "license": "MIT", - "dependencies": { - "browser-process-hrtime": "^1.0.0" - } - }, "node_modules/w3c-schemas": { "version": "1.4.0", "dependencies": { "jsonix": ">=2.4.0" } }, - "node_modules/w3c-xmlserializer": { - "version": "2.0.0", - "dev": true, - "license": "MIT", - "dependencies": { - "xml-name-validator": "^3.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/watchpack": { "version": "2.4.0", "dev": true, @@ -18006,27 +15634,19 @@ "node": ">=0.8.0" } }, - "node_modules/webidl-conversions": { - "version": "6.1.0", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=10.4" - } - }, "node_modules/webpack": { - "version": "5.88.2", + "version": "5.90.3", "dev": true, "license": "MIT", "dependencies": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", + "@types/estree": "^1.0.5", "@webassemblyjs/ast": "^1.11.5", "@webassemblyjs/wasm-edit": "^1.11.5", "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "browserslist": "^4.21.10", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.15.0", "es-module-lexer": "^1.2.1", @@ -18040,7 +15660,7 @@ "neo-async": "^2.6.2", "schema-utils": "^3.2.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", + "terser-webpack-plugin": "^5.3.10", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, @@ -18061,7 +15681,7 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "6.1.1", + "version": "6.1.2", "dev": true, "license": "MIT", "dependencies": { @@ -18146,7 +15766,7 @@ } }, "node_modules/webpack-dev-server/node_modules/webpack-dev-middleware": { - "version": "5.3.3", + "version": "5.3.4", "dev": true, "license": "MIT", "dependencies": { @@ -18167,32 +15787,13 @@ "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/webpack-dev-server/node_modules/ws": { - "version": "8.14.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/webpack-merge": { - "version": "5.9.0", + "version": "5.10.0", "dev": true, "license": "MIT", "dependencies": { "clone-deep": "^4.0.1", + "flat": "^5.0.2", "wildcard": "^2.0.0" }, "engines": { @@ -18293,36 +15894,10 @@ "node": ">=0.8.0" } }, - "node_modules/whatwg-encoding": { - "version": "1.0.5", - "dev": true, - "license": "MIT", - "dependencies": { - "iconv-lite": "0.4.24" - } - }, "node_modules/whatwg-fetch": { "version": "3.6.19", "license": "MIT" }, - "node_modules/whatwg-mimetype": { - "version": "2.3.0", - "dev": true, - "license": "MIT" - }, - "node_modules/whatwg-url": { - "version": "8.7.0", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash": "^4.7.0", - "tr46": "^2.1.0", - "webidl-conversions": "^6.1.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/which": { "version": "2.0.2", "license": "ISC", @@ -18336,16 +15911,44 @@ "node": ">= 8" } }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/which-module": { "version": "2.0.1", "dev": true, "license": "ISC" }, - "node_modules/wide-align": { - "version": "1.1.5", - "license": "ISC", + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dev": true, "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/wildcard": { @@ -18420,14 +16023,6 @@ "version": "1.3.3", "license": "MIT" }, - "node_modules/word-wrap": { - "version": "1.2.5", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/wordwrap": { "version": "1.0.0", "dev": true, @@ -18451,7 +16046,8 @@ "node_modules/wrap-ansi-cjs": { "name": "wrap-ansi", "version": "7.0.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -18466,7 +16062,8 @@ }, "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { "version": "4.3.0", - "license": "MIT", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dependencies": { "color-convert": "^2.0.1" }, @@ -18479,7 +16076,8 @@ }, "node_modules/wrap-ansi-cjs/node_modules/color-convert": { "version": "2.0.1", - "license": "MIT", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dependencies": { "color-name": "~1.1.4" }, @@ -18489,7 +16087,8 @@ }, "node_modules/wrap-ansi-cjs/node_modules/color-name": { "version": "1.1.4", - "license": "MIT" + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "4.3.0", @@ -18520,18 +16119,19 @@ }, "node_modules/wrappy": { "version": "1.0.2", + "dev": true, "license": "ISC" }, "node_modules/ws": { - "version": "7.5.9", + "version": "8.18.0", "dev": true, "license": "MIT", "engines": { - "node": ">=8.3.0" + "node": ">=10.0.0" }, "peerDependencies": { "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" + "utf-8-validate": ">=5.0.2" }, "peerDependenciesMeta": { "bufferutil": { @@ -18542,11 +16142,6 @@ } } }, - "node_modules/xml-name-validator": { - "version": "3.0.0", - "dev": true, - "license": "Apache-2.0" - }, "node_modules/xml-utils": { "version": "1.7.0", "license": "CC0-1.0" @@ -18579,15 +16174,11 @@ "node": ">=6.0" } }, - "node_modules/xmlchars": { - "version": "2.2.0", - "dev": true, - "license": "MIT" - }, "node_modules/xmldoc": { "version": "1.3.0", + "resolved": "https://registry.npmjs.org/xmldoc/-/xmldoc-1.3.0.tgz", + "integrity": "sha512-y7IRWW6PvEnYQZNZFMRLNJw+p3pezM4nKYPfr15g4OOW9i8VpeydycFuipE2297OvZnh3jSb2pxOt9QpkZUVng==", "dev": true, - "license": "MIT", "dependencies": { "sax": "^1.2.4" } @@ -18610,22 +16201,6 @@ "version": "0.6.1", "license": "MIT" }, - "node_modules/xtend": { - "version": "4.0.2", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/xxhashjs": { - "version": "0.2.2", - "dev": true, - "license": "MIT", - "dependencies": { - "cuint": "^0.2.2" - } - }, "node_modules/y18n": { "version": "5.0.8", "license": "ISC", @@ -18693,11 +16268,8 @@ "license": "MIT" }, "node_modules/zone.js": { - "version": "0.13.3", - "license": "MIT", - "dependencies": { - "tslib": "^2.3.0" - } + "version": "0.14.7", + "license": "MIT" }, "node_modules/zstddec": { "version": "0.1.0", @@ -18705,430 +16277,438 @@ }, "projects/base-layers-raster": { "name": "@dlr-eoc/base-layers-raster", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "@dlr-eoc/services-layers": "13.0.0", - "tslib": "^2.4.0" + "@dlr-eoc/services-layers": "14.0.0-next.0", + "tslib": "^2.6.3" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", - "zone.js": "~0.13.0" + "@angular/platform-browser-dynamic": "^17.3.11", + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3" + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11" } }, "projects/cookie-alert": { "name": "@dlr-eoc/cookie-alert", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "@dlr-eoc/services-util-store": "13.0.0", - "tslib": "^2.4.0" + "@dlr-eoc/services-util-store": "14.0.0-next.0", + "tslib": "^2.6.3" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", - "zone.js": "~0.13.0" + "@angular/platform-browser-dynamic": "^17.3.11", + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3" + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11" } }, "projects/core-ui": { "name": "@dlr-eoc/core-ui", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "@angular-devkit/core": "^16.2.1", - "@angular-devkit/schematics": "^16.2.1", - "@schematics/angular": "^16.2.1", + "@angular-devkit/core": "^17.3.8", + "@angular-devkit/schematics": "^17.3.8", + "@schematics/angular": "^17.3.8", "parse5-html-rewriting-stream": "^7.0.0", - "tslib": "^2.4.0" + "tslib": "^2.6.3" }, "devDependencies": { - "@angular-devkit/architect": "^0.1602.1", - "@angular/platform-browser-dynamic": "^16.2.3", - "@types/cpx": "^1.5.2", - "cpx": "^1.5.0", + "@angular-devkit/architect": "^0.1703.8", + "@angular/platform-browser-dynamic": "^17.3.11", "jasmine": "^4.6.0", - "typescript": "^5.1.3", - "zone.js": "~0.13.0" + "typescript": "^5.4.5", + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", - "@angular/router": "^16.2.3", - "@clr/angular": "^15.12.0", - "@clr/icons": "^13.0.2", - "jsonc-parser": "^3.1.0", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", + "@angular/router": "^17.3.11", + "@cds/core": "^6.12.0", + "@clr/angular": "^17.2.1", + "jsonc-parser": "^3.3.1", "rxjs": "~7.8.0" } }, "projects/demo-auth": { - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "@dlr-eoc/base-layers-raster": "13.0.0", - "@dlr-eoc/cookie-alert": "13.0.0", - "@dlr-eoc/layer-control": "13.0.0", - "@dlr-eoc/map-ol": "13.0.0", - "@dlr-eoc/user-info": "13.0.0" + "@dlr-eoc/base-layers-raster": "14.0.0-next.0", + "@dlr-eoc/cookie-alert": "14.0.0-next.0", + "@dlr-eoc/layer-control": "14.0.0-next.0", + "@dlr-eoc/map-ol": "14.0.0-next.0", + "@dlr-eoc/user-info": "14.0.0-next.0" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", + "@angular/platform-browser-dynamic": "^17.3.11", "protractor": "^7.0.0", - "zone.js": "~0.13.0" + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", - "@angular/platform-browser": "^16.2.3", - "@angular/router": "^16.2.3", - "@clr/angular": "^15.12.0", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", + "@angular/platform-browser": "^17.3.11", + "@angular/router": "^17.3.11", + "@clr/angular": "^17.2.1", "rxjs": "~7.8.0" } }, "projects/demo-maps": { - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "@dlr-eoc/base-layers-raster": "13.0.0", - "@dlr-eoc/layer-control": "13.0.0", - "@dlr-eoc/map-cesium": "13.0.0", - "@dlr-eoc/map-maplibre": "13.0.0", - "@dlr-eoc/map-ol": "13.0.0", - "@dlr-eoc/map-three": "13.0.0", - "@dlr-eoc/map-tools": "13.0.0", - "@dlr-eoc/services-ogc": "13.0.0", - "@dlr-eoc/shared-assets": "13.0.0", - "@dlr-eoc/utils-maps": "13.0.0" + "@dlr-eoc/base-layers-raster": "14.0.0-next.0", + "@dlr-eoc/layer-control": "14.0.0-next.0", + "@dlr-eoc/map-cesium": "14.0.0-next.0", + "@dlr-eoc/map-maplibre": "14.0.0-next.0", + "@dlr-eoc/map-ol": "14.0.0-next.0", + "@dlr-eoc/map-three": "14.0.0-next.0", + "@dlr-eoc/map-tools": "14.0.0-next.0", + "@dlr-eoc/services-ogc": "14.0.0-next.0", + "@dlr-eoc/shared-assets": "14.0.0-next.0", + "@dlr-eoc/utils-maps": "14.0.0-next.0" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", + "@angular/platform-browser-dynamic": "^17.3.11", "protractor": "^7.0.0", - "zone.js": "~0.13.0" + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", - "@angular/platform-browser": "^16.2.3", - "@angular/router": "^16.2.3", - "@clr/angular": "^15.12.0", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", + "@angular/platform-browser": "^17.3.11", + "@angular/router": "^17.3.11", + "@clr/angular": "^17.2.1", "ol": "^v9.2.4", - "proj4": "^2.9.0", + "proj4": "^2.11.0", "rxjs": "~7.8.0" } }, "projects/layer-control": { "name": "@dlr-eoc/layer-control", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "@angular/cdk": "^15.2.9", - "@dlr-eoc/core-ui": "13.0.0", - "@dlr-eoc/services-layers": "13.0.0", - "@dlr-eoc/services-map-state": "13.0.0", - "tslib": "^2.4.0" + "@angular/cdk": "^17.3.10", + "@dlr-eoc/core-ui": "14.0.0-next.0", + "@dlr-eoc/services-layers": "14.0.0-next.0", + "@dlr-eoc/services-map-state": "14.0.0-next.0", + "tslib": "^2.6.3" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", - "zone.js": "~0.13.0" + "@angular/platform-browser-dynamic": "^17.3.11", + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", - "@angular/forms": "^16.2.3", - "@clr/angular": "^15.12.0", - "@clr/icons": "^13.0.2", - "@clr/ui": "^15.12.0", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", + "@angular/forms": "^17.3.11", + "@cds/core": "^6.12.0", + "@clr/angular": "^17.2.1", + "@clr/ui": "^17.2.1", "rxjs": "~7.8.0" } }, - "projects/layer-control/node_modules/@angular/cdk": { - "version": "15.2.9", - "license": "MIT", - "dependencies": { - "tslib": "^2.3.0" - }, - "optionalDependencies": { - "parse5": "^7.1.2" - }, - "peerDependencies": { - "@angular/common": "^15.0.0 || ^16.0.0", - "@angular/core": "^15.0.0 || ^16.0.0", - "rxjs": "^6.5.3 || ^7.4.0" - } - }, "projects/map-cesium": { "name": "@dlr-eoc/map-cesium", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { "@cesium/engine": "^10.0.0", "@cesium/widgets": "^7.0.0", - "@dlr-eoc/services-layers": "13.0.0", - "@dlr-eoc/services-map-state": "13.0.0", - "tslib": "^2.4.0" + "@dlr-eoc/services-layers": "14.0.0-next.0", + "@dlr-eoc/services-map-state": "14.0.0-next.0", + "tslib": "^2.6.3" }, "devDependencies": { - "@dlr-eoc/base-layers-raster": "13.0.0", - "@dlr-eoc/shared-assets": "13.0.0" + "@dlr-eoc/base-layers-raster": "14.0.0-next.0", + "@dlr-eoc/shared-assets": "14.0.0-next.0" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", "rxjs": "~7.8.0" } }, "projects/map-maplibre": { "name": "@dlr-eoc/map-maplibre", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "@dlr-eoc/services-layers": "13.0.0", - "@dlr-eoc/services-map-state": "13.0.0", - "@dlr-eoc/utilities": "13.0.0", + "@dlr-eoc/services-layers": "14.0.0-next.0", + "@dlr-eoc/services-map-state": "14.0.0-next.0", + "@dlr-eoc/utilities": "14.0.0-next.0", "@mapbox/togeojson": "0.16.2", "maplibre-gl": "^4.5.0", - "tslib": "^2.4.0" + "tslib": "^2.6.3" }, "devDependencies": { - "@dlr-eoc/base-layers-raster": "13.0.0", - "@dlr-eoc/shared-assets": "13.0.0" + "@dlr-eoc/base-layers-raster": "14.0.0-next.0", + "@dlr-eoc/shared-assets": "14.0.0-next.0" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", "rxjs": "~7.8.0" } }, "projects/map-ol": { "name": "@dlr-eoc/map-ol", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "@dlr-eoc/services-layers": "13.0.0", - "@dlr-eoc/services-map-state": "13.0.0", - "@dlr-eoc/utils-maps": "13.0.0", + "@dlr-eoc/services-layers": "14.0.0-next.0", + "@dlr-eoc/services-map-state": "14.0.0-next.0", + "@dlr-eoc/utils-maps": "14.0.0-next.0", "ol": "^v9.2.4", "ol-mapbox-style": "^12.3.1", - "proj4": "^2.9.0", - "tslib": "^2.4.0" + "proj4": "^2.11.0", + "tslib": "^2.6.3" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", - "@dlr-eoc/base-layers-raster": "13.0.0", - "@dlr-eoc/shared-assets": "13.0.0", - "zone.js": "~0.13.0" + "@angular/platform-browser-dynamic": "^17.3.11", + "@dlr-eoc/base-layers-raster": "14.0.0-next.0", + "@dlr-eoc/shared-assets": "14.0.0-next.0", + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", + "@cds/core": "^6.12.0", "rxjs": "~7.8.0" } }, "projects/map-three": { "name": "@dlr-eoc/map-three", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "@dlr-eoc/map-ol": "13.0.0", - "@dlr-eoc/services-layers": "13.0.0", - "@dlr-eoc/services-map-state": "13.0.0", - "@dlr-eoc/utils-maps": "13.0.0", - "proj4": "^2.9.0", + "@dlr-eoc/map-ol": "14.0.0-next.0", + "@dlr-eoc/services-layers": "14.0.0-next.0", + "@dlr-eoc/services-map-state": "14.0.0-next.0", + "@dlr-eoc/utils-maps": "14.0.0-next.0", + "proj4": "^2.11.0", "three": "^0.137.5", - "tslib": "^2.4.0" + "tslib": "^2.6.3" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", - "zone.js": "~0.13.0" + "@angular/platform-browser-dynamic": "^17.3.11", + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3" + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11" } }, "projects/map-tools": { "name": "@dlr-eoc/map-tools", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "@dlr-eoc/map-ol": "13.0.0", - "@dlr-eoc/services-map-state": "13.0.0", - "tslib": "^2.4.0" + "@dlr-eoc/map-ol": "14.0.0-next.0", + "@dlr-eoc/services-map-state": "14.0.0-next.0", + "tslib": "^2.6.3" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", - "zone.js": "~0.13.0" + "@angular/platform-browser-dynamic": "^17.3.11", + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", - "@angular/forms": "^16.2.3", - "@clr/angular": "^15.12.0", - "@clr/icons": "^13.0.2", - "@clr/ui": "^15.12.0", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", + "@angular/forms": "^17.3.11", + "@cds/core": "^6.12.0", + "@clr/angular": "^17.2.1", + "@clr/ui": "^17.2.1", "ol": "^v9.2.4", - "proj4": "^2.9.0", + "proj4": "^2.11.0", "rxjs": "~7.8.0" } }, "projects/services-layers": { "name": "@dlr-eoc/services-layers", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "tslib": "^2.4.0" + "tslib": "^2.6.3" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", - "@dlr-eoc/core-ui": "13.0.0", - "@dlr-eoc/shared-assets": "13.0.0", - "zone.js": "~0.13.0" + "@angular/platform-browser-dynamic": "^17.3.11", + "@dlr-eoc/core-ui": "14.0.0-next.0", + "@dlr-eoc/shared-assets": "14.0.0-next.0", + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", "rxjs": "~7.8.0" } }, "projects/services-map-state": { "name": "@dlr-eoc/services-map-state", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "@dlr-eoc/services-layers": "13.0.0", - "tslib": "^2.4.0" + "@dlr-eoc/services-layers": "14.0.0-next.0", + "tslib": "^2.6.3" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", - "zone.js": "~0.13.0" + "@angular/platform-browser-dynamic": "^17.3.11", + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", "rxjs": "~7.8.0" } }, "projects/services-ogc": { "name": "@dlr-eoc/services-ogc", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "@dlr-eoc/base-layers-raster": "13.0.0", - "@dlr-eoc/services-layers": "13.0.0", - "@dlr-eoc/services-map-state": "13.0.0", - "@dlr-eoc/services-util-store": "13.0.0", - "@dlr-eoc/utils-ogc": "13.0.0", + "@dlr-eoc/base-layers-raster": "14.0.0-next.0", + "@dlr-eoc/services-layers": "14.0.0-next.0", + "@dlr-eoc/services-map-state": "14.0.0-next.0", + "@dlr-eoc/services-util-store": "14.0.0-next.0", + "@dlr-eoc/utils-ogc": "14.0.0-next.0", "@michaellangbein/jsonix": "3.0.1-SNAPSHOT-3", "luxon": "^2.5.0", "ogc-schemas": "^2.6.1", "ol": "^v9.2.4", "opensearch-browser": "^2.0.0-alpha.5", - "tslib": "^2.4.0", + "tslib": "^2.6.3", "w3c-schemas": "^1.4.0" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", - "@dlr-eoc/shared-assets": "13.0.0", - "proj4": "^2.9.0", - "terser": "^5.17.6", - "zone.js": "~0.13.0" + "@angular/platform-browser-dynamic": "^17.3.11", + "@dlr-eoc/shared-assets": "14.0.0-next.0", + "proj4": "^2.11.0", + "terser": "^5.31.2", + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", "rxjs": "~7.8.0" } }, + "projects/services-ogc/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "projects/services-ogc/node_modules/terser": { + "version": "5.31.2", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.2.tgz", + "integrity": "sha512-LGyRZVFm/QElZHy/CPr/O4eNZOZIzsrQ92y4v9UJe/pFJjypje2yI3C2FmPtvUEnhadlSbmG2nXtdcjHOjCfxw==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, "projects/services-util-store": { "name": "@dlr-eoc/services-util-store", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { "md5": "^2.3.0", - "tslib": "^2.4.0" + "tslib": "^2.6.3" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", - "zone.js": "~0.13.0" + "@angular/platform-browser-dynamic": "^17.3.11", + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3" + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11" } }, "projects/shared-assets": { "name": "@dlr-eoc/shared-assets", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "devDependencies": {} }, "projects/user-info": { "name": "@dlr-eoc/user-info", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "tslib": "^2.4.0" + "tslib": "^2.6.3" }, "devDependencies": { - "@angular/platform-browser-dynamic": "^16.2.3", - "zone.js": "~0.13.0" + "@angular/platform-browser-dynamic": "^17.3.11", + "zone.js": "~0.14.7" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", - "@angular/forms": "^16.2.3", - "@clr/angular": "^15.12.0", - "@clr/icons": "^13.0.2", - "@clr/ui": "^15.12.0", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", + "@angular/forms": "^17.3.11", + "@cds/core": "^6.12.0", + "@clr/angular": "^17.2.1", + "@clr/ui": "^17.2.1", "rxjs": "~7.8.0" } }, "projects/utilities": { "name": "@dlr-eoc/utilities", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "tslib": "^2.4.0" + "tslib": "^2.6.3" }, "devDependencies": { - "@angular/core": "^16.2.3", - "@angular/platform-browser-dynamic": "^16.2.3" + "@angular/core": "^17.3.11", + "@angular/platform-browser-dynamic": "^17.3.11" } }, "projects/utils-browser": { "name": "@dlr-eoc/utils-browser", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "devDependencies": { - "@angular/core": "^16.2.3", - "@angular/platform-browser-dynamic": "^16.2.3", - "zone.js": "~0.13.0" + "@angular/core": "^17.3.11", + "@angular/platform-browser-dynamic": "^17.3.11", + "zone.js": "~0.14.7" } }, "projects/utils-maps": { "name": "@dlr-eoc/utils-maps", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { - "delaunator": "^5.0.0", + "delaunator": "^5.0.1", "ol": "^v9.2.4" }, "devDependencies": { - "@angular/core": "^16.2.3", - "@angular/platform-browser-dynamic": "^16.2.3", + "@angular/core": "^17.3.11", + "@angular/platform-browser-dynamic": "^17.3.11", "@types/offscreencanvas": "^2019.7.0", - "zone.js": "~0.13.0" + "zone.js": "~0.14.7" } }, "projects/utils-ogc": { "name": "@dlr-eoc/utils-ogc", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "dependencies": { "@michaellangbein/jsonix": "3.0.1-SNAPSHOT-3", @@ -19138,9 +16718,9 @@ "xmlserializer": "^0.6.1" }, "devDependencies": { - "@angular/core": "^16.2.3", - "@angular/platform-browser-dynamic": "^16.2.3", - "@types/node": "^20.10.1" + "@angular/core": "^17.3.11", + "@angular/platform-browser-dynamic": "^17.3.11", + "@types/node": "^20.14.10" } }, "scripts/library": { @@ -19156,7 +16736,7 @@ }, "devDependencies": { "@types/jasmine": "^4.3.5", - "@types/node": "^20.10.1", + "@types/node": "^20.14.10", "@types/toposort": "^2.0.3" }, "engines": { @@ -19164,9 +16744,9 @@ "npm": ">= 8.19.3" }, "peerDependencies": { - "@angular/cli": "^16.2.1", - "@schematics/angular": "^16.2.1", - "typescript": "^5.1.3" + "@angular/cli": "^17.3.8", + "@schematics/angular": "^17.3.8", + "typescript": "^5.4.5" } }, "scripts/library/node_modules/commander": { diff --git a/package.json b/package.json index 1713c16e2..e79348bb0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ukis-frontend-libraries", - "version": "13.0.0", + "version": "14.0.0-next.0", "license": "Apache-2.0", "author": "Team UKIS", "projectsScope": "@dlr-eoc/", @@ -22,45 +22,43 @@ "start": "ng serve demo-maps", "build": "node scripts/library/index.js --build", "test": "node scripts/library/index.js --test", - "schematics:test": "jasmine dist/core-ui/schematics/**/*_spec.js", - "preschematics:test": "ng build --configuration=production --watch=false core-ui", + "schematics:test": "npm run schematics:test --workspace=projects/core-ui", "syncVersionsInWorkspaces": "node scripts/library/index.js --set-source", "build:scripts": "npx tsc -p scripts/library/tsconfig.json", "lint": "ng lint", "compodoc": "compodoc -p tsconfig.doc.json -a projects/core-ui/schematics/ng-add/files/src/assets -n \"UKIS Frontend libraries\"", - "compodoc-serve": "compodoc -r 8081 -s" + "compodoc-serve": "compodoc -r 8081 -s", + "build:license":"npx license-checker --json --out ./projects/demo-maps/src/assets/licenses.json" }, "private": true, "dependencies": { - "@angular-devkit/core": "^16.2.1", - "@angular-devkit/schematics": "^16.2.1", - "@angular/animations": "^16.2.3", - "@angular/common": "^16.2.3", - "@angular/compiler": "^16.2.3", - "@angular/core": "^16.2.3", - "@angular/forms": "^16.2.3", - "@angular/platform-browser": "^16.2.3", - "@angular/platform-browser-dynamic": "^16.2.3", - "@angular/router": "^16.2.3", - "@cds/core": "^6.6.2", - "@clr/angular": "^15.12.0", - "@clr/icons": "^13.0.2", - "@clr/ui": "^15.12.0", + "@angular-devkit/core": "^17.3.8", + "@angular-devkit/schematics": "^17.3.8", + "@angular/animations": "^17.3.11", + "@angular/common": "^17.3.11", + "@angular/compiler": "^17.3.11", + "@angular/core": "^17.3.11", + "@angular/forms": "^17.3.11", + "@angular/platform-browser": "^17.3.11", + "@angular/platform-browser-dynamic": "^17.3.11", + "@angular/router": "^17.3.11", + "@cds/core": "^6.12.0", + "@clr/angular": "^17.2.1", + "@clr/ui": "^17.2.1", "@fontsource/metropolis": "^4.5.3", "@fontsource/noto-sans": "^4.5.11", "@michaellangbein/jsonix": "3.0.1-SNAPSHOT-3", - "@schematics/angular": "^16.2.1", + "@schematics/angular": "^17.3.8", "@webcomponents/webcomponentsjs": "^2.5.0", - "delaunator": "^5.0.0", "luxon": "^2.5.0", "ogc-schemas": "^2.6.1", "ol": "^v9.2.4", - "proj4": "^2.9.0", + "proj4": "^2.11.0", "rxjs": "~7.8.0", - "tslib": "^2.4.0", + "tslib": "^2.6.3", "w3c-schemas": "^1.4.0", "xmlserializer": "^0.6.1", - "zone.js": "~0.13.0" + "zone.js": "~0.14.7" }, "dependenciesFromProjects": [ "ol", @@ -74,34 +72,34 @@ "@schematics/angular -schematics and scripts" ], "devDependencies": { - "@angular-devkit/architect": "^0.1602.1", - "@angular-devkit/build-angular": "^16.2.1", - "@angular/cli": "^16.2.1", - "@angular/compiler-cli": "^16.2.3", - "@angular/language-service": "^16.2.3", - "@compodoc/compodoc": "^1.1.21", + "@angular-devkit/architect": "^0.1703.8", + "@angular-devkit/build-angular": "^17.3.8", + "@angular/cli": "^17.3.8", + "@angular/compiler-cli": "^17.3.11", + "@angular/language-service": "^17.3.11", + "@compodoc/compodoc": "1.1.24", "@types/geojson": "^7946.0.10", "@types/jasmine": "^4.3.5", "@types/jasminewd2": "^2.0.10", - "@types/node": "^20.10.1", + "@types/node": "^20.14.10", "@types/offscreencanvas": "^2019.7.0", "codelyzer": "^6.0.2", "jasmine": "^4.6.0", - "jasmine-core": "^4.6.0", + "jasmine-core": "^4.6.1", "jasmine-spec-reporter": "^7.0.0", - "jsonc-parser": "^3.1.0", - "karma": "^6.4.0", + "jsonc-parser": "^3.3.1", + "karma": "^6.4.3", "karma-chrome-launcher": "^3.2.0", "karma-coverage": "^2.2.0", "karma-jasmine": "^5.1.0", "karma-jasmine-html-reporter": "^2.1.0", "karma-junit-reporter": "^2.0.1", - "ng-packagr": "^16.2.2", + "ng-packagr": "^17.3.0", "path-browserify": "^1.0.1", "protractor": "^7.0.0", "ts-node": "^8.3.0", "tslint": "^6.1.0", - "typescript": "^5.1.3" + "typescript": "^5.4.5" }, "devDependenciesFromProjects": [ "@compodoc/compodoc", @@ -139,7 +137,7 @@ "projects/map-maplibre" ], "engines": { - "node": ">= 18.13.0", - "npm": ">= 8.19.3" + "node": ">= 20.15.1", + "npm": ">= 10.7.0" } } diff --git a/projects/base-layers-raster/package.json b/projects/base-layers-raster/package.json index c40da5955..563bbc3c3 100644 --- a/projects/base-layers-raster/package.json +++ b/projects/base-layers-raster/package.json @@ -1,6 +1,6 @@ { "name": "@dlr-eoc/base-layers-raster", - "version": "13.0.0", + "version": "14.0.0-next.0", "main": "src/public-api", "license": "Apache-2.0", "author": "Team UKIS", @@ -13,15 +13,15 @@ "OSM" ], "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3" + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11" }, "dependencies": { - "@dlr-eoc/services-layers": "13.0.0", - "tslib": "^2.4.0" + "@dlr-eoc/services-layers": "14.0.0-next.0", + "tslib": "^2.6.3" }, "devDependencies": { - "zone.js": "~0.13.0", - "@angular/platform-browser-dynamic": "^16.2.3" + "zone.js": "~0.14.7", + "@angular/platform-browser-dynamic": "^17.3.11" } } diff --git a/projects/cookie-alert/package.json b/projects/cookie-alert/package.json index 7a151c4ca..a5d329b2c 100644 --- a/projects/cookie-alert/package.json +++ b/projects/cookie-alert/package.json @@ -1,6 +1,6 @@ { "name": "@dlr-eoc/cookie-alert", - "version": "13.0.0", + "version": "14.0.0-next.0", "main": "src/public-api", "license": "Apache-2.0", "author": "Team UKIS", @@ -12,15 +12,15 @@ "cookies" ], "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3" + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11" }, "dependencies": { - "@dlr-eoc/services-util-store": "13.0.0", - "tslib": "^2.4.0" + "@dlr-eoc/services-util-store": "14.0.0-next.0", + "tslib": "^2.6.3" }, "devDependencies": { - "zone.js": "~0.13.0", - "@angular/platform-browser-dynamic": "^16.2.3" + "zone.js": "~0.14.7", + "@angular/platform-browser-dynamic": "^17.3.11" } } diff --git a/projects/core-ui/DEVELOPMENT.md b/projects/core-ui/DEVELOPMENT.md index 4980ad474..23d949517 100644 --- a/projects/core-ui/DEVELOPMENT.md +++ b/projects/core-ui/DEVELOPMENT.md @@ -13,7 +13,7 @@ https://blog.angular.io/schematics-an-introduction-dc1dfbc2a2b2 } ``` -2. build the schematics `ng build --configuration=production core-ui ` +2. build the schematics `npm run build --workspace=projects/core-ui && npm run schematics:build --workspace=projects/core-ui` 3. create a new project `ng new my-project` @@ -34,26 +34,24 @@ remove files in test app: ### Unit Testing -`npm run schematics:test` will run the unit tests, using Jasmine as a runner and test framework. +`npm run schematics:test --workspace=projects/core-ui` will run the unit tests, using Jasmine as a runner and test framework. `ng test core-ui` will run the unit tests of the lib via [Karma](https://karma-runner.github.io). ### Build Schematics -- `ng build core-ui` +- `npm run build --workspace=projects/core-ui && npm run schematics:build --workspace=projects/core-ui` The above command compiles the schematics `tsc -p projects/core-ui/tsconfig.schematics.json` -and copies the files -- `cpx projects/core-ui/schematics/collection.json dist/core-ui/schematics/` -- `cpx projects/core-ui/schematics/**/schema.json dist/core-ui/schematics/` -- `cpx projects/core-ui/schematics/*/files/** dist/core-ui/schematics/` -- `cpx projects/core-ui/src/lib/global-alert/** dist/core-ui/schematics/ng-add/files/src/app/components/global-alert/` -- `cpx projects/core-ui/src/lib/global-progress/** dist/core-ui/schematics/ng-add/files/src/app/components/global-progress/` +and copies the files (ng build core-ui ng-package.json assets) +- `projects/core-ui/schematics/collection.json dist/core-ui/schematics/` +- `projects/core-ui/schematics/**/schema.json dist/core-ui/schematics/` +- `projects/core-ui/schematics/*/files/** dist/core-ui/schematics/` +- `projects/core-ui/src/lib/global-alert/** dist/core-ui/schematics/ng-add/files/src/app/components/global-alert/` +- `projects/core-ui/src/lib/global-progress/** dist/core-ui/schematics/ng-add/files/src/app/components/global-progress/` - ... -This is done by a [custom builder](core-ui-packagr/index.js) - ### Publishing *for local publish use* diff --git a/projects/core-ui/core-ui-packagr/builders.json b/projects/core-ui/core-ui-packagr/builders.json deleted file mode 100644 index d331be9e6..000000000 --- a/projects/core-ui/core-ui-packagr/builders.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "$schema": "../architect/src/builders-schema.json", - "builders": { - "build": { - "implementation": "./", - "schema": "./schema.json", - "description": "Build a library with core-ui-packagr." - } - } -} diff --git a/projects/core-ui/core-ui-packagr/index.js b/projects/core-ui/core-ui-packagr/index.js deleted file mode 100644 index fad319980..000000000 --- a/projects/core-ui/core-ui-packagr/index.js +++ /dev/null @@ -1,117 +0,0 @@ -"use strict"; -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -Object.defineProperty(exports, "__esModule", { value: true }); -exports.customBuildNgPackagr = void 0; -/** - * @license - * Copyright Google Inc. All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - * - * https://github.com/angular/angular-cli/blob/v11.0.0-next.4/packages/angular_devkit/build_ng_packagr/src/build/index.ts - * - * Customised by DLR-UKIS - */ -const architect_1 = require("@angular-devkit/architect"); -const path_1 = require("path"); -const rxjs_1 = require("rxjs"); -const operators_1 = require("rxjs/operators"); -const child_process_1 = require("child_process"); -const os_1 = require("os"); -const cpx_1 = require("cpx"); -function initialize(options, root) { - return __awaiter(this, void 0, void 0, function* () { - const packager = (yield Promise.resolve().then(() => require('ng-packagr'))).ngPackagr(); - packager.forProject((0, path_1.resolve)(root, options.project)); - if (options.tsConfig) { - packager.withTsConfig((0, path_1.resolve)(root, options.tsConfig)); - } - return packager; - }); -} -function transpile(context) { - return __awaiter(this, void 0, void 0, function* () { - const options = { - command: 'npx', - args: ['tsc', '-p', (0, path_1.join)(__dirname, '../tsconfig.schematics.json')] - }; - if ((0, os_1.platform)() === "win32") { - options.command = 'npx.cmd'; - } - context.reportStatus(`Executing "${options.command}"...`); - context.logger.info(`Executing Transpile: ${options.args.join(' ')}`); - const child = (0, child_process_1.spawn)(options.command, options.args, { stdio: 'pipe', cwd: process.cwd() }); - child.stdout.on('data', (data) => { - context.logger.info(data.toString()); - }); - child.stderr.on('data', (data) => { - context.logger.error(data.toString()); - }); - return new Promise(resolve => { - context.reportStatus(`Done.`); - child.on('close', code => { - context.logger.info(`Transpile Done.`); - resolve({ success: code === 0 }); - }); - }); - }); -} -function copyFiles(context) { - return __awaiter(this, void 0, void 0, function* () { - context.reportStatus(`Executing copy files`); - const cpxOptions = { - includeEmptyDirs: true - }; - const filePaths = [ - { source: '../schematics/collection.json', dest: '../../../dist/core-ui/schematics/' }, - { source: '../schematics/**/schema.json', dest: '../../../dist/core-ui/schematics/' }, - { source: '../schematics/*/files/**', dest: '../../../dist/core-ui/schematics/' }, - { source: '../src/lib/global-alert/**', dest: '../../../dist/core-ui/schematics/ng-add/files/src/app/components/global-alert/' }, - { source: '../src/lib/global-progress/**', dest: '../../../dist/core-ui/schematics/ng-add/files/src/app/components/global-progress/' }, - { source: '../src/lib/header/**', dest: '../../../dist/core-ui/schematics/ng-add/files/src/app/components/header/' }, - { source: '../schematics/migrations/**', dest: '../../../dist/core-ui/schematics/migrations/' } - ]; - const afilePaths = filePaths.map(item => ({ source: (0, path_1.join)(__dirname, item.source), dest: (0, path_1.join)(__dirname, item.dest) })); - const copyFiles = afilePaths.map(item => { - return new Promise((resolve, reject) => { - (0, cpx_1.copy)(item.source, item.dest, cpxOptions, (error) => { - if (error) { - reject(error); - } - else { - const info = { - from: item.source, - to: item.dest - }; - context.logger.info(`copy files from: ${info.from} to: ${info.to}`); - resolve(info); - } - }); - }); - }); - return Promise.all(copyFiles); - }); -} -function customBuildNgPackagr(options, context) { - return (0, rxjs_1.from)(initialize(options, context.workspaceRoot)).pipe((0, operators_1.switchMap)(packager => { - const tc = transpile(context).then(() => copyFiles(context)); - if (options.watch) { - const obs = (0, operators_1.map)(() => (0, rxjs_1.from)(tc)); - return packager.watch(options).pipe(obs); - } - else { - return packager.build(options).then(() => tc); - } - }), (0, operators_1.mapTo)({ success: true }), (0, operators_1.catchError)((err) => (0, rxjs_1.of)({ success: false, error: err.message }))); -} -exports.customBuildNgPackagr = customBuildNgPackagr; -exports.default = (0, architect_1.createBuilder)(customBuildNgPackagr); diff --git a/projects/core-ui/core-ui-packagr/index.ts b/projects/core-ui/core-ui-packagr/index.ts deleted file mode 100644 index c31dbb72d..000000000 --- a/projects/core-ui/core-ui-packagr/index.ts +++ /dev/null @@ -1,125 +0,0 @@ -/** - * @license - * Copyright Google Inc. All Rights Reserved. - * - * Use of this source code is governed by an MIT-style license that can be - * found in the LICENSE file at https://angular.io/license - * - * https://github.com/angular/angular-cli/blob/v11.0.0-next.4/packages/angular_devkit/build_ng_packagr/src/build/index.ts - * - * Customised by DLR-UKIS - */ -import { BuilderContext, BuilderOutput, createBuilder } from '@angular-devkit/architect'; -import { NgPackagrBuilderOptions } from '@angular-devkit/build-angular'; -import { resolve, join } from 'path'; -import { Observable, from, of } from 'rxjs'; -import { mapTo, switchMap, catchError, map } from 'rxjs/operators'; - -import { spawn } from 'child_process'; -import { platform } from 'os'; -import { copy } from 'cpx'; - - -async function initialize( - options: NgPackagrBuilderOptions, - root: string, -): Promise { - const packager = (await import('ng-packagr')).ngPackagr(); - - packager.forProject(resolve(root, options.project)); - - if (options.tsConfig) { - packager.withTsConfig(resolve(root, options.tsConfig)); - } - - return packager; -} - - -async function transpile(context: BuilderContext) { - const options = { - command: 'npx', - args: ['tsc', '-p', join(__dirname, '../tsconfig.schematics.json')] - } - if (platform() === "win32") { - options.command = 'npx.cmd' - } - context.reportStatus(`Executing "${options.command}"...`); - context.logger.info(`Executing Transpile: ${options.args.join(' ')}`); - const child = spawn(options.command, options.args, { stdio: 'pipe', cwd: process.cwd() }); - - child.stdout.on('data', (data) => { - context.logger.info(data.toString()); - }); - child.stderr.on('data', (data) => { - context.logger.error(data.toString()); - }); - - return new Promise<{ success: boolean }>(resolve => { - context.reportStatus(`Done.`); - child.on('close', code => { - context.logger.info(`Transpile Done.`); - resolve({ success: code === 0 }); - }); - }); -} - - -async function copyFiles(context: BuilderContext) { - context.reportStatus(`Executing copy files`); - const cpxOptions = { - includeEmptyDirs: true - }; - const filePaths = [ - { source: '../schematics/collection.json', dest: '../../../dist/core-ui/schematics/' }, - { source: '../schematics/**/schema.json', dest: '../../../dist/core-ui/schematics/' }, - { source: '../schematics/*/files/**', dest: '../../../dist/core-ui/schematics/' }, - { source: '../src/lib/global-alert/**', dest: '../../../dist/core-ui/schematics/ng-add/files/src/app/components/global-alert/' }, - { source: '../src/lib/global-progress/**', dest: '../../../dist/core-ui/schematics/ng-add/files/src/app/components/global-progress/' }, - { source: '../src/lib/header/**', dest: '../../../dist/core-ui/schematics/ng-add/files/src/app/components/header/' }, - { source: '../schematics/migrations/**', dest: '../../../dist/core-ui/schematics/migrations/' } - ]; - const afilePaths = filePaths.map(item => ({ source: join(__dirname, item.source), dest: join(__dirname, item.dest) })) - - const copyFiles = afilePaths.map(item => { - return new Promise<{ from: string, to: string }>((resolve, reject) => { - copy(item.source, item.dest, cpxOptions, (error) => { - if (error) { - reject(error); - } else { - const info = { - from: item.source, - to: item.dest - } - context.logger.info(`copy files from: ${info.from} to: ${info.to}`); - resolve(info); - } - }); - }); - }) - - return Promise.all(copyFiles); -} - -export function customBuildNgPackagr( - options: NgPackagrBuilderOptions, - context: BuilderContext, -): Observable { - return from(initialize(options, context.workspaceRoot)).pipe( - switchMap(packager => { - const tc = transpile(context).then(() => copyFiles(context)); - if (options.watch) { - const obs = map(() => from(tc)) as any; - return packager.watch(options).pipe(obs); - } - else { - return packager.build(options).then(() => tc); - } - }), - mapTo({ success: true }), - catchError((err) => of({ success: false, error: err.message })), - ); -} - - -export default createBuilder & NgPackagrBuilderOptions>(customBuildNgPackagr); \ No newline at end of file diff --git a/projects/core-ui/core-ui-packagr/package.json b/projects/core-ui/core-ui-packagr/package.json deleted file mode 100644 index 1508a7432..000000000 --- a/projects/core-ui/core-ui-packagr/package.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "@dlr-eoc/core-ui-packagr", - "version": "1.0.0", - "description": "Builder for Architect", - "builders": "builders.json", - "main": "index.js", - "scripts": { - "build": "tsc -p tsconfig.json" - }, - "devDependencies": { - "@angular-devkit/architect": "^1.0.0" - } -} diff --git a/projects/core-ui/core-ui-packagr/schema.json b/projects/core-ui/core-ui-packagr/schema.json deleted file mode 100644 index 6d65b04ab..000000000 --- a/projects/core-ui/core-ui-packagr/schema.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-07/schema", - "title": "core-ui-packagr Target", - "description": "core-ui-packagr target options for Build Architect. Use to build library projects.", - "type": "object", - "properties": { - "project": { - "type": "string", - "description": "The file path for the core-ui-packagr configuration file, relative to the current workspace." - }, - "tsConfig": { - "type": "string", - "description": "The full path for the TypeScript configuration file, relative to the current workspace." - }, - "watch": { - "type": "boolean", - "description": "Run build when files change.", - "default": false - } - }, - "additionalProperties": false, - "required": [ - "project" - ] -} diff --git a/projects/core-ui/core-ui-packagr/tsconfig.json b/projects/core-ui/core-ui-packagr/tsconfig.json deleted file mode 100644 index e0f70d0ac..000000000 --- a/projects/core-ui/core-ui-packagr/tsconfig.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "compilerOptions": { - "baseUrl": "tsconfig", - "target": "es6", - "declaration": false, - "module": "commonjs", - "moduleResolution": "node", - "noEmitOnError": true, - "noFallthroughCasesInSwitch": true, - "noImplicitAny": true, - "noImplicitThis": true, - "noUnusedParameters": true, - "noUnusedLocals": true, - "skipDefaultLibCheck": true, - "skipLibCheck": true, - "sourceMap": false, - "strictNullChecks": true, - "types": [ - "node", - "jasmine" - ] - } -} diff --git a/projects/core-ui/ng-package.json b/projects/core-ui/ng-package.json index 6b30e4e3e..c320c41ee 100644 --- a/projects/core-ui/ng-package.json +++ b/projects/core-ui/ng-package.json @@ -10,5 +10,14 @@ "@angular-devkit/schematics", "@schematics/angular", "parse5-html-rewriting-stream" + ], + "assets": [ + { "input": "schematics", "glob": "**/*.json", "output": "schematics/" }, + { "input": "schematics/ng-add/files", "glob": "**/*.*", "output": "schematics/ng-add/files/" }, + { "input": "schematics/add-routing/files", "glob": "**/*.*", "output": "schematics/add-routing/files/" }, + { "input": "src/lib/global-alert", "glob": "**.*", "output": "schematics/ng-add/files/src/app/components/global-alert/" }, + { "input": "src/lib/global-progress", "glob": "**.*", "output": "schematics/ng-add/files/src/app/components/global-progress/" }, + { "input": "src/lib/header", "glob": "**.*", "output": "schematics/ng-add/files/src/app/components/header/" }, + { "input": "src/lib/icons", "glob": "**.*", "output": "schematics/ng-add/files/src/app/components/icons/" } ] } diff --git a/projects/core-ui/package.json b/projects/core-ui/package.json index 6d8c1e0f2..1e369b6cf 100644 --- a/projects/core-ui/package.json +++ b/projects/core-ui/package.json @@ -1,6 +1,6 @@ { "name": "@dlr-eoc/core-ui", - "version": "13.0.0", + "version": "14.0.0-next.0", "main": "src/public-api", "license": "Apache-2.0", "author": "Team UKIS", @@ -12,8 +12,10 @@ ], "schematics": "./schematics/collection.json", "scripts": { - "preschematics:test": "cd ../../ && ng build core-ui", - "schematics:test": "npx ../../node_modules/.bin/jasmine ../../dist/core-ui/schematics/**/*_spec.js" + "build": "ng build core-ui --configuration=production --watch=false", + "schematics:build": "tsc -p tsconfig.schematics.json", + "preschematics:test": "npm run build && npm run schematics:build", + "schematics:test": "npx jasmine ../../dist/core-ui/schematics/**/*_spec.js" }, "ng-add": { "save": "dependencies" @@ -22,28 +24,26 @@ "migrations": "./schematics/migrations/migration.json" }, "dependencies": { - "@angular-devkit/core": "^16.2.1", - "@angular-devkit/schematics": "^16.2.1", - "@schematics/angular": "^16.2.1", + "@angular-devkit/core": "^17.3.8", + "@angular-devkit/schematics": "^17.3.8", + "@schematics/angular": "^17.3.8", "parse5-html-rewriting-stream": "^7.0.0", - "tslib": "^2.4.0" + "tslib": "^2.6.3" }, "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", - "@angular/router": "^16.2.3", - "@clr/angular": "^15.12.0", - "@clr/icons": "^13.0.2", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", + "@angular/router": "^17.3.11", + "@clr/angular": "^17.2.1", + "@cds/core": "^6.12.0", "rxjs": "~7.8.0", - "jsonc-parser": "^3.1.0" + "jsonc-parser": "^3.3.1" }, "devDependencies": { - "cpx": "^1.5.0", - "@types/cpx": "^1.5.2", - "typescript": "^5.1.3", + "typescript": "^5.4.5", "jasmine": "^4.6.0", - "zone.js": "~0.13.0", - "@angular/platform-browser-dynamic": "^16.2.3", - "@angular-devkit/architect": "^0.1602.1" + "zone.js": "~0.14.7", + "@angular/platform-browser-dynamic": "^17.3.11", + "@angular-devkit/architect": "^0.1703.8" } } diff --git a/projects/core-ui/schematics/add-routing/index_spec.ts b/projects/core-ui/schematics/add-routing/index_spec.ts index afa32679d..db3608cf6 100644 --- a/projects/core-ui/schematics/add-routing/index_spec.ts +++ b/projects/core-ui/schematics/add-routing/index_spec.ts @@ -28,6 +28,7 @@ describe('add-routing', () => { const appOptions: ApplicationOptions = { name: 'ukisapp', projectRoot: '', + standalone: false, // We have not yet migrated to the standalone API. inlineStyle: false, inlineTemplate: false, routing: true, diff --git a/projects/core-ui/schematics/ng-add/files/src/app/app.component.html b/projects/core-ui/schematics/ng-add/files/src/app/app.component.html index 56c8778db..50df83b59 100644 --- a/projects/core-ui/schematics/ng-add/files/src/app/app.component.html +++ b/projects/core-ui/schematics/ng-add/files/src/app/app.component.html @@ -7,7 +7,7 @@ diff --git a/projects/core-ui/schematics/ng-add/files/src/app/app.component.ts.template b/projects/core-ui/schematics/ng-add/files/src/app/app.component.ts.template index 12dad9ff6..ea8a54b56 100644 --- a/projects/core-ui/schematics/ng-add/files/src/app/app.component.ts.template +++ b/projects/core-ui/schematics/ng-add/files/src/app/app.component.ts.template @@ -1,6 +1,6 @@ import { Component, OnDestroy } from '@angular/core'; -import './components/icons/ukis'; +import '@cds/core/icon/register.js'; import { AlertService, IAlert } from './components/global-alert/alert.service'; import { ProgressService, IProgress } from './components/global-progress/progress.service'; diff --git a/projects/core-ui/schematics/ng-add/files/src/app/components/icons/ukis.ts b/projects/core-ui/schematics/ng-add/files/src/app/components/icons/ukis.ts deleted file mode 100644 index 340fe61c4..000000000 --- a/projects/core-ui/schematics/ng-add/files/src/app/components/icons/ukis.ts +++ /dev/null @@ -1,43 +0,0 @@ -/* tslint:disable:max-line-length */ -const ukisShapes: any = { - ukis: ` - - ukis - - - - - - `, - dlr: ` - - dlr - - - `, - eoc: ` - - eoc - - - ` -}; -if (typeof window !== 'undefined' && window.hasOwnProperty('ClarityIcons')) { - (window as any).ClarityIcons.add(ukisShapes); -} -export { ukisShapes as UkisShapes }; diff --git a/projects/core-ui/schematics/ng-add/files/src/styles/_clr-vertival-nav-layout.scss b/projects/core-ui/schematics/ng-add/files/src/styles/_clr-vertival-nav-layout.scss index 85132c5ba..1ed8fc350 100644 --- a/projects/core-ui/schematics/ng-add/files/src/styles/_clr-vertival-nav-layout.scss +++ b/projects/core-ui/schematics/ng-add/files/src/styles/_clr-vertival-nav-layout.scss @@ -10,7 +10,9 @@ /** nav orientation default left side ------------------------------ */ .clr-vertical-nav { + --clr-vertical-nav-bg-color: hsl(198, 0%, 91%); width: var(--clr-vertical-nav-width, 12rem); + line-height: 24px; &.is-collapsed { .nav-icon { margin-left: var(--nav-items-distance-side) !important; //$clr_baselineRem_0_667; @@ -68,7 +70,7 @@ margin-right: auto; .nav-trigger-icon { - margin-left: 0.5rem; + margin-left: 0rem; margin-right: auto; &[direction="right"] { @@ -129,4 +131,4 @@ background: var(--clr-vertical-nav-bg-color, --fallback-color-no-clr); } } -} \ No newline at end of file +} diff --git a/projects/core-ui/schematics/ng-add/files/src/styles/_ukis-core-ui-layout.scss b/projects/core-ui/schematics/ng-add/files/src/styles/_ukis-core-ui-layout.scss index fefec0aee..c356280f2 100644 --- a/projects/core-ui/schematics/ng-add/files/src/styles/_ukis-core-ui-layout.scss +++ b/projects/core-ui/schematics/ng-add/files/src/styles/_ukis-core-ui-layout.scss @@ -11,7 +11,7 @@ // min-width: 10.2rem; a { - clr-icon { + cds-icon { color: var(--header-branding-icon-color); } @@ -47,7 +47,7 @@ .header { .branding { a { - clr-icon { + cds-icon { color: var(--header-branding-icon-color-mobile); } } diff --git a/projects/core-ui/schematics/ng-add/files/src/styles/_ukis-theme.scss b/projects/core-ui/schematics/ng-add/files/src/styles/_ukis-theme.scss index ab4f3d3bb..4a91c37f2 100644 --- a/projects/core-ui/schematics/ng-add/files/src/styles/_ukis-theme.scss +++ b/projects/core-ui/schematics/ng-add/files/src/styles/_ukis-theme.scss @@ -16,15 +16,17 @@ * It's not a performance issue. It's just saner to maintain. */ -@import "./ukis-variables"; -// --- overwrite Clarity variables - remove if -@import "./overwrites-clr-variables"; -@import "@clr/ui/src/main"; -// ---------------------------------- -@import "./clr-vertival-nav-layout"; - -@import "./ukis-inputs"; -@import "./ukis-layer-nav"; - - -@import "./ukis-core-ui-layout"; + @import "./ukis-variables"; + @import '@cds/core/global.css'; + // --- overwrite Clarity variables - remove if + @import "./overwrites-clr-variables"; + @import "@clr/ui/src/main"; + // ---------------------------------- + @import "./clr-vertival-nav-layout"; + + @import "./ukis-inputs"; + @import "./ukis-layer-nav"; + + + @import "./ukis-core-ui-layout"; + \ No newline at end of file diff --git a/projects/core-ui/schematics/ng-add/index_spec.ts b/projects/core-ui/schematics/ng-add/index_spec.ts index 2fe00b8c5..f783a5456 100644 --- a/projects/core-ui/schematics/ng-add/index_spec.ts +++ b/projects/core-ui/schematics/ng-add/index_spec.ts @@ -33,6 +33,7 @@ describe('ng-add', () => { const appOptions: ApplicationOptions = { name: 'ukisapp', projectRoot: '', + standalone: false, // We have not yet migrated to the standalone API. inlineStyle: false, inlineTemplate: false, routing: true, diff --git a/projects/core-ui/src/lib/global-alert/global-alert.component.html b/projects/core-ui/src/lib/global-alert/global-alert.component.html index 4ae4e1367..392125e6d 100644 --- a/projects/core-ui/src/lib/global-alert/global-alert.component.html +++ b/projects/core-ui/src/lib/global-alert/global-alert.component.html @@ -2,7 +2,7 @@
- +
@@ -12,6 +12,6 @@
diff --git a/projects/core-ui/src/lib/global-alert/global-alert.component.ts b/projects/core-ui/src/lib/global-alert/global-alert.component.ts index ef5d10fa9..4a0c9ec9e 100644 --- a/projects/core-ui/src/lib/global-alert/global-alert.component.ts +++ b/projects/core-ui/src/lib/global-alert/global-alert.component.ts @@ -1,6 +1,9 @@ import { Component, Input, Output, EventEmitter } from '@angular/core'; import { IAlert } from './alert.service'; +import { ClarityIcons, infoCircleIcon, windowCloseIcon} from '@cds/core/icon'; +ClarityIcons.addIcons(...[infoCircleIcon, windowCloseIcon]); + @Component({ selector: 'ukis-global-alert', templateUrl: './global-alert.component.html', diff --git a/projects/core-ui/src/lib/header/header.component.html b/projects/core-ui/src/lib/header/header.component.html index 17645c699..56962a896 100644 --- a/projects/core-ui/src/lib/header/header.component.html +++ b/projects/core-ui/src/lib/header/header.component.html @@ -1,11 +1,11 @@
- + - + {{title}} @@ -22,4 +22,4 @@
- + \ No newline at end of file diff --git a/projects/core-ui/src/lib/header/header.component.ts b/projects/core-ui/src/lib/header/header.component.ts index 929c797c2..ce1de53b0 100644 --- a/projects/core-ui/src/lib/header/header.component.ts +++ b/projects/core-ui/src/lib/header/header.component.ts @@ -1,5 +1,9 @@ import { Component, OnInit, Input } from '@angular/core'; +import { ClarityIcons} from '@cds/core/icon'; +import { ukisIcon, dlrIcon } from '../icons/ukis'; +ClarityIcons.addIcons(ukisIcon, dlrIcon); + @Component({ selector: 'ukis-header', templateUrl: './header.component.html', diff --git a/projects/core-ui/schematics/ng-add/files/src/app/components/icons/DLRLogoWhite.svg b/projects/core-ui/src/lib/icons/DLRLogoWhite.svg similarity index 100% rename from projects/core-ui/schematics/ng-add/files/src/app/components/icons/DLRLogoWhite.svg rename to projects/core-ui/src/lib/icons/DLRLogoWhite.svg diff --git a/projects/core-ui/schematics/ng-add/files/src/app/components/icons/eoc_white.svg b/projects/core-ui/src/lib/icons/eoc_white.svg similarity index 100% rename from projects/core-ui/schematics/ng-add/files/src/app/components/icons/eoc_white.svg rename to projects/core-ui/src/lib/icons/eoc_white.svg diff --git a/projects/core-ui/schematics/ng-add/files/src/app/components/icons/ukis-01-01.svg b/projects/core-ui/src/lib/icons/ukis-01-01.svg similarity index 100% rename from projects/core-ui/schematics/ng-add/files/src/app/components/icons/ukis-01-01.svg rename to projects/core-ui/src/lib/icons/ukis-01-01.svg diff --git a/projects/core-ui/schematics/ng-add/files/src/app/components/icons/ukis.svg b/projects/core-ui/src/lib/icons/ukis.svg similarity index 100% rename from projects/core-ui/schematics/ng-add/files/src/app/components/icons/ukis.svg rename to projects/core-ui/src/lib/icons/ukis.svg diff --git a/projects/core-ui/src/lib/icons/ukis.ts b/projects/core-ui/src/lib/icons/ukis.ts new file mode 100644 index 000000000..20b527881 --- /dev/null +++ b/projects/core-ui/src/lib/icons/ukis.ts @@ -0,0 +1,34 @@ +import { IconShapeTuple } from "@cds/core/icon/interfaces/icon.interfaces"; + +export const ukisIcon: IconShapeTuple = ['ukis-icon', ` +ukis + + + + +`]; + +export const eocIcon: IconShapeTuple = ['eoc-icon', ` +eoc + +`]; + +export const dlrIcon: IconShapeTuple = ['dlr-icon', ` +dlr + +`]; diff --git a/projects/core-ui/src/public-api.ts b/projects/core-ui/src/public-api.ts index 8b29d01dc..70c509283 100644 --- a/projects/core-ui/src/public-api.ts +++ b/projects/core-ui/src/public-api.ts @@ -7,6 +7,7 @@ export * from './lib/global-progress/progress.service'; export * from './lib/global-alert/global-alert.component'; export * from './lib/global-alert/alert.service'; export * from './lib/header/header.component'; +export * from './lib/icons/ukis'; export * from './lib/dynamic-component/dynamic-component.component'; export * from './lib/core-ui.module'; diff --git a/projects/demo-auth/package.json b/projects/demo-auth/package.json index 0ccb82a91..264d174ba 100644 --- a/projects/demo-auth/package.json +++ b/projects/demo-auth/package.json @@ -1,6 +1,6 @@ { "name": "demo-auth", - "version": "13.0.0", + "version": "14.0.0-next.0", "main": "src/public-api", "license": "Apache-2.0", "author": "Team UKIS", @@ -13,23 +13,23 @@ "registration" ], "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", - "@angular/router": "^16.2.3", - "@angular/platform-browser": "^16.2.3", - "@clr/angular": "^15.12.0", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", + "@angular/router": "^17.3.11", + "@angular/platform-browser": "^17.3.11", + "@clr/angular": "^17.2.1", "rxjs": "~7.8.0" }, "dependencies": { - "@dlr-eoc/map-ol": "13.0.0", - "@dlr-eoc/layer-control": "13.0.0", - "@dlr-eoc/cookie-alert": "13.0.0", - "@dlr-eoc/user-info": "13.0.0", - "@dlr-eoc/base-layers-raster": "13.0.0" + "@dlr-eoc/map-ol": "14.0.0-next.0", + "@dlr-eoc/layer-control": "14.0.0-next.0", + "@dlr-eoc/cookie-alert": "14.0.0-next.0", + "@dlr-eoc/user-info": "14.0.0-next.0", + "@dlr-eoc/base-layers-raster": "14.0.0-next.0" }, "devDependencies": { - "zone.js": "~0.13.0", - "@angular/platform-browser-dynamic": "^16.2.3", + "zone.js": "~0.14.7", + "@angular/platform-browser-dynamic": "^17.3.11", "protractor": "^7.0.0" } } diff --git a/projects/demo-auth/src/app/app.component.ts b/projects/demo-auth/src/app/app.component.ts index 6d35f7911..bfb6aa517 100644 --- a/projects/demo-auth/src/app/app.component.ts +++ b/projects/demo-auth/src/app/app.component.ts @@ -1,6 +1,6 @@ import { Component, OnDestroy, OnInit } from '@angular/core'; -import './components/icons/ukis'; +import '@cds/core/icon/register.js'; import { AlertService, IAlert } from './components/global-alert/alert.service'; import { ProgressService, IProgress } from './components/global-progress/progress.service'; diff --git a/projects/demo-auth/src/app/components/global-alert/global-alert.component.html b/projects/demo-auth/src/app/components/global-alert/global-alert.component.html index 4ae4e1367..392125e6d 100644 --- a/projects/demo-auth/src/app/components/global-alert/global-alert.component.html +++ b/projects/demo-auth/src/app/components/global-alert/global-alert.component.html @@ -2,7 +2,7 @@
- +
@@ -12,6 +12,6 @@
diff --git a/projects/demo-auth/src/app/components/global-alert/global-alert.component.ts b/projects/demo-auth/src/app/components/global-alert/global-alert.component.ts index ef5d10fa9..4a0c9ec9e 100644 --- a/projects/demo-auth/src/app/components/global-alert/global-alert.component.ts +++ b/projects/demo-auth/src/app/components/global-alert/global-alert.component.ts @@ -1,6 +1,9 @@ import { Component, Input, Output, EventEmitter } from '@angular/core'; import { IAlert } from './alert.service'; +import { ClarityIcons, infoCircleIcon, windowCloseIcon} from '@cds/core/icon'; +ClarityIcons.addIcons(...[infoCircleIcon, windowCloseIcon]); + @Component({ selector: 'ukis-global-alert', templateUrl: './global-alert.component.html', diff --git a/projects/demo-auth/src/app/components/header/header.component.html b/projects/demo-auth/src/app/components/header/header.component.html index 27a6b227f..1868b5bcf 100644 --- a/projects/demo-auth/src/app/components/header/header.component.html +++ b/projects/demo-auth/src/app/components/header/header.component.html @@ -1,11 +1,11 @@
- + - + {{title}} diff --git a/projects/demo-auth/src/app/components/header/header.component.ts b/projects/demo-auth/src/app/components/header/header.component.ts index 929c797c2..ce1de53b0 100644 --- a/projects/demo-auth/src/app/components/header/header.component.ts +++ b/projects/demo-auth/src/app/components/header/header.component.ts @@ -1,5 +1,9 @@ import { Component, OnInit, Input } from '@angular/core'; +import { ClarityIcons} from '@cds/core/icon'; +import { ukisIcon, dlrIcon } from '../icons/ukis'; +ClarityIcons.addIcons(ukisIcon, dlrIcon); + @Component({ selector: 'ukis-header', templateUrl: './header.component.html', diff --git a/projects/demo-auth/src/app/components/icons/ukis.ts b/projects/demo-auth/src/app/components/icons/ukis.ts index 340fe61c4..20b527881 100644 --- a/projects/demo-auth/src/app/components/icons/ukis.ts +++ b/projects/demo-auth/src/app/components/icons/ukis.ts @@ -1,43 +1,34 @@ -/* tslint:disable:max-line-length */ -const ukisShapes: any = { - ukis: ` - - ukis - - - - - - `, - dlr: ` - - dlr - - - `, - eoc: ` - - eoc - - - ` -}; -if (typeof window !== 'undefined' && window.hasOwnProperty('ClarityIcons')) { - (window as any).ClarityIcons.add(ukisShapes); -} -export { ukisShapes as UkisShapes }; +import { IconShapeTuple } from "@cds/core/icon/interfaces/icon.interfaces"; + +export const ukisIcon: IconShapeTuple = ['ukis-icon', ` +ukis + + + + +`]; + +export const eocIcon: IconShapeTuple = ['eoc-icon', ` +eoc + +`]; + +export const dlrIcon: IconShapeTuple = ['dlr-icon', ` +dlr + +`]; diff --git a/projects/demo-auth/src/app/route-components/route-map/route-map.component.html b/projects/demo-auth/src/app/route-components/route-map/route-map.component.html index d9cde75b9..e61b84ab7 100644 --- a/projects/demo-auth/src/app/route-components/route-map/route-map.component.html +++ b/projects/demo-auth/src/app/route-components/route-map/route-map.component.html @@ -4,7 +4,7 @@ - + Layers @@ -12,7 +12,7 @@ - + Baselayers diff --git a/projects/demo-auth/src/app/route-components/route-map/route-map.component.ts b/projects/demo-auth/src/app/route-components/route-map/route-map.component.ts index f4e0996d6..38bc9c032 100644 --- a/projects/demo-auth/src/app/route-components/route-map/route-map.component.ts +++ b/projects/demo-auth/src/app/route-components/route-map/route-map.component.ts @@ -7,6 +7,9 @@ import { HttpClient } from '@angular/common/http'; import { Router, ActivatedRoute } from '@angular/router'; import { MapOlService } from '@dlr-eoc/map-ol'; +import { ClarityIcons, layersIcon, worldIcon} from '@cds/core/icon'; +ClarityIcons.addIcons(...[layersIcon, worldIcon]); + @Component({ selector: 'app-route-map', diff --git a/projects/demo-auth/src/index.html b/projects/demo-auth/src/index.html index bd1feed92..bc014bdb1 100644 --- a/projects/demo-auth/src/index.html +++ b/projects/demo-auth/src/index.html @@ -13,7 +13,7 @@ - + diff --git a/projects/demo-auth/src/styles/_clr-vertival-nav-layout.scss b/projects/demo-auth/src/styles/_clr-vertival-nav-layout.scss index c9bb22f99..1ed8fc350 100644 --- a/projects/demo-auth/src/styles/_clr-vertival-nav-layout.scss +++ b/projects/demo-auth/src/styles/_clr-vertival-nav-layout.scss @@ -10,7 +10,9 @@ /** nav orientation default left side ------------------------------ */ .clr-vertical-nav { + --clr-vertical-nav-bg-color: hsl(198, 0%, 91%); width: var(--clr-vertical-nav-width, 12rem); + line-height: 24px; &.is-collapsed { .nav-icon { margin-left: var(--nav-items-distance-side) !important; //$clr_baselineRem_0_667; @@ -68,7 +70,7 @@ margin-right: auto; .nav-trigger-icon { - margin-left: 0.5rem; + margin-left: 0rem; margin-right: auto; &[direction="right"] { diff --git a/projects/demo-auth/src/styles/_ukis-core-ui-layout.scss b/projects/demo-auth/src/styles/_ukis-core-ui-layout.scss index fefec0aee..c356280f2 100644 --- a/projects/demo-auth/src/styles/_ukis-core-ui-layout.scss +++ b/projects/demo-auth/src/styles/_ukis-core-ui-layout.scss @@ -11,7 +11,7 @@ // min-width: 10.2rem; a { - clr-icon { + cds-icon { color: var(--header-branding-icon-color); } @@ -47,7 +47,7 @@ .header { .branding { a { - clr-icon { + cds-icon { color: var(--header-branding-icon-color-mobile); } } diff --git a/projects/demo-auth/src/styles/_ukis-theme.scss b/projects/demo-auth/src/styles/_ukis-theme.scss index ab4f3d3bb..4a91c37f2 100644 --- a/projects/demo-auth/src/styles/_ukis-theme.scss +++ b/projects/demo-auth/src/styles/_ukis-theme.scss @@ -16,15 +16,17 @@ * It's not a performance issue. It's just saner to maintain. */ -@import "./ukis-variables"; -// --- overwrite Clarity variables - remove if -@import "./overwrites-clr-variables"; -@import "@clr/ui/src/main"; -// ---------------------------------- -@import "./clr-vertival-nav-layout"; - -@import "./ukis-inputs"; -@import "./ukis-layer-nav"; - - -@import "./ukis-core-ui-layout"; + @import "./ukis-variables"; + @import '@cds/core/global.css'; + // --- overwrite Clarity variables - remove if + @import "./overwrites-clr-variables"; + @import "@clr/ui/src/main"; + // ---------------------------------- + @import "./clr-vertival-nav-layout"; + + @import "./ukis-inputs"; + @import "./ukis-layer-nav"; + + + @import "./ukis-core-ui-layout"; + \ No newline at end of file diff --git a/projects/demo-maps/package.json b/projects/demo-maps/package.json index 3c25a0284..dacb0c8e4 100644 --- a/projects/demo-maps/package.json +++ b/projects/demo-maps/package.json @@ -1,6 +1,6 @@ { "name": "demo-maps", - "version": "13.0.0", + "version": "14.0.0-next.0", "main": "src/public-api", "license": "Apache-2.0", "author": "Team UKIS", @@ -12,30 +12,30 @@ "layers" ], "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", - "@angular/router": "^16.2.3", - "@angular/platform-browser": "^16.2.3", - "@clr/angular": "^15.12.0", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", + "@angular/router": "^17.3.11", + "@angular/platform-browser": "^17.3.11", + "@clr/angular": "^17.2.1", "rxjs": "~7.8.0", "ol": "^v9.2.4", - "proj4": "^2.9.0" + "proj4": "^2.11.0" }, "dependencies": { - "@dlr-eoc/map-ol": "13.0.0", - "@dlr-eoc/layer-control": "13.0.0", - "@dlr-eoc/map-tools": "13.0.0", - "@dlr-eoc/base-layers-raster": "13.0.0", - "@dlr-eoc/map-three": "13.0.0", - "@dlr-eoc/utils-maps": "13.0.0", - "@dlr-eoc/services-ogc": "13.0.0", - "@dlr-eoc/shared-assets": "13.0.0", - "@dlr-eoc/map-cesium": "13.0.0", - "@dlr-eoc/map-maplibre": "13.0.0" + "@dlr-eoc/map-ol": "14.0.0-next.0", + "@dlr-eoc/layer-control": "14.0.0-next.0", + "@dlr-eoc/map-tools": "14.0.0-next.0", + "@dlr-eoc/base-layers-raster": "14.0.0-next.0", + "@dlr-eoc/map-three": "14.0.0-next.0", + "@dlr-eoc/utils-maps": "14.0.0-next.0", + "@dlr-eoc/services-ogc": "14.0.0-next.0", + "@dlr-eoc/shared-assets": "14.0.0-next.0", + "@dlr-eoc/map-cesium": "14.0.0-next.0", + "@dlr-eoc/map-maplibre": "14.0.0-next.0" }, "devDependencies": { - "zone.js": "~0.13.0", - "@angular/platform-browser-dynamic": "^16.2.3", + "zone.js": "~0.14.7", + "@angular/platform-browser-dynamic": "^17.3.11", "protractor": "^7.0.0" } } diff --git a/projects/demo-maps/src/app/app.component.ts b/projects/demo-maps/src/app/app.component.ts index 4cf3866af..61d99b3c5 100644 --- a/projects/demo-maps/src/app/app.component.ts +++ b/projects/demo-maps/src/app/app.component.ts @@ -1,6 +1,6 @@ import { Component, OnDestroy, OnInit } from '@angular/core'; -import './components/icons/ukis'; +import '@cds/core/icon/register.js'; import { AlertService, IAlert } from './components/global-alert/alert.service'; import { ProgressService, IProgress } from './components/global-progress/progress.service'; diff --git a/projects/demo-maps/src/app/components/example-layer-description/example-layer-description.component.html b/projects/demo-maps/src/app/components/example-layer-description/example-layer-description.component.html index 2c2cf6968..e9a9dd1e8 100644 --- a/projects/demo-maps/src/app/components/example-layer-description/example-layer-description.component.html +++ b/projects/demo-maps/src/app/components/example-layer-description/example-layer-description.component.html @@ -5,7 +5,7 @@

- Keep in mind that this breaks @dlr-eoc/services-ogc generateResourceFromLayer() for this layer when exporting a + Keep in mind that this breaks @dlr-eoc/services-ogc generateResourceFromLayer() for this layer when exporting a IOwsContext.

diff --git a/projects/demo-maps/src/app/components/global-alert/global-alert.component.html b/projects/demo-maps/src/app/components/global-alert/global-alert.component.html index 4ae4e1367..392125e6d 100644 --- a/projects/demo-maps/src/app/components/global-alert/global-alert.component.html +++ b/projects/demo-maps/src/app/components/global-alert/global-alert.component.html @@ -2,7 +2,7 @@
- +
@@ -12,6 +12,6 @@
diff --git a/projects/demo-maps/src/app/components/global-alert/global-alert.component.ts b/projects/demo-maps/src/app/components/global-alert/global-alert.component.ts index ef5d10fa9..4a0c9ec9e 100644 --- a/projects/demo-maps/src/app/components/global-alert/global-alert.component.ts +++ b/projects/demo-maps/src/app/components/global-alert/global-alert.component.ts @@ -1,6 +1,9 @@ import { Component, Input, Output, EventEmitter } from '@angular/core'; import { IAlert } from './alert.service'; +import { ClarityIcons, infoCircleIcon, windowCloseIcon} from '@cds/core/icon'; +ClarityIcons.addIcons(...[infoCircleIcon, windowCloseIcon]); + @Component({ selector: 'ukis-global-alert', templateUrl: './global-alert.component.html', diff --git a/projects/demo-maps/src/app/components/header/header.component.html b/projects/demo-maps/src/app/components/header/header.component.html index 17645c699..2050f06da 100644 --- a/projects/demo-maps/src/app/components/header/header.component.html +++ b/projects/demo-maps/src/app/components/header/header.component.html @@ -1,11 +1,11 @@
- + - + {{title}} diff --git a/projects/demo-maps/src/app/components/header/header.component.ts b/projects/demo-maps/src/app/components/header/header.component.ts index 929c797c2..ce1de53b0 100644 --- a/projects/demo-maps/src/app/components/header/header.component.ts +++ b/projects/demo-maps/src/app/components/header/header.component.ts @@ -1,5 +1,9 @@ import { Component, OnInit, Input } from '@angular/core'; +import { ClarityIcons} from '@cds/core/icon'; +import { ukisIcon, dlrIcon } from '../icons/ukis'; +ClarityIcons.addIcons(ukisIcon, dlrIcon); + @Component({ selector: 'ukis-header', templateUrl: './header.component.html', diff --git a/projects/demo-maps/src/app/components/icons/ukis.ts b/projects/demo-maps/src/app/components/icons/ukis.ts index 340fe61c4..20b527881 100644 --- a/projects/demo-maps/src/app/components/icons/ukis.ts +++ b/projects/demo-maps/src/app/components/icons/ukis.ts @@ -1,43 +1,34 @@ -/* tslint:disable:max-line-length */ -const ukisShapes: any = { - ukis: ` - - ukis - - - - - - `, - dlr: ` - - dlr - - - `, - eoc: ` - - eoc - - - ` -}; -if (typeof window !== 'undefined' && window.hasOwnProperty('ClarityIcons')) { - (window as any).ClarityIcons.add(ukisShapes); -} -export { ukisShapes as UkisShapes }; +import { IconShapeTuple } from "@cds/core/icon/interfaces/icon.interfaces"; + +export const ukisIcon: IconShapeTuple = ['ukis-icon', ` +ukis + + + + +`]; + +export const eocIcon: IconShapeTuple = ['eoc-icon', ` +eoc + +`]; + +export const dlrIcon: IconShapeTuple = ['dlr-icon', ` +dlr + +`]; diff --git a/projects/demo-maps/src/app/route-components/bookmarks/route-bookmarks.component.scss b/projects/demo-maps/src/app/route-components/bookmarks/route-bookmarks.component.scss index e632f9724..295d77f6b 100644 --- a/projects/demo-maps/src/app/route-components/bookmarks/route-bookmarks.component.scss +++ b/projects/demo-maps/src/app/route-components/bookmarks/route-bookmarks.component.scss @@ -64,7 +64,7 @@ padding-top: 0.5em; padding-left: 0.5em; - clr-icon { + cds-icon { height: 20px; width: 20px; } diff --git a/projects/demo-maps/src/app/route-components/route-example-cesium/route-example-cesium.component.html b/projects/demo-maps/src/app/route-components/route-example-cesium/route-example-cesium.component.html index b13fa8f27..3a5a48a69 100644 --- a/projects/demo-maps/src/app/route-components/route-example-cesium/route-example-cesium.component.html +++ b/projects/demo-maps/src/app/route-components/route-example-cesium/route-example-cesium.component.html @@ -13,7 +13,7 @@ - + 3D Tilelayers @@ -21,7 +21,7 @@ - + 3D Terrain @@ -29,7 +29,7 @@ - + Overlays @@ -38,7 +38,7 @@ - + Layers @@ -46,7 +46,7 @@ - + Baselayers @@ -54,7 +54,7 @@ - + Actions @@ -67,11 +67,11 @@ - + 3D View - + 2D View diff --git a/projects/demo-maps/src/app/route-components/route-example-cesium/route-example-cesium.component.ts b/projects/demo-maps/src/app/route-components/route-example-cesium/route-example-cesium.component.ts index 40d6bf795..10687ef71 100644 --- a/projects/demo-maps/src/app/route-components/route-example-cesium/route-example-cesium.component.ts +++ b/projects/demo-maps/src/app/route-components/route-example-cesium/route-example-cesium.component.ts @@ -10,6 +10,9 @@ import testData from '@dlr-eoc/shared-assets/geojson/test.json'; import { Feature } from 'ol'; import { Fill, Stroke, Style } from 'ol/style'; +import { ClarityIcons, layersIcon, worldIcon, blockIcon, cogIcon, mapIcon } from '@cds/core/icon'; +ClarityIcons.addIcons(...[layersIcon, worldIcon, blockIcon, cogIcon, mapIcon]); + @Component({ selector: 'app-route-example-cesium', templateUrl: './route-example-cesium.component.html', diff --git a/projects/demo-maps/src/app/route-components/route-example-custom-layers/route-map4.component.html b/projects/demo-maps/src/app/route-components/route-example-custom-layers/route-map4.component.html index d02066c48..b409d9d80 100644 --- a/projects/demo-maps/src/app/route-components/route-example-custom-layers/route-map4.component.html +++ b/projects/demo-maps/src/app/route-components/route-example-custom-layers/route-map4.component.html @@ -5,7 +5,7 @@ - + Layers @@ -13,7 +13,7 @@ - + Test to set dynamic component diff --git a/projects/demo-maps/src/app/route-components/route-example-events/route-map3.component.ts b/projects/demo-maps/src/app/route-components/route-example-events/route-map3.component.ts index 22939c14d..3d92f5c70 100644 --- a/projects/demo-maps/src/app/route-components/route-example-events/route-map3.component.ts +++ b/projects/demo-maps/src/app/route-components/route-example-events/route-map3.component.ts @@ -24,6 +24,9 @@ import { getRenderPixel } from 'ol/render'; import olLayerGroup from 'ol/layer/Group'; import { AlertService } from '../../components/global-alert/alert.service'; +import { ClarityIcons, layersIcon, cogIcon, compassIcon, downloadIcon } from '@cds/core/icon'; +ClarityIcons.addIcons(...[layersIcon, cogIcon, compassIcon, downloadIcon]); + @Component({ selector: 'app-route-map3', templateUrl: './route-map3.component.html', diff --git a/projects/demo-maps/src/app/route-components/route-example-layer-style/route-map6.component.html b/projects/demo-maps/src/app/route-components/route-example-layer-style/route-map6.component.html index 2703deabc..26c0249aa 100644 --- a/projects/demo-maps/src/app/route-components/route-example-layer-style/route-map6.component.html +++ b/projects/demo-maps/src/app/route-components/route-example-layer-style/route-map6.component.html @@ -5,7 +5,7 @@ - + Layers @@ -13,7 +13,7 @@ - + Baselayers diff --git a/projects/demo-maps/src/app/route-components/route-example-layer-style/route-map6.component.ts b/projects/demo-maps/src/app/route-components/route-example-layer-style/route-map6.component.ts index ecdb0a2f0..0da82a89f 100644 --- a/projects/demo-maps/src/app/route-components/route-example-layer-style/route-map6.component.ts +++ b/projects/demo-maps/src/app/route-components/route-example-layer-style/route-map6.component.ts @@ -6,6 +6,9 @@ import { MapOlService, IMapControls } from '@dlr-eoc/map-ol'; import { Subscription } from 'rxjs'; import { RasterFeatureInfoComponent } from '../../components/raster-feature-info/raster-feature-info.component'; +import { ClarityIcons, layersIcon, worldIcon } from '@cds/core/icon'; +ClarityIcons.addIcons(...[layersIcon, worldIcon]); + @Component({ selector: 'app-route-map6', templateUrl: './route-map6.component.html', diff --git a/projects/demo-maps/src/app/route-components/route-example-layers/route-map.component.html b/projects/demo-maps/src/app/route-components/route-example-layers/route-map.component.html index c5b5b7d84..71f52d280 100644 --- a/projects/demo-maps/src/app/route-components/route-example-layers/route-map.component.html +++ b/projects/demo-maps/src/app/route-components/route-example-layers/route-map.component.html @@ -7,7 +7,7 @@ - + Overlays @@ -16,7 +16,7 @@ - + Layers @@ -24,7 +24,7 @@ - + Baselayers @@ -32,7 +32,7 @@ - + Actions diff --git a/projects/demo-maps/src/app/route-components/route-example-layers/route-map.component.ts b/projects/demo-maps/src/app/route-components/route-example-layers/route-map.component.ts index 204b2070a..89dafe666 100644 --- a/projects/demo-maps/src/app/route-components/route-example-layers/route-map.component.ts +++ b/projects/demo-maps/src/app/route-components/route-example-layers/route-map.component.ts @@ -17,6 +17,10 @@ import { ExampleGroupLegendComponent } from '../../components/example-group-lege import greyscale from '@dlr-eoc/shared-assets/open-map-styles/open-map-style.json'; import { VtileLayerActionComponent } from '../../components/vtile-layer-action/vtile-layer-action.component'; +// import icons for use in html and layer actions +import { ClarityIcons, layersIcon, worldIcon, cogIcon, downloadCloudIcon, syncIcon } from '@cds/core/icon'; +ClarityIcons.addIcons(...[layersIcon, worldIcon, cogIcon, downloadCloudIcon, syncIcon]); + @Component({ selector: 'app-route-map', templateUrl: './route-map.component.html', diff --git a/projects/demo-maps/src/app/route-components/route-example-layout/route-map5.component.html b/projects/demo-maps/src/app/route-components/route-example-layout/route-map5.component.html index 67be017fb..f615e93f0 100644 --- a/projects/demo-maps/src/app/route-components/route-example-layout/route-map5.component.html +++ b/projects/demo-maps/src/app/route-components/route-example-layout/route-map5.component.html @@ -6,7 +6,7 @@ - + Overlays @@ -15,7 +15,7 @@ - + Layers @@ -23,7 +23,7 @@ - + Baselayers @@ -35,7 +35,7 @@ - + Table diff --git a/projects/demo-maps/src/app/route-components/route-example-layout/route-map5.component.ts b/projects/demo-maps/src/app/route-components/route-example-layout/route-map5.component.ts index a4291c54a..2091ff4e0 100644 --- a/projects/demo-maps/src/app/route-components/route-example-layout/route-map5.component.ts +++ b/projects/demo-maps/src/app/route-components/route-example-layout/route-map5.component.ts @@ -6,6 +6,9 @@ import { MapOlService, IMapControls } from '@dlr-eoc/map-ol'; import { Subscription } from 'rxjs'; import { GeoJSONFeature, GeoJSONFeatureCollection } from 'ol/format/GeoJSON'; +import { ClarityIcons, layersIcon, worldIcon, tableIcon } from '@cds/core/icon'; +ClarityIcons.addIcons(...[layersIcon, worldIcon, tableIcon]); + @Component({ selector: 'app-route-map5', templateUrl: './route-map5.component.html', diff --git a/projects/demo-maps/src/app/route-components/route-example-maplibre/route-example-maplibre.component.html b/projects/demo-maps/src/app/route-components/route-example-maplibre/route-example-maplibre.component.html index eea29d13d..c70e619be 100644 --- a/projects/demo-maps/src/app/route-components/route-example-maplibre/route-example-maplibre.component.html +++ b/projects/demo-maps/src/app/route-components/route-example-maplibre/route-example-maplibre.component.html @@ -5,7 +5,7 @@ - + Overlays @@ -14,7 +14,7 @@ - + Layers @@ -22,7 +22,7 @@ - + Baselayers @@ -30,7 +30,7 @@ - + Actions diff --git a/projects/demo-maps/src/app/route-components/route-example-maplibre/route-example-maplibre.component.ts b/projects/demo-maps/src/app/route-components/route-example-maplibre/route-example-maplibre.component.ts index b48f58f85..93135f51e 100644 --- a/projects/demo-maps/src/app/route-components/route-example-maplibre/route-example-maplibre.component.ts +++ b/projects/demo-maps/src/app/route-components/route-example-maplibre/route-example-maplibre.component.ts @@ -10,6 +10,9 @@ import placeLabels from '@dlr-eoc/shared-assets/open-map-styles/open-map-style-p import testData from '@dlr-eoc/shared-assets/geojson/test.collection.json'; import { Subscription } from 'rxjs'; +import { ClarityIcons, layersIcon, worldIcon, cogIcon } from '@cds/core/icon'; +ClarityIcons.addIcons(...[layersIcon, worldIcon, cogIcon]); + @Component({ selector: 'app-route-example-maplibre', templateUrl: './route-example-maplibre.component.html', diff --git a/projects/demo-maps/src/app/route-components/route-example-olperformance/route-map7.component.html b/projects/demo-maps/src/app/route-components/route-example-olperformance/route-map7.component.html index 0bef6cf56..1281c9f84 100644 --- a/projects/demo-maps/src/app/route-components/route-example-olperformance/route-map7.component.html +++ b/projects/demo-maps/src/app/route-components/route-example-olperformance/route-map7.component.html @@ -5,7 +5,7 @@ - + Performance @@ -14,7 +14,7 @@ - + Layers diff --git a/projects/demo-maps/src/app/route-components/route-example-olperformance/route-map7.component.ts b/projects/demo-maps/src/app/route-components/route-example-olperformance/route-map7.component.ts index 7ef7d6ab8..8a41af353 100644 --- a/projects/demo-maps/src/app/route-components/route-example-olperformance/route-map7.component.ts +++ b/projects/demo-maps/src/app/route-components/route-example-olperformance/route-map7.component.ts @@ -7,6 +7,9 @@ import { LargeLayersService } from './services/largelayers.service'; import { Fill as olFill, Stroke as olStroke, Style as olStyle } from 'ol/style'; import { Feature } from 'ol'; +import { ClarityIcons, layersIcon, clockIcon } from '@cds/core/icon'; +ClarityIcons.addIcons(...[layersIcon, layersIcon, clockIcon]); + @Component({ selector: 'app-route-map7', templateUrl: './route-map7.component.html', @@ -28,7 +31,7 @@ export class RouteMap7Component implements OnInit, AfterViewInit { attribution: true, scaleLine: true }; - } + } ngOnInit(): void { this.mapSvc.setProjection('EPSG:4326'); @@ -81,8 +84,8 @@ export class RouteMap7Component implements OnInit, AfterViewInit { // this.mapStateSvc.setExtent(extent); this.mapSvc.map.getView().fit( extent, { - size: this.mapSvc.map.getSize(), - }); + size: this.mapSvc.map.getSize(), + }); } } diff --git a/projects/demo-maps/src/app/route-components/route-example-owc-layers/route-example-owc-layers.component.html b/projects/demo-maps/src/app/route-components/route-example-owc-layers/route-example-owc-layers.component.html index 61949f99a..aa963cd37 100644 --- a/projects/demo-maps/src/app/route-components/route-example-owc-layers/route-example-owc-layers.component.html +++ b/projects/demo-maps/src/app/route-components/route-example-owc-layers/route-example-owc-layers.component.html @@ -6,7 +6,7 @@ - + Overlays @@ -15,7 +15,7 @@ - + Layers @@ -23,7 +23,7 @@ - + Baselayers @@ -33,7 +33,7 @@ - + OWC Control diff --git a/projects/demo-maps/src/app/route-components/route-example-owc-layers/route-example-owc-layers.component.ts b/projects/demo-maps/src/app/route-components/route-example-owc-layers/route-example-owc-layers.component.ts index dcb378701..706674ad2 100644 --- a/projects/demo-maps/src/app/route-components/route-example-owc-layers/route-example-owc-layers.component.ts +++ b/projects/demo-maps/src/app/route-components/route-example-owc-layers/route-example-owc-layers.component.ts @@ -7,6 +7,9 @@ import { IEocOwsContext, OwcJsonService } from '@dlr-eoc/services-ogc'; import { first } from 'rxjs/operators'; import { ZommNumberControl } from '../route-example-layers/ol-custom-control'; +import { ClarityIcons, layersIcon, worldIcon, exportIcon } from '@cds/core/icon'; +ClarityIcons.addIcons(...[layersIcon, worldIcon, exportIcon ]); + @Component({ selector: 'app-route-example-owc-layers', templateUrl: './route-example-owc-layers.component.html', diff --git a/projects/demo-maps/src/app/route-components/route-example-projection/route-map2.component.html b/projects/demo-maps/src/app/route-components/route-example-projection/route-map2.component.html index 853565b0d..6893e19e8 100644 --- a/projects/demo-maps/src/app/route-components/route-example-projection/route-map2.component.html +++ b/projects/demo-maps/src/app/route-components/route-example-projection/route-map2.component.html @@ -4,28 +4,28 @@ - + Layers - + Projection - + Coordinates - + Navigator diff --git a/projects/demo-maps/src/app/route-components/route-example-projection/route-map2.component.ts b/projects/demo-maps/src/app/route-components/route-example-projection/route-map2.component.ts index d95dbbef8..2e7cb320a 100644 --- a/projects/demo-maps/src/app/route-components/route-example-projection/route-map2.component.ts +++ b/projects/demo-maps/src/app/route-components/route-example-projection/route-map2.component.ts @@ -5,6 +5,8 @@ import { MapOlService, IMapControls } from '@dlr-eoc/map-ol'; import { OsmTileLayer } from '@dlr-eoc/base-layers-raster'; import { IProjDef } from '@dlr-eoc/map-tools'; +import { ClarityIcons, layersIcon, mapIcon, compassIcon } from '@cds/core/icon'; +ClarityIcons.addIcons(...[layersIcon, mapIcon, compassIcon]); @Component({ selector: 'app-route-map2', diff --git a/projects/demo-maps/src/app/route-components/route-example-threejs/route-example-threejs.component.html b/projects/demo-maps/src/app/route-components/route-example-threejs/route-example-threejs.component.html index 54ea5a5d6..8514ec867 100644 --- a/projects/demo-maps/src/app/route-components/route-example-threejs/route-example-threejs.component.html +++ b/projects/demo-maps/src/app/route-components/route-example-threejs/route-example-threejs.component.html @@ -11,7 +11,7 @@ - + Phobos
@@ -33,7 +33,7 @@ - + Layers
diff --git a/projects/demo-maps/src/app/route-components/route-example-threejs/route-example-threejs.component.ts b/projects/demo-maps/src/app/route-components/route-example-threejs/route-example-threejs.component.ts index edd8e34bd..62c93e504 100644 --- a/projects/demo-maps/src/app/route-components/route-example-threejs/route-example-threejs.component.ts +++ b/projects/demo-maps/src/app/route-components/route-example-threejs/route-example-threejs.component.ts @@ -10,9 +10,8 @@ import { TileWMS } from 'ol/source'; import { Tile as TileLayer } from 'ol/layer'; import { get as getProjection } from 'ol/proj'; - - - +import { ClarityIcons, layersIcon, infoStandardIcon } from '@cds/core/icon'; +ClarityIcons.addIcons(...[layersIcon, infoStandardIcon]); @Component({ selector: 'app-route-example-threejs', diff --git a/projects/demo-maps/src/assets/licenses.json b/projects/demo-maps/src/assets/licenses.json index ab6ec323b..4990e1522 100644 --- a/projects/demo-maps/src/assets/licenses.json +++ b/projects/demo-maps/src/assets/licenses.json @@ -5,7 +5,7 @@ "path": "\\node_modules\\@aduh95\\viz.js", "licenseFile": "\\node_modules\\@aduh95\\viz.js\\LICENSE" }, - "@ampproject/remapping@2.2.1": { + "@ampproject/remapping@2.3.0": { "licenses": "Apache-2.0", "repository": "https://github.com/ampproject/remapping", "publisher": "Justin Ridgewell", @@ -13,94 +13,88 @@ "path": "\\node_modules\\@ampproject\\remapping", "licenseFile": "\\node_modules\\@ampproject\\remapping\\LICENSE" }, - "@angular-devkit/architect@0.1602.10": { + "@angular-devkit/architect@0.1703.8": { "licenses": "MIT", "repository": "https://github.com/angular/angular-cli", "publisher": "Angular Authors", "path": "\\node_modules\\@angular-devkit\\architect", "licenseFile": "\\node_modules\\@angular-devkit\\architect\\LICENSE" }, - "@angular-devkit/build-angular@16.2.10": { + "@angular-devkit/build-angular@17.3.8": { "licenses": "MIT", "repository": "https://github.com/angular/angular-cli", "publisher": "Angular Authors", "path": "\\node_modules\\@angular-devkit\\build-angular", "licenseFile": "\\node_modules\\@angular-devkit\\build-angular\\LICENSE" }, - "@angular-devkit/build-webpack@0.1602.10": { + "@angular-devkit/build-webpack@0.1703.8": { "licenses": "MIT", "repository": "https://github.com/angular/angular-cli", "publisher": "Angular Authors", "path": "\\node_modules\\@angular-devkit\\build-webpack", "licenseFile": "\\node_modules\\@angular-devkit\\build-webpack\\LICENSE" }, - "@angular-devkit/core@14.2.12": { + "@angular-devkit/core@17.3.5": { "licenses": "MIT", "repository": "https://github.com/angular/angular-cli", "publisher": "Angular Authors", "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@angular-devkit\\core", "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@angular-devkit\\core\\LICENSE" }, - "@angular-devkit/core@16.2.10": { + "@angular-devkit/core@17.3.8": { "licenses": "MIT", "repository": "https://github.com/angular/angular-cli", "publisher": "Angular Authors", "path": "\\node_modules\\@angular-devkit\\core", "licenseFile": "\\node_modules\\@angular-devkit\\core\\LICENSE" }, - "@angular-devkit/schematics@14.2.12": { + "@angular-devkit/schematics@17.3.5": { "licenses": "MIT", "repository": "https://github.com/angular/angular-cli", "publisher": "Angular Authors", "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@angular-devkit\\schematics", "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@angular-devkit\\schematics\\LICENSE" }, - "@angular-devkit/schematics@16.2.10": { + "@angular-devkit/schematics@17.3.8": { "licenses": "MIT", "repository": "https://github.com/angular/angular-cli", "publisher": "Angular Authors", "path": "\\node_modules\\@angular-devkit\\schematics", "licenseFile": "\\node_modules\\@angular-devkit\\schematics\\LICENSE" }, - "@angular/animations@16.2.12": { + "@angular/animations@17.3.11": { "licenses": "MIT", "repository": "https://github.com/angular/angular", "publisher": "angular", "path": "\\node_modules\\@angular\\animations", "licenseFile": "\\node_modules\\@angular\\animations\\README.md" }, - "@angular/cdk@15.2.9": { - "licenses": "MIT", - "repository": "https://github.com/angular/components", - "path": "\\node_modules\\@dlr-eoc\\layer-control\\node_modules\\@angular\\cdk", - "licenseFile": "\\node_modules\\@dlr-eoc\\layer-control\\node_modules\\@angular\\cdk\\LICENSE" - }, - "@angular/cdk@16.2.12": { + "@angular/cdk@17.3.10": { "licenses": "MIT", "repository": "https://github.com/angular/components", "path": "\\node_modules\\@angular\\cdk", "licenseFile": "\\node_modules\\@angular\\cdk\\LICENSE" }, - "@angular/cli@16.2.10": { + "@angular/cli@17.3.8": { "licenses": "MIT", "repository": "https://github.com/angular/angular-cli", "publisher": "Angular Authors", "path": "\\node_modules\\@angular\\cli", "licenseFile": "\\node_modules\\@angular\\cli\\LICENSE" }, - "@angular/common@16.2.12": { + "@angular/common@17.3.11": { "licenses": "MIT", "repository": "https://github.com/angular/angular", "publisher": "angular", "path": "\\node_modules\\@angular\\common", "licenseFile": "\\node_modules\\@angular\\common\\README.md" }, - "@angular/compiler-cli@16.2.12": { + "@angular/compiler-cli@17.3.11": { "licenses": "MIT", "repository": "https://github.com/angular/angular", "path": "\\node_modules\\@angular\\compiler-cli" }, - "@angular/compiler@16.2.12": { + "@angular/compiler@17.3.11": { "licenses": "MIT", "repository": "https://github.com/angular/angular", "publisher": "angular", @@ -114,7 +108,7 @@ "path": "\\node_modules\\codelyzer\\node_modules\\@angular\\compiler", "licenseFile": "\\node_modules\\codelyzer\\node_modules\\@angular\\compiler\\README.md" }, - "@angular/core@16.2.12": { + "@angular/core@17.3.11": { "licenses": "MIT", "repository": "https://github.com/angular/angular", "publisher": "angular", @@ -128,49 +122,41 @@ "path": "\\node_modules\\codelyzer\\node_modules\\@angular\\core", "licenseFile": "\\node_modules\\codelyzer\\node_modules\\@angular\\core\\README.md" }, - "@angular/forms@16.2.12": { + "@angular/forms@17.3.11": { "licenses": "MIT", "repository": "https://github.com/angular/angular", "publisher": "angular", "path": "\\node_modules\\@angular\\forms", "licenseFile": "\\node_modules\\@angular\\forms\\README.md" }, - "@angular/language-service@16.2.12": { + "@angular/language-service@17.3.11": { "licenses": "MIT", "repository": "https://github.com/angular/angular", "publisher": "angular", "path": "\\node_modules\\@angular\\language-service" }, - "@angular/platform-browser-dynamic@16.2.12": { + "@angular/platform-browser-dynamic@17.3.11": { "licenses": "MIT", "repository": "https://github.com/angular/angular", "publisher": "angular", "path": "\\node_modules\\@angular\\platform-browser-dynamic", "licenseFile": "\\node_modules\\@angular\\platform-browser-dynamic\\README.md" }, - "@angular/platform-browser@16.2.12": { + "@angular/platform-browser@17.3.11": { "licenses": "MIT", "repository": "https://github.com/angular/angular", "publisher": "angular", "path": "\\node_modules\\@angular\\platform-browser", "licenseFile": "\\node_modules\\@angular\\platform-browser\\README.md" }, - "@angular/router@16.2.12": { + "@angular/router@17.3.11": { "licenses": "MIT", "repository": "https://github.com/angular/angular", "publisher": "angular", "path": "\\node_modules\\@angular\\router", "licenseFile": "\\node_modules\\@angular\\router\\README.md" }, - "@assemblyscript/loader@0.10.1": { - "licenses": "Apache-2.0", - "repository": "https://github.com/AssemblyScript/assemblyscript", - "publisher": "Daniel Wirtz", - "email": "dcode+assemblyscript@dcode.io", - "path": "\\node_modules\\@assemblyscript\\loader", - "licenseFile": "\\node_modules\\@assemblyscript\\loader\\README.md" - }, - "@babel/code-frame@7.23.5": { + "@babel/code-frame@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -178,7 +164,7 @@ "path": "\\node_modules\\@babel\\code-frame", "licenseFile": "\\node_modules\\@babel\\code-frame\\LICENSE" }, - "@babel/compat-data@7.23.5": { + "@babel/compat-data@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -186,7 +172,7 @@ "path": "\\node_modules\\@babel\\compat-data", "licenseFile": "\\node_modules\\@babel\\compat-data\\LICENSE" }, - "@babel/core@7.22.9": { + "@babel/core@7.23.9": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -194,15 +180,15 @@ "path": "\\node_modules\\@babel\\core", "licenseFile": "\\node_modules\\@babel\\core\\LICENSE" }, - "@babel/core@7.23.2": { + "@babel/core@7.24.0": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", "url": "https://babel.dev/team", - "path": "\\node_modules\\@angular\\compiler-cli\\node_modules\\@babel\\core", - "licenseFile": "\\node_modules\\@angular\\compiler-cli\\node_modules\\@babel\\core\\LICENSE" + "path": "\\node_modules\\@angular-devkit\\build-angular\\node_modules\\@babel\\core", + "licenseFile": "\\node_modules\\@angular-devkit\\build-angular\\node_modules\\@babel\\core\\LICENSE" }, - "@babel/core@7.23.5": { + "@babel/core@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -210,7 +196,7 @@ "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@babel\\core", "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@babel\\core\\LICENSE" }, - "@babel/generator@7.22.9": { + "@babel/generator@7.23.6": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -218,7 +204,7 @@ "path": "\\node_modules\\@babel\\generator", "licenseFile": "\\node_modules\\@babel\\generator\\LICENSE" }, - "@babel/generator@7.23.5": { + "@babel/generator@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -234,7 +220,15 @@ "path": "\\node_modules\\@babel\\helper-annotate-as-pure", "licenseFile": "\\node_modules\\@babel\\helper-annotate-as-pure\\LICENSE" }, - "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15": { + "@babel/helper-annotate-as-pure@7.24.7": { + "licenses": "MIT", + "repository": "https://github.com/babel/babel", + "publisher": "The Babel Team", + "url": "https://babel.dev/team", + "path": "\\node_modules\\@babel\\helper-create-class-features-plugin\\node_modules\\@babel\\helper-annotate-as-pure", + "licenseFile": "\\node_modules\\@babel\\helper-create-class-features-plugin\\node_modules\\@babel\\helper-annotate-as-pure\\LICENSE" + }, + "@babel/helper-builder-binary-assignment-operator-visitor@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -242,7 +236,7 @@ "path": "\\node_modules\\@babel\\helper-builder-binary-assignment-operator-visitor", "licenseFile": "\\node_modules\\@babel\\helper-builder-binary-assignment-operator-visitor\\LICENSE" }, - "@babel/helper-compilation-targets@7.22.15": { + "@babel/helper-compilation-targets@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -250,7 +244,7 @@ "path": "\\node_modules\\@babel\\helper-compilation-targets", "licenseFile": "\\node_modules\\@babel\\helper-compilation-targets\\LICENSE" }, - "@babel/helper-create-class-features-plugin@7.23.5": { + "@babel/helper-create-class-features-plugin@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -258,7 +252,7 @@ "path": "\\node_modules\\@babel\\helper-create-class-features-plugin", "licenseFile": "\\node_modules\\@babel\\helper-create-class-features-plugin\\LICENSE" }, - "@babel/helper-create-regexp-features-plugin@7.22.15": { + "@babel/helper-create-regexp-features-plugin@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -266,13 +260,19 @@ "path": "\\node_modules\\@babel\\helper-create-regexp-features-plugin", "licenseFile": "\\node_modules\\@babel\\helper-create-regexp-features-plugin\\LICENSE" }, - "@babel/helper-define-polyfill-provider@0.4.3": { + "@babel/helper-define-polyfill-provider@0.5.0": { + "licenses": "MIT", + "repository": "https://github.com/babel/babel-polyfills", + "path": "\\node_modules\\babel-plugin-polyfill-corejs3\\node_modules\\@babel\\helper-define-polyfill-provider", + "licenseFile": "\\node_modules\\babel-plugin-polyfill-corejs3\\node_modules\\@babel\\helper-define-polyfill-provider\\LICENSE" + }, + "@babel/helper-define-polyfill-provider@0.6.2": { "licenses": "MIT", "repository": "https://github.com/babel/babel-polyfills", "path": "\\node_modules\\@babel\\helper-define-polyfill-provider", "licenseFile": "\\node_modules\\@babel\\helper-define-polyfill-provider\\LICENSE" }, - "@babel/helper-environment-visitor@7.22.20": { + "@babel/helper-environment-visitor@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -280,7 +280,7 @@ "path": "\\node_modules\\@babel\\helper-environment-visitor", "licenseFile": "\\node_modules\\@babel\\helper-environment-visitor\\LICENSE" }, - "@babel/helper-function-name@7.23.0": { + "@babel/helper-function-name@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -288,7 +288,7 @@ "path": "\\node_modules\\@babel\\helper-function-name", "licenseFile": "\\node_modules\\@babel\\helper-function-name\\LICENSE" }, - "@babel/helper-hoist-variables@7.22.5": { + "@babel/helper-hoist-variables@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -296,7 +296,7 @@ "path": "\\node_modules\\@babel\\helper-hoist-variables", "licenseFile": "\\node_modules\\@babel\\helper-hoist-variables\\LICENSE" }, - "@babel/helper-member-expression-to-functions@7.23.0": { + "@babel/helper-member-expression-to-functions@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -304,7 +304,7 @@ "path": "\\node_modules\\@babel\\helper-member-expression-to-functions", "licenseFile": "\\node_modules\\@babel\\helper-member-expression-to-functions\\LICENSE" }, - "@babel/helper-module-imports@7.22.15": { + "@babel/helper-module-imports@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -312,7 +312,7 @@ "path": "\\node_modules\\@babel\\helper-module-imports", "licenseFile": "\\node_modules\\@babel\\helper-module-imports\\LICENSE" }, - "@babel/helper-module-transforms@7.23.3": { + "@babel/helper-module-transforms@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -320,7 +320,7 @@ "path": "\\node_modules\\@babel\\helper-module-transforms", "licenseFile": "\\node_modules\\@babel\\helper-module-transforms\\LICENSE" }, - "@babel/helper-optimise-call-expression@7.22.5": { + "@babel/helper-optimise-call-expression@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -328,7 +328,7 @@ "path": "\\node_modules\\@babel\\helper-optimise-call-expression", "licenseFile": "\\node_modules\\@babel\\helper-optimise-call-expression\\LICENSE" }, - "@babel/helper-plugin-utils@7.22.5": { + "@babel/helper-plugin-utils@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -336,7 +336,7 @@ "path": "\\node_modules\\@babel\\helper-plugin-utils", "licenseFile": "\\node_modules\\@babel\\helper-plugin-utils\\LICENSE" }, - "@babel/helper-remap-async-to-generator@7.22.20": { + "@babel/helper-remap-async-to-generator@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -344,7 +344,7 @@ "path": "\\node_modules\\@babel\\helper-remap-async-to-generator", "licenseFile": "\\node_modules\\@babel\\helper-remap-async-to-generator\\LICENSE" }, - "@babel/helper-replace-supers@7.22.20": { + "@babel/helper-replace-supers@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -352,7 +352,7 @@ "path": "\\node_modules\\@babel\\helper-replace-supers", "licenseFile": "\\node_modules\\@babel\\helper-replace-supers\\LICENSE" }, - "@babel/helper-simple-access@7.22.5": { + "@babel/helper-simple-access@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -360,7 +360,7 @@ "path": "\\node_modules\\@babel\\helper-simple-access", "licenseFile": "\\node_modules\\@babel\\helper-simple-access\\LICENSE" }, - "@babel/helper-skip-transparent-expression-wrappers@7.22.5": { + "@babel/helper-skip-transparent-expression-wrappers@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -376,7 +376,15 @@ "path": "\\node_modules\\@babel\\helper-split-export-declaration", "licenseFile": "\\node_modules\\@babel\\helper-split-export-declaration\\LICENSE" }, - "@babel/helper-string-parser@7.23.4": { + "@babel/helper-split-export-declaration@7.24.7": { + "licenses": "MIT", + "repository": "https://github.com/babel/babel", + "publisher": "The Babel Team", + "url": "https://babel.dev/team", + "path": "\\node_modules\\@babel\\traverse\\node_modules\\@babel\\helper-split-export-declaration", + "licenseFile": "\\node_modules\\@babel\\traverse\\node_modules\\@babel\\helper-split-export-declaration\\LICENSE" + }, + "@babel/helper-string-parser@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -384,7 +392,7 @@ "path": "\\node_modules\\@babel\\helper-string-parser", "licenseFile": "\\node_modules\\@babel\\helper-string-parser\\LICENSE" }, - "@babel/helper-validator-identifier@7.22.20": { + "@babel/helper-validator-identifier@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -392,7 +400,7 @@ "path": "\\node_modules\\@babel\\helper-validator-identifier", "licenseFile": "\\node_modules\\@babel\\helper-validator-identifier\\LICENSE" }, - "@babel/helper-validator-option@7.23.5": { + "@babel/helper-validator-option@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -400,7 +408,7 @@ "path": "\\node_modules\\@babel\\helper-validator-option", "licenseFile": "\\node_modules\\@babel\\helper-validator-option\\LICENSE" }, - "@babel/helper-wrap-function@7.22.20": { + "@babel/helper-wrap-function@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -408,7 +416,7 @@ "path": "\\node_modules\\@babel\\helper-wrap-function", "licenseFile": "\\node_modules\\@babel\\helper-wrap-function\\LICENSE" }, - "@babel/helpers@7.23.5": { + "@babel/helpers@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -416,7 +424,7 @@ "path": "\\node_modules\\@babel\\helpers", "licenseFile": "\\node_modules\\@babel\\helpers\\LICENSE" }, - "@babel/highlight@7.23.4": { + "@babel/highlight@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -424,7 +432,7 @@ "path": "\\node_modules\\@babel\\highlight", "licenseFile": "\\node_modules\\@babel\\highlight\\LICENSE" }, - "@babel/parser@7.23.5": { + "@babel/parser@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -432,7 +440,15 @@ "path": "\\node_modules\\@babel\\parser", "licenseFile": "\\node_modules\\@babel\\parser\\LICENSE" }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3": { + "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.7": { + "licenses": "MIT", + "repository": "https://github.com/babel/babel", + "publisher": "The Babel Team", + "url": "https://babel.dev/team", + "path": "\\node_modules\\@babel\\plugin-bugfix-firefox-class-in-computed-class-key", + "licenseFile": "\\node_modules\\@babel\\plugin-bugfix-firefox-class-in-computed-class-key\\LICENSE" + }, + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -440,7 +456,7 @@ "path": "\\node_modules\\@babel\\plugin-bugfix-safari-id-destructuring-collision-in-function-expression", "licenseFile": "\\node_modules\\@babel\\plugin-bugfix-safari-id-destructuring-collision-in-function-expression\\LICENSE" }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3": { + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -448,7 +464,7 @@ "path": "\\node_modules\\@babel\\plugin-bugfix-v8-spread-parameters-in-optional-chaining", "licenseFile": "\\node_modules\\@babel\\plugin-bugfix-v8-spread-parameters-in-optional-chaining\\LICENSE" }, - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3": { + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -456,14 +472,6 @@ "path": "\\node_modules\\@babel\\plugin-bugfix-v8-static-class-fields-redefine-readonly", "licenseFile": "\\node_modules\\@babel\\plugin-bugfix-v8-static-class-fields-redefine-readonly\\LICENSE" }, - "@babel/plugin-proposal-async-generator-functions@7.20.7": { - "licenses": "MIT", - "repository": "https://github.com/babel/babel", - "publisher": "The Babel Team", - "url": "https://babel.dev/team", - "path": "\\node_modules\\@babel\\plugin-proposal-async-generator-functions", - "licenseFile": "\\node_modules\\@babel\\plugin-proposal-async-generator-functions\\LICENSE" - }, "@babel/plugin-proposal-private-methods@7.18.6": { "licenses": "MIT", "repository": "https://github.com/babel/babel", @@ -480,14 +488,6 @@ "path": "\\node_modules\\@babel\\plugin-proposal-private-property-in-object", "licenseFile": "\\node_modules\\@babel\\plugin-proposal-private-property-in-object\\LICENSE" }, - "@babel/plugin-proposal-unicode-property-regex@7.18.6": { - "licenses": "MIT", - "repository": "https://github.com/babel/babel", - "publisher": "The Babel Team", - "url": "https://babel.dev/team", - "path": "\\node_modules\\@babel\\plugin-proposal-unicode-property-regex", - "licenseFile": "\\node_modules\\@babel\\plugin-proposal-unicode-property-regex\\LICENSE" - }, "@babel/plugin-syntax-async-generators@7.8.4": { "licenses": "MIT", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators", @@ -520,7 +520,7 @@ "path": "\\node_modules\\@babel\\plugin-syntax-export-namespace-from", "licenseFile": "\\node_modules\\@babel\\plugin-syntax-export-namespace-from\\LICENSE" }, - "@babel/plugin-syntax-import-assertions@7.23.3": { + "@babel/plugin-syntax-import-assertions@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -528,7 +528,7 @@ "path": "\\node_modules\\@babel\\plugin-syntax-import-assertions", "licenseFile": "\\node_modules\\@babel\\plugin-syntax-import-assertions\\LICENSE" }, - "@babel/plugin-syntax-import-attributes@7.23.3": { + "@babel/plugin-syntax-import-attributes@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -608,7 +608,7 @@ "path": "\\node_modules\\@babel\\plugin-syntax-unicode-sets-regex", "licenseFile": "\\node_modules\\@babel\\plugin-syntax-unicode-sets-regex\\LICENSE" }, - "@babel/plugin-transform-arrow-functions@7.23.3": { + "@babel/plugin-transform-arrow-functions@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -616,7 +616,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-arrow-functions", "licenseFile": "\\node_modules\\@babel\\plugin-transform-arrow-functions\\LICENSE" }, - "@babel/plugin-transform-async-generator-functions@7.23.4": { + "@babel/plugin-transform-async-generator-functions@7.23.9": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -624,7 +624,15 @@ "path": "\\node_modules\\@babel\\plugin-transform-async-generator-functions", "licenseFile": "\\node_modules\\@babel\\plugin-transform-async-generator-functions\\LICENSE" }, - "@babel/plugin-transform-async-to-generator@7.22.5": { + "@babel/plugin-transform-async-generator-functions@7.24.7": { + "licenses": "MIT", + "repository": "https://github.com/babel/babel", + "publisher": "The Babel Team", + "url": "https://babel.dev/team", + "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@babel\\plugin-transform-async-generator-functions", + "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@babel\\plugin-transform-async-generator-functions\\LICENSE" + }, + "@babel/plugin-transform-async-to-generator@7.23.3": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -632,7 +640,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-async-to-generator", "licenseFile": "\\node_modules\\@babel\\plugin-transform-async-to-generator\\LICENSE" }, - "@babel/plugin-transform-async-to-generator@7.23.3": { + "@babel/plugin-transform-async-to-generator@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -640,7 +648,7 @@ "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@babel\\plugin-transform-async-to-generator", "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@babel\\plugin-transform-async-to-generator\\LICENSE" }, - "@babel/plugin-transform-block-scoped-functions@7.23.3": { + "@babel/plugin-transform-block-scoped-functions@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -648,7 +656,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-block-scoped-functions", "licenseFile": "\\node_modules\\@babel\\plugin-transform-block-scoped-functions\\LICENSE" }, - "@babel/plugin-transform-block-scoping@7.23.4": { + "@babel/plugin-transform-block-scoping@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -656,7 +664,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-block-scoping", "licenseFile": "\\node_modules\\@babel\\plugin-transform-block-scoping\\LICENSE" }, - "@babel/plugin-transform-class-properties@7.23.3": { + "@babel/plugin-transform-class-properties@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -664,7 +672,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-class-properties", "licenseFile": "\\node_modules\\@babel\\plugin-transform-class-properties\\LICENSE" }, - "@babel/plugin-transform-class-static-block@7.23.4": { + "@babel/plugin-transform-class-static-block@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -672,7 +680,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-class-static-block", "licenseFile": "\\node_modules\\@babel\\plugin-transform-class-static-block\\LICENSE" }, - "@babel/plugin-transform-classes@7.23.5": { + "@babel/plugin-transform-classes@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -680,7 +688,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-classes", "licenseFile": "\\node_modules\\@babel\\plugin-transform-classes\\LICENSE" }, - "@babel/plugin-transform-computed-properties@7.23.3": { + "@babel/plugin-transform-computed-properties@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -688,7 +696,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-computed-properties", "licenseFile": "\\node_modules\\@babel\\plugin-transform-computed-properties\\LICENSE" }, - "@babel/plugin-transform-destructuring@7.23.3": { + "@babel/plugin-transform-destructuring@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -696,7 +704,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-destructuring", "licenseFile": "\\node_modules\\@babel\\plugin-transform-destructuring\\LICENSE" }, - "@babel/plugin-transform-dotall-regex@7.23.3": { + "@babel/plugin-transform-dotall-regex@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -704,7 +712,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-dotall-regex", "licenseFile": "\\node_modules\\@babel\\plugin-transform-dotall-regex\\LICENSE" }, - "@babel/plugin-transform-duplicate-keys@7.23.3": { + "@babel/plugin-transform-duplicate-keys@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -712,7 +720,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-duplicate-keys", "licenseFile": "\\node_modules\\@babel\\plugin-transform-duplicate-keys\\LICENSE" }, - "@babel/plugin-transform-dynamic-import@7.23.4": { + "@babel/plugin-transform-dynamic-import@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -720,7 +728,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-dynamic-import", "licenseFile": "\\node_modules\\@babel\\plugin-transform-dynamic-import\\LICENSE" }, - "@babel/plugin-transform-exponentiation-operator@7.23.3": { + "@babel/plugin-transform-exponentiation-operator@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -728,7 +736,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-exponentiation-operator", "licenseFile": "\\node_modules\\@babel\\plugin-transform-exponentiation-operator\\LICENSE" }, - "@babel/plugin-transform-export-namespace-from@7.23.4": { + "@babel/plugin-transform-export-namespace-from@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -736,7 +744,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-export-namespace-from", "licenseFile": "\\node_modules\\@babel\\plugin-transform-export-namespace-from\\LICENSE" }, - "@babel/plugin-transform-for-of@7.23.3": { + "@babel/plugin-transform-for-of@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -744,7 +752,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-for-of", "licenseFile": "\\node_modules\\@babel\\plugin-transform-for-of\\LICENSE" }, - "@babel/plugin-transform-function-name@7.23.3": { + "@babel/plugin-transform-function-name@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -752,7 +760,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-function-name", "licenseFile": "\\node_modules\\@babel\\plugin-transform-function-name\\LICENSE" }, - "@babel/plugin-transform-json-strings@7.23.4": { + "@babel/plugin-transform-json-strings@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -760,7 +768,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-json-strings", "licenseFile": "\\node_modules\\@babel\\plugin-transform-json-strings\\LICENSE" }, - "@babel/plugin-transform-literals@7.23.3": { + "@babel/plugin-transform-literals@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -768,7 +776,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-literals", "licenseFile": "\\node_modules\\@babel\\plugin-transform-literals\\LICENSE" }, - "@babel/plugin-transform-logical-assignment-operators@7.23.4": { + "@babel/plugin-transform-logical-assignment-operators@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -776,7 +784,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-logical-assignment-operators", "licenseFile": "\\node_modules\\@babel\\plugin-transform-logical-assignment-operators\\LICENSE" }, - "@babel/plugin-transform-member-expression-literals@7.23.3": { + "@babel/plugin-transform-member-expression-literals@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -784,7 +792,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-member-expression-literals", "licenseFile": "\\node_modules\\@babel\\plugin-transform-member-expression-literals\\LICENSE" }, - "@babel/plugin-transform-modules-amd@7.23.3": { + "@babel/plugin-transform-modules-amd@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -792,7 +800,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-modules-amd", "licenseFile": "\\node_modules\\@babel\\plugin-transform-modules-amd\\LICENSE" }, - "@babel/plugin-transform-modules-commonjs@7.23.3": { + "@babel/plugin-transform-modules-commonjs@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -800,7 +808,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-modules-commonjs", "licenseFile": "\\node_modules\\@babel\\plugin-transform-modules-commonjs\\LICENSE" }, - "@babel/plugin-transform-modules-systemjs@7.23.3": { + "@babel/plugin-transform-modules-systemjs@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -808,7 +816,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-modules-systemjs", "licenseFile": "\\node_modules\\@babel\\plugin-transform-modules-systemjs\\LICENSE" }, - "@babel/plugin-transform-modules-umd@7.23.3": { + "@babel/plugin-transform-modules-umd@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -816,7 +824,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-modules-umd", "licenseFile": "\\node_modules\\@babel\\plugin-transform-modules-umd\\LICENSE" }, - "@babel/plugin-transform-named-capturing-groups-regex@7.22.5": { + "@babel/plugin-transform-named-capturing-groups-regex@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -824,7 +832,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-named-capturing-groups-regex", "licenseFile": "\\node_modules\\@babel\\plugin-transform-named-capturing-groups-regex\\LICENSE" }, - "@babel/plugin-transform-new-target@7.23.3": { + "@babel/plugin-transform-new-target@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -832,7 +840,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-new-target", "licenseFile": "\\node_modules\\@babel\\plugin-transform-new-target\\LICENSE" }, - "@babel/plugin-transform-nullish-coalescing-operator@7.23.4": { + "@babel/plugin-transform-nullish-coalescing-operator@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -840,7 +848,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-nullish-coalescing-operator", "licenseFile": "\\node_modules\\@babel\\plugin-transform-nullish-coalescing-operator\\LICENSE" }, - "@babel/plugin-transform-numeric-separator@7.23.4": { + "@babel/plugin-transform-numeric-separator@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -848,7 +856,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-numeric-separator", "licenseFile": "\\node_modules\\@babel\\plugin-transform-numeric-separator\\LICENSE" }, - "@babel/plugin-transform-object-rest-spread@7.23.4": { + "@babel/plugin-transform-object-rest-spread@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -856,7 +864,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-object-rest-spread", "licenseFile": "\\node_modules\\@babel\\plugin-transform-object-rest-spread\\LICENSE" }, - "@babel/plugin-transform-object-super@7.23.3": { + "@babel/plugin-transform-object-super@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -864,7 +872,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-object-super", "licenseFile": "\\node_modules\\@babel\\plugin-transform-object-super\\LICENSE" }, - "@babel/plugin-transform-optional-catch-binding@7.23.4": { + "@babel/plugin-transform-optional-catch-binding@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -872,7 +880,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-optional-catch-binding", "licenseFile": "\\node_modules\\@babel\\plugin-transform-optional-catch-binding\\LICENSE" }, - "@babel/plugin-transform-optional-chaining@7.23.4": { + "@babel/plugin-transform-optional-chaining@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -880,7 +888,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-optional-chaining", "licenseFile": "\\node_modules\\@babel\\plugin-transform-optional-chaining\\LICENSE" }, - "@babel/plugin-transform-parameters@7.23.3": { + "@babel/plugin-transform-parameters@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -888,7 +896,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-parameters", "licenseFile": "\\node_modules\\@babel\\plugin-transform-parameters\\LICENSE" }, - "@babel/plugin-transform-private-methods@7.23.3": { + "@babel/plugin-transform-private-methods@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -896,7 +904,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-private-methods", "licenseFile": "\\node_modules\\@babel\\plugin-transform-private-methods\\LICENSE" }, - "@babel/plugin-transform-private-property-in-object@7.23.4": { + "@babel/plugin-transform-private-property-in-object@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -904,7 +912,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-private-property-in-object", "licenseFile": "\\node_modules\\@babel\\plugin-transform-private-property-in-object\\LICENSE" }, - "@babel/plugin-transform-property-literals@7.23.3": { + "@babel/plugin-transform-property-literals@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -912,7 +920,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-property-literals", "licenseFile": "\\node_modules\\@babel\\plugin-transform-property-literals\\LICENSE" }, - "@babel/plugin-transform-regenerator@7.23.3": { + "@babel/plugin-transform-regenerator@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -920,7 +928,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-regenerator", "licenseFile": "\\node_modules\\@babel\\plugin-transform-regenerator\\LICENSE" }, - "@babel/plugin-transform-reserved-words@7.23.3": { + "@babel/plugin-transform-reserved-words@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -928,7 +936,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-reserved-words", "licenseFile": "\\node_modules\\@babel\\plugin-transform-reserved-words\\LICENSE" }, - "@babel/plugin-transform-runtime@7.22.9": { + "@babel/plugin-transform-runtime@7.24.0": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -936,7 +944,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-runtime", "licenseFile": "\\node_modules\\@babel\\plugin-transform-runtime\\LICENSE" }, - "@babel/plugin-transform-shorthand-properties@7.23.3": { + "@babel/plugin-transform-shorthand-properties@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -944,7 +952,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-shorthand-properties", "licenseFile": "\\node_modules\\@babel\\plugin-transform-shorthand-properties\\LICENSE" }, - "@babel/plugin-transform-spread@7.23.3": { + "@babel/plugin-transform-spread@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -952,7 +960,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-spread", "licenseFile": "\\node_modules\\@babel\\plugin-transform-spread\\LICENSE" }, - "@babel/plugin-transform-sticky-regex@7.23.3": { + "@babel/plugin-transform-sticky-regex@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -960,7 +968,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-sticky-regex", "licenseFile": "\\node_modules\\@babel\\plugin-transform-sticky-regex\\LICENSE" }, - "@babel/plugin-transform-template-literals@7.23.3": { + "@babel/plugin-transform-template-literals@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -968,7 +976,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-template-literals", "licenseFile": "\\node_modules\\@babel\\plugin-transform-template-literals\\LICENSE" }, - "@babel/plugin-transform-typeof-symbol@7.23.3": { + "@babel/plugin-transform-typeof-symbol@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -976,7 +984,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-typeof-symbol", "licenseFile": "\\node_modules\\@babel\\plugin-transform-typeof-symbol\\LICENSE" }, - "@babel/plugin-transform-unicode-escapes@7.23.3": { + "@babel/plugin-transform-unicode-escapes@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -984,7 +992,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-unicode-escapes", "licenseFile": "\\node_modules\\@babel\\plugin-transform-unicode-escapes\\LICENSE" }, - "@babel/plugin-transform-unicode-property-regex@7.23.3": { + "@babel/plugin-transform-unicode-property-regex@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -992,7 +1000,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-unicode-property-regex", "licenseFile": "\\node_modules\\@babel\\plugin-transform-unicode-property-regex\\LICENSE" }, - "@babel/plugin-transform-unicode-regex@7.23.3": { + "@babel/plugin-transform-unicode-regex@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -1000,7 +1008,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-unicode-regex", "licenseFile": "\\node_modules\\@babel\\plugin-transform-unicode-regex\\LICENSE" }, - "@babel/plugin-transform-unicode-sets-regex@7.23.3": { + "@babel/plugin-transform-unicode-sets-regex@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -1008,7 +1016,7 @@ "path": "\\node_modules\\@babel\\plugin-transform-unicode-sets-regex", "licenseFile": "\\node_modules\\@babel\\plugin-transform-unicode-sets-regex\\LICENSE" }, - "@babel/preset-env@7.22.9": { + "@babel/preset-env@7.24.0": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -1016,7 +1024,7 @@ "path": "\\node_modules\\@babel\\preset-env", "licenseFile": "\\node_modules\\@babel\\preset-env\\LICENSE" }, - "@babel/preset-env@7.23.5": { + "@babel/preset-env@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -1024,18 +1032,12 @@ "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@babel\\preset-env", "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@babel\\preset-env\\LICENSE" }, - "@babel/preset-modules@0.1.6": { + "@babel/preset-modules@0.1.6-no-external-plugins": { "licenses": "MIT", "repository": "https://github.com/babel/preset-modules", "path": "\\node_modules\\@babel\\preset-modules", "licenseFile": "\\node_modules\\@babel\\preset-modules\\LICENSE" }, - "@babel/preset-modules@0.1.6-no-external-plugins": { - "licenses": "MIT", - "repository": "https://github.com/babel/preset-modules", - "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@babel\\preset-modules", - "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\@babel\\preset-modules\\LICENSE" - }, "@babel/regjsgen@0.8.0": { "licenses": "MIT", "repository": "https://github.com/bnjmnt4n/regjsgen", @@ -1044,7 +1046,7 @@ "path": "\\node_modules\\@babel\\regjsgen", "licenseFile": "\\node_modules\\@babel\\regjsgen\\LICENSE-MIT.txt" }, - "@babel/runtime@7.22.6": { + "@babel/runtime@7.24.0": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -1052,23 +1054,7 @@ "path": "\\node_modules\\@babel\\runtime", "licenseFile": "\\node_modules\\@babel\\runtime\\LICENSE" }, - "@babel/runtime@7.23.5": { - "licenses": "MIT", - "repository": "https://github.com/babel/babel", - "publisher": "The Babel Team", - "url": "https://babel.dev/team", - "path": "\\node_modules\\i18next\\node_modules\\@babel\\runtime", - "licenseFile": "\\node_modules\\i18next\\node_modules\\@babel\\runtime\\LICENSE" - }, - "@babel/template@7.22.15": { - "licenses": "MIT", - "repository": "https://github.com/babel/babel", - "publisher": "The Babel Team", - "url": "https://babel.dev/team", - "path": "\\node_modules\\@babel\\helper-function-name\\node_modules\\@babel\\template", - "licenseFile": "\\node_modules\\@babel\\helper-function-name\\node_modules\\@babel\\template\\LICENSE" - }, - "@babel/template@7.22.5": { + "@babel/template@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -1076,7 +1062,7 @@ "path": "\\node_modules\\@babel\\template", "licenseFile": "\\node_modules\\@babel\\template\\LICENSE" }, - "@babel/traverse@7.23.5": { + "@babel/traverse@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -1084,7 +1070,7 @@ "path": "\\node_modules\\@babel\\traverse", "licenseFile": "\\node_modules\\@babel\\traverse\\LICENSE" }, - "@babel/types@7.23.5": { + "@babel/types@7.24.7": { "licenses": "MIT", "repository": "https://github.com/babel/babel", "publisher": "The Babel Team", @@ -1100,14 +1086,14 @@ "licenseFile": "\\node_modules\\@cds\\city\\LICENSE", "noticeFile": "\\node_modules\\@cds\\city\\NOTICE.md" }, - "@cds/core@6.9.0": { + "@cds/core@6.12.0": { "licenses": "MIT", "repository": "https://github.com/vmware-clarity/core", "publisher": "clarity", "path": "\\node_modules\\@cds\\core", "licenseFile": "\\node_modules\\@cds\\core\\README.md" }, - "@cesium/engine@6.1.0": { + "@cesium/engine@10.0.0": { "licenses": "Apache-2.0", "repository": "https://github.com/CesiumGS/cesium", "publisher": "Cesium GS, Inc.", @@ -1115,7 +1101,7 @@ "path": "\\node_modules\\@cesium\\engine", "licenseFile": "\\node_modules\\@cesium\\engine\\LICENSE.md" }, - "@cesium/widgets@4.3.0": { + "@cesium/widgets@7.0.0": { "licenses": "Apache-2.0", "repository": "https://github.com/CesiumGS/cesium", "publisher": "Cesium GS, Inc.", @@ -1123,7 +1109,7 @@ "path": "\\node_modules\\@cesium\\widgets", "licenseFile": "\\node_modules\\@cesium\\widgets\\LICENSE.md" }, - "@clr/angular@15.13.0": { + "@clr/angular@17.2.1": { "licenses": "MIT", "repository": "https://github.com/vmware-clarity/ng-clarity", "publisher": "Clarity Design System", @@ -1137,7 +1123,7 @@ "path": "\\node_modules\\@clr\\icons", "licenseFile": "\\node_modules\\@clr\\icons\\README.md" }, - "@clr/ui@15.13.0": { + "@clr/ui@17.2.1": { "licenses": "MIT", "repository": "https://github.com/vmware-clarity/ng-clarity", "publisher": "Clarity Design System", @@ -1151,7 +1137,7 @@ "path": "\\node_modules\\@colors\\colors", "licenseFile": "\\node_modules\\@colors\\colors\\LICENSE" }, - "@compodoc/compodoc@1.1.23": { + "@compodoc/compodoc@1.1.24": { "licenses": "MIT", "repository": "https://github.com/compodoc/compodoc", "publisher": "Vindent Ogloblinsky", @@ -1187,134 +1173,134 @@ "path": "\\node_modules\\@discoveryjs\\json-ext", "licenseFile": "\\node_modules\\@discoveryjs\\json-ext\\LICENSE" }, - "@dlr-eoc/base-layers-raster@12.0.1-next.4": { + "@dlr-eoc/base-layers-raster@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\base-layers-raster", "licenseFile": "\\node_modules\\@dlr-eoc\\base-layers-raster\\README.md" }, - "@dlr-eoc/cookie-alert@12.0.1-next.4": { + "@dlr-eoc/cookie-alert@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\cookie-alert", "licenseFile": "\\node_modules\\@dlr-eoc\\cookie-alert\\README.md" }, - "@dlr-eoc/core-ui@12.0.1-next.4": { + "@dlr-eoc/core-ui@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\core-ui", "licenseFile": "\\node_modules\\@dlr-eoc\\core-ui\\README.md" }, - "@dlr-eoc/layer-control@12.0.1-next.4": { + "@dlr-eoc/layer-control@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\layer-control", "licenseFile": "\\node_modules\\@dlr-eoc\\layer-control\\README.md" }, - "@dlr-eoc/map-cesium@12.0.1-next.4": { + "@dlr-eoc/map-cesium@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\map-cesium", "licenseFile": "\\node_modules\\@dlr-eoc\\map-cesium\\README.md" }, - "@dlr-eoc/map-maplibre@12.0.1-next.4": { + "@dlr-eoc/map-maplibre@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\map-maplibre", "licenseFile": "\\node_modules\\@dlr-eoc\\map-maplibre\\README.md" }, - "@dlr-eoc/map-ol@12.0.1-next.4": { + "@dlr-eoc/map-ol@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\map-ol", "licenseFile": "\\node_modules\\@dlr-eoc\\map-ol\\README.md" }, - "@dlr-eoc/map-three@12.0.1-next.4": { + "@dlr-eoc/map-three@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\map-three", "licenseFile": "\\node_modules\\@dlr-eoc\\map-three\\README.md" }, - "@dlr-eoc/map-tools@12.0.1-next.4": { + "@dlr-eoc/map-tools@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\map-tools", "licenseFile": "\\node_modules\\@dlr-eoc\\map-tools\\README.md" }, - "@dlr-eoc/services-layers@12.0.1-next.4": { + "@dlr-eoc/services-layers@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\services-layers", "licenseFile": "\\node_modules\\@dlr-eoc\\services-layers\\README.md" }, - "@dlr-eoc/services-map-state@12.0.1-next.4": { + "@dlr-eoc/services-map-state@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\services-map-state", "licenseFile": "\\node_modules\\@dlr-eoc\\services-map-state\\README.md" }, - "@dlr-eoc/services-ogc@12.0.1-next.4": { + "@dlr-eoc/services-ogc@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\services-ogc", "licenseFile": "\\node_modules\\@dlr-eoc\\services-ogc\\README.md" }, - "@dlr-eoc/services-util-store@12.0.1-next.4": { + "@dlr-eoc/services-util-store@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\services-util-store", "licenseFile": "\\node_modules\\@dlr-eoc\\services-util-store\\README.md" }, - "@dlr-eoc/shared-assets@12.0.1-next.4": { + "@dlr-eoc/shared-assets@14.0.0-next.0": { "licenses": "UNLICENSED", "private": true, "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\shared-assets", "licenseFile": "\\node_modules\\@dlr-eoc\\shared-assets\\README.md" }, - "@dlr-eoc/user-info@12.0.1-next.4": { + "@dlr-eoc/user-info@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\user-info", "licenseFile": "\\node_modules\\@dlr-eoc\\user-info\\README.md" }, - "@dlr-eoc/utilities@12.0.1-next.4": { + "@dlr-eoc/utilities@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\utilities", "licenseFile": "\\node_modules\\@dlr-eoc\\utilities\\README.md" }, - "@dlr-eoc/utils-browser@12.0.1-next.4": { + "@dlr-eoc/utils-browser@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\utils-browser", "licenseFile": "\\node_modules\\@dlr-eoc\\utils-browser\\README.md" }, - "@dlr-eoc/utils-maps@12.0.1-next.4": { + "@dlr-eoc/utils-maps@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\utils-maps", "licenseFile": "\\node_modules\\@dlr-eoc\\utils-maps\\README.md" }, - "@dlr-eoc/utils-ogc@12.0.1-next.4": { + "@dlr-eoc/utils-ogc@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\@dlr-eoc\\utils-ogc", "licenseFile": "\\node_modules\\@dlr-eoc\\utils-ogc\\README.md" }, - "@esbuild/win32-x64@0.18.17": { + "@esbuild/win32-x64@0.19.12": { "licenses": "MIT", "repository": "https://github.com/evanw/esbuild", - "path": "\\node_modules\\@esbuild\\win32-x64", - "licenseFile": "\\node_modules\\@esbuild\\win32-x64\\README.md" + "path": "\\node_modules\\vite\\node_modules\\@esbuild\\win32-x64", + "licenseFile": "\\node_modules\\vite\\node_modules\\@esbuild\\win32-x64\\README.md" }, - "@esbuild/win32-x64@0.19.8": { + "@esbuild/win32-x64@0.20.1": { "licenses": "MIT", "repository": "https://github.com/evanw/esbuild", - "path": "\\node_modules\\ng-packagr\\node_modules\\@esbuild\\win32-x64", - "licenseFile": "\\node_modules\\ng-packagr\\node_modules\\@esbuild\\win32-x64\\README.md" + "path": "\\node_modules\\@esbuild\\win32-x64", + "licenseFile": "\\node_modules\\@esbuild\\win32-x64\\README.md" }, - "@foliojs-fork/fontkit@1.9.1": { + "@foliojs-fork/fontkit@1.9.2": { "licenses": "MIT", "repository": "https://github.com/foliojs-fork/fontkit", "publisher": "Devon Govett", @@ -1322,7 +1308,7 @@ "path": "\\node_modules\\@foliojs-fork\\fontkit", "licenseFile": "\\node_modules\\@foliojs-fork\\fontkit\\README.md" }, - "@foliojs-fork/linebreak@1.1.1": { + "@foliojs-fork/linebreak@1.1.2": { "licenses": "MIT", "repository": "https://github.com/foliojs-fork/linebreaker", "publisher": "Devon Govett", @@ -1363,14 +1349,6 @@ "path": "\\node_modules\\@fontsource\\noto-sans", "licenseFile": "\\node_modules\\@fontsource\\noto-sans\\README.md" }, - "@gar/promisify@1.1.3": { - "licenses": "MIT", - "repository": "https://github.com/wraithgar/gar-promisify", - "publisher": "Gar", - "email": "gar+npm@danger.computer", - "path": "\\node_modules\\@gar\\promisify", - "licenseFile": "\\node_modules\\@gar\\promisify\\LICENSE.md" - }, "@isaacs/cliui@8.0.2": { "licenses": "ISC", "repository": "https://github.com/yargs/cliui", @@ -1392,7 +1370,7 @@ "path": "\\node_modules\\@istanbuljs\\schema", "licenseFile": "\\node_modules\\@istanbuljs\\schema\\LICENSE" }, - "@jridgewell/gen-mapping@0.3.3": { + "@jridgewell/gen-mapping@0.3.5": { "licenses": "MIT", "repository": "https://github.com/jridgewell/gen-mapping", "publisher": "Justin Ridgewell", @@ -1408,7 +1386,7 @@ "path": "\\node_modules\\@jridgewell\\resolve-uri", "licenseFile": "\\node_modules\\@jridgewell\\resolve-uri\\LICENSE" }, - "@jridgewell/set-array@1.1.2": { + "@jridgewell/set-array@1.2.1": { "licenses": "MIT", "repository": "https://github.com/jridgewell/set-array", "publisher": "Justin Ridgewell", @@ -1431,7 +1409,7 @@ "path": "\\node_modules\\@jridgewell\\sourcemap-codec", "licenseFile": "\\node_modules\\@jridgewell\\sourcemap-codec\\LICENSE" }, - "@jridgewell/trace-mapping@0.3.20": { + "@jridgewell/trace-mapping@0.3.25": { "licenses": "MIT", "repository": "https://github.com/jridgewell/trace-mapping", "publisher": "Justin Ridgewell", @@ -1439,7 +1417,7 @@ "path": "\\node_modules\\@jridgewell\\trace-mapping", "licenseFile": "\\node_modules\\@jridgewell\\trace-mapping\\LICENSE" }, - "@leichtgewicht/ip-codec@2.0.4": { + "@leichtgewicht/ip-codec@2.0.5": { "licenses": "MIT", "repository": "https://github.com/martinheidegger/ip-codec", "publisher": "Martin Heidegger", @@ -1460,6 +1438,15 @@ "path": "\\node_modules\\@lit\\reactive-element", "licenseFile": "\\node_modules\\@lit\\reactive-element\\LICENSE" }, + "@ljharb/through@2.3.13": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/through", + "publisher": "Dominic Tarr", + "email": "dominic.tarr@gmail.com", + "url": "dominictarr.com", + "path": "\\node_modules\\@ljharb\\through", + "licenseFile": "\\node_modules\\@ljharb\\through\\LICENSE" + }, "@mapbox/geojson-rewind@0.5.2": { "licenses": "ISC", "repository": "https://github.com/mapbox/geojson-rewind", @@ -1544,12 +1531,12 @@ "path": "\\node_modules\\@michaellangbein\\jsonix", "licenseFile": "\\node_modules\\@michaellangbein\\jsonix\\README.md" }, - "@ngtools/webpack@16.2.10": { + "@ngtools/webpack@17.3.8": { "licenses": "MIT", "repository": "https://github.com/angular/angular-cli", "publisher": "Angular Authors", - "path": "\\node_modules\\@angular-devkit\\build-angular\\node_modules\\@ngtools\\webpack", - "licenseFile": "\\node_modules\\@angular-devkit\\build-angular\\node_modules\\@ngtools\\webpack\\LICENSE" + "path": "\\node_modules\\@ngtools\\webpack", + "licenseFile": "\\node_modules\\@ngtools\\webpack\\LICENSE" }, "@nodelib/fs.scandir@2.1.5": { "licenses": "MIT", @@ -1569,41 +1556,34 @@ "path": "\\node_modules\\@nodelib\\fs.walk", "licenseFile": "\\node_modules\\@nodelib\\fs.walk\\LICENSE" }, - "@npmcli/fs@2.1.2": { + "@npmcli/agent@2.2.2": { "licenses": "ISC", - "repository": "https://github.com/npm/fs", + "repository": "https://github.com/npm/agent", "publisher": "GitHub Inc.", - "path": "\\node_modules\\make-fetch-happen\\node_modules\\@npmcli\\fs", - "licenseFile": "\\node_modules\\make-fetch-happen\\node_modules\\@npmcli\\fs\\LICENSE.md" + "path": "\\node_modules\\@npmcli\\agent", + "licenseFile": "\\node_modules\\@npmcli\\agent\\README.md" }, - "@npmcli/fs@3.1.0": { + "@npmcli/fs@3.1.1": { "licenses": "ISC", "repository": "https://github.com/npm/fs", "publisher": "GitHub Inc.", "path": "\\node_modules\\@npmcli\\fs", "licenseFile": "\\node_modules\\@npmcli\\fs\\LICENSE.md" }, - "@npmcli/git@4.1.0": { + "@npmcli/git@5.0.8": { "licenses": "ISC", "repository": "https://github.com/npm/git", "publisher": "GitHub Inc.", "path": "\\node_modules\\@npmcli\\git", "licenseFile": "\\node_modules\\@npmcli\\git\\LICENSE" }, - "@npmcli/installed-package-contents@2.0.2": { + "@npmcli/installed-package-contents@2.1.0": { "licenses": "ISC", "repository": "https://github.com/npm/installed-package-contents", "publisher": "GitHub Inc.", "path": "\\node_modules\\@npmcli\\installed-package-contents", "licenseFile": "\\node_modules\\@npmcli\\installed-package-contents\\LICENSE" }, - "@npmcli/move-file@2.0.1": { - "licenses": "MIT", - "repository": "https://github.com/npm/move-file", - "publisher": "GitHub Inc.", - "path": "\\node_modules\\@npmcli\\move-file", - "licenseFile": "\\node_modules\\@npmcli\\move-file\\LICENSE.md" - }, "@npmcli/node-gyp@3.0.0": { "licenses": "ISC", "repository": "https://github.com/npm/node-gyp", @@ -1611,14 +1591,28 @@ "path": "\\node_modules\\@npmcli\\node-gyp", "licenseFile": "\\node_modules\\@npmcli\\node-gyp\\README.md" }, - "@npmcli/promise-spawn@6.0.2": { + "@npmcli/package-json@5.2.0": { + "licenses": "ISC", + "repository": "https://github.com/npm/package-json", + "publisher": "GitHub Inc.", + "path": "\\node_modules\\@npmcli\\package-json", + "licenseFile": "\\node_modules\\@npmcli\\package-json\\LICENSE" + }, + "@npmcli/promise-spawn@7.0.2": { "licenses": "ISC", "repository": "https://github.com/npm/promise-spawn", "publisher": "GitHub Inc.", "path": "\\node_modules\\@npmcli\\promise-spawn", "licenseFile": "\\node_modules\\@npmcli\\promise-spawn\\LICENSE" }, - "@npmcli/run-script@6.0.2": { + "@npmcli/redact@1.1.0": { + "licenses": "ISC", + "repository": "https://github.com/npm/redact", + "publisher": "GitHub Inc.", + "path": "\\node_modules\\@npmcli\\redact", + "licenseFile": "\\node_modules\\@npmcli\\redact\\LICENSE" + }, + "@npmcli/run-script@7.0.4": { "licenses": "ISC", "repository": "https://github.com/npm/run-script", "publisher": "GitHub Inc.", @@ -1720,12 +1714,12 @@ "path": "\\node_modules\\@protobufjs\\utf8", "licenseFile": "\\node_modules\\@protobufjs\\utf8\\LICENSE" }, - "@rollup/plugin-json@6.0.1": { + "@rollup/plugin-json@6.1.0": { "licenses": "MIT", "repository": "https://github.com/rollup/plugins", "publisher": "rollup", "path": "\\node_modules\\@rollup\\plugin-json", - "licenseFile": "\\node_modules\\@rollup\\plugin-json\\README.md" + "licenseFile": "\\node_modules\\@rollup\\plugin-json\\LICENSE" }, "@rollup/plugin-node-resolve@15.2.3": { "licenses": "MIT", @@ -1743,41 +1737,69 @@ "path": "\\node_modules\\@rollup\\pluginutils", "licenseFile": "\\node_modules\\@rollup\\pluginutils\\LICENSE" }, - "@schematics/angular@16.2.10": { + "@rollup/rollup-win32-x64-msvc@4.18.1": { + "licenses": "MIT", + "repository": "https://github.com/rollup/rollup", + "publisher": "Lukas Taegert-Atkinson", + "path": "\\node_modules\\@rollup\\rollup-win32-x64-msvc", + "licenseFile": "\\node_modules\\@rollup\\rollup-win32-x64-msvc\\README.md" + }, + "@rollup/wasm-node@4.18.1": { + "licenses": "MIT", + "repository": "https://github.com/rollup/rollup", + "publisher": "Rich Harris", + "path": "\\node_modules\\@rollup\\wasm-node", + "licenseFile": "\\node_modules\\@rollup\\wasm-node\\LICENSE.md" + }, + "@schematics/angular@17.3.8": { "licenses": "MIT", "repository": "https://github.com/angular/angular-cli", "publisher": "Angular Authors", "path": "\\node_modules\\@schematics\\angular", "licenseFile": "\\node_modules\\@schematics\\angular\\LICENSE" }, - "@sigstore/bundle@1.1.0": { + "@sigstore/bundle@2.3.2": { "licenses": "Apache-2.0", "repository": "https://github.com/sigstore/sigstore-js", "publisher": "bdehamer@github.com", "path": "\\node_modules\\@sigstore\\bundle", "licenseFile": "\\node_modules\\@sigstore\\bundle\\LICENSE" }, - "@sigstore/protobuf-specs@0.2.1": { + "@sigstore/core@1.1.0": { + "licenses": "Apache-2.0", + "repository": "https://github.com/sigstore/sigstore-js", + "publisher": "bdehamer@github.com", + "path": "\\node_modules\\@sigstore\\core", + "licenseFile": "\\node_modules\\@sigstore\\core\\LICENSE" + }, + "@sigstore/protobuf-specs@0.3.2": { "licenses": "Apache-2.0", "repository": "https://github.com/sigstore/protobuf-specs", "publisher": "bdehamer@github.com", "path": "\\node_modules\\@sigstore\\protobuf-specs", "licenseFile": "\\node_modules\\@sigstore\\protobuf-specs\\LICENSE" }, - "@sigstore/sign@1.0.0": { + "@sigstore/sign@2.3.2": { "licenses": "Apache-2.0", "repository": "https://github.com/sigstore/sigstore-js", "publisher": "bdehamer@github.com", "path": "\\node_modules\\@sigstore\\sign", "licenseFile": "\\node_modules\\@sigstore\\sign\\LICENSE" }, - "@sigstore/tuf@1.0.3": { + "@sigstore/tuf@2.3.4": { "licenses": "Apache-2.0", "repository": "https://github.com/sigstore/sigstore-js", "publisher": "bdehamer@github.com", "path": "\\node_modules\\@sigstore\\tuf", "licenseFile": "\\node_modules\\@sigstore\\tuf\\LICENSE" }, + "@sigstore/verify@1.2.1": { + "licenses": "Apache-2.0", + "repository": "https://github.com/sigstore/sigstore-js", + "publisher": "bdehamer@github.com", + "path": "\\node_modules\\@sigstore\\verify", + "licenseFile": "\\node_modules\\@sigstore\\verify\\README.md" + }, "@socket.io/component-emitter@3.1.0": { "licenses": "MIT", "repository": "https://github.com/socketio/emitter", @@ -1798,45 +1820,28 @@ "path": "\\node_modules\\@thednp\\shorty", "licenseFile": "\\node_modules\\@thednp\\shorty\\LICENSE" }, - "@tootallnate/once@1.1.2": { - "licenses": "MIT", - "repository": "https://github.com/TooTallNate/once", - "publisher": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": "http://n8.io/", - "path": "\\node_modules\\@tootallnate\\once" - }, - "@tootallnate/once@2.0.0": { - "licenses": "MIT", - "repository": "https://github.com/TooTallNate/once", - "publisher": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": "http://n8.io/", - "path": "\\node_modules\\tuf-js\\node_modules\\@tootallnate\\once", - "licenseFile": "\\node_modules\\tuf-js\\node_modules\\@tootallnate\\once\\LICENSE" - }, - "@ts-morph/common@0.21.0": { + "@ts-morph/common@0.23.0": { "licenses": "MIT", "repository": "https://github.com/dsherret/ts-morph", "publisher": "David Sherret", "path": "\\node_modules\\@ts-morph\\common", "licenseFile": "\\node_modules\\@ts-morph\\common\\LICENSE" }, - "@tufjs/canonical-json@1.0.0": { + "@tufjs/canonical-json@2.0.0": { "licenses": "MIT", "repository": "https://github.com/theupdateframework/tuf-js", "publisher": "bdehamer@github.com", "path": "\\node_modules\\@tufjs\\canonical-json", "licenseFile": "\\node_modules\\@tufjs\\canonical-json\\LICENSE" }, - "@tufjs/models@1.0.4": { + "@tufjs/models@2.0.1": { "licenses": "MIT", "repository": "https://github.com/theupdateframework/tuf-js", "publisher": "bdehamer@github.com", "path": "\\node_modules\\@tufjs\\models", "licenseFile": "\\node_modules\\@tufjs\\models\\LICENSE" }, - "@tweenjs/tween.js@21.0.0": { + "@tweenjs/tween.js@23.1.2": { "licenses": "MIT", "repository": "https://github.com/tweenjs/tween.js", "publisher": "tween.js contributors", @@ -1904,7 +1909,7 @@ "path": "\\node_modules\\@types\\estree", "licenseFile": "\\node_modules\\@types\\estree\\LICENSE" }, - "@types/express-serve-static-core@4.17.41": { + "@types/express-serve-static-core@4.19.5": { "licenses": "MIT", "repository": "https://github.com/DefinitelyTyped/DefinitelyTyped", "path": "\\node_modules\\@types\\express-serve-static-core", @@ -1988,13 +1993,13 @@ "path": "\\node_modules\\@types\\minimatch", "licenseFile": "\\node_modules\\@types\\minimatch\\LICENSE" }, - "@types/node-forge@1.3.10": { + "@types/node-forge@1.3.11": { "licenses": "MIT", "repository": "https://github.com/DefinitelyTyped/DefinitelyTyped", "path": "\\node_modules\\@types\\node-forge", "licenseFile": "\\node_modules\\@types\\node-forge\\LICENSE" }, - "@types/node@20.10.1": { + "@types/node@20.14.10": { "licenses": "MIT", "repository": "https://github.com/DefinitelyTyped/DefinitelyTyped", "path": "\\node_modules\\@types\\node", @@ -2026,7 +2031,7 @@ "path": "\\node_modules\\@types\\q", "licenseFile": "\\node_modules\\@types\\q\\README.md" }, - "@types/qs@6.9.10": { + "@types/qs@6.9.15": { "licenses": "MIT", "repository": "https://github.com/DefinitelyTyped/DefinitelyTyped", "path": "\\node_modules\\@types\\qs", @@ -2068,7 +2073,7 @@ "path": "\\node_modules\\@types\\serve-index", "licenseFile": "\\node_modules\\@types\\serve-index\\LICENSE" }, - "@types/serve-static@1.15.5": { + "@types/serve-static@1.15.7": { "licenses": "MIT", "repository": "https://github.com/DefinitelyTyped/DefinitelyTyped", "path": "\\node_modules\\@types\\serve-static", @@ -2104,7 +2109,7 @@ "path": "\\node_modules\\@types\\ws", "licenseFile": "\\node_modules\\@types\\ws\\LICENSE" }, - "@vitejs/plugin-basic-ssl@1.0.1": { + "@vitejs/plugin-basic-ssl@1.1.0": { "licenses": "MIT", "repository": "https://github.com/vitejs/vite-plugin-basic-ssl", "publisher": "Evan You and Vite Contributors", @@ -2263,12 +2268,6 @@ "path": "\\node_modules\\@webcomponents\\webcomponentsjs", "licenseFile": "\\node_modules\\@webcomponents\\webcomponentsjs\\LICENSE.md" }, - "@wessberg/ts-evaluator@0.0.27": { - "licenses": "MIT", - "repository": "https://github.com/wessberg/ts-evaluator", - "path": "\\node_modules\\@wessberg\\ts-evaluator", - "licenseFile": "\\node_modules\\@wessberg\\ts-evaluator\\LICENSE.md" - }, "@xmldom/xmldom@0.8.10": { "licenses": "MIT", "repository": "https://github.com/xmldom/xmldom", @@ -2298,26 +2297,17 @@ "path": "\\node_modules\\@yarnpkg\\lockfile", "licenseFile": "\\node_modules\\@yarnpkg\\lockfile\\README.md" }, - "@zip.js/zip.js@2.4.26": { + "@zip.js/zip.js@2.7.45": { "licenses": "BSD-3-Clause", "repository": "https://github.com/gildas-lormeau/zip.js", "publisher": "Gildas Lormeau", "path": "\\node_modules\\@zip.js\\zip.js", - "licenseFile": "\\node_modules\\@zip.js\\zip.js\\README.md" + "licenseFile": "\\node_modules\\@zip.js\\zip.js\\LICENSE" }, - "abab@2.0.6": { - "licenses": "BSD-3-Clause", - "repository": "https://github.com/jsdom/abab", - "publisher": "Jeff Carpenter", - "email": "gcarpenterv@gmail.com", - "path": "\\node_modules\\abab", - "licenseFile": "\\node_modules\\abab\\LICENSE.md" - }, - "abbrev@1.1.1": { + "abbrev@2.0.0": { "licenses": "ISC", - "repository": "https://github.com/isaacs/abbrev-js", - "publisher": "Isaac Z. Schlueter", - "email": "i@izs.me", + "repository": "https://github.com/npm/abbrev-js", + "publisher": "GitHub Inc.", "path": "\\node_modules\\abbrev", "licenseFile": "\\node_modules\\abbrev\\LICENSE" }, @@ -2327,13 +2317,6 @@ "path": "\\node_modules\\accepts", "licenseFile": "\\node_modules\\accepts\\LICENSE" }, - "acorn-globals@6.0.0": { - "licenses": "MIT", - "repository": "https://github.com/ForbesLindesay/acorn-globals", - "publisher": "ForbesLindesay", - "path": "\\node_modules\\acorn-globals", - "licenseFile": "\\node_modules\\acorn-globals\\LICENSE" - }, "acorn-import-assertions@1.9.0": { "licenses": "MIT", "repository": "https://github.com/xtuc/acorn-import-assertions", @@ -2342,26 +2325,6 @@ "path": "\\node_modules\\acorn-import-assertions", "licenseFile": "\\node_modules\\acorn-import-assertions\\README.md" }, - "acorn-node@1.8.2": { - "licenses": "Apache-2.0", - "repository": "https://github.com/browserify/acorn-node", - "publisher": "Renée Kooi", - "email": "renee@kooi.me", - "path": "\\node_modules\\acorn-node", - "licenseFile": "\\node_modules\\acorn-node\\LICENSE.md" - }, - "acorn-walk@7.2.0": { - "licenses": "MIT", - "repository": "https://github.com/acornjs/acorn", - "path": "\\node_modules\\acorn-walk", - "licenseFile": "\\node_modules\\acorn-walk\\LICENSE" - }, - "acorn@7.4.1": { - "licenses": "MIT", - "repository": "https://github.com/acornjs/acorn", - "path": "\\node_modules\\acorn-node\\node_modules\\acorn", - "licenseFile": "\\node_modules\\acorn-node\\node_modules\\acorn\\LICENSE" - }, "acorn@8.11.2": { "licenses": "MIT", "repository": "https://github.com/acornjs/acorn", @@ -2393,23 +2356,14 @@ "path": "\\node_modules\\browserstack\\node_modules\\agent-base", "licenseFile": "\\node_modules\\browserstack\\node_modules\\agent-base\\README.md" }, - "agent-base@6.0.2": { + "agent-base@7.1.1": { "licenses": "MIT", - "repository": "https://github.com/TooTallNate/node-agent-base", + "repository": "https://github.com/TooTallNate/proxy-agents", "publisher": "Nathan Rajlich", "email": "nathan@tootallnate.net", "url": "http://n8.io/", "path": "\\node_modules\\agent-base", - "licenseFile": "\\node_modules\\agent-base\\README.md" - }, - "agentkeepalive@4.5.0": { - "licenses": "MIT", - "repository": "https://github.com/node-modules/agentkeepalive", - "publisher": "fengmk2", - "email": "fengmk2@gmail.com", - "url": "https://github.com/fengmk2", - "path": "\\node_modules\\agentkeepalive", - "licenseFile": "\\node_modules\\agentkeepalive\\LICENSE" + "licenseFile": "\\node_modules\\agent-base\\LICENSE" }, "aggregate-error@3.1.0": { "licenses": "MIT", @@ -2448,13 +2402,6 @@ "path": "\\node_modules\\har-validator\\node_modules\\ajv", "licenseFile": "\\node_modules\\har-validator\\node_modules\\ajv\\LICENSE" }, - "ajv@8.11.0": { - "licenses": "MIT", - "repository": "https://github.com/ajv-validator/ajv", - "publisher": "Evgeny Poberezkin", - "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\ajv", - "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\ajv\\LICENSE" - }, "ajv@8.12.0": { "licenses": "MIT", "repository": "https://github.com/ajv-validator/ajv", @@ -2558,14 +2505,6 @@ "path": "\\node_modules\\@isaacs\\cliui\\node_modules\\ansi-styles", "licenseFile": "\\node_modules\\@isaacs\\cliui\\node_modules\\ansi-styles\\license" }, - "anymatch@1.3.2": { - "licenses": "ISC", - "repository": "https://github.com/es128/anymatch", - "publisher": "Elan Shanker", - "url": "http://github.com/es128", - "path": "\\node_modules\\cpx\\node_modules\\anymatch", - "licenseFile": "\\node_modules\\cpx\\node_modules\\anymatch\\LICENSE" - }, "anymatch@3.1.3": { "licenses": "ISC", "repository": "https://github.com/micromatch/anymatch", @@ -2598,21 +2537,6 @@ "path": "\\node_modules\\app-root-path", "licenseFile": "\\node_modules\\app-root-path\\LICENSE" }, - "aproba@2.0.0": { - "licenses": "ISC", - "repository": "https://github.com/iarna/aproba", - "publisher": "Rebecca Turner", - "email": "me@re-becca.org", - "path": "\\node_modules\\aproba", - "licenseFile": "\\node_modules\\aproba\\LICENSE" - }, - "are-we-there-yet@3.0.1": { - "licenses": "ISC", - "repository": "https://github.com/npm/are-we-there-yet", - "publisher": "GitHub Inc.", - "path": "\\node_modules\\are-we-there-yet", - "licenseFile": "\\node_modules\\are-we-there-yet\\LICENSE.md" - }, "arg@4.1.3": { "licenses": "MIT", "repository": "https://github.com/zeit/arg", @@ -2673,6 +2597,14 @@ "path": "\\node_modules\\arr-union", "licenseFile": "\\node_modules\\arr-union\\LICENSE" }, + "array-buffer-byte-length@1.0.1": { + "licenses": "MIT", + "repository": "https://github.com/inspect-js/array-buffer-byte-length", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\array-buffer-byte-length", + "licenseFile": "\\node_modules\\array-buffer-byte-length\\LICENSE" + }, "array-differ@3.0.0": { "licenses": "MIT", "repository": "https://github.com/sindresorhus/array-differ", @@ -2683,15 +2615,6 @@ "licenseFile": "\\node_modules\\array-differ\\license" }, "array-flatten@1.1.1": { - "licenses": "MIT", - "repository": "https://github.com/blakeembrey/array-flatten", - "publisher": "Blake Embrey", - "email": "hello@blakeembrey.com", - "url": "http://blakeembrey.me", - "path": "\\node_modules\\express\\node_modules\\array-flatten", - "licenseFile": "\\node_modules\\express\\node_modules\\array-flatten\\LICENSE" - }, - "array-flatten@2.1.2": { "licenses": "MIT", "repository": "https://github.com/blakeembrey/array-flatten", "publisher": "Blake Embrey", @@ -2700,12 +2623,6 @@ "path": "\\node_modules\\array-flatten", "licenseFile": "\\node_modules\\array-flatten\\LICENSE" }, - "array-from@2.1.1": { - "licenses": "MIT", - "repository": "https://github.com/studio-b12/array-from", - "path": "\\node_modules\\array-from", - "licenseFile": "\\node_modules\\array-from\\License.md" - }, "array-union@1.0.2": { "licenses": "MIT", "repository": "https://github.com/sindresorhus/array-union", @@ -2749,6 +2666,14 @@ "path": "\\node_modules\\nanomatch\\node_modules\\array-unique", "licenseFile": "\\node_modules\\nanomatch\\node_modules\\array-unique\\LICENSE" }, + "arraybuffer.prototype.slice@1.0.3": { + "licenses": "MIT", + "repository": "https://github.com/es-shims/ArrayBuffer.prototype.slice", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\arraybuffer.prototype.slice", + "licenseFile": "\\node_modules\\arraybuffer.prototype.slice\\LICENSE" + }, "arrify@1.0.1": { "licenses": "MIT", "repository": "https://github.com/sindresorhus/arrify", @@ -2783,12 +2708,6 @@ "path": "\\node_modules\\assert-plus", "licenseFile": "\\node_modules\\assert-plus\\README.md" }, - "assert@2.1.0": { - "licenses": "MIT", - "repository": "https://github.com/browserify/commonjs-assert", - "path": "\\node_modules\\assert", - "licenseFile": "\\node_modules\\assert\\LICENSE" - }, "assign-symbols@1.0.0": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/assign-symbols", @@ -2797,15 +2716,6 @@ "path": "\\node_modules\\assign-symbols", "licenseFile": "\\node_modules\\assign-symbols\\LICENSE" }, - "ast-transform@0.0.0": { - "licenses": "MIT", - "repository": "https://github.com/hughsk/ast-transform", - "publisher": "Hugh Kennedy", - "email": "hughskennedy@gmail.com", - "url": "http://hughsk.io/", - "path": "\\node_modules\\ast-transform", - "licenseFile": "\\node_modules\\ast-transform\\LICENSE.md" - }, "ast-types-flow@0.0.7": { "licenses": "ISC", "repository": "https://github.com/kyldvs/ast-types-flow", @@ -2813,14 +2723,6 @@ "path": "\\node_modules\\ast-types-flow", "licenseFile": "\\node_modules\\ast-types-flow\\README.md" }, - "ast-types@0.7.8": { - "licenses": "MIT", - "repository": "https://github.com/benjamn/ast-types", - "publisher": "Ben Newman", - "email": "bn@cs.stanford.edu", - "path": "\\node_modules\\ast-types", - "licenseFile": "\\node_modules\\ast-types\\LICENSE" - }, "async-each@1.0.6": { "licenses": "MIT", "repository": "https://github.com/paulmillr/async-each", @@ -2854,7 +2756,7 @@ "path": "\\node_modules\\autolinker", "licenseFile": "\\node_modules\\autolinker\\LICENSE" }, - "autoprefixer@10.4.14": { + "autoprefixer@10.4.18": { "licenses": "MIT", "repository": "https://github.com/postcss/autoprefixer", "publisher": "Andrey Sitnik", @@ -2862,7 +2764,7 @@ "path": "\\node_modules\\autoprefixer", "licenseFile": "\\node_modules\\autoprefixer\\LICENSE" }, - "available-typed-arrays@1.0.5": { + "available-typed-arrays@1.0.7": { "licenses": "MIT", "repository": "https://github.com/inspect-js/available-typed-arrays", "publisher": "Jordan Harband", @@ -2911,24 +2813,36 @@ "path": "\\node_modules\\babel-plugin-istanbul", "licenseFile": "\\node_modules\\babel-plugin-istanbul\\LICENSE" }, - "babel-plugin-polyfill-corejs2@0.4.6": { + "babel-plugin-polyfill-corejs2@0.4.11": { "licenses": "MIT", "repository": "https://github.com/babel/babel-polyfills", "path": "\\node_modules\\babel-plugin-polyfill-corejs2", "licenseFile": "\\node_modules\\babel-plugin-polyfill-corejs2\\LICENSE" }, - "babel-plugin-polyfill-corejs3@0.8.6": { + "babel-plugin-polyfill-corejs3@0.10.4": { + "licenses": "MIT", + "repository": "https://github.com/babel/babel-polyfills", + "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\babel-plugin-polyfill-corejs3", + "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\babel-plugin-polyfill-corejs3\\LICENSE" + }, + "babel-plugin-polyfill-corejs3@0.9.0": { "licenses": "MIT", "repository": "https://github.com/babel/babel-polyfills", "path": "\\node_modules\\babel-plugin-polyfill-corejs3", "licenseFile": "\\node_modules\\babel-plugin-polyfill-corejs3\\LICENSE" }, - "babel-plugin-polyfill-regenerator@0.5.3": { + "babel-plugin-polyfill-regenerator@0.5.5": { "licenses": "MIT", "repository": "https://github.com/babel/babel-polyfills", "path": "\\node_modules\\babel-plugin-polyfill-regenerator", "licenseFile": "\\node_modules\\babel-plugin-polyfill-regenerator\\LICENSE" }, + "babel-plugin-polyfill-regenerator@0.6.2": { + "licenses": "MIT", + "repository": "https://github.com/babel/babel-polyfills", + "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\babel-plugin-polyfill-regenerator", + "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\babel-plugin-polyfill-regenerator\\LICENSE" + }, "babel-runtime@6.26.0": { "licenses": "MIT", "repository": "https://github.com/babel/babel/tree/master/packages/babel-runtime", @@ -3014,15 +2928,6 @@ "path": "\\node_modules\\big.js", "licenseFile": "\\node_modules\\big.js\\LICENCE" }, - "binary-extensions@1.13.1": { - "licenses": "MIT", - "repository": "https://github.com/sindresorhus/binary-extensions", - "publisher": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com", - "path": "\\node_modules\\cpx\\node_modules\\binary-extensions", - "licenseFile": "\\node_modules\\cpx\\node_modules\\binary-extensions\\license" - }, "binary-extensions@2.2.0": { "licenses": "MIT", "repository": "https://github.com/sindresorhus/binary-extensions", @@ -3052,19 +2957,13 @@ "path": "\\node_modules\\blocking-proxy", "licenseFile": "\\node_modules\\blocking-proxy\\LICENSE" }, - "body-parser@1.20.1": { - "licenses": "MIT", - "repository": "https://github.com/expressjs/body-parser", - "path": "\\node_modules\\express\\node_modules\\body-parser", - "licenseFile": "\\node_modules\\express\\node_modules\\body-parser\\LICENSE" - }, "body-parser@1.20.2": { "licenses": "MIT", "repository": "https://github.com/expressjs/body-parser", "path": "\\node_modules\\body-parser", "licenseFile": "\\node_modules\\body-parser\\LICENSE" }, - "bonjour-service@1.1.1": { + "bonjour-service@1.2.1": { "licenses": "MIT", "repository": "https://github.com/onlxltd/bonjour-service", "publisher": "ON LX Lited", @@ -3081,7 +2980,7 @@ "path": "\\node_modules\\boolbase", "licenseFile": "\\node_modules\\boolbase\\README.md" }, - "bootstrap.native@5.0.11": { + "bootstrap.native@5.0.12": { "licenses": "MIT", "repository": "https://github.com/thednp/bootstrap.native", "publisher": "thednp", @@ -3106,22 +3005,6 @@ "path": "\\node_modules\\@tufjs\\models\\node_modules\\brace-expansion", "licenseFile": "\\node_modules\\@tufjs\\models\\node_modules\\brace-expansion\\LICENSE" }, - "braces@1.8.5": { - "licenses": "MIT", - "repository": "https://github.com/jonschlinkert/braces", - "publisher": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert", - "path": "\\node_modules\\cpx\\node_modules\\braces", - "licenseFile": "\\node_modules\\cpx\\node_modules\\braces\\LICENSE" - }, - "braces@2.3.2": { - "licenses": "MIT", - "repository": "https://github.com/micromatch/braces", - "publisher": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert", - "path": "\\node_modules\\cpx\\node_modules\\readdirp\\node_modules\\braces", - "licenseFile": "\\node_modules\\cpx\\node_modules\\readdirp\\node_modules\\braces\\LICENSE" - }, "braces@3.0.2": { "licenses": "MIT", "repository": "https://github.com/micromatch/braces", @@ -3130,15 +3013,6 @@ "path": "\\node_modules\\braces", "licenseFile": "\\node_modules\\braces\\LICENSE" }, - "brfs@2.0.2": { - "licenses": "MIT", - "repository": "https://github.com/substack/brfs", - "publisher": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net", - "path": "\\node_modules\\brfs", - "licenseFile": "\\node_modules\\brfs\\LICENSE" - }, "brotli@1.3.3": { "licenses": "MIT", "repository": "https://github.com/devongovett/brotli.js", @@ -3147,38 +3021,7 @@ "path": "\\node_modules\\brotli", "licenseFile": "\\node_modules\\brotli\\readme.md" }, - "browser-process-hrtime@1.0.0": { - "licenses": "BSD-2-Clause", - "repository": "https://github.com/kumavis/browser-process-hrtime", - "publisher": "kumavis", - "path": "\\node_modules\\browser-process-hrtime", - "licenseFile": "\\node_modules\\browser-process-hrtime\\LICENSE" - }, - "browser-resolve@1.11.3": { - "licenses": "MIT", - "repository": "https://github.com/shtylman/node-browser-resolve", - "publisher": "Roman Shtylman", - "email": "shtylman@gmail.com", - "path": "\\node_modules\\browser-resolve", - "licenseFile": "\\node_modules\\browser-resolve\\LICENSE" - }, - "browserify-optional@1.0.1": { - "licenses": "MIT", - "repository": "https://github.com/devongovett/browserify-optional", - "publisher": "Devon Govett", - "email": "devongovett@gmail.com", - "path": "\\node_modules\\browserify-optional", - "licenseFile": "\\node_modules\\browserify-optional\\README.md" - }, - "browserify-zlib@0.2.0": { - "licenses": "MIT", - "repository": "https://github.com/devongovett/browserify-zlib", - "publisher": "Devon Govett", - "email": "devongovett@gmail.com", - "path": "\\node_modules\\browserify-zlib", - "licenseFile": "\\node_modules\\browserify-zlib\\LICENSE" - }, - "browserslist@4.22.1": { + "browserslist@4.23.2": { "licenses": "MIT", "repository": "https://github.com/browserslist/browserslist", "publisher": "Andrey Sitnik", @@ -3195,15 +3038,6 @@ "path": "\\node_modules\\browserstack", "licenseFile": "\\node_modules\\browserstack\\LICENSE-MIT.txt" }, - "buffer-equal@0.0.1": { - "licenses": "MIT", - "repository": "https://github.com/substack/node-buffer-equal", - "publisher": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net", - "path": "\\node_modules\\buffer-equal", - "licenseFile": "\\node_modules\\buffer-equal\\README.markdown" - }, "buffer-from@1.1.2": { "licenses": "MIT", "repository": "https://github.com/LinusU/buffer-from", @@ -3237,21 +3071,6 @@ "path": "\\node_modules\\builtin-modules", "licenseFile": "\\node_modules\\builtin-modules\\license" }, - "builtin-status-codes@3.0.0": { - "licenses": "MIT", - "repository": "https://github.com/bendrucker/builtin-status-codes", - "publisher": "Ben Drucker", - "email": "bvdrucker@gmail.com", - "url": "bendrucker.me", - "path": "\\node_modules\\builtin-status-codes", - "licenseFile": "\\node_modules\\builtin-status-codes\\license" - }, - "builtins@5.0.1": { - "licenses": "MIT", - "repository": "https://github.com/juliangruber/builtins", - "path": "\\node_modules\\builtins", - "licenseFile": "\\node_modules\\builtins\\License" - }, "bytes@3.0.0": { "licenses": "MIT", "repository": "https://github.com/visionmedia/bytes.js", @@ -3286,21 +3105,7 @@ "path": "\\node_modules\\bytewise", "licenseFile": "\\node_modules\\bytewise\\README.md" }, - "cacache@16.1.3": { - "licenses": "ISC", - "repository": "https://github.com/npm/cacache", - "publisher": "GitHub Inc.", - "path": "\\node_modules\\make-fetch-happen\\node_modules\\cacache", - "licenseFile": "\\node_modules\\make-fetch-happen\\node_modules\\cacache\\LICENSE.md" - }, - "cacache@17.1.4": { - "licenses": "ISC", - "repository": "https://github.com/npm/cacache", - "publisher": "GitHub Inc.", - "path": "\\node_modules\\tuf-js\\node_modules\\cacache", - "licenseFile": "\\node_modules\\tuf-js\\node_modules\\cacache\\LICENSE.md" - }, - "cacache@18.0.1": { + "cacache@18.0.3": { "licenses": "ISC", "repository": "https://github.com/npm/cacache", "publisher": "GitHub Inc.", @@ -3315,7 +3120,7 @@ "path": "\\node_modules\\cache-base", "licenseFile": "\\node_modules\\cache-base\\LICENSE" }, - "call-bind@1.0.5": { + "call-bind@1.0.7": { "licenses": "MIT", "repository": "https://github.com/ljharb/call-bind", "publisher": "Jordan Harband", @@ -3357,7 +3162,7 @@ "path": "\\node_modules\\depcheck\\node_modules\\camelcase", "licenseFile": "\\node_modules\\depcheck\\node_modules\\camelcase\\license" }, - "caniuse-lite@1.0.30001565": { + "caniuse-lite@1.0.30001641": { "licenses": "CC-BY-4.0", "repository": "https://github.com/browserslist/caniuse-lite", "publisher": "Ben Briggs", @@ -3392,6 +3197,12 @@ "path": "\\node_modules\\ora\\node_modules\\chalk", "licenseFile": "\\node_modules\\ora\\node_modules\\chalk\\license" }, + "chalk@5.3.0": { + "licenses": "MIT", + "repository": "https://github.com/chalk/chalk", + "path": "\\node_modules\\inquirer\\node_modules\\chalk", + "licenseFile": "\\node_modules\\inquirer\\node_modules\\chalk\\license" + }, "chardet@0.7.0": { "licenses": "MIT", "repository": "https://github.com/runk/node-chardet", @@ -3425,15 +3236,7 @@ "path": "\\node_modules\\cheerio", "licenseFile": "\\node_modules\\cheerio\\LICENSE" }, - "chokidar@1.7.0": { - "licenses": "MIT", - "repository": "https://github.com/paulmillr/chokidar", - "publisher": "Paul Miller", - "url": "http://paulmillr.com", - "path": "\\node_modules\\cpx\\node_modules\\chokidar", - "licenseFile": "\\node_modules\\cpx\\node_modules\\chokidar\\README.md" - }, - "chokidar@3.5.3": { + "chokidar@3.6.0": { "licenses": "MIT", "repository": "https://github.com/paulmillr/chokidar", "publisher": "Paul Miller", @@ -3492,7 +3295,7 @@ "path": "\\node_modules\\cli-spinners", "licenseFile": "\\node_modules\\cli-spinners\\license" }, - "cli-width@3.0.0": { + "cli-width@4.1.0": { "licenses": "ISC", "repository": "https://github.com/knownasilya/cli-width", "publisher": "Ilya Radchenko", @@ -3513,8 +3316,8 @@ "repository": "https://github.com/yargs/cliui", "publisher": "Ben Coe", "email": "ben@npmjs.com", - "path": "\\node_modules\\karma\\node_modules\\cliui", - "licenseFile": "\\node_modules\\karma\\node_modules\\cliui\\LICENSE.txt" + "path": "\\node_modules\\depcheck\\node_modules\\cliui", + "licenseFile": "\\node_modules\\depcheck\\node_modules\\cliui\\LICENSE.txt" }, "cliui@8.0.1": { "licenses": "ISC", @@ -3541,7 +3344,7 @@ "path": "\\node_modules\\clone", "licenseFile": "\\node_modules\\clone\\LICENSE" }, - "code-block-writer@12.0.0": { + "code-block-writer@13.0.1": { "licenses": "MIT", "repository": "https://github.com/dsherret/code-block-writer", "publisher": "David Sherret", @@ -3660,7 +3463,7 @@ "path": "\\node_modules\\combined-stream", "licenseFile": "\\node_modules\\combined-stream\\License" }, - "commander@11.1.0": { + "commander@12.1.0": { "licenses": "MIT", "repository": "https://github.com/tj/commander.js", "publisher": "TJ Holowaychuk", @@ -3728,14 +3531,6 @@ "path": "\\node_modules\\concat-map", "licenseFile": "\\node_modules\\concat-map\\LICENSE" }, - "concat-stream@1.6.2": { - "licenses": "MIT", - "repository": "https://github.com/maxogden/concat-stream", - "publisher": "Max Ogden", - "email": "max@maxogden.com", - "path": "\\node_modules\\concat-stream", - "licenseFile": "\\node_modules\\concat-stream\\LICENSE" - }, "concat-stream@2.0.0": { "licenses": "MIT", "repository": "https://github.com/maxogden/concat-stream", @@ -3761,15 +3556,6 @@ "path": "\\node_modules\\connect", "licenseFile": "\\node_modules\\connect\\LICENSE" }, - "console-control-strings@1.1.0": { - "licenses": "ISC", - "repository": "https://github.com/iarna/console-control-strings", - "publisher": "Rebecca Turner", - "email": "me@re-becca.org", - "url": "http://re-becca.org/", - "path": "\\node_modules\\console-control-strings", - "licenseFile": "\\node_modules\\console-control-strings\\LICENSE" - }, "content-disposition@0.5.4": { "licenses": "MIT", "repository": "https://github.com/jshttp/content-disposition", @@ -3801,8 +3587,8 @@ "publisher": "Thorsten Lorenz", "email": "thlorenz@gmx.de", "url": "http://thlorenz.com", - "path": "\\node_modules\\ng-packagr\\node_modules\\convert-source-map", - "licenseFile": "\\node_modules\\ng-packagr\\node_modules\\convert-source-map\\LICENSE" + "path": "\\node_modules\\@babel\\core\\node_modules\\convert-source-map", + "licenseFile": "\\node_modules\\@babel\\core\\node_modules\\convert-source-map\\LICENSE" }, "cookie-signature@1.0.6": { "licenses": "MIT", @@ -3820,7 +3606,7 @@ "path": "\\node_modules\\cookie", "licenseFile": "\\node_modules\\cookie\\LICENSE" }, - "cookie@0.5.0": { + "cookie@0.6.0": { "licenses": "MIT", "repository": "https://github.com/jshttp/cookie", "publisher": "Roman Shtylman", @@ -3850,7 +3636,7 @@ "path": "\\node_modules\\copy-webpack-plugin", "licenseFile": "\\node_modules\\copy-webpack-plugin\\LICENSE" }, - "core-js-compat@3.33.3": { + "core-js-compat@3.37.1": { "licenses": "MIT", "repository": "https://github.com/zloirock/core-js", "publisher": "Denis Pushkarev", @@ -3891,7 +3677,7 @@ "path": "\\node_modules\\depcheck\\node_modules\\cosmiconfig", "licenseFile": "\\node_modules\\depcheck\\node_modules\\cosmiconfig\\LICENSE" }, - "cosmiconfig@8.3.6": { + "cosmiconfig@9.0.0": { "licenses": "MIT", "repository": "https://github.com/cosmiconfig/cosmiconfig", "publisher": "Daniel Fischer", @@ -3899,14 +3685,14 @@ "path": "\\node_modules\\cosmiconfig", "licenseFile": "\\node_modules\\cosmiconfig\\LICENSE" }, - "cpx@1.5.0": { + "cpx2@7.0.1": { "licenses": "MIT", - "repository": "https://github.com/mysticatea/cpx", + "repository": "https://github.com/bcomnes/cpx2", "publisher": "Toru Nagashima", - "path": "\\node_modules\\cpx", - "licenseFile": "\\node_modules\\cpx\\LICENSE" + "path": "\\node_modules\\cpx2", + "licenseFile": "\\node_modules\\cpx2\\LICENSE" }, - "critters@0.0.20": { + "critters@0.0.22": { "licenses": "Apache-2.0", "repository": "https://github.com/GoogleChromeLabs/critters", "publisher": "The Chromium Authors", @@ -3938,7 +3724,7 @@ "path": "\\node_modules\\crypto-js", "licenseFile": "\\node_modules\\crypto-js\\LICENSE" }, - "css-loader@6.8.1": { + "css-loader@6.10.0": { "licenses": "MIT", "repository": "https://github.com/webpack-contrib/css-loader", "publisher": "Tobias Koppers @sokra", @@ -3993,35 +3779,6 @@ "path": "\\node_modules\\cssesc", "licenseFile": "\\node_modules\\cssesc\\LICENSE-MIT.txt" }, - "cssom@0.3.8": { - "licenses": "MIT", - "repository": "https://github.com/NV/CSSOM", - "publisher": "Nikita Vasilyev", - "email": "me@elv1s.ru", - "path": "\\node_modules\\cssstyle\\node_modules\\cssom", - "licenseFile": "\\node_modules\\cssstyle\\node_modules\\cssom\\LICENSE.txt" - }, - "cssom@0.4.4": { - "licenses": "MIT", - "repository": "https://github.com/NV/CSSOM", - "publisher": "Nikita Vasilyev", - "email": "me@elv1s.ru", - "path": "\\node_modules\\cssom", - "licenseFile": "\\node_modules\\cssom\\LICENSE.txt" - }, - "cssstyle@2.3.0": { - "licenses": "MIT", - "repository": "https://github.com/jsdom/cssstyle", - "path": "\\node_modules\\cssstyle", - "licenseFile": "\\node_modules\\cssstyle\\LICENSE" - }, - "cuint@0.2.2": { - "licenses": "MIT", - "repository": "https://github.com/pierrec/js-cuint", - "publisher": "Pierre Curto", - "path": "\\node_modules\\cuint", - "licenseFile": "\\node_modules\\cuint\\README.md" - }, "custom-event@1.0.1": { "licenses": "MIT", "repository": "https://github.com/webmodules/custom-event", @@ -4047,14 +3804,6 @@ "path": "\\node_modules\\damerau-levenshtein", "licenseFile": "\\node_modules\\damerau-levenshtein\\LICENSE" }, - "dash-ast@2.0.1": { - "licenses": "Apache-2.0", - "repository": "https://github.com/goto-bus-stop/dash-ast", - "publisher": "Renée Kooi", - "email": "renee@kooi.me", - "path": "\\node_modules\\dash-ast", - "licenseFile": "\\node_modules\\dash-ast\\LICENSE.md" - }, "dashdash@1.14.1": { "licenses": "MIT", "repository": "https://github.com/trentm/node-dashdash", @@ -4064,14 +3813,29 @@ "path": "\\node_modules\\dashdash", "licenseFile": "\\node_modules\\dashdash\\LICENSE.txt" }, - "data-urls@2.0.0": { + "data-view-buffer@1.0.1": { "licenses": "MIT", - "repository": "https://github.com/jsdom/data-urls", - "publisher": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me/", - "path": "\\node_modules\\data-urls", - "licenseFile": "\\node_modules\\data-urls\\LICENSE.txt" + "repository": "https://github.com/ljharb/data-view-buffer", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\data-view-buffer", + "licenseFile": "\\node_modules\\data-view-buffer\\LICENSE" + }, + "data-view-byte-length@1.0.1": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/data-view-byte-length", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\data-view-byte-length", + "licenseFile": "\\node_modules\\data-view-byte-length\\LICENSE" + }, + "data-view-byte-offset@1.0.0": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/data-view-byte-offset", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\data-view-byte-offset", + "licenseFile": "\\node_modules\\data-view-byte-offset\\LICENSE" }, "date-format@4.0.14": { "licenses": "MIT", @@ -4081,6 +3845,12 @@ "path": "\\node_modules\\date-format", "licenseFile": "\\node_modules\\date-format\\LICENSE" }, + "debounce@2.1.0": { + "licenses": "MIT", + "repository": "https://github.com/sindresorhus/debounce", + "path": "\\node_modules\\debounce", + "licenseFile": "\\node_modules\\debounce\\license" + }, "debug@2.6.9": { "licenses": "MIT", "repository": "https://github.com/visionmedia/debug", @@ -4121,14 +3891,6 @@ "path": "\\node_modules\\decamelize", "licenseFile": "\\node_modules\\decamelize\\license" }, - "decimal.js@10.4.3": { - "licenses": "MIT", - "repository": "https://github.com/MikeMcl/decimal.js", - "publisher": "Michael Mclaughlin", - "email": "M8ch88l@gmail.com", - "path": "\\node_modules\\decimal.js", - "licenseFile": "\\node_modules\\decimal.js\\LICENCE.md" - }, "decode-uri-component@0.2.2": { "licenses": "MIT", "repository": "https://github.com/SamVerschueren/decode-uri-component", @@ -4147,15 +3909,6 @@ "path": "\\node_modules\\deep-equal", "licenseFile": "\\node_modules\\deep-equal\\LICENSE" }, - "deep-is@0.1.4": { - "licenses": "MIT", - "repository": "https://github.com/thlorenz/deep-is", - "publisher": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": "http://thlorenz.com", - "path": "\\node_modules\\deep-is", - "licenseFile": "\\node_modules\\deep-is\\LICENSE" - }, "deepmerge@4.3.1": { "licenses": "MIT", "repository": "https://github.com/TehShrike/deepmerge", @@ -4177,7 +3930,7 @@ "path": "\\node_modules\\defaults", "licenseFile": "\\node_modules\\defaults\\LICENSE" }, - "define-data-property@1.1.1": { + "define-data-property@1.1.4": { "licenses": "MIT", "repository": "https://github.com/ljharb/define-data-property", "publisher": "Jordan Harband", @@ -4235,7 +3988,7 @@ "path": "\\node_modules\\del", "licenseFile": "\\node_modules\\del\\license" }, - "delaunator@5.0.0": { + "delaunator@5.0.1": { "licenses": "ISC", "repository": "https://github.com/mapbox/delaunator", "publisher": "Vladimir Agafonkin", @@ -4251,19 +4004,13 @@ "path": "\\node_modules\\delayed-stream", "licenseFile": "\\node_modules\\delayed-stream\\License" }, - "delegates@1.0.0": { - "licenses": "MIT", - "repository": "https://github.com/visionmedia/node-delegates", - "path": "\\node_modules\\delegates", - "licenseFile": "\\node_modules\\delegates\\License" - }, - "demo-auth@12.0.1-next.4": { + "demo-auth@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\demo-auth", "licenseFile": "\\node_modules\\demo-auth\\README.md" }, - "demo-maps@12.0.1-next.4": { + "demo-maps@14.0.0-next.0": { "licenses": "Apache-2.0", "publisher": "Team UKIS", "path": "\\node_modules\\demo-maps", @@ -4293,7 +4040,7 @@ "path": "\\node_modules\\depd", "licenseFile": "\\node_modules\\depd\\LICENSE" }, - "dependency-graph@0.11.0": { + "dependency-graph@1.0.0": { "licenses": "MIT", "repository": "https://github.com/jriecken/dependency-graph", "publisher": "Jim Riecken", @@ -4364,15 +4111,6 @@ "path": "\\node_modules\\dir-glob", "licenseFile": "\\node_modules\\dir-glob\\license" }, - "dns-equal@1.0.0": { - "licenses": "MIT", - "repository": "https://github.com/watson/dns-equal", - "publisher": "Thomas Watson Steen", - "email": "w@tson.dk", - "url": "https://twitter.com/wa7son", - "path": "\\node_modules\\dns-equal", - "licenseFile": "\\node_modules\\dns-equal\\LICENSE" - }, "dns-packet@5.6.1": { "licenses": "MIT", "repository": "https://github.com/mafintosh/dns-packet", @@ -4405,15 +4143,6 @@ "path": "\\node_modules\\domelementtype", "licenseFile": "\\node_modules\\domelementtype\\LICENSE" }, - "domexception@2.0.1": { - "licenses": "MIT", - "repository": "https://github.com/jsdom/domexception", - "publisher": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me/", - "path": "\\node_modules\\domexception", - "licenseFile": "\\node_modules\\domexception\\LICENSE.txt" - }, "domhandler@5.0.3": { "licenses": "BSD-2-Clause", "repository": "https://github.com/fb55/domhandler", @@ -4454,15 +4183,6 @@ "path": "\\node_modules\\draco3d", "licenseFile": "\\node_modules\\draco3d\\README.md" }, - "duplexer2@0.1.4": { - "licenses": "BSD-3-Clause", - "repository": "https://github.com/deoxxa/duplexer2", - "publisher": "Conrad Pankoff", - "email": "deoxxa@fknsrs.biz", - "url": "http://www.fknsrs.biz/", - "path": "\\node_modules\\duplexer2", - "licenseFile": "\\node_modules\\duplexer2\\LICENSE.md" - }, "duplexer@0.1.2": { "licenses": "MIT", "repository": "https://github.com/Raynos/duplexer", @@ -4503,7 +4223,7 @@ "path": "\\node_modules\\ee-first", "licenseFile": "\\node_modules\\ee-first\\LICENSE" }, - "electron-to-chromium@1.4.597": { + "electron-to-chromium@1.4.823": { "licenses": "ISC", "repository": "https://github.com/kilian/electron-to-chromium", "publisher": "Kilian Valkhof", @@ -4630,6 +4350,31 @@ "path": "\\node_modules\\error-ex", "licenseFile": "\\node_modules\\error-ex\\LICENSE" }, + "es-abstract@1.23.3": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/es-abstract", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes", + "path": "\\node_modules\\es-abstract", + "licenseFile": "\\node_modules\\es-abstract\\LICENSE" + }, + "es-define-property@1.0.0": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/es-define-property", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\es-define-property", + "licenseFile": "\\node_modules\\es-define-property\\LICENSE" + }, + "es-errors@1.3.0": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/es-errors", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\es-errors", + "licenseFile": "\\node_modules\\es-errors\\LICENSE" + }, "es-module-lexer@1.4.1": { "licenses": "MIT", "repository": "https://github.com/guybedford/es-module-lexer", @@ -4637,6 +4382,30 @@ "path": "\\node_modules\\es-module-lexer", "licenseFile": "\\node_modules\\es-module-lexer\\LICENSE" }, + "es-object-atoms@1.0.0": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/es-object-atoms", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\es-object-atoms", + "licenseFile": "\\node_modules\\es-object-atoms\\LICENSE" + }, + "es-set-tostringtag@2.0.3": { + "licenses": "MIT", + "repository": "https://github.com/es-shims/es-set-tostringtag", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\es-set-tostringtag", + "licenseFile": "\\node_modules\\es-set-tostringtag\\LICENSE" + }, + "es-to-primitive@1.2.1": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/es-to-primitive", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\es-to-primitive", + "licenseFile": "\\node_modules\\es-to-primitive\\LICENSE" + }, "es5-ext@0.10.62": { "licenses": "ISC", "repository": "https://github.com/medikoo/es5-ext", @@ -4655,15 +4424,6 @@ "path": "\\node_modules\\es6-iterator", "licenseFile": "\\node_modules\\es6-iterator\\LICENSE" }, - "es6-map@0.1.5": { - "licenses": "MIT", - "repository": "https://github.com/medikoo/es6-map", - "publisher": "Mariusz Nowak", - "email": "medyk@medikoo.com", - "url": "http://www.medikoo.com/", - "path": "\\node_modules\\es6-map", - "licenseFile": "\\node_modules\\es6-map\\LICENSE" - }, "es6-promise@4.2.8": { "licenses": "MIT", "repository": "https://github.com/stefanpenner/es6-promise", @@ -4680,15 +4440,6 @@ "path": "\\node_modules\\es6-promisify", "licenseFile": "\\node_modules\\es6-promisify\\README.md" }, - "es6-set@0.1.6": { - "licenses": "ISC", - "repository": "https://github.com/medikoo/es6-set", - "publisher": "Mariusz Nowak", - "email": "medyk@medikoo.com", - "url": "http://www.medikoo.com/", - "path": "\\node_modules\\es6-set", - "licenseFile": "\\node_modules\\es6-set\\LICENSE" - }, "es6-shim@0.35.8": { "licenses": "MIT", "repository": "https://github.com/paulmillr/es6-shim", @@ -4706,31 +4457,25 @@ "path": "\\node_modules\\es6-symbol", "licenseFile": "\\node_modules\\es6-symbol\\LICENSE" }, - "esbuild-wasm@0.18.17": { + "esbuild-wasm@0.20.1": { "licenses": "MIT", "repository": "https://github.com/evanw/esbuild", "path": "\\node_modules\\esbuild-wasm", "licenseFile": "\\node_modules\\esbuild-wasm\\LICENSE.md" }, - "esbuild-wasm@0.19.8": { + "esbuild@0.19.12": { "licenses": "MIT", "repository": "https://github.com/evanw/esbuild", - "path": "\\node_modules\\ng-packagr\\node_modules\\esbuild-wasm", - "licenseFile": "\\node_modules\\ng-packagr\\node_modules\\esbuild-wasm\\LICENSE.md" + "path": "\\node_modules\\vite\\node_modules\\esbuild", + "licenseFile": "\\node_modules\\vite\\node_modules\\esbuild\\LICENSE.md" }, - "esbuild@0.18.17": { + "esbuild@0.20.1": { "licenses": "MIT", "repository": "https://github.com/evanw/esbuild", "path": "\\node_modules\\esbuild", "licenseFile": "\\node_modules\\esbuild\\LICENSE.md" }, - "esbuild@0.19.8": { - "licenses": "MIT", - "repository": "https://github.com/evanw/esbuild", - "path": "\\node_modules\\ng-packagr\\node_modules\\esbuild", - "licenseFile": "\\node_modules\\ng-packagr\\node_modules\\esbuild\\LICENSE.md" - }, - "escalade@3.1.1": { + "escalade@3.1.2": { "licenses": "MIT", "repository": "https://github.com/lukeed/escalade", "publisher": "Luke Edwards", @@ -4754,36 +4499,12 @@ "path": "\\node_modules\\escape-string-regexp", "licenseFile": "\\node_modules\\escape-string-regexp\\license" }, - "escodegen@1.14.3": { - "licenses": "BSD-2-Clause", - "repository": "https://github.com/estools/escodegen", - "path": "\\node_modules\\static-module\\node_modules\\escodegen", - "licenseFile": "\\node_modules\\static-module\\node_modules\\escodegen\\LICENSE.BSD" - }, - "escodegen@1.2.0": { - "licenses": "BSD", - "repository": "https://github.com/Constellation/escodegen", - "path": "\\node_modules\\ast-transform\\node_modules\\escodegen", - "licenseFile": "\\node_modules\\ast-transform\\node_modules\\escodegen\\LICENSE.BSD" - }, - "escodegen@2.1.0": { - "licenses": "BSD-2-Clause", - "repository": "https://github.com/estools/escodegen", - "path": "\\node_modules\\escodegen", - "licenseFile": "\\node_modules\\escodegen\\LICENSE.BSD" - }, "eslint-scope@5.1.1": { "licenses": "BSD-2-Clause", "repository": "https://github.com/eslint/eslint-scope", "path": "\\node_modules\\eslint-scope", "licenseFile": "\\node_modules\\eslint-scope\\LICENSE" }, - "esprima@1.0.4": { - "licenses": "BSD", - "repository": "https://github.com/ariya/esprima", - "path": "\\node_modules\\ast-transform\\node_modules\\esprima", - "licenseFile": "\\node_modules\\ast-transform\\node_modules\\esprima\\README.md" - }, "esprima@4.0.1": { "licenses": "BSD-2-Clause", "repository": "https://github.com/jquery/esprima", @@ -4798,17 +4519,11 @@ "path": "\\node_modules\\esrecurse", "licenseFile": "\\node_modules\\esrecurse\\README.md" }, - "estraverse@1.5.1": { - "licenses": "BSD", - "repository": "https://github.com/Constellation/estraverse", - "path": "\\node_modules\\ast-transform\\node_modules\\estraverse", - "licenseFile": "\\node_modules\\ast-transform\\node_modules\\estraverse\\LICENSE.BSD" - }, "estraverse@4.3.0": { "licenses": "BSD-2-Clause", "repository": "https://github.com/estools/estraverse", - "path": "\\node_modules\\static-module\\node_modules\\estraverse", - "licenseFile": "\\node_modules\\static-module\\node_modules\\estraverse\\LICENSE.BSD" + "path": "\\node_modules\\eslint-scope\\node_modules\\estraverse", + "licenseFile": "\\node_modules\\eslint-scope\\node_modules\\estraverse\\LICENSE.BSD" }, "estraverse@5.3.0": { "licenses": "BSD-2-Clause", @@ -4816,14 +4531,6 @@ "path": "\\node_modules\\estraverse", "licenseFile": "\\node_modules\\estraverse\\LICENSE.BSD" }, - "estree-is-function@1.0.0": { - "licenses": "Apache-2.0", - "repository": "https://github.com/goto-bus-stop/estree-is-function", - "publisher": "Renée Kooi", - "email": "renee@kooi.me", - "path": "\\node_modules\\estree-is-function", - "licenseFile": "\\node_modules\\estree-is-function\\LICENSE.md" - }, "estree-walker@2.0.2": { "licenses": "MIT", "repository": "https://github.com/Rich-Harris/estree-walker", @@ -4831,12 +4538,6 @@ "path": "\\node_modules\\estree-walker", "licenseFile": "\\node_modules\\estree-walker\\LICENSE" }, - "esutils@1.0.0": { - "licenses": "BSD", - "repository": "https://github.com/Constellation/esutils", - "path": "\\node_modules\\ast-transform\\node_modules\\esutils", - "licenseFile": "\\node_modules\\ast-transform\\node_modules\\esutils\\README.md" - }, "esutils@2.0.3": { "licenses": "BSD-2-Clause", "repository": "https://github.com/estools/esutils", @@ -4867,14 +4568,6 @@ "path": "\\node_modules\\event-stream", "licenseFile": "\\node_modules\\event-stream\\LICENCE" }, - "eventemitter-asyncresource@1.0.0": { - "licenses": "MIT", - "repository": "https://github.com/addaleax/eventemitter-asyncresource", - "publisher": "Anna Henningsen", - "email": "anna@addaleax.net", - "path": "\\node_modules\\eventemitter-asyncresource", - "licenseFile": "\\node_modules\\eventemitter-asyncresource\\LICENSE" - }, "eventemitter3@4.0.7": { "licenses": "MIT", "repository": "https://github.com/primus/eventemitter3", @@ -4925,14 +4618,6 @@ "path": "\\node_modules\\expand-brackets", "licenseFile": "\\node_modules\\expand-brackets\\LICENSE" }, - "expand-brackets@2.1.4": { - "licenses": "MIT", - "repository": "https://github.com/jonschlinkert/expand-brackets", - "publisher": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert", - "path": "\\node_modules\\cpx\\node_modules\\readdirp\\node_modules\\expand-brackets", - "licenseFile": "\\node_modules\\cpx\\node_modules\\readdirp\\node_modules\\expand-brackets\\LICENSE" - }, "expand-range@1.8.2": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/expand-range", @@ -4956,7 +4641,7 @@ "path": "\\node_modules\\exponential-backoff", "licenseFile": "\\node_modules\\exponential-backoff\\LICENSE" }, - "express@4.18.2": { + "express@4.19.2": { "licenses": "MIT", "repository": "https://github.com/expressjs/express", "publisher": "TJ Holowaychuk", @@ -5015,14 +4700,6 @@ "path": "\\node_modules\\extglob", "licenseFile": "\\node_modules\\extglob\\LICENSE" }, - "extglob@2.0.4": { - "licenses": "MIT", - "repository": "https://github.com/micromatch/extglob", - "publisher": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert", - "path": "\\node_modules\\cpx\\node_modules\\readdirp\\node_modules\\extglob", - "licenseFile": "\\node_modules\\cpx\\node_modules\\readdirp\\node_modules\\extglob\\LICENSE" - }, "extsprintf@1.3.0": { "licenses": "MIT", "repository": "https://github.com/davepacheco/node-extsprintf", @@ -5045,7 +4722,7 @@ "path": "\\node_modules\\fast-deep-equal", "licenseFile": "\\node_modules\\fast-deep-equal\\LICENSE" }, - "fast-glob@3.3.1": { + "fast-glob@3.3.2": { "licenses": "MIT", "repository": "https://github.com/mrmlnc/fast-glob", "publisher": "Denis Malinochkin", @@ -5053,14 +4730,6 @@ "path": "\\node_modules\\fast-glob", "licenseFile": "\\node_modules\\fast-glob\\LICENSE" }, - "fast-glob@3.3.2": { - "licenses": "MIT", - "repository": "https://github.com/mrmlnc/fast-glob", - "publisher": "Denis Malinochkin", - "url": "https://mrmlnc.com", - "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\fast-glob", - "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\fast-glob\\LICENSE" - }, "fast-json-stable-stringify@2.1.0": { "licenses": "MIT", "repository": "https://github.com/epoberezkin/fast-json-stable-stringify", @@ -5070,15 +4739,6 @@ "path": "\\node_modules\\fast-json-stable-stringify", "licenseFile": "\\node_modules\\fast-json-stable-stringify\\LICENSE" }, - "fast-levenshtein@2.0.6": { - "licenses": "MIT", - "repository": "https://github.com/hiddentao/fast-levenshtein", - "publisher": "Ramesh Nair", - "email": "ram@hiddentao.com", - "url": "http://www.hiddentao.com/", - "path": "\\node_modules\\fast-levenshtein", - "licenseFile": "\\node_modules\\fast-levenshtein\\LICENSE.md" - }, "fastparse@1.1.2": { "licenses": "MIT", "repository": "https://github.com/webpack/fastparse", @@ -5128,14 +4788,6 @@ "path": "\\node_modules\\expand-range\\node_modules\\fill-range", "licenseFile": "\\node_modules\\expand-range\\node_modules\\fill-range\\LICENSE" }, - "fill-range@4.0.0": { - "licenses": "MIT", - "repository": "https://github.com/jonschlinkert/fill-range", - "publisher": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert", - "path": "\\node_modules\\cpx\\node_modules\\fill-range", - "licenseFile": "\\node_modules\\cpx\\node_modules\\fill-range\\LICENSE" - }, "fill-range@7.0.1": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/fill-range", @@ -5211,6 +4863,15 @@ "path": "\\node_modules\\findup-sync", "licenseFile": "\\node_modules\\findup-sync\\LICENSE" }, + "flat@5.0.2": { + "licenses": "BSD-3-Clause", + "repository": "https://github.com/hughsk/flat", + "publisher": "Hugh Kennedy", + "email": "hughskennedy@gmail.com", + "url": "http://hughskennedy.com", + "path": "\\node_modules\\flat", + "licenseFile": "\\node_modules\\flat\\LICENSE" + }, "flatted@3.2.9": { "licenses": "ISC", "repository": "https://github.com/WebReflection/flatted", @@ -5278,15 +4939,6 @@ "path": "\\node_modules\\request\\node_modules\\form-data", "licenseFile": "\\node_modules\\request\\node_modules\\form-data\\License" }, - "form-data@3.0.1": { - "licenses": "MIT", - "repository": "https://github.com/form-data/form-data", - "publisher": "Felix Geisendörfer", - "email": "felix@debuggable.com", - "url": "http://debuggable.com/", - "path": "\\node_modules\\form-data", - "licenseFile": "\\node_modules\\form-data\\License" - }, "forwarded@0.2.0": { "licenses": "MIT", "repository": "https://github.com/jshttp/forwarded", @@ -5360,7 +5012,7 @@ "path": "\\node_modules\\fs-minipass", "licenseFile": "\\node_modules\\fs-minipass\\LICENSE" }, - "fs-monkey@1.0.5": { + "fs-monkey@1.0.6": { "licenses": "Unlicense", "repository": "https://github.com/streamich/fs-monkey", "path": "\\node_modules\\fs-monkey", @@ -5383,6 +5035,14 @@ "path": "\\node_modules\\function-bind", "licenseFile": "\\node_modules\\function-bind\\LICENSE" }, + "function.prototype.name@1.1.6": { + "licenses": "MIT", + "repository": "https://github.com/es-shims/Function.prototype.name", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\function.prototype.name", + "licenseFile": "\\node_modules\\function.prototype.name\\LICENSE" + }, "functions-have-names@1.2.3": { "licenses": "MIT", "repository": "https://github.com/inspect-js/functions-have-names", @@ -5391,13 +5051,6 @@ "path": "\\node_modules\\functions-have-names", "licenseFile": "\\node_modules\\functions-have-names\\LICENSE" }, - "gauge@4.0.4": { - "licenses": "ISC", - "repository": "https://github.com/npm/gauge", - "publisher": "GitHub Inc.", - "path": "\\node_modules\\gauge", - "licenseFile": "\\node_modules\\gauge\\LICENSE.md" - }, "gensync@1.0.0-beta.2": { "licenses": "MIT", "repository": "https://github.com/loganfsmyth/gensync", @@ -5420,14 +5073,6 @@ "path": "\\node_modules\\geotiff", "licenseFile": "\\node_modules\\geotiff\\LICENSE" }, - "get-assigned-identifiers@1.2.0": { - "licenses": "Apache-2.0", - "repository": "https://github.com/goto-bus-stop/get-assigned-identifiers", - "publisher": "Renée Kooi", - "email": "renee@kooi.me", - "path": "\\node_modules\\get-assigned-identifiers", - "licenseFile": "\\node_modules\\get-assigned-identifiers\\LICENSE.md" - }, "get-caller-file@2.0.5": { "licenses": "ISC", "repository": "https://github.com/stefanpenner/get-caller-file", @@ -5435,7 +5080,7 @@ "path": "\\node_modules\\get-caller-file", "licenseFile": "\\node_modules\\get-caller-file\\LICENSE.md" }, - "get-intrinsic@1.2.2": { + "get-intrinsic@1.2.4": { "licenses": "MIT", "repository": "https://github.com/ljharb/get-intrinsic", "publisher": "Jordan Harband", @@ -5468,6 +5113,14 @@ "path": "\\node_modules\\get-stream", "licenseFile": "\\node_modules\\get-stream\\license" }, + "get-symbol-description@1.0.2": { + "licenses": "MIT", + "repository": "https://github.com/inspect-js/get-symbol-description", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\get-symbol-description", + "licenseFile": "\\node_modules\\get-symbol-description\\LICENSE" + }, "get-value@2.0.6": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/get-value", @@ -5540,7 +5193,7 @@ "path": "\\node_modules\\glob2base", "licenseFile": "\\node_modules\\glob2base\\LICENSE" }, - "glob@10.3.10": { + "glob@10.4.5": { "licenses": "ISC", "repository": "https://github.com/isaacs/node-glob", "publisher": "Isaac Z. Schlueter", @@ -5558,15 +5211,6 @@ "path": "\\node_modules\\test-exclude\\node_modules\\glob", "licenseFile": "\\node_modules\\test-exclude\\node_modules\\glob\\LICENSE" }, - "glob@8.1.0": { - "licenses": "ISC", - "repository": "https://github.com/isaacs/node-glob", - "publisher": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/", - "path": "\\node_modules\\make-fetch-happen\\node_modules\\glob", - "licenseFile": "\\node_modules\\make-fetch-happen\\node_modules\\glob\\LICENSE" - }, "global-modules@1.0.0": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/global-modules", @@ -5600,6 +5244,14 @@ "path": "\\node_modules\\globals", "licenseFile": "\\node_modules\\globals\\license" }, + "globalthis@1.0.4": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/System.global", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\globalthis", + "licenseFile": "\\node_modules\\globalthis\\LICENSE" + }, "globby@13.2.2": { "licenses": "MIT", "repository": "https://github.com/sindresorhus/globby", @@ -5639,14 +5291,6 @@ "path": "\\node_modules\\grapheme-splitter", "licenseFile": "\\node_modules\\grapheme-splitter\\LICENSE" }, - "guess-parser@0.4.22": { - "licenses": "MIT", - "repository": "https://github.com/guess-js/guess", - "publisher": "Minko Gechev", - "email": "mgechev@gmail.com", - "path": "\\node_modules\\guess-parser", - "licenseFile": "\\node_modules\\guess-parser\\LICENSE" - }, "hammerjs@2.0.8": { "licenses": "MIT", "repository": "https://github.com/hammerjs/hammer.js", @@ -5697,6 +5341,14 @@ "path": "\\node_modules\\has-ansi", "licenseFile": "\\node_modules\\has-ansi\\license" }, + "has-bigints@1.0.2": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/has-bigints", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\has-bigints", + "licenseFile": "\\node_modules\\has-bigints\\LICENSE" + }, "has-flag@3.0.0": { "licenses": "MIT", "repository": "https://github.com/sindresorhus/has-flag", @@ -5715,7 +5367,7 @@ "path": "\\node_modules\\ora\\node_modules\\has-flag", "licenseFile": "\\node_modules\\ora\\node_modules\\has-flag\\license" }, - "has-property-descriptors@1.0.1": { + "has-property-descriptors@1.0.2": { "licenses": "MIT", "repository": "https://github.com/inspect-js/has-property-descriptors", "publisher": "Jordan Harband", @@ -5723,7 +5375,7 @@ "path": "\\node_modules\\has-property-descriptors", "licenseFile": "\\node_modules\\has-property-descriptors\\LICENSE" }, - "has-proto@1.0.1": { + "has-proto@1.0.3": { "licenses": "MIT", "repository": "https://github.com/inspect-js/has-proto", "publisher": "Jordan Harband", @@ -5740,7 +5392,7 @@ "path": "\\node_modules\\has-symbols", "licenseFile": "\\node_modules\\has-symbols\\LICENSE" }, - "has-tostringtag@1.0.0": { + "has-tostringtag@1.0.2": { "licenses": "MIT", "repository": "https://github.com/inspect-js/has-tostringtag", "publisher": "Jordan Harband", @@ -5749,14 +5401,6 @@ "path": "\\node_modules\\has-tostringtag", "licenseFile": "\\node_modules\\has-tostringtag\\LICENSE" }, - "has-unicode@2.0.1": { - "licenses": "ISC", - "repository": "https://github.com/iarna/has-unicode", - "publisher": "Rebecca Turner", - "email": "me@re-becca.org", - "path": "\\node_modules\\has-unicode", - "licenseFile": "\\node_modules\\has-unicode\\LICENSE" - }, "has-value@0.3.1": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/has-value", @@ -5789,15 +5433,7 @@ "path": "\\node_modules\\has-values", "licenseFile": "\\node_modules\\has-values\\LICENSE" }, - "has@1.0.4": { - "licenses": "MIT", - "repository": "https://github.com/tarruda/has", - "publisher": "Thiago de Arruda", - "email": "tpadilha84@gmail.com", - "path": "\\node_modules\\has", - "licenseFile": "\\node_modules\\has\\LICENSE-MIT" - }, - "hasown@2.0.0": { + "hasown@2.0.2": { "licenses": "MIT", "repository": "https://github.com/inspect-js/hasOwn", "publisher": "Jordan Harband", @@ -5805,21 +5441,6 @@ "path": "\\node_modules\\hasown", "licenseFile": "\\node_modules\\hasown\\LICENSE" }, - "hdr-histogram-js@2.0.3": { - "licenses": "BSD*", - "repository": "https://github.com/HdrHistogram/HdrHistogramJS", - "publisher": "Alexandre Victoor", - "path": "\\node_modules\\hdr-histogram-js", - "licenseFile": "\\node_modules\\hdr-histogram-js\\LICENSE" - }, - "hdr-histogram-percentiles-obj@3.0.0": { - "licenses": "MIT", - "repository": "https://github.com/GlenTiki/hdr-histogram-percentiles-obj", - "publisher": "Glen Keane", - "email": "glenkeane.94@gmail.com", - "path": "\\node_modules\\hdr-histogram-percentiles-obj", - "licenseFile": "\\node_modules\\hdr-histogram-percentiles-obj\\LICENSE" - }, "homedir-polyfill@1.0.3": { "licenses": "MIT", "repository": "https://github.com/doowb/homedir-polyfill", @@ -5828,7 +5449,7 @@ "path": "\\node_modules\\homedir-polyfill", "licenseFile": "\\node_modules\\homedir-polyfill\\LICENSE" }, - "hosted-git-info@6.1.1": { + "hosted-git-info@7.0.2": { "licenses": "ISC", "repository": "https://github.com/npm/hosted-git-info", "publisher": "GitHub Inc.", @@ -5843,16 +5464,7 @@ "path": "\\node_modules\\hpack.js", "licenseFile": "\\node_modules\\hpack.js\\README.md" }, - "html-encoding-sniffer@2.0.1": { - "licenses": "MIT", - "repository": "https://github.com/jsdom/html-encoding-sniffer", - "publisher": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me/", - "path": "\\node_modules\\html-encoding-sniffer", - "licenseFile": "\\node_modules\\html-encoding-sniffer\\LICENSE.txt" - }, - "html-entities@2.4.0": { + "html-entities@2.5.2": { "licenses": "MIT", "repository": "https://github.com/mdevils/html-entities", "publisher": "Marat Dulin", @@ -5934,23 +5546,14 @@ "path": "\\node_modules\\http-parser-js", "licenseFile": "\\node_modules\\http-parser-js\\LICENSE.md" }, - "http-proxy-agent@4.0.1": { + "http-proxy-agent@7.0.2": { "licenses": "MIT", - "repository": "https://github.com/TooTallNate/node-http-proxy-agent", + "repository": "https://github.com/TooTallNate/proxy-agents", "publisher": "Nathan Rajlich", "email": "nathan@tootallnate.net", "url": "http://n8.io/", "path": "\\node_modules\\http-proxy-agent", - "licenseFile": "\\node_modules\\http-proxy-agent\\README.md" - }, - "http-proxy-agent@5.0.0": { - "licenses": "MIT", - "repository": "https://github.com/TooTallNate/node-http-proxy-agent", - "publisher": "Nathan Rajlich", - "email": "nathan@tootallnate.net", - "url": "http://n8.io/", - "path": "\\node_modules\\tuf-js\\node_modules\\http-proxy-agent", - "licenseFile": "\\node_modules\\tuf-js\\node_modules\\http-proxy-agent\\README.md" + "licenseFile": "\\node_modules\\http-proxy-agent\\LICENSE" }, "http-proxy-middleware@2.0.6": { "licenses": "MIT", @@ -5974,15 +5577,6 @@ "path": "\\node_modules\\http-signature", "licenseFile": "\\node_modules\\http-signature\\LICENSE" }, - "https-browserify@1.0.0": { - "licenses": "MIT", - "repository": "https://github.com/substack/https-browserify", - "publisher": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net", - "path": "\\node_modules\\https-browserify", - "licenseFile": "\\node_modules\\https-browserify\\LICENSE" - }, "https-proxy-agent@2.2.4": { "licenses": "MIT", "repository": "https://github.com/TooTallNate/node-https-proxy-agent", @@ -5992,14 +5586,14 @@ "path": "\\node_modules\\browserstack\\node_modules\\https-proxy-agent", "licenseFile": "\\node_modules\\browserstack\\node_modules\\https-proxy-agent\\README.md" }, - "https-proxy-agent@5.0.1": { + "https-proxy-agent@7.0.4": { "licenses": "MIT", - "repository": "https://github.com/TooTallNate/node-https-proxy-agent", + "repository": "https://github.com/TooTallNate/proxy-agents", "publisher": "Nathan Rajlich", "email": "nathan@tootallnate.net", "url": "http://n8.io/", "path": "\\node_modules\\https-proxy-agent", - "licenseFile": "\\node_modules\\https-proxy-agent\\README.md" + "licenseFile": "\\node_modules\\https-proxy-agent\\LICENSE" }, "human-signals@1.1.1": { "licenses": "Apache-2.0", @@ -6019,16 +5613,7 @@ "path": "\\node_modules\\human-signals", "licenseFile": "\\node_modules\\human-signals\\LICENSE" }, - "humanize-ms@1.2.1": { - "licenses": "MIT", - "repository": "https://github.com/node-modules/humanize-ms", - "publisher": "dead-horse", - "email": "dead_horse@qq.com", - "url": "http://deadhorse.me", - "path": "\\node_modules\\humanize-ms", - "licenseFile": "\\node_modules\\humanize-ms\\LICENSE" - }, - "i18next@23.7.7": { + "i18next@23.11.5": { "licenses": "MIT", "repository": "https://github.com/i18next/i18next", "publisher": "Jan Mühlemann", @@ -6069,7 +5654,7 @@ "path": "\\node_modules\\ieee754", "licenseFile": "\\node_modules\\ieee754\\LICENSE" }, - "ignore-walk@6.0.4": { + "ignore-walk@6.0.5": { "licenses": "ISC", "repository": "https://github.com/npm/ignore-walk", "publisher": "GitHub Inc.", @@ -6098,7 +5683,7 @@ "path": "\\node_modules\\immediate", "licenseFile": "\\node_modules\\immediate\\LICENSE.txt" }, - "immutable@4.3.4": { + "immutable@4.3.6": { "licenses": "MIT", "repository": "https://github.com/immutable-js/immutable-js", "publisher": "Lee Byron", @@ -6133,15 +5718,6 @@ "path": "\\node_modules\\indent-string", "licenseFile": "\\node_modules\\indent-string\\license" }, - "infer-owner@1.0.4": { - "licenses": "ISC", - "repository": "https://github.com/npm/infer-owner", - "publisher": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "https://izs.me", - "path": "\\node_modules\\infer-owner", - "licenseFile": "\\node_modules\\infer-owner\\LICENSE" - }, "inflight@1.0.6": { "licenses": "ISC", "repository": "https://github.com/npm/inflight", @@ -6172,13 +5748,20 @@ "path": "\\node_modules\\global-prefix\\node_modules\\ini", "licenseFile": "\\node_modules\\global-prefix\\node_modules\\ini\\LICENSE" }, - "ini@4.1.1": { + "ini@4.1.2": { "licenses": "ISC", "repository": "https://github.com/npm/ini", "publisher": "GitHub Inc.", "path": "\\node_modules\\ini", "licenseFile": "\\node_modules\\ini\\LICENSE" }, + "ini@4.1.3": { + "licenses": "ISC", + "repository": "https://github.com/npm/ini", + "publisher": "GitHub Inc.", + "path": "\\node_modules\\@npmcli\\git\\node_modules\\ini", + "licenseFile": "\\node_modules\\@npmcli\\git\\node_modules\\ini\\LICENSE" + }, "injection-js@2.4.0": { "licenses": "MIT", "repository": "https://github.com/mgechev/injection-js", @@ -6187,7 +5770,7 @@ "path": "\\node_modules\\injection-js", "licenseFile": "\\node_modules\\injection-js\\README.md" }, - "inquirer@8.2.4": { + "inquirer@9.2.15": { "licenses": "MIT", "repository": "https://github.com/SBoudrias/Inquirer.js", "publisher": "Simon Boudrias", @@ -6195,13 +5778,22 @@ "path": "\\node_modules\\inquirer", "licenseFile": "\\node_modules\\inquirer\\LICENSE" }, - "ip@2.0.0": { + "internal-slot@1.0.7": { "licenses": "MIT", - "repository": "https://github.com/indutny/node-ip", - "publisher": "Fedor Indutny", - "email": "fedor@indutny.com", - "path": "\\node_modules\\ip", - "licenseFile": "\\node_modules\\ip\\README.md" + "repository": "https://github.com/ljharb/internal-slot", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\internal-slot", + "licenseFile": "\\node_modules\\internal-slot\\LICENSE" + }, + "ip-address@9.0.5": { + "licenses": "MIT", + "repository": "https://github.com/beaugunderson/ip-address", + "publisher": "Beau Gunderson", + "email": "beau@beaugunderson.com", + "url": "https://beaugunderson.com/", + "path": "\\node_modules\\ip-address", + "licenseFile": "\\node_modules\\ip-address\\LICENSE" }, "ipaddr.js@1.9.1": { "licenses": "MIT", @@ -6211,7 +5803,7 @@ "path": "\\node_modules\\proxy-addr\\node_modules\\ipaddr.js", "licenseFile": "\\node_modules\\proxy-addr\\node_modules\\ipaddr.js\\LICENSE" }, - "ipaddr.js@2.1.0": { + "ipaddr.js@2.2.0": { "licenses": "MIT", "repository": "https://github.com/whitequark/ipaddr.js", "publisher": "whitequark", @@ -6236,6 +5828,14 @@ "path": "\\node_modules\\is-arguments", "licenseFile": "\\node_modules\\is-arguments\\LICENSE" }, + "is-array-buffer@3.0.4": { + "licenses": "MIT", + "repository": "https://github.com/inspect-js/is-array-buffer", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\is-array-buffer", + "licenseFile": "\\node_modules\\is-array-buffer\\LICENSE" + }, "is-arrayish@0.2.1": { "licenses": "MIT", "repository": "https://github.com/qix-/node-is-arrayish", @@ -6244,14 +5844,13 @@ "path": "\\node_modules\\is-arrayish", "licenseFile": "\\node_modules\\is-arrayish\\LICENSE" }, - "is-binary-path@1.0.1": { + "is-bigint@1.0.4": { "licenses": "MIT", - "repository": "https://github.com/sindresorhus/is-binary-path", - "publisher": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com", - "path": "\\node_modules\\cpx\\node_modules\\is-binary-path", - "licenseFile": "\\node_modules\\cpx\\node_modules\\is-binary-path\\license" + "repository": "https://github.com/inspect-js/is-bigint", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\is-bigint", + "licenseFile": "\\node_modules\\is-bigint\\LICENSE" }, "is-binary-path@2.1.0": { "licenses": "MIT", @@ -6262,6 +5861,14 @@ "path": "\\node_modules\\is-binary-path", "licenseFile": "\\node_modules\\is-binary-path\\license" }, + "is-boolean-object@1.1.2": { + "licenses": "MIT", + "repository": "https://github.com/inspect-js/is-boolean-object", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\is-boolean-object", + "licenseFile": "\\node_modules\\is-boolean-object\\LICENSE" + }, "is-buffer@1.1.6": { "licenses": "MIT", "repository": "https://github.com/feross/is-buffer", @@ -6305,6 +5912,14 @@ "path": "\\node_modules\\is-data-descriptor", "licenseFile": "\\node_modules\\is-data-descriptor\\LICENSE" }, + "is-data-view@1.0.1": { + "licenses": "MIT", + "repository": "https://github.com/inspect-js/is-data-view", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\is-data-view", + "licenseFile": "\\node_modules\\is-data-view\\LICENSE" + }, "is-date-object@1.0.5": { "licenses": "MIT", "repository": "https://github.com/inspect-js/is-date-object", @@ -6394,14 +6009,6 @@ "path": "\\node_modules\\is-fullwidth-code-point", "licenseFile": "\\node_modules\\is-fullwidth-code-point\\license" }, - "is-generator-function@1.0.10": { - "licenses": "MIT", - "repository": "https://github.com/inspect-js/is-generator-function", - "publisher": "Jordan Harband", - "email": "ljharb@gmail.com", - "path": "\\node_modules\\is-generator-function", - "licenseFile": "\\node_modules\\is-generator-function\\LICENSE" - }, "is-glob@2.0.1": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/is-glob", @@ -6445,12 +6052,21 @@ "path": "\\node_modules\\is-module", "licenseFile": "\\node_modules\\is-module\\README.md" }, - "is-nan@1.3.2": { + "is-negative-zero@2.0.3": { + "licenses": "MIT", + "repository": "https://github.com/inspect-js/is-negative-zero", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\is-negative-zero", + "licenseFile": "\\node_modules\\is-negative-zero\\LICENSE" + }, + "is-number-object@1.0.7": { "licenses": "MIT", - "repository": "https://github.com/es-shims/is-nan", + "repository": "https://github.com/inspect-js/is-number-object", "publisher": "Jordan Harband", - "path": "\\node_modules\\is-nan", - "licenseFile": "\\node_modules\\is-nan\\LICENSE" + "email": "ljharb@gmail.com", + "path": "\\node_modules\\is-number-object", + "licenseFile": "\\node_modules\\is-number-object\\LICENSE" }, "is-number@2.1.0": { "licenses": "MIT", @@ -6536,14 +6152,6 @@ "path": "\\node_modules\\is-posix-bracket", "licenseFile": "\\node_modules\\is-posix-bracket\\LICENSE" }, - "is-potential-custom-element-name@1.0.1": { - "licenses": "MIT", - "repository": "https://github.com/mathiasbynens/is-potential-custom-element-name", - "publisher": "Mathias Bynens", - "url": "https://mathiasbynens.be/", - "path": "\\node_modules\\is-potential-custom-element-name", - "licenseFile": "\\node_modules\\is-potential-custom-element-name\\LICENSE-MIT.txt" - }, "is-primitive@2.0.0": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/is-primitive", @@ -6560,6 +6168,15 @@ "path": "\\node_modules\\is-regex", "licenseFile": "\\node_modules\\is-regex\\LICENSE" }, + "is-shared-array-buffer@1.0.3": { + "licenses": "MIT", + "repository": "https://github.com/inspect-js/is-shared-array-buffer", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes", + "path": "\\node_modules\\is-shared-array-buffer", + "licenseFile": "\\node_modules\\is-shared-array-buffer\\LICENSE" + }, "is-stream@2.0.1": { "licenses": "MIT", "repository": "https://github.com/sindresorhus/is-stream", @@ -6569,7 +6186,23 @@ "path": "\\node_modules\\is-stream", "licenseFile": "\\node_modules\\is-stream\\license" }, - "is-typed-array@1.1.12": { + "is-string@1.0.7": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/is-string", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\is-string", + "licenseFile": "\\node_modules\\is-string\\LICENSE" + }, + "is-symbol@1.0.4": { + "licenses": "MIT", + "repository": "https://github.com/inspect-js/is-symbol", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\is-symbol", + "licenseFile": "\\node_modules\\is-symbol\\LICENSE" + }, + "is-typed-array@1.1.13": { "licenses": "MIT", "repository": "https://github.com/inspect-js/is-typed-array", "publisher": "Jordan Harband", @@ -6596,6 +6229,14 @@ "path": "\\node_modules\\is-unicode-supported", "licenseFile": "\\node_modules\\is-unicode-supported\\license" }, + "is-weakref@1.0.2": { + "licenses": "MIT", + "repository": "https://github.com/inspect-js/is-weakref", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\is-weakref", + "licenseFile": "\\node_modules\\is-weakref\\LICENSE" + }, "is-what@3.14.1": { "licenses": "MIT", "repository": "https://github.com/mesqueeb/is-what", @@ -6629,6 +6270,15 @@ "path": "\\node_modules\\isarray", "licenseFile": "\\node_modules\\isarray\\README.md" }, + "isarray@2.0.5": { + "licenses": "MIT", + "repository": "https://github.com/juliangruber/isarray", + "publisher": "Julian Gruber", + "email": "mail@juliangruber.com", + "url": "http://juliangruber.com", + "path": "\\node_modules\\safe-array-concat\\node_modules\\isarray", + "licenseFile": "\\node_modules\\safe-array-concat\\node_modules\\isarray\\LICENSE" + }, "isbinaryfile@4.0.10": { "licenses": "MIT", "repository": "https://github.com/gjtorikian/isBinaryFile", @@ -6644,6 +6294,15 @@ "path": "\\node_modules\\isexe", "licenseFile": "\\node_modules\\isexe\\LICENSE" }, + "isexe@3.1.1": { + "licenses": "ISC", + "repository": "https://github.com/isaacs/isexe", + "publisher": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "http://blog.izs.me/", + "path": "\\node_modules\\@npmcli\\promise-spawn\\node_modules\\isexe", + "licenseFile": "\\node_modules\\@npmcli\\promise-spawn\\node_modules\\isexe\\LICENSE" + }, "isobject@2.1.0": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/isobject", @@ -6716,7 +6375,7 @@ "path": "\\node_modules\\istanbul-reports", "licenseFile": "\\node_modules\\istanbul-reports\\LICENSE" }, - "jackspeak@2.3.6": { + "jackspeak@3.4.3": { "licenses": "BlueOak-1.0.0", "repository": "https://github.com/isaacs/jackspeak", "publisher": "Isaac Z. Schlueter", @@ -6730,7 +6389,7 @@ "path": "\\node_modules\\protractor\\node_modules\\jasmine-core", "licenseFile": "\\node_modules\\protractor\\node_modules\\jasmine-core\\README.md" }, - "jasmine-core@4.6.0": { + "jasmine-core@4.6.1": { "licenses": "MIT", "repository": "https://github.com/jasmine/jasmine", "path": "\\node_modules\\jasmine-core", @@ -6769,7 +6428,7 @@ "path": "\\node_modules\\jest-worker", "licenseFile": "\\node_modules\\jest-worker\\LICENSE" }, - "jiti@1.21.0": { + "jiti@1.21.6": { "licenses": "MIT", "repository": "https://github.com/unjs/jiti", "path": "\\node_modules\\jiti", @@ -6805,11 +6464,12 @@ "path": "\\node_modules\\jsbn", "licenseFile": "\\node_modules\\jsbn\\LICENSE" }, - "jsdom@16.7.0": { + "jsbn@1.1.0": { "licenses": "MIT", - "repository": "https://github.com/jsdom/jsdom", - "path": "\\node_modules\\jsdom", - "licenseFile": "\\node_modules\\jsdom\\LICENSE.txt" + "repository": "https://github.com/andyperlitch/jsbn", + "publisher": "Tom Wu", + "path": "\\node_modules\\ip-address\\node_modules\\jsbn", + "licenseFile": "\\node_modules\\ip-address\\node_modules\\jsbn\\LICENSE" }, "jsep@1.3.8": { "licenses": "MIT", @@ -6844,12 +6504,12 @@ "path": "\\node_modules\\json-parse-even-better-errors", "licenseFile": "\\node_modules\\json-parse-even-better-errors\\LICENSE.md" }, - "json-parse-even-better-errors@3.0.1": { + "json-parse-even-better-errors@3.0.2": { "licenses": "MIT", "repository": "https://github.com/npm/json-parse-even-better-errors", "publisher": "GitHub Inc.", - "path": "\\node_modules\\read-package-json-fast\\node_modules\\json-parse-even-better-errors", - "licenseFile": "\\node_modules\\read-package-json-fast\\node_modules\\json-parse-even-better-errors\\LICENSE.md" + "path": "\\node_modules\\@npmcli\\package-json\\node_modules\\json-parse-even-better-errors", + "licenseFile": "\\node_modules\\@npmcli\\package-json\\node_modules\\json-parse-even-better-errors\\LICENSE.md" }, "json-schema-traverse@0.4.1": { "licenses": "MIT", @@ -6903,14 +6563,14 @@ "path": "\\node_modules\\json5", "licenseFile": "\\node_modules\\json5\\LICENSE.md" }, - "jsonc-parser@3.1.0": { + "jsonc-parser@3.2.1": { "licenses": "MIT", "repository": "https://github.com/microsoft/node-jsonc-parser", "publisher": "Microsoft Corporation", - "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\jsonc-parser", - "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\jsonc-parser\\LICENSE.md" + "path": "\\node_modules\\@angular-devkit\\core\\node_modules\\jsonc-parser", + "licenseFile": "\\node_modules\\@angular-devkit\\core\\node_modules\\jsonc-parser\\LICENSE.md" }, - "jsonc-parser@3.2.0": { + "jsonc-parser@3.3.1": { "licenses": "MIT", "repository": "https://github.com/microsoft/node-jsonc-parser", "publisher": "Microsoft Corporation", @@ -7012,7 +6672,7 @@ "path": "\\node_modules\\karma-source-map-support", "licenseFile": "\\node_modules\\karma-source-map-support\\LICENSE" }, - "karma@6.4.2": { + "karma@6.4.3": { "licenses": "MIT", "repository": "https://github.com/karma-runner/karma", "publisher": "Vojta Jína", @@ -7068,7 +6728,7 @@ "path": "\\node_modules\\klona", "licenseFile": "\\node_modules\\klona\\license" }, - "ktx-parse@0.6.0": { + "ktx-parse@0.7.0": { "licenses": "MIT", "repository": "https://github.com/donmccurdy/ktx-parse", "publisher": "Don McCurdy", @@ -7076,7 +6736,7 @@ "path": "\\node_modules\\ktx-parse", "licenseFile": "\\node_modules\\ktx-parse\\LICENSE" }, - "launch-editor@2.6.1": { + "launch-editor@2.8.0": { "licenses": "MIT", "repository": "https://github.com/yyx990803/launch-editor", "publisher": "Evan You", @@ -7108,21 +6768,13 @@ "path": "\\node_modules\\less-loader", "licenseFile": "\\node_modules\\less-loader\\LICENSE" }, - "less@4.1.3": { + "less@4.2.0": { "licenses": "Apache-2.0", "repository": "https://github.com/less/less.js", "publisher": "Alexis Sellier", "email": "self@cloudhead.net", "path": "\\node_modules\\less", - "licenseFile": "\\node_modules\\less\\README.md" - }, - "levn@0.3.0": { - "licenses": "MIT", - "repository": "https://github.com/gkz/levn", - "publisher": "George Zahariev", - "email": "z@georgezahariev.com", - "path": "\\node_modules\\levn", - "licenseFile": "\\node_modules\\levn\\LICENSE" + "licenseFile": "\\node_modules\\less\\LICENSE" }, "license-webpack-plugin@4.0.2": { "licenses": "ISC", @@ -7245,7 +6897,7 @@ "path": "\\node_modules\\loglevel-plugin-prefix", "licenseFile": "\\node_modules\\loglevel-plugin-prefix\\LICENSE" }, - "loglevel@1.8.1": { + "loglevel@1.9.1": { "licenses": "MIT", "repository": "https://github.com/pimterry/loglevel", "publisher": "Tim Perry", @@ -7262,13 +6914,13 @@ "path": "\\node_modules\\long", "licenseFile": "\\node_modules\\long\\LICENSE" }, - "lru-cache@10.1.0": { + "lru-cache@10.4.3": { "licenses": "ISC", "repository": "https://github.com/isaacs/node-lru-cache", "publisher": "Isaac Z. Schlueter", "email": "i@izs.me", - "path": "\\node_modules\\path-scurry\\node_modules\\lru-cache", - "licenseFile": "\\node_modules\\path-scurry\\node_modules\\lru-cache\\LICENSE" + "path": "\\node_modules\\@npmcli\\agent\\node_modules\\lru-cache", + "licenseFile": "\\node_modules\\@npmcli\\agent\\node_modules\\lru-cache\\LICENSE" }, "lru-cache@5.1.1": { "licenses": "ISC", @@ -7286,14 +6938,6 @@ "path": "\\node_modules\\semver\\node_modules\\lru-cache", "licenseFile": "\\node_modules\\semver\\node_modules\\lru-cache\\LICENSE" }, - "lru-cache@7.18.3": { - "licenses": "ISC", - "repository": "https://github.com/isaacs/node-lru-cache", - "publisher": "Isaac Z. Schlueter", - "email": "i@izs.me", - "path": "\\node_modules\\tuf-js\\node_modules\\lru-cache", - "licenseFile": "\\node_modules\\tuf-js\\node_modules\\lru-cache\\LICENSE" - }, "lunr@2.3.9": { "licenses": "MIT", "repository": "https://github.com/olivernn/lunr.js", @@ -7317,34 +6961,13 @@ "path": "\\node_modules\\macos-release", "licenseFile": "\\node_modules\\macos-release\\license" }, - "magic-string@0.25.1": { - "licenses": "MIT", - "repository": "https://github.com/rich-harris/magic-string", - "publisher": "Rich Harris", - "path": "\\node_modules\\static-module\\node_modules\\magic-string", - "licenseFile": "\\node_modules\\static-module\\node_modules\\magic-string\\README.md" - }, - "magic-string@0.26.2": { - "licenses": "MIT", - "repository": "https://github.com/rich-harris/magic-string", - "publisher": "Rich Harris", - "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\magic-string", - "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\magic-string\\LICENSE" - }, - "magic-string@0.30.1": { + "magic-string@0.30.8": { "licenses": "MIT", "repository": "https://github.com/rich-harris/magic-string", "publisher": "Rich Harris", "path": "\\node_modules\\magic-string", "licenseFile": "\\node_modules\\magic-string\\LICENSE" }, - "magic-string@0.30.5": { - "licenses": "MIT", - "repository": "https://github.com/rich-harris/magic-string", - "publisher": "Rich Harris", - "path": "\\node_modules\\@vue\\reactivity-transform\\node_modules\\magic-string", - "licenseFile": "\\node_modules\\@vue\\reactivity-transform\\node_modules\\magic-string\\LICENSE" - }, "make-dir@2.1.0": { "licenses": "MIT", "repository": "https://github.com/sindresorhus/make-dir", @@ -7360,8 +6983,8 @@ "publisher": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com", - "path": "\\node_modules\\postcss-url\\node_modules\\make-dir", - "licenseFile": "\\node_modules\\postcss-url\\node_modules\\make-dir\\license" + "path": "\\node_modules\\ng-packagr\\node_modules\\make-dir", + "licenseFile": "\\node_modules\\ng-packagr\\node_modules\\make-dir\\license" }, "make-dir@4.0.0": { "licenses": "MIT", @@ -7380,20 +7003,13 @@ "path": "\\node_modules\\make-error", "licenseFile": "\\node_modules\\make-error\\LICENSE" }, - "make-fetch-happen@10.2.1": { + "make-fetch-happen@13.0.1": { "licenses": "ISC", "repository": "https://github.com/npm/make-fetch-happen", "publisher": "GitHub Inc.", "path": "\\node_modules\\make-fetch-happen", "licenseFile": "\\node_modules\\make-fetch-happen\\LICENSE" }, - "make-fetch-happen@11.1.1": { - "licenses": "ISC", - "repository": "https://github.com/npm/make-fetch-happen", - "publisher": "GitHub Inc.", - "path": "\\node_modules\\tuf-js\\node_modules\\make-fetch-happen", - "licenseFile": "\\node_modules\\tuf-js\\node_modules\\make-fetch-happen\\LICENSE" - }, "map-cache@0.2.2": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/map-cache", @@ -7478,14 +7094,6 @@ "path": "\\node_modules\\merge-descriptors", "licenseFile": "\\node_modules\\merge-descriptors\\LICENSE" }, - "merge-source-map@1.0.4": { - "licenses": "MIT", - "repository": "https://github.com/keik/merge-source-map", - "publisher": "keik", - "email": "k4t0.kei@gmail.com", - "path": "\\node_modules\\merge-source-map", - "licenseFile": "\\node_modules\\merge-source-map\\LICENSE" - }, "merge-stream@2.0.0": { "licenses": "MIT", "repository": "https://github.com/grncdr/merge-stream", @@ -7508,7 +7116,7 @@ "path": "\\node_modules\\mersenne-twister", "licenseFile": "\\node_modules\\mersenne-twister\\README.md" }, - "meshoptimizer@0.19.0": { + "meshoptimizer@0.21.0": { "licenses": "MIT", "repository": "https://github.com/zeux/meshoptimizer", "publisher": "Arseny Kapoulkine", @@ -7528,22 +7136,6 @@ "path": "\\node_modules\\mgrs", "licenseFile": "\\node_modules\\mgrs\\license.md" }, - "micromatch@2.3.11": { - "licenses": "MIT", - "repository": "https://github.com/jonschlinkert/micromatch", - "publisher": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert", - "path": "\\node_modules\\cpx\\node_modules\\micromatch", - "licenseFile": "\\node_modules\\cpx\\node_modules\\micromatch\\LICENSE" - }, - "micromatch@3.1.10": { - "licenses": "MIT", - "repository": "https://github.com/micromatch/micromatch", - "publisher": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert", - "path": "\\node_modules\\cpx\\node_modules\\readdirp\\node_modules\\micromatch", - "licenseFile": "\\node_modules\\cpx\\node_modules\\readdirp\\node_modules\\micromatch\\LICENSE" - }, "micromatch@4.0.5": { "licenses": "MIT", "repository": "https://github.com/micromatch/micromatch", @@ -7573,15 +7165,6 @@ "path": "\\node_modules\\send\\node_modules\\mime", "licenseFile": "\\node_modules\\send\\node_modules\\mime\\LICENSE" }, - "mime@2.5.2": { - "licenses": "MIT", - "repository": "https://github.com/broofa/mime", - "publisher": "Robert Kieffer", - "email": "robert@broofa.com", - "url": "http://github.com/broofa", - "path": "\\node_modules\\postcss-url\\node_modules\\mime", - "licenseFile": "\\node_modules\\postcss-url\\node_modules\\mime\\LICENSE" - }, "mime@2.6.0": { "licenses": "MIT", "repository": "https://github.com/broofa/mime", @@ -7600,7 +7183,7 @@ "path": "\\node_modules\\mimic-fn", "licenseFile": "\\node_modules\\mimic-fn\\license" }, - "mini-css-extract-plugin@2.7.6": { + "mini-css-extract-plugin@2.8.1": { "licenses": "MIT", "repository": "https://github.com/webpack-contrib/mini-css-extract-plugin", "publisher": "Tobias Koppers @sokra", @@ -7613,15 +7196,6 @@ "path": "\\node_modules\\minimalistic-assert", "licenseFile": "\\node_modules\\minimalistic-assert\\LICENSE" }, - "minimatch@3.0.8": { - "licenses": "ISC", - "repository": "https://github.com/isaacs/minimatch", - "publisher": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me", - "path": "\\node_modules\\postcss-url\\node_modules\\minimatch", - "licenseFile": "\\node_modules\\postcss-url\\node_modules\\minimatch\\LICENSE" - }, "minimatch@3.1.2": { "licenses": "ISC", "repository": "https://github.com/isaacs/minimatch", @@ -7631,25 +7205,16 @@ "path": "\\node_modules\\minimatch", "licenseFile": "\\node_modules\\minimatch\\LICENSE" }, - "minimatch@5.1.6": { - "licenses": "ISC", - "repository": "https://github.com/isaacs/minimatch", - "publisher": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me", - "path": "\\node_modules\\make-fetch-happen\\node_modules\\minimatch", - "licenseFile": "\\node_modules\\make-fetch-happen\\node_modules\\minimatch\\LICENSE" - }, "minimatch@7.4.6": { "licenses": "ISC", "repository": "https://github.com/isaacs/minimatch", "publisher": "Isaac Z. Schlueter", "email": "i@izs.me", "url": "http://blog.izs.me", - "path": "\\node_modules\\@ts-morph\\common\\node_modules\\minimatch", - "licenseFile": "\\node_modules\\@ts-morph\\common\\node_modules\\minimatch\\LICENSE" + "path": "\\node_modules\\depcheck\\node_modules\\minimatch", + "licenseFile": "\\node_modules\\depcheck\\node_modules\\minimatch\\LICENSE" }, - "minimatch@9.0.3": { + "minimatch@9.0.5": { "licenses": "ISC", "repository": "https://github.com/isaacs/minimatch", "publisher": "Isaac Z. Schlueter", @@ -7667,14 +7232,6 @@ "path": "\\node_modules\\minimist", "licenseFile": "\\node_modules\\minimist\\LICENSE" }, - "minipass-collect@1.0.2": { - "licenses": "ISC", - "publisher": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "https://izs.me", - "path": "\\node_modules\\tuf-js\\node_modules\\minipass-collect", - "licenseFile": "\\node_modules\\tuf-js\\node_modules\\minipass-collect\\LICENSE" - }, "minipass-collect@2.0.1": { "licenses": "ISC", "repository": "https://github.com/isaacs/minipass-collect", @@ -7684,20 +7241,13 @@ "path": "\\node_modules\\minipass-collect", "licenseFile": "\\node_modules\\minipass-collect\\LICENSE" }, - "minipass-fetch@2.1.2": { + "minipass-fetch@3.0.5": { "licenses": "MIT", "repository": "https://github.com/npm/minipass-fetch", "publisher": "GitHub Inc.", "path": "\\node_modules\\minipass-fetch", "licenseFile": "\\node_modules\\minipass-fetch\\LICENSE" }, - "minipass-fetch@3.0.4": { - "licenses": "MIT", - "repository": "https://github.com/npm/minipass-fetch", - "publisher": "GitHub Inc.", - "path": "\\node_modules\\tuf-js\\node_modules\\minipass-fetch", - "licenseFile": "\\node_modules\\tuf-js\\node_modules\\minipass-fetch\\LICENSE" - }, "minipass-flush@1.0.5": { "licenses": "ISC", "repository": "https://github.com/isaacs/minipass-flush", @@ -7739,8 +7289,8 @@ "publisher": "Isaac Z. Schlueter", "email": "i@izs.me", "url": "http://blog.izs.me/", - "path": "\\node_modules\\tuf-js\\node_modules\\minipass-collect\\node_modules\\minipass", - "licenseFile": "\\node_modules\\tuf-js\\node_modules\\minipass-collect\\node_modules\\minipass\\LICENSE" + "path": "\\node_modules\\minipass-flush\\node_modules\\minipass", + "licenseFile": "\\node_modules\\minipass-flush\\node_modules\\minipass\\LICENSE" }, "minipass@5.0.0": { "licenses": "ISC", @@ -7751,7 +7301,7 @@ "path": "\\node_modules\\tar\\node_modules\\minipass", "licenseFile": "\\node_modules\\tar\\node_modules\\minipass\\LICENSE" }, - "minipass@7.0.4": { + "minipass@7.1.2": { "licenses": "ISC", "repository": "https://github.com/isaacs/minipass", "publisher": "Isaac Z. Schlueter", @@ -7792,7 +7342,7 @@ "path": "\\node_modules\\tar\\node_modules\\mkdirp", "licenseFile": "\\node_modules\\tar\\node_modules\\mkdirp\\LICENSE" }, - "mkdirp@2.1.6": { + "mkdirp@3.0.1": { "licenses": "MIT", "repository": "https://github.com/isaacs/node-mkdirp", "path": "\\node_modules\\@ts-morph\\common\\node_modules\\mkdirp", @@ -7822,7 +7372,7 @@ "path": "\\node_modules\\morgan", "licenseFile": "\\node_modules\\morgan\\LICENSE" }, - "mrmime@1.0.1": { + "mrmime@2.0.0": { "licenses": "MIT", "repository": "https://github.com/lukeed/mrmime", "publisher": "Luke Edwards", @@ -7873,12 +7423,10 @@ "path": "\\node_modules\\murmurhash-js", "licenseFile": "\\node_modules\\murmurhash-js\\README.md" }, - "mute-stream@0.0.8": { + "mute-stream@1.0.0": { "licenses": "ISC", - "repository": "https://github.com/isaacs/mute-stream", - "publisher": "Isaac Z. Schlueter", - "email": "i@izs.me", - "url": "http://blog.izs.me/", + "repository": "https://github.com/npm/mute-stream", + "publisher": "GitHub Inc.", "path": "\\node_modules\\mute-stream", "licenseFile": "\\node_modules\\mute-stream\\LICENSE" }, @@ -7927,7 +7475,7 @@ "path": "\\node_modules\\next-tick", "licenseFile": "\\node_modules\\next-tick\\LICENSE" }, - "ng-packagr@16.2.3": { + "ng-packagr@17.3.0": { "licenses": "MIT", "repository": "https://github.com/ng-packagr/ng-packagr", "publisher": "David Herges", @@ -7951,7 +7499,7 @@ "path": "\\node_modules\\node-forge", "licenseFile": "\\node_modules\\node-forge\\LICENSE" }, - "node-gyp@9.4.1": { + "node-gyp@10.1.0": { "licenses": "MIT", "repository": "https://github.com/nodejs/node-gyp", "publisher": "Nathan Rajlich", @@ -7960,7 +7508,7 @@ "path": "\\node_modules\\node-gyp", "licenseFile": "\\node_modules\\node-gyp\\LICENSE" }, - "node-releases@2.0.13": { + "node-releases@2.0.14": { "licenses": "MIT", "repository": "https://github.com/chicoxyzzy/node-releases", "publisher": "Sergey Rubanov", @@ -7968,28 +7516,20 @@ "path": "\\node_modules\\node-releases", "licenseFile": "\\node_modules\\node-releases\\LICENSE" }, - "nopt@6.0.0": { + "nopt@7.2.1": { "licenses": "ISC", "repository": "https://github.com/npm/nopt", "publisher": "GitHub Inc.", "path": "\\node_modules\\nopt", "licenseFile": "\\node_modules\\nopt\\LICENSE" }, - "normalize-package-data@5.0.0": { + "normalize-package-data@6.0.2": { "licenses": "BSD-2-Clause", "repository": "https://github.com/npm/normalize-package-data", "publisher": "GitHub Inc.", "path": "\\node_modules\\normalize-package-data", "licenseFile": "\\node_modules\\normalize-package-data\\LICENSE" }, - "normalize-path@2.1.1": { - "licenses": "MIT", - "repository": "https://github.com/jonschlinkert/normalize-path", - "publisher": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert", - "path": "\\node_modules\\cpx\\node_modules\\normalize-path", - "licenseFile": "\\node_modules\\cpx\\node_modules\\normalize-path\\LICENSE" - }, "normalize-path@3.0.0": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/normalize-path", @@ -8014,7 +7554,7 @@ "path": "\\node_modules\\nosleep.js", "licenseFile": "\\node_modules\\nosleep.js\\LICENSE" }, - "npm-bundled@3.0.0": { + "npm-bundled@3.0.1": { "licenses": "ISC", "repository": "https://github.com/npm/npm-bundled", "publisher": "GitHub Inc.", @@ -8035,28 +7575,28 @@ "path": "\\node_modules\\npm-normalize-package-bin", "licenseFile": "\\node_modules\\npm-normalize-package-bin\\LICENSE" }, - "npm-package-arg@10.1.0": { + "npm-package-arg@11.0.1": { "licenses": "ISC", "repository": "https://github.com/npm/npm-package-arg", "publisher": "GitHub Inc.", "path": "\\node_modules\\npm-package-arg", "licenseFile": "\\node_modules\\npm-package-arg\\LICENSE" }, - "npm-packlist@7.0.4": { + "npm-packlist@8.0.2": { "licenses": "ISC", "repository": "https://github.com/npm/npm-packlist", "publisher": "GitHub Inc.", "path": "\\node_modules\\npm-packlist", "licenseFile": "\\node_modules\\npm-packlist\\LICENSE" }, - "npm-pick-manifest@8.0.1": { + "npm-pick-manifest@9.0.0": { "licenses": "ISC", "repository": "https://github.com/npm/npm-pick-manifest", "publisher": "GitHub Inc.", "path": "\\node_modules\\npm-pick-manifest", "licenseFile": "\\node_modules\\npm-pick-manifest\\LICENSE.md" }, - "npm-registry-fetch@14.0.5": { + "npm-registry-fetch@16.2.1": { "licenses": "ISC", "repository": "https://github.com/npm/npm-registry-fetch", "publisher": "GitHub Inc.", @@ -8072,13 +7612,6 @@ "path": "\\node_modules\\npm-run-path", "licenseFile": "\\node_modules\\npm-run-path\\license" }, - "npmlog@6.0.2": { - "licenses": "ISC", - "repository": "https://github.com/npm/npmlog", - "publisher": "GitHub Inc.", - "path": "\\node_modules\\npmlog", - "licenseFile": "\\node_modules\\npmlog\\LICENSE.md" - }, "nth-check@2.1.1": { "licenses": "BSD-2-Clause", "repository": "https://github.com/fb55/nth-check", @@ -8087,15 +7620,6 @@ "path": "\\node_modules\\nth-check", "licenseFile": "\\node_modules\\nth-check\\LICENSE" }, - "nwsapi@2.2.7": { - "licenses": "MIT", - "repository": "https://github.com/dperini/nwsapi", - "publisher": "Diego Perini", - "email": "diego.perini@gmail.com", - "url": "http://www.iport.it/", - "path": "\\node_modules\\nwsapi", - "licenseFile": "\\node_modules\\nwsapi\\LICENSE" - }, "oauth-sign@0.9.0": { "licenses": "Apache-2.0", "repository": "https://github.com/mikeal/oauth-sign", @@ -8131,7 +7655,7 @@ "path": "\\node_modules\\object-inspect", "licenseFile": "\\node_modules\\object-inspect\\LICENSE" }, - "object-is@1.1.5": { + "object-is@1.1.6": { "licenses": "MIT", "repository": "https://github.com/es-shims/object-is", "publisher": "Jordan Harband", @@ -8147,13 +7671,6 @@ "path": "\\node_modules\\object-keys", "licenseFile": "\\node_modules\\object-keys\\LICENSE" }, - "object-path@0.11.8": { - "licenses": "MIT", - "repository": "https://github.com/mariocasciaro/object-path", - "publisher": "Mario Casciaro", - "path": "\\node_modules\\object-path", - "licenseFile": "\\node_modules\\object-path\\LICENSE" - }, "object-visit@1.0.1": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/object-visit", @@ -8162,7 +7679,7 @@ "path": "\\node_modules\\object-visit", "licenseFile": "\\node_modules\\object-visit\\LICENSE" }, - "object.assign@4.1.4": { + "object.assign@4.1.5": { "licenses": "MIT", "repository": "https://github.com/ljharb/object.assign", "publisher": "Jordan Harband", @@ -8285,14 +7802,6 @@ "path": "\\node_modules\\opensearch-browser", "licenseFile": "\\node_modules\\opensearch-browser\\LICENSE" }, - "optionator@0.8.3": { - "licenses": "MIT", - "repository": "https://github.com/gkz/optionator", - "publisher": "George Zahariev", - "email": "z@georgezahariev.com", - "path": "\\node_modules\\optionator", - "licenseFile": "\\node_modules\\optionator\\LICENSE" - }, "ora@5.4.1": { "licenses": "MIT", "repository": "https://github.com/sindresorhus/ora", @@ -8365,6 +7874,15 @@ "path": "\\node_modules\\p-map", "licenseFile": "\\node_modules\\p-map\\license" }, + "p-map@6.0.0": { + "licenses": "MIT", + "repository": "https://github.com/sindresorhus/p-map", + "publisher": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com", + "path": "\\node_modules\\cpx2\\node_modules\\p-map", + "licenseFile": "\\node_modules\\cpx2\\node_modules\\p-map\\license" + }, "p-retry@4.6.2": { "licenses": "MIT", "repository": "https://github.com/sindresorhus/p-retry", @@ -8383,7 +7901,16 @@ "path": "\\node_modules\\p-try", "licenseFile": "\\node_modules\\p-try\\license" }, - "pacote@15.2.0": { + "package-json-from-dist@1.0.0": { + "licenses": "BlueOak-1.0.0", + "repository": "https://github.com/isaacs/package-json-from-dist", + "publisher": "Isaac Z. Schlueter", + "email": "i@izs.me", + "url": "https://izs.me", + "path": "\\node_modules\\package-json-from-dist", + "licenseFile": "\\node_modules\\package-json-from-dist\\LICENSE.md" + }, + "pacote@17.0.6": { "licenses": "ISC", "repository": "https://github.com/npm/pacote", "publisher": "GitHub Inc.", @@ -8399,8 +7926,8 @@ "pako@1.0.11": { "licenses": "(MIT AND Zlib)", "repository": "https://github.com/nodeca/pako", - "path": "\\node_modules\\hdr-histogram-js\\node_modules\\pako", - "licenseFile": "\\node_modules\\hdr-histogram-js\\node_modules\\pako\\LICENSE" + "path": "\\node_modules\\jszip\\node_modules\\pako", + "licenseFile": "\\node_modules\\jszip\\node_modules\\pako\\LICENSE" }, "pako@2.1.0": { "licenses": "(MIT AND Zlib)", @@ -8486,15 +8013,6 @@ "path": "\\node_modules\\parse5-sax-parser", "licenseFile": "\\node_modules\\parse5-sax-parser\\LICENSE" }, - "parse5@6.0.1": { - "licenses": "MIT", - "repository": "https://github.com/inikulin/parse5", - "publisher": "Ivan Nikulin", - "email": "ifaaan@gmail.com", - "url": "https://github.com/inikulin", - "path": "\\node_modules\\jsdom\\node_modules\\parse5", - "licenseFile": "\\node_modules\\jsdom\\node_modules\\parse5\\LICENSE" - }, "parse5@7.1.2": { "licenses": "MIT", "repository": "https://github.com/inikulin/parse5", @@ -8580,7 +8098,7 @@ "path": "\\node_modules\\path-parse", "licenseFile": "\\node_modules\\path-parse\\LICENSE" }, - "path-scurry@1.10.1": { + "path-scurry@1.11.1": { "licenses": "BlueOak-1.0.0", "repository": "https://github.com/isaacs/path-scurry", "publisher": "Isaac Z. Schlueter", @@ -8629,7 +8147,7 @@ "path": "\\node_modules\\pdfjs-dist", "licenseFile": "\\node_modules\\pdfjs-dist\\LICENSE" }, - "pdfmake@0.2.8": { + "pdfmake@0.2.10": { "licenses": "MIT", "repository": "https://github.com/bpampuch/pdfmake", "publisher": "Bartek Pampuch", @@ -8645,7 +8163,7 @@ "path": "\\node_modules\\performance-now", "licenseFile": "\\node_modules\\performance-now\\license.txt" }, - "picocolors@1.0.0": { + "picocolors@1.0.1": { "licenses": "ISC", "repository": "https://github.com/alexeyraspopov/picocolors", "publisher": "Alexey Raspopov", @@ -8660,6 +8178,14 @@ "path": "\\node_modules\\picomatch", "licenseFile": "\\node_modules\\picomatch\\LICENSE" }, + "picomatch@4.0.1": { + "licenses": "MIT", + "repository": "https://github.com/micromatch/picomatch", + "publisher": "Jon Schlinkert", + "url": "https://github.com/jonschlinkert", + "path": "\\node_modules\\@angular-devkit\\core\\node_modules\\picomatch", + "licenseFile": "\\node_modules\\@angular-devkit\\core\\node_modules\\picomatch\\LICENSE" + }, "pify@2.3.0": { "licenses": "MIT", "repository": "https://github.com/sindresorhus/pify", @@ -8696,7 +8222,7 @@ "path": "\\node_modules\\pinkie", "licenseFile": "\\node_modules\\pinkie\\license" }, - "piscina@4.0.0": { + "piscina@4.4.0": { "licenses": "MIT", "repository": "https://github.com/piscinajs/piscina", "publisher": "James M Snell", @@ -8746,7 +8272,15 @@ "path": "\\node_modules\\posix-character-classes", "licenseFile": "\\node_modules\\posix-character-classes\\LICENSE" }, - "postcss-loader@7.3.3": { + "possible-typed-array-names@1.0.0": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/possible-typed-array-names", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\possible-typed-array-names", + "licenseFile": "\\node_modules\\possible-typed-array-names\\LICENSE" + }, + "postcss-loader@8.1.1": { "licenses": "MIT", "repository": "https://github.com/webpack-contrib/postcss-loader", "publisher": "Andrey Sitnik", @@ -8754,21 +8288,28 @@ "path": "\\node_modules\\postcss-loader", "licenseFile": "\\node_modules\\postcss-loader\\LICENSE" }, - "postcss-modules-extract-imports@3.0.0": { + "postcss-media-query-parser@0.2.3": { + "licenses": "MIT", + "repository": "https://github.com/dryoma/postcss-media-query-parser", + "publisher": "dryoma", + "path": "\\node_modules\\postcss-media-query-parser", + "licenseFile": "\\node_modules\\postcss-media-query-parser\\README.md" + }, + "postcss-modules-extract-imports@3.1.0": { "licenses": "ISC", "repository": "https://github.com/css-modules/postcss-modules-extract-imports", "publisher": "Glen Maddern", "path": "\\node_modules\\postcss-modules-extract-imports", "licenseFile": "\\node_modules\\postcss-modules-extract-imports\\LICENSE" }, - "postcss-modules-local-by-default@4.0.3": { + "postcss-modules-local-by-default@4.0.5": { "licenses": "MIT", "repository": "https://github.com/css-modules/postcss-modules-local-by-default", "publisher": "Mark Dalgleish", "path": "\\node_modules\\postcss-modules-local-by-default", "licenseFile": "\\node_modules\\postcss-modules-local-by-default\\LICENSE" }, - "postcss-modules-scope@3.0.0": { + "postcss-modules-scope@3.2.0": { "licenses": "ISC", "repository": "https://github.com/css-modules/postcss-modules-scope", "publisher": "Glen Maddern", @@ -8782,19 +8323,12 @@ "path": "\\node_modules\\postcss-modules-values", "licenseFile": "\\node_modules\\postcss-modules-values\\LICENSE" }, - "postcss-selector-parser@6.0.13": { + "postcss-selector-parser@6.1.0": { "licenses": "MIT", "repository": "https://github.com/postcss/postcss-selector-parser", "path": "\\node_modules\\postcss-selector-parser", "licenseFile": "\\node_modules\\postcss-selector-parser\\LICENSE-MIT" }, - "postcss-url@10.1.3": { - "licenses": "MIT", - "repository": "https://github.com/postcss/postcss-url", - "publisher": "Maxime Thirouin", - "path": "\\node_modules\\postcss-url", - "licenseFile": "\\node_modules\\postcss-url\\LICENSE" - }, "postcss-value-parser@4.2.0": { "licenses": "MIT", "repository": "https://github.com/TrySound/postcss-value-parser", @@ -8803,7 +8337,7 @@ "path": "\\node_modules\\postcss-value-parser", "licenseFile": "\\node_modules\\postcss-value-parser\\LICENSE" }, - "postcss@8.4.31": { + "postcss@8.4.35": { "licenses": "MIT", "repository": "https://github.com/postcss/postcss", "publisher": "Andrey Sitnik", @@ -8818,14 +8352,6 @@ "path": "\\node_modules\\potpack", "licenseFile": "\\node_modules\\potpack\\LICENSE" }, - "prelude-ls@1.1.2": { - "licenses": "MIT", - "repository": "https://github.com/gkz/prelude-ls", - "publisher": "George Zahariev", - "email": "z@georgezahariev.com", - "path": "\\node_modules\\prelude-ls", - "licenseFile": "\\node_modules\\prelude-ls\\LICENSE" - }, "preserve@0.2.0": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/preserve", @@ -8834,15 +8360,6 @@ "path": "\\node_modules\\preserve", "licenseFile": "\\node_modules\\preserve\\LICENSE" }, - "pretty-bytes@5.6.0": { - "licenses": "MIT", - "repository": "https://github.com/sindresorhus/pretty-bytes", - "publisher": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com", - "path": "\\node_modules\\pretty-bytes", - "licenseFile": "\\node_modules\\pretty-bytes\\license" - }, "prismjs@1.29.0": { "licenses": "MIT", "repository": "https://github.com/PrismJS/prism", @@ -8857,13 +8374,20 @@ "path": "\\node_modules\\proc-log", "licenseFile": "\\node_modules\\proc-log\\LICENSE" }, + "proc-log@4.2.0": { + "licenses": "ISC", + "repository": "https://github.com/npm/proc-log", + "publisher": "GitHub Inc.", + "path": "\\node_modules\\make-fetch-happen\\node_modules\\proc-log", + "licenseFile": "\\node_modules\\make-fetch-happen\\node_modules\\proc-log\\LICENSE" + }, "process-nextick-args@2.0.1": { "licenses": "MIT", "repository": "https://github.com/calvinmetcalf/process-nextick-args", "path": "\\node_modules\\process-nextick-args", "licenseFile": "\\node_modules\\process-nextick-args\\license.md" }, - "proj4@2.9.2": { + "proj4@2.11.0": { "licenses": "MIT", "repository": "https://github.com/proj4js/proj4js", "path": "\\node_modules\\proj4", @@ -8958,14 +8482,6 @@ "path": "\\node_modules\\pump", "licenseFile": "\\node_modules\\pump\\LICENSE" }, - "punycode@1.4.1": { - "licenses": "MIT", - "repository": "https://github.com/bestiejs/punycode.js", - "publisher": "Mathias Bynens", - "url": "https://mathiasbynens.be/", - "path": "\\node_modules\\url\\node_modules\\punycode", - "licenseFile": "\\node_modules\\url\\node_modules\\punycode\\LICENSE-MIT.txt" - }, "punycode@2.3.1": { "licenses": "MIT", "repository": "https://github.com/mathiasbynens/punycode.js", @@ -8996,12 +8512,6 @@ "path": "\\node_modules\\qs", "licenseFile": "\\node_modules\\qs\\LICENSE.md" }, - "qs@6.11.2": { - "licenses": "BSD-3-Clause", - "repository": "https://github.com/ljharb/qs", - "path": "\\node_modules\\url\\node_modules\\qs", - "licenseFile": "\\node_modules\\url\\node_modules\\qs\\LICENSE.md" - }, "qs@6.5.3": { "licenses": "BSD-3-Clause", "repository": "https://github.com/ljharb/qs", @@ -9039,15 +8549,6 @@ "path": "\\node_modules\\quickselect", "licenseFile": "\\node_modules\\quickselect\\LICENSE" }, - "quote-stream@1.0.2": { - "licenses": "MIT", - "repository": "https://github.com/substack/quote-stream", - "publisher": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net", - "path": "\\node_modules\\quote-stream", - "licenseFile": "\\node_modules\\quote-stream\\LICENSE" - }, "ramda@0.29.1": { "licenses": "MIT", "repository": "https://github.com/ramda/ramda", @@ -9080,15 +8581,6 @@ "path": "\\node_modules\\range-parser", "licenseFile": "\\node_modules\\range-parser\\LICENSE" }, - "raw-body@2.5.1": { - "licenses": "MIT", - "repository": "https://github.com/stream-utils/raw-body", - "publisher": "Jonathan Ong", - "email": "me@jongleberry.com", - "url": "http://jongleberry.com", - "path": "\\node_modules\\express\\node_modules\\raw-body", - "licenseFile": "\\node_modules\\express\\node_modules\\raw-body\\LICENSE" - }, "raw-body@2.5.2": { "licenses": "MIT", "repository": "https://github.com/stream-utils/raw-body", @@ -9112,7 +8604,7 @@ "path": "\\node_modules\\read-package-json-fast", "licenseFile": "\\node_modules\\read-package-json-fast\\LICENSE" }, - "read-package-json@6.0.4": { + "read-package-json@7.0.1": { "licenses": "ISC", "repository": "https://github.com/npm/read-package-json", "publisher": "GitHub Inc.", @@ -9122,8 +8614,8 @@ "readable-stream@2.3.8": { "licenses": "MIT", "repository": "https://github.com/nodejs/readable-stream", - "path": "\\node_modules\\through2\\node_modules\\readable-stream", - "licenseFile": "\\node_modules\\through2\\node_modules\\readable-stream\\LICENSE" + "path": "\\node_modules\\hpack.js\\node_modules\\readable-stream", + "licenseFile": "\\node_modules\\hpack.js\\node_modules\\readable-stream\\LICENSE" }, "readable-stream@3.6.2": { "licenses": "MIT", @@ -9131,15 +8623,6 @@ "path": "\\node_modules\\readable-stream", "licenseFile": "\\node_modules\\readable-stream\\LICENSE" }, - "readdirp@2.2.1": { - "licenses": "MIT", - "repository": "https://github.com/paulmillr/readdirp", - "publisher": "Thorsten Lorenz", - "email": "thlorenz@gmx.de", - "url": "thlorenz.com", - "path": "\\node_modules\\cpx\\node_modules\\readdirp", - "licenseFile": "\\node_modules\\cpx\\node_modules\\readdirp\\LICENSE" - }, "readdirp@3.6.0": { "licenses": "MIT", "repository": "https://github.com/paulmillr/readdirp", @@ -9149,7 +8632,7 @@ "path": "\\node_modules\\readdirp", "licenseFile": "\\node_modules\\readdirp\\LICENSE" }, - "reflect-metadata@0.1.13": { + "reflect-metadata@0.2.2": { "licenses": "Apache-2.0", "repository": "https://github.com/rbuckton/reflect-metadata", "publisher": "Ron Buckton", @@ -9182,7 +8665,7 @@ "path": "\\node_modules\\babel-runtime\\node_modules\\regenerator-runtime", "licenseFile": "\\node_modules\\babel-runtime\\node_modules\\regenerator-runtime\\README.md" }, - "regenerator-runtime@0.13.11": { + "regenerator-runtime@0.14.1": { "licenses": "MIT", "repository": "https://github.com/facebook/regenerator/tree/main/packages/runtime", "publisher": "Ben Newman", @@ -9190,14 +8673,6 @@ "path": "\\node_modules\\regenerator-runtime", "licenseFile": "\\node_modules\\regenerator-runtime\\LICENSE" }, - "regenerator-runtime@0.14.0": { - "licenses": "MIT", - "repository": "https://github.com/facebook/regenerator/tree/main/packages/runtime", - "publisher": "Ben Newman", - "email": "bn@cs.stanford.edu", - "path": "\\node_modules\\i18next\\node_modules\\regenerator-runtime", - "licenseFile": "\\node_modules\\i18next\\node_modules\\regenerator-runtime\\LICENSE" - }, "regenerator-transform@0.15.2": { "licenses": "MIT", "repository": "https://github.com/facebook/regenerator/tree/main/packages/transform", @@ -9231,7 +8706,7 @@ "path": "\\node_modules\\regex-parser", "licenseFile": "\\node_modules\\regex-parser\\LICENSE" }, - "regexp.prototype.flags@1.5.1": { + "regexp.prototype.flags@1.5.2": { "licenses": "MIT", "repository": "https://github.com/es-shims/RegExp.prototype.flags", "publisher": "Jordan Harband", @@ -9376,16 +8851,7 @@ "path": "\\node_modules\\resolve-url", "licenseFile": "\\node_modules\\resolve-url\\LICENSE" }, - "resolve@1.1.7": { - "licenses": "MIT", - "repository": "https://github.com/substack/node-resolve", - "publisher": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net", - "path": "\\node_modules\\browser-resolve\\node_modules\\resolve", - "licenseFile": "\\node_modules\\browser-resolve\\node_modules\\resolve\\LICENSE" - }, - "resolve@1.22.2": { + "resolve@1.22.8": { "licenses": "MIT", "repository": "https://github.com/browserify/resolve", "publisher": "James Halliday", @@ -9394,15 +8860,6 @@ "path": "\\node_modules\\resolve", "licenseFile": "\\node_modules\\resolve\\LICENSE" }, - "resolve@1.22.8": { - "licenses": "MIT", - "repository": "https://github.com/browserify/resolve", - "publisher": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net", - "path": "\\node_modules\\depcheck\\node_modules\\resolve", - "licenseFile": "\\node_modules\\depcheck\\node_modules\\resolve\\LICENSE" - }, "restore-cursor@3.1.0": { "licenses": "MIT", "repository": "https://github.com/sindresorhus/restore-cursor", @@ -9479,14 +8936,14 @@ "path": "\\node_modules\\robust-predicates", "licenseFile": "\\node_modules\\robust-predicates\\LICENSE" }, - "rollup@3.29.4": { + "rollup@4.18.1": { "licenses": "MIT", "repository": "https://github.com/rollup/rollup", "publisher": "Rich Harris", "path": "\\node_modules\\rollup", "licenseFile": "\\node_modules\\rollup\\LICENSE.md" }, - "run-async@2.4.1": { + "run-async@3.0.0": { "licenses": "MIT", "repository": "https://github.com/SBoudrias/run-async", "publisher": "Simon Boudrias", @@ -9527,14 +8984,22 @@ "path": "\\node_modules\\rxjs", "licenseFile": "\\node_modules\\rxjs\\LICENSE.txt" }, + "safe-array-concat@1.1.2": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/safe-array-concat", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\safe-array-concat", + "licenseFile": "\\node_modules\\safe-array-concat\\LICENSE" + }, "safe-buffer@5.1.2": { "licenses": "MIT", "repository": "https://github.com/feross/safe-buffer", "publisher": "Feross Aboukhadijeh", "email": "feross@feross.org", "url": "http://feross.org", - "path": "\\node_modules\\through2\\node_modules\\safe-buffer", - "licenseFile": "\\node_modules\\through2\\node_modules\\safe-buffer\\LICENSE" + "path": "\\node_modules\\hpack.js\\node_modules\\safe-buffer", + "licenseFile": "\\node_modules\\hpack.js\\node_modules\\safe-buffer\\LICENSE" }, "safe-buffer@5.2.1": { "licenses": "MIT", @@ -9545,6 +9010,14 @@ "path": "\\node_modules\\safe-buffer", "licenseFile": "\\node_modules\\safe-buffer\\LICENSE" }, + "safe-regex-test@1.0.3": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/safe-regex-test", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\safe-regex-test", + "licenseFile": "\\node_modules\\safe-regex-test\\LICENSE" + }, "safe-regex@1.1.0": { "licenses": "MIT", "repository": "https://github.com/substack/safe-regex", @@ -9563,14 +9036,14 @@ "path": "\\node_modules\\safer-buffer", "licenseFile": "\\node_modules\\safer-buffer\\LICENSE" }, - "sass-loader@13.3.2": { + "sass-loader@14.1.1": { "licenses": "MIT", "repository": "https://github.com/webpack-contrib/sass-loader", "publisher": "J. Tangelder", "path": "\\node_modules\\sass-loader", "licenseFile": "\\node_modules\\sass-loader\\LICENSE" }, - "sass@1.64.1": { + "sass@1.71.1": { "licenses": "MIT", "repository": "https://github.com/sass/dart-sass", "publisher": "Natalie Weizenbaum", @@ -9597,14 +9070,6 @@ "path": "\\node_modules\\sax", "licenseFile": "\\node_modules\\sax\\LICENSE" }, - "saxes@5.0.1": { - "licenses": "ISC", - "repository": "https://github.com/lddubeau/saxes", - "publisher": "Louis-Dominique Dubeau", - "email": "ldd@lddubeau.com", - "path": "\\node_modules\\saxes", - "licenseFile": "\\node_modules\\saxes\\README.md" - }, "schema-utils@3.3.0": { "licenses": "MIT", "repository": "https://github.com/webpack/schema-utils", @@ -9621,14 +9086,6 @@ "path": "\\node_modules\\schema-utils", "licenseFile": "\\node_modules\\schema-utils\\LICENSE" }, - "scope-analyzer@2.1.2": { - "licenses": "Apache-2.0", - "repository": "https://github.com/goto-bus-stop/scope-analyzer", - "publisher": "Renée Kooi", - "email": "renee@kooi.me", - "path": "\\node_modules\\scope-analyzer", - "licenseFile": "\\node_modules\\scope-analyzer\\LICENSE.md" - }, "select-hose@2.0.0": { "licenses": "MIT", "repository": "https://github.com/indutny/select-hose", @@ -9691,6 +9148,20 @@ "path": "\\node_modules\\semver", "licenseFile": "\\node_modules\\semver\\LICENSE" }, + "semver@7.6.0": { + "licenses": "ISC", + "repository": "https://github.com/npm/node-semver", + "publisher": "GitHub Inc.", + "path": "\\node_modules\\@angular\\cli\\node_modules\\semver", + "licenseFile": "\\node_modules\\@angular\\cli\\node_modules\\semver\\LICENSE" + }, + "semver@7.6.2": { + "licenses": "ISC", + "repository": "https://github.com/npm/node-semver", + "publisher": "GitHub Inc.", + "path": "\\node_modules\\@compodoc\\compodoc\\node_modules\\semver", + "licenseFile": "\\node_modules\\@compodoc\\compodoc\\node_modules\\semver\\LICENSE" + }, "send@0.18.0": { "licenses": "MIT", "repository": "https://github.com/pillarjs/send", @@ -9731,7 +9202,7 @@ "path": "\\node_modules\\set-blocking", "licenseFile": "\\node_modules\\set-blocking\\LICENSE.txt" }, - "set-function-length@1.1.1": { + "set-function-length@1.2.2": { "licenses": "MIT", "repository": "https://github.com/ljharb/set-function-length", "publisher": "Jordan Harband", @@ -9739,7 +9210,7 @@ "path": "\\node_modules\\set-function-length", "licenseFile": "\\node_modules\\set-function-length\\LICENSE" }, - "set-function-name@2.0.1": { + "set-function-name@2.0.2": { "licenses": "MIT", "repository": "https://github.com/ljharb/set-function-name", "publisher": "Jordan Harband", @@ -9784,15 +9255,6 @@ "path": "\\node_modules\\shallow-clone", "licenseFile": "\\node_modules\\shallow-clone\\LICENSE" }, - "shallow-copy@0.0.1": { - "licenses": "MIT", - "repository": "https://github.com/substack/shallow-copy", - "publisher": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net", - "path": "\\node_modules\\shallow-copy", - "licenseFile": "\\node_modules\\shallow-copy\\LICENSE" - }, "shebang-command@2.0.0": { "licenses": "MIT", "repository": "https://github.com/kevva/shebang-command", @@ -9844,7 +9306,7 @@ "path": "\\node_modules\\signal-exit", "licenseFile": "\\node_modules\\signal-exit\\LICENSE.txt" }, - "sigstore@1.9.0": { + "sigstore@2.3.1": { "licenses": "Apache-2.0", "repository": "https://github.com/sigstore/sigstore-js", "publisher": "bdehamer@github.com", @@ -9916,16 +9378,16 @@ "path": "\\node_modules\\sockjs", "licenseFile": "\\node_modules\\sockjs\\LICENSE" }, - "socks-proxy-agent@7.0.0": { + "socks-proxy-agent@8.0.4": { "licenses": "MIT", - "repository": "https://github.com/TooTallNate/node-socks-proxy-agent", + "repository": "https://github.com/TooTallNate/proxy-agents", "publisher": "Nathan Rajlich", "email": "nathan@tootallnate.net", "url": "http://n8.io/", "path": "\\node_modules\\socks-proxy-agent", - "licenseFile": "\\node_modules\\socks-proxy-agent\\README.md" + "licenseFile": "\\node_modules\\socks-proxy-agent\\LICENSE" }, - "socks@2.7.1": { + "socks@2.8.3": { "licenses": "MIT", "repository": "https://github.com/JoshGlazebrook/socks", "publisher": "Josh Glazebrook", @@ -9988,7 +9450,7 @@ "path": "\\node_modules\\source-map-js", "licenseFile": "\\node_modules\\source-map-js\\LICENSE" }, - "source-map-loader@4.0.1": { + "source-map-loader@5.0.0": { "licenses": "MIT", "repository": "https://github.com/webpack-contrib/source-map-loader", "publisher": "Tobias Koppers @sokra", @@ -10021,29 +9483,21 @@ "path": "\\node_modules\\source-map-url", "licenseFile": "\\node_modules\\source-map-url\\LICENSE" }, - "source-map@0.1.43": { - "licenses": "BSD", - "repository": "https://github.com/mozilla/source-map", - "publisher": "Nick Fitzgerald", - "email": "nfitzgerald@mozilla.com", - "path": "\\node_modules\\ast-transform\\node_modules\\source-map", - "licenseFile": "\\node_modules\\ast-transform\\node_modules\\source-map\\LICENSE" - }, "source-map@0.5.7": { "licenses": "BSD-3-Clause", "repository": "https://github.com/mozilla/source-map", "publisher": "Nick Fitzgerald", "email": "nfitzgerald@mozilla.com", - "path": "\\node_modules\\merge-source-map\\node_modules\\source-map", - "licenseFile": "\\node_modules\\merge-source-map\\node_modules\\source-map\\LICENSE" + "path": "\\node_modules\\snapdragon\\node_modules\\source-map", + "licenseFile": "\\node_modules\\snapdragon\\node_modules\\source-map\\LICENSE" }, "source-map@0.6.1": { "licenses": "BSD-3-Clause", "repository": "https://github.com/mozilla/source-map", "publisher": "Nick Fitzgerald", "email": "nfitzgerald@mozilla.com", - "path": "\\node_modules\\static-eval\\node_modules\\source-map", - "licenseFile": "\\node_modules\\static-eval\\node_modules\\source-map\\LICENSE" + "path": "\\node_modules\\istanbul-lib-source-maps\\node_modules\\source-map", + "licenseFile": "\\node_modules\\istanbul-lib-source-maps\\node_modules\\source-map\\LICENSE" }, "source-map@0.7.4": { "licenses": "BSD-3-Clause", @@ -10053,20 +9507,13 @@ "path": "\\node_modules\\source-map", "licenseFile": "\\node_modules\\source-map\\LICENSE" }, - "sourcemap-codec@1.4.8": { - "licenses": "MIT", - "repository": "https://github.com/Rich-Harris/sourcemap-codec", - "publisher": "Rich Harris", - "path": "\\node_modules\\sourcemap-codec", - "licenseFile": "\\node_modules\\sourcemap-codec\\LICENSE" - }, "spdx-correct@3.2.0": { "licenses": "Apache-2.0", "repository": "https://github.com/jslicense/spdx-correct.js", "path": "\\node_modules\\spdx-correct", "licenseFile": "\\node_modules\\spdx-correct\\LICENSE" }, - "spdx-exceptions@2.3.0": { + "spdx-exceptions@2.5.0": { "licenses": "CC-BY-3.0", "repository": "https://github.com/kemitchell/spdx-exceptions.json", "publisher": "The Linux Foundation", @@ -10082,7 +9529,7 @@ "path": "\\node_modules\\spdx-expression-parse", "licenseFile": "\\node_modules\\spdx-expression-parse\\LICENSE" }, - "spdx-license-ids@3.0.16": { + "spdx-license-ids@3.0.18": { "licenses": "CC0-1.0", "repository": "https://github.com/jslicense/spdx-license-ids", "publisher": "Shinnosuke Watanabe", @@ -10147,29 +9594,13 @@ "path": "\\node_modules\\sshpk", "licenseFile": "\\node_modules\\sshpk\\LICENSE" }, - "ssri@10.0.5": { + "ssri@10.0.6": { "licenses": "ISC", "repository": "https://github.com/npm/ssri", "publisher": "GitHub Inc.", "path": "\\node_modules\\ssri", "licenseFile": "\\node_modules\\ssri\\LICENSE.md" }, - "ssri@9.0.1": { - "licenses": "ISC", - "repository": "https://github.com/npm/ssri", - "publisher": "GitHub Inc.", - "path": "\\node_modules\\make-fetch-happen\\node_modules\\ssri", - "licenseFile": "\\node_modules\\make-fetch-happen\\node_modules\\ssri\\LICENSE.md" - }, - "static-eval@2.1.0": { - "licenses": "MIT", - "repository": "https://github.com/browserify/static-eval", - "publisher": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net", - "path": "\\node_modules\\static-eval", - "licenseFile": "\\node_modules\\static-eval\\LICENSE" - }, "static-extend@0.1.2": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/static-extend", @@ -10178,15 +9609,6 @@ "path": "\\node_modules\\static-extend", "licenseFile": "\\node_modules\\static-extend\\LICENSE" }, - "static-module@3.0.4": { - "licenses": "MIT", - "repository": "https://github.com/substack/static-module", - "publisher": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net", - "path": "\\node_modules\\static-module", - "licenseFile": "\\node_modules\\static-module\\LICENSE" - }, "statuses@1.5.0": { "licenses": "MIT", "repository": "https://github.com/jshttp/statuses", @@ -10199,15 +9621,6 @@ "path": "\\node_modules\\http-errors\\node_modules\\statuses", "licenseFile": "\\node_modules\\http-errors\\node_modules\\statuses\\LICENSE" }, - "stream-browserify@3.0.0": { - "licenses": "MIT", - "repository": "https://github.com/browserify/stream-browserify", - "publisher": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net", - "path": "\\node_modules\\stream-browserify", - "licenseFile": "\\node_modules\\stream-browserify\\LICENSE" - }, "stream-combiner@0.2.2": { "licenses": "MIT", "repository": "https://github.com/dominictarr/stream-combiner", @@ -10217,13 +9630,6 @@ "path": "\\node_modules\\stream-combiner", "licenseFile": "\\node_modules\\stream-combiner\\LICENSE" }, - "stream-http@3.2.0": { - "licenses": "MIT", - "repository": "https://github.com/jhiesey/stream-http", - "publisher": "John Hiesey", - "path": "\\node_modules\\stream-http", - "licenseFile": "\\node_modules\\stream-http\\LICENSE" - }, "streamroller@3.1.5": { "licenses": "MIT", "repository": "https://github.com/log4js-node/streamroller", @@ -10238,8 +9644,8 @@ "publisher": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com", - "path": "\\node_modules\\string-width-cjs", - "licenseFile": "\\node_modules\\string-width-cjs\\license" + "path": "\\node_modules\\string-width", + "licenseFile": "\\node_modules\\string-width\\license" }, "string-width@5.1.2": { "licenses": "MIT", @@ -10250,11 +9656,36 @@ "path": "\\node_modules\\@isaacs\\cliui\\node_modules\\string-width", "licenseFile": "\\node_modules\\@isaacs\\cliui\\node_modules\\string-width\\license" }, + "string.prototype.trim@1.2.9": { + "licenses": "MIT", + "repository": "https://github.com/es-shims/String.prototype.trim", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "url": "http://ljharb.codes", + "path": "\\node_modules\\string.prototype.trim", + "licenseFile": "\\node_modules\\string.prototype.trim\\LICENSE" + }, + "string.prototype.trimend@1.0.8": { + "licenses": "MIT", + "repository": "https://github.com/es-shims/String.prototype.trimEnd", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\string.prototype.trimend", + "licenseFile": "\\node_modules\\string.prototype.trimend\\LICENSE" + }, + "string.prototype.trimstart@1.0.8": { + "licenses": "MIT", + "repository": "https://github.com/es-shims/String.prototype.trimStart", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\string.prototype.trimstart", + "licenseFile": "\\node_modules\\string.prototype.trimstart\\LICENSE" + }, "string_decoder@1.1.1": { "licenses": "MIT", "repository": "https://github.com/nodejs/string_decoder", - "path": "\\node_modules\\through2\\node_modules\\string_decoder", - "licenseFile": "\\node_modules\\through2\\node_modules\\string_decoder\\LICENSE" + "path": "\\node_modules\\hpack.js\\node_modules\\string_decoder", + "licenseFile": "\\node_modules\\hpack.js\\node_modules\\string_decoder\\LICENSE" }, "string_decoder@1.3.0": { "licenses": "MIT", @@ -10372,14 +9803,6 @@ "path": "\\node_modules\\symbol-observable", "licenseFile": "\\node_modules\\symbol-observable\\license" }, - "symbol-tree@3.2.4": { - "licenses": "MIT", - "repository": "https://github.com/jsdom/js-symbol-tree", - "publisher": "Joris van der Wel", - "email": "joris@jorisvanderwel.com", - "path": "\\node_modules\\symbol-tree", - "licenseFile": "\\node_modules\\symbol-tree\\LICENSE" - }, "tablesort@5.3.0": { "licenses": "MIT", "repository": "https://github.com/tristen/tablesort", @@ -10394,21 +9817,21 @@ "path": "\\node_modules\\tapable", "licenseFile": "\\node_modules\\tapable\\LICENSE" }, - "tar@6.2.0": { + "tar@6.2.1": { "licenses": "ISC", "repository": "https://github.com/isaacs/node-tar", "publisher": "GitHub Inc.", "path": "\\node_modules\\tar", "licenseFile": "\\node_modules\\tar\\LICENSE" }, - "terser-webpack-plugin@5.3.9": { + "terser-webpack-plugin@5.3.10": { "licenses": "MIT", "repository": "https://github.com/webpack-contrib/terser-webpack-plugin", "publisher": "webpack Contrib Team", "path": "\\node_modules\\terser-webpack-plugin", "licenseFile": "\\node_modules\\terser-webpack-plugin\\LICENSE" }, - "terser@5.19.2": { + "terser@5.29.1": { "licenses": "BSD-2-Clause", "repository": "https://github.com/terser/terser", "publisher": "Mihai Bazon", @@ -10417,6 +9840,15 @@ "path": "\\node_modules\\terser", "licenseFile": "\\node_modules\\terser\\LICENSE" }, + "terser@5.31.2": { + "licenses": "BSD-2-Clause", + "repository": "https://github.com/terser/terser", + "publisher": "Mihai Bazon", + "email": "mihai.bazon@gmail.com", + "url": "http://lisperator.net/", + "path": "\\node_modules\\@dlr-eoc\\services-ogc\\node_modules\\terser", + "licenseFile": "\\node_modules\\@dlr-eoc\\services-ogc\\node_modules\\terser\\LICENSE" + }, "test-exclude@6.0.0": { "licenses": "ISC", "repository": "https://github.com/istanbuljs/test-exclude", @@ -10425,15 +9857,6 @@ "path": "\\node_modules\\test-exclude", "licenseFile": "\\node_modules\\test-exclude\\LICENSE.txt" }, - "text-table@0.2.0": { - "licenses": "MIT", - "repository": "https://github.com/substack/text-table", - "publisher": "James Halliday", - "email": "mail@substack.net", - "url": "http://substack.net", - "path": "\\node_modules\\text-table", - "licenseFile": "\\node_modules\\text-table\\LICENSE" - }, "three@0.137.5": { "licenses": "MIT", "repository": "https://github.com/mrdoob/three.js", @@ -10441,15 +9864,6 @@ "path": "\\node_modules\\three", "licenseFile": "\\node_modules\\three\\LICENSE" }, - "through2@2.0.5": { - "licenses": "MIT", - "repository": "https://github.com/rvagg/through2", - "publisher": "Rod Vagg", - "email": "r@va.gg", - "url": "https://github.com/rvagg", - "path": "\\node_modules\\through2", - "licenseFile": "\\node_modules\\through2\\LICENSE.md" - }, "through@2.3.8": { "licenses": "MIT", "repository": "https://github.com/dominictarr/through", @@ -10525,14 +9939,6 @@ "path": "\\node_modules\\to-object-path", "licenseFile": "\\node_modules\\to-object-path\\LICENSE" }, - "to-regex-range@2.1.1": { - "licenses": "MIT", - "repository": "https://github.com/micromatch/to-regex-range", - "publisher": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert", - "path": "\\node_modules\\cpx\\node_modules\\to-regex-range", - "licenseFile": "\\node_modules\\cpx\\node_modules\\to-regex-range\\LICENSE" - }, "to-regex-range@5.0.1": { "licenses": "MIT", "repository": "https://github.com/micromatch/to-regex-range", @@ -10581,14 +9987,6 @@ "path": "\\node_modules\\request\\node_modules\\tough-cookie", "licenseFile": "\\node_modules\\request\\node_modules\\tough-cookie\\LICENSE" }, - "tough-cookie@4.1.3": { - "licenses": "BSD-3-Clause", - "repository": "https://github.com/salesforce/tough-cookie", - "publisher": "Jeremy Stashewsky", - "email": "jstash@gmail.com", - "path": "\\node_modules\\tough-cookie", - "licenseFile": "\\node_modules\\tough-cookie\\LICENSE" - }, "tr46@0.0.3": { "licenses": "MIT", "repository": "https://github.com/Sebmaster/tr46.js", @@ -10596,15 +9994,7 @@ "email": "npm@smayr.name", "path": "\\node_modules\\node-fetch\\node_modules\\tr46" }, - "tr46@2.1.0": { - "licenses": "MIT", - "repository": "https://github.com/jsdom/tr46", - "publisher": "Sebastian Mayr", - "email": "npm@smayr.name", - "path": "\\node_modules\\tr46", - "licenseFile": "\\node_modules\\tr46\\LICENSE.md" - }, - "traverse@0.6.7": { + "traverse@0.6.9": { "licenses": "MIT", "repository": "https://github.com/ljharb/js-traverse", "publisher": "James Halliday", @@ -10622,7 +10012,7 @@ "path": "\\node_modules\\tree-kill", "licenseFile": "\\node_modules\\tree-kill\\LICENSE" }, - "ts-morph@20.0.0": { + "ts-morph@22.0.0": { "licenses": "MIT", "repository": "https://github.com/dsherret/ts-morph", "publisher": "David Sherret", @@ -10645,14 +10035,14 @@ "path": "\\node_modules\\tsutils\\node_modules\\tslib", "licenseFile": "\\node_modules\\tsutils\\node_modules\\tslib\\LICENSE.txt" }, - "tslib@2.6.1": { + "tslib@2.6.2": { "licenses": "0BSD", "repository": "https://github.com/Microsoft/tslib", "publisher": "Microsoft Corp.", "path": "\\node_modules\\@angular-devkit\\build-angular\\node_modules\\tslib", "licenseFile": "\\node_modules\\@angular-devkit\\build-angular\\node_modules\\tslib\\LICENSE.txt" }, - "tslib@2.6.2": { + "tslib@2.6.3": { "licenses": "0BSD", "repository": "https://github.com/Microsoft/tslib", "publisher": "Microsoft Corp.", @@ -10672,7 +10062,7 @@ "path": "\\node_modules\\tsutils", "licenseFile": "\\node_modules\\tsutils\\LICENSE" }, - "tuf-js@1.1.7": { + "tuf-js@2.2.1": { "licenses": "MIT", "repository": "https://github.com/theupdateframework/tuf-js", "publisher": "bdehamer@github.com", @@ -10695,14 +10085,6 @@ "path": "\\node_modules\\tweetnacl", "licenseFile": "\\node_modules\\tweetnacl\\LICENSE" }, - "type-check@0.3.2": { - "licenses": "MIT", - "repository": "https://github.com/gkz/type-check", - "publisher": "George Zahariev", - "email": "z@georgezahariev.com", - "path": "\\node_modules\\type-check", - "licenseFile": "\\node_modules\\type-check\\LICENSE" - }, "type-fest@0.21.3": { "licenses": "(MIT OR CC0-1.0)", "repository": "https://github.com/sindresorhus/type-fest", @@ -10736,6 +10118,38 @@ "path": "\\node_modules\\ext\\node_modules\\type", "licenseFile": "\\node_modules\\ext\\node_modules\\type\\LICENSE" }, + "typed-array-buffer@1.0.2": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/typed-array-buffer", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\typed-array-buffer", + "licenseFile": "\\node_modules\\typed-array-buffer\\LICENSE" + }, + "typed-array-byte-length@1.0.1": { + "licenses": "MIT", + "repository": "https://github.com/inspect-js/typed-array-byte-length", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\typed-array-byte-length", + "licenseFile": "\\node_modules\\typed-array-byte-length\\LICENSE" + }, + "typed-array-byte-offset@1.0.2": { + "licenses": "MIT", + "repository": "https://github.com/inspect-js/typed-array-byte-offset", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\typed-array-byte-offset", + "licenseFile": "\\node_modules\\typed-array-byte-offset\\LICENSE" + }, + "typed-array-length@1.0.6": { + "licenses": "MIT", + "repository": "https://github.com/inspect-js/typed-array-length", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\typed-array-length", + "licenseFile": "\\node_modules\\typed-array-length\\LICENSE" + }, "typed-assert@1.0.9": { "licenses": "MIT", "repository": "https://github.com/elierotenberg/typed-assert", @@ -10744,6 +10158,14 @@ "path": "\\node_modules\\typed-assert", "licenseFile": "\\node_modules\\typed-assert\\README.md" }, + "typedarray.prototype.slice@1.0.3": { + "licenses": "MIT", + "repository": "https://github.com/es-shims/TypedArray.prototype.slice", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\typedarray.prototype.slice", + "licenseFile": "\\node_modules\\typedarray.prototype.slice\\LICENSE" + }, "typedarray@0.0.6": { "licenses": "MIT", "repository": "https://github.com/substack/typedarray", @@ -10753,7 +10175,7 @@ "path": "\\node_modules\\typedarray", "licenseFile": "\\node_modules\\typedarray\\LICENSE" }, - "typescript@5.1.6": { + "typescript@5.4.5": { "licenses": "Apache-2.0", "repository": "https://github.com/Microsoft/TypeScript", "publisher": "Microsoft Corp.", @@ -10794,12 +10216,12 @@ "path": "\\node_modules\\uglify-js", "licenseFile": "\\node_modules\\uglify-js\\LICENSE" }, - "ukis-frontend-libraries@12.0.1-next.4": { + "ukis-frontend-libraries@14.0.0-next.0": { "licenses": "UNLICENSED", "private": true, "repository": "https://github.com/dlr-eoc/ukis-frontend-libraries", "publisher": "Team UKIS", - "path": "C:\\Users\\boec_mt\\devWorkspace\\ukis-fix-some-issues", + "path": "", "licenseFile": "\\LICENSE" }, "ukis-libraries-scripts@3.0.1": { @@ -10809,12 +10231,26 @@ "path": "\\node_modules\\ukis-libraries-scripts", "licenseFile": "\\node_modules\\ukis-libraries-scripts\\README.md" }, + "unbox-primitive@1.0.2": { + "licenses": "MIT", + "repository": "https://github.com/ljharb/unbox-primitive", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\unbox-primitive", + "licenseFile": "\\node_modules\\unbox-primitive\\LICENSE" + }, "undici-types@5.26.5": { "licenses": "MIT", "repository": "https://github.com/nodejs/undici", "path": "\\node_modules\\undici-types", "licenseFile": "\\node_modules\\undici-types\\README.md" }, + "undici@6.11.1": { + "licenses": "MIT", + "repository": "https://github.com/nodejs/undici", + "path": "\\node_modules\\undici", + "licenseFile": "\\node_modules\\undici\\LICENSE" + }, "unicode-canonical-property-names-ecmascript@2.0.0": { "licenses": "MIT", "repository": "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript", @@ -10871,13 +10307,6 @@ "path": "\\node_modules\\union-value", "licenseFile": "\\node_modules\\union-value\\LICENSE" }, - "unique-filename@2.0.1": { - "licenses": "ISC", - "repository": "https://github.com/npm/unique-filename", - "publisher": "GitHub Inc.", - "path": "\\node_modules\\make-fetch-happen\\node_modules\\unique-filename", - "licenseFile": "\\node_modules\\make-fetch-happen\\node_modules\\unique-filename\\LICENSE" - }, "unique-filename@3.0.0": { "licenses": "ISC", "repository": "https://github.com/npm/unique-filename", @@ -10885,13 +10314,6 @@ "path": "\\node_modules\\unique-filename", "licenseFile": "\\node_modules\\unique-filename\\LICENSE" }, - "unique-slug@3.0.0": { - "licenses": "ISC", - "repository": "https://github.com/npm/unique-slug", - "publisher": "GitHub Inc.", - "path": "\\node_modules\\make-fetch-happen\\node_modules\\unique-slug", - "licenseFile": "\\node_modules\\make-fetch-happen\\node_modules\\unique-slug\\LICENSE" - }, "unique-slug@4.0.0": { "licenses": "ISC", "repository": "https://github.com/npm/unique-slug", @@ -10907,14 +10329,6 @@ "path": "\\node_modules\\streamroller\\node_modules\\universalify", "licenseFile": "\\node_modules\\streamroller\\node_modules\\universalify\\LICENSE" }, - "universalify@0.2.0": { - "licenses": "MIT", - "repository": "https://github.com/RyanZim/universalify", - "publisher": "Ryan Zimmerman", - "email": "opensrc@ryanzim.com", - "path": "\\node_modules\\tough-cookie\\node_modules\\universalify", - "licenseFile": "\\node_modules\\tough-cookie\\node_modules\\universalify\\LICENSE" - }, "universalify@2.0.1": { "licenses": "MIT", "repository": "https://github.com/RyanZim/universalify", @@ -10947,7 +10361,7 @@ "path": "\\node_modules\\unset-value", "licenseFile": "\\node_modules\\unset-value\\LICENSE" }, - "update-browserslist-db@1.0.13": { + "update-browserslist-db@1.1.0": { "licenses": "MIT", "repository": "https://github.com/browserslist/update-db", "publisher": "Andrey Sitnik", @@ -10985,13 +10399,6 @@ "path": "\\node_modules\\url-parse", "licenseFile": "\\node_modules\\url-parse\\LICENSE" }, - "url@0.11.3": { - "licenses": "MIT", - "repository": "https://github.com/defunctzombie/node-url", - "publisher": "defunctzombie", - "path": "\\node_modules\\url", - "licenseFile": "\\node_modules\\url\\LICENSE" - }, "use@3.1.1": { "licenses": "MIT", "repository": "https://github.com/jonschlinkert/use", @@ -11009,14 +10416,6 @@ "path": "\\node_modules\\util-deprecate", "licenseFile": "\\node_modules\\util-deprecate\\LICENSE" }, - "util@0.12.5": { - "licenses": "MIT", - "repository": "https://github.com/browserify/node-util", - "publisher": "Joyent", - "url": "http://www.joyent.com", - "path": "\\node_modules\\util", - "licenseFile": "\\node_modules\\util\\LICENSE" - }, "utils-merge@1.0.1": { "licenses": "MIT", "repository": "https://github.com/jaredhanson/utils-merge", @@ -11053,7 +10452,7 @@ "path": "\\node_modules\\validate-npm-package-license", "licenseFile": "\\node_modules\\validate-npm-package-license\\LICENSE" }, - "validate-npm-package-name@5.0.0": { + "validate-npm-package-name@5.0.1": { "licenses": "ISC", "repository": "https://github.com/npm/validate-npm-package-name", "publisher": "GitHub Inc.", @@ -11080,7 +10479,7 @@ "path": "\\node_modules\\vis", "licenseFile": "\\node_modules\\vis\\LICENSE-MIT" }, - "vite@4.4.7": { + "vite@5.1.7": { "licenses": "MIT", "repository": "https://github.com/vitejs/vite", "publisher": "Evan You", @@ -11103,14 +10502,6 @@ "path": "\\node_modules\\vt-pbf", "licenseFile": "\\node_modules\\vt-pbf\\LICENSE" }, - "w3c-hr-time@1.0.2": { - "licenses": "MIT", - "repository": "https://github.com/jsdom/w3c-hr-time", - "publisher": "Timothy Gu", - "email": "timothygu99@gmail.com", - "path": "\\node_modules\\w3c-hr-time", - "licenseFile": "\\node_modules\\w3c-hr-time\\LICENSE.md" - }, "w3c-schemas@1.4.0": { "licenses": "BSD-2-Clause", "repository": "https://github.com/highsource/w3c-schemas", @@ -11119,12 +10510,6 @@ "path": "\\node_modules\\w3c-schemas", "licenseFile": "\\node_modules\\w3c-schemas\\README.md" }, - "w3c-xmlserializer@2.0.0": { - "licenses": "MIT", - "repository": "https://github.com/jsdom/w3c-xmlserializer", - "path": "\\node_modules\\w3c-xmlserializer", - "licenseFile": "\\node_modules\\w3c-xmlserializer\\LICENSE.md" - }, "watchpack@2.4.0": { "licenses": "MIT", "repository": "https://github.com/webpack/watchpack", @@ -11178,32 +10563,14 @@ "path": "\\node_modules\\node-fetch\\node_modules\\webidl-conversions", "licenseFile": "\\node_modules\\node-fetch\\node_modules\\webidl-conversions\\LICENSE.md" }, - "webidl-conversions@5.0.0": { - "licenses": "BSD-2-Clause", - "repository": "https://github.com/jsdom/webidl-conversions", - "publisher": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me/", - "path": "\\node_modules\\domexception\\node_modules\\webidl-conversions", - "licenseFile": "\\node_modules\\domexception\\node_modules\\webidl-conversions\\LICENSE.md" - }, - "webidl-conversions@6.1.0": { - "licenses": "BSD-2-Clause", - "repository": "https://github.com/jsdom/webidl-conversions", - "publisher": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me/", - "path": "\\node_modules\\webidl-conversions", - "licenseFile": "\\node_modules\\webidl-conversions\\LICENSE.md" - }, - "webpack-dev-middleware@5.3.3": { + "webpack-dev-middleware@5.3.4": { "licenses": "MIT", "repository": "https://github.com/webpack/webpack-dev-middleware", "publisher": "Tobias Koppers @sokra", "path": "\\node_modules\\webpack-dev-server\\node_modules\\webpack-dev-middleware", "licenseFile": "\\node_modules\\webpack-dev-server\\node_modules\\webpack-dev-middleware\\LICENSE" }, - "webpack-dev-middleware@6.1.1": { + "webpack-dev-middleware@6.1.2": { "licenses": "MIT", "repository": "https://github.com/webpack/webpack-dev-middleware", "publisher": "Tobias Koppers @sokra", @@ -11217,7 +10584,7 @@ "path": "\\node_modules\\webpack-dev-server", "licenseFile": "\\node_modules\\webpack-dev-server\\LICENSE" }, - "webpack-merge@5.9.0": { + "webpack-merge@5.10.0": { "licenses": "MIT", "repository": "https://github.com/survivejs/webpack-merge", "publisher": "Juho Vepsalainen", @@ -11240,7 +10607,7 @@ "path": "\\node_modules\\webpack-subresource-integrity", "licenseFile": "\\node_modules\\webpack-subresource-integrity\\LICENSE" }, - "webpack@5.88.2": { + "webpack@5.90.3": { "licenses": "MIT", "repository": "https://github.com/webpack/webpack", "publisher": "Tobias Koppers @sokra", @@ -11265,30 +10632,12 @@ "path": "\\node_modules\\websocket-extensions", "licenseFile": "\\node_modules\\websocket-extensions\\LICENSE.md" }, - "whatwg-encoding@1.0.5": { - "licenses": "MIT", - "repository": "https://github.com/jsdom/whatwg-encoding", - "publisher": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me/", - "path": "\\node_modules\\whatwg-encoding", - "licenseFile": "\\node_modules\\whatwg-encoding\\LICENSE.txt" - }, "whatwg-fetch@3.6.19": { "licenses": "MIT", "repository": "https://github.com/github/fetch", "path": "\\node_modules\\whatwg-fetch", "licenseFile": "\\node_modules\\whatwg-fetch\\LICENSE" }, - "whatwg-mimetype@2.3.0": { - "licenses": "MIT", - "repository": "https://github.com/jsdom/whatwg-mimetype", - "publisher": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me/", - "path": "\\node_modules\\whatwg-mimetype", - "licenseFile": "\\node_modules\\whatwg-mimetype\\LICENSE.txt" - }, "whatwg-url@5.0.0": { "licenses": "MIT", "repository": "https://github.com/jsdom/whatwg-url", @@ -11297,13 +10646,13 @@ "path": "\\node_modules\\node-fetch\\node_modules\\whatwg-url", "licenseFile": "\\node_modules\\node-fetch\\node_modules\\whatwg-url\\LICENSE.txt" }, - "whatwg-url@8.7.0": { + "which-boxed-primitive@1.0.2": { "licenses": "MIT", - "repository": "https://github.com/jsdom/whatwg-url", - "publisher": "Sebastian Mayr", - "email": "github@smayr.name", - "path": "\\node_modules\\whatwg-url", - "licenseFile": "\\node_modules\\whatwg-url\\LICENSE.txt" + "repository": "https://github.com/inspect-js/which-boxed-primitive", + "publisher": "Jordan Harband", + "email": "ljharb@gmail.com", + "path": "\\node_modules\\which-boxed-primitive", + "licenseFile": "\\node_modules\\which-boxed-primitive\\LICENSE" }, "which-module@2.0.1": { "licenses": "ISC", @@ -11312,7 +10661,7 @@ "path": "\\node_modules\\which-module", "licenseFile": "\\node_modules\\which-module\\LICENSE" }, - "which-typed-array@1.1.13": { + "which-typed-array@1.1.15": { "licenses": "MIT", "repository": "https://github.com/inspect-js/which-typed-array", "publisher": "Jordan Harband", @@ -11339,22 +10688,13 @@ "path": "\\node_modules\\which", "licenseFile": "\\node_modules\\which\\LICENSE" }, - "which@3.0.1": { + "which@4.0.0": { "licenses": "ISC", "repository": "https://github.com/npm/node-which", "publisher": "GitHub Inc.", "path": "\\node_modules\\@npmcli\\promise-spawn\\node_modules\\which", "licenseFile": "\\node_modules\\@npmcli\\promise-spawn\\node_modules\\which\\LICENSE" }, - "wide-align@1.1.5": { - "licenses": "ISC", - "repository": "https://github.com/iarna/wide-align", - "publisher": "Rebecca Turner", - "email": "me@re-becca.org", - "url": "http://re-becca.org/", - "path": "\\node_modules\\wide-align", - "licenseFile": "\\node_modules\\wide-align\\LICENSE" - }, "wildcard@2.0.1": { "licenses": "MIT", "repository": "https://github.com/DamonOehlman/wildcard", @@ -11378,14 +10718,6 @@ "path": "\\node_modules\\wkt-parser", "licenseFile": "\\node_modules\\wkt-parser\\LICENSE.md" }, - "word-wrap@1.2.5": { - "licenses": "MIT", - "repository": "https://github.com/jonschlinkert/word-wrap", - "publisher": "Jon Schlinkert", - "url": "https://github.com/jonschlinkert", - "path": "\\node_modules\\word-wrap", - "licenseFile": "\\node_modules\\word-wrap\\LICENSE" - }, "wordwrap@1.0.0": { "licenses": "MIT", "repository": "https://github.com/substack/node-wordwrap", @@ -11401,8 +10733,8 @@ "publisher": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com", - "path": "\\node_modules\\protractor\\node_modules\\wrap-ansi", - "licenseFile": "\\node_modules\\protractor\\node_modules\\wrap-ansi\\license" + "path": "\\node_modules\\inquirer\\node_modules\\wrap-ansi", + "licenseFile": "\\node_modules\\inquirer\\node_modules\\wrap-ansi\\license" }, "wrap-ansi@7.0.0": { "licenses": "MIT", @@ -11410,8 +10742,8 @@ "publisher": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com", - "path": "\\node_modules\\wrap-ansi-cjs", - "licenseFile": "\\node_modules\\wrap-ansi-cjs\\license" + "path": "\\node_modules\\wrap-ansi", + "licenseFile": "\\node_modules\\wrap-ansi\\license" }, "wrap-ansi@8.1.0": { "licenses": "MIT", @@ -11431,15 +10763,6 @@ "path": "\\node_modules\\wrappy", "licenseFile": "\\node_modules\\wrappy\\LICENSE" }, - "ws@7.5.9": { - "licenses": "MIT", - "repository": "https://github.com/websockets/ws", - "publisher": "Einar Otto Stangvik", - "email": "einaros@gmail.com", - "url": "http://2x.io", - "path": "\\node_modules\\ws", - "licenseFile": "\\node_modules\\ws\\LICENSE" - }, "ws@8.11.0": { "licenses": "MIT", "repository": "https://github.com/websockets/ws", @@ -11449,23 +10772,14 @@ "path": "\\node_modules\\engine.io\\node_modules\\ws", "licenseFile": "\\node_modules\\engine.io\\node_modules\\ws\\LICENSE" }, - "ws@8.14.2": { + "ws@8.18.0": { "licenses": "MIT", "repository": "https://github.com/websockets/ws", "publisher": "Einar Otto Stangvik", "email": "einaros@gmail.com", "url": "http://2x.io", - "path": "\\node_modules\\webpack-dev-server\\node_modules\\ws", - "licenseFile": "\\node_modules\\webpack-dev-server\\node_modules\\ws\\LICENSE" - }, - "xml-name-validator@3.0.0": { - "licenses": "Apache-2.0", - "repository": "https://github.com/jsdom/xml-name-validator", - "publisher": "Domenic Denicola", - "email": "d@domenic.me", - "url": "https://domenic.me/", - "path": "\\node_modules\\xml-name-validator", - "licenseFile": "\\node_modules\\xml-name-validator\\LICENSE.txt" + "path": "\\node_modules\\ws", + "licenseFile": "\\node_modules\\ws\\LICENSE" }, "xml-utils@1.7.0": { "licenses": "CC0-1.0", @@ -11499,14 +10813,6 @@ "path": "\\node_modules\\xmlbuilder", "licenseFile": "\\node_modules\\xmlbuilder\\LICENSE" }, - "xmlchars@2.2.0": { - "licenses": "MIT", - "repository": "https://github.com/lddubeau/xmlchars", - "publisher": "Louis-Dominique Dubeau", - "email": "ldd@lddubeau.com", - "path": "\\node_modules\\xmlchars", - "licenseFile": "\\node_modules\\xmlchars\\LICENSE" - }, "xmldoc@1.3.0": { "licenses": "MIT", "repository": "https://github.com/nfarina/xmldoc", @@ -11540,21 +10846,6 @@ "path": "\\node_modules\\xmlserializer", "licenseFile": "\\node_modules\\xmlserializer\\LICENSE" }, - "xtend@4.0.2": { - "licenses": "MIT", - "repository": "https://github.com/Raynos/xtend", - "publisher": "Raynos", - "email": "raynos2@gmail.com", - "path": "\\node_modules\\xtend", - "licenseFile": "\\node_modules\\xtend\\LICENSE" - }, - "xxhashjs@0.2.2": { - "licenses": "MIT", - "repository": "https://github.com/pierrec/js-xxhash", - "publisher": "Pierre Curto", - "path": "\\node_modules\\xxhashjs", - "licenseFile": "\\node_modules\\xxhashjs\\LICENSE" - }, "y18n@4.0.3": { "licenses": "ISC", "repository": "https://github.com/yargs/y18n", @@ -11610,8 +10901,8 @@ "repository": "https://github.com/yargs/yargs-parser", "publisher": "Ben Coe", "email": "ben@npmjs.com", - "path": "\\node_modules\\karma\\node_modules\\yargs-parser", - "licenseFile": "\\node_modules\\karma\\node_modules\\yargs-parser\\LICENSE.txt" + "path": "\\node_modules\\depcheck\\node_modules\\yargs-parser", + "licenseFile": "\\node_modules\\depcheck\\node_modules\\yargs-parser\\LICENSE.txt" }, "yargs-parser@21.1.1": { "licenses": "ISC", @@ -11630,8 +10921,8 @@ "yargs@16.2.0": { "licenses": "MIT", "repository": "https://github.com/yargs/yargs", - "path": "\\node_modules\\karma\\node_modules\\yargs", - "licenseFile": "\\node_modules\\karma\\node_modules\\yargs\\LICENSE" + "path": "\\node_modules\\depcheck\\node_modules\\yargs", + "licenseFile": "\\node_modules\\depcheck\\node_modules\\yargs\\LICENSE" }, "yargs@17.7.2": { "licenses": "MIT", @@ -11670,7 +10961,7 @@ "path": "\\node_modules\\codelyzer\\node_modules\\zone.js", "licenseFile": "\\node_modules\\codelyzer\\node_modules\\zone.js\\LICENSE" }, - "zone.js@0.13.3": { + "zone.js@0.14.7": { "licenses": "MIT", "repository": "https://github.com/angular/angular", "publisher": "Brian Ford", diff --git a/projects/demo-maps/src/index.html b/projects/demo-maps/src/index.html index 54cd2b093..f1455bd15 100644 --- a/projects/demo-maps/src/index.html +++ b/projects/demo-maps/src/index.html @@ -15,7 +15,7 @@ - + diff --git a/projects/demo-maps/src/styles/_clr-vertival-nav-layout.scss b/projects/demo-maps/src/styles/_clr-vertival-nav-layout.scss index c9bb22f99..1ed8fc350 100644 --- a/projects/demo-maps/src/styles/_clr-vertival-nav-layout.scss +++ b/projects/demo-maps/src/styles/_clr-vertival-nav-layout.scss @@ -10,7 +10,9 @@ /** nav orientation default left side ------------------------------ */ .clr-vertical-nav { + --clr-vertical-nav-bg-color: hsl(198, 0%, 91%); width: var(--clr-vertical-nav-width, 12rem); + line-height: 24px; &.is-collapsed { .nav-icon { margin-left: var(--nav-items-distance-side) !important; //$clr_baselineRem_0_667; @@ -68,7 +70,7 @@ margin-right: auto; .nav-trigger-icon { - margin-left: 0.5rem; + margin-left: 0rem; margin-right: auto; &[direction="right"] { diff --git a/projects/demo-maps/src/styles/_ukis-core-ui-layout.scss b/projects/demo-maps/src/styles/_ukis-core-ui-layout.scss index fefec0aee..f02e159c3 100644 --- a/projects/demo-maps/src/styles/_ukis-core-ui-layout.scss +++ b/projects/demo-maps/src/styles/_ukis-core-ui-layout.scss @@ -11,7 +11,8 @@ // min-width: 10.2rem; a { - clr-icon { + padding: var(--cds-global-space-3); + cds-icon { color: var(--header-branding-icon-color); } @@ -41,13 +42,22 @@ text-decoration: none; } } + .header-nav{ + .nav-link{ + &.active { + background-color: rgba(255,255,255,.15); + opacity: 1; + } + } + } + --clr-header-bg-color: hsl(198, 0%, 20%); } @media screen and (max-width: 768px) { .header { .branding { a { - clr-icon { + cds-icon { color: var(--header-branding-icon-color-mobile); } } @@ -66,7 +76,7 @@ /** FOOTER -------------------------------------------------------------- */ .footer { - background-color: var(--clr-vertical-nav-bg-color, var(--fallback-color-no-clr)); + background-color: hsl(198, 0%, 91%); padding: 0.2rem 1rem; p { diff --git a/projects/demo-maps/src/styles/_ukis-theme.scss b/projects/demo-maps/src/styles/_ukis-theme.scss index ab4f3d3bb..2b3a88bd3 100644 --- a/projects/demo-maps/src/styles/_ukis-theme.scss +++ b/projects/demo-maps/src/styles/_ukis-theme.scss @@ -17,6 +17,7 @@ */ @import "./ukis-variables"; +@import '@cds/core/global.css'; // --- overwrite Clarity variables - remove if @import "./overwrites-clr-variables"; @import "@clr/ui/src/main"; diff --git a/projects/layer-control/README.md b/projects/layer-control/README.md index 90cb19534..3f0f6368b 100644 --- a/projects/layer-control/README.md +++ b/projects/layer-control/README.md @@ -33,7 +33,7 @@ import { LayerControlModule } from '@dlr-eoc/layer-control'; - + Overlays @@ -42,7 +42,7 @@ import { LayerControlModule } from '@dlr-eoc/layer-control'; - + Layers @@ -50,7 +50,7 @@ import { LayerControlModule } from '@dlr-eoc/layer-control'; - + Baselayers diff --git a/projects/layer-control/package.json b/projects/layer-control/package.json index 0587732cf..5871bdf04 100644 --- a/projects/layer-control/package.json +++ b/projects/layer-control/package.json @@ -1,6 +1,6 @@ { "name": "@dlr-eoc/layer-control", - "version": "13.0.0", + "version": "14.0.0-next.0", "main": "src/public-api", "license": "Apache-2.0", "author": "Team UKIS", @@ -15,23 +15,23 @@ "layer tree" ], "peerDependencies": { - "@angular/common": "^16.2.3", - "@angular/core": "^16.2.3", - "@angular/forms": "^16.2.3", - "@clr/angular": "^15.12.0", - "@clr/icons": "^13.0.2", - "@clr/ui": "^15.12.0", + "@angular/common": "^17.3.11", + "@angular/core": "^17.3.11", + "@angular/forms": "^17.3.11", + "@clr/angular": "^17.2.1", + "@cds/core": "^6.12.0", + "@clr/ui": "^17.2.1", "rxjs": "~7.8.0" }, "dependencies": { - "@dlr-eoc/services-layers": "13.0.0", - "@dlr-eoc/services-map-state": "13.0.0", - "@dlr-eoc/core-ui": "13.0.0", - "@angular/cdk": "^15.2.9", - "tslib": "^2.4.0" + "@dlr-eoc/services-layers": "14.0.0-next.0", + "@dlr-eoc/services-map-state": "14.0.0-next.0", + "@dlr-eoc/core-ui": "14.0.0-next.0", + "@angular/cdk": "^17.3.10", + "tslib": "^2.6.3" }, "devDependencies": { - "zone.js": "~0.13.0", - "@angular/platform-browser-dynamic": "^16.2.3" + "zone.js": "~0.14.7", + "@angular/platform-browser-dynamic": "^17.3.11" } } diff --git a/projects/layer-control/src/lib/layerentry-group/layerentry-group.component.html b/projects/layer-control/src/lib/layerentry-group/layerentry-group.component.html index b29e57550..a5e6f8876 100644 --- a/projects/layer-control/src/lib/layerentry-group/layerentry-group.component.html +++ b/projects/layer-control/src/lib/layerentry-group/layerentry-group.component.html @@ -1,8 +1,8 @@
- + @@ -15,17 +15,17 @@ - - + + @@ -35,27 +35,28 @@
- - - + + + - + title="{{!openAllLayersProperties?'Show all layers details': 'Hide all layers details'}}"> - + - + - - - + + +
diff --git a/projects/layer-control/src/lib/layerentry-group/layerentry-group.component.ts b/projects/layer-control/src/lib/layerentry-group/layerentry-group.component.ts index 62dd7d4d9..2959494df 100644 --- a/projects/layer-control/src/lib/layerentry-group/layerentry-group.component.ts +++ b/projects/layer-control/src/lib/layerentry-group/layerentry-group.component.ts @@ -8,6 +8,10 @@ import { LayersService } from '@dlr-eoc/services-layers'; import { CdkDragDrop, moveItemInArray } from '@angular/cdk/drag-drop'; import { IDynamicComponent } from '@dlr-eoc/core-ui'; +import { ClarityIcons, folderIcon, folderOpenIcon, arrowIcon, eyeIcon, eyeHideIcon, cogIcon, imageIcon, infoStandardIcon, detailsIcon, zoomInIcon, trashIcon } from '@cds/core/icon'; +ClarityIcons.addIcons(...[folderIcon, folderOpenIcon, arrowIcon, eyeIcon, eyeHideIcon, cogIcon, imageIcon, infoStandardIcon, detailsIcon, zoomInIcon, trashIcon]); + + enum EactiveTabs { settings = 'settings', legend = 'legend', diff --git a/projects/layer-control/src/lib/layerentry/layerentry.component.html b/projects/layer-control/src/lib/layerentry/layerentry.component.html index 258851927..a7ee8d3fe 100644 --- a/projects/layer-control/src/lib/layerentry/layerentry.component.html +++ b/projects/layer-control/src/lib/layerentry/layerentry.component.html @@ -1,8 +1,8 @@
- +
@@ -14,23 +14,23 @@ - - + - +