diff --git a/README.md b/README.md
index bead24b..843528b 100644
--- a/README.md
+++ b/README.md
@@ -1,27 +1,50 @@
-# AnuglarFlow
-
-This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 16.1.4.
-
-## Development server
-
-Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
-
-## Code scaffolding
-
-Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
-
-## Build
-
-Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
-
-## Running unit tests
-
-Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
-
-## Running end-to-end tests
-
-Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
-
-## Further help
-
-To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
+# Angular Flow
+
+Angular Flow is a component that allows you to create a flow diagram using Angular.
+
+## Installation
+
+```bash
+npm install @ngu/flow
+```
+
+## Usage
+
+```ts
+import { Component } from "@angular/core";
+import { FlowComponent, FlowChildComponent } from "@ngu/flow";
+
+@Component({
+ selector: "app-root",
+ standalone: true,
+ imports: [FlowComponent, FlowChildComponent],
+ template: `
+
+ @for (item of lists; track item.id; let i = $index) {
+ {{ i }}
+ }
+
+ `,
+ styles: `
+ .flow {
+ min-height: 90vh;
+ background: #eee;
+ }
+ .child {
+ border: 1px solid #ccc;
+ width: 100px;
+ height: 50px;
+ background: white;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+ `,
+})
+export class AppComponent {
+ lists = [
+ { id: "1", x: 0, y: 0, deps: [] },
+ { id: "2", x: 0, y: 0, deps: ["1"] },
+ ];
+}
+```
diff --git a/package.json b/package.json
index 59b711d..7d019f5 100644
--- a/package.json
+++ b/package.json
@@ -10,29 +10,32 @@
},
"private": true,
"dependencies": {
- "@angular/animations": "^17.0.2",
- "@angular/common": "^17.0.2",
- "@angular/compiler": "^17.0.2",
- "@angular/core": "^17.0.2",
- "@angular/forms": "^17.0.2",
- "@angular/platform-browser": "^17.0.2",
- "@angular/platform-browser-dynamic": "^17.0.2",
- "@angular/router": "^17.0.2",
+ "@angular/animations": "^17.1.1",
+ "@angular/common": "^17.1.1",
+ "@angular/compiler": "^17.1.1",
+ "@angular/core": "^17.1.1",
+ "@angular/forms": "^17.1.1",
+ "@angular/platform-browser": "^17.1.1",
+ "@angular/platform-browser-dynamic": "^17.1.1",
+ "@angular/router": "^17.1.1",
+ "@tiptap/core": "^2.1.16",
+ "@tiptap/starter-kit": "^2.1.16",
+ "ngx-tiptap": "^9.1.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
- "@angular-devkit/build-angular": "^17.0.0",
- "@angular/cli": "~17.0.0",
- "@angular/compiler-cli": "^17.0.2",
- "@types/jest": "^29.5.5",
- "autoprefixer": "^10.4.15",
+ "@angular-devkit/build-angular": "^17.1.1",
+ "@angular/cli": "~17.1.1",
+ "@angular/compiler-cli": "^17.1.1",
+ "@types/jest": "^29.5.11",
+ "autoprefixer": "^10.4.17",
"jest": "^29.7.0",
- "jest-preset-angular": "^13.1.2",
- "ng-packagr": "^17.0.0",
- "postcss": "^8.4.28",
- "tailwindcss": "^3.3.3",
+ "jest-preset-angular": "^14.0.0",
+ "ng-packagr": "^17.1.2",
+ "postcss": "^8.4.33",
+ "tailwindcss": "^3.4.1",
"typescript": "~5.2.2"
},
"jest": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index c93300e..c0ed563 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -6,29 +6,38 @@ settings:
dependencies:
'@angular/animations':
- specifier: ^17.0.2
- version: 17.0.2(@angular/core@17.0.2)
+ specifier: ^17.1.1
+ version: 17.1.1(@angular/core@17.1.1)
'@angular/common':
- specifier: ^17.0.2
- version: 17.0.2(@angular/core@17.0.2)(rxjs@7.8.1)
+ specifier: ^17.1.1
+ version: 17.1.1(@angular/core@17.1.1)(rxjs@7.8.1)
'@angular/compiler':
- specifier: ^17.0.2
- version: 17.0.2(@angular/core@17.0.2)
+ specifier: ^17.1.1
+ version: 17.1.1(@angular/core@17.1.1)
'@angular/core':
- specifier: ^17.0.2
- version: 17.0.2(rxjs@7.8.1)(zone.js@0.14.2)
+ specifier: ^17.1.1
+ version: 17.1.1(rxjs@7.8.1)(zone.js@0.14.2)
'@angular/forms':
- specifier: ^17.0.2
- version: 17.0.2(@angular/common@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2)(rxjs@7.8.1)
+ specifier: ^17.1.1
+ version: 17.1.1(@angular/common@17.1.1)(@angular/core@17.1.1)(@angular/platform-browser@17.1.1)(rxjs@7.8.1)
'@angular/platform-browser':
- specifier: ^17.0.2
- version: 17.0.2(@angular/animations@17.0.2)(@angular/common@17.0.2)(@angular/core@17.0.2)
+ specifier: ^17.1.1
+ version: 17.1.1(@angular/animations@17.1.1)(@angular/common@17.1.1)(@angular/core@17.1.1)
'@angular/platform-browser-dynamic':
- specifier: ^17.0.2
- version: 17.0.2(@angular/common@17.0.2)(@angular/compiler@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2)
+ specifier: ^17.1.1
+ version: 17.1.1(@angular/common@17.1.1)(@angular/compiler@17.1.1)(@angular/core@17.1.1)(@angular/platform-browser@17.1.1)
'@angular/router':
- specifier: ^17.0.2
- version: 17.0.2(@angular/common@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2)(rxjs@7.8.1)
+ specifier: ^17.1.1
+ version: 17.1.1(@angular/common@17.1.1)(@angular/core@17.1.1)(@angular/platform-browser@17.1.1)(rxjs@7.8.1)
+ '@tiptap/core':
+ specifier: ^2.1.16
+ version: 2.1.16(@tiptap/pm@2.1.12)
+ '@tiptap/starter-kit':
+ specifier: ^2.1.16
+ version: 2.1.16(@tiptap/pm@2.1.12)
+ ngx-tiptap:
+ specifier: ^9.1.1
+ version: 9.1.1(@angular/common@17.1.1)(@angular/core@17.1.1)(@angular/forms@17.1.1)(@tiptap/core@2.1.16)(@tiptap/extension-bubble-menu@2.1.12)(@tiptap/extension-floating-menu@2.1.12)(@tiptap/pm@2.1.12)
rxjs:
specifier: ~7.8.0
version: 7.8.1
@@ -41,35 +50,35 @@ dependencies:
devDependencies:
'@angular-devkit/build-angular':
- specifier: ^17.0.0
- version: 17.0.0(@angular/compiler-cli@17.0.2)(jest@29.7.0)(ng-packagr@17.0.0)(tailwindcss@3.3.3)(typescript@5.2.2)
+ specifier: ^17.1.1
+ version: 17.1.1(@angular/compiler-cli@17.1.1)(jest@29.7.0)(ng-packagr@17.1.2)(tailwindcss@3.4.1)(typescript@5.2.2)
'@angular/cli':
- specifier: ~17.0.0
- version: 17.0.0
+ specifier: ~17.1.1
+ version: 17.1.1
'@angular/compiler-cli':
- specifier: ^17.0.2
- version: 17.0.2(@angular/compiler@17.0.2)(typescript@5.2.2)
+ specifier: ^17.1.1
+ version: 17.1.1(@angular/compiler@17.1.1)(typescript@5.2.2)
'@types/jest':
- specifier: ^29.5.5
- version: 29.5.5
+ specifier: ^29.5.11
+ version: 29.5.11
autoprefixer:
- specifier: ^10.4.15
- version: 10.4.16(postcss@8.4.31)
+ specifier: ^10.4.17
+ version: 10.4.17(postcss@8.4.33)
jest:
specifier: ^29.7.0
version: 29.7.0
jest-preset-angular:
- specifier: ^13.1.2
- version: 13.1.2(@angular-devkit/build-angular@17.0.0)(@angular/compiler-cli@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser-dynamic@17.0.2)(@babel/core@7.22.9)(jest@29.7.0)(typescript@5.2.2)
+ specifier: ^14.0.0
+ version: 14.0.0(@angular-devkit/build-angular@17.1.1)(@angular/compiler-cli@17.1.1)(@angular/core@17.1.1)(@angular/platform-browser-dynamic@17.1.1)(@babel/core@7.23.2)(jest@29.7.0)(typescript@5.2.2)
ng-packagr:
- specifier: ^17.0.0
- version: 17.0.0(@angular/compiler-cli@17.0.2)(tailwindcss@3.3.3)(tslib@2.6.2)(typescript@5.2.2)
+ specifier: ^17.1.2
+ version: 17.1.2(@angular/compiler-cli@17.1.1)(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.2.2)
postcss:
- specifier: ^8.4.28
- version: 8.4.31
+ specifier: ^8.4.33
+ version: 8.4.33
tailwindcss:
- specifier: ^3.3.3
- version: 3.3.3
+ specifier: ^3.4.1
+ version: 3.4.1
typescript:
specifier: ~5.2.2
version: 5.2.2
@@ -89,31 +98,33 @@ packages:
'@jridgewell/trace-mapping': 0.3.19
dev: true
- /@angular-devkit/architect@0.1700.0(chokidar@3.5.3):
- resolution: {integrity: sha512-whi7HvOjv1J3He9f+H8xNJWKyjAmWuWNl8gxNW6EZP/XLcrOu+/5QT4bPtXQBRIL/avZuc++5sNQS+kReaNCig==}
+ /@angular-devkit/architect@0.1701.1:
+ resolution: {integrity: sha512-vT3ZRAIfNyIg0vJWT6umPbCKiKFCukNkxLe9kgOU0tinZKNr/LgWYaBZ92Rxxi6C3NrAnmAYjsih8x4zdyoRXw==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
dependencies:
- '@angular-devkit/core': 17.0.0(chokidar@3.5.3)
+ '@angular-devkit/core': 17.1.1
rxjs: 7.8.1
transitivePeerDependencies:
- chokidar
dev: true
- /@angular-devkit/build-angular@17.0.0(@angular/compiler-cli@17.0.2)(jest@29.7.0)(ng-packagr@17.0.0)(tailwindcss@3.3.3)(typescript@5.2.2):
- resolution: {integrity: sha512-hkV8k4moAnUquac2Dz5XPd5izDDgEF82NeUkSwizcTaqlJqYOdmWASMsXyVBzdrTmDtFKQiphfA96i7eo5MlvA==}
+ /@angular-devkit/build-angular@17.1.1(@angular/compiler-cli@17.1.1)(jest@29.7.0)(ng-packagr@17.1.2)(tailwindcss@3.4.1)(typescript@5.2.2):
+ resolution: {integrity: sha512-GchDM8H+RQNts731c+jnhDgOm0PnCS3YB12uVwRiGsaNsUMrqKnu3P0poh6AImDMPyXKnIvTWLDCMD8TDziR0A==}
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
'@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: ^17.0.0
protractor: ^7.0.0
tailwindcss: ^2.0.0 || ^3.0.0
- typescript: '>=5.2 <5.3'
+ typescript: '>=5.2 <5.4'
peerDependenciesMeta:
'@angular/localize':
optional: true
@@ -121,6 +132,10 @@ packages:
optional: true
'@angular/service-worker':
optional: true
+ '@web/test-runner':
+ optional: true
+ browser-sync:
+ optional: true
jest:
optional: true
jest-environment-jsdom:
@@ -135,37 +150,35 @@ packages:
optional: true
dependencies:
'@ampproject/remapping': 2.2.1
- '@angular-devkit/architect': 0.1700.0(chokidar@3.5.3)
- '@angular-devkit/build-webpack': 0.1700.0(chokidar@3.5.3)(webpack-dev-server@4.15.1)(webpack@5.89.0)
- '@angular-devkit/core': 17.0.0(chokidar@3.5.3)
- '@angular/compiler-cli': 17.0.2(@angular/compiler@17.0.2)(typescript@5.2.2)
- '@babel/core': 7.23.2
- '@babel/generator': 7.23.0
+ '@angular-devkit/architect': 0.1701.1
+ '@angular-devkit/build-webpack': 0.1701.1(webpack-dev-server@4.15.1)(webpack@5.89.0)
+ '@angular-devkit/core': 17.1.1
+ '@angular/compiler-cli': 17.1.1(@angular/compiler@17.1.1)(typescript@5.2.2)
+ '@babel/core': 7.23.7
+ '@babel/generator': 7.23.6
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.23.2)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.2)
- '@babel/preset-env': 7.23.2(@babel/core@7.23.2)
- '@babel/runtime': 7.23.2
+ '@babel/plugin-transform-async-generator-functions': 7.23.7(@babel/core@7.23.7)
+ '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-runtime': 7.23.7(@babel/core@7.23.7)
+ '@babel/preset-env': 7.23.7(@babel/core@7.23.7)
+ '@babel/runtime': 7.23.7
'@discoveryjs/json-ext': 0.5.7
- '@ngtools/webpack': 17.0.0(@angular/compiler-cli@17.0.2)(typescript@5.2.2)(webpack@5.89.0)
- '@vitejs/plugin-basic-ssl': 1.0.1(vite@4.5.0)
+ '@ngtools/webpack': 17.1.1(@angular/compiler-cli@17.1.1)(typescript@5.2.2)(webpack@5.89.0)
+ '@vitejs/plugin-basic-ssl': 1.0.2(vite@5.0.12)
ansi-colors: 4.1.3
- autoprefixer: 10.4.16(postcss@8.4.31)
- babel-loader: 9.1.3(@babel/core@7.23.2)(webpack@5.89.0)
+ autoprefixer: 10.4.16(postcss@8.4.33)
+ babel-loader: 9.1.3(@babel/core@7.23.7)(webpack@5.89.0)
babel-plugin-istanbul: 6.1.1
- browser-sync: 2.29.3
browserslist: 4.22.1
- chokidar: 3.5.3
copy-webpack-plugin: 11.0.0(webpack@5.89.0)
critters: 0.0.20
css-loader: 6.8.1(webpack@5.89.0)
- esbuild-wasm: 0.19.5
- fast-glob: 3.3.1
+ esbuild-wasm: 0.19.11
+ fast-glob: 3.3.2
http-proxy-middleware: 2.0.6(@types/express@4.17.19)
https-proxy-agent: 7.0.2
- inquirer: 9.2.11
+ inquirer: 9.2.12
jest: 29.7.0
jsonc-parser: 3.2.0
karma-source-map-support: 1.4.0
@@ -175,42 +188,44 @@ packages:
loader-utils: 3.2.1
magic-string: 0.30.5
mini-css-extract-plugin: 2.7.6(webpack@5.89.0)
- mrmime: 1.0.1
- ng-packagr: 17.0.0(@angular/compiler-cli@17.0.2)(tailwindcss@3.3.3)(tslib@2.6.2)(typescript@5.2.2)
+ mrmime: 2.0.0
+ ng-packagr: 17.1.2(@angular/compiler-cli@17.1.1)(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.2.2)
open: 8.4.2
ora: 5.4.1
parse5-html-rewriting-stream: 7.0.0
picomatch: 3.0.1
- piscina: 4.1.0
- postcss: 8.4.31
- postcss-loader: 7.3.3(postcss@8.4.31)(typescript@5.2.2)(webpack@5.89.0)
+ piscina: 4.2.1
+ postcss: 8.4.33
+ postcss-loader: 7.3.4(postcss@8.4.33)(typescript@5.2.2)(webpack@5.89.0)
resolve-url-loader: 5.0.0
rxjs: 7.8.1
- sass: 1.69.5
- sass-loader: 13.3.2(sass@1.69.5)(webpack@5.89.0)
+ sass: 1.69.7
+ sass-loader: 13.3.3(sass@1.69.7)(webpack@5.89.0)
semver: 7.5.4
- source-map-loader: 4.0.1(webpack@5.89.0)
+ source-map-loader: 5.0.0(webpack@5.89.0)
source-map-support: 0.5.21
- tailwindcss: 3.3.3
- terser: 5.24.0
+ tailwindcss: 3.4.1
+ terser: 5.26.0
text-table: 0.2.0
tree-kill: 1.2.2
tslib: 2.6.2
typescript: 5.2.2
- undici: 5.27.2
- vite: 4.5.0(less@4.2.0)(sass@1.69.5)(terser@5.24.0)
- webpack: 5.89.0(esbuild@0.19.5)
+ undici: 6.2.1
+ vite: 5.0.12(less@4.2.0)(sass@1.69.7)(terser@5.26.0)
+ watchpack: 2.4.0
+ webpack: 5.89.0(esbuild@0.19.11)
webpack-dev-middleware: 6.1.1(webpack@5.89.0)
webpack-dev-server: 4.15.1(webpack@5.89.0)
webpack-merge: 5.10.0
webpack-subresource-integrity: 5.1.0(webpack@5.89.0)
optionalDependencies:
- esbuild: 0.19.5
+ esbuild: 0.19.11
transitivePeerDependencies:
- '@swc/core'
- '@types/express'
- '@types/node'
- bufferutil
+ - chokidar
- debug
- fibers
- html-webpack-plugin
@@ -225,23 +240,23 @@ packages:
- webpack-cli
dev: true
- /@angular-devkit/build-webpack@0.1700.0(chokidar@3.5.3)(webpack-dev-server@4.15.1)(webpack@5.89.0):
- resolution: {integrity: sha512-Hx9JUb32gigsHlbBZJ5sw3q3H7qHeX8HTh4aIq4Glvb/5e+HgPlclVSIA5BY2ZYatHixU+CUAXRmcIKxViS02Q==}
+ /@angular-devkit/build-webpack@0.1701.1(webpack-dev-server@4.15.1)(webpack@5.89.0):
+ resolution: {integrity: sha512-YgNl/6xLmI0XdUCu/H4Jyi34BhrANCDP4N2Pz+tGwnz2+Vl8oZGLPGtKVbh/LKSAmEHk/B6GQUekSBpKWrPJoA==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^4.0.0
dependencies:
- '@angular-devkit/architect': 0.1700.0(chokidar@3.5.3)
+ '@angular-devkit/architect': 0.1701.1
rxjs: 7.8.1
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
webpack-dev-server: 4.15.1(webpack@5.89.0)
transitivePeerDependencies:
- chokidar
dev: true
- /@angular-devkit/core@17.0.0(chokidar@3.5.3):
- resolution: {integrity: sha512-QUu3LnEi4A8t733v2+I0sLtyBJx3Q7zdTAhaauCbxbFhDid0cbYm8hYsyG/njor1irTPxSJbn6UoetVkwUQZxg==}
+ /@angular-devkit/core@17.1.1:
+ resolution: {integrity: sha512-b1wd1caegc1p18nTrfPhfHQAZW1GnWWKGldq5MZ8C/nkgJbjjN8SKb1Vw7GONkOnH6KxWDAXS4i93/wdQcz4Bg==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
chokidar: ^3.5.2
@@ -251,18 +266,17 @@ packages:
dependencies:
ajv: 8.12.0
ajv-formats: 2.1.1(ajv@8.12.0)
- chokidar: 3.5.3
jsonc-parser: 3.2.0
picomatch: 3.0.1
rxjs: 7.8.1
source-map: 0.7.4
dev: true
- /@angular-devkit/schematics@17.0.0:
- resolution: {integrity: sha512-LD7fjDORuBf139/oJ/gSwbIzQPfsm6Y67s1FD+XLi0QXaRt6dw4r7BMD08l1r//oPQofNgbEH4coGVO4NdCL/A==}
+ /@angular-devkit/schematics@17.1.1:
+ resolution: {integrity: sha512-3AtEO7k0Znzg11o51ZqebkW8063QkZ7Y7BC96Oye+wSdpT3ow57P0w0UtOpUNesNKzj1iMuPWqqm4i+YqitjCw==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
dependencies:
- '@angular-devkit/core': 17.0.0(chokidar@3.5.3)
+ '@angular-devkit/core': 17.1.1
jsonc-parser: 3.2.0
magic-string: 0.30.5
ora: 5.4.1
@@ -271,34 +285,34 @@ packages:
- chokidar
dev: true
- /@angular/animations@17.0.2(@angular/core@17.0.2):
- resolution: {integrity: sha512-32RHWhTgFLMonI3kRdstACay/nvetfxXjdwcTtABjcvBoND7nD9GMhkISQdgS+hcR/IhgXxaPidq8f2UAY5DBw==}
+ /@angular/animations@17.1.1(@angular/core@17.1.1):
+ resolution: {integrity: sha512-85qm8b4fNKa5zx4YlvCvAb3lWGlRsEcClnpCuwSVP8pXG7n/cW8MsJOh8i/wOkQTr9Ac7vvAE+yFWMi2A/qlTg==}
engines: {node: ^18.13.0 || >=20.9.0}
peerDependencies:
- '@angular/core': 17.0.2
+ '@angular/core': 17.1.1
dependencies:
- '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2)
+ '@angular/core': 17.1.1(rxjs@7.8.1)(zone.js@0.14.2)
tslib: 2.6.2
- /@angular/cli@17.0.0:
- resolution: {integrity: sha512-VzKYmN+1wSE2wLBEFu/NHSrRQbeaKkEDO9aZxd7nAnxC5T1Zcva7dfqZIXMHXH2HESYAZCvOS8ikBE/7DCtWWw==}
+ /@angular/cli@17.1.1:
+ resolution: {integrity: sha512-JG/Vf+PScR3PC6u7B+jFF4s5eBByzCpOfCfRFw98nlCqDAOxYOig7wi2Sbp5fnvILQH8vbc/NG8MzdgONrG6Hg==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
hasBin: true
dependencies:
- '@angular-devkit/architect': 0.1700.0(chokidar@3.5.3)
- '@angular-devkit/core': 17.0.0(chokidar@3.5.3)
- '@angular-devkit/schematics': 17.0.0
- '@schematics/angular': 17.0.0
+ '@angular-devkit/architect': 0.1701.1
+ '@angular-devkit/core': 17.1.1
+ '@angular-devkit/schematics': 17.1.1
+ '@schematics/angular': 17.1.1
'@yarnpkg/lockfile': 1.1.0
ansi-colors: 4.1.3
ini: 4.1.1
- inquirer: 9.2.11
+ inquirer: 9.2.12
jsonc-parser: 3.2.0
npm-package-arg: 11.0.1
npm-pick-manifest: 9.0.0
open: 8.4.2
ora: 5.4.1
- pacote: 17.0.4
+ pacote: 17.0.5
resolve: 1.22.8
semver: 7.5.4
symbol-observable: 4.0.0
@@ -309,26 +323,26 @@ packages:
- supports-color
dev: true
- /@angular/common@17.0.2(@angular/core@17.0.2)(rxjs@7.8.1):
- resolution: {integrity: sha512-hCW0njHgrcwTWNoKZDwf02DnhYLVWNXM2FMw66MKpfxTp7McSyaXjGBU9/hchW3dZJ0xTwyxoyoqJFoHYvg0yg==}
+ /@angular/common@17.1.1(@angular/core@17.1.1)(rxjs@7.8.1):
+ resolution: {integrity: sha512-YMM2vImWJg7H3Yaej7ncGpFKT28V2Y6X9/rLpRdSKAiUbcbj7GeWtX/upfZGR9KmD08baYZw0YTNMR03Ubv/mg==}
engines: {node: ^18.13.0 || >=20.9.0}
peerDependencies:
- '@angular/core': 17.0.2
+ '@angular/core': 17.1.1
rxjs: ^6.5.3 || ^7.4.0
dependencies:
- '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2)
+ '@angular/core': 17.1.1(rxjs@7.8.1)(zone.js@0.14.2)
rxjs: 7.8.1
tslib: 2.6.2
- /@angular/compiler-cli@17.0.2(@angular/compiler@17.0.2)(typescript@5.2.2):
- resolution: {integrity: sha512-IUYL3Yz5RbR0Z0/x7it4GK3sMb2qVihxu0tlgfUW53P1Vi6nU/Zda0bCJTu6Z64qEtS8zwCwF1Ekomuq6UaiKg==}
+ /@angular/compiler-cli@17.1.1(@angular/compiler@17.1.1)(typescript@5.2.2):
+ resolution: {integrity: sha512-d6Aev1P92q7wd5u3UcJifzNlU9svxaYI2Ts6MKoD4jY4/GPN/gPDqi20weDMujEgirrkcwGbsCXBRoEGkA5c9A==}
engines: {node: ^18.13.0 || >=20.9.0}
hasBin: true
peerDependencies:
- '@angular/compiler': 17.0.2
- typescript: '>=5.2 <5.3'
+ '@angular/compiler': 17.1.1
+ typescript: '>=5.2 <5.4'
dependencies:
- '@angular/compiler': 17.0.2(@angular/core@17.0.2)
+ '@angular/compiler': 17.1.1(@angular/core@17.1.1)
'@babel/core': 7.23.2
'@jridgewell/sourcemap-codec': 1.4.15
chokidar: 3.5.3
@@ -342,20 +356,20 @@ packages:
- supports-color
dev: true
- /@angular/compiler@17.0.2(@angular/core@17.0.2):
- resolution: {integrity: sha512-ewUFbKhMEhAmw2dGfk0ImhTlyrO2y4pJSKIZdFrkR1d0HiJX8bCHUdTiiR/2jeP7w2eamjXj15Rptb+iZZes2Q==}
+ /@angular/compiler@17.1.1(@angular/core@17.1.1):
+ resolution: {integrity: sha512-lEQ5YNMJQm2iO2EZbGkwL3SqnxtE2ENfymgbS023F6ACsnP3kKB2DMwOnIbGgQY4+8r4sJFiMAIjEkj5c9kttg==}
engines: {node: ^18.13.0 || >=20.9.0}
peerDependencies:
- '@angular/core': 17.0.2
+ '@angular/core': 17.1.1
peerDependenciesMeta:
'@angular/core':
optional: true
dependencies:
- '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2)
+ '@angular/core': 17.1.1(rxjs@7.8.1)(zone.js@0.14.2)
tslib: 2.6.2
- /@angular/core@17.0.2(rxjs@7.8.1)(zone.js@0.14.2):
- resolution: {integrity: sha512-MjDxWeyn3Txi0qo/V/I+B/gndh0uptQ0XWgBRwOx6Wcr5zRGeZIFlXBxPpyXnGTlJkeyErsTN7FfFCZ4C3kCPA==}
+ /@angular/core@17.1.1(rxjs@7.8.1)(zone.js@0.14.2):
+ resolution: {integrity: sha512-JtNYM9eHr8eUSrGPq/kn0+/F+TSZ7EBWxZhM1ZndOlGu1gA4fGhrDid4ZXIHIs07DbM4NZjMn+LhRyx02YDsSA==}
engines: {node: ^18.13.0 || >=20.9.0}
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
@@ -365,65 +379,65 @@ packages:
tslib: 2.6.2
zone.js: 0.14.2
- /@angular/forms@17.0.2(@angular/common@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2)(rxjs@7.8.1):
- resolution: {integrity: sha512-w1QKifaVG4daxUktcBNZqBtOH1vn8t0YiwDR3woEdUYt0XYKMipfDzQfyIK+6fIVPOJUd42pRns1nbWJQHOInA==}
+ /@angular/forms@17.1.1(@angular/common@17.1.1)(@angular/core@17.1.1)(@angular/platform-browser@17.1.1)(rxjs@7.8.1):
+ resolution: {integrity: sha512-rqHVzaJDV8+VbnfC6mDgzX6ooa0X0hmnd+XfuOZaEJ7MtyOmqQ8qas2PAKXU7nMIImYXfYc4O4XWbSc1pRy1Hw==}
engines: {node: ^18.13.0 || >=20.9.0}
peerDependencies:
- '@angular/common': 17.0.2
- '@angular/core': 17.0.2
- '@angular/platform-browser': 17.0.2
+ '@angular/common': 17.1.1
+ '@angular/core': 17.1.1
+ '@angular/platform-browser': 17.1.1
rxjs: ^6.5.3 || ^7.4.0
dependencies:
- '@angular/common': 17.0.2(@angular/core@17.0.2)(rxjs@7.8.1)
- '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2)
- '@angular/platform-browser': 17.0.2(@angular/animations@17.0.2)(@angular/common@17.0.2)(@angular/core@17.0.2)
+ '@angular/common': 17.1.1(@angular/core@17.1.1)(rxjs@7.8.1)
+ '@angular/core': 17.1.1(rxjs@7.8.1)(zone.js@0.14.2)
+ '@angular/platform-browser': 17.1.1(@angular/animations@17.1.1)(@angular/common@17.1.1)(@angular/core@17.1.1)
rxjs: 7.8.1
tslib: 2.6.2
dev: false
- /@angular/platform-browser-dynamic@17.0.2(@angular/common@17.0.2)(@angular/compiler@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2):
- resolution: {integrity: sha512-clcHqHcfD00/TlTixDbJ3q4EQxpm0t2ZFG76rRFmGrmE5tKYUPfaofIa3hQCxy3q269MAYuF16wALhUtrEWyUA==}
+ /@angular/platform-browser-dynamic@17.1.1(@angular/common@17.1.1)(@angular/compiler@17.1.1)(@angular/core@17.1.1)(@angular/platform-browser@17.1.1):
+ resolution: {integrity: sha512-UKI8966nwo+p01EjmQdkepLIeVLpPZTSDZAM4va7CfMO6lbCN5xFecDd/sVbut8J6ySIsbJxyDkP+SHMQjE+xg==}
engines: {node: ^18.13.0 || >=20.9.0}
peerDependencies:
- '@angular/common': 17.0.2
- '@angular/compiler': 17.0.2
- '@angular/core': 17.0.2
- '@angular/platform-browser': 17.0.2
+ '@angular/common': 17.1.1
+ '@angular/compiler': 17.1.1
+ '@angular/core': 17.1.1
+ '@angular/platform-browser': 17.1.1
dependencies:
- '@angular/common': 17.0.2(@angular/core@17.0.2)(rxjs@7.8.1)
- '@angular/compiler': 17.0.2(@angular/core@17.0.2)
- '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2)
- '@angular/platform-browser': 17.0.2(@angular/animations@17.0.2)(@angular/common@17.0.2)(@angular/core@17.0.2)
+ '@angular/common': 17.1.1(@angular/core@17.1.1)(rxjs@7.8.1)
+ '@angular/compiler': 17.1.1(@angular/core@17.1.1)
+ '@angular/core': 17.1.1(rxjs@7.8.1)(zone.js@0.14.2)
+ '@angular/platform-browser': 17.1.1(@angular/animations@17.1.1)(@angular/common@17.1.1)(@angular/core@17.1.1)
tslib: 2.6.2
- /@angular/platform-browser@17.0.2(@angular/animations@17.0.2)(@angular/common@17.0.2)(@angular/core@17.0.2):
- resolution: {integrity: sha512-eTnPILEA/eAMkVUR/+g6fWhhMTmnmOzcZSGX/bBgQcvOhayZrDDxA6/Qf+jIB4RwC0wd3KA9zT5BCMmNojoUsg==}
+ /@angular/platform-browser@17.1.1(@angular/animations@17.1.1)(@angular/common@17.1.1)(@angular/core@17.1.1):
+ resolution: {integrity: sha512-/80znuEkdDvsF6EX/fe03isQlLCUS9+ldCgB4n0ZL+qAkf2/lJlU3n97SyEN7rzb189U+K1fDe0fb1nDwbbcWQ==}
engines: {node: ^18.13.0 || >=20.9.0}
peerDependencies:
- '@angular/animations': 17.0.2
- '@angular/common': 17.0.2
- '@angular/core': 17.0.2
+ '@angular/animations': 17.1.1
+ '@angular/common': 17.1.1
+ '@angular/core': 17.1.1
peerDependenciesMeta:
'@angular/animations':
optional: true
dependencies:
- '@angular/animations': 17.0.2(@angular/core@17.0.2)
- '@angular/common': 17.0.2(@angular/core@17.0.2)(rxjs@7.8.1)
- '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2)
+ '@angular/animations': 17.1.1(@angular/core@17.1.1)
+ '@angular/common': 17.1.1(@angular/core@17.1.1)(rxjs@7.8.1)
+ '@angular/core': 17.1.1(rxjs@7.8.1)(zone.js@0.14.2)
tslib: 2.6.2
- /@angular/router@17.0.2(@angular/common@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2)(rxjs@7.8.1):
- resolution: {integrity: sha512-A1Ulv4qBAtJyK5g1yBlK1qZHe+KaaL5vMPAaPWUxICH8lHEodDkJlbYAUI2e4VL2BN7zBmdOep6tlBKPmHY3mw==}
+ /@angular/router@17.1.1(@angular/common@17.1.1)(@angular/core@17.1.1)(@angular/platform-browser@17.1.1)(rxjs@7.8.1):
+ resolution: {integrity: sha512-pPIRX0v8agij2dRSU25iwj9qFy0S25cztsy7bGfZ+M510jwRCqu1JsitqXtQ85XSv/bdFqiNiFU0UbwVFl+QiQ==}
engines: {node: ^18.13.0 || >=20.9.0}
peerDependencies:
- '@angular/common': 17.0.2
- '@angular/core': 17.0.2
- '@angular/platform-browser': 17.0.2
+ '@angular/common': 17.1.1
+ '@angular/core': 17.1.1
+ '@angular/platform-browser': 17.1.1
rxjs: ^6.5.3 || ^7.4.0
dependencies:
- '@angular/common': 17.0.2(@angular/core@17.0.2)(rxjs@7.8.1)
- '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2)
- '@angular/platform-browser': 17.0.2(@angular/animations@17.0.2)(@angular/common@17.0.2)(@angular/core@17.0.2)
+ '@angular/common': 17.1.1(@angular/core@17.1.1)(rxjs@7.8.1)
+ '@angular/core': 17.1.1(rxjs@7.8.1)(zone.js@0.14.2)
+ '@angular/platform-browser': 17.1.1(@angular/animations@17.1.1)(@angular/common@17.1.1)(@angular/core@17.1.1)
rxjs: 7.8.1
tslib: 2.6.2
dev: false
@@ -440,6 +454,14 @@ packages:
chalk: 2.4.2
dev: true
+ /@babel/code-frame@7.23.5:
+ resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/highlight': 7.23.4
+ chalk: 2.4.2
+ dev: true
+
/@babel/compat-data@7.22.20:
resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==}
engines: {node: '>=6.9.0'}
@@ -450,21 +472,26 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/core@7.22.9:
- resolution: {integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==}
+ /@babel/compat-data@7.23.5:
+ resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
+ /@babel/core@7.23.2:
+ resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.0
+ '@babel/generator': 7.23.3
'@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.22.9)
- '@babel/helpers': 7.23.1
- '@babel/parser': 7.23.0
+ '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
+ '@babel/helpers': 7.23.2
+ '@babel/parser': 7.23.3
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.0
- '@babel/types': 7.23.0
- convert-source-map: 1.9.0
+ '@babel/traverse': 7.23.3
+ '@babel/types': 7.23.3
+ convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
json5: 2.2.3
@@ -473,20 +500,20 @@ packages:
- supports-color
dev: true
- /@babel/core@7.23.2:
- resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==}
+ /@babel/core@7.23.7:
+ resolution: {integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
- '@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/core@7.23.2)
- '@babel/helpers': 7.23.2
- '@babel/parser': 7.23.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/core@7.23.7)
+ '@babel/helpers': 7.23.9
+ '@babel/parser': 7.23.9
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.3
- '@babel/types': 7.23.0
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -516,18 +543,28 @@ packages:
jsesc: 2.5.2
dev: true
+ /@babel/generator@7.23.6:
+ resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.23.9
+ '@jridgewell/gen-mapping': 0.3.3
+ '@jridgewell/trace-mapping': 0.3.19
+ jsesc: 2.5.2
+ dev: true
+
/@babel/helper-annotate-as-pure@7.22.5:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
dev: true
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.15:
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
dev: true
/@babel/helper-compilation-targets@7.22.15:
@@ -541,42 +578,68 @@ packages:
semver: 6.3.1
dev: true
- /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.2):
+ /@babel/helper-compilation-targets@7.23.6:
+ resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/compat-data': 7.23.5
+ '@babel/helper-validator-option': 7.23.5
+ browserslist: 4.22.2
+ lru-cache: 5.1.1
+ semver: 6.3.1
+ dev: true
+
+ /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.7):
resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@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/core@7.23.2)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
semver: 6.3.1
dev: true
- /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.2):
+ /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.7):
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.3.2
semver: 6.3.1
dev: true
- /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.2):
- resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==}
+ /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
+ '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
+ debug: 4.3.4
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helper-define-polyfill-provider@0.5.0(@babel/core@7.23.7):
+ resolution: {integrity: sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ dependencies:
+ '@babel/core': 7.23.7
'@babel/helper-compilation-targets': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4
@@ -610,7 +673,7 @@ packages:
resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
dev: true
/@babel/helper-module-imports@7.22.15:
@@ -620,13 +683,13 @@ packages:
'@babel/types': 7.23.0
dev: true
- /@babel/helper-module-transforms@7.23.0(@babel/core@7.22.9):
+ /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2):
resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
@@ -634,13 +697,13 @@ packages:
'@babel/helper-validator-identifier': 7.22.20
dev: true
- /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
+ /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
@@ -652,7 +715,7 @@ packages:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
dev: true
/@babel/helper-plugin-utils@7.22.5:
@@ -660,25 +723,25 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.2):
+ /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.7):
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.22.20
dev: true
- /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.2):
+ /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.7):
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-member-expression-to-functions': 7.23.0
'@babel/helper-optimise-call-expression': 7.22.5
@@ -695,14 +758,14 @@ packages:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
dev: true
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
dev: true
/@babel/helper-string-parser@7.22.5:
@@ -710,6 +773,11 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
+ /@babel/helper-string-parser@7.23.4:
+ resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
/@babel/helper-validator-identifier@7.22.20:
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
engines: {node: '>=6.9.0'}
@@ -720,33 +788,38 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
+ /@babel/helper-validator-option@7.23.5:
+ resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
+ engines: {node: '>=6.9.0'}
+ dev: true
+
/@babel/helper-wrap-function@7.22.20:
resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-function-name': 7.23.0
'@babel/template': 7.22.15
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
dev: true
- /@babel/helpers@7.23.1:
- resolution: {integrity: sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==}
+ /@babel/helpers@7.23.2:
+ resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.15
- '@babel/traverse': 7.23.0
- '@babel/types': 7.23.0
+ '@babel/traverse': 7.23.3
+ '@babel/types': 7.23.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helpers@7.23.2:
- resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==}
+ /@babel/helpers@7.23.9:
+ resolution: {integrity: sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.3
- '@babel/types': 7.23.0
+ '@babel/template': 7.23.9
+ '@babel/traverse': 7.23.9
+ '@babel/types': 7.23.9
transitivePeerDependencies:
- supports-color
dev: true
@@ -760,6 +833,15 @@ packages:
js-tokens: 4.0.0
dev: true
+ /@babel/highlight@7.23.4:
+ resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.22.20
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ dev: true
+
/@babel/parser@7.23.0:
resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==}
engines: {node: '>=6.0.0'}
@@ -776,136 +858,146 @@ packages:
'@babel/types': 7.23.3
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==}
+ /@babel/parser@7.23.9:
+ resolution: {integrity: sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.23.9
+ dev: true
+
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
+ dev: true
+
+ /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.23.7
+ '@babel/helper-environment-visitor': 7.22.20
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2):
+ /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
dev: true
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.9):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2):
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.7):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.9):
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.2):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.9):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2):
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.7):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2):
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.7):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2):
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.7):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
+ /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
+ /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-plugin-utils': 7.22.5
- dev: true
-
- /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.9):
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -918,12 +1010,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -936,22 +1028,22 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.9):
- resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
- engines: {node: '>=6.9.0'}
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.9):
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2):
+ resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -964,12 +1056,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -982,12 +1074,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.9):
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1000,12 +1092,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1018,12 +1110,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1036,12 +1128,12 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.9):
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1054,705 +1146,714 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.2):
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.23.7
+ '@babel/helper-plugin-utils': 7.22.5
+ dev: true
+
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.7):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.2):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.2):
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.7):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.9):
+ /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.2):
resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.2):
+ /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.7):
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
+ /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-async-generator-functions@7.23.2(@babel/core@7.23.2):
- resolution: {integrity: sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==}
+ /@babel/plugin-transform-async-generator-functions@7.23.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-PdxEpL71bJp1byMG0va5gwQcXHxuEYC/BgI/e88mGTtohbZN28O5Yit0Plkkm/dBzCF/BxmbNcses1RH1T+urA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
+ /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==}
+ /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
+ /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==}
+ /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==}
+ /@babel/plugin-transform-classes@7.23.8(@babel/core@7.23.7):
+ resolution: {integrity: sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/helper-compilation-targets': 7.23.6
'@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/core@7.23.2)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
'@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
dev: true
- /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
+ /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
'@babel/template': 7.22.15
dev: true
- /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==}
+ /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
+ /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
+ /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==}
+ /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
+ /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==}
+ /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==}
+ /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.7):
+ resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
- /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
+ /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/core': 7.23.7
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-function-name': 7.23.0
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==}
+ /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
+ /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==}
+ /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
+ /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==}
+ /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==}
+ /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
dev: true
- /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==}
+ /@babel/plugin-transform-modules-systemjs@7.23.9(@babel/core@7.23.7):
+ resolution: {integrity: sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.20
dev: true
- /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
+ /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.2):
+ /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.7):
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
+ /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==}
+ /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==}
+ /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==}
+ /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.23.3
- '@babel/core': 7.23.2
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.7
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
+ /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2)
+ '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==}
+ /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.2):
- resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==}
+ /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.2):
- resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==}
+ /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
+ /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.2):
- resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==}
+ /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.7):
+ resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
dev: true
- /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
+ /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.2):
- resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==}
+ /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.2
dev: true
- /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
+ /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-runtime@7.23.2(@babel/core@7.23.2):
- resolution: {integrity: sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==}
+ /@babel/plugin-transform-runtime@7.23.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-fa0hnfmiXc9fq/weK34MUV0drz2pOL/vfKWvN7Qw127hiUPabFCUMgAbYWcchRzMJit4o5ARsK/s+5h0249pLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2)
- babel-plugin-polyfill-corejs3: 0.8.5(@babel/core@7.23.2)
- babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2)
+ babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.23.7)
+ babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7)
+ babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.23.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
+ /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
+ /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
- /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
+ /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
+ /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
+ /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.2):
- resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==}
+ /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
+ /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
+ /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
+ /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.7):
+ resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.7)
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/preset-env@7.23.2(@babel/core@7.23.2):
- resolution: {integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==}
+ /@babel/preset-env@7.23.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-SY27X/GtTz/L4UryMNJ6p4fH4nsgWbz84y9FE0bQeWJP6O5BhgVCt53CotQKHCOeXJel8VyhlhujhlltKms/CA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.23.3
- '@babel/core': 7.23.2
- '@babel/helper-compilation-targets': 7.22.15
+ '@babel/compat-data': 7.23.5
+ '@babel/core': 7.23.7
+ '@babel/helper-compilation-targets': 7.23.6
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-validator-option': 7.22.15
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2)
- '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.23.2)
- '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2)
- '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2)
- '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.23.2)
- '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.2)
- '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.23.2)
- '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.2)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.2)
- '@babel/types': 7.23.0
- babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2)
- babel-plugin-polyfill-corejs3: 0.8.5(@babel/core@7.23.2)
- babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2)
+ '@babel/helper-validator-option': 7.23.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.7(@babel/core@7.23.7)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.7)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.7)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.7)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.7)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.7)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.7)
+ '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-async-generator-functions': 7.23.7(@babel/core@7.23.7)
+ '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-classes': 7.23.8(@babel/core@7.23.7)
+ '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-for-of': 7.23.6(@babel/core@7.23.7)
+ '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-systemjs': 7.23.9(@babel/core@7.23.7)
+ '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.7)
+ '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.7)
+ '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.7)
+ '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.7)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.7)
+ babel-plugin-polyfill-corejs2: 0.4.8(@babel/core@7.23.7)
+ babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.7)
+ babel-plugin-polyfill-regenerator: 0.5.5(@babel/core@7.23.7)
core-js-compat: 3.33.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.2):
+ /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.7):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
'@babel/helper-plugin-utils': 7.22.5
- '@babel/types': 7.23.0
+ '@babel/types': 7.23.3
esutils: 2.0.3
dev: true
@@ -1760,8 +1861,8 @@ packages:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
dev: true
- /@babel/runtime@7.23.2:
- resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==}
+ /@babel/runtime@7.23.7:
+ resolution: {integrity: sha512-w06OXVOFso7LcbzMiDGt+3X7Rh7Ho8MmgPoWU3rarH+8upf+wSU/grlGbWzQyr3DkdN6ZeuMFjpdwW0Q+HxobA==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.0
@@ -1772,40 +1873,49 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.13
- '@babel/parser': 7.23.0
- '@babel/types': 7.23.0
+ '@babel/parser': 7.23.3
+ '@babel/types': 7.23.3
+ dev: true
+
+ /@babel/template@7.23.9:
+ resolution: {integrity: sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.23.5
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
dev: true
- /@babel/traverse@7.23.0:
- resolution: {integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==}
+ /@babel/traverse@7.23.3:
+ resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.0
+ '@babel/generator': 7.23.3
'@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.0
- '@babel/types': 7.23.0
+ '@babel/parser': 7.23.3
+ '@babel/types': 7.23.3
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/traverse@7.23.3:
- resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==}
+ /@babel/traverse@7.23.9:
+ resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.3
+ '@babel/code-frame': 7.23.5
+ '@babel/generator': 7.23.6
'@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.3
- '@babel/types': 7.23.3
+ '@babel/parser': 7.23.9
+ '@babel/types': 7.23.9
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
@@ -1830,6 +1940,15 @@ packages:
to-fast-properties: 2.0.0
dev: true
+ /@babel/types@7.23.9:
+ resolution: {integrity: sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.23.4
+ '@babel/helper-validator-identifier': 7.22.20
+ to-fast-properties: 2.0.0
+ dev: true
+
/@bcoe/v8-coverage@0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
dev: true
@@ -1839,17 +1958,17 @@ packages:
engines: {node: '>=10.0.0'}
dev: true
- /@esbuild/android-arm64@0.18.17:
- resolution: {integrity: sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==}
+ /@esbuild/aix-ppc64@0.19.11:
+ resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==}
engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
+ cpu: [ppc64]
+ os: [aix]
requiresBuild: true
dev: true
optional: true
- /@esbuild/android-arm64@0.19.5:
- resolution: {integrity: sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==}
+ /@esbuild/android-arm64@0.19.11:
+ resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
@@ -1857,17 +1976,8 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm@0.18.17:
- resolution: {integrity: sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/android-arm@0.19.5:
- resolution: {integrity: sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==}
+ /@esbuild/android-arm@0.19.11:
+ resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
@@ -1875,8 +1985,8 @@ packages:
dev: true
optional: true
- /@esbuild/android-x64@0.18.17:
- resolution: {integrity: sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==}
+ /@esbuild/android-x64@0.19.11:
+ resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
@@ -1884,17 +1994,8 @@ packages:
dev: true
optional: true
- /@esbuild/android-x64@0.19.5:
- resolution: {integrity: sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/darwin-arm64@0.18.17:
- resolution: {integrity: sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==}
+ /@esbuild/darwin-arm64@0.19.11:
+ resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
@@ -1902,26 +2003,8 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-arm64@0.19.5:
- resolution: {integrity: sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/darwin-x64@0.18.17:
- resolution: {integrity: sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/darwin-x64@0.19.5:
- resolution: {integrity: sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==}
+ /@esbuild/darwin-x64@0.19.11:
+ resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
@@ -1929,8 +2012,8 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-arm64@0.18.17:
- resolution: {integrity: sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==}
+ /@esbuild/freebsd-arm64@0.19.11:
+ resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
@@ -1938,26 +2021,8 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-arm64@0.19.5:
- resolution: {integrity: sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/freebsd-x64@0.18.17:
- resolution: {integrity: sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/freebsd-x64@0.19.5:
- resolution: {integrity: sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==}
+ /@esbuild/freebsd-x64@0.19.11:
+ resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
@@ -1965,17 +2030,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm64@0.18.17:
- resolution: {integrity: sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-arm64@0.19.5:
- resolution: {integrity: sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==}
+ /@esbuild/linux-arm64@0.19.11:
+ resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
@@ -1983,17 +2039,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm@0.18.17:
- resolution: {integrity: sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-arm@0.19.5:
- resolution: {integrity: sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==}
+ /@esbuild/linux-arm@0.19.11:
+ resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
@@ -2001,8 +2048,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ia32@0.18.17:
- resolution: {integrity: sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==}
+ /@esbuild/linux-ia32@0.19.11:
+ resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
@@ -2010,17 +2057,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ia32@0.19.5:
- resolution: {integrity: sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-loong64@0.18.17:
- resolution: {integrity: sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==}
+ /@esbuild/linux-loong64@0.19.11:
+ resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
@@ -2028,26 +2066,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64@0.19.5:
- resolution: {integrity: sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-mips64el@0.18.17:
- resolution: {integrity: sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-mips64el@0.19.5:
- resolution: {integrity: sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==}
+ /@esbuild/linux-mips64el@0.19.11:
+ resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
@@ -2055,8 +2075,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ppc64@0.18.17:
- resolution: {integrity: sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==}
+ /@esbuild/linux-ppc64@0.19.11:
+ resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
@@ -2064,26 +2084,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ppc64@0.19.5:
- resolution: {integrity: sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-riscv64@0.18.17:
- resolution: {integrity: sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-riscv64@0.19.5:
- resolution: {integrity: sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==}
+ /@esbuild/linux-riscv64@0.19.11:
+ resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
@@ -2091,17 +2093,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-s390x@0.18.17:
- resolution: {integrity: sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-s390x@0.19.5:
- resolution: {integrity: sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==}
+ /@esbuild/linux-s390x@0.19.11:
+ resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
@@ -2109,17 +2102,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-x64@0.18.17:
- resolution: {integrity: sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/linux-x64@0.19.5:
- resolution: {integrity: sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==}
+ /@esbuild/linux-x64@0.19.11:
+ resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
@@ -2127,8 +2111,8 @@ packages:
dev: true
optional: true
- /@esbuild/netbsd-x64@0.18.17:
- resolution: {integrity: sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==}
+ /@esbuild/netbsd-x64@0.19.11:
+ resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
@@ -2136,17 +2120,8 @@ packages:
dev: true
optional: true
- /@esbuild/netbsd-x64@0.19.5:
- resolution: {integrity: sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/openbsd-x64@0.18.17:
- resolution: {integrity: sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==}
+ /@esbuild/openbsd-x64@0.19.11:
+ resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
@@ -2154,26 +2129,8 @@ packages:
dev: true
optional: true
- /@esbuild/openbsd-x64@0.19.5:
- resolution: {integrity: sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/sunos-x64@0.18.17:
- resolution: {integrity: sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/sunos-x64@0.19.5:
- resolution: {integrity: sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==}
+ /@esbuild/sunos-x64@0.19.11:
+ resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
@@ -2181,8 +2138,8 @@ packages:
dev: true
optional: true
- /@esbuild/win32-arm64@0.18.17:
- resolution: {integrity: sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==}
+ /@esbuild/win32-arm64@0.19.11:
+ resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
@@ -2190,26 +2147,8 @@ packages:
dev: true
optional: true
- /@esbuild/win32-arm64@0.19.5:
- resolution: {integrity: sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/win32-ia32@0.18.17:
- resolution: {integrity: sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/win32-ia32@0.19.5:
- resolution: {integrity: sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==}
+ /@esbuild/win32-ia32@0.19.11:
+ resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
@@ -2217,17 +2156,8 @@ packages:
dev: true
optional: true
- /@esbuild/win32-x64@0.18.17:
- resolution: {integrity: sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
- requiresBuild: true
- dev: true
- optional: true
-
- /@esbuild/win32-x64@0.19.5:
- resolution: {integrity: sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==}
+ /@esbuild/win32-x64@0.19.11:
+ resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
@@ -2451,7 +2381,7 @@ packages:
resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.19
babel-plugin-istanbul: 6.1.1
@@ -2530,17 +2460,17 @@ packages:
call-bind: 1.0.2
dev: true
- /@ngtools/webpack@17.0.0(@angular/compiler-cli@17.0.2)(typescript@5.2.2)(webpack@5.89.0):
- resolution: {integrity: sha512-/Bb5MXlphNp3UDsQDa4EB4AwpF4D/plrCPd5YGfVvD43j5g5Rpen+cqz5jai1zfAkF1dPl2qq0nRp/jwmJO3uA==}
+ /@ngtools/webpack@17.1.1(@angular/compiler-cli@17.1.1)(typescript@5.2.2)(webpack@5.89.0):
+ resolution: {integrity: sha512-uPWEpRuAUmMBZhYMpkEHNbeI8QAgeVM5lnWM+02lK75u1+sgYy32ed+RcRvEI+8hRQcsCQ8HtR4QubgJb4TzCQ==}
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.3'
+ typescript: '>=5.2 <5.4'
webpack: ^5.54.0
dependencies:
- '@angular/compiler-cli': 17.0.2(@angular/compiler@17.0.2)(typescript@5.2.2)
+ '@angular/compiler-cli': 17.1.1(@angular/compiler@17.1.1)(typescript@5.2.2)
typescript: 5.2.2
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
dev: true
/@nodelib/fs.scandir@2.1.5:
@@ -2641,7 +2571,39 @@ packages:
dev: true
optional: true
- /@rollup/plugin-json@6.0.1(rollup@4.4.1):
+ /@popperjs/core@2.11.8:
+ resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
+ dev: false
+
+ /@remirror/core-constants@2.0.2:
+ resolution: {integrity: sha512-dyHY+sMF0ihPus3O27ODd4+agdHMEmuRdyiZJ2CCWjPV5UFmn17ZbElvk6WOGVE4rdCJKZQCrPV2BcikOMLUGQ==}
+ dev: false
+
+ /@remirror/core-helpers@3.0.0:
+ resolution: {integrity: sha512-tusEgQJIqg4qKj6HSBUFcyRnWnziw3neh4T9wOmsPGHFC3w9kl5KSrDb9UAgE8uX6y32FnS7vJ955mWOl3n50A==}
+ dependencies:
+ '@remirror/core-constants': 2.0.2
+ '@remirror/types': 1.0.1
+ '@types/object.omit': 3.0.3
+ '@types/object.pick': 1.3.4
+ '@types/throttle-debounce': 2.1.0
+ case-anything: 2.1.13
+ dash-get: 1.0.2
+ deepmerge: 4.3.1
+ fast-deep-equal: 3.1.3
+ make-error: 1.3.6
+ object.omit: 3.0.0
+ object.pick: 1.3.0
+ throttle-debounce: 3.0.1
+ dev: false
+
+ /@remirror/types@1.0.1:
+ resolution: {integrity: sha512-VlZQxwGnt1jtQ18D6JqdIF+uFZo525WEqrfp9BOc3COPpK4+AWCgdnAWL+ho6imWcoINlGjR/+3b6y5C1vBVEA==}
+ dependencies:
+ type-fest: 2.19.0
+ dev: false
+
+ /@rollup/plugin-json@6.0.1(rollup@4.9.6):
resolution: {integrity: sha512-RgVfl5hWMkxN1h/uZj8FVESvPuBJ/uf6ly6GTj0GONnkfoBN5KC0MSz+PN2OLDgYXMhtG0mWpTrkiOjoxAIevw==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2650,11 +2612,11 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.5(rollup@4.4.1)
- rollup: 4.4.1
+ '@rollup/pluginutils': 5.0.5(rollup@4.9.6)
+ rollup: 4.9.6
dev: true
- /@rollup/plugin-node-resolve@15.2.3(rollup@4.4.1):
+ /@rollup/plugin-node-resolve@15.2.3(rollup@4.9.6):
resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2663,16 +2625,16 @@ packages:
rollup:
optional: true
dependencies:
- '@rollup/pluginutils': 5.0.5(rollup@4.4.1)
+ '@rollup/pluginutils': 5.0.5(rollup@4.9.6)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-builtin-module: 3.2.1
is-module: 1.0.0
resolve: 1.22.8
- rollup: 4.4.1
+ rollup: 4.9.6
dev: true
- /@rollup/pluginutils@5.0.5(rollup@4.4.1):
+ /@rollup/pluginutils@5.0.5(rollup@4.9.6):
resolution: {integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -2684,7 +2646,7 @@ packages:
'@types/estree': 1.0.2
estree-walker: 2.0.2
picomatch: 2.3.1
- rollup: 4.4.1
+ rollup: 4.9.6
dev: true
/@rollup/rollup-android-arm-eabi@4.4.1:
@@ -2695,6 +2657,14 @@ packages:
dev: true
optional: true
+ /@rollup/rollup-android-arm-eabi@4.9.6:
+ resolution: {integrity: sha512-MVNXSSYN6QXOulbHpLMKYi60ppyO13W9my1qogeiAqtjb2yR4LSmfU2+POvDkLzhjYLXz9Rf9+9a3zFHW1Lecg==}
+ cpu: [arm]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@rollup/rollup-android-arm64@4.4.1:
resolution: {integrity: sha512-sRSkGTvGsARwWd7TzC8LKRf8FiPn7257vd/edzmvG4RIr9x68KBN0/Ek48CkuUJ5Pj/Dp9vKWv6PEupjKWjTYA==}
cpu: [arm64]
@@ -2703,6 +2673,14 @@ packages:
dev: true
optional: true
+ /@rollup/rollup-android-arm64@4.9.6:
+ resolution: {integrity: sha512-T14aNLpqJ5wzKNf5jEDpv5zgyIqcpn1MlwCrUXLrwoADr2RkWA0vOWP4XxbO9aiO3dvMCQICZdKeDrFl7UMClw==}
+ cpu: [arm64]
+ os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@rollup/rollup-darwin-arm64@4.4.1:
resolution: {integrity: sha512-nz0AiGrrXyaWpsmBXUGOBiRDU0wyfSXbFuF98pPvIO8O6auQsPG6riWsfQqmCCC5FNd8zKQ4JhgugRNAkBJ8mQ==}
cpu: [arm64]
@@ -2711,6 +2689,14 @@ packages:
dev: true
optional: true
+ /@rollup/rollup-darwin-arm64@4.9.6:
+ resolution: {integrity: sha512-CqNNAyhRkTbo8VVZ5R85X73H3R5NX9ONnKbXuHisGWC0qRbTTxnF1U4V9NafzJbgGM0sHZpdO83pLPzq8uOZFw==}
+ cpu: [arm64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@rollup/rollup-darwin-x64@4.4.1:
resolution: {integrity: sha512-Ogqvf4/Ve/faMaiPRvzsJEqajbqs00LO+8vtrPBVvLgdw4wBg6ZDXdkDAZO+4MLnrc8mhGV6VJAzYScZdPLtJg==}
cpu: [x64]
@@ -2719,6 +2705,14 @@ packages:
dev: true
optional: true
+ /@rollup/rollup-darwin-x64@4.9.6:
+ resolution: {integrity: sha512-zRDtdJuRvA1dc9Mp6BWYqAsU5oeLixdfUvkTHuiYOHwqYuQ4YgSmi6+/lPvSsqc/I0Omw3DdICx4Tfacdzmhog==}
+ cpu: [x64]
+ os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@rollup/rollup-linux-arm-gnueabihf@4.4.1:
resolution: {integrity: sha512-9zc2tqlr6HfO+hx9+wktUlWTRdje7Ub15iJqKcqg5uJZ+iKqmd2CMxlgPpXi7+bU7bjfDIuvCvnGk7wewFEhCg==}
cpu: [arm]
@@ -2727,6 +2721,14 @@ packages:
dev: true
optional: true
+ /@rollup/rollup-linux-arm-gnueabihf@4.9.6:
+ resolution: {integrity: sha512-oNk8YXDDnNyG4qlNb6is1ojTOGL/tRhbbKeE/YuccItzerEZT68Z9gHrY3ROh7axDc974+zYAPxK5SH0j/G+QQ==}
+ cpu: [arm]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@rollup/rollup-linux-arm64-gnu@4.4.1:
resolution: {integrity: sha512-phLb1fN3rq2o1j1v+nKxXUTSJnAhzhU0hLrl7Qzb0fLpwkGMHDem+o6d+ZI8+/BlTXfMU4kVWGvy6g9k/B8L6Q==}
cpu: [arm64]
@@ -2735,6 +2737,14 @@ packages:
dev: true
optional: true
+ /@rollup/rollup-linux-arm64-gnu@4.9.6:
+ resolution: {integrity: sha512-Z3O60yxPtuCYobrtzjo0wlmvDdx2qZfeAWTyfOjEDqd08kthDKexLpV97KfAeUXPosENKd8uyJMRDfFMxcYkDQ==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@rollup/rollup-linux-arm64-musl@4.4.1:
resolution: {integrity: sha512-M2sDtw4tf57VPSjbTAN/lz1doWUqO2CbQuX3L9K6GWIR5uw9j+ROKCvvUNBY8WUbMxwaoc8mH9HmmBKsLht7+w==}
cpu: [arm64]
@@ -2743,6 +2753,22 @@ packages:
dev: true
optional: true
+ /@rollup/rollup-linux-arm64-musl@4.9.6:
+ resolution: {integrity: sha512-gpiG0qQJNdYEVad+1iAsGAbgAnZ8j07FapmnIAQgODKcOTjLEWM9sRb+MbQyVsYCnA0Im6M6QIq6ax7liws6eQ==}
+ cpu: [arm64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/rollup-linux-riscv64-gnu@4.9.6:
+ resolution: {integrity: sha512-+uCOcvVmFUYvVDr27aiyun9WgZk0tXe7ThuzoUTAukZJOwS5MrGbmSlNOhx1j80GdpqbOty05XqSl5w4dQvcOA==}
+ cpu: [riscv64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@rollup/rollup-linux-x64-gnu@4.4.1:
resolution: {integrity: sha512-mHIlRLX+hx+30cD6c4BaBOsSqdnCE4ok7/KDvjHYAHoSuveoMMxIisZFvcLhUnyZcPBXDGZTuBoalcuh43UfQQ==}
cpu: [x64]
@@ -2751,6 +2777,14 @@ packages:
dev: true
optional: true
+ /@rollup/rollup-linux-x64-gnu@4.9.6:
+ resolution: {integrity: sha512-HUNqM32dGzfBKuaDUBqFB7tP6VMN74eLZ33Q9Y1TBqRDn+qDonkAUyKWwF9BR9unV7QUzffLnz9GrnKvMqC/fw==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@rollup/rollup-linux-x64-musl@4.4.1:
resolution: {integrity: sha512-tB+RZuDi3zxFx7vDrjTNGVLu2KNyzYv+UY8jz7e4TMEoAj7iEt8Qk6xVu6mo3pgjnsHj6jnq3uuRsHp97DLwOA==}
cpu: [x64]
@@ -2759,6 +2793,14 @@ packages:
dev: true
optional: true
+ /@rollup/rollup-linux-x64-musl@4.9.6:
+ resolution: {integrity: sha512-ch7M+9Tr5R4FK40FHQk8VnML0Szi2KRujUgHXd/HjuH9ifH72GUmw6lStZBo3c3GB82vHa0ZoUfjfcM7JiiMrQ==}
+ cpu: [x64]
+ os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@rollup/rollup-win32-arm64-msvc@4.4.1:
resolution: {integrity: sha512-Hdn39PzOQowK/HZzYpCuZdJC91PE6EaGbTe2VCA9oq2u18evkisQfws0Smh9QQGNNRa/T7MOuGNQoLeXhhE3PQ==}
cpu: [arm64]
@@ -2767,6 +2809,14 @@ packages:
dev: true
optional: true
+ /@rollup/rollup-win32-arm64-msvc@4.9.6:
+ resolution: {integrity: sha512-VD6qnR99dhmTQ1mJhIzXsRcTBvTjbfbGGwKAHcu+52cVl15AC/kplkhxzW/uT0Xl62Y/meBKDZvoJSJN+vTeGA==}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@rollup/rollup-win32-ia32-msvc@4.4.1:
resolution: {integrity: sha512-tLpKb1Elm9fM8c5w3nl4N1eLTP4bCqTYw9tqUBxX8/hsxqHO3dxc2qPbZ9PNkdK4tg4iLEYn0pOUnVByRd2CbA==}
cpu: [ia32]
@@ -2775,6 +2825,14 @@ packages:
dev: true
optional: true
+ /@rollup/rollup-win32-ia32-msvc@4.9.6:
+ resolution: {integrity: sha512-J9AFDq/xiRI58eR2NIDfyVmTYGyIZmRcvcAoJ48oDld/NTR8wyiPUu2X/v1navJ+N/FGg68LEbX3Ejd6l8B7MQ==}
+ cpu: [ia32]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
/@rollup/rollup-win32-x64-msvc@4.4.1:
resolution: {integrity: sha512-eAhItDX9yQtZVM3yvXS/VR3qPqcnXvnLyx1pLXl4JzyNMBNO3KC986t/iAg2zcMzpAp9JSvxB5VZGnBiNoA98w==}
cpu: [x64]
@@ -2783,12 +2841,30 @@ packages:
dev: true
optional: true
- /@schematics/angular@17.0.0:
- resolution: {integrity: sha512-9jKU5x/WzaBsfSkUowK1X74FqtMXa6+A60XgW4ACO8i6fwKfPeS+tIrAieeYOX80/njBh7I5CvcpHmWA2SbcXQ==}
+ /@rollup/rollup-win32-x64-msvc@4.9.6:
+ resolution: {integrity: sha512-jqzNLhNDvIZOrt69Ce4UjGRpXJBzhUBzawMwnaDAwyHriki3XollsewxWzOzz+4yOFDkuJHtTsZFwMxhYJWmLQ==}
+ cpu: [x64]
+ os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
+
+ /@rollup/wasm-node@4.9.6:
+ resolution: {integrity: sha512-B3FpAkroTE6q+MRHzv8XLBgPbxdjJiy5UnduZNQ/4lxeF1JT2O/OAr0JPpXeRG/7zpKm/kdqU/4m6AULhmnSqw==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+ dependencies:
+ '@types/estree': 1.0.5
+ optionalDependencies:
+ fsevents: 2.3.3
+ dev: true
+
+ /@schematics/angular@17.1.1:
+ resolution: {integrity: sha512-1Wqefy1W9Y63g48Fp7BscL95V4U1seDGgZawH6DcJnytJVW89hazao7YREzLYfdoediuw7lU+OHJksWYe4VQww==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
dependencies:
- '@angular-devkit/core': 17.0.0(chokidar@3.5.3)
- '@angular-devkit/schematics': 17.0.0
+ '@angular-devkit/core': 17.1.1
+ '@angular-devkit/schematics': 17.1.1
jsonc-parser: 3.2.0
transitivePeerDependencies:
- chokidar
@@ -2843,9 +2919,238 @@ packages:
'@sinonjs/commons': 3.0.0
dev: true
- /@socket.io/component-emitter@3.1.0:
- resolution: {integrity: sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==}
- dev: true
+ /@tiptap/core@2.1.16(@tiptap/pm@2.1.12):
+ resolution: {integrity: sha512-nKnV603UyzbcrqhCXTWxDN22Ujb4VNfmKkACms1JOMGo7BVARmMCp2nBsLW8fmgCxmf8AS0LXY63tU7ILWYc5g==}
+ peerDependencies:
+ '@tiptap/pm': ^2.0.0
+ dependencies:
+ '@tiptap/pm': 2.1.12
+ dev: false
+
+ /@tiptap/extension-blockquote@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-1OMk8cBrL0VnbnzD3XHx7U4oMDCiXRR7Spfl9JqwC9pS4RosOUBySNxpEBwhSegB0pK6sd7m44qLqj00If+cHA==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/extension-bold@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-gz2VrBkRRsGBiOHx1qB++VUfpuRdhJp6jlgNqqHFbIkjKr2NB+u7oiH5SbjlL4eG0wlam1QA4jAkXhZgdvkA4g==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/extension-bubble-menu@2.1.12(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12):
+ resolution: {integrity: sha512-gAGi21EQ4wvLmT7klgariAc2Hf+cIjaNU2NWze3ut6Ku9gUo5ZLqj1t9SKHmNf4d5JG63O8GxpErqpA7lHlRtw==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ '@tiptap/pm': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ '@tiptap/pm': 2.1.12
+ tippy.js: 6.3.7
+ dev: false
+
+ /@tiptap/extension-bullet-list@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-Cheaep5JShO9TtRslrOObSVKtRQFKozou2ZWDas5sIeef/A/GWPfVTzusfBGE/ItHwZNaDXwJOoVnSUPT8ulfw==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/extension-code-block@2.1.16(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12):
+ resolution: {integrity: sha512-IspVmwg17Vx59W8lEIbVRIeMscJtRCdsif45CkzVv1uSHMl7tmrJh3n8vv/vrB+rnLasQrOEbEKNEqUL3eHlKQ==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ '@tiptap/pm': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ '@tiptap/pm': 2.1.12
+ dev: false
+
+ /@tiptap/extension-code@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-2+fVfh3qQORgMRSZ6hn+yW5/rLzlulCzMhdL07G0lWY8/eWEv3p9DCfgw9AOHrrHFim8/MVWyRkrkBM/yHX9FA==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/extension-document@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-VSOrzGnpI9dJDffFn3ZjmPKYkH/YtYeDl6nqLu7TafRqyLMSEqxxxq/+Qs/7j8jbzq6osslY0sySckSulroIOg==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/extension-dropcursor@2.1.16(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12):
+ resolution: {integrity: sha512-voWEIAmxV3f9Q0gc3K89HRq8KFeOVtHJBRHYihZwxMnvq2aMIwdpCx0GbiCd4slQaBLd1ASJHz1uAigVhR2+uA==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ '@tiptap/pm': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ '@tiptap/pm': 2.1.12
+ dev: false
+
+ /@tiptap/extension-floating-menu@2.1.12(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12):
+ resolution: {integrity: sha512-uo0ydCJNg6AWwLT6cMUJYVChfvw2PY9ZfvKRhh9YJlGfM02jS4RUG/bJBts6R37f+a5FsOvAVwg8EvqPlNND1A==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ '@tiptap/pm': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ '@tiptap/pm': 2.1.12
+ tippy.js: 6.3.7
+ dev: false
+
+ /@tiptap/extension-gapcursor@2.1.16(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12):
+ resolution: {integrity: sha512-Bgjo0da0W1QOhtnT3NR7GHPmVBZykNRekNGsTA3+nxCjkqh1G32Jt58TBKP3vdLBaww3lhrii0SYVErlFgIJnA==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ '@tiptap/pm': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ '@tiptap/pm': 2.1.12
+ dev: false
+
+ /@tiptap/extension-hard-break@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-H3Bk8Gu5pV7xH8TrzH0WAoXrJVEKsDA6Evyl7H7aCAMAvotQL0ehuuX88bjPMCSAvBXZE39wYnJCJshGbVx0BA==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/extension-heading@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-vFQuAAnIxDwKjTV+ScSwIaeG4Uhm1cZddnbLTru1EJfIz9VvpHDZKEyL4ZJvWuKMAhCzlw54TQhBCVHqalXyaA==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/extension-history@2.1.16(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12):
+ resolution: {integrity: sha512-9YHPf8Xqqp5CQy1hJonkBzROj0ZHR1ZaIk9IaLlAPTpdkrUDXV9SC7qp3lozQsMg4vmU3K6H5VQo4ADpnR00OQ==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ '@tiptap/pm': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ '@tiptap/pm': 2.1.12
+ dev: false
+
+ /@tiptap/extension-horizontal-rule@2.1.16(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12):
+ resolution: {integrity: sha512-Q+Zp0lJF7212YIuZnbMmn4KC1MZoZjQIuvSd+DOgCwKSeUcTXBbljDjOiN8yrY134r+A4fFM7KHTXWYqZGZQug==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ '@tiptap/pm': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ '@tiptap/pm': 2.1.12
+ dev: false
+
+ /@tiptap/extension-italic@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-6mFGPBGxd2aICJ5Q3zYxuXO8slKoOP/PsSjEQn1bjs3h8Q3mPxHX290ePVp728o5F0myM9sxKSz2V6/VeuS/Yw==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/extension-list-item@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-RLUodzFispIe1adarCEzf+OfaGZna/WR/k/HqPnbflSiJ6/I2P5MqI+ELjGGvc53eanf3+KpsHlB2Pganp8sMA==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/extension-ordered-list@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-6QLUm90wz2lfzWGV4fX5NOOFA8zKlcDBNrTeOd0V7H4fcafLmANqU/5o4LLNJmK8y8f1YAvmHr9xgciqggGJJA==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/extension-paragraph@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-JwCKSFjBLd9xAmxLe7hf1h4AucDvkGTfDb/wA1jId64g+uf0/tm6RDjnk/QD+D2YzoLGFLjQm0GAdPXTmyTPdA==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/extension-strike@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-Z1hmBK1QWMMGDV2MJ3KBDiMuzcScjyx88cP5ln5G7626Zxeqywf84KF+2WyHBzJWfwMWpAouzwHKe9ld39Vu1w==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/extension-text@2.1.16(@tiptap/core@2.1.16):
+ resolution: {integrity: sha512-XzSJmAj32uYpaL/9FX3tRSU52DwZ9w+3yEffIcSN9MSwioqLsSolXOz7TuJfW6lSTar1ml9UPlRqX4dpayUTDQ==}
+ peerDependencies:
+ '@tiptap/core': ^2.0.0
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ dev: false
+
+ /@tiptap/pm@2.1.12:
+ resolution: {integrity: sha512-Q3MXXQABG4CZBesSp82yV84uhJh/W0Gag6KPm2HRWPimSFELM09Z9/5WK9RItAYE0aLhe4Krnyiczn9AAa1tQQ==}
+ dependencies:
+ prosemirror-changeset: 2.2.1
+ prosemirror-collab: 1.3.1
+ prosemirror-commands: 1.5.2
+ prosemirror-dropcursor: 1.8.1
+ prosemirror-gapcursor: 1.3.2
+ prosemirror-history: 1.3.2
+ prosemirror-inputrules: 1.2.1
+ prosemirror-keymap: 1.2.2
+ prosemirror-markdown: 1.11.2
+ prosemirror-menu: 1.2.4
+ prosemirror-model: 1.19.3
+ prosemirror-schema-basic: 1.2.2
+ prosemirror-schema-list: 1.3.0
+ prosemirror-state: 1.4.3
+ prosemirror-tables: 1.3.4
+ prosemirror-trailing-node: 2.0.7(prosemirror-model@1.19.3)(prosemirror-state@1.4.3)(prosemirror-view@1.32.4)
+ prosemirror-transform: 1.8.0
+ prosemirror-view: 1.32.4
+ dev: false
+
+ /@tiptap/starter-kit@2.1.16(@tiptap/pm@2.1.12):
+ resolution: {integrity: sha512-DudGvkNEB1IwfMAqBKCcT49BY275hKF6SwjTWN89cLvVBd2TBe4R6wWMNKDhwfR8fmXz/aXpGJWWO2AFimY3jg==}
+ dependencies:
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ '@tiptap/extension-blockquote': 2.1.16(@tiptap/core@2.1.16)
+ '@tiptap/extension-bold': 2.1.16(@tiptap/core@2.1.16)
+ '@tiptap/extension-bullet-list': 2.1.16(@tiptap/core@2.1.16)
+ '@tiptap/extension-code': 2.1.16(@tiptap/core@2.1.16)
+ '@tiptap/extension-code-block': 2.1.16(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12)
+ '@tiptap/extension-document': 2.1.16(@tiptap/core@2.1.16)
+ '@tiptap/extension-dropcursor': 2.1.16(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12)
+ '@tiptap/extension-gapcursor': 2.1.16(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12)
+ '@tiptap/extension-hard-break': 2.1.16(@tiptap/core@2.1.16)
+ '@tiptap/extension-heading': 2.1.16(@tiptap/core@2.1.16)
+ '@tiptap/extension-history': 2.1.16(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12)
+ '@tiptap/extension-horizontal-rule': 2.1.16(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12)
+ '@tiptap/extension-italic': 2.1.16(@tiptap/core@2.1.16)
+ '@tiptap/extension-list-item': 2.1.16(@tiptap/core@2.1.16)
+ '@tiptap/extension-ordered-list': 2.1.16(@tiptap/core@2.1.16)
+ '@tiptap/extension-paragraph': 2.1.16(@tiptap/core@2.1.16)
+ '@tiptap/extension-strike': 2.1.16(@tiptap/core@2.1.16)
+ '@tiptap/extension-text': 2.1.16(@tiptap/core@2.1.16)
+ transitivePeerDependencies:
+ - '@tiptap/pm'
+ dev: false
/@tootallnate/once@2.0.0:
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
@@ -2920,16 +3225,6 @@ packages:
'@types/node': 20.8.4
dev: true
- /@types/cookie@0.4.1:
- resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==}
- dev: true
-
- /@types/cors@2.8.16:
- resolution: {integrity: sha512-Trx5or1Nyg1Fq138PCuWqoApzvoSLWzZ25ORBiHMbbUT42g578lH1GT4TwYDbiUOLFuDsCkfLneT2105fsFWGg==}
- dependencies:
- '@types/node': 20.8.4
- dev: true
-
/@types/eslint-scope@3.7.5:
resolution: {integrity: sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==}
dependencies:
@@ -2948,6 +3243,10 @@ packages:
resolution: {integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==}
dev: true
+ /@types/estree@1.0.5:
+ resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+ dev: true
+
/@types/express-serve-static-core@4.17.37:
resolution: {integrity: sha512-ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg==}
dependencies:
@@ -2998,8 +3297,8 @@ packages:
'@types/istanbul-lib-report': 3.0.1
dev: true
- /@types/jest@29.5.5:
- resolution: {integrity: sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg==}
+ /@types/jest@29.5.11:
+ resolution: {integrity: sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==}
dependencies:
expect: 29.7.0
pretty-format: 29.7.0
@@ -3031,6 +3330,14 @@ packages:
undici-types: 5.25.3
dev: true
+ /@types/object.omit@3.0.3:
+ resolution: {integrity: sha512-xrq4bQTBGYY2cw+gV4PzoG2Lv3L0pjZ1uXStRRDQoATOYW1lCsFQHhQ+OkPhIcQoqLjAq7gYif7D14Qaa6Zbew==}
+ dev: false
+
+ /@types/object.pick@1.3.4:
+ resolution: {integrity: sha512-5PjwB0uP2XDp3nt5u5NJAG2DORHIRClPzWT/TTZhJ2Ekwe8M5bA9tvPdi9NO/n2uvu2/ictat8kgqvLfcIE1SA==}
+ dev: false
+
/@types/qs@6.9.8:
resolution: {integrity: sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==}
dev: true
@@ -3078,6 +3385,10 @@ packages:
resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
dev: true
+ /@types/throttle-debounce@2.1.0:
+ resolution: {integrity: sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ==}
+ dev: false
+
/@types/tough-cookie@4.0.3:
resolution: {integrity: sha512-THo502dA5PzG/sfQH+42Lw3fvmYkceefOspdCwpHRul8ik2Jv1K8I5OZz1AT3/rs46kwgMCe9bSBmDLYkkOMGg==}
dev: true
@@ -3098,13 +3409,13 @@ packages:
'@types/yargs-parser': 21.0.1
dev: true
- /@vitejs/plugin-basic-ssl@1.0.1(vite@4.5.0):
- resolution: {integrity: sha512-pcub+YbFtFhaGRTo1832FQHQSHvMrlb43974e2eS8EKleR3p1cDdkJFPci1UhwkEf1J9Bz+wKBSzqpKp7nNj2A==}
+ /@vitejs/plugin-basic-ssl@1.0.2(vite@5.0.12):
+ resolution: {integrity: sha512-DKHKVtpI+eA5fvObVgQ3QtTGU70CcCnedalzqmGSR050AzKZMdUzgC8KmlOneHWH8dF2hJ3wkC9+8FDVAaDRCw==}
engines: {node: '>=14.6.0'}
peerDependencies:
- vite: ^3.0.0 || ^4.0.0
+ vite: ^3.0.0 || ^4.0.0 || ^5.0.0
dependencies:
- vite: 4.5.0(less@4.2.0)(sass@1.69.5)(terser@5.24.0)
+ vite: 5.0.12(less@4.2.0)(sass@1.69.7)(terser@5.26.0)
dev: true
/@webassemblyjs/ast@1.11.6:
@@ -3424,7 +3735,6 @@ packages:
/argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- dev: true
/array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
@@ -3434,56 +3744,53 @@ packages:
resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
dev: true
- /async-each-series@0.1.1:
- resolution: {integrity: sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==}
- engines: {node: '>=0.8.0'}
- dev: true
-
- /async@2.6.4:
- resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
- dependencies:
- lodash: 4.17.21
- dev: true
-
/asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
dev: true
- /autoprefixer@10.4.16(postcss@8.4.31):
+ /autoprefixer@10.4.16(postcss@8.4.33):
resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.22.1
- caniuse-lite: 1.0.30001547
+ browserslist: 4.22.2
+ caniuse-lite: 1.0.30001580
fraction.js: 4.3.6
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.31
+ postcss: 8.4.33
postcss-value-parser: 4.2.0
dev: true
- /axios@0.21.4(debug@4.3.2):
- resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
+ /autoprefixer@10.4.17(postcss@8.4.33):
+ resolution: {integrity: sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==}
+ engines: {node: ^10 || ^12 || >=14}
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.1.0
dependencies:
- follow-redirects: 1.15.3(debug@4.3.2)
- transitivePeerDependencies:
- - debug
+ browserslist: 4.22.2
+ caniuse-lite: 1.0.30001580
+ fraction.js: 4.3.7
+ normalize-range: 0.1.2
+ picocolors: 1.0.0
+ postcss: 8.4.33
+ postcss-value-parser: 4.2.0
dev: true
- /babel-jest@29.7.0(@babel/core@7.22.9):
+ /babel-jest@29.7.0(@babel/core@7.23.2):
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.2
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.22.9)
+ babel-preset-jest: 29.6.3(@babel/core@7.23.2)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -3491,17 +3798,17 @@ packages:
- supports-color
dev: true
- /babel-loader@9.1.3(@babel/core@7.23.2)(webpack@5.89.0):
+ /babel-loader@9.1.3(@babel/core@7.23.7)(webpack@5.89.0):
resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
'@babel/core': ^7.12.0
webpack: '>=5'
dependencies:
- '@babel/core': 7.23.2
+ '@babel/core': 7.23.7
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
dev: true
/babel-plugin-istanbul@6.1.1:
@@ -3527,71 +3834,71 @@ packages:
'@types/babel__traverse': 7.20.2
dev: true
- /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.2):
- resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==}
+ /babel-plugin-polyfill-corejs2@0.4.8(@babel/core@7.23.7):
+ resolution: {integrity: sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/compat-data': 7.22.20
- '@babel/core': 7.23.2
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ '@babel/compat-data': 7.23.3
+ '@babel/core': 7.23.7
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3@0.8.5(@babel/core@7.23.2):
- resolution: {integrity: sha512-Q6CdATeAvbScWPNLB8lzSO7fgUVBkQt6zLgNlfyeCr/EQaEQR+bWiBYYPYAFyE528BMjRhL+1QBMOI4jc/c5TA==}
+ /babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.23.7):
+ resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
- core-js-compat: 3.33.0
+ '@babel/core': 7.23.7
+ '@babel/helper-define-polyfill-provider': 0.4.4(@babel/core@7.23.7)
+ core-js-compat: 3.35.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.2):
- resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==}
+ /babel-plugin-polyfill-regenerator@0.5.5(@babel/core@7.23.7):
+ resolution: {integrity: sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
dependencies:
- '@babel/core': 7.23.2
- '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2)
+ '@babel/core': 7.23.7
+ '@babel/helper-define-polyfill-provider': 0.5.0(@babel/core@7.23.7)
transitivePeerDependencies:
- supports-color
dev: true
- /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.9):
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.2):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.9)
- dev: true
-
- /babel-preset-jest@29.6.3(@babel/core@7.22.9):
+ '@babel/core': 7.23.2
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2)
+ dev: true
+
+ /babel-preset-jest@29.6.3(@babel/core@7.23.2):
resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.9)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2)
dev: true
/balanced-match@1.0.2:
@@ -3602,11 +3909,6 @@ packages:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
dev: true
- /base64id@2.0.0:
- resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==}
- engines: {node: ^4.5.0 || >= 5.9}
- dev: true
-
/batch@0.6.1:
resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=}
dev: true
@@ -3681,83 +3983,28 @@ packages:
fill-range: 7.0.1
dev: true
- /browser-sync-client@2.29.3:
- resolution: {integrity: sha512-4tK5JKCl7v/3aLbmCBMzpufiYLsB1+UI+7tUXCCp5qF0AllHy/jAqYu6k7hUF3hYtlClKpxExWaR+rH+ny07wQ==}
- engines: {node: '>=8.0.0'}
- dependencies:
- etag: 1.8.1
- fresh: 0.5.2
- mitt: 1.2.0
- dev: true
-
- /browser-sync-ui@2.29.3:
- resolution: {integrity: sha512-kBYOIQjU/D/3kYtUIJtj82e797Egk1FB2broqItkr3i4eF1qiHbFCG6srksu9gWhfmuM/TNG76jMfzAdxEPakg==}
- dependencies:
- async-each-series: 0.1.1
- chalk: 4.1.2
- connect-history-api-fallback: 1.6.0
- immutable: 3.8.2
- server-destroy: 1.0.1
- socket.io-client: 4.7.2
- stream-throttle: 0.1.3
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- dev: true
-
- /browser-sync@2.29.3:
- resolution: {integrity: sha512-NiM38O6XU84+MN+gzspVmXV2fTOoe+jBqIBx3IBdhZrdeURr6ZgznJr/p+hQ+KzkKEiGH/GcC4SQFSL0jV49bg==}
- engines: {node: '>= 8.0.0'}
- hasBin: true
- dependencies:
- browser-sync-client: 2.29.3
- browser-sync-ui: 2.29.3
- bs-recipes: 1.3.4
- chalk: 4.1.2
- chokidar: 3.5.3
- connect: 3.6.6
- connect-history-api-fallback: 1.6.0
- dev-ip: 1.0.1
- easy-extender: 2.3.4
- eazy-logger: 4.0.1
- etag: 1.8.1
- fresh: 0.5.2
- fs-extra: 3.0.1
- http-proxy: 1.18.1
- immutable: 3.8.2
- localtunnel: 2.0.2
- micromatch: 4.0.5
- opn: 5.3.0
- portscanner: 2.2.0
- raw-body: 2.5.1
- resp-modifier: 6.0.2
- rx: 4.1.0
- send: 0.16.2
- serve-index: 1.9.1
- serve-static: 1.13.2
- server-destroy: 1.0.1
- socket.io: 4.7.2
- ua-parser-js: 1.0.37
- yargs: 17.7.2
- transitivePeerDependencies:
- - bufferutil
- - debug
- - supports-color
- - utf-8-validate
- dev: true
-
/browserslist@4.22.1:
resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001547
+ caniuse-lite: 1.0.30001580
electron-to-chromium: 1.4.549
node-releases: 2.0.13
update-browserslist-db: 1.0.13(browserslist@4.22.1)
dev: true
+ /browserslist@4.22.2:
+ resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001580
+ electron-to-chromium: 1.4.646
+ node-releases: 2.0.14
+ update-browserslist-db: 1.0.13(browserslist@4.22.2)
+ dev: true
+
/bs-logger@0.2.6:
resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
engines: {node: '>= 6'}
@@ -3765,10 +4012,6 @@ packages:
fast-json-stable-stringify: 2.1.0
dev: true
- /bs-recipes@1.3.4:
- resolution: {integrity: sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==}
- dev: true
-
/bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
dependencies:
@@ -3852,10 +4095,15 @@ packages:
engines: {node: '>=10'}
dev: true
- /caniuse-lite@1.0.30001547:
- resolution: {integrity: sha512-W7CrtIModMAxobGhz8iXmDfuJiiKg1WADMO/9x7/CLNin5cpSbuBjooyoIUVB5eyCc36QuTVlkVa1iB2S5+/eA==}
+ /caniuse-lite@1.0.30001580:
+ resolution: {integrity: sha512-mtj5ur2FFPZcCEpXFy8ADXbDACuNFXg6mxVDqp7tqooX6l3zwm+d8EPoeOSIFRDvHs8qu7/SLFOGniULkcH2iA==}
dev: true
+ /case-anything@2.1.13:
+ resolution: {integrity: sha512-zlOQ80VrQ2Ue+ymH5OuM/DlDq64mEm+B9UTdHULv5osUMD6HalNTblf2b1u/m6QecjsnOkBpqVZ+XPwIVsy7Ng==}
+ engines: {node: '>=12.13'}
+ dev: false
+
/chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
@@ -3943,14 +4191,6 @@ packages:
engines: {node: '>= 12'}
dev: true
- /cliui@7.0.4:
- resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
- dev: true
-
/cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
@@ -4063,28 +4303,11 @@ packages:
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
dev: true
- /connect-history-api-fallback@1.6.0:
- resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
- engines: {node: '>=0.8'}
- dev: true
-
/connect-history-api-fallback@2.0.0:
resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
engines: {node: '>=0.8'}
dev: true
- /connect@3.6.6:
- resolution: {integrity: sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==}
- engines: {node: '>= 0.10.0'}
- dependencies:
- debug: 2.6.9
- finalhandler: 1.1.0
- parseurl: 1.3.3
- utils-merge: 1.0.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
@@ -4109,11 +4332,6 @@ packages:
resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=}
dev: true
- /cookie@0.4.2:
- resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
- engines: {node: '>= 0.6'}
- dev: true
-
/cookie@0.5.0:
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'}
@@ -4131,31 +4349,29 @@ packages:
peerDependencies:
webpack: ^5.1.0
dependencies:
- fast-glob: 3.3.1
+ fast-glob: 3.3.2
glob-parent: 6.0.2
globby: 13.2.2
normalize-path: 3.0.0
schema-utils: 4.2.0
serialize-javascript: 6.0.1
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
dev: true
/core-js-compat@3.33.0:
resolution: {integrity: sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw==}
dependencies:
- browserslist: 4.22.1
+ browserslist: 4.22.2
dev: true
- /core-util-is@1.0.3:
- resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+ /core-js-compat@3.35.1:
+ resolution: {integrity: sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==}
+ dependencies:
+ browserslist: 4.22.2
dev: true
- /cors@2.8.5:
- resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
- engines: {node: '>= 0.10'}
- dependencies:
- object-assign: 4.1.1
- vary: 1.1.2
+ /core-util-is@1.0.3:
+ resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
dev: true
/cosmiconfig@8.3.6(typescript@5.2.2):
@@ -4193,6 +4409,10 @@ packages:
- ts-node
dev: true
+ /crelt@1.0.6:
+ resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==}
+ dev: false
+
/critters@0.0.20:
resolution: {integrity: sha512-CImNRorKOl5d8TWcnAz5n5izQ6HFsvz29k327/ELy6UFcmbiZNOsinaKvzv16WZR0P6etfSWYzE47C4/56B3Uw==}
dependencies:
@@ -4201,7 +4421,7 @@ packages:
dom-serializer: 2.0.0
domhandler: 5.0.3
htmlparser2: 8.0.2
- postcss: 8.4.31
+ postcss: 8.4.33
pretty-bytes: 5.6.0
dev: true
@@ -4220,15 +4440,15 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.31)
- postcss: 8.4.31
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.31)
- postcss-modules-local-by-default: 4.0.3(postcss@8.4.31)
- postcss-modules-scope: 3.0.0(postcss@8.4.31)
- postcss-modules-values: 4.0.0(postcss@8.4.31)
+ icss-utils: 5.1.0(postcss@8.4.33)
+ postcss: 8.4.33
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.33)
+ postcss-modules-local-by-default: 4.0.3(postcss@8.4.33)
+ postcss-modules-scope: 3.0.0(postcss@8.4.33)
+ postcss-modules-values: 4.0.0(postcss@8.4.33)
postcss-value-parser: 4.2.0
semver: 7.5.4
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
dev: true
/css-select@5.1.0:
@@ -4267,9 +4487,9 @@ packages:
cssom: 0.3.8
dev: true
- /cuint@0.2.2:
- resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==}
- dev: true
+ /dash-get@1.0.2:
+ resolution: {integrity: sha512-4FbVrHDwfOASx7uQVxeiCTo7ggSdYZbqs8lH+WU6ViypPlDbe9y6IP5VVUDQBv9DcnyaiPT5XT0UWHgJ64zLeQ==}
+ dev: false
/data-urls@3.0.2:
resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==}
@@ -4304,18 +4524,6 @@ packages:
dev: true
optional: true
- /debug@4.3.2:
- resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
- dependencies:
- ms: 2.1.2
- dev: true
-
/debug@4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
@@ -4344,7 +4552,6 @@ packages:
/deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- dev: true
/default-gateway@6.0.3:
resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
@@ -4379,13 +4586,9 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /dependency-graph@0.11.0:
- resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==}
- engines: {node: '>= 0.6.0'}
- dev: true
-
- /destroy@1.0.4:
- resolution: {integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==}
+ /dependency-graph@1.0.0:
+ resolution: {integrity: sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==}
+ engines: {node: '>=4'}
dev: true
/destroy@1.2.0:
@@ -4402,12 +4605,6 @@ packages:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
dev: true
- /dev-ip@1.0.1:
- resolution: {integrity: sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==}
- engines: {node: '>= 0.8.0'}
- hasBin: true
- dev: true
-
/didyoumean@1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
dev: true
@@ -4454,6 +4651,7 @@ packages:
/domexception@4.0.0:
resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==}
engines: {node: '>=12'}
+ deprecated: Use your platform's native DOMException instead
dependencies:
webidl-conversions: 7.0.0
dev: true
@@ -4477,20 +4675,6 @@ packages:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
dev: true
- /easy-extender@2.3.4:
- resolution: {integrity: sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==}
- engines: {node: '>= 4.0.0'}
- dependencies:
- lodash: 4.17.21
- dev: true
-
- /eazy-logger@4.0.1:
- resolution: {integrity: sha512-2GSFtnnC6U4IEKhEI7+PvdxrmjJ04mdsj3wHZTFiw0tUtG4HCWzTr13ZYTk8XOGnA1xQMaDljoBOYlk3D/MMSw==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- chalk: 4.1.2
- dev: true
-
/ee-first@1.1.1:
resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
dev: true
@@ -4499,6 +4683,10 @@ packages:
resolution: {integrity: sha512-gpXfJslSi4hYDkA0mTLEpYKRv9siAgSUgZ+UWyk+J5Cttpd1ThCVwdclzIwQSclz3hYn049+M2fgrP1WpvF8xg==}
dev: true
+ /electron-to-chromium@1.4.646:
+ resolution: {integrity: sha512-vThkQ0JuF45qT/20KbRgM56lV7IuGt7SjhawQ719PDHzhP84KAO1WJoaxgCoAffKHK47FmVKP1Fqizx7CwK1SA==}
+ dev: true
+
/emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
engines: {node: '>=12'}
@@ -4530,45 +4718,6 @@ packages:
dev: true
optional: true
- /engine.io-client@6.5.3:
- resolution: {integrity: sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==}
- dependencies:
- '@socket.io/component-emitter': 3.1.0
- debug: 4.3.4
- engine.io-parser: 5.2.1
- ws: 8.11.0
- xmlhttprequest-ssl: 2.0.0
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- dev: true
-
- /engine.io-parser@5.2.1:
- resolution: {integrity: sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==}
- engines: {node: '>=10.0.0'}
- dev: true
-
- /engine.io@6.5.4:
- resolution: {integrity: sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==}
- engines: {node: '>=10.2.0'}
- dependencies:
- '@types/cookie': 0.4.1
- '@types/cors': 2.8.16
- '@types/node': 20.8.4
- accepts: 1.3.8
- base64id: 2.0.0
- cookie: 0.4.2
- cors: 2.8.5
- debug: 4.3.4
- engine.io-parser: 5.2.1
- ws: 8.11.0
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- dev: true
-
/enhanced-resolve@5.15.0:
resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
engines: {node: '>=10.13.0'}
@@ -4577,6 +4726,11 @@ packages:
tapable: 2.2.1
dev: true
+ /entities@3.0.1:
+ resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==}
+ engines: {node: '>=0.12'}
+ dev: false
+
/entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
@@ -4610,8 +4764,8 @@ packages:
resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==}
dev: true
- /esbuild-wasm@0.18.17:
- resolution: {integrity: sha512-9OHGcuRzy+I8ziF9FzjfKLWAPbvi0e/metACVg9k6bK+SI4FFxeV6PcZsz8RIVaMD4YNehw+qj6UMR3+qj/EuQ==}
+ /esbuild-wasm@0.19.11:
+ resolution: {integrity: sha512-MIhnpc1TxERUHomteO/ZZHp+kUawGEc03D/8vMHGzffLvbFLeDe6mwxqEZwlqBNY7SLWbyp6bBQAcCen8+wpjQ==}
engines: {node: '>=12'}
hasBin: true
dev: true
@@ -4622,64 +4776,35 @@ packages:
hasBin: true
dev: true
- /esbuild@0.18.17:
- resolution: {integrity: sha512-1GJtYnUxsJreHYA0Y+iQz2UEykonY66HNWOb0yXYZi9/kNrORUEHVg87eQsCtqh59PEJ5YVZJO98JHznMJSWjg==}
- engines: {node: '>=12'}
- hasBin: true
- requiresBuild: true
- 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
- dev: true
-
- /esbuild@0.19.5:
- resolution: {integrity: sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==}
+ /esbuild@0.19.11:
+ resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/android-arm': 0.19.5
- '@esbuild/android-arm64': 0.19.5
- '@esbuild/android-x64': 0.19.5
- '@esbuild/darwin-arm64': 0.19.5
- '@esbuild/darwin-x64': 0.19.5
- '@esbuild/freebsd-arm64': 0.19.5
- '@esbuild/freebsd-x64': 0.19.5
- '@esbuild/linux-arm': 0.19.5
- '@esbuild/linux-arm64': 0.19.5
- '@esbuild/linux-ia32': 0.19.5
- '@esbuild/linux-loong64': 0.19.5
- '@esbuild/linux-mips64el': 0.19.5
- '@esbuild/linux-ppc64': 0.19.5
- '@esbuild/linux-riscv64': 0.19.5
- '@esbuild/linux-s390x': 0.19.5
- '@esbuild/linux-x64': 0.19.5
- '@esbuild/netbsd-x64': 0.19.5
- '@esbuild/openbsd-x64': 0.19.5
- '@esbuild/sunos-x64': 0.19.5
- '@esbuild/win32-arm64': 0.19.5
- '@esbuild/win32-ia32': 0.19.5
- '@esbuild/win32-x64': 0.19.5
+ '@esbuild/aix-ppc64': 0.19.11
+ '@esbuild/android-arm': 0.19.11
+ '@esbuild/android-arm64': 0.19.11
+ '@esbuild/android-x64': 0.19.11
+ '@esbuild/darwin-arm64': 0.19.11
+ '@esbuild/darwin-x64': 0.19.11
+ '@esbuild/freebsd-arm64': 0.19.11
+ '@esbuild/freebsd-x64': 0.19.11
+ '@esbuild/linux-arm': 0.19.11
+ '@esbuild/linux-arm64': 0.19.11
+ '@esbuild/linux-ia32': 0.19.11
+ '@esbuild/linux-loong64': 0.19.11
+ '@esbuild/linux-mips64el': 0.19.11
+ '@esbuild/linux-ppc64': 0.19.11
+ '@esbuild/linux-riscv64': 0.19.11
+ '@esbuild/linux-s390x': 0.19.11
+ '@esbuild/linux-x64': 0.19.11
+ '@esbuild/netbsd-x64': 0.19.11
+ '@esbuild/openbsd-x64': 0.19.11
+ '@esbuild/sunos-x64': 0.19.11
+ '@esbuild/win32-arm64': 0.19.11
+ '@esbuild/win32-ia32': 0.19.11
+ '@esbuild/win32-x64': 0.19.11
dev: true
/escalade@3.1.1:
@@ -4701,6 +4826,11 @@ packages:
engines: {node: '>=8'}
dev: true
+ /escape-string-regexp@4.0.0:
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
+ dev: false
+
/escape-string-regexp@5.0.0:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
@@ -4763,10 +4893,6 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /eventemitter-asyncresource@1.0.0:
- resolution: {integrity: sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==}
- dev: true
-
/eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
dev: true
@@ -4861,10 +4987,9 @@ packages:
/fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- dev: true
- /fast-glob@3.3.1:
- resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
+ /fast-glob@3.3.2:
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -4912,21 +5037,6 @@ packages:
to-regex-range: 5.0.1
dev: true
- /finalhandler@1.1.0:
- resolution: {integrity: sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==}
- engines: {node: '>= 0.8'}
- dependencies:
- debug: 2.6.9
- encodeurl: 1.0.2
- escape-html: 1.0.3
- on-finished: 2.3.0
- parseurl: 1.3.3
- statuses: 1.3.1
- unpipe: 1.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/finalhandler@1.2.0:
resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
@@ -4980,7 +5090,7 @@ packages:
hasBin: true
dev: true
- /follow-redirects@1.15.3(debug@4.3.2):
+ /follow-redirects@1.15.3:
resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -4988,8 +5098,6 @@ packages:
peerDependenciesMeta:
debug:
optional: true
- dependencies:
- debug: 4.3.2
dev: true
/foreground-child@3.1.1:
@@ -5018,19 +5126,15 @@ packages:
resolution: {integrity: sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==}
dev: true
+ /fraction.js@4.3.7:
+ resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
+ dev: true
+
/fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
dev: true
- /fs-extra@3.0.1:
- resolution: {integrity: sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==}
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 3.0.1
- universalify: 0.1.2
- dev: true
-
/fs-minipass@2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
@@ -5156,7 +5260,7 @@ packages:
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
dir-glob: 3.0.1
- fast-glob: 3.3.1
+ fast-glob: 3.3.2
ignore: 5.2.4
merge2: 1.4.1
slash: 4.0.0
@@ -5325,7 +5429,7 @@ packages:
engines: {node: '>=8.0.0'}
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.3(debug@4.3.2)
+ follow-redirects: 1.15.3
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -5370,13 +5474,13 @@ packages:
safer-buffer: 2.1.2
dev: true
- /icss-utils@5.1.0(postcss@8.4.31):
+ /icss-utils@5.1.0(postcss@8.4.33):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.33
dev: true
/ieee754@1.2.1:
@@ -5403,11 +5507,6 @@ packages:
dev: true
optional: true
- /immutable@3.8.2:
- resolution: {integrity: sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/immutable@4.3.4:
resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==}
dev: true
@@ -5465,8 +5564,8 @@ packages:
tslib: 2.6.2
dev: true
- /inquirer@9.2.11:
- resolution: {integrity: sha512-B2LafrnnhbRzCWfAdOXisUzL89Kg8cVJlYmhqoi3flSiV/TveO+nsXwgKr9h9PIo+J1hz7nBSk6gegRIMBBf7g==}
+ /inquirer@9.2.12:
+ resolution: {integrity: sha512-mg3Fh9g2zfuVWJn6lhST0O7x4n03k7G8Tx5nvikJkbq8/CK47WDVm+UznF0G6s5Zi0KcyUisr6DU8T67N5U+1Q==}
engines: {node: '>=14.18.0'}
dependencies:
'@ljharb/through': 2.3.11
@@ -5530,6 +5629,13 @@ packages:
hasBin: true
dev: true
+ /is-extendable@1.0.1:
+ resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-plain-object: 2.0.4
+ dev: false
+
/is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
@@ -5565,12 +5671,6 @@ packages:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
dev: true
- /is-number-like@1.0.8:
- resolution: {integrity: sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==}
- dependencies:
- lodash.isfinite: 3.3.2
- dev: true
-
/is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
@@ -5586,7 +5686,6 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- dev: true
/is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
@@ -5611,11 +5710,6 @@ packages:
resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
dev: true
- /is-wsl@1.1.0:
- resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
- engines: {node: '>=4'}
- dev: true
-
/is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
@@ -5639,7 +5733,6 @@ packages:
/isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- dev: true
/istanbul-lib-coverage@3.2.0:
resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==}
@@ -5650,8 +5743,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.23.2
- '@babel/parser': 7.23.0
+ '@babel/core': 7.23.7
+ '@babel/parser': 7.23.3
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.1
@@ -5663,7 +5756,7 @@ packages:
resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
'@babel/parser': 7.23.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
@@ -5787,11 +5880,11 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
'@types/node': 20.8.4
- babel-jest: 29.7.0(@babel/core@7.22.9)
+ babel-jest: 29.7.0(@babel/core@7.23.2)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -5956,31 +6049,31 @@ packages:
jest-resolve: 29.7.0
dev: true
- /jest-preset-angular@13.1.2(@angular-devkit/build-angular@17.0.0)(@angular/compiler-cli@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser-dynamic@17.0.2)(@babel/core@7.22.9)(jest@29.7.0)(typescript@5.2.2):
- resolution: {integrity: sha512-kuzuIch/YYTMaMnuGDaiZEu++Bjc5WskOAmMwqWO0Grpcd0SulqTOV70Gz6Q/ZOQuMye+LS4KPyIVfqnJr2e3g==}
+ /jest-preset-angular@14.0.0(@angular-devkit/build-angular@17.1.1)(@angular/compiler-cli@17.1.1)(@angular/core@17.1.1)(@angular/platform-browser-dynamic@17.1.1)(@babel/core@7.23.2)(jest@29.7.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-gXGgzuGbpw3MRBMe/NGCu3r2E//GKmhtFveo0XUIXMvQ3je0vcOtK+WYjxtxFTTh2xFgrA/loY5BxBcKia/GaA==}
engines: {node: ^14.15.0 || >=16.10.0}
peerDependencies:
- '@angular-devkit/build-angular': '>=13.0.0 <17.0.0'
- '@angular/compiler-cli': '>=13.0.0 <17.0.0'
- '@angular/core': '>=13.0.0 <17.0.0'
- '@angular/platform-browser-dynamic': '>=13.0.0 <17.0.0'
+ '@angular-devkit/build-angular': '>=15.0.0 <18.0.0'
+ '@angular/compiler-cli': '>=15.0.0 <18.0.0'
+ '@angular/core': '>=15.0.0 <18.0.0'
+ '@angular/platform-browser-dynamic': '>=15.0.0 <18.0.0'
jest: ^29.0.0
typescript: '>=4.4'
dependencies:
- '@angular-devkit/build-angular': 17.0.0(@angular/compiler-cli@17.0.2)(jest@29.7.0)(ng-packagr@17.0.0)(tailwindcss@3.3.3)(typescript@5.2.2)
- '@angular/compiler-cli': 17.0.2(@angular/compiler@17.0.2)(typescript@5.2.2)
- '@angular/core': 17.0.2(rxjs@7.8.1)(zone.js@0.14.2)
- '@angular/platform-browser-dynamic': 17.0.2(@angular/common@17.0.2)(@angular/compiler@17.0.2)(@angular/core@17.0.2)(@angular/platform-browser@17.0.2)
+ '@angular-devkit/build-angular': 17.1.1(@angular/compiler-cli@17.1.1)(jest@29.7.0)(ng-packagr@17.1.2)(tailwindcss@3.4.1)(typescript@5.2.2)
+ '@angular/compiler-cli': 17.1.1(@angular/compiler@17.1.1)(typescript@5.2.2)
+ '@angular/core': 17.1.1(rxjs@7.8.1)(zone.js@0.14.2)
+ '@angular/platform-browser-dynamic': 17.1.1(@angular/common@17.1.1)(@angular/compiler@17.1.1)(@angular/core@17.1.1)(@angular/platform-browser@17.1.1)
bs-logger: 0.2.6
- esbuild-wasm: 0.18.17
+ esbuild-wasm: 0.19.5
jest: 29.7.0
jest-environment-jsdom: 29.7.0
jest-util: 29.7.0
pretty-format: 29.7.0
- ts-jest: 29.1.1(@babel/core@7.22.9)(esbuild@0.19.5)(jest@29.7.0)(typescript@5.2.2)
+ ts-jest: 29.1.1(@babel/core@7.23.2)(esbuild@0.19.11)(jest@29.7.0)(typescript@5.2.2)
typescript: 5.2.2
optionalDependencies:
- esbuild: 0.19.5
+ esbuild: 0.19.11
transitivePeerDependencies:
- '@babel/core'
- '@jest/types'
@@ -6084,15 +6177,15 @@ packages:
resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
'@babel/generator': 7.23.0
- '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9)
- '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9)
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2)
+ '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2)
'@babel/types': 7.23.0
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.9)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -6289,12 +6382,6 @@ packages:
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
dev: true
- /jsonfile@3.0.1:
- resolution: {integrity: sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==}
- optionalDependencies:
- graceful-fs: 4.2.11
- dev: true
-
/jsonparse@1.3.1:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
engines: {'0': node >= 0.2.0}
@@ -6337,7 +6424,7 @@ packages:
dependencies:
klona: 2.0.6
less: 4.2.0
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
dev: true
/less@4.2.0:
@@ -6375,7 +6462,7 @@ packages:
webpack-sources:
optional: true
dependencies:
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
webpack-sources: 3.2.3
dev: true
@@ -6384,14 +6471,16 @@ packages:
engines: {node: '>=10'}
dev: true
- /limiter@1.1.5:
- resolution: {integrity: sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==}
- dev: true
-
/lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
dev: true
+ /linkify-it@4.0.1:
+ resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==}
+ dependencies:
+ uc.micro: 1.0.6
+ dev: false
+
/loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
@@ -6411,19 +6500,6 @@ packages:
engines: {node: '>= 12.13.0'}
dev: true
- /localtunnel@2.0.2:
- resolution: {integrity: sha512-n418Cn5ynvJd7m/N1d9WVJISLJF/ellZnfsLnx8WBWGzxv/ntNcFkJ1o6se5quUhCplfLGBNL5tYHiq5WF3Nug==}
- engines: {node: '>=8.3.0'}
- hasBin: true
- dependencies:
- axios: 0.21.4(debug@4.3.2)
- debug: 4.3.2
- openurl: 1.1.1
- yargs: 17.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/locate-path@5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
@@ -6442,10 +6518,6 @@ packages:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
dev: true
- /lodash.isfinite@3.3.2:
- resolution: {integrity: sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==}
- dev: true
-
/lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: true
@@ -6513,7 +6585,6 @@ packages:
/make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
- dev: true
/make-fetch-happen@13.0.0:
resolution: {integrity: sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==}
@@ -6540,6 +6611,21 @@ packages:
tmpl: 1.0.5
dev: true
+ /markdown-it@13.0.2:
+ resolution: {integrity: sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==}
+ hasBin: true
+ dependencies:
+ argparse: 2.0.1
+ entities: 3.0.1
+ linkify-it: 4.0.1
+ mdurl: 1.0.1
+ uc.micro: 1.0.6
+ dev: false
+
+ /mdurl@1.0.1:
+ resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
+ dev: false
+
/media-typer@0.3.0:
resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
engines: {node: '>= 0.6'}
@@ -6590,23 +6676,12 @@ packages:
mime-db: 1.52.0
dev: true
- /mime@1.4.1:
- resolution: {integrity: sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==}
- hasBin: true
- dev: true
-
/mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
dev: true
- /mime@2.5.2:
- resolution: {integrity: sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==}
- engines: {node: '>=4.0.0'}
- hasBin: true
- dev: true
-
/mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
@@ -6619,19 +6694,13 @@ packages:
webpack: ^5.0.0
dependencies:
schema-utils: 4.2.0
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
dev: true
/minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
dev: true
- /minimatch@3.0.8:
- resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==}
- dependencies:
- brace-expansion: 1.1.11
- dev: true
-
/minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
@@ -6716,18 +6785,14 @@ packages:
yallist: 4.0.0
dev: true
- /mitt@1.2.0:
- resolution: {integrity: sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==}
- dev: true
-
/mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
dev: true
- /mrmime@1.0.1:
- resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
+ /mrmime@2.0.0:
+ resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
engines: {node: '>=10'}
dev: true
@@ -6764,8 +6829,8 @@ packages:
thenify-all: 1.6.0
dev: true
- /nanoid@3.3.6:
- resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
+ /nanoid@3.3.7:
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
dev: true
@@ -6797,53 +6862,73 @@ packages:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
dev: true
- /ng-packagr@17.0.0(@angular/compiler-cli@17.0.2)(tailwindcss@3.3.3)(tslib@2.6.2)(typescript@5.2.2):
- resolution: {integrity: sha512-nNE4RkuyjDY3SFWCdFGhO/atvi81M1lrU99qdec0unQQTpgwlSpxpk7fwxlDSyIL5kJOBAUa+BJrctx1MA928Q==}
+ /ng-packagr@17.1.2(@angular/compiler-cli@17.1.1)(tailwindcss@3.4.1)(tslib@2.6.2)(typescript@5.2.2):
+ resolution: {integrity: sha512-H7WRiqbM91lOItixrKc9XP1ZLpsxwIk3l0JDnhSePvKQlMe1UsNrnYHzBek6iVyMolCuz86YR0Dovbpyi4aOzA==}
engines: {node: ^18.13.0 || >=20.9.0}
hasBin: true
peerDependencies:
- '@angular/compiler-cli': ^17.0.0 || ^17.0.0-next.0
+ '@angular/compiler-cli': ^17.0.0 || ^17.1.0-next.0 || ^17.2.0-next.0
tailwindcss: ^2.0.0 || ^3.0.0
tslib: ^2.3.0
- typescript: '>=5.2 <5.3'
+ typescript: '>=5.2 <5.4'
peerDependenciesMeta:
tailwindcss:
optional: true
dependencies:
- '@angular/compiler-cli': 17.0.2(@angular/compiler@17.0.2)(typescript@5.2.2)
- '@rollup/plugin-json': 6.0.1(rollup@4.4.1)
- '@rollup/plugin-node-resolve': 15.2.3(rollup@4.4.1)
+ '@angular/compiler-cli': 17.1.1(@angular/compiler@17.1.1)(typescript@5.2.2)
+ '@rollup/plugin-json': 6.0.1(rollup@4.9.6)
+ '@rollup/plugin-node-resolve': 15.2.3(rollup@4.9.6)
+ '@rollup/wasm-node': 4.9.6
ajv: 8.12.0
ansi-colors: 4.1.3
- autoprefixer: 10.4.16(postcss@8.4.31)
- browserslist: 4.22.1
+ browserslist: 4.22.2
cacache: 18.0.0
chokidar: 3.5.3
commander: 11.1.0
convert-source-map: 2.0.0
- dependency-graph: 0.11.0
- esbuild-wasm: 0.19.5
- fast-glob: 3.3.1
+ dependency-graph: 1.0.0
+ esbuild-wasm: 0.19.11
+ fast-glob: 3.3.2
find-cache-dir: 3.3.2
injection-js: 2.4.0
jsonc-parser: 3.2.0
less: 4.2.0
ora: 5.4.1
- piscina: 4.1.0
- postcss: 8.4.31
- postcss-url: 10.1.3(postcss@8.4.31)
- rollup: 4.4.1
+ piscina: 4.2.1
+ postcss: 8.4.33
rxjs: 7.8.1
- sass: 1.69.5
- tailwindcss: 3.3.3
+ sass: 1.69.7
+ tailwindcss: 3.4.1
tslib: 2.6.2
typescript: 5.2.2
optionalDependencies:
- esbuild: 0.19.5
+ esbuild: 0.19.11
+ rollup: 4.9.6
transitivePeerDependencies:
- supports-color
dev: true
+ /ngx-tiptap@9.1.1(@angular/common@17.1.1)(@angular/core@17.1.1)(@angular/forms@17.1.1)(@tiptap/core@2.1.16)(@tiptap/extension-bubble-menu@2.1.12)(@tiptap/extension-floating-menu@2.1.12)(@tiptap/pm@2.1.12):
+ resolution: {integrity: sha512-7PdHBpZJumw6yRQpxCvZIcCA3nOHE1zt3Gs0WDIbc2Bo651s+dhUwcfxHIAzcdX03Kn1MsNdm9x2Lpyam3e4Jw==}
+ peerDependencies:
+ '@angular/common': '>=16.0.0'
+ '@angular/core': '>=16.0.0'
+ '@angular/forms': '>=16.0.0'
+ '@tiptap/core': ^2.0.0
+ '@tiptap/extension-bubble-menu': ^2.0.0
+ '@tiptap/extension-floating-menu': ^2.0.0
+ '@tiptap/pm': ^2.0.0
+ dependencies:
+ '@angular/common': 17.1.1(@angular/core@17.1.1)(rxjs@7.8.1)
+ '@angular/core': 17.1.1(rxjs@7.8.1)(zone.js@0.14.2)
+ '@angular/forms': 17.1.1(@angular/common@17.1.1)(@angular/core@17.1.1)(@angular/platform-browser@17.1.1)(rxjs@7.8.1)
+ '@tiptap/core': 2.1.16(@tiptap/pm@2.1.12)
+ '@tiptap/extension-bubble-menu': 2.1.12(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12)
+ '@tiptap/extension-floating-menu': 2.1.12(@tiptap/core@2.1.16)(@tiptap/pm@2.1.12)
+ '@tiptap/pm': 2.1.12
+ tslib: 2.6.2
+ dev: false
+
/nice-napi@1.0.2:
resolution: {integrity: sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==}
os: ['!win32']
@@ -6899,6 +6984,10 @@ packages:
resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
dev: true
+ /node-releases@2.0.14:
+ resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+ dev: true
+
/nopt@7.2.0:
resolution: {integrity: sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -7019,15 +7108,22 @@ packages:
resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
dev: true
- /obuf@1.1.2:
- resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
- dev: true
+ /object.omit@3.0.0:
+ resolution: {integrity: sha512-EO+BCv6LJfu+gBIF3ggLicFebFLN5zqzz/WWJlMFfkMyGth+oBkhxzDl0wx2W4GkLzuQs/FsSkXZb2IMWQqmBQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ is-extendable: 1.0.1
+ dev: false
- /on-finished@2.3.0:
- resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
- engines: {node: '>= 0.8'}
+ /object.pick@1.3.0:
+ resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
+ engines: {node: '>=0.10.0'}
dependencies:
- ee-first: 1.1.1
+ isobject: 3.0.1
+ dev: false
+
+ /obuf@1.1.2:
+ resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
dev: true
/on-finished@2.4.1:
@@ -7064,17 +7160,6 @@ packages:
is-wsl: 2.2.0
dev: true
- /openurl@1.1.1:
- resolution: {integrity: sha512-d/gTkTb1i1GKz5k3XE3XFV/PxQ1k45zDqGP2OA7YhgsaLoqm6qRvARAZOFer1fcXritWlGBRCu/UgeS4HAnXAA==}
- dev: true
-
- /opn@5.3.0:
- resolution: {integrity: sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==}
- engines: {node: '>=4'}
- dependencies:
- is-wsl: 1.1.0
- dev: true
-
/ora@5.4.1:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
@@ -7090,6 +7175,10 @@ packages:
wcwidth: 1.0.1
dev: true
+ /orderedmap@2.1.1:
+ resolution: {integrity: sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g==}
+ dev: false
+
/os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
@@ -7150,8 +7239,8 @@ packages:
engines: {node: '>=6'}
dev: true
- /pacote@17.0.4:
- resolution: {integrity: sha512-eGdLHrV/g5b5MtD5cTPyss+JxOlaOloSMG3UwPMAvL8ywaLJ6beONPF40K4KKl/UI6q5hTKCJq5rCu8tkF+7Dg==}
+ /pacote@17.0.5:
+ resolution: {integrity: sha512-TAE0m20zSDMnchPja9vtQjri19X3pZIyRpm2TJVeI+yU42leJBBDTRYhOcWFsPhaMxf+3iwQkFiKz16G9AEeeA==}
engines: {node: ^16.14.0 || >=18.0.0}
hasBin: true
dependencies:
@@ -7301,10 +7390,9 @@ packages:
engines: {node: '>= 6'}
dev: true
- /piscina@4.1.0:
- resolution: {integrity: sha512-sjbLMi3sokkie+qmtZpkfMCUJTpbxJm/wvaPzU28vmYSsTSW8xk9JcFUsbqGJdtPpIQ9tuj+iDcTtgZjwnOSig==}
+ /piscina@4.2.1:
+ resolution: {integrity: sha512-LShp0+lrO+WIzB9LXO+ZmO4zGHxtTJNZhEO56H9SSu+JPaUQb6oLcTCzWi5IL2DS8/vIkCE88ElahuSSw4TAkA==}
dependencies:
- eventemitter-asyncresource: 1.0.0
hdr-histogram-js: 2.0.3
hdr-histogram-percentiles-obj: 3.0.0
optionalDependencies:
@@ -7325,37 +7413,29 @@ packages:
find-up: 6.3.0
dev: true
- /portscanner@2.2.0:
- resolution: {integrity: sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==}
- engines: {node: '>=0.4', npm: '>=1.0.0'}
- dependencies:
- async: 2.6.4
- is-number-like: 1.0.8
- dev: true
-
- /postcss-import@15.1.0(postcss@8.4.31):
+ /postcss-import@15.1.0(postcss@8.4.33):
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.33
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
dev: true
- /postcss-js@4.0.1(postcss@8.4.31):
+ /postcss-js@4.0.1(postcss@8.4.33):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.31
+ postcss: 8.4.33
dev: true
- /postcss-load-config@4.0.1(postcss@8.4.31):
+ /postcss-load-config@4.0.1(postcss@8.4.33):
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
engines: {node: '>= 14'}
peerDependencies:
@@ -7368,12 +7448,12 @@ packages:
optional: true
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.31
+ postcss: 8.4.33
yaml: 2.3.2
dev: true
- /postcss-loader@7.3.3(postcss@8.4.31)(typescript@5.2.2)(webpack@5.89.0):
- resolution: {integrity: sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==}
+ /postcss-loader@7.3.4(postcss@8.4.33)(typescript@5.2.2)(webpack@5.89.0):
+ resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==}
engines: {node: '>= 14.15.0'}
peerDependencies:
postcss: ^7.0.0 || ^8.0.1
@@ -7381,61 +7461,61 @@ packages:
dependencies:
cosmiconfig: 8.3.6(typescript@5.2.2)
jiti: 1.20.0
- postcss: 8.4.31
+ postcss: 8.4.33
semver: 7.5.4
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
transitivePeerDependencies:
- typescript
dev: true
- /postcss-modules-extract-imports@3.0.0(postcss@8.4.31):
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.33):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.33
dev: true
- /postcss-modules-local-by-default@4.0.3(postcss@8.4.31):
+ /postcss-modules-local-by-default@4.0.3(postcss@8.4.33):
resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.31)
- postcss: 8.4.31
+ icss-utils: 5.1.0(postcss@8.4.33)
+ postcss: 8.4.33
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: true
- /postcss-modules-scope@3.0.0(postcss@8.4.31):
+ /postcss-modules-scope@3.0.0(postcss@8.4.33):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.33
postcss-selector-parser: 6.0.13
dev: true
- /postcss-modules-values@4.0.0(postcss@8.4.31):
+ /postcss-modules-values@4.0.0(postcss@8.4.33):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.31)
- postcss: 8.4.31
+ icss-utils: 5.1.0(postcss@8.4.33)
+ postcss: 8.4.33
dev: true
- /postcss-nested@6.0.1(postcss@8.4.31):
+ /postcss-nested@6.0.1(postcss@8.4.33):
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.31
+ postcss: 8.4.33
postcss-selector-parser: 6.0.13
dev: true
@@ -7447,28 +7527,15 @@ packages:
util-deprecate: 1.0.2
dev: true
- /postcss-url@10.1.3(postcss@8.4.31):
- resolution: {integrity: sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==}
- engines: {node: '>=10'}
- peerDependencies:
- postcss: ^8.0.0
- dependencies:
- make-dir: 3.1.0
- mime: 2.5.2
- minimatch: 3.0.8
- postcss: 8.4.31
- xxhashjs: 0.2.2
- dev: true
-
/postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
dev: true
- /postcss@8.4.31:
- resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
+ /postcss@8.4.33:
+ resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.6
+ nanoid: 3.3.7
picocolors: 1.0.0
source-map-js: 1.0.2
dev: true
@@ -7521,6 +7588,149 @@ packages:
sisteransi: 1.0.5
dev: true
+ /prosemirror-changeset@2.2.1:
+ resolution: {integrity: sha512-J7msc6wbxB4ekDFj+n9gTW/jav/p53kdlivvuppHsrZXCaQdVgRghoZbSS3kwrRyAstRVQ4/+u5k7YfLgkkQvQ==}
+ dependencies:
+ prosemirror-transform: 1.8.0
+ dev: false
+
+ /prosemirror-collab@1.3.1:
+ resolution: {integrity: sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ==}
+ dependencies:
+ prosemirror-state: 1.4.3
+ dev: false
+
+ /prosemirror-commands@1.5.2:
+ resolution: {integrity: sha512-hgLcPaakxH8tu6YvVAaILV2tXYsW3rAdDR8WNkeKGcgeMVQg3/TMhPdVoh7iAmfgVjZGtcOSjKiQaoeKjzd2mQ==}
+ dependencies:
+ prosemirror-model: 1.19.3
+ prosemirror-state: 1.4.3
+ prosemirror-transform: 1.8.0
+ dev: false
+
+ /prosemirror-dropcursor@1.8.1:
+ resolution: {integrity: sha512-M30WJdJZLyXHi3N8vxN6Zh5O8ZBbQCz0gURTfPmTIBNQ5pxrdU7A58QkNqfa98YEjSAL1HUyyU34f6Pm5xBSGw==}
+ dependencies:
+ prosemirror-state: 1.4.3
+ prosemirror-transform: 1.8.0
+ prosemirror-view: 1.32.4
+ dev: false
+
+ /prosemirror-gapcursor@1.3.2:
+ resolution: {integrity: sha512-wtjswVBd2vaQRrnYZaBCbyDqr232Ed4p2QPtRIUK5FuqHYKGWkEwl08oQM4Tw7DOR0FsasARV5uJFvMZWxdNxQ==}
+ dependencies:
+ prosemirror-keymap: 1.2.2
+ prosemirror-model: 1.19.3
+ prosemirror-state: 1.4.3
+ prosemirror-view: 1.32.4
+ dev: false
+
+ /prosemirror-history@1.3.2:
+ resolution: {integrity: sha512-/zm0XoU/N/+u7i5zepjmZAEnpvjDtzoPWW6VmKptcAnPadN/SStsBjMImdCEbb3seiNTpveziPTIrXQbHLtU1g==}
+ dependencies:
+ prosemirror-state: 1.4.3
+ prosemirror-transform: 1.8.0
+ prosemirror-view: 1.32.4
+ rope-sequence: 1.3.4
+ dev: false
+
+ /prosemirror-inputrules@1.2.1:
+ resolution: {integrity: sha512-3LrWJX1+ULRh5SZvbIQlwZafOXqp1XuV21MGBu/i5xsztd+9VD15x6OtN6mdqSFI7/8Y77gYUbQ6vwwJ4mr6QQ==}
+ dependencies:
+ prosemirror-state: 1.4.3
+ prosemirror-transform: 1.8.0
+ dev: false
+
+ /prosemirror-keymap@1.2.2:
+ resolution: {integrity: sha512-EAlXoksqC6Vbocqc0GtzCruZEzYgrn+iiGnNjsJsH4mrnIGex4qbLdWWNza3AW5W36ZRrlBID0eM6bdKH4OStQ==}
+ dependencies:
+ prosemirror-state: 1.4.3
+ w3c-keyname: 2.2.8
+ dev: false
+
+ /prosemirror-markdown@1.11.2:
+ resolution: {integrity: sha512-Eu5g4WPiCdqDTGhdSsG9N6ZjACQRYrsAkrF9KYfdMaCmjIApH75aVncsWYOJvEk2i1B3i8jZppv3J/tnuHGiUQ==}
+ dependencies:
+ markdown-it: 13.0.2
+ prosemirror-model: 1.19.3
+ dev: false
+
+ /prosemirror-menu@1.2.4:
+ resolution: {integrity: sha512-S/bXlc0ODQup6aiBbWVsX/eM+xJgCTAfMq/nLqaO5ID/am4wS0tTCIkzwytmao7ypEtjj39i7YbJjAgO20mIqA==}
+ dependencies:
+ crelt: 1.0.6
+ prosemirror-commands: 1.5.2
+ prosemirror-history: 1.3.2
+ prosemirror-state: 1.4.3
+ dev: false
+
+ /prosemirror-model@1.19.3:
+ resolution: {integrity: sha512-tgSnwN7BS7/UM0sSARcW+IQryx2vODKX4MI7xpqY2X+iaepJdKBPc7I4aACIsDV/LTaTjt12Z56MhDr9LsyuZQ==}
+ dependencies:
+ orderedmap: 2.1.1
+ dev: false
+
+ /prosemirror-schema-basic@1.2.2:
+ resolution: {integrity: sha512-/dT4JFEGyO7QnNTe9UaKUhjDXbTNkiWTq/N4VpKaF79bBjSExVV2NXmJpcM7z/gD7mbqNjxbmWW5nf1iNSSGnw==}
+ dependencies:
+ prosemirror-model: 1.19.3
+ dev: false
+
+ /prosemirror-schema-list@1.3.0:
+ resolution: {integrity: sha512-Hz/7gM4skaaYfRPNgr421CU4GSwotmEwBVvJh5ltGiffUJwm7C8GfN/Bc6DR1EKEp5pDKhODmdXXyi9uIsZl5A==}
+ dependencies:
+ prosemirror-model: 1.19.3
+ prosemirror-state: 1.4.3
+ prosemirror-transform: 1.8.0
+ dev: false
+
+ /prosemirror-state@1.4.3:
+ resolution: {integrity: sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q==}
+ dependencies:
+ prosemirror-model: 1.19.3
+ prosemirror-transform: 1.8.0
+ prosemirror-view: 1.32.4
+ dev: false
+
+ /prosemirror-tables@1.3.4:
+ resolution: {integrity: sha512-z6uLSQ1BLC3rgbGwZmpfb+xkdvD7W/UOsURDfognZFYaTtc0gsk7u/t71Yijp2eLflVpffMk6X0u0+u+MMDvIw==}
+ dependencies:
+ prosemirror-keymap: 1.2.2
+ prosemirror-model: 1.19.3
+ prosemirror-state: 1.4.3
+ prosemirror-transform: 1.8.0
+ prosemirror-view: 1.32.4
+ dev: false
+
+ /prosemirror-trailing-node@2.0.7(prosemirror-model@1.19.3)(prosemirror-state@1.4.3)(prosemirror-view@1.32.4):
+ resolution: {integrity: sha512-8zcZORYj/8WEwsGo6yVCRXFMOfBo0Ub3hCUvmoWIZYfMP26WqENU0mpEP27w7mt8buZWuGrydBewr0tOArPb1Q==}
+ peerDependencies:
+ prosemirror-model: ^1.19.0
+ prosemirror-state: ^1.4.2
+ prosemirror-view: ^1.31.2
+ dependencies:
+ '@remirror/core-constants': 2.0.2
+ '@remirror/core-helpers': 3.0.0
+ escape-string-regexp: 4.0.0
+ prosemirror-model: 1.19.3
+ prosemirror-state: 1.4.3
+ prosemirror-view: 1.32.4
+ dev: false
+
+ /prosemirror-transform@1.8.0:
+ resolution: {integrity: sha512-BaSBsIMv52F1BVVMvOmp1yzD3u65uC3HTzCBQV1WDPqJRQ2LuHKcyfn0jwqodo8sR9vVzMzZyI+Dal5W9E6a9A==}
+ dependencies:
+ prosemirror-model: 1.19.3
+ dev: false
+
+ /prosemirror-view@1.32.4:
+ resolution: {integrity: sha512-WoT+ZYePp0WQvp5coABAysheZg9WttW3TSEUNgsfDQXmVOJlnjkbFbXicKPvWFLiC0ZjKt1ykbyoVKqhVnCiSQ==}
+ dependencies:
+ prosemirror-model: 1.19.3
+ prosemirror-state: 1.4.3
+ prosemirror-transform: 1.8.0
+ dev: false
+
/proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
@@ -7662,7 +7872,7 @@ packages:
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
- '@babel/runtime': 7.23.2
+ '@babel/runtime': 7.23.7
dev: true
/regex-parser@2.2.11:
@@ -7726,7 +7936,7 @@ packages:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 2.0.4
- postcss: 8.4.31
+ postcss: 8.4.33
source-map: 0.6.1
dev: true
@@ -7744,16 +7954,6 @@ packages:
supports-preserve-symlinks-flag: 1.0.0
dev: true
- /resp-modifier@6.0.2:
- resolution: {integrity: sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- debug: 2.6.9
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
@@ -7784,14 +7984,6 @@ packages:
glob: 7.2.3
dev: true
- /rollup@3.29.4:
- resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==}
- engines: {node: '>=14.18.0', npm: '>=8.0.0'}
- hasBin: true
- optionalDependencies:
- fsevents: 2.3.3
- dev: true
-
/rollup@4.4.1:
resolution: {integrity: sha512-idZzrUpWSblPJX66i+GzrpjKE3vbYrlWirUHteoAbjKReZwa0cohAErOYA5efoMmNCdvG9yrJS+w9Kl6csaH4w==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
@@ -7812,6 +8004,34 @@ packages:
fsevents: 2.3.3
dev: true
+ /rollup@4.9.6:
+ resolution: {integrity: sha512-05lzkCS2uASX0CiLFybYfVkwNbKZG5NFQ6Go0VWyogFTXXbR039UVsegViTntkk4OglHBdF54ccApXRRuXRbsg==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+ requiresBuild: true
+ dependencies:
+ '@types/estree': 1.0.5
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.9.6
+ '@rollup/rollup-android-arm64': 4.9.6
+ '@rollup/rollup-darwin-arm64': 4.9.6
+ '@rollup/rollup-darwin-x64': 4.9.6
+ '@rollup/rollup-linux-arm-gnueabihf': 4.9.6
+ '@rollup/rollup-linux-arm64-gnu': 4.9.6
+ '@rollup/rollup-linux-arm64-musl': 4.9.6
+ '@rollup/rollup-linux-riscv64-gnu': 4.9.6
+ '@rollup/rollup-linux-x64-gnu': 4.9.6
+ '@rollup/rollup-linux-x64-musl': 4.9.6
+ '@rollup/rollup-win32-arm64-msvc': 4.9.6
+ '@rollup/rollup-win32-ia32-msvc': 4.9.6
+ '@rollup/rollup-win32-x64-msvc': 4.9.6
+ fsevents: 2.3.3
+ dev: true
+
+ /rope-sequence@1.3.4:
+ resolution: {integrity: sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==}
+ dev: false
+
/run-async@3.0.0:
resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==}
engines: {node: '>=0.12.0'}
@@ -7823,10 +8043,6 @@ packages:
queue-microtask: 1.2.3
dev: true
- /rx@4.1.0:
- resolution: {integrity: sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==}
- dev: true
-
/rxjs@7.8.1:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
dependencies:
@@ -7844,8 +8060,8 @@ packages:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
dev: true
- /sass-loader@13.3.2(sass@1.69.5)(webpack@5.89.0):
- resolution: {integrity: sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==}
+ /sass-loader@13.3.3(sass@1.69.7)(webpack@5.89.0):
+ resolution: {integrity: sha512-mt5YN2F1MOZr3d/wBRcZxeFgwgkH44wVc2zohO2YF6JiOMkiXe4BYRZpSu2sO1g71mo/j16txzUhsKZlqjVGzA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
fibers: '>= 3.1.0'
@@ -7864,12 +8080,12 @@ packages:
optional: true
dependencies:
neo-async: 2.6.2
- sass: 1.69.5
- webpack: 5.89.0(esbuild@0.19.5)
+ sass: 1.69.7
+ webpack: 5.89.0(esbuild@0.19.11)
dev: true
- /sass@1.69.5:
- resolution: {integrity: sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==}
+ /sass@1.69.7:
+ resolution: {integrity: sha512-rzj2soDeZ8wtE2egyLXgOOHQvaC2iosZrkF6v3EUG+tBwEvhqUCzm0VP3k9gHF9LXbSrRhT5SksoI56Iw8NPnQ==}
engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
@@ -7941,27 +8157,6 @@ packages:
lru-cache: 6.0.0
dev: true
- /send@0.16.2:
- resolution: {integrity: sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- debug: 2.6.9
- depd: 1.1.2
- destroy: 1.0.4
- encodeurl: 1.0.2
- escape-html: 1.0.3
- etag: 1.8.1
- fresh: 0.5.2
- http-errors: 1.6.3
- mime: 1.4.1
- ms: 2.0.0
- on-finished: 2.3.0
- range-parser: 1.2.1
- statuses: 1.4.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
@@ -8004,18 +8199,6 @@ packages:
- supports-color
dev: true
- /serve-static@1.13.2:
- resolution: {integrity: sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==}
- engines: {node: '>= 0.8.0'}
- dependencies:
- encodeurl: 1.0.2
- escape-html: 1.0.3
- parseurl: 1.3.3
- send: 0.16.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
@@ -8028,10 +8211,6 @@ packages:
- supports-color
dev: true
- /server-destroy@1.0.1:
- resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==}
- dev: true
-
/setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
dev: true
@@ -8111,56 +8290,6 @@ packages:
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
dev: true
- /socket.io-adapter@2.5.2:
- resolution: {integrity: sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==}
- dependencies:
- ws: 8.11.0
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- dev: true
-
- /socket.io-client@4.7.2:
- resolution: {integrity: sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==}
- engines: {node: '>=10.0.0'}
- dependencies:
- '@socket.io/component-emitter': 3.1.0
- debug: 4.3.4
- engine.io-client: 6.5.3
- socket.io-parser: 4.2.4
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- dev: true
-
- /socket.io-parser@4.2.4:
- resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==}
- engines: {node: '>=10.0.0'}
- dependencies:
- '@socket.io/component-emitter': 3.1.0
- debug: 4.3.4
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /socket.io@4.7.2:
- resolution: {integrity: sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==}
- engines: {node: '>=10.2.0'}
- dependencies:
- accepts: 1.3.8
- base64id: 2.0.0
- cors: 2.8.5
- debug: 4.3.4
- engine.io: 6.5.4
- socket.io-adapter: 2.5.2
- socket.io-parser: 4.2.4
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
- dev: true
-
/sockjs@0.3.24:
resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
dependencies:
@@ -8193,16 +8322,15 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /source-map-loader@4.0.1(webpack@5.89.0):
- resolution: {integrity: sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==}
- engines: {node: '>= 14.15.0'}
+ /source-map-loader@5.0.0(webpack@5.89.0):
+ resolution: {integrity: sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==}
+ engines: {node: '>= 18.12.0'}
peerDependencies:
webpack: ^5.72.1
dependencies:
- abab: 2.0.6
iconv-lite: 0.6.3
source-map-js: 1.0.2
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
dev: true
/source-map-support@0.5.13:
@@ -8295,16 +8423,6 @@ packages:
escape-string-regexp: 2.0.0
dev: true
- /statuses@1.3.1:
- resolution: {integrity: sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==}
- engines: {node: '>= 0.6'}
- dev: true
-
- /statuses@1.4.0:
- resolution: {integrity: sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==}
- engines: {node: '>= 0.6'}
- dev: true
-
/statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
@@ -8315,15 +8433,6 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /stream-throttle@0.1.3:
- resolution: {integrity: sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==}
- engines: {node: '>= 0.10.0'}
- hasBin: true
- dependencies:
- commander: 2.20.3
- limiter: 1.1.5
- dev: true
-
/string-length@4.0.2:
resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
engines: {node: '>=10'}
@@ -8440,8 +8549,8 @@ packages:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
dev: true
- /tailwindcss@3.3.3:
- resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==}
+ /tailwindcss@3.4.1:
+ resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==}
engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
@@ -8450,7 +8559,7 @@ packages:
chokidar: 3.5.3
didyoumean: 1.2.2
dlv: 1.1.3
- fast-glob: 3.3.1
+ fast-glob: 3.3.2
glob-parent: 6.0.2
is-glob: 4.0.3
jiti: 1.20.0
@@ -8459,11 +8568,11 @@ packages:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.31
- postcss-import: 15.1.0(postcss@8.4.31)
- postcss-js: 4.0.1(postcss@8.4.31)
- postcss-load-config: 4.0.1(postcss@8.4.31)
- postcss-nested: 6.0.1(postcss@8.4.31)
+ postcss: 8.4.33
+ postcss-import: 15.1.0(postcss@8.4.33)
+ postcss-js: 4.0.1(postcss@8.4.33)
+ postcss-load-config: 4.0.1(postcss@8.4.33)
+ postcss-nested: 6.0.1(postcss@8.4.33)
postcss-selector-parser: 6.0.13
resolve: 1.22.8
sucrase: 3.34.0
@@ -8488,7 +8597,7 @@ packages:
yallist: 4.0.0
dev: true
- /terser-webpack-plugin@5.3.9(esbuild@0.19.5)(webpack@5.89.0):
+ /terser-webpack-plugin@5.3.9(esbuild@0.19.11)(webpack@5.89.0):
resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -8505,16 +8614,16 @@ packages:
optional: true
dependencies:
'@jridgewell/trace-mapping': 0.3.19
- esbuild: 0.19.5
+ esbuild: 0.19.11
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.1
- terser: 5.24.0
- webpack: 5.89.0(esbuild@0.19.5)
+ terser: 5.26.0
+ webpack: 5.89.0(esbuild@0.19.11)
dev: true
- /terser@5.24.0:
- resolution: {integrity: sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==}
+ /terser@5.26.0:
+ resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -8550,10 +8659,21 @@ packages:
any-promise: 1.3.0
dev: true
+ /throttle-debounce@3.0.1:
+ resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==}
+ engines: {node: '>=10'}
+ dev: false
+
/thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
dev: true
+ /tippy.js@6.3.7:
+ resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==}
+ dependencies:
+ '@popperjs/core': 2.11.8
+ dev: false
+
/tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
engines: {node: '>=0.6.0'}
@@ -8608,7 +8728,7 @@ packages:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
dev: true
- /ts-jest@29.1.1(@babel/core@7.22.9)(esbuild@0.19.5)(jest@29.7.0)(typescript@5.2.2):
+ /ts-jest@29.1.1(@babel/core@7.23.2)(esbuild@0.19.11)(jest@29.7.0)(typescript@5.2.2):
resolution: {integrity: sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -8629,9 +8749,9 @@ packages:
esbuild:
optional: true
dependencies:
- '@babel/core': 7.22.9
+ '@babel/core': 7.23.2
bs-logger: 0.2.6
- esbuild: 0.19.5
+ esbuild: 0.19.11
fast-json-stable-stringify: 2.1.0
jest: 29.7.0
jest-util: 29.7.0
@@ -8667,6 +8787,11 @@ packages:
engines: {node: '>=10'}
dev: true
+ /type-fest@2.19.0:
+ resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
+ engines: {node: '>=12.20'}
+ dev: false
+
/type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
@@ -8685,17 +8810,17 @@ packages:
hasBin: true
dev: true
- /ua-parser-js@1.0.37:
- resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==}
- dev: true
+ /uc.micro@1.0.6:
+ resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
+ dev: false
/undici-types@5.25.3:
resolution: {integrity: sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==}
dev: true
- /undici@5.27.2:
- resolution: {integrity: sha512-iS857PdOEy/y3wlM3yRp+6SNQQ6xU0mmZcwRSriqk+et/cwWAtwmIGf6WkoDN2EK/AMdCO/dfXzIwi+rFMrjjQ==}
- engines: {node: '>=14.0'}
+ /undici@6.2.1:
+ resolution: {integrity: sha512-7Wa9thEM6/LMnnKtxJHlc8SrTlDmxqJecgz1iy8KlsN0/iskQXOQCuPkrZLXbElPaSw5slFFyKIKXyJ3UtbApw==}
+ engines: {node: '>=18.0'}
dependencies:
'@fastify/busboy': 2.0.0
dev: true
@@ -8737,11 +8862,6 @@ packages:
imurmurhash: 0.1.4
dev: true
- /universalify@0.1.2:
- resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
- engines: {node: '>= 4.0.0'}
- dev: true
-
/universalify@0.2.0:
resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
engines: {node: '>= 4.0.0'}
@@ -8763,6 +8883,17 @@ packages:
picocolors: 1.0.0
dev: true
+ /update-browserslist-db@1.0.13(browserslist@4.22.2):
+ resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ dependencies:
+ browserslist: 4.22.2
+ escalade: 3.1.1
+ picocolors: 1.0.0
+ dev: true
+
/uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
@@ -8818,12 +8949,12 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /vite@4.5.0(less@4.2.0)(sass@1.69.5)(terser@5.24.0):
- resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==}
- engines: {node: ^14.18.0 || >=16.0.0}
+ /vite@5.0.12(less@4.2.0)(sass@1.69.7)(terser@5.26.0):
+ resolution: {integrity: sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==}
+ engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
- '@types/node': '>= 14'
+ '@types/node': ^18.0.0 || >=20.0.0
less: '*'
lightningcss: ^1.21.0
sass: '*'
@@ -8846,16 +8977,20 @@ packages:
terser:
optional: true
dependencies:
- esbuild: 0.18.17
+ esbuild: 0.19.11
less: 4.2.0
- postcss: 8.4.31
- rollup: 3.29.4
- sass: 1.69.5
- terser: 5.24.0
+ postcss: 8.4.33
+ rollup: 4.4.1
+ sass: 1.69.7
+ terser: 5.26.0
optionalDependencies:
fsevents: 2.3.3
dev: true
+ /w3c-keyname@2.2.8:
+ resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
+ dev: false
+
/w3c-xmlserializer@4.0.0:
resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==}
engines: {node: '>=14'}
@@ -8905,7 +9040,7 @@ packages:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
dev: true
/webpack-dev-middleware@6.1.1(webpack@5.89.0):
@@ -8922,7 +9057,7 @@ packages:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
dev: true
/webpack-dev-server@4.15.1(webpack@5.89.0):
@@ -8966,7 +9101,7 @@ packages:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
webpack-dev-middleware: 5.3.3(webpack@5.89.0)
ws: 8.14.2
transitivePeerDependencies:
@@ -9001,10 +9136,10 @@ packages:
optional: true
dependencies:
typed-assert: 1.0.9
- webpack: 5.89.0(esbuild@0.19.5)
+ webpack: 5.89.0(esbuild@0.19.11)
dev: true
- /webpack@5.89.0(esbuild@0.19.5):
+ /webpack@5.89.0(esbuild@0.19.11):
resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -9021,7 +9156,7 @@ packages:
'@webassemblyjs/wasm-parser': 1.11.6
acorn: 8.10.0
acorn-import-assertions: 1.9.0(acorn@8.10.0)
- browserslist: 4.22.1
+ browserslist: 4.22.2
chrome-trace-event: 1.0.3
enhanced-resolve: 5.15.0
es-module-lexer: 1.3.1
@@ -9035,7 +9170,7 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.9(esbuild@0.19.5)(webpack@5.89.0)
+ terser-webpack-plugin: 5.3.9(esbuild@0.19.11)(webpack@5.89.0)
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -9137,19 +9272,6 @@ packages:
signal-exit: 3.0.7
dev: true
- /ws@8.11.0:
- resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: true
-
/ws@8.14.2:
resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==}
engines: {node: '>=10.0.0'}
@@ -9172,17 +9294,6 @@ packages:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
dev: true
- /xmlhttprequest-ssl@2.0.0:
- resolution: {integrity: sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==}
- engines: {node: '>=0.4.0'}
- dev: true
-
- /xxhashjs@0.2.2:
- resolution: {integrity: sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==}
- dependencies:
- cuint: 0.2.2
- dev: true
-
/y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -9201,29 +9312,11 @@ packages:
engines: {node: '>= 14'}
dev: true
- /yargs-parser@20.2.9:
- resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
- engines: {node: '>=10'}
- dev: true
-
/yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
dev: true
- /yargs@17.1.1:
- resolution: {integrity: sha512-c2k48R0PwKIqKhPMWjeiF6y2xY/gPMUlro0sgxqXpbOIohWiLNXWslsootttv7E1e73QPAMQSg5FeySbVcpsPQ==}
- engines: {node: '>=12'}
- dependencies:
- cliui: 7.0.4
- escalade: 3.1.1
- get-caller-file: 2.0.5
- require-directory: 2.1.1
- string-width: 4.2.3
- y18n: 5.0.8
- yargs-parser: 20.2.9
- dev: true
-
/yargs@17.7.2:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
diff --git a/projects/flow/README.md b/projects/flow/README.md
index f26ddfe..843528b 100644
--- a/projects/flow/README.md
+++ b/projects/flow/README.md
@@ -1,24 +1,50 @@
-# Flow
-
-This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.0.0.
-
-## Code scaffolding
-
-Run `ng generate component component-name --project flow` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project flow`.
-> Note: Don't forget to add `--project flow` or else it will be added to the default project in your `angular.json` file.
-
-## Build
-
-Run `ng build flow` to build the project. The build artifacts will be stored in the `dist/` directory.
-
-## Publishing
-
-After building your library with `ng build flow`, go to the dist folder `cd dist/flow` and run `npm publish`.
-
-## Running unit tests
-
-Run `ng test flow` to execute the unit tests via [Karma](https://karma-runner.github.io).
-
-## Further help
-
-To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
+# Angular Flow
+
+Angular Flow is a component that allows you to create a flow diagram using Angular.
+
+## Installation
+
+```bash
+npm install @ngu/flow
+```
+
+## Usage
+
+```ts
+import { Component } from "@angular/core";
+import { FlowComponent, FlowChildComponent } from "@ngu/flow";
+
+@Component({
+ selector: "app-root",
+ standalone: true,
+ imports: [FlowComponent, FlowChildComponent],
+ template: `
+
+ @for (item of lists; track item.id; let i = $index) {
+ {{ i }}
+ }
+
+ `,
+ styles: `
+ .flow {
+ min-height: 90vh;
+ background: #eee;
+ }
+ .child {
+ border: 1px solid #ccc;
+ width: 100px;
+ height: 50px;
+ background: white;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+ `,
+})
+export class AppComponent {
+ lists = [
+ { id: "1", x: 0, y: 0, deps: [] },
+ { id: "2", x: 0, y: 0, deps: ["1"] },
+ ];
+}
+```
diff --git a/projects/flow/package.json b/projects/flow/package.json
index 912dad5..4f4e329 100644
--- a/projects/flow/package.json
+++ b/projects/flow/package.json
@@ -1,12 +1,17 @@
{
- "name": "flow",
- "version": "0.0.1",
+ "name": "@ngu/flow",
+ "version": "0.0.3",
"peerDependencies": {
- "@angular/common": "^17.0.0",
- "@angular/core": "^17.0.0"
+ "@angular/common": "^14.0.0",
+ "@angular/core": "^14.0.0"
},
"dependencies": {
"tslib": "^2.3.0"
},
+ "license": "MIT",
+ "keywords": [
+ "angular",
+ "react-flow"
+ ],
"sideEffects": false
}
diff --git a/projects/flow/src/lib/arrangements.ts b/projects/flow/src/lib/arrangements.ts
index ce0ff0b..542d0e2 100644
--- a/projects/flow/src/lib/arrangements.ts
+++ b/projects/flow/src/lib/arrangements.ts
@@ -96,9 +96,10 @@ export class Arrangements {
} else {
y = baseY + (dependents.length ? (startY - baseY) / 2 - height / 2 : 0);
+ // TODO: This is not working as expected
// If there are more than one dependency, We need to center the node based on the parents
if (baseNode.position.deps.length > 1) {
- const len = baseNode.position.deps.length - 1;
+ const len = baseNode.position.deps.length / 2;
const halfVerticalPadding = (this.verticalPadding * len) / 2;
y -= baseNode.elRect.height * len - halfVerticalPadding;
}
diff --git a/projects/flow/src/lib/flow-child.component.ts b/projects/flow/src/lib/flow-child.component.ts
index ade2dba..576ca36 100644
--- a/projects/flow/src/lib/flow-child.component.ts
+++ b/projects/flow/src/lib/flow-child.component.ts
@@ -10,6 +10,7 @@ import {
NgZone,
OnChanges,
SimpleChanges,
+ ChangeDetectionStrategy,
} from '@angular/core';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
import { Subject, Subscription } from 'rxjs';
@@ -20,6 +21,7 @@ import { FlowOptions } from './flow-interface';
standalone: true,
imports: [CommonModule],
selector: '[flowChild]',
+ changeDetection: ChangeDetectionStrategy.OnPush,
template: `
@@ -28,12 +30,11 @@ import { FlowOptions } from './flow-interface';
styles: [
`
.dot {
- --dot-size: 10px;
- --dot-half-size: -5px;
+ --dot-half-size: calc(var(--dot-size) / 2 * -1);
position: absolute;
width: var(--dot-size);
height: var(--dot-size);
- background: red;
+ background: var(--flow-dot-color);
border-radius: 999px;
}
.dot-left {
@@ -95,7 +96,7 @@ export class FlowChildComponent implements OnInit, OnChanges, OnDestroy {
this.positionChange.subscribe((x) => {
const { left, top } = this.flow.zRect;
- if (!this.position) console.log(this.position);
+ // if (!this.position) console.log(this.position);
this.updatePosition(this.position.x + left, this.position.y + top);
});
}
@@ -143,10 +144,7 @@ export class FlowChildComponent implements OnInit, OnChanges, OnDestroy {
private enableDragging() {
this.mouseMoveSubscription = this.flow.onMouse.subscribe(this.onMouseMove);
- // mouse up event
this.el.nativeElement.addEventListener('mouseup', this.onMouseUp);
-
- // mouse down event
this.el.nativeElement.addEventListener('mousedown', this.onMouseDown);
}
@@ -161,14 +159,14 @@ export class FlowChildComponent implements OnInit, OnChanges, OnDestroy {
}
ngOnChanges(changes: SimpleChanges): void {
- console.log(`ngOnChanges ${this.position.id}`, changes);
+ // console.log(`ngOnChanges ${this.position.id}`, changes);
// if (changes['position']) {
// this.updatePosition(this.position.x, this.position.y);
// }
}
private updatePosition(x: number, y: number) {
- this.el.nativeElement.style.transform = `translate(${x}px, ${y}px)`;
+ this.el.nativeElement.style.transform = `translate3d(${x}px, ${y}px, 0)`;
}
ngOnDestroy() {
diff --git a/projects/flow/src/lib/flow-interface.ts b/projects/flow/src/lib/flow-interface.ts
index d4cd0a1..ff2ef18 100644
--- a/projects/flow/src/lib/flow-interface.ts
+++ b/projects/flow/src/lib/flow-interface.ts
@@ -11,3 +11,8 @@ export interface FlowOptions {
id: string;
deps: string[];
}
+
+export class FlowConfig {
+ Arrows = true;
+ ArrowSize = 20;
+}
diff --git a/projects/flow/src/lib/flow.component.spec.ts b/projects/flow/src/lib/flow.component.spec.ts
index bb79b38..137d24e 100644
--- a/projects/flow/src/lib/flow.component.spec.ts
+++ b/projects/flow/src/lib/flow.component.spec.ts
@@ -51,7 +51,7 @@ describe('FlowComponent', () => {
component.flow.isDraggingZoomContainer = true;
component._dragZoomContainer(ev);
expect(component.zoomContainer.nativeElement.style.transform).toEqual(
- 'translate(11px, 11px) scale(1)'
+ 'translate3d(11px, 11px, 0) scale(1)'
);
});
@@ -60,9 +60,9 @@ describe('FlowComponent', () => {
const val = component._setZoom(1, 1, 1, 10, 11, 1.1);
const d = JSON.stringify(val);
expect(val).toEqual({
- scale: 1.122,
- panX: 10.18,
- panY: 11.2,
+ panX: 10.45,
+ panY: 11.5,
+ scale: 1.155,
});
});
@@ -72,7 +72,7 @@ describe('FlowComponent', () => {
});
component.zoomHandle(ev);
expect(component.zoomContainer.nativeElement.style.transform).toEqual(
- 'translate(0px, 0px) scale(1.02)'
+ 'translate3d(0px, 0px, 0) scale(1.05)'
);
});
});
diff --git a/projects/flow/src/lib/flow.component.ts b/projects/flow/src/lib/flow.component.ts
index 0458d4d..b15377e 100644
--- a/projects/flow/src/lib/flow.component.ts
+++ b/projects/flow/src/lib/flow.component.ts
@@ -9,6 +9,7 @@ import {
ViewChild,
ElementRef,
NgZone,
+ ChangeDetectionStrategy,
} from '@angular/core';
import { startWith } from 'rxjs';
import { Arrangements } from './arrangements';
@@ -19,11 +20,14 @@ import { FlowOptions, ChildInfo } from './flow-interface';
import { SvgHandler } from './svg';
import { FitToWindow } from './fit-to-window';
+const BASE_SCALE_AMOUNT = 0.05;
+
@Component({
standalone: true,
imports: [NgForOf, FlowChildComponent],
providers: [FlowService],
- selector: 'app-flow',
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ selector: 'ngu-flow',
template: `
@@ -35,18 +39,18 @@ import { FitToWindow } from './fit-to-window';
refY="3.5"
orient="auto"
>
-
+
-
-
+
+
`,
styles: [
`
:host {
+ --dot-size: 10px;
+ --flow-dot-color: red;
+ --flow-path-color: blue;
--grid-size: 20px;
display: block;
height: 100%;
@@ -104,6 +111,10 @@ import { FitToWindow } from './fit-to-window';
pointer-events: none;
overflow: visible;
}
+
+ #arrowhead polygon {
+ fill: var(--flow-path-color);
+ }
`,
],
})
@@ -123,20 +134,15 @@ export class FlowComponent
initialY = 0;
constructor(
- private el: ElementRef,
+ public el: ElementRef,
public flow: FlowService,
private ngZone: NgZone
) {
this.flow.zoomContainer = this.el.nativeElement;
this.flow.arrowsChange.subscribe((e) => this.updateArrows(e));
this.ngZone.runOutsideAngular(() => {
- this.flow.enableZooming.subscribe((enable) => {
- if (enable) {
- this.el.nativeElement.addEventListener('wheel', this.zoomHandle);
- } else {
- this.el.nativeElement.removeEventListener('wheel', this.zoomHandle);
- }
- });
+ this.el.nativeElement.addEventListener('wheel', this._wheelPanning);
+
this.el.nativeElement.addEventListener(
'mousedown',
this._startDraggingZoomContainer
@@ -200,6 +206,19 @@ export class FlowComponent
}
};
+ public _wheelPanning = (event: WheelEvent) => {
+ event.stopPropagation();
+ event.preventDefault();
+ if (event.ctrlKey || event.metaKey) {
+ if (!this.flow.enableZooming.value) return;
+ this.zoomHandle(event);
+ } else {
+ this.flow.panX -= event.deltaX;
+ this.flow.panY -= event.deltaY;
+ this.updateZoomContainer();
+ }
+ };
+
public zoomHandle = (event: WheelEvent) => {
if (this.flow.isDraggingZoomContainer || this.flow.isChildDragging) return;
event.stopPropagation();
@@ -237,10 +256,8 @@ export class FlowComponent
panY: number,
scale: number
) {
- const baseScaleAmount = 0.02; // You can adjust this base scale amount
-
// Make scaleAmount proportional to the current scale
- const scaleAmount = baseScaleAmount * scale;
+ const scaleAmount = BASE_SCALE_AMOUNT * scale;
// const scaleAmount = 0.02;
// Calculate new scale
@@ -330,7 +347,7 @@ export class FlowComponent
// }
private updateZoomContainer() {
- this.zoomContainer.nativeElement.style.transform = `translate(${this.flow.panX}px, ${this.flow.panY}px) scale(${this.flow.scale})`;
+ this.zoomContainer.nativeElement.style.transform = `translate3d(${this.flow.panX}px, ${this.flow.panY}px, 0) scale(${this.flow.scale})`;
}
arrangeChildren() {
@@ -409,7 +426,7 @@ export class FlowComponent
);
pathElement.setAttribute('d', arrow.d);
pathElement.setAttribute('id', arrow.id);
- pathElement.setAttribute('stroke', 'blue');
+ pathElement.setAttribute('stroke', 'var(--flow-path-color)');
pathElement.setAttribute('stroke-width', '2');
pathElement.setAttribute('fill', 'none');
pathElement.setAttribute('marker-end', 'url(#arrowhead)');
@@ -488,7 +505,11 @@ export class FlowComponent
);
// we need to reverse the path because the arrow head is at the end
- arrow.d = new SvgHandler().blendCorners(endDot, startDot);
+ arrow.d = new SvgHandler().blendCorners(
+ endDot,
+ startDot,
+ this.flow.config.ArrowSize
+ );
}
// Update the SVG paths
diff --git a/projects/flow/src/lib/flow.service.ts b/projects/flow/src/lib/flow.service.ts
index 0a5d9ab..7e04984 100644
--- a/projects/flow/src/lib/flow.service.ts
+++ b/projects/flow/src/lib/flow.service.ts
@@ -1,11 +1,12 @@
import { Injectable, NgZone } from '@angular/core';
import { BehaviorSubject, Subject } from 'rxjs';
import { Connections } from './connections';
-import { FlowOptions } from './flow-interface';
+import { FlowConfig, FlowOptions } from './flow-interface';
@Injectable()
export class FlowService {
readonly items = new Map();
+ readonly config = new FlowConfig();
arrowsChange = new Subject();
deps = new Map();
isDraggingZoomContainer: boolean;
@@ -15,7 +16,7 @@ export class FlowService {
direction: 'horizontal' | 'vertical' = 'horizontal';
horizontalPadding = 100;
verticalPadding = 20;
- groupPadding = 20;
+ groupPadding = 40;
scale = 1;
panX = 0;
panY = 0;
@@ -38,7 +39,7 @@ export class FlowService {
};
update(children: FlowOptions[]) {
- console.log('update', children);
+ // console.log('update', children);
this.items.clear();
children.forEach((child) => {
this.items.set(child.id, child);
diff --git a/projects/flow/src/lib/svg.ts b/projects/flow/src/lib/svg.ts
index a006c78..6775440 100644
--- a/projects/flow/src/lib/svg.ts
+++ b/projects/flow/src/lib/svg.ts
@@ -2,8 +2,6 @@ import { FlowOptions } from './flow-interface';
import { DotOptions } from './flow.component';
export class SvgHandler {
- arrowSize = 20;
-
// 'controlPointDistance' is a new property to be defined. It determines how 'curvy' the path should be.
// Adjust this value to increase or decrease the curvature of the Bezier path.
controlPointDistance = 50; // Example value, adjust as needed
@@ -56,11 +54,15 @@ export class SvgHandler {
return `M${start.x} ${start.y} L${midX} ${start.y} L${midX} ${end.y} L${end.x} ${end.y}`;
}
- blendCorners1(start: FlowOptions, end: FlowOptions): string {
+ blendCorners1(
+ start: FlowOptions,
+ end: FlowOptions,
+ arrowSize: number
+ ): string {
// include the arrow size
let { x: startX, y: startY } = start;
let { x: endX, y: endY } = end;
- endX -= this.arrowSize;
+ endX -= arrowSize;
// Define two control points for the cubic Bezier curve
const cp1 = { x: startX + (endX - startX) / 3, y: startY };
const cp2 = { x: endX - (endX - startX) / 3, y: endY };
@@ -69,13 +71,13 @@ export class SvgHandler {
return `M${startX} ${startY} C${cp1.x} ${cp1.y} ${cp2.x} ${cp2.y} ${endX} ${endY}`;
}
- blendCorners(start: DotOptions, end: DotOptions): string {
+ blendCorners(start: DotOptions, end: DotOptions, arrowSize: number): string {
let { x: startX, y: startY, dotIndex: startDotIndex } = start;
let { x: endX, y: endY, dotIndex: endDotIndex } = end;
// Determine the direction from the dotIndex and adjust the start and end points
- let startAdjustment = this.getDirectionAdjustment(startDotIndex);
- let endAdjustment = this.getDirectionAdjustment(endDotIndex);
+ let startAdjustment = this.getDirectionAdjustment(startDotIndex, arrowSize);
+ let endAdjustment = this.getDirectionAdjustment(endDotIndex, arrowSize);
startX += startAdjustment.x;
startY += startAdjustment.y;
@@ -96,7 +98,10 @@ export class SvgHandler {
return path;
}
- getDirectionAdjustment(dotIndex: number): {
+ getDirectionAdjustment(
+ dotIndex: number,
+ arrowSize: number
+ ): {
x: number;
y: number;
cpX: number;
@@ -106,13 +111,13 @@ export class SvgHandler {
case 0: // top
return {
x: 0,
- y: -this.arrowSize,
+ y: -arrowSize,
cpX: 0,
cpY: -this.controlPointDistance,
};
case 1: // right
return {
- x: this.arrowSize,
+ x: arrowSize,
y: 0,
cpX: this.controlPointDistance,
cpY: 0,
@@ -120,13 +125,13 @@ export class SvgHandler {
case 2: // bottom
return {
x: 0,
- y: this.arrowSize,
+ y: arrowSize,
cpX: 0,
cpY: this.controlPointDistance,
};
case 3: // left
return {
- x: -this.arrowSize,
+ x: -arrowSize,
y: 0,
cpX: -this.controlPointDistance,
cpY: 0,
diff --git a/src/app/app.component.spec.ts b/src/app/app.component.spec.ts
index a1db366..219251f 100644
--- a/src/app/app.component.spec.ts
+++ b/src/app/app.component.spec.ts
@@ -1,10 +1,11 @@
import { TestBed } from '@angular/core/testing';
import { AppComponent } from './app.component';
+import { RouterTestingModule } from '@angular/router/testing';
describe('AppComponent', () => {
beforeEach(() =>
TestBed.configureTestingModule({
- imports: [AppComponent],
+ imports: [AppComponent, RouterTestingModule],
})
);
diff --git a/src/app/app.component.ts b/src/app/app.component.ts
index 12572fb..f704380 100644
--- a/src/app/app.component.ts
+++ b/src/app/app.component.ts
@@ -1,393 +1,17 @@
-import { Component, ViewChild } from '@angular/core';
-import { NgForOf } from '@angular/common';
-import { RouterOutlet } from '@angular/router';
-import { FormControl, ReactiveFormsModule } from '@angular/forms';
-import { FlowComponent, FlowChildComponent, FlowOptions } from 'flow';
+import { ChangeDetectionStrategy, Component } from '@angular/core';
+import { RouterLink, RouterOutlet } from '@angular/router';
@Component({
selector: 'app-root',
standalone: true,
- imports: [
- NgForOf,
- RouterOutlet,
- ReactiveFormsModule,
- FlowComponent,
- FlowChildComponent,
- ],
- template: `
-
- Arrange
-
- zooming
-
-
- Child Dragging
-
- Fit to window
-
-
-
- Horizontal
-
-
- Vertical
-
-
-
-
-
-
-
-
- {{ item.id }}
-
- Add
- Delete
- Link
-
-
-
- `,
- styles: [
- `
- .card {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 400px;
- height: 395px;
- box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
- border-radius: 5px;
- background-color: white;
- }
-
- .doting {
- --scale: 2;
- left: 318px;
- top: 263px;
- width: calc(5px + (5px * var(--scale)));
- height: calc(5px + (5px * var(--scale)));
- position: fixed;
- background: blue;
- z-index: 124;
- pointer-events: none;
- }
-
- button {
- @apply p-1;
- }
- `,
- ],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ imports: [RouterOutlet, RouterLink],
+ template: `
+ `,
})
export class AppComponent {
- title = 'angular-flow';
- list: FlowOptions[] = [];
- zooming = true;
- childDragging = true;
- direction = new FormControl<'horizontal' | 'vertical'>('horizontal');
- linkingFrom: number | null = null; // Store the index of the node that we start linking from
- @ViewChild(FlowComponent) flowComponent: FlowComponent;
-
- constructor() {
- // this.list = [
- // { x: 240, y: 160, id: '1', deps: [] },
- // { x: 560, y: 20, id: '2', deps: ['1'] },
- // { x: 560, y: 300, id: '3', deps: ['1'] },
- // { x: 860, y: 20, id: '4', deps: ['2'] },
- // { x: 860, y: 300, id: '5', deps: ['3'] },
- // { x: 240, y: 460, id: '6', deps: ['1'] },
- // ];
- // this.list = structuredClone(FLOW_LIST);
- this.list = [
- { x: 300, y: -400, id: '1', deps: [] },
- { x: 300, y: -400, id: '2', deps: ['1'] },
- { x: 300, y: -400, id: '3', deps: ['2'] },
- { x: 300, y: -200, id: '4', deps: ['2'] },
- ];
- // this.list = [
- // {
- // x: 40,
- // y: 40,
- // id: '1',
- // deps: [],
- // },
- // {
- // x: 249.09375,
- // y: -39,
- // id: '2',
- // deps: ['1'],
- // },
- // {
- // x: 476.09375,
- // y: 67,
- // id: '3',
- // deps: ['2'],
- // },
- // {
- // x: 662.09375,
- // y: 12,
- // id: '4',
- // deps: ['2'],
- // },
- // {
- // x: -58.90625,
- // y: 349,
- // id: '5',
- // deps: ['1'],
- // },
- // {
- // x: 381.09375,
- // y: 416,
- // id: '6',
- // deps: ['5'],
- // },
- // {
- // x: 164.09375,
- // y: 175,
- // id: '7',
- // deps: ['5'],
- // },
- // {
- // x: 688.09375,
- // y: 255,
- // id: '8',
- // deps: ['6', '7'],
- // },
- // ];
- }
-
- addNode(item: FlowOptions) {
- // find the highest id
- const lastId = this.list.reduce((acc, cur) => Math.max(+cur.id, acc), 0);
- const newNodeId = (lastId + 1).toString();
- const newNode: FlowOptions = {
- x: 40 + this.list.length * 160,
- y: 40,
- id: newNodeId,
- deps: [item.id],
- };
- this.list.push(newNode);
- }
-
- deleteNode(id: string) {
- this.list = structuredClone(this.deleteNodeI(id, this.list));
- }
-
- deleteNodeI(id: string, list: FlowOptions[]) {
- if (id && list.length > 0) {
- const index = list.findIndex((x) => x.id == id);
- const deletedNode = list.splice(index, 1)[0];
- // Remove dependencies of the deleted node
- return list.reduce((acc, item) => {
- const initialLength = item.deps.length;
- item.deps = item.deps.filter((dep) => dep !== deletedNode.id);
- if (item.deps.length === initialLength || item.deps.length > 0)
- acc.push(item);
- return acc;
- }, [] as FlowOptions[]);
- }
- return list;
- }
-
- startLinking(index: number) {
- if (this.linkingFrom === null) {
- this.linkingFrom = index;
- } else {
- // Complete the linking
- if (this.linkingFrom !== index) {
- const fromNode = this.list[this.linkingFrom];
- const toNode = this.list[index];
- fromNode.deps.push(toNode.id);
- }
- this.linkingFrom = null;
- }
- }
-
- fitToWindow() {
- this.flowComponent.fitToWindow();
- }
-
- trigger() {
- // Your trigger logic here
- this.flowComponent.arrangeChildren();
- this.flowComponent.updateArrows();
- }
-
- childDraggingFn() {
- this.childDragging = !this.childDragging;
- this.flowComponent.updateChildDragging(this.childDragging);
- }
-
- zoomingFn() {
- this.zooming = !this.zooming;
- this.flowComponent.updateZooming(this.zooming);
- }
+ constructor() {}
}
-
-export const FLOW_LIST = [
- // { x: 0, y: 380, id: '1', deps: [] },
- // { x: 0, y: 380, id: '2', deps: ['1'] },
- // { x: 0, y: 380, id: '3', deps: ['1'] },
-
- { x: 0, y: 0, id: '1', deps: [] }, // Base node
-
- // First set of direct children of the base node
- { x: 300, y: -400, id: '2', deps: ['1'] },
- { x: 300, y: -200, id: '3', deps: ['1'] },
- { x: 300, y: 0, id: '4', deps: ['1'] },
- { x: 300, y: 200, id: '5', deps: ['1'] },
- { x: 300, y: 400, id: '6', deps: ['1'] },
-
- // Children for the second node
- { x: 600, y: -500, id: '7', deps: ['2'] },
- { x: 600, y: -400, id: '8', deps: ['2'] },
-
- // Children for the third node
- { x: 600, y: -200, id: '9', deps: ['3'] },
- { x: 600, y: -100, id: '10', deps: ['3'] },
-
- // Children for the fourth node
- { x: 600, y: 0, id: '11', deps: ['4'] },
- { x: 600, y: 100, id: '12', deps: ['4'] },
-
- // Children for the fifth node
- { x: 600, y: 200, id: '13', deps: ['5'] },
- { x: 600, y: 300, id: '14', deps: ['5'] },
-
- // Children for the sixth node
- { x: 600, y: 400, id: '15', deps: ['6'] },
- { x: 600, y: 500, id: '16', deps: ['6'] },
-
- // Further branching for some of the children nodes
- { x: 900, y: -500, id: '17', deps: ['7'] },
- { x: 900, y: -400, id: '18', deps: ['8'] },
- { x: 900, y: -200, id: '19', deps: ['9'] },
- { x: 900, y: -100, id: '20', deps: ['10'] },
- { x: 900, y: 0, id: '21', deps: ['11'] },
- { x: 900, y: 100, id: '22', deps: ['12'] },
- { x: 900, y: 200, id: '23', deps: ['13'] },
- { x: 900, y: 300, id: '24', deps: ['14'] },
- { x: 900, y: 400, id: '25', deps: ['15'] },
- { x: 900, y: 500, id: '26', deps: ['16'] },
-
- // And so on... you can continue this pattern to get to 40 nodes.
-
- // { x: 0, y: 380, id: '1', deps: [] },
- // { x: 300, y: 110, id: '2', deps: ['1'] },
- // { x: 600, y: 0, id: '3', deps: ['2'] },
- // { x: 600, y: 220, id: '4', deps: ['2'] },
- // { x: 300, y: 650, id: '5', deps: ['1'] },
- // { x: 600, y: 540, id: '6', deps: ['5'] },
- // { x: 600, y: 760, id: '7', deps: ['5'] },
- // { x: 600, y: 760, id: '8', deps: ['6', '7'] },
-
- // { x: 40, y: 40, id: '1', deps: [] },
- // { x: 200, y: 40, id: '2', deps: ['1'] },
- // { x: 360, y: 40, id: '3', deps: ['2'] },
- // { x: 520, y: 40, id: '4', deps: ['2'] },
- // { x: 40, y: 200, id: '5', deps: ['1'] },
- // { x: 200, y: 200, id: '6', deps: ['5'] },
- // { x: 360, y: 200, id: '11', deps: ['5'] },
- // { x: 360, y: 200, id: '7', deps: ['5'] },
- // { x: 360, y: 200, id: '8', deps: ['4'] },
- // { x: 360, y: 200, id: '9', deps: ['6'] },
- // { x: 360, y: 200, id: '10', deps: ['11'] },
- // { x: 360, y: 200, id: '9', deps: ['4'] },
- // { x: 520, y: 200, id: '8', deps: ['6', '7'] },
-
- // { x: 40, y: 40, id: '1', deps: [] },
- // { x: 200, y: 40, id: '2', deps: ['1'] },
- // { x: 360, y: 40, id: '3', deps: ['1'] },
- // { x: 520, y: 40, id: '4', deps: ['2'] },
- // { x: 40, y: 200, id: '5', deps: ['2'] },
- // { x: 40, y: 200, id: '6', deps: ['2'] },
-
- // { x: 200, y: 200, id: '6', deps: ['5'] },
- // { x: 360, y: 200, id: '7', deps: ['5'] },
- // { x: 520, y: 200, id: '8', deps: ['6', '7'] },
- // { x: 200, y: 360, id: '9', deps: ['6'] },
- // { x: 360, y: 360, id: '10', deps: ['7'] },
- // { x: 520, y: 360, id: '11', deps: ['8'] },
- // { x: 200, y: 520, id: '12', deps: ['9'] },
- // { x: 360, y: 520, id: '13', deps: ['10'] },
- // { x: 520, y: 520, id: '14', deps: ['11'] },
- // { x: 360, y: 680, id: '15', deps: ['12', '13', '14'] },
-
- // { x: 40, y: 40, id: '1', deps: [] },
- // { x: 200, y: 40, id: '2', deps: ['1'] },
- // { x: 360, y: 40, id: '3', deps: ['2'] },
- // { x: 520, y: 40, id: '4', deps: ['2'] },
- // { x: 40, y: 200, id: '5', deps: ['1'] },
- // { x: 200, y: 200, id: '6', deps: ['5'] },
- // { x: 360, y: 200, id: '7', deps: ['5'] },
- // { x: 360, y: 200, id: '8', deps: ['5'] },
- // { x: 360, y: 200, id: '10', deps: ['5'] },
- // { x: 360, y: 200, id: '9', deps: ['6', '7', '8', '10'] },
-
- // new deps
-
- // { x: 600, y: 0, id: '3', deps: ['2'] },
- // { x: 900, y: 70, id: '8', deps: ['4'] },
- // { x: 600, y: 70, id: '4', deps: ['2'] },
- // { x: 300, y: 35, id: '2', deps: ['1'] },
- // { x: 1200, y: 190, id: '17', deps: ['9'] },
- // { x: 1200, y: 260, id: '18', deps: ['9'] },
- // { x: 1200, y: 330, id: '19', deps: ['9'] },
- // { x: 1200, y: 400, id: '20', deps: ['9'] },
- // { x: 900, y: 295, id: '9', deps: ['6'] },
- // { x: 600, y: 295, id: '6', deps: ['5'] },
- // { x: 1200, y: 470, id: '13', deps: ['10'] },
- // { x: 1200, y: 540, id: '14', deps: ['10'] },
- // { x: 1200, y: 610, id: '15', deps: ['10'] },
- // { x: 1200, y: 680, id: '16', deps: ['10'] },
- // { x: 900, y: 575, id: '10', deps: ['11'] },
- // { x: 600, y: 575, id: '11', deps: ['5'] },
- // { x: 900, y: 750, id: '12', deps: ['7'] },
- // { x: 600, y: 750, id: '7', deps: ['5'] },
- // { x: 300, y: 470, id: '5', deps: ['1'] },
- // { x: 0, y: 350, id: '1', deps: [] },
-
- // multi stage
- // { x: 40, y: 40, id: '1', deps: [] },
- // { x: 40, y: 40, id: '2', deps: ['1'] },
- // // { x: 40, y: 40, id: '3', deps: ['2'] },
- // // { x: 40, y: 40, id: '4', deps: ['3'] },
- // // { x: 40, y: 40, id: '5', deps: ['4'] },
- // { x: 40, y: 40, id: '6', deps: ['1'] },
- // // { x: 40, y: 40, id: '7', deps: ['6'] },
- // // { x: 40, y: 40, id: '8', deps: ['7'] },
- // // { x: 40, y: 40, id: '9', deps: ['8'] },
- // { x: 40, y: 40, id: '10', deps: ['1'] },
- // { x: 40, y: 40, id: '11', deps: ['1'] },
- // // { x: 40, y: 40, id: '12', deps: ['11'] },
- // // { x: 40, y: 40, id: '13', deps: ['12'] },
- // // { x: 40, y: 40, id: '14', deps: ['1'] },
- // // { x: 40, y: 40, id: '15', deps: ['14'] },
- // // { x: 40, y: 40, id: '16', deps: ['15'] },
- // // { x: 40, y: 40, id: '17', deps: ['16'] },
- // { x: 40, y: 40, id: '19', deps: ['2', '6', '10', '11'] },
-];
diff --git a/src/app/app.config.ts b/src/app/app.config.ts
index f30ce88..37fa7d9 100644
--- a/src/app/app.config.ts
+++ b/src/app/app.config.ts
@@ -1,8 +1,8 @@
import { ApplicationConfig } from '@angular/core';
-import { provideRouter } from '@angular/router';
+import { provideRouter, withViewTransitions } from '@angular/router';
import { routes } from './app.routes';
export const appConfig: ApplicationConfig = {
- providers: [provideRouter(routes) ]
+ providers: [provideRouter(routes, withViewTransitions({skipInitialTransition: true}))]
};
diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts
index dc39edb..57d00c6 100644
--- a/src/app/app.routes.ts
+++ b/src/app/app.routes.ts
@@ -1,3 +1,8 @@
import { Routes } from '@angular/router';
+import { FlowDemoComponent } from './flow-demo.component';
+import { SvgComponent } from './svg.component';
-export const routes: Routes = [];
+export const routes: Routes = [
+ { path: '', component: FlowDemoComponent },
+ { path: 'svg', component: SvgComponent }
+];
diff --git a/src/app/demo/demo.service.ts b/src/app/demo/demo.service.ts
new file mode 100644
index 0000000..d34d21a
--- /dev/null
+++ b/src/app/demo/demo.service.ts
@@ -0,0 +1,9 @@
+import { Injectable } from '@angular/core';
+import { FlowComponent } from '@ngu/flow';
+
+@Injectable({ providedIn: 'root' })
+export class DemoService {
+ flow: FlowComponent;
+
+ constructor() {}
+}
diff --git a/src/app/demo/toolbar.component.ts b/src/app/demo/toolbar.component.ts
new file mode 100644
index 0000000..277aa10
--- /dev/null
+++ b/src/app/demo/toolbar.component.ts
@@ -0,0 +1,91 @@
+import { Component, OnInit, inject } from '@angular/core';
+import { FormControl, ReactiveFormsModule } from '@angular/forms';
+import { DemoService } from './demo.service';
+
+@Component({
+ selector: 'app-toolbar',
+ standalone: true,
+ imports: [ReactiveFormsModule],
+ template: `
+ Arrange
+
+ zooming
+
+
+ Child Dragging
+
+
+ Animate
+
+ Fit to window
+
+
+
+ Horizontal
+
+
+ Vertical
+
+
`,
+})
+export class ToolbarComponent implements OnInit {
+ zooming = true;
+ childDragging = true;
+ animatePath = false;
+ direction = new FormControl<'horizontal' | 'vertical'>('horizontal');
+ demoService = inject(DemoService);
+
+ constructor() {}
+
+ ngOnInit() {}
+
+ fitToWindow() {
+ this.demoService.flow.fitToWindow();
+ }
+
+ trigger() {
+ // Your trigger logic here
+ this.demoService.flow.arrangeChildren();
+ this.demoService.flow.updateArrows();
+ }
+
+ childDraggingFn() {
+ this.childDragging = !this.childDragging;
+ this.demoService.flow.updateChildDragging(this.childDragging);
+ }
+
+ zoomingFn() {
+ this.zooming = !this.zooming;
+ this.demoService.flow.updateZooming(this.zooming);
+ }
+
+ animatePathFn() {
+ this.animatePath = !this.animatePath;
+ this.demoService.flow.el.nativeElement.classList.toggle('animate-path');
+ }
+}
diff --git a/src/app/editor.component.ts b/src/app/editor.component.ts
new file mode 100644
index 0000000..a5a3a1f
--- /dev/null
+++ b/src/app/editor.component.ts
@@ -0,0 +1,37 @@
+import { ChangeDetectionStrategy, Component, OnDestroy } from '@angular/core';
+import { NgxTiptapModule } from 'ngx-tiptap';
+import { Editor } from '@tiptap/core';
+import StarterKit from '@tiptap/starter-kit';
+import { FormsModule } from '@angular/forms';
+
+@Component({
+ standalone: true,
+ imports: [FormsModule, NgxTiptapModule],
+ selector: 'app-editor',
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ template: ` `,
+ styles: [
+ `
+ :host {
+ display: block;
+ width: 100%;
+ height: 100%;
+ padding: 0.75rem;
+ }
+ `,
+ ],
+})
+export class EditorComponent implements OnDestroy {
+ editor = new Editor({
+ extensions: [StarterKit],
+ });
+
+ value = 'Hello, Tiptap!
';
+
+ ngOnDestroy(): void {
+ this.editor.destroy();
+ }
+}
diff --git a/src/app/flow-demo.component.ts b/src/app/flow-demo.component.ts
new file mode 100644
index 0000000..422a440
--- /dev/null
+++ b/src/app/flow-demo.component.ts
@@ -0,0 +1,333 @@
+import {
+ AfterViewInit,
+ ChangeDetectionStrategy,
+ Component,
+ ViewChild,
+ inject,
+} from '@angular/core';
+import { FlowComponent, FlowChildComponent, FlowOptions } from '@ngu/flow';
+import { EditorComponent } from './editor.component';
+import { ToolbarComponent } from './demo/toolbar.component';
+import { DemoService } from './demo/demo.service';
+
+@Component({
+ selector: 'app-root',
+ standalone: true,
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ imports: [
+ FlowComponent,
+ FlowChildComponent,
+ EditorComponent,
+ ToolbarComponent,
+ ],
+ template: `
+
+
+
+ @for (item of list; track item.id; let i = $index) {
+
+
+
+
+ {{ item.id }}
+
+
Add
+
Delete
+
+
+ }
+
+
+ `,
+ styles: [
+ `
+ .card {
+ // display: flex;
+ // align-items: center;
+ // justify-content: center;
+ // width: 250px;
+ // min-height: 60px;
+ // border: 1px solid blue;
+ // box-shadow: 0 0 5px 0 rgb(0 0 255 / 36%);
+ box-shadow: 0 0 5px 0 rgb(142 142 142 / 37%);
+ border-radius: 5px;
+ }
+ app-flow {
+ --flow-dot-color: gray;
+ --flow-path-color: gray;
+ --dot-size: 1px;
+ }
+
+ button {
+ @apply p-1;
+ }
+ `,
+ ],
+})
+export class FlowDemoComponent implements AfterViewInit {
+ title = 'angular-flow';
+ list: FlowOptions[] = [];
+ linkingFrom: number | null = null; // Store the index of the node that we start linking from
+ @ViewChild(FlowComponent) flowComponent: FlowComponent;
+ demoService = inject(DemoService);
+
+ constructor() {
+ this.list = structuredClone(FLOW_LIST);
+ this.list = [
+ {
+ x: 40,
+ y: 40,
+ id: '1',
+ deps: [],
+ },
+ {
+ x: 249.09375,
+ y: -39,
+ id: '2',
+ deps: ['1'],
+ },
+ {
+ x: 476.09375,
+ y: 67,
+ id: '3',
+ deps: ['2'],
+ },
+ {
+ x: 662.09375,
+ y: 12,
+ id: '4',
+ deps: ['2'],
+ },
+ {
+ x: -58.90625,
+ y: 349,
+ id: '5',
+ deps: ['1'],
+ },
+ {
+ x: 381.09375,
+ y: 416,
+ id: '6',
+ deps: ['5'],
+ },
+ {
+ x: 164.09375,
+ y: 175,
+ id: '7',
+ deps: ['5'],
+ },
+ {
+ x: 164.09375,
+ y: 175,
+ id: '8',
+ deps: ['5'],
+ },
+ {
+ x: 688.09375,
+ y: 255,
+ id: '9',
+ deps: ['6', '7', '8'],
+ },
+ ];
+ }
+
+ ngAfterViewInit(): void {
+ this.demoService.flow = this.flowComponent;
+ }
+
+ addNode(item: FlowOptions) {
+ // find the highest id
+ const lastId = this.list.reduce((acc, cur) => Math.max(+cur.id, acc), 0);
+ const newNodeId = (lastId + 1).toString();
+ const newNode: FlowOptions = {
+ x: 40 + this.list.length * 160,
+ y: 40,
+ id: newNodeId,
+ deps: [item.id],
+ };
+ this.list.push(newNode);
+ }
+
+ deleteNode(id: string) {
+ this.list = structuredClone(this.deleteNodeI(id, this.list));
+ }
+
+ deleteNodeI(id: string, list: FlowOptions[]) {
+ if (id && list.length > 0) {
+ const index = list.findIndex((x) => x.id == id);
+ const deletedNode = list.splice(index, 1)[0];
+ // Remove dependencies of the deleted node
+ return list.reduce((acc, item) => {
+ const initialLength = item.deps.length;
+ item.deps = item.deps.filter((dep) => dep !== deletedNode.id);
+ if (item.deps.length === initialLength || item.deps.length > 0)
+ acc.push(item);
+ return acc;
+ }, [] as FlowOptions[]);
+ }
+ return list;
+ }
+
+ startLinking(index: number) {
+ if (this.linkingFrom === null) {
+ this.linkingFrom = index;
+ } else {
+ // Complete the linking
+ if (this.linkingFrom !== index) {
+ const fromNode = this.list[this.linkingFrom];
+ const toNode = this.list[index];
+ fromNode.deps.push(toNode.id);
+ }
+ this.linkingFrom = null;
+ }
+ }
+}
+
+export const FLOW_LIST = [
+ // { x: 0, y: 380, id: '1', deps: [] },
+ // { x: 0, y: 380, id: '2', deps: ['1'] },
+ // { x: 0, y: 380, id: '3', deps: ['1'] },
+
+ { x: 0, y: 0, id: '1', deps: [] }, // Base node
+
+ // First set of direct children of the base node
+ { x: 300, y: -400, id: '2', deps: ['1'] },
+ { x: 300, y: -200, id: '3', deps: ['1'] },
+ { x: 300, y: 0, id: '4', deps: ['1'] },
+ { x: 300, y: 200, id: '5', deps: ['1'] },
+ { x: 300, y: 400, id: '6', deps: ['1'] },
+
+ // Children for the second node
+ { x: 600, y: -500, id: '7', deps: ['2'] },
+ { x: 600, y: -400, id: '8', deps: ['2'] },
+
+ // Children for the third node
+ { x: 600, y: -200, id: '9', deps: ['3'] },
+ { x: 600, y: -100, id: '10', deps: ['3'] },
+
+ // Children for the fourth node
+ { x: 600, y: 0, id: '11', deps: ['4'] },
+ { x: 600, y: 100, id: '12', deps: ['4'] },
+
+ // Children for the fifth node
+ { x: 600, y: 200, id: '13', deps: ['5'] },
+ { x: 600, y: 300, id: '14', deps: ['5'] },
+
+ // Children for the sixth node
+ { x: 600, y: 400, id: '15', deps: ['6'] },
+ { x: 600, y: 500, id: '16', deps: ['6'] },
+
+ // Further branching for some of the children nodes
+ { x: 900, y: -500, id: '17', deps: ['7'] },
+ { x: 900, y: -400, id: '18', deps: ['8'] },
+ { x: 900, y: -200, id: '19', deps: ['9'] },
+ { x: 900, y: -100, id: '20', deps: ['10'] },
+ { x: 900, y: 0, id: '21', deps: ['11'] },
+ { x: 900, y: 100, id: '22', deps: ['12'] },
+ { x: 900, y: 200, id: '23', deps: ['13'] },
+ { x: 900, y: 300, id: '24', deps: ['14'] },
+ { x: 900, y: 400, id: '25', deps: ['15'] },
+ { x: 900, y: 500, id: '26', deps: ['16'] },
+
+ // And so on... you can continue this pattern to get to 40 nodes.
+
+ // { x: 0, y: 380, id: '1', deps: [] },
+ // { x: 300, y: 110, id: '2', deps: ['1'] },
+ // { x: 600, y: 0, id: '3', deps: ['2'] },
+ // { x: 600, y: 220, id: '4', deps: ['2'] },
+ // { x: 300, y: 650, id: '5', deps: ['1'] },
+ // { x: 600, y: 540, id: '6', deps: ['5'] },
+ // { x: 600, y: 760, id: '7', deps: ['5'] },
+ // { x: 600, y: 760, id: '8', deps: ['6', '7'] },
+
+ // { x: 40, y: 40, id: '1', deps: [] },
+ // { x: 200, y: 40, id: '2', deps: ['1'] },
+ // { x: 360, y: 40, id: '3', deps: ['2'] },
+ // { x: 520, y: 40, id: '4', deps: ['2'] },
+ // { x: 40, y: 200, id: '5', deps: ['1'] },
+ // { x: 200, y: 200, id: '6', deps: ['5'] },
+ // { x: 360, y: 200, id: '11', deps: ['5'] },
+ // { x: 360, y: 200, id: '7', deps: ['5'] },
+ // { x: 360, y: 200, id: '8', deps: ['4'] },
+ // { x: 360, y: 200, id: '9', deps: ['6'] },
+ // { x: 360, y: 200, id: '10', deps: ['11'] },
+ // { x: 360, y: 200, id: '9', deps: ['4'] },
+ // { x: 520, y: 200, id: '8', deps: ['6', '7'] },
+
+ // { x: 40, y: 40, id: '1', deps: [] },
+ // { x: 200, y: 40, id: '2', deps: ['1'] },
+ // { x: 360, y: 40, id: '3', deps: ['1'] },
+ // { x: 520, y: 40, id: '4', deps: ['2'] },
+ // { x: 40, y: 200, id: '5', deps: ['2'] },
+ // { x: 40, y: 200, id: '6', deps: ['2'] },
+
+ // { x: 200, y: 200, id: '6', deps: ['5'] },
+ // { x: 360, y: 200, id: '7', deps: ['5'] },
+ // { x: 520, y: 200, id: '8', deps: ['6', '7'] },
+ // { x: 200, y: 360, id: '9', deps: ['6'] },
+ // { x: 360, y: 360, id: '10', deps: ['7'] },
+ // { x: 520, y: 360, id: '11', deps: ['8'] },
+ // { x: 200, y: 520, id: '12', deps: ['9'] },
+ // { x: 360, y: 520, id: '13', deps: ['10'] },
+ // { x: 520, y: 520, id: '14', deps: ['11'] },
+ // { x: 360, y: 680, id: '15', deps: ['12', '13', '14'] },
+
+ // { x: 40, y: 40, id: '1', deps: [] },
+ // { x: 200, y: 40, id: '2', deps: ['1'] },
+ // { x: 360, y: 40, id: '3', deps: ['2'] },
+ // { x: 520, y: 40, id: '4', deps: ['2'] },
+ // { x: 40, y: 200, id: '5', deps: ['1'] },
+ // { x: 200, y: 200, id: '6', deps: ['5'] },
+ // { x: 360, y: 200, id: '7', deps: ['5'] },
+ // { x: 360, y: 200, id: '8', deps: ['5'] },
+ // { x: 360, y: 200, id: '10', deps: ['5'] },
+ // { x: 360, y: 200, id: '9', deps: ['6', '7', '8', '10'] },
+
+ // new deps
+
+ // { x: 600, y: 0, id: '3', deps: ['2'] },
+ // { x: 900, y: 70, id: '8', deps: ['4'] },
+ // { x: 600, y: 70, id: '4', deps: ['2'] },
+ // { x: 300, y: 35, id: '2', deps: ['1'] },
+ // { x: 1200, y: 190, id: '17', deps: ['9'] },
+ // { x: 1200, y: 260, id: '18', deps: ['9'] },
+ // { x: 1200, y: 330, id: '19', deps: ['9'] },
+ // { x: 1200, y: 400, id: '20', deps: ['9'] },
+ // { x: 900, y: 295, id: '9', deps: ['6'] },
+ // { x: 600, y: 295, id: '6', deps: ['5'] },
+ // { x: 1200, y: 470, id: '13', deps: ['10'] },
+ // { x: 1200, y: 540, id: '14', deps: ['10'] },
+ // { x: 1200, y: 610, id: '15', deps: ['10'] },
+ // { x: 1200, y: 680, id: '16', deps: ['10'] },
+ // { x: 900, y: 575, id: '10', deps: ['11'] },
+ // { x: 600, y: 575, id: '11', deps: ['5'] },
+ // { x: 900, y: 750, id: '12', deps: ['7'] },
+ // { x: 600, y: 750, id: '7', deps: ['5'] },
+ // { x: 300, y: 470, id: '5', deps: ['1'] },
+ // { x: 0, y: 350, id: '1', deps: [] },
+
+ // multi stage
+ // { x: 40, y: 40, id: '1', deps: [] },
+ // { x: 40, y: 40, id: '2', deps: ['1'] },
+ // // { x: 40, y: 40, id: '3', deps: ['2'] },
+ // // { x: 40, y: 40, id: '4', deps: ['3'] },
+ // // { x: 40, y: 40, id: '5', deps: ['4'] },
+ // { x: 40, y: 40, id: '6', deps: ['1'] },
+ // // { x: 40, y: 40, id: '7', deps: ['6'] },
+ // // { x: 40, y: 40, id: '8', deps: ['7'] },
+ // // { x: 40, y: 40, id: '9', deps: ['8'] },
+ // { x: 40, y: 40, id: '10', deps: ['1'] },
+ // { x: 40, y: 40, id: '11', deps: ['1'] },
+ // // { x: 40, y: 40, id: '12', deps: ['11'] },
+ // // { x: 40, y: 40, id: '13', deps: ['12'] },
+ // // { x: 40, y: 40, id: '14', deps: ['1'] },
+ // // { x: 40, y: 40, id: '15', deps: ['14'] },
+ // // { x: 40, y: 40, id: '16', deps: ['15'] },
+ // // { x: 40, y: 40, id: '17', deps: ['16'] },
+ // { x: 40, y: 40, id: '19', deps: ['2', '6', '10', '11'] },
+];
diff --git a/src/app/svg.component.ts b/src/app/svg.component.ts
new file mode 100644
index 0000000..87d6310
--- /dev/null
+++ b/src/app/svg.component.ts
@@ -0,0 +1,276 @@
+import {
+ ChangeDetectionStrategy,
+ Component,
+ ElementRef,
+ OnInit,
+ ViewChild,
+ ViewChildren,
+} from '@angular/core';
+
+@Component({
+ standalone: true,
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ selector: 'app-svg',
+ template: `
+ @for (rect of rects; track rect) {
+
+ }
+
+ `,
+})
+export class SvgComponent implements OnInit {
+ @ViewChild('g') g: ElementRef;
+ @ViewChildren('rects') boxes: ElementRef[];
+ rects: { x: number; y: number; width: number; height: number }[] = [];
+ nodes: SVGRectElement[] = [];
+
+ constructor() {
+ // add rect with x, y, width = 100, height = 100
+ // make sure that the width of the svg is 1100 so we need to add 10 rects
+ // with 10 rows
+ const gap = 60;
+ let xGap = gap;
+ let yGap = gap;
+ let x = 0 + xGap;
+ let y = 0 + yGap;
+ const width = 100 - gap / 2;
+ const height = 100 - gap / 2;
+ let i = 0;
+ let j = 0;
+ while (i < 5) {
+ while (j < 10) {
+ this.rects.push({ x, y, width, height });
+ x += width + gap;
+ j++;
+ }
+ y += height + gap;
+ x = 0 + xGap;
+ j = 0;
+ i++;
+ }
+ }
+
+ ngOnInit() {}
+
+ selectRect(ev: MouseEvent) {
+ console.log(ev);
+ this.nodes.push(ev.target as SVGRectElement);
+ if (this.nodes.length === 2) {
+ this.drawPath(
+ document.querySelector('svg')!,
+ this.nodes[0],
+ this.nodes[1]
+ );
+ this.nodes = [];
+ }
+ }
+
+ drawPath(
+ svg: SVGSVGElement,
+ node1: SVGRectElement,
+ node2: SVGRectElement
+ ): any {
+ // Extract coordinates
+ const { width: w1, height: h1 } = node1.getBoundingClientRect();
+ const x1 = +node1.getAttribute('x')! + w1 / 2;
+ let y1 = +node1.getAttribute('y')! + h1 / 2;
+ const { width: w2, height: h2 } = node2.getBoundingClientRect();
+ const x2 = +node2.getAttribute('x')! + w2 / 2;
+ let y2 = +node2.getAttribute('y')! + h2 / 2;
+
+ // With the help of A* algorithm, we can find the shortest path
+ // between two points in a graph. We can use the same algorithm
+ // to find the shortest path between two points in a grid.
+ // code below
+ const grid: { x: number; y: number }[][] = [];
+ const numRows = 5;
+ const numCols = 10;
+ const gap = 60;
+ const nodeWidth = 100;
+ const nodeHeight = 100;
+ const startX = gap / 2 + nodeWidth / 2;
+ const startY = gap / 2 + nodeHeight / 2;
+ const endX = startX + (numCols - 1) * (nodeWidth + gap);
+ const endY = startY + (numRows - 1) * (nodeHeight + gap);
+
+ // Create the grid
+ for (let i = 0; i < numRows; i++) {
+ const row = [];
+ for (let j = 0; j < numCols; j++) {
+ const x = startX + j * (nodeWidth + gap);
+ const y = startY + i * (nodeHeight + gap);
+ row.push({ x, y });
+ }
+ grid.push(row);
+ }
+
+ // Find the start and end nodes
+ let startNode = null;
+ let endNode = null;
+ let minDistance = Infinity;
+ for (let i = 0; i < numRows; i++) {
+ for (let j = 0; j < numCols; j++) {
+ const node = grid[i][j];
+ const distanceToStart = Math.sqrt(
+ (node.x - x1) ** 2 + (node.y - y1) ** 2
+ );
+ const distanceToEnd = Math.sqrt(
+ (node.x - x2) ** 2 + (node.y - y2) ** 2
+ );
+ if (distanceToStart < minDistance) {
+ startNode = node;
+ minDistance = distanceToStart;
+ }
+ if (distanceToEnd < minDistance) {
+ endNode = node;
+ minDistance = distanceToEnd;
+ }
+ }
+ }
+
+ // Implement A* algorithm to find the shortest path
+ const openSet = [startNode];
+ const cameFrom = new Map();
+ const gScore = new Map();
+ const fScore = new Map();
+ gScore.set(startNode, 0);
+ fScore.set(startNode, heuristic(startNode, endNode));
+ while (openSet.length > 0) {
+ const current = getLowestFScoreNode(openSet, fScore);
+ if (current === endNode) {
+ const path = reconstructPath(cameFrom, endNode);
+ const d = `M${x1},${y1} ${path} ${x2},${y2}`;
+ const pathElement = document.createElementNS(
+ 'http://www.w3.org/2000/svg',
+ 'path'
+ );
+ pathElement.setAttribute('d', d);
+ pathElement.setAttribute('stroke', 'black');
+ pathElement.setAttribute('stroke-width', '2');
+ pathElement.setAttribute('fill', 'none');
+ this.g.nativeElement.appendChild(pathElement);
+ return pathElement;
+ }
+ openSet.splice(openSet.indexOf(current), 1);
+ for (const neighbor of getNeighbors(current, grid)) {
+ const tentativeGScore =
+ gScore.get(current) + distance(current, neighbor);
+ if (!gScore.has(neighbor) || tentativeGScore < gScore.get(neighbor)) {
+ cameFrom.set(neighbor, current);
+ gScore.set(neighbor, tentativeGScore);
+ fScore.set(neighbor, tentativeGScore + heuristic(neighbor, endNode));
+ if (!openSet.includes(neighbor)) {
+ openSet.push(neighbor);
+ }
+ }
+ }
+ }
+
+ // Helper functions
+ function heuristic(node1: any, node2: any) {
+ return Math.sqrt((node1.x - node2.x) ** 2 + (node1.y - node2.y) ** 2);
+ }
+
+ function getLowestFScoreNode(nodes: any, fScore: any) {
+ let lowestNode = nodes[0];
+ let lowestFScore = fScore.get(lowestNode);
+ for (const node of nodes) {
+ const nodeFScore = fScore.get(node);
+ if (nodeFScore < lowestFScore) {
+ lowestNode = node;
+ lowestFScore = nodeFScore;
+ }
+ }
+ return lowestNode;
+ }
+
+ function reconstructPath(cameFrom: any, current: any) {
+ let path = '';
+ while (cameFrom.has(current)) {
+ const previous = cameFrom.get(current);
+ path = `L${current.x},${current.y} ${path}`;
+ current = previous;
+ }
+ return path;
+ }
+
+ function getNeighbors(node: any, grid: any) {
+ const neighbors = [];
+ const numRows = grid.length;
+ const numCols = grid[0].length;
+ const row = Math.floor((node.y - startY) / (nodeHeight + gap));
+ const col = Math.floor((node.x - startX) / (nodeWidth + gap));
+ if (row > 0) {
+ neighbors.push(grid[row - 1][col]);
+ }
+ if (row < numRows - 1) {
+ neighbors.push(grid[row + 1][col]);
+ }
+ if (col > 0) {
+ neighbors.push(grid[row][col - 1]);
+ }
+ if (col < numCols - 1) {
+ neighbors.push(grid[row][col + 1]);
+ }
+ return neighbors;
+ }
+
+ function distance(node1: any, node2: any) {
+ return Math.sqrt((node1.x - node2.x) ** 2 + (node1.y - node2.y) ** 2);
+ }
+ }
+}
+
+// function getAdjustedPoint(nodeCenter, obstacleCenter, obstacleRadius) {
+// const dx = nodeCenter.x - obstacleCenter.x;
+// const dy = nodeCenter.y - obstacleCenter.y;
+// const distance = Math.sqrt(dx * dx + dy * dy);
+// const buffer = 1.1; // To ensure the path does not touch the node
+
+// // Calculate the new point that is 'obstacleRadius' away from the obstacle's edge
+// return {
+// x: obstacleCenter.x + (dx / distance) * (obstacleRadius + buffer),
+// y: obstacleCenter.y + (dy / distance) * (obstacleRadius + buffer)
+// };
+// }
+
+// function drawPathAvoidingNode(svg, node1, node2, obstacleNode) {
+// // Get center points of the nodes
+// const start = { x: parseFloat(node1.getAttribute('cx')), y: parseFloat(node1.getAttribute('cy')) };
+// const end = { x: parseFloat(node2.getAttribute('cx')), y: parseFloat(node2.getAttribute('cy')) };
+// const obstacle = { x: parseFloat(obstacleNode.getAttribute('cx')), y: parseFloat(obstacleNode.getAttribute('cy')) };
+// const obstacleRadius = parseFloat(obstacleNode.getAttribute('r'));
+
+// // Adjust the start and end points if they overlap with the obstacle
+// const adjustedStart = getAdjustedPoint(start, obstacle, obstacleRadius);
+// const adjustedEnd = getAdjustedPoint(end, obstacle, obstacleRadius);
+
+// // Create the path element
+// const path = document.createElementNS('http://www.w3.org/2000/svg', 'path');
+
+// // Set the path's `d` attribute to move to the start point, line to the adjusted start,
+// // line to the adjusted end, and then to the end point
+// const d = `M${start.x},${start.y} L${adjustedStart.x},${adjustedStart.y} L${adjustedEnd.x},${adjustedEnd.y} L${end.x},${end.y}`;
+// path.setAttribute('d', d);
+
+// // Optional: style the path
+// path.setAttribute('stroke', 'black');
+// path.setAttribute('stroke-width', '2');
+// path.setAttribute('fill', 'none');
+
+// // Append the path to the SVG
+// svg.appendChild(path);
+
+// return path;
+// }
+
+// // Usage: Assuming node1, node2, and obstacleNode are defined SVG circle elements
+// drawPathAvoidingNode(svg, node1, node2, obstacleNode);
diff --git a/src/styles.scss b/src/styles.scss
index dd8e51b..ced58a0 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -7,17 +7,17 @@ body {
margin: 0;
}
-// @keyframes dash {
-// to {
-// stroke-dashoffset: 100; /* Adjust this value to control the speed of the animation */
-// }
-// }
+@keyframes dash {
+ to {
+ stroke-dashoffset: 100; /* Adjust this value to control the speed of the animation */
+ }
+}
-// path {
-// fill: none;
-// stroke: blue;
-// stroke-width: 2;
-// stroke-dasharray: 5, 5; /* You can adjust these values to control the appearance of the dashes (dots) */
-// stroke-dashoffset: 5;
-// animation: dash 4s linear reverse infinite; /* The 'infinite' value will make the animation repeat indefinitely */
-// }
+.animate-path path {
+ fill: none;
+ stroke: gray;
+ stroke-width: 2;
+ stroke-dasharray: 5, 5; /* You can adjust these values to control the appearance of the dashes (dots) */
+ stroke-dashoffset: 5;
+ animation: dash 4s linear reverse infinite; /* The 'infinite' value will make the animation repeat indefinitely */
+}
diff --git a/tsconfig.json b/tsconfig.json
index 6b68070..c3d3072 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -8,7 +8,7 @@
"strict": true,
"noImplicitOverride": true,
"paths": {
- "flow": ["./projects/flow/src/public-api.ts"]
+ "@ngu/flow": ["./projects/flow/src/public-api.ts"]
},
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,