From a926724378949caff77a18f014e2ea5d4fe70a53 Mon Sep 17 00:00:00 2001 From: Francesco Bozzotta <39646929+silicia-apps@users.noreply.github.com> Date: Mon, 26 Feb 2024 19:44:53 +0000 Subject: [PATCH] migrate to nx 18.0.5 --- apps/demo/src/app/database/database.page.html | 3 +- apps/demo/src/app/database/database.page.ts | 3 - .../src/lib/components/list/list.component.ts | 30 +- .../data-list/data-list.component.html | 12 + .../data-list/data-list.component.scss | 0 .../data-list/data-list.component.ts | 106 ++ .../src/lib/components/data-list/index.ts | 1 + libs/database/src/lib/directives/index.ts | 1 - .../lib/directives/list-data.directives.ts | 32 - package-lock.json | 935 +++++++++--------- package.json | 20 +- 11 files changed, 636 insertions(+), 507 deletions(-) create mode 100644 libs/database/src/lib/components/data-list/data-list.component.html create mode 100644 libs/database/src/lib/components/data-list/data-list.component.scss create mode 100644 libs/database/src/lib/components/data-list/data-list.component.ts create mode 100644 libs/database/src/lib/components/data-list/index.ts delete mode 100644 libs/database/src/lib/directives/index.ts delete mode 100644 libs/database/src/lib/directives/list-data.directives.ts diff --git a/apps/demo/src/app/database/database.page.html b/apps/demo/src/app/database/database.page.html index 9ec25f5..79a8a9a 100644 --- a/apps/demo/src/app/database/database.page.html +++ b/apps/demo/src/app/database/database.page.html @@ -1,8 +1,7 @@ - ):void { this.sioCoreLoggerService.debug('[DatabasePageComponent][load]', event); - this.taskState.load(); } public refresh(event: Event): void { this.sioCoreLoggerService.debug('[DatabasePageComponent][refresh]', event); - this.taskState.setRemoteIndex(''); - this.taskState.load(); } } diff --git a/libs/core/src/lib/components/list/list.component.ts b/libs/core/src/lib/components/list/list.component.ts index e02df22..6d06ffd 100644 --- a/libs/core/src/lib/components/list/list.component.ts +++ b/libs/core/src/lib/components/list/list.component.ts @@ -23,13 +23,13 @@ export class SioCoreListComponent implements OnInit { @Input() public desktop = false; @AttributeBoolean() - @Input() public infinite: InputBoolean = false; + @Input() public enableInfinite: InputBoolean = false; @AttributeBoolean() - @Input() public LeftSwipe: InputBoolean; + @Input() public enableLeftSwipe: InputBoolean; @AttributeBoolean() - @Input() public RightSwipe: InputBoolean = true; + @Input() public enableRightSwipe: InputBoolean = true; @Input() public header = 'name'; @Input() public label = 'description'; @@ -39,11 +39,11 @@ export class SioCoreListComponent implements OnInit { // eslint-disable-next-line @typescript-eslint/no-explicit-any @Input() public data: any[] | undefined; - @Output() sioCoreListItemClick = new EventEmitter>(); - @Output() sioCoreListItemLeftSwipe = new EventEmitter>(); - @Output() sioCoreListItemRightSwipe = new EventEmitter>(); - @Output() sioCoreListInfinite = new EventEmitter>(); - @Output() sioCoreRefreshList = new EventEmitter(); + @Output() clickItem = new EventEmitter>(); + @Output() leftSwipe = new EventEmitter>(); + @Output() rightSwipe = new EventEmitter>(); + @Output() infinite = new EventEmitter>(); + @Output() refresh = new EventEmitter(); // @Output() public sioCoreMenuDidChange = new EventEmitter(); @@ -74,26 +74,26 @@ export class SioCoreListComponent implements OnInit { return itemObject.id; } - public receiveListLeftSwipe(data: Record) { + public onLeftSwipe(data: Record) { this.sioCoreLoggerService.debug('[sioCoreListItemComponent][receiveListLeftSwipe]', data); - this.sioCoreListItemLeftSwipe.emit(data); + this.leftSwipe.emit(data); } - public receiveListRighSwipe(data: Record) { + public onRighSwipe(data: Record) { this.sioCoreLoggerService.debug('[sioCoreListItemComponent][receiveListRightSwipe]', data); - this.sioCoreListItemRightSwipe.emit(data); + this.rightSwipe.emit(data); } public onRefresh(data: Event) { this.sioCoreLoggerService.debug('[sioCoreListItemComponent][onRefresh]', data); - this.sioCoreRefreshList.emit(); + this.refresh.emit(); setTimeout(() => { (data as RefresherCustomEvent).target.complete(); }, 500); } - public onListInfinite(data: Event) { + public onInfinite(data: Event) { this.sioCoreLoggerService.debug('[sioCoreListItemComponent][receiveListInfinite]', data); - this.sioCoreListInfinite.emit({ LastId : this.data!.pop().$id }); + this.infinite.emit({ LastId : this.data!.pop().$id }); setTimeout(() => { (data as InfiniteScrollCustomEvent).target.complete(); }, 500); diff --git a/libs/database/src/lib/components/data-list/data-list.component.html b/libs/database/src/lib/components/data-list/data-list.component.html new file mode 100644 index 0000000..90f7c4d --- /dev/null +++ b/libs/database/src/lib/components/data-list/data-list.component.html @@ -0,0 +1,12 @@ + diff --git a/libs/database/src/lib/components/data-list/data-list.component.scss b/libs/database/src/lib/components/data-list/data-list.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/libs/database/src/lib/components/data-list/data-list.component.ts b/libs/database/src/lib/components/data-list/data-list.component.ts new file mode 100644 index 0000000..f63ea8c --- /dev/null +++ b/libs/database/src/lib/components/data-list/data-list.component.ts @@ -0,0 +1,106 @@ +import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core'; +import { SioCoreLoggerService, SioColorType } from '@silicia/core'; +import { AttributeBoolean } from '@angular-ru/cdk/decorators'; +import { InputBoolean } from '@angular-ru/cdk/typings'; +import { + InfiniteScrollCustomEvent, + RefresherCustomEvent, +} from '@ionic/angular'; +import { SioDatabaseState } from '../../store'; + +@Component({ + selector: 'sio-datalist', + templateUrl: './list.component.html', + styleUrls: ['./list.component.scss'], +}) +export class SioDatabaseListComponent implements OnInit { + // input related to this component + @Input() public store: SioDatabaseState | undefined = undefined; + + // Wrapped input for subcomponents + + @Input() public id = 'main'; + @Input() public lines: 'full' | 'inset' | 'none' = 'none'; + //@Input() public shape: 'line' | 'dot' | 'rounded' = 'line'; + @Input() public position: 'side' | 'bottom' | 'top' = 'side'; + @Input() public color: SioColorType; + @Input() public toggleIconSlot: 'start' | 'end' = 'end'; + @Input() public toggleIcon = 'chevron-up-outline'; + @Input() public shape: 'compact' | 'inset' = 'compact'; + @Input() public style: 'default' | 'rounded' | 'custom' = 'default'; + @Input() public desktop = false; + + @AttributeBoolean() + @Input() + public infinite: InputBoolean = false; + + @AttributeBoolean() + @Input() + public enableLeftSwipe: InputBoolean; + + @AttributeBoolean() + @Input() + public enableRightSwipe: InputBoolean = true; + + @Input() public header = 'name'; + @Input() public label = 'description'; + @Input() public icon: string | undefined; + @Input() public avatar: string | undefined; + @Input() public thumbnail: string | undefined; + + @Output() Click = new EventEmitter>(); + @Output() LeftSwipe = new EventEmitter>(); + @Output() RightSwipe = new EventEmitter>(); + @Output() Infinite = new EventEmitter>(); + @Output() Refresh = new EventEmitter>(); + + constructor(private sioCoreLoggerService: SioCoreLoggerService) { + this.sioCoreLoggerService.debug('[SioDatabaseListComponent][constructor]'); + } + + ngOnInit(): void { + this.sioCoreLoggerService.debug('[SioDatabaseListComponent][ngOnInit]'); + } + + public onLeftSwipe(data: Record) { + this.sioCoreLoggerService.debug( + '[SioDatabaseListComponent][onLeftSwipe]', + data, + ); + this.LeftSwipe.emit(data); + } + public onRighSwipe(data: Record) { + this.sioCoreLoggerService.debug( + '[SioDatabaseListComponent][onRightSwipe]', + data, + ); + this.RightSwipe.emit(data); + } + + public onRefresh(data: Event) { + this.sioCoreLoggerService.debug( + '[SioDatabaseListComponent][onRefresh]', + data, + ); + if (this.store) this.store.load(); + this.Refresh.emit(); + setTimeout(() => { + (data as RefresherCustomEvent).target.complete(); + }, 500); + } + + public onInfinite(data: Event) { + this.sioCoreLoggerService.debug( + '[sioDatabaseListComponent][onInfinite]', + data, + ); + this.Infinite.emit({ LastId: this.store!.pop().$id }); + if (this.store) { + this.store.setRemoteIndex(''); + this.store.load(); + } + setTimeout(() => { + (data as InfiniteScrollCustomEvent).target.complete(); + }, 500); + } +} diff --git a/libs/database/src/lib/components/data-list/index.ts b/libs/database/src/lib/components/data-list/index.ts new file mode 100644 index 0000000..abb697e --- /dev/null +++ b/libs/database/src/lib/components/data-list/index.ts @@ -0,0 +1 @@ +export * from './data-list.component'; \ No newline at end of file diff --git a/libs/database/src/lib/directives/index.ts b/libs/database/src/lib/directives/index.ts deleted file mode 100644 index e5b250a..0000000 --- a/libs/database/src/lib/directives/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './list-data.directives'; \ No newline at end of file diff --git a/libs/database/src/lib/directives/list-data.directives.ts b/libs/database/src/lib/directives/list-data.directives.ts deleted file mode 100644 index 5fb1833..0000000 --- a/libs/database/src/lib/directives/list-data.directives.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { Directive, HostBinding, HostListener, Input } from '@angular/core'; -import { SioCoreLoggerService } from '@silicia/core'; -import { SioDatabaseState } from '../store'; -import { SioDatabaseDocumentInterface } from '../models'; -import { SioDatabaseDocumentListInterface } from '../interfaces'; - -@Directive({ - selector: '[sioData]', -}) -export class SioListDataDirective { - constructor(private sioCoreLoggerService: SioCoreLoggerService) { - this.sioCoreLoggerService.debug('[Directive][SioData][constructor]'); - this.avatar = 'avatar'; - } - @Input() public sioData: SioDatabaseState | undefined = undefined; - - // eslint-disable-next-line @typescript-eslint/class-literal-property-style - @HostBinding('attr.avatar') avatar: string; - - @HostListener('sioCoreListItemLeftSwipe') - onSioCoreListItemLeftSwipe(id: Record) { - this.sioCoreLoggerService.debug( - '[Directive][SioData][onSioCoreListItemLeftSwipe]',id - ); - } - @HostListener('sioCoreListItemRightSwipe',['$event.id']) - onSioCoreListItemRightSwipe(id: Record) { - this.sioCoreLoggerService.debug( - '[Directive][SioData][onSioCoreListItemRightSwipe]',id - ); - } -} diff --git a/package-lock.json b/package-lock.json index 5ba65d5..02e9215 100644 --- a/package-lock.json +++ b/package-lock.json @@ -32,7 +32,7 @@ "@ngxs/logger-plugin": "^3.8.1", "@ngxs/router-plugin": "^3.8.1", "@ngxs/store": "^3.8.1", - "@nx/angular": "18.0.4", + "@nx/angular": "18.0.5", "appwrite": "^13.0.1", "ngx-translate-debug": "^0.1.4", "react": "^18.2.0", @@ -54,14 +54,14 @@ "@angular/language-service": "17.2.1", "@compodoc/compodoc": "^1.1.22", "@ngxs/devtools-plugin": "^3.8.1", - "@nx/cypress": "18.0.4", - "@nx/eslint": "18.0.4", - "@nx/eslint-plugin": "18.0.4", - "@nx/jest": "18.0.4", - "@nx/js": "18.0.4", - "@nx/storybook": "18.0.4", - "@nx/web": "18.0.4", - "@nx/workspace": "18.0.4", + "@nx/cypress": "18.0.5", + "@nx/eslint": "18.0.5", + "@nx/eslint-plugin": "18.0.5", + "@nx/jest": "18.0.5", + "@nx/js": "18.0.5", + "@nx/storybook": "18.0.5", + "@nx/web": "18.0.5", + "@nx/workspace": "18.0.5", "@schematics/angular": "17.2.0", "@storybook/addon-essentials": "7.6.17", "@storybook/addon-interactions": "7.6.17", @@ -86,7 +86,7 @@ "jest-preset-angular": "14.0.3", "jsonc-eslint-parser": "^2.1.0", "ng-packagr": "17.2.0", - "nx": "18.0.4", + "nx": "18.0.5", "postcss": "^8.4.31", "postcss-import": "16.0.1", "postcss-preset-env": "^9.2.0", @@ -129,11 +129,13 @@ } }, "node_modules/@angular-devkit/architect": { - "version": "0.1702.0", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1702.0.tgz", - "integrity": "sha512-+HkOYhdq8ez2+yqpxaQ6XtQevOYJNaDpM4oDmZ2lIpiIusFNsmpY2b9iL5PZGb4EfUgN8KsY3n9Q9fmRlRB9eA==", + "version": "0.1702.1", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1702.1.tgz", + "integrity": "sha512-eYYtR3kCG0V7aHsL34O4v8W2nW6MX4+SebhBO2dHGz2nCAS09LPtyO2fZZGawPgXOrN0nkLfghghI0hJ0dDaOw==", + "dev": true, + "peer": true, "dependencies": { - "@angular-devkit/core": "17.2.0", + "@angular-devkit/core": "17.2.1", "rxjs": "7.8.1" }, "engines": { @@ -142,6 +144,34 @@ "yarn": ">= 1.13.0" } }, + "node_modules/@angular-devkit/architect/node_modules/@angular-devkit/core": { + "version": "17.2.1", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-17.2.1.tgz", + "integrity": "sha512-4jWG7akd5wVxjKkLKDT1zUTyLJeBP5mDmGUPooZ6zVHy39X6htYC+BV3uu/T6gVrD4FyONMDezedpBOrQPtZ6A==", + "dev": true, + "peer": true, + "dependencies": { + "ajv": "8.12.0", + "ajv-formats": "2.1.1", + "jsonc-parser": "3.2.1", + "picomatch": "4.0.1", + "rxjs": "7.8.1", + "source-map": "0.7.4" + }, + "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" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } + } + }, "node_modules/@angular-devkit/build-angular": { "version": "17.2.0", "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-17.2.0.tgz", @@ -270,6 +300,20 @@ } } }, + "node_modules/@angular-devkit/build-angular/node_modules/@angular-devkit/architect": { + "version": "0.1702.0", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1702.0.tgz", + "integrity": "sha512-+HkOYhdq8ez2+yqpxaQ6XtQevOYJNaDpM4oDmZ2lIpiIusFNsmpY2b9iL5PZGb4EfUgN8KsY3n9Q9fmRlRB9eA==", + "dependencies": { + "@angular-devkit/core": "17.2.0", + "rxjs": "7.8.1" + }, + "engines": { + "node": "^18.13.0 || >=20.9.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, "node_modules/@angular-devkit/build-angular/node_modules/@esbuild/aix-ppc64": { "version": "0.20.0", "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.0.tgz", @@ -671,6 +715,20 @@ "webpack-dev-server": "^4.0.0" } }, + "node_modules/@angular-devkit/build-webpack/node_modules/@angular-devkit/architect": { + "version": "0.1702.0", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1702.0.tgz", + "integrity": "sha512-+HkOYhdq8ez2+yqpxaQ6XtQevOYJNaDpM4oDmZ2lIpiIusFNsmpY2b9iL5PZGb4EfUgN8KsY3n9Q9fmRlRB9eA==", + "dependencies": { + "@angular-devkit/core": "17.2.0", + "rxjs": "7.8.1" + }, + "engines": { + "node": "^18.13.0 || >=20.9.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, "node_modules/@angular-devkit/core": { "version": "17.2.0", "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-17.2.0.tgz", @@ -818,9 +876,9 @@ } }, "node_modules/@angular/cdk": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-17.2.0.tgz", - "integrity": "sha512-++qEQHzfUvccDw4IFimG9Ig7b4i9d64POUZ8H5cSflTiR3mBVZOlIhnRE/3PifYukoSetrkyedR8BDS6nwGxJQ==", + "version": "17.2.1", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-17.2.1.tgz", + "integrity": "sha512-9cWV9MyWnpImns/WQApgoQBKblXA9Zx2CpCkDNipRgx9RyvGrvCLjpEfwQI4HjpPAQDI1trsbeJKihzgz4tFgw==", "dependencies": { "tslib": "^2.3.0" }, @@ -867,6 +925,21 @@ "yarn": ">= 1.13.0" } }, + "node_modules/@angular/cli/node_modules/@angular-devkit/architect": { + "version": "0.1702.0", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1702.0.tgz", + "integrity": "sha512-+HkOYhdq8ez2+yqpxaQ6XtQevOYJNaDpM4oDmZ2lIpiIusFNsmpY2b9iL5PZGb4EfUgN8KsY3n9Q9fmRlRB9eA==", + "dev": true, + "dependencies": { + "@angular-devkit/core": "17.2.0", + "rxjs": "7.8.1" + }, + "engines": { + "node": "^18.13.0 || >=20.9.0", + "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", + "yarn": ">= 1.13.0" + } + }, "node_modules/@angular/common": { "version": "17.2.1", "resolved": "https://registry.npmjs.org/@angular/common/-/common-17.2.1.tgz", @@ -3630,9 +3703,9 @@ } }, "node_modules/@csstools/postcss-gradients-interpolation-method": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.10.tgz", - "integrity": "sha512-PwKOxVuX8lo52bPtPeKjaIp6oH2EzhcBxCndRcvGZKsqZYQ35k9A5G4yihZ+wp7PoxPqDNiXuhQsvQG2lqMpOA==", + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.11.tgz", + "integrity": "sha512-LFom5jCVUfzF+iuiOZvhvX7RRN8vc+tKpcKo9s4keEBAU2mPwV5/Fgz5iylEfXP/DZbEdq2C0At20urMi/lupw==", "dev": true, "funding": [ { @@ -4774,11 +4847,6 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@eslint/eslintrc/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -4802,17 +4870,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@eslint/eslintrc/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -5019,11 +5076,11 @@ "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==" }, "node_modules/@ionic/angular": { - "version": "7.7.2", - "resolved": "https://registry.npmjs.org/@ionic/angular/-/angular-7.7.2.tgz", - "integrity": "sha512-/WERBMmlQGTABOOgN+BJ6NNN/jrr8QSNrA/+Hjy8w7tTmRKoQ/xOCbb5T/wWo7npN2Gp9j6WIFytquJWeovdog==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/@ionic/angular/-/angular-7.7.3.tgz", + "integrity": "sha512-PddWNoF+VgiHJ8iYXK7NojjfEOILB6VzYvOaZ4Lgs5jIKtiDhl2el+doVGauYjWplD8P4CUA+jndMVo3Y/AGyA==", "dependencies": { - "@ionic/core": "7.7.2", + "@ionic/core": "7.7.3", "ionicons": "^7.0.0", "jsonc-parser": "^3.0.0", "tslib": "^2.3.0" @@ -5037,9 +5094,9 @@ } }, "node_modules/@ionic/core": { - "version": "7.7.2", - "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.7.2.tgz", - "integrity": "sha512-cH92OSqJBTaW8AAqh+M6NjzltVoAZCXqsHAOQMmZgrY4KgXNU+Wh+fs2La/UrFxTob9pZf30EpRddUG5rQYIFw==", + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/@ionic/core/-/core-7.7.3.tgz", + "integrity": "sha512-DSv6DPuiLU2MXsgDAXKFJW5OXxT7EyPy2jcQf03RcWooWeFryy979mqotPw7BgUuWt/fVGuz2tl3peAJGSqmDQ==", "dependencies": { "@stencil/core": "^4.12.2", "ionicons": "^7.2.2", @@ -5157,6 +5214,14 @@ "node": ">=8" } }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", @@ -5169,6 +5234,18 @@ "node": ">=8" } }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -5850,9 +5927,9 @@ } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.4.tgz", + "integrity": "sha512-Oud2QPM5dHviZNn4y/WhhYKSXksv+1xLEIsNrAbGcFzUN3ubqWRFT5gwPchNc5NuzILOU4tPBDTZ4VwhL8Y7cw==", "dependencies": { "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", @@ -5893,9 +5970,9 @@ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.22", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz", - "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==", + "version": "0.3.23", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.23.tgz", + "integrity": "sha512-9/4foRoUKp8s96tSkh8DlAAc5A0Ty8vLXld+l9gjKKY6ckwI8G15f0hskGmuLZu78ZlGa1vtsfOa+lnB4vG6Jg==", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -6352,70 +6429,70 @@ } }, "node_modules/@nrwl/angular": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nrwl/angular/-/angular-18.0.4.tgz", - "integrity": "sha512-bcwFDzX2f34LZz+RVCp3pbwVQAHzgpWfwCp6I40A3cjDjDpUhPAfZvaQxf5MjpPATlBJVhrh7bJPOJv/Kxat7g==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nrwl/angular/-/angular-18.0.5.tgz", + "integrity": "sha512-6To4mhelZLZhoh9Mhvp47rewgZHVJPmO+9b5QBdNgEg++xwnFtsNlDcydMmshm8HqzidGa5AvX6MAgkLUs6XzQ==", "dependencies": { - "@nx/angular": "18.0.4", + "@nx/angular": "18.0.5", "tslib": "^2.3.0" } }, "node_modules/@nrwl/cypress": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-18.0.4.tgz", - "integrity": "sha512-X7ZORP9Xt3lB+7goAb5JcBfVl6FQx8BPNv6TFi9ZiKayUqovgCMPOlmL2BDizsladv+7iacnTZTdo2X/4aunJA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nrwl/cypress/-/cypress-18.0.5.tgz", + "integrity": "sha512-AuoSTpKScicjpFbstOkoQE0Al2RRwyO3FDcoaYZT/4V6LtO6hIGHiNyRG6hzogL7AmMhDSYKo+JX3+RyPCmkRg==", "dependencies": { - "@nx/cypress": "18.0.4" + "@nx/cypress": "18.0.5" } }, "node_modules/@nrwl/devkit": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-18.0.4.tgz", - "integrity": "sha512-fKHnjg4/9MdFd2U4e8p6ja9fRa864DCyF70kB4YUB9NuUIgWLQ15Uj6wXC3xjdXmxQRyHDa7ORodVoFzdo4UCg==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-18.0.5.tgz", + "integrity": "sha512-knBxI8CRmp3g7Bt0O9FJUrew7oqg5JMt8/24EphabXZSdVdxWy7OzHPyoyUVbRedUNHUK7bsUGwpxFaSAkBeyQ==", "dependencies": { - "@nx/devkit": "18.0.4" + "@nx/devkit": "18.0.5" } }, "node_modules/@nrwl/eslint-plugin-nx": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-18.0.4.tgz", - "integrity": "sha512-j+5d7+ANY4E7Xn0CUXi+U8DRtv1WKYfI5dxL8JF5EPAfRl7xcX9VVPA9/R5dc/PHXIPeJMIg2CEH1TetH7O6Vw==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nrwl/eslint-plugin-nx/-/eslint-plugin-nx-18.0.5.tgz", + "integrity": "sha512-RbBEZcSyxXC2Qtk5xekYcS+mVls9lWXQgZYtZtYTvLOOVi5itxObtOCC2BrMez+rUNOZF42qwXtqqzz+/6TqWg==", "dev": true, "dependencies": { - "@nx/eslint-plugin": "18.0.4" + "@nx/eslint-plugin": "18.0.5" } }, "node_modules/@nrwl/jest": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-18.0.4.tgz", - "integrity": "sha512-oe4qfnXc1WUPPmd9ua4mtgiqwXY+2XPz6zSkWghrrvc5wXu15tPvrBxHeU+KEXWu+rVy3iGLU2s5AivdXxEbIA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nrwl/jest/-/jest-18.0.5.tgz", + "integrity": "sha512-aTqcuiS4KsB5rML8X6W39ivvpp0/oA6kIhlG4fPlncWHshZbdBHH+34mQ0bzsi+a3V7R5Osjz9HYNhwBJzqlmw==", "dependencies": { - "@nx/jest": "18.0.4" + "@nx/jest": "18.0.5" } }, "node_modules/@nrwl/js": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-18.0.4.tgz", - "integrity": "sha512-7aY6vjHHD99MMF+WtHSdmA7sxLmMNhbd12CQ6lXmSK41Yj82mBgQMwV/Ed+UT10XEh5uMes/iODL460SzwPMZA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nrwl/js/-/js-18.0.5.tgz", + "integrity": "sha512-EhdflJ1K7+MUnRHbj+v88SrhmEOjFBsdgNxzkmx0cxnRDFqH9B8dzUiRGLJmdW7cK4r0TY0C8U+1VHldSnm4FA==", "dependencies": { - "@nx/js": "18.0.4" + "@nx/js": "18.0.5" } }, "node_modules/@nrwl/storybook": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nrwl/storybook/-/storybook-18.0.4.tgz", - "integrity": "sha512-s9ksmNGRly34nR6ATexiKGEeu2hGDvwSXCm8EPQ/7zVcwYsRXl9fOa7d5tiI1iz3cuu++iVJvOF8eQT9ODJ7rg==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nrwl/storybook/-/storybook-18.0.5.tgz", + "integrity": "sha512-RaOYscGXpH+1wDYKbI1fza96tua+r+It871MfWtjfcWeQSmdPYl1rjDhD6CzqI0eVT2udMD2hIyIaGZdyxHl3g==", "dev": true, "dependencies": { - "@nx/storybook": "18.0.4" + "@nx/storybook": "18.0.5" } }, "node_modules/@nrwl/tao": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-18.0.4.tgz", - "integrity": "sha512-/PzGOJevlDQnp5RPXF3WDe+w1cdohGkY+mbJUgDVA4Q5JEPT1DtE10h9GgdHdzkPjVPNYsaI4Vs/53NUdlVHHA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-18.0.5.tgz", + "integrity": "sha512-gXCpR1/p2kYUCm1lEZAvdnmSo9KkYQ+ZLjWVz8gvtnpLnS0xHQLyStIe8Y01D7rsxeO9mDrAu/cWDNF4JyqLsA==", "dependencies": { - "nx": "18.0.4", + "nx": "18.0.5", "tslib": "^2.3.0" }, "bin": { @@ -6423,43 +6500,43 @@ } }, "node_modules/@nrwl/web": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nrwl/web/-/web-18.0.4.tgz", - "integrity": "sha512-NJSWj4pH/CWCFj3liOg3ExskfWqynjpGNsPS7zmkM6isbFHRXx7+s+eAVIQJtk5AttKOGeCUkUAaA91SaaTxKg==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nrwl/web/-/web-18.0.5.tgz", + "integrity": "sha512-ZzOScRcH+k/ItRbtdhp5xz9AIBGncTuD6T2DzNfGzG0hgwMahETbipp4dUYo/55z3SEjjiy/+neyOT3BK/jZEA==", "dependencies": { - "@nx/web": "18.0.4" + "@nx/web": "18.0.5" } }, "node_modules/@nrwl/webpack": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nrwl/webpack/-/webpack-18.0.4.tgz", - "integrity": "sha512-5GP8leMQHjyvEEflkuOGIDZhZ3kteYME0sKSAmpdD7jMnR9D1OLpRbq0V2WbyhMCCCuC6ae0ihzGZy8n8VhmuQ==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nrwl/webpack/-/webpack-18.0.5.tgz", + "integrity": "sha512-xUi42iMUM+KELbGsrFoiIHZ/TFKMs5EZiD3360abGTw8G6993RWwQZy+a9KcdMhH/dV8BmXRCrK5dtjzjo5G+g==", "dependencies": { - "@nx/webpack": "18.0.4" + "@nx/webpack": "18.0.5" } }, "node_modules/@nrwl/workspace": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-18.0.4.tgz", - "integrity": "sha512-UFD96NeEeHLKADLBDfF2U5rFOhyMjCwYzpA+D3Yp3X25aB7D89Kan4spq9ZC/Zxethz3911nNaYy+I+L5WlDoA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nrwl/workspace/-/workspace-18.0.5.tgz", + "integrity": "sha512-D2ouQlaR6/N8/UPp9Dq9xoruQGHiyFMATHPt4feWOorB4WTNfWVBpLCu2OqafwQA4lRh1i8f8RCIBSLeUujhEA==", "dependencies": { - "@nx/workspace": "18.0.4" + "@nx/workspace": "18.0.5" } }, "node_modules/@nx/angular": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/angular/-/angular-18.0.4.tgz", - "integrity": "sha512-3Mr4/+U/qV7dXrL+68W8bVU+sB4i7eH2GsX4ixNMm5d6qY0/rJdV7OYOSsuL7zVfD5q0Eu2HvgZeA61ADpUx+w==", - "dependencies": { - "@nrwl/angular": "18.0.4", - "@nx/cypress": "18.0.4", - "@nx/devkit": "18.0.4", - "@nx/eslint": "18.0.4", - "@nx/jest": "18.0.4", - "@nx/js": "18.0.4", - "@nx/web": "18.0.4", - "@nx/webpack": "18.0.4", - "@nx/workspace": "18.0.4", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/angular/-/angular-18.0.5.tgz", + "integrity": "sha512-wvW7psULkGFa3qcuMqMdp7B6u6Bd/x1w3TsR9heUV70jG4ApAnvUzswHEQv7QcJuuKABzHi0gJc3aC5qn5vqLg==", + "dependencies": { + "@nrwl/angular": "18.0.5", + "@nx/cypress": "18.0.5", + "@nx/devkit": "18.0.5", + "@nx/eslint": "18.0.5", + "@nx/jest": "18.0.5", + "@nx/js": "18.0.5", + "@nx/web": "18.0.5", + "@nx/webpack": "18.0.5", + "@nx/workspace": "18.0.5", "@phenomnomnominal/tsquery": "~5.0.1", "@typescript-eslint/type-utils": "^6.9.1", "chalk": "^4.1.0", @@ -6536,14 +6613,14 @@ } }, "node_modules/@nx/cypress": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-18.0.4.tgz", - "integrity": "sha512-G/t83/SSYNIor8aGE+u9nNbCrqcsbG4EnhESP0eXwk5k6ycW6eVGMuSlLkRe7debosL/RhGLwcw491alQug7PQ==", - "dependencies": { - "@nrwl/cypress": "18.0.4", - "@nx/devkit": "18.0.4", - "@nx/eslint": "18.0.4", - "@nx/js": "18.0.4", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/cypress/-/cypress-18.0.5.tgz", + "integrity": "sha512-AiPLmvWhwkrTDLRpGipGPACBYH0ado87o5tCzIn4EtYDvGQuaA12keJcBrd7Zpv4k0V/mHqIHATHXgoAJ/x+7Q==", + "dependencies": { + "@nrwl/cypress": "18.0.5", + "@nx/devkit": "18.0.5", + "@nx/eslint": "18.0.5", + "@nx/js": "18.0.5", "@phenomnomnominal/tsquery": "~5.0.1", "detect-port": "^1.5.1", "semver": "^7.5.3", @@ -6559,11 +6636,11 @@ } }, "node_modules/@nx/devkit": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-18.0.4.tgz", - "integrity": "sha512-Vs1AXgOjMJyaWpKopD04dy0FwQ22n5ZR1bFf98Ab4Ht0WJwJE90IpUVAkwI03n5BYxAKOlQnFltsB4gu6Y8mZQ==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-18.0.5.tgz", + "integrity": "sha512-c/3MCUqoXcf/uOIzdfSE1+lefJ4qNObqWdCOpaxUeN7bTCiWxidJVIxKL61UQyPKG7ZNJEU6PaWk5zOsSefGVg==", "dependencies": { - "@nrwl/devkit": "18.0.4", + "@nrwl/devkit": "18.0.5", "ejs": "^3.1.7", "enquirer": "~2.3.6", "ignore": "^5.0.4", @@ -6577,13 +6654,13 @@ } }, "node_modules/@nx/eslint": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/eslint/-/eslint-18.0.4.tgz", - "integrity": "sha512-6mjtPjXkS0aUWfF17D+PZI+Hhn+Cvm2yWTiDoVANsqt9rTOmlCa4fr01OcSyuaWFtkUlbKiKdQ1YYFyLD8zm7A==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/eslint/-/eslint-18.0.5.tgz", + "integrity": "sha512-YId7F/C9PKctHIwjj4AIU1RAH9I+pUBTLd18vRl1LudbOEQdUhAYC0XlVQzMyClijLJP7SPUUmnjo0CAZ9iOCw==", "dependencies": { - "@nx/devkit": "18.0.4", - "@nx/js": "18.0.4", - "@nx/linter": "18.0.4", + "@nx/devkit": "18.0.5", + "@nx/js": "18.0.5", + "@nx/linter": "18.0.5", "eslint": "^8.0.0", "tslib": "^2.3.0", "typescript": "~5.3.2" @@ -6598,14 +6675,14 @@ } }, "node_modules/@nx/eslint-plugin": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/eslint-plugin/-/eslint-plugin-18.0.4.tgz", - "integrity": "sha512-9QdhPO7r8tv6edInHzLSvimOxshZ5swkooqf/K/83RJ+2KfN/GLEIbLWx59xcqyYxc0D0W7y2XbhjL4XZJZPbw==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/eslint-plugin/-/eslint-plugin-18.0.5.tgz", + "integrity": "sha512-pAHE/d/3fkPwV1XkvJZRQ/Mcl7zGysLeYzxN6ld0L1VRiiyzF5G81hV5wQzh5U/S83zG/TQM/2SSlV0nGmLLSw==", "dev": true, "dependencies": { - "@nrwl/eslint-plugin-nx": "18.0.4", - "@nx/devkit": "18.0.4", - "@nx/js": "18.0.4", + "@nrwl/eslint-plugin-nx": "18.0.5", + "@nx/devkit": "18.0.5", + "@nx/js": "18.0.5", "@typescript-eslint/type-utils": "^6.13.2", "@typescript-eslint/utils": "^6.13.2", "chalk": "^4.1.0", @@ -6677,15 +6754,15 @@ } }, "node_modules/@nx/jest": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-18.0.4.tgz", - "integrity": "sha512-A114oLtWCK99CaY/hUR00/1RISf77jqEgduDFsiaoe8fpr74HN3E8Z/NWW6gG9rkB8ymnvJMJGfbrN+2/Vv75Q==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/jest/-/jest-18.0.5.tgz", + "integrity": "sha512-m7vZSRNiotwoRquOTe09Igv4Z8cmUclk/LJMR6NSfrnn9lnpDTRQH/VYaVWVQ7EoBNhE6H74v3EyV6YdLpCuuQ==", "dependencies": { "@jest/reporters": "^29.4.1", "@jest/test-result": "^29.4.1", - "@nrwl/jest": "18.0.4", - "@nx/devkit": "18.0.4", - "@nx/js": "18.0.4", + "@nrwl/jest": "18.0.5", + "@nx/devkit": "18.0.5", + "@nx/js": "18.0.5", "@phenomnomnominal/tsquery": "~5.0.1", "chalk": "^4.1.0", "identity-obj-proxy": "3.0.0", @@ -6746,9 +6823,9 @@ } }, "node_modules/@nx/js": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/js/-/js-18.0.4.tgz", - "integrity": "sha512-ma8QMTHZm0LzGYZ1xdVfSUONKb1S5qbiI1DHxhztrsSo3jARZfSAMKM3Bm7ag9MBitpDsoUlgy7JCPmGCAcxAw==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/js/-/js-18.0.5.tgz", + "integrity": "sha512-XdtTT1wCyfUsMlLRLd+/GOW7a3WyikcS/Fi1eIxuUWvlHlCdcbD0kV3otpT1P+mr4+4BO8uIkXZ/PCqZKamSIQ==", "dependencies": { "@babel/core": "^7.23.2", "@babel/plugin-proposal-decorators": "^7.22.7", @@ -6757,9 +6834,9 @@ "@babel/preset-env": "^7.23.2", "@babel/preset-typescript": "^7.22.5", "@babel/runtime": "^7.22.6", - "@nrwl/js": "18.0.4", - "@nx/devkit": "18.0.4", - "@nx/workspace": "18.0.4", + "@nrwl/js": "18.0.5", + "@nx/devkit": "18.0.5", + "@nx/workspace": "18.0.5", "@phenomnomnominal/tsquery": "~5.0.1", "babel-plugin-const-enum": "^1.0.1", "babel-plugin-macros": "^2.8.0", @@ -6934,17 +7011,17 @@ } }, "node_modules/@nx/linter": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-18.0.4.tgz", - "integrity": "sha512-yCg7H63eWkjReQUagAFAoICD53ByYZDyRqlkarZe9AGRWJM4GYKhJntihsk1mUOO7Sz0a907BMaWk8Wn5HbHEA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/linter/-/linter-18.0.5.tgz", + "integrity": "sha512-ZdYG3Li6no6S+24R7V8Mo2yzIQMTqgHJN8pkOHweG/A5efKX7M8yqQzMnA5sC9Yc6y+YK+wfGfo6q8Gh7d4FCQ==", "dependencies": { - "@nx/eslint": "18.0.4" + "@nx/eslint": "18.0.5" } }, "node_modules/@nx/nx-darwin-arm64": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-18.0.4.tgz", - "integrity": "sha512-9KJVONxUwdnFHHRNocsg7q5pliOTTfbjlr3rvhLuroV5HeTJFhUipKCQrVEhLy8e4auRdLuSz/HsgpJat3Z2cg==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-18.0.5.tgz", + "integrity": "sha512-d/Nn5Oe+1vK9S6GbFM2BM6ILaDTjo2IDoIMgNkqJH/o/7i7zh255yhurYqZLjkREwLkEwrZ7OHlhiErAXNlMDQ==", "cpu": [ "arm64" ], @@ -6957,9 +7034,9 @@ } }, "node_modules/@nx/nx-darwin-x64": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-18.0.4.tgz", - "integrity": "sha512-rFKHjeU0Ngz1R7UJAsbncpqwuFDjUdpcvI783r6s2eP7JoiiwtDBXvDcHiy8Odk0lPYmwDELaFZBhvdENqaDNA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-18.0.5.tgz", + "integrity": "sha512-3rDwHKZB8pWjvTqJoXoKLDQJsRkwOMV4KamxbMn18hciRAjtx+Okkbkoi8XQ71aOZ4/OpjPWl/peY1xGLcrJHg==", "cpu": [ "x64" ], @@ -6972,9 +7049,9 @@ } }, "node_modules/@nx/nx-freebsd-x64": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-18.0.4.tgz", - "integrity": "sha512-jJx47wgRoUxVpQ+WG5+yLdxtJVuVgjphiTMRc0LOfUwKQaEHWyCA0hMK5fNmo0FAHIhGVCb/j2j9FxnCWTWpkg==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-18.0.5.tgz", + "integrity": "sha512-AzAo/2NMgKQfwXtl/tHwrrmQIiiPx1ecGZ9vhui8hSPz/s4PcEe+eMdljRXopQP+JQnsBpaov0wNPLHpgdK3Fg==", "cpu": [ "x64" ], @@ -6987,9 +7064,9 @@ } }, "node_modules/@nx/nx-linux-arm-gnueabihf": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-18.0.4.tgz", - "integrity": "sha512-C3qWbFhEMIdTzvAHlIUHecZN3YBu7bx3S0p3gPNGmEMUMbYHP2zMlimBrZIbAxzntyGqWCqhXiFB21QhJ0t1Dw==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-18.0.5.tgz", + "integrity": "sha512-1Q5VjVbKR1GKCRsF1LyeR96yrEV8kzl++fEPMBhglEKeZC2iX+vygM2e34h9+eYpsSQ4GfrzrleY+hRqUoK6nA==", "cpu": [ "arm" ], @@ -7002,9 +7079,9 @@ } }, "node_modules/@nx/nx-linux-arm64-gnu": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-18.0.4.tgz", - "integrity": "sha512-PxVMh9ikp8Q3hKagb66FAsek8O/08GcMF5dXBH7xc5AiQMaZ6Az/gAXOeHp274nmu3StQEpl9Il/YH6Z9f4V0w==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-18.0.5.tgz", + "integrity": "sha512-6oSOEPm8Zs3/ZX8F1CFdGzvC0xM8W40bopHy/6wIOakGgBro6ESQuLDneHm+qh2chsFjMdAUOPZYd0Xse5IwxA==", "cpu": [ "arm64" ], @@ -7017,9 +7094,9 @@ } }, "node_modules/@nx/nx-linux-arm64-musl": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-18.0.4.tgz", - "integrity": "sha512-Iz7Z4h2/dXJJvBcyeRHa+d3Ncc4Qz+OiGm6iRDXv4zjFm5EyC1tkSZIFNlNiRjmTToNHFr4savrCjCh8wRYejw==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-18.0.5.tgz", + "integrity": "sha512-EYEh75OHtHAauTjaGqqbs7AqHlLf3lLzxte770eTWsR//EmV8/0/N8FXPf0MRuq5DilK+gEVIwAtL2GLpYPyMg==", "cpu": [ "arm64" ], @@ -7032,9 +7109,9 @@ } }, "node_modules/@nx/nx-linux-x64-gnu": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-18.0.4.tgz", - "integrity": "sha512-BVLkegIwxHnEB64VBraBxyC01D3C3dVNxq2b4iNaqr4mpWNmos+G/mvcTU3NS7W8ZjpBjlXgdEkpgkl2hMKTEA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-18.0.5.tgz", + "integrity": "sha512-9OicEhNlhy3W8ZGRQq5mlcc88lOjJSUcGT9nUf/mX9NOKE+j3lS9zTeKj865/XPk/DgmBX6xlnQD3w5nXLZXpg==", "cpu": [ "x64" ], @@ -7047,9 +7124,9 @@ } }, "node_modules/@nx/nx-linux-x64-musl": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-18.0.4.tgz", - "integrity": "sha512-WgVy41psjCE9uxjFi4P62UrWyKQ1e2IN2FZaIuwXEB9h8OU/+g9PFpL1Cs1llNoEKnapKXX4+9b5FHF9i7EKQw==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-18.0.5.tgz", + "integrity": "sha512-ch95wt1pQ/+DShnTx6zkisOeGNPgTYJf0YPbaH4eFD8yrTs2XKWvkDU+I11vzBIhoL5v/rsJG3W1F8AvKdlEYw==", "cpu": [ "x64" ], @@ -7062,9 +7139,9 @@ } }, "node_modules/@nx/nx-win32-arm64-msvc": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-18.0.4.tgz", - "integrity": "sha512-YoxhOrVKnS+kcNTnCg9M61cbigzGErYgnlI8kdZzH2ArD7mhv8bfZnSZUInf5Y8oDBVpKusel7AkCSofzSwigA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-18.0.5.tgz", + "integrity": "sha512-LdCf0A1Meba6NNExKTLuZ/cntygMbMnSh87LYWByuccYNDDibqFiE0GACQPSJf8Fy719bHYtKfs3a5p995JffA==", "cpu": [ "arm64" ], @@ -7077,9 +7154,9 @@ } }, "node_modules/@nx/nx-win32-x64-msvc": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-18.0.4.tgz", - "integrity": "sha512-FdAdl5buvtUXp8hZVRkK0AZeiCu35l0u+yHsulNViYdh3OXRT1hYJ0CeqpxlLfvbHqB9JzDPtJtG0dpKHH/O0Q==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-18.0.5.tgz", + "integrity": "sha512-QS0Cs9nDwMZW8TuKx2k2DHzLJmXqp7nGFUsxbxSA2i4zRR1TZs/0je4dzbXu52Wc7kKN89IdBU78Y1pURS+a7w==", "cpu": [ "x64" ], @@ -7092,29 +7169,29 @@ } }, "node_modules/@nx/storybook": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/storybook/-/storybook-18.0.4.tgz", - "integrity": "sha512-tmKDAkuoQAxUzw9KLDQW8lnf1PHTo2JIjn+UFBs/MtT4M1YoT7z0ak4VsjxWzLOiGojwtd/cbXbLITxBRRtyaw==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/storybook/-/storybook-18.0.5.tgz", + "integrity": "sha512-iiz9pssLST9fWclDiEHEG2fnObXESMLNZkEDDXKf95uwTViMz0Z7hqk8RpupJi4wIr7fSF5Y4byvsfLn93JPPg==", "dev": true, "dependencies": { - "@nrwl/storybook": "18.0.4", - "@nx/cypress": "18.0.4", - "@nx/devkit": "18.0.4", - "@nx/eslint": "18.0.4", - "@nx/js": "18.0.4", + "@nrwl/storybook": "18.0.5", + "@nx/cypress": "18.0.5", + "@nx/devkit": "18.0.5", + "@nx/eslint": "18.0.5", + "@nx/js": "18.0.5", "@phenomnomnominal/tsquery": "~5.0.1", "semver": "^7.5.3", "tslib": "^2.3.0" } }, "node_modules/@nx/web": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/web/-/web-18.0.4.tgz", - "integrity": "sha512-lcZjFEUjFly/+C4dFMLNEk9mnlolKGPrd4Z5tly0iEZCJ1tSuOYfxPraZZJFeYO88Eh10lW28aGdiHote/PLXQ==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/web/-/web-18.0.5.tgz", + "integrity": "sha512-3xZwK4Ul4T7EQeKjQTvKH2ZnWKfm12aBeusLMWn7wWDUT5D0Vu0onDIPy22qeyXNgdOKkwMds9oI2hSOMT17ow==", "dependencies": { - "@nrwl/web": "18.0.4", - "@nx/devkit": "18.0.4", - "@nx/js": "18.0.4", + "@nrwl/web": "18.0.5", + "@nx/devkit": "18.0.5", + "@nx/js": "18.0.5", "chalk": "^4.1.0", "detect-port": "^1.5.1", "http-server": "^14.1.0", @@ -7170,14 +7247,14 @@ } }, "node_modules/@nx/webpack": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/webpack/-/webpack-18.0.4.tgz", - "integrity": "sha512-ugac88EiCDtt/WVeuR596FJanN6J4Y8EPNxO/4+Odh6+yumgQdi0Bg6OLsvmZn6M+v+Qwaqyjo5RIFMk/3pDLQ==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/webpack/-/webpack-18.0.5.tgz", + "integrity": "sha512-iCoJPSIAXpK0RXusqb6gi8wWDw069UN8af60QVNKfbPSvh6KfeJSg6w+mtifdVeAEfqavJdjr69LwGNyQb1Jrg==", "dependencies": { "@babel/core": "^7.23.2", - "@nrwl/webpack": "18.0.4", - "@nx/devkit": "18.0.4", - "@nx/js": "18.0.4", + "@nrwl/webpack": "18.0.5", + "@nx/devkit": "18.0.5", + "@nx/js": "18.0.5", "ajv": "^8.12.0", "autoprefixer": "^10.4.9", "babel-loader": "^9.1.2", @@ -7558,15 +7635,15 @@ } }, "node_modules/@nx/workspace": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-18.0.4.tgz", - "integrity": "sha512-0w7czYCU6+QczvdRN8HnKRU24xnam5Gf12mfw+uuU6ybslOQuRoKW+oUROwyck5P4I27XzgxcqnMTCxNDcQGWQ==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/@nx/workspace/-/workspace-18.0.5.tgz", + "integrity": "sha512-88oBHG4Eb2HmB0vUJZwTo1W1r3wcfkvhf3sjCYJq/DfS+YtZi1tC1MAsy5uks3WsuVLX2YFlMfSvVNQ4yl3FWQ==", "dependencies": { - "@nrwl/workspace": "18.0.4", - "@nx/devkit": "18.0.4", + "@nrwl/workspace": "18.0.5", + "@nx/devkit": "18.0.5", "chalk": "^4.1.0", "enquirer": "~2.3.6", - "nx": "18.0.4", + "nx": "18.0.5", "tslib": "^2.3.0", "yargs-parser": "21.1.1" } @@ -8687,9 +8764,9 @@ } }, "node_modules/@stencil/core": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.12.2.tgz", - "integrity": "sha512-WEMpoqwMV4hY/ab2z9NxRhSeZwuKEugjyn6Vd+qA9xqZh6VNUL27QbP8vCa7IeqD4Zql4JBtKu3lVuBHutWE6w==", + "version": "4.12.4", + "resolved": "https://registry.npmjs.org/@stencil/core/-/core-4.12.4.tgz", + "integrity": "sha512-KrwoXu9J1loWSvQQReilGPkt6/dCH/x5eTBDecCBPclz7vxUM13Iw9almBIffEpurk/kaMAglH0G7sAF/A2y1A==", "bin": { "stencil": "bin/stencil" }, @@ -8956,18 +9033,18 @@ } }, "node_modules/@storybook/angular/node_modules/@types/node": { - "version": "18.19.17", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.17.tgz", - "integrity": "sha512-SzyGKgwPzuWp2SHhlpXKzCX0pIOfcI4V2eF37nNBJOhwlegQ83omtVQ1XxZpDE06V/d6AQvfQdPfnw0tRC//Ng==", + "version": "18.19.18", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.18.tgz", + "integrity": "sha512-80CP7B8y4PzZF0GWx15/gVWRrB5y/bIjNI84NK3cmQJu0WZwvmj2WMA5LcofQFVfLqqCSp545+U2LsrVzX36Zg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" } }, "node_modules/@storybook/angular/node_modules/@types/react": { - "version": "16.14.56", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.56.tgz", - "integrity": "sha512-MxuHB7dvVm5yOxRr7hJoonLG0JY8YvqZtaQ9Quirp3Oe4FLFjAgxkxsKE6IspdHPpRVZKo2ZoDEravWO81EeYA==", + "version": "16.14.57", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.57.tgz", + "integrity": "sha512-fuNq/GV1a6GgqSuVuC457vYeTbm4E1CUBQVZwSPxqYnRhIzSXCJ1gGqyv+PKhqLyfbKCga9dXHJDzv+4XE41fw==", "dev": true, "dependencies": { "@types/prop-types": "*", @@ -9553,9 +9630,9 @@ } }, "node_modules/@storybook/builder-webpack5/node_modules/@types/node": { - "version": "18.19.17", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.17.tgz", - "integrity": "sha512-SzyGKgwPzuWp2SHhlpXKzCX0pIOfcI4V2eF37nNBJOhwlegQ83omtVQ1XxZpDE06V/d6AQvfQdPfnw0tRC//Ng==", + "version": "18.19.18", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.18.tgz", + "integrity": "sha512-80CP7B8y4PzZF0GWx15/gVWRrB5y/bIjNI84NK3cmQJu0WZwvmj2WMA5LcofQFVfLqqCSp545+U2LsrVzX36Zg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -10360,9 +10437,9 @@ } }, "node_modules/@storybook/core-common/node_modules/@types/node": { - "version": "18.19.17", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.17.tgz", - "integrity": "sha512-SzyGKgwPzuWp2SHhlpXKzCX0pIOfcI4V2eF37nNBJOhwlegQ83omtVQ1XxZpDE06V/d6AQvfQdPfnw0tRC//Ng==", + "version": "18.19.18", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.18.tgz", + "integrity": "sha512-80CP7B8y4PzZF0GWx15/gVWRrB5y/bIjNI84NK3cmQJu0WZwvmj2WMA5LcofQFVfLqqCSp545+U2LsrVzX36Zg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -10536,9 +10613,9 @@ } }, "node_modules/@storybook/core-server/node_modules/@types/node": { - "version": "18.19.17", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.17.tgz", - "integrity": "sha512-SzyGKgwPzuWp2SHhlpXKzCX0pIOfcI4V2eF37nNBJOhwlegQ83omtVQ1XxZpDE06V/d6AQvfQdPfnw0tRC//Ng==", + "version": "18.19.18", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.18.tgz", + "integrity": "sha512-80CP7B8y4PzZF0GWx15/gVWRrB5y/bIjNI84NK3cmQJu0WZwvmj2WMA5LcofQFVfLqqCSp545+U2LsrVzX36Zg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -10614,9 +10691,9 @@ } }, "node_modules/@storybook/core-webpack/node_modules/@types/node": { - "version": "18.19.17", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.17.tgz", - "integrity": "sha512-SzyGKgwPzuWp2SHhlpXKzCX0pIOfcI4V2eF37nNBJOhwlegQ83omtVQ1XxZpDE06V/d6AQvfQdPfnw0tRC//Ng==", + "version": "18.19.18", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.18.tgz", + "integrity": "sha512-80CP7B8y4PzZF0GWx15/gVWRrB5y/bIjNI84NK3cmQJu0WZwvmj2WMA5LcofQFVfLqqCSp545+U2LsrVzX36Zg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -12070,9 +12147,9 @@ "dev": true }, "node_modules/@types/eslint": { - "version": "8.56.2", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.2.tgz", - "integrity": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==", + "version": "8.56.3", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.3.tgz", + "integrity": "sha512-PvSf1wfv2wJpVIFUMSb+i4PvqNYkB9Rkp9ZDO3oaWzq4SKhsQk4mrMBr3ZH06I0hKrVGLBacmgl8JM4WVjb9dg==", "dependencies": { "@types/estree": "*", "@types/json-schema": "*" @@ -12309,9 +12386,9 @@ "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" }, "node_modules/@types/react": { - "version": "18.2.57", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.57.tgz", - "integrity": "sha512-ZvQsktJgSYrQiMirAN60y4O/LRevIV8hUzSOSNB6gfR3/o3wCBFQx3sPwIYtuDMeiVgsSS3UzCV26tEzgnfvQw==", + "version": "18.2.59", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.59.tgz", + "integrity": "sha512-DE+F6BYEC8VtajY85Qr7mmhTd/79rJKIHCg99MU9SWPB4xvLb6D1za2vYflgZfmPqQVEr6UqJTnLXEwzpVPuOg==", "dev": true, "dependencies": { "@types/prop-types": "*", @@ -12329,9 +12406,9 @@ } }, "node_modules/@types/react-dom/node_modules/@types/react": { - "version": "16.14.56", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.56.tgz", - "integrity": "sha512-MxuHB7dvVm5yOxRr7hJoonLG0JY8YvqZtaQ9Quirp3Oe4FLFjAgxkxsKE6IspdHPpRVZKo2ZoDEravWO81EeYA==", + "version": "16.14.57", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.57.tgz", + "integrity": "sha512-fuNq/GV1a6GgqSuVuC457vYeTbm4E1CUBQVZwSPxqYnRhIzSXCJ1gGqyv+PKhqLyfbKCga9dXHJDzv+4XE41fw==", "dev": true, "dependencies": { "@types/prop-types": "*", @@ -12357,9 +12434,9 @@ "dev": true }, "node_modules/@types/semver": { - "version": "7.5.7", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.7.tgz", - "integrity": "sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==" + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==" }, "node_modules/@types/send": { "version": "0.17.4", @@ -13069,6 +13146,26 @@ "node": ">=14.15.0" } }, + "node_modules/@yarnpkg/parsers/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/@yarnpkg/parsers/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/@zkochan/js-yaml": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz", @@ -13080,11 +13177,6 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/@zkochan/js-yaml/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, "node_modules/abab": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", @@ -13437,9 +13529,9 @@ } }, "node_modules/appwrite": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/appwrite/-/appwrite-13.0.1.tgz", - "integrity": "sha512-kdOLB5Qbr2beQW72diA/dx8L16LywHcQV1H6oqgGtf64Mo6LsvyIM1hEVxWmFLwAXMaOtsqb7Mcs4+oQHo+WmQ==", + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/appwrite/-/appwrite-13.0.2.tgz", + "integrity": "sha512-ISkUXO8pojDWGx5XqknCwwikgAQye4Ni4FL+Ns8Hg42rXeyehLlmvHGjFOmpS+odT6nsWYUaXzVjV4SZuDorog==", "dependencies": { "cross-fetch": "3.1.5", "isomorphic-form-data": "2.0.0" @@ -13477,12 +13569,9 @@ "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" }, "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": "~1.0.2" - } + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" }, "node_modules/aria-hidden": { "version": "1.2.3", @@ -14720,9 +14809,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001588", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001588.tgz", - "integrity": "sha512-+hVY9jE44uKLkH0SrUTqxjxqNTOWHsbnQDIKjwkZ3lNTzUUVdBLBGXtj/q5Mp5u98r3droaZAewQuEDzjQdZlQ==", + "version": "1.0.30001589", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001589.tgz", + "integrity": "sha512-vNQWS6kI+q6sBlHbh71IIeC+sRwK2N3EDySc/updIGhIee2x5z00J4c1242/5/d6EpEMdOnk/m+6tuk4/tcsqg==", "funding": [ { "type": "opencollective", @@ -15508,24 +15597,6 @@ } } }, - "node_modules/cosmiconfig/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/cosmiconfig/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/create-jest": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", @@ -15947,9 +16018,9 @@ "dev": true }, "node_modules/cssdb": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.11.0.tgz", - "integrity": "sha512-YUVAJhjDcTZzVD5XE49l3PQtGE29vvhzaL1bM3BtkvSmIRJeYENdfn1dn5jauBI7BBF+IyyiBS+oSVx3Hz/Gaw==", + "version": "7.11.1", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.11.1.tgz", + "integrity": "sha512-F0nEoX/Rv8ENTHsjMPGHd9opdjGfXkgRBafSUGnQKPzGZFB7Lm0BbT10x21TMOCrKLbVsJ0NoCDMk6AfKqw8/A==", "dev": true, "funding": [ { @@ -15974,12 +16045,12 @@ } }, "node_modules/cssnano": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.3.tgz", - "integrity": "sha512-MRq4CIj8pnyZpcI2qs6wswoYoDD1t0aL28n+41c1Ukcpm56m1h6mCexIHBGjfZfnTqtGSSCP4/fB1ovxgjBOiw==", + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.5.tgz", + "integrity": "sha512-tpTp/ukgrElwu3ESFY4IvWnGn8eTt8cJhC2aAbtA3lvUlxp6t6UPv8YCLjNnEGiFreT1O0LiOM1U3QyTBVFl2A==", "dependencies": { - "cssnano-preset-default": "^6.0.3", - "lilconfig": "^3.0.0" + "cssnano-preset-default": "^6.0.5", + "lilconfig": "^3.1.1" }, "engines": { "node": "^14 || ^16 || >=18.0" @@ -15993,24 +16064,24 @@ } }, "node_modules/cssnano-preset-default": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.3.tgz", - "integrity": "sha512-4y3H370aZCkT9Ev8P4SO4bZbt+AExeKhh8wTbms/X7OLDo5E7AYUUy6YPxa/uF5Grf+AJwNcCnxKhZynJ6luBA==", + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.5.tgz", + "integrity": "sha512-M+qRDEr5QZrfNl0B2ySdbTLGyNb8kBcSjuwR7WBamYBOEREH9t2efnB/nblekqhdGLZdkf4oZNetykG2JWRdZQ==", "dependencies": { "css-declaration-sorter": "^7.1.1", "cssnano-utils": "^4.0.1", "postcss-calc": "^9.0.1", - "postcss-colormin": "^6.0.2", - "postcss-convert-values": "^6.0.2", + "postcss-colormin": "^6.0.3", + "postcss-convert-values": "^6.0.4", "postcss-discard-comments": "^6.0.1", - "postcss-discard-duplicates": "^6.0.1", - "postcss-discard-empty": "^6.0.1", + "postcss-discard-duplicates": "^6.0.2", + "postcss-discard-empty": "^6.0.2", "postcss-discard-overridden": "^6.0.1", - "postcss-merge-longhand": "^6.0.2", - "postcss-merge-rules": "^6.0.3", - "postcss-minify-font-values": "^6.0.1", - "postcss-minify-gradients": "^6.0.1", - "postcss-minify-params": "^6.0.2", + "postcss-merge-longhand": "^6.0.3", + "postcss-merge-rules": "^6.0.4", + "postcss-minify-font-values": "^6.0.2", + "postcss-minify-gradients": "^6.0.2", + "postcss-minify-params": "^6.0.3", "postcss-minify-selectors": "^6.0.2", "postcss-normalize-charset": "^6.0.1", "postcss-normalize-display-values": "^6.0.1", @@ -16018,11 +16089,11 @@ "postcss-normalize-repeat-style": "^6.0.1", "postcss-normalize-string": "^6.0.1", "postcss-normalize-timing-functions": "^6.0.1", - "postcss-normalize-unicode": "^6.0.2", + "postcss-normalize-unicode": "^6.0.3", "postcss-normalize-url": "^6.0.1", "postcss-normalize-whitespace": "^6.0.1", "postcss-ordered-values": "^6.0.1", - "postcss-reduce-initial": "^6.0.2", + "postcss-reduce-initial": "^6.0.3", "postcss-reduce-transforms": "^6.0.1", "postcss-svgo": "^6.0.2", "postcss-unique-selectors": "^6.0.2" @@ -16125,9 +16196,9 @@ } }, "node_modules/cypress": { - "version": "13.6.4", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.6.4.tgz", - "integrity": "sha512-pYJjCfDYB+hoOoZuhysbbYhEmNW7DEDsqn+ToCLwuVowxUXppIWRr7qk4TVRIU471ksfzyZcH+mkoF0CQUKnpw==", + "version": "13.6.6", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.6.6.tgz", + "integrity": "sha512-S+2S9S94611hXimH9a3EAYt81QM913ZVA03pUmGDfLTFa5gyp85NJ8dJGSlEAEmyRsYkioS1TtnWtbv/Fzt11A==", "devOptional": true, "hasInstallScript": true, "dependencies": { @@ -16138,7 +16209,7 @@ "arch": "^2.2.0", "blob-util": "^2.0.2", "bluebird": "^3.7.2", - "buffer": "^5.6.0", + "buffer": "^5.7.1", "cachedir": "^2.3.0", "chalk": "^4.1.0", "check-more-types": "^2.24.0", @@ -16156,7 +16227,7 @@ "figures": "^3.2.0", "fs-extra": "^9.1.0", "getos": "^3.2.1", - "is-ci": "^3.0.0", + "is-ci": "^3.0.1", "is-installed-globally": "~0.4.0", "lazy-ass": "^1.6.0", "listr2": "^3.8.3", @@ -17041,9 +17112,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.676", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.676.tgz", - "integrity": "sha512-uHt4FB8SeYdhcOsj2ix/C39S7sPSNFJpzShjxGOm1KdF4MHyGqGi389+T5cErsodsijojXilYaHIKKqJfqh7uQ==" + "version": "1.4.682", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.682.tgz", + "integrity": "sha512-oCglfs8yYKs9RQjJFOHonSnhikPK3y+0SvSYc/YpYJV//6rqc0/hbwd0c7vgK4vrl6y2gJAwjkhkSGWK+z4KRA==" }, "node_modules/emitter-component": { "version": "1.1.2", @@ -17240,14 +17311,15 @@ "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" }, "node_modules/es5-ext": { - "version": "0.10.62", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", - "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "version": "0.10.63", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.63.tgz", + "integrity": "sha512-hUCZd2Byj/mNKjfP9jXrdVZ62B8KuA/VoK7X8nUh5qT+AxDmcbvZz041oDVZdbIN1qW6XY9VDNwzkvKnZvK2TQ==", "dev": true, "hasInstallScript": true, "dependencies": { "es6-iterator": "^2.0.3", "es6-symbol": "^3.1.3", + "esniff": "^2.0.1", "next-tick": "^1.1.0" }, "engines": { @@ -17603,11 +17675,6 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/eslint/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, "node_modules/eslint/node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -17691,17 +17758,6 @@ "node": ">=8" } }, - "node_modules/eslint/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/eslint/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", @@ -17740,6 +17796,27 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/esniff": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", + "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", + "dev": true, + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.62", + "event-emitter": "^0.3.5", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esniff/node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "dev": true + }, "node_modules/espree": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", @@ -18573,14 +18650,14 @@ } }, "node_modules/flatted": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.0.tgz", - "integrity": "sha512-noqGuLw158+DuD9UPRKHpJ2hGxpFyDlYYrfM0mWt4XhT4n0lwzTLh70Tkdyy4kyTmyTT9Bv7bWAJqw7cgkEXDg==" + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==" }, "node_modules/flow-parser": { - "version": "0.229.0", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.229.0.tgz", - "integrity": "sha512-mOYmMuvJwAo/CvnMFEq4SHftq7E5188hYMTTxJyQOXk2nh+sgslRdYMw3wTthH+FMcFaZLtmBPuMu6IwztdoUQ==", + "version": "0.229.2", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.229.2.tgz", + "integrity": "sha512-T72XV2Izvl7yV6dhHhLaJ630Y6vOZJl6dnOS6dN0bPW9ExuREu7xGAf3omtcxX76POTuux9TJPu9ZpS48a/rdw==", "dev": true, "engines": { "node": ">=0.4.0" @@ -19858,9 +19935,9 @@ } }, "node_modules/i18next": { - "version": "23.9.0", - "resolved": "https://registry.npmjs.org/i18next/-/i18next-23.9.0.tgz", - "integrity": "sha512-f3MUciKqwzNV//mHG6EtdSlC65+nqH/3zK8sOSWqNV6FVu2tmHhF/rFOp9UF8S4m1odojtuipKaKJrP0Loh60g==", + "version": "23.10.0", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-23.10.0.tgz", + "integrity": "sha512-/TgHOqsa7/9abUKJjdPeydoyDc0oTi/7u9F8lMSj6ufg4cbC1Oj3f/Jja7zj7WRIhEQKB7Q4eN6y68I9RDxxGQ==", "dev": true, "funding": [ { @@ -20608,12 +20685,15 @@ } }, "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -23145,9 +23225,9 @@ } }, "node_modules/joi": { - "version": "17.12.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.12.1.tgz", - "integrity": "sha512-vtxmq+Lsc5SlfqotnfVjlViWfOL9nt/avKNbKYizwf6gsCfq9NYY/ceYRMFD8XDdrjJ9abJyScWmhmIiy+XRtQ==", + "version": "17.12.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.12.2.tgz", + "integrity": "sha512-RonXAIzCiHLc8ss3Ibuz45u28GOsWE1UpfDXLbN/9NKbL4tCJf8TWYVKsoYuuh+sAUt7fsSNpA+r2+TBA6Wjmw==", "dev": true, "dependencies": { "@hapi/hoek": "^9.3.0", @@ -23163,12 +23243,11 @@ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" @@ -23181,9 +23260,9 @@ "dev": true }, "node_modules/jscodeshift": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.15.1.tgz", - "integrity": "sha512-hIJfxUy8Rt4HkJn/zZPU9ChKfKZM1342waJ1QC2e2YsPcWhM+3BJ4dcfQCzArTrk1jJeNLB341H+qOcEHRxJZg==", + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.15.2.tgz", + "integrity": "sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==", "dev": true, "dependencies": { "@babel/core": "^7.23.0", @@ -25545,12 +25624,12 @@ "devOptional": true }, "node_modules/nx": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/nx/-/nx-18.0.4.tgz", - "integrity": "sha512-Njb1fGppOw/wM7nOA1hYlLduV2aL4PdXSv5QS5cVYicHT5tw5RnG/0z4j9e6QfFj2EydxVeDUtlGR98diZ3/Yw==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/nx/-/nx-18.0.5.tgz", + "integrity": "sha512-BTVACTiCkXAg5LJmy1KNBQ+1QVh1bRM1T5Md2smpAHAxMw6m5h8v5+B595HY7h56nhUj7wjamlBVA1l6Yx55SQ==", "hasInstallScript": true, "dependencies": { - "@nrwl/tao": "18.0.4", + "@nrwl/tao": "18.0.5", "@yarnpkg/lockfile": "^1.1.0", "@yarnpkg/parsers": "3.0.0-rc.46", "@zkochan/js-yaml": "0.0.6", @@ -25590,16 +25669,16 @@ "nx-cloud": "bin/nx-cloud.js" }, "optionalDependencies": { - "@nx/nx-darwin-arm64": "18.0.4", - "@nx/nx-darwin-x64": "18.0.4", - "@nx/nx-freebsd-x64": "18.0.4", - "@nx/nx-linux-arm-gnueabihf": "18.0.4", - "@nx/nx-linux-arm64-gnu": "18.0.4", - "@nx/nx-linux-arm64-musl": "18.0.4", - "@nx/nx-linux-x64-gnu": "18.0.4", - "@nx/nx-linux-x64-musl": "18.0.4", - "@nx/nx-win32-arm64-msvc": "18.0.4", - "@nx/nx-win32-x64-msvc": "18.0.4" + "@nx/nx-darwin-arm64": "18.0.5", + "@nx/nx-darwin-x64": "18.0.5", + "@nx/nx-freebsd-x64": "18.0.5", + "@nx/nx-linux-arm-gnueabihf": "18.0.5", + "@nx/nx-linux-arm64-gnu": "18.0.5", + "@nx/nx-linux-arm64-musl": "18.0.5", + "@nx/nx-linux-x64-gnu": "18.0.5", + "@nx/nx-linux-x64-musl": "18.0.5", + "@nx/nx-win32-arm64-msvc": "18.0.5", + "@nx/nx-win32-x64-msvc": "18.0.5" }, "peerDependencies": { "@swc-node/register": "^1.8.0", @@ -25628,11 +25707,6 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/nx/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, "node_modules/nx/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -25667,17 +25741,6 @@ "node": ">=8" } }, - "node_modules/nx/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/nx/node_modules/jsonc-parser": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", @@ -26038,9 +26101,9 @@ } }, "node_modules/nypm/node_modules/npm-run-path": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.2.0.tgz", - "integrity": "sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", "dev": true, "dependencies": { "path-key": "^4.0.0" @@ -27107,13 +27170,13 @@ } }, "node_modules/postcss-colormin": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.2.tgz", - "integrity": "sha512-TXKOxs9LWcdYo5cgmcSHPkyrLAh86hX1ijmyy6J8SbOhyv6ua053M3ZAM/0j44UsnQNIWdl8gb5L7xX2htKeLw==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.3.tgz", + "integrity": "sha512-ECpkS+UZRyAtu/kjive2/1mihP+GNtgC8kcdU8ueWZi1ZVxMNnRziCLdhrWECJhEtSWijfX2Cl9XTTCK/hjGaA==", "dependencies": { - "browserslist": "^4.22.2", + "browserslist": "^4.23.0", "caniuse-api": "^3.0.0", - "colord": "^2.9.1", + "colord": "^2.9.3", "postcss-value-parser": "^4.2.0" }, "engines": { @@ -27124,11 +27187,11 @@ } }, "node_modules/postcss-convert-values": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.2.tgz", - "integrity": "sha512-aeBmaTnGQ+NUSVQT8aY0sKyAD/BaLJenEKZ03YK0JnDE1w1Rr8XShoxdal2V2H26xTJKr3v5haByOhJuyT4UYw==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.4.tgz", + "integrity": "sha512-YT2yrGzPXoQD3YeA2kBo/696qNwn7vI+15AOS2puXWEvSWqdCqlOyDWRy5GNnOc9ACRGOkuQ4ESQEqPJBWt/GA==", "dependencies": { - "browserslist": "^4.22.2", + "browserslist": "^4.23.0", "postcss-value-parser": "^4.2.0" }, "engines": { @@ -27260,9 +27323,9 @@ } }, "node_modules/postcss-discard-duplicates": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.1.tgz", - "integrity": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.2.tgz", + "integrity": "sha512-U2rsj4w6pAGROCCcD13LP2eBIi1whUsXs4kgE6xkIuGfkbxCBSKhkCTWyowFd66WdVlLv0uM1euJKIgmdmZObg==", "engines": { "node": "^14 || ^16 || >=18.0" }, @@ -27271,9 +27334,9 @@ } }, "node_modules/postcss-discard-empty": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.1.tgz", - "integrity": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.2.tgz", + "integrity": "sha512-rj6pVC2dVCJrP0Y2RkYTQEbYaCf4HEm+R/2StQgJqGHxAa3+KcYslNQhcRqjLHtl/4wpzipJluaJLqBj6d5eDQ==", "engines": { "node": "^14 || ^16 || >=18.0" }, @@ -27502,11 +27565,6 @@ } } }, - "node_modules/postcss-loader/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, "node_modules/postcss-loader/node_modules/cosmiconfig": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", @@ -27532,17 +27590,6 @@ } } }, - "node_modules/postcss-loader/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/postcss-logical": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-7.0.1.tgz", @@ -27569,12 +27616,12 @@ } }, "node_modules/postcss-merge-longhand": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.2.tgz", - "integrity": "sha512-+yfVB7gEM8SrCo9w2lCApKIEzrTKl5yS1F4yGhV3kSim6JzbfLGJyhR1B6X+6vOT0U33Mgx7iv4X9MVWuaSAfw==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.3.tgz", + "integrity": "sha512-kF/y3DU8CRt+SX3tP/aG+2gkZI2Z7OXDsPU7FgxIJmuyhQQ1EHceIYcsp/alvzCm2P4c37Sfdu8nNrHc+YeyLg==", "dependencies": { "postcss-value-parser": "^4.2.0", - "stylehacks": "^6.0.2" + "stylehacks": "^6.0.3" }, "engines": { "node": "^14 || ^16 || >=18.0" @@ -27584,11 +27631,11 @@ } }, "node_modules/postcss-merge-rules": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.3.tgz", - "integrity": "sha512-yfkDqSHGohy8sGYIJwBmIGDv4K4/WrJPX355XrxQb/CSsT4Kc/RxDi6akqn5s9bap85AWgv21ArcUWwWdGNSHA==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.4.tgz", + "integrity": "sha512-97iF3UJ5v8N1BWy38y+0l+Z8o5/9uGlEgtWic2PJPzoRrLB6Gxg8TVG93O0EK52jcLeMsywre26AUlX1YAYeHA==", "dependencies": { - "browserslist": "^4.22.2", + "browserslist": "^4.23.0", "caniuse-api": "^3.0.0", "cssnano-utils": "^4.0.1", "postcss-selector-parser": "^6.0.15" @@ -27601,9 +27648,9 @@ } }, "node_modules/postcss-minify-font-values": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.1.tgz", - "integrity": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.2.tgz", + "integrity": "sha512-IedzbVMoX0a7VZWjSYr5qJ6C37rws8kl8diPBeMZLJfWKkgXuMFY5R/OxPegn/q9tK9ztd0XRH3aR0u2t+A7uQ==", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -27615,11 +27662,11 @@ } }, "node_modules/postcss-minify-gradients": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.1.tgz", - "integrity": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.2.tgz", + "integrity": "sha512-vP5mF7iI6/5fcpv+rSfwWQekOE+8I1i7/7RjZPGuIjj6eUaZVeG4XZYZrroFuw1WQd51u2V32wyQFZ+oYdE7CA==", "dependencies": { - "colord": "^2.9.1", + "colord": "^2.9.3", "cssnano-utils": "^4.0.1", "postcss-value-parser": "^4.2.0" }, @@ -27631,11 +27678,11 @@ } }, "node_modules/postcss-minify-params": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.2.tgz", - "integrity": "sha512-zwQtbrPEBDj+ApELZ6QylLf2/c5zmASoOuA4DzolyVGdV38iR2I5QRMsZcHkcdkZzxpN8RS4cN7LPskOkTwTZw==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.3.tgz", + "integrity": "sha512-j4S74d3AAeCK5eGdQndXSrkxusV2ekOxbXGnlnZthMyZBBvSDiU34CihTASbJxuVB3bugudmwolS7+Dgs5OyOQ==", "dependencies": { - "browserslist": "^4.22.2", + "browserslist": "^4.23.0", "cssnano-utils": "^4.0.1", "postcss-value-parser": "^4.2.0" }, @@ -27823,11 +27870,11 @@ } }, "node_modules/postcss-normalize-unicode": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.2.tgz", - "integrity": "sha512-Ff2VdAYCTGyMUwpevTZPZ4w0+mPjbZzLLyoLh/RMpqUqeQKZ+xMm31hkxBavDcGKcxm6ACzGk0nBfZ8LZkStKA==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.3.tgz", + "integrity": "sha512-T2Bb3gXz0ASgc3ori2dzjv6j/P2IantreaC6fT8tWjqYUiqMAh5jGIkdPwEV2FaucjQlCLeFJDJh2BeSugE1ig==", "dependencies": { - "browserslist": "^4.22.2", + "browserslist": "^4.23.0", "postcss-value-parser": "^4.2.0" }, "engines": { @@ -28071,11 +28118,11 @@ } }, "node_modules/postcss-reduce-initial": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.2.tgz", - "integrity": "sha512-YGKalhNlCLcjcLvjU5nF8FyeCTkCO5UtvJEt0hrPZVCTtRLSOH4z00T1UntQPj4dUmIYZgMj8qK77JbSX95hSw==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.3.tgz", + "integrity": "sha512-w4QIR9pEa1N4xMx3k30T1vLZl6udVK2RmNqrDXhBXX9L0mBj2a8ADs8zkbaEH7eUy1m30Wyr5EBgHN31Yq1JvA==", "dependencies": { - "browserslist": "^4.22.2", + "browserslist": "^4.23.0", "caniuse-api": "^3.0.0" }, "engines": { @@ -30154,9 +30201,9 @@ } }, "node_modules/socks": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.3.tgz", - "integrity": "sha512-vfuYK48HXCTFD03G/1/zkIls3Ebr2YNa4qU9gHDZdblHLiqhJrJGkY3+0Nx0JpN9qBhJbVObc1CNciT1bIZJxw==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.1.tgz", + "integrity": "sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==", "dev": true, "dependencies": { "ip-address": "^9.0.5", @@ -30817,11 +30864,11 @@ } }, "node_modules/stylehacks": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.2.tgz", - "integrity": "sha512-00zvJGnCu64EpMjX8b5iCZ3us2Ptyw8+toEkb92VdmkEaRaSGBNKAoK6aWZckhXxmQP8zWiTaFaiMGIU8Ve8sg==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.3.tgz", + "integrity": "sha512-KzBqjnqktc8/I0ERCb+lGq06giF/JxDbw2r9kEVhen9noHeIDRtMWUp9r62sOk+/2bbX6sFG1GhsS7ToXG0PEg==", "dependencies": { - "browserslist": "^4.22.2", + "browserslist": "^4.23.0", "postcss-selector-parser": "^6.0.15" }, "engines": { @@ -31504,9 +31551,9 @@ "dev": true }, "node_modules/tiny-invariant": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", - "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", "dev": true }, "node_modules/tmp": { diff --git a/package.json b/package.json index 5100935..2d772f2 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "@ngxs/logger-plugin": "^3.8.1", "@ngxs/router-plugin": "^3.8.1", "@ngxs/store": "^3.8.1", - "@nx/angular": "18.0.4", + "@nx/angular": "18.0.5", "appwrite": "^13.0.1", "ngx-translate-debug": "^0.1.4", "react": "^18.2.0", @@ -50,14 +50,14 @@ "@angular/language-service": "17.2.1", "@compodoc/compodoc": "^1.1.22", "@ngxs/devtools-plugin": "^3.8.1", - "@nx/cypress": "18.0.4", - "@nx/eslint": "18.0.4", - "@nx/eslint-plugin": "18.0.4", - "@nx/jest": "18.0.4", - "@nx/js": "18.0.4", - "@nx/storybook": "18.0.4", - "@nx/web": "18.0.4", - "@nx/workspace": "18.0.4", + "@nx/cypress": "18.0.5", + "@nx/eslint": "18.0.5", + "@nx/eslint-plugin": "18.0.5", + "@nx/jest": "18.0.5", + "@nx/js": "18.0.5", + "@nx/storybook": "18.0.5", + "@nx/web": "18.0.5", + "@nx/workspace": "18.0.5", "@schematics/angular": "17.2.0", "@storybook/addon-essentials": "7.6.17", "@storybook/addon-interactions": "7.6.17", @@ -82,7 +82,7 @@ "jest-preset-angular": "14.0.3", "jsonc-eslint-parser": "^2.1.0", "ng-packagr": "17.2.0", - "nx": "18.0.4", + "nx": "18.0.5", "postcss": "^8.4.31", "postcss-import": "16.0.1", "postcss-preset-env": "^9.2.0",