From 57942f0319258011dbf59089159c222c10873fbb Mon Sep 17 00:00:00 2001 From: Guillaume Fontorbe Date: Fri, 20 Feb 2026 13:27:18 +0100 Subject: [PATCH 1/8] Migrate sprotty protocol --- packages/sprotty-protocol/package.json | 11 ++++++++-- .../sprotty-protocol/src/action-handler.ts | 6 +++--- packages/sprotty-protocol/src/actions.ts | 8 ++++---- .../src/diagram-server.spec.ts | 8 ++++---- .../sprotty-protocol/src/diagram-server.ts | 12 +++++------ .../sprotty-protocol/src/diagram-services.ts | 8 ++++---- packages/sprotty-protocol/src/index.ts | 20 +++++++++---------- packages/sprotty-protocol/src/model.spec.ts | 4 ++-- packages/sprotty-protocol/src/model.ts | 4 ++-- .../sprotty-protocol/src/utils/async.spec.ts | 2 +- .../src/utils/geometry.spec.ts | 2 +- .../sprotty-protocol/src/utils/geometry.ts | 2 +- .../sprotty-protocol/src/utils/model-utils.ts | 4 ++-- tsconfig.json | 3 ++- 14 files changed, 51 insertions(+), 43 deletions(-) diff --git a/packages/sprotty-protocol/package.json b/packages/sprotty-protocol/package.json index e168f6f1..1bfabe51 100644 --- a/packages/sprotty-protocol/package.json +++ b/packages/sprotty-protocol/package.json @@ -1,6 +1,7 @@ { "name": "sprotty-protocol", "version": "1.4.0", + "type": "module", "description": "TypeScript declarations for Sprotty to be used both in browser and Node.js context", "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)", "keywords": [ @@ -35,6 +36,12 @@ "lib", "src" ], - "main": "lib/index", - "types": "lib/index" + "main": "lib/index.js", + "types": "lib/index.d.ts", + "exports": { + ".": { + "types": "./lib/index.d.ts", + "import": "./lib/index.js" + } + } } diff --git a/packages/sprotty-protocol/src/action-handler.ts b/packages/sprotty-protocol/src/action-handler.ts index 2e5180c5..33783a54 100644 --- a/packages/sprotty-protocol/src/action-handler.ts +++ b/packages/sprotty-protocol/src/action-handler.ts @@ -14,9 +14,9 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Action } from './actions'; -import { DiagramServer } from './diagram-server'; -import { DiagramState } from './diagram-services'; +import { Action } from './actions.js'; +import { DiagramServer } from './diagram-server.js'; +import { DiagramState } from './diagram-services.js'; export type ServerActionHandler = (action: A, state: DiagramState, server: DiagramServer) => void | Promise; diff --git a/packages/sprotty-protocol/src/actions.ts b/packages/sprotty-protocol/src/actions.ts index 1371b0bb..d4232118 100644 --- a/packages/sprotty-protocol/src/actions.ts +++ b/packages/sprotty-protocol/src/actions.ts @@ -14,10 +14,10 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { SModelRoot, SModelElement, Viewport } from './model'; -import { Bounds, Point, Dimension } from './utils/geometry'; -import { JsonAny, JsonMap } from './utils/json'; -import { hasOwnProperty } from './utils/object'; +import { SModelRoot, SModelElement, Viewport } from './model.js'; +import { Bounds, Point, Dimension } from './utils/geometry.js'; +import { JsonAny, JsonMap } from './utils/json.js'; +import { hasOwnProperty } from './utils/object.js'; /** * Wrapper for actions when transferring them between client and server. diff --git a/packages/sprotty-protocol/src/diagram-server.spec.ts b/packages/sprotty-protocol/src/diagram-server.spec.ts index 15aa6498..e615127a 100644 --- a/packages/sprotty-protocol/src/diagram-server.spec.ts +++ b/packages/sprotty-protocol/src/diagram-server.spec.ts @@ -15,10 +15,10 @@ ********************************************************************************/ import { expect, describe, it } from 'vitest'; -import { Action, ComputedBoundsAction, RequestBoundsAction, RequestModelAction, SetModelAction } from './actions'; -import { DiagramServer } from './diagram-server'; -import { BoundsAware, SModelRoot } from './model'; -import { ServerActionHandler, ServerActionHandlerRegistry } from './action-handler'; +import { Action, ComputedBoundsAction, RequestBoundsAction, RequestModelAction, SetModelAction } from './actions.js'; +import { DiagramServer } from './diagram-server.js'; +import { BoundsAware, SModelRoot } from './model.js'; +import { ServerActionHandler, ServerActionHandlerRegistry } from './action-handler.js'; declare function setImmediate(callback: () => void): void; diff --git a/packages/sprotty-protocol/src/diagram-server.ts b/packages/sprotty-protocol/src/diagram-server.ts index 945c7517..19c72adb 100644 --- a/packages/sprotty-protocol/src/diagram-server.ts +++ b/packages/sprotty-protocol/src/diagram-server.ts @@ -14,15 +14,15 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { ServerActionHandlerRegistry } from './action-handler'; +import { ServerActionHandlerRegistry } from './action-handler.js'; import { Action, isResponseAction, ResponseAction, RequestModelAction, ComputedBoundsAction, LayoutAction, RequestBoundsAction, RequestAction, generateRequestId, SetModelAction, UpdateModelAction, RejectAction, isRequestAction -} from './actions'; -import { DiagramServices, DiagramState, IDiagramGenerator, IModelLayoutEngine } from './diagram-services'; -import { SModelRoot } from './model'; -import { Deferred } from './utils/async'; -import { applyBounds, cloneModel } from './utils/model-utils'; +} from './actions.js'; +import { DiagramServices, DiagramState, IDiagramGenerator, IModelLayoutEngine } from './diagram-services.js'; +import { SModelRoot } from './model.js'; +import { Deferred } from './utils/async.js'; +import { applyBounds, cloneModel } from './utils/model-utils.js'; /** * An instance of this class is responsible for handling a single diagram client. It holds the current diff --git a/packages/sprotty-protocol/src/diagram-services.ts b/packages/sprotty-protocol/src/diagram-services.ts index 837bc51e..a99b4516 100644 --- a/packages/sprotty-protocol/src/diagram-services.ts +++ b/packages/sprotty-protocol/src/diagram-services.ts @@ -14,10 +14,10 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { ServerActionHandlerRegistry } from './action-handler'; -import { SModelRoot } from './model'; -import { JsonMap } from './utils/json'; -import { SModelIndex } from './utils/model-utils'; +import { ServerActionHandlerRegistry } from './action-handler.js'; +import { SModelRoot } from './model.js'; +import { JsonMap } from './utils/json.js'; +import { SModelIndex } from './utils/model-utils.js'; export type DiagramOptions = JsonMap; diff --git a/packages/sprotty-protocol/src/index.ts b/packages/sprotty-protocol/src/index.ts index fc4e5cce..35e792eb 100644 --- a/packages/sprotty-protocol/src/index.ts +++ b/packages/sprotty-protocol/src/index.ts @@ -14,13 +14,13 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -export * from './action-handler'; -export * from './actions'; -export * from './diagram-server'; -export * from './diagram-services'; -export * from './model'; -export * from './utils/async'; -export * from './utils/geometry'; -export * from './utils/json'; -export * from './utils/model-utils'; -export * from './utils/object'; +export * from './action-handler.js'; +export * from './actions.js'; +export * from './diagram-server.js'; +export * from './diagram-services.js'; +export * from './model.js'; +export * from './utils/async.js'; +export * from './utils/geometry.js'; +export * from './utils/json.js'; +export * from './utils/model-utils.js'; +export * from './utils/object.js'; diff --git a/packages/sprotty-protocol/src/model.spec.ts b/packages/sprotty-protocol/src/model.spec.ts index fd2b045a..dd611eb7 100644 --- a/packages/sprotty-protocol/src/model.spec.ts +++ b/packages/sprotty-protocol/src/model.spec.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { expect, describe, it } from 'vitest'; -import { SModelRoot } from './model'; -import { SModelIndex } from './utils/model-utils'; +import { SModelRoot } from './model.js'; +import { SModelIndex } from './utils/model-utils.js'; describe('SModelIndex', () => { it('returns the parent element for an external model', () => { diff --git a/packages/sprotty-protocol/src/model.ts b/packages/sprotty-protocol/src/model.ts index 0fabd586..4603ac5f 100644 --- a/packages/sprotty-protocol/src/model.ts +++ b/packages/sprotty-protocol/src/model.ts @@ -14,8 +14,8 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Bounds, Point, Dimension } from './utils/geometry'; -import { hasOwnProperty } from './utils/object'; +import { Bounds, Point, Dimension } from './utils/geometry.js'; +import { hasOwnProperty } from './utils/object.js'; /** * Base type for all elements of the diagram model. diff --git a/packages/sprotty-protocol/src/utils/async.spec.ts b/packages/sprotty-protocol/src/utils/async.spec.ts index 40c24055..5fa0e257 100644 --- a/packages/sprotty-protocol/src/utils/async.spec.ts +++ b/packages/sprotty-protocol/src/utils/async.spec.ts @@ -13,7 +13,7 @@ * * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Deferred } from "./async"; +import { Deferred } from "./async.js"; import { expect, describe, it } from 'vitest'; describe('Deferred', () => { diff --git a/packages/sprotty-protocol/src/utils/geometry.spec.ts b/packages/sprotty-protocol/src/utils/geometry.spec.ts index 6a32e93e..b15bc5aa 100644 --- a/packages/sprotty-protocol/src/utils/geometry.spec.ts +++ b/packages/sprotty-protocol/src/utils/geometry.spec.ts @@ -15,7 +15,7 @@ ********************************************************************************/ import { expect, describe, it } from 'vitest'; -import { almostEquals, Bounds, angleBetweenPoints, Point } from "./geometry"; +import { almostEquals, Bounds, angleBetweenPoints, Point } from "./geometry.js"; describe('almostEquals', () => { it('returns false for clearly different values', () => { diff --git a/packages/sprotty-protocol/src/utils/geometry.ts b/packages/sprotty-protocol/src/utils/geometry.ts index a6b9f926..b00a8cd3 100644 --- a/packages/sprotty-protocol/src/utils/geometry.ts +++ b/packages/sprotty-protocol/src/utils/geometry.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { hasOwnProperty } from "./object"; +import { hasOwnProperty } from "./object.js"; /** * A Point is composed of the (x,y) coordinates of an object. diff --git a/packages/sprotty-protocol/src/utils/model-utils.ts b/packages/sprotty-protocol/src/utils/model-utils.ts index 401f2cd5..c5bf23ff 100644 --- a/packages/sprotty-protocol/src/utils/model-utils.ts +++ b/packages/sprotty-protocol/src/utils/model-utils.ts @@ -14,8 +14,8 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Alignable, BoundsAware, SModelElement, SModelRoot } from '../model'; -import { ComputedBoundsAction } from '../actions'; +import { Alignable, BoundsAware, SModelElement, SModelRoot } from '../model.js'; +import { ComputedBoundsAction } from '../actions.js'; /** * Clone a given model. This function requires that the model is serializable, so it's diff --git a/tsconfig.json b/tsconfig.json index 65164817..ff13ad42 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,8 @@ "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { "target": "ES2017", - "module": "commonjs", + "module": "Node16", + "moduleResolution": "Node16", "lib": [ "ES2017", "DOM" From e858ff66b1dc8cd3b2a11422352a992a07850267 Mon Sep 17 00:00:00 2001 From: Guillaume Fontorbe Date: Fri, 20 Feb 2026 15:12:54 +0100 Subject: [PATCH 2/8] Migrate sprotty-elk --- packages/sprotty-elk/package.json | 11 +++++++++-- packages/sprotty-elk/src/elk-layout.spec.ts | 8 ++++---- packages/sprotty-elk/src/elk-layout.ts | 16 ++++++++++------ packages/sprotty-elk/src/index.ts | 2 +- packages/sprotty-elk/src/inversify.ts | 2 +- packages/sprotty-elk/src/node/index.ts | 6 +++--- packages/sprotty-elk/src/node/layout-data.ts | 2 +- packages/sprotty-elk/src/node/socket-server.ts | 6 +++--- packages/sprotty-elk/src/node/stdio-server.ts | 6 +++--- 9 files changed, 35 insertions(+), 24 deletions(-) diff --git a/packages/sprotty-elk/package.json b/packages/sprotty-elk/package.json index 8ae804f5..d8d9dc9d 100644 --- a/packages/sprotty-elk/package.json +++ b/packages/sprotty-elk/package.json @@ -1,6 +1,7 @@ { "name": "sprotty-elk", "version": "1.4.0", + "type": "module", "description": "Integration of ELK graph layout algorithms in Sprotty", "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)", "keywords": [ @@ -41,6 +42,12 @@ "lib", "src" ], - "main": "lib/index", - "types": "lib/index" + "main": "lib/index.js", + "types": "lib/index.d.ts", + "exports": { + ".": { + "types": "./lib/index.d.ts", + "import": "./lib/index.js" + } + } } diff --git a/packages/sprotty-elk/src/elk-layout.spec.ts b/packages/sprotty-elk/src/elk-layout.spec.ts index 15d473f2..00b19833 100644 --- a/packages/sprotty-elk/src/elk-layout.spec.ts +++ b/packages/sprotty-elk/src/elk-layout.spec.ts @@ -17,15 +17,15 @@ import 'reflect-metadata'; import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; -import ElkConstructor from 'elkjs/lib/elk.bundled'; -import { SCompartment, SEdge, SGraph, SNode, SPort } from 'sprotty-protocol/lib/model'; -import { ElkFactory, ElkLayoutEngine, ILayoutPreprocessor, elkLayoutModule } from './inversify'; +import Elk from 'elkjs'; +import { SCompartment, SEdge, SGraph, SNode, SPort } from 'sprotty-protocol'; +import { ElkFactory, ElkLayoutEngine, ILayoutPreprocessor, elkLayoutModule } from './inversify.js'; describe('ElkLayoutEngine', () => { function createContainer() { const container = new Container(); container.load(elkLayoutModule); - container.bind(ElkFactory).toConstantValue(() => new ElkConstructor({ + container.bind(ElkFactory).toConstantValue(() => new Elk.default({ algorithms: ['layered'] })); return container; diff --git a/packages/sprotty-elk/src/elk-layout.ts b/packages/sprotty-elk/src/elk-layout.ts index e1199510..93e3495e 100644 --- a/packages/sprotty-elk/src/elk-layout.ts +++ b/packages/sprotty-elk/src/elk-layout.ts @@ -15,12 +15,16 @@ ********************************************************************************/ import { - ELK, ElkNode, ElkLabel, ElkPort, ElkShape, ElkExtendedEdge, LayoutOptions, ElkPrimitiveEdge -} from 'elkjs/lib/elk-api'; -import { IModelLayoutEngine } from 'sprotty-protocol/lib/diagram-services'; -import { SCompartment, SEdge, SGraph, SLabel, SModelElement, SNode, SPort, SShapeElement } from 'sprotty-protocol/lib/model'; -import { Point } from 'sprotty-protocol/lib/utils/geometry'; -import { getBasicType, SModelIndex } from 'sprotty-protocol/lib/utils/model-utils'; + ELK, + ElkExtendedEdge, + ElkLabel, + ElkNode, + ElkPort, + ElkPrimitiveEdge, + ElkShape, + LayoutOptions +} from 'elkjs'; +import { getBasicType, IModelLayoutEngine, Point, SCompartment, SEdge, SGraph, SLabel, SModelElement, SModelIndex, SNode, SPort, SShapeElement } from 'sprotty-protocol'; /** * Layout engine that delegates to ELK by transforming the Sprotty graph into an ELK graph. diff --git a/packages/sprotty-elk/src/index.ts b/packages/sprotty-elk/src/index.ts index 2f981c8e..ab7797c5 100644 --- a/packages/sprotty-elk/src/index.ts +++ b/packages/sprotty-elk/src/index.ts @@ -16,4 +16,4 @@ // By default we export the Inversify-ready version. If you want to use the plain // version, import from `sprotty-elk/lib/elk-layout`. -export * from './inversify'; +export * from './inversify.js'; diff --git a/packages/sprotty-elk/src/inversify.ts b/packages/sprotty-elk/src/inversify.ts index 421ab2bc..b1a5ee3f 100644 --- a/packages/sprotty-elk/src/inversify.ts +++ b/packages/sprotty-elk/src/inversify.ts @@ -20,7 +20,7 @@ import { DefaultLayoutConfigurator as DefaultLayoutConfiguratorPlain, ElkFactory as ElkFactoryPlain, IElementFilter as IElementFilterPlain, ILayoutConfigurator as ILayoutConfiguratorPlain, ILayoutPreprocessor as ILayoutPreprocessorPlain, ILayoutPostprocessor as ILayoutPostprocessorPlain -} from './elk-layout'; +} from './elk-layout.js'; export const ElkLayoutEngine: typeof ElkLayoutEnginePlain = injectable()(ElkLayoutEnginePlain); diff --git a/packages/sprotty-elk/src/node/index.ts b/packages/sprotty-elk/src/node/index.ts index c6960e5e..580af188 100644 --- a/packages/sprotty-elk/src/node/index.ts +++ b/packages/sprotty-elk/src/node/index.ts @@ -14,6 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -export * from './layout-data'; -export * from './socket-server'; -export * from './stdio-server'; +export * from './layout-data.js'; +export * from './socket-server.js'; +export * from './stdio-server.js'; diff --git a/packages/sprotty-elk/src/node/layout-data.ts b/packages/sprotty-elk/src/node/layout-data.ts index 16f80217..6db21c49 100644 --- a/packages/sprotty-elk/src/node/layout-data.ts +++ b/packages/sprotty-elk/src/node/layout-data.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { ElkExtendedEdge, ElkNode, ElkPrimitiveEdge, ElkShape } from 'elkjs/lib/elk-api'; +import { ElkExtendedEdge, ElkNode, ElkPrimitiveEdge, ElkShape } from 'elkjs'; import { Dimension, Point } from 'sprotty-protocol'; /** diff --git a/packages/sprotty-elk/src/node/socket-server.ts b/packages/sprotty-elk/src/node/socket-server.ts index 6ca519c7..ba9b6e56 100644 --- a/packages/sprotty-elk/src/node/socket-server.ts +++ b/packages/sprotty-elk/src/node/socket-server.ts @@ -17,8 +17,8 @@ import { Socket } from 'net'; import { ELK, ElkLayoutAlgorithmDescription, ElkLayoutCategoryDescription, ElkLayoutOptionDescription, ElkNode -} from 'elkjs/lib/elk-api'; -import { applyLayoutData, findObjectEnd, isError, LayoutData, ParseState } from './layout-data'; +} from 'elkjs/lib/elk-api.js'; +import { applyLayoutData, findObjectEnd, isError, LayoutData, ParseState } from './layout-data.js'; const DEFAULT_PORT = 5008; const DEFAULT_TIMEOUT = 10_000; @@ -70,7 +70,7 @@ export class SocketElkServer implements ELK { socket.removeListener('close', closeCallback); socket.removeListener('data', dataCallback); try { - const response = JSON.parse(Buffer.concat(buffers).toString()) as LayoutData | Error; + const response = JSON.parse(Buffer.concat(buffers as Uint8Array[]).toString()) as LayoutData | Error; if (isError(response)) { // The layout server responded an error reject(response); diff --git a/packages/sprotty-elk/src/node/stdio-server.ts b/packages/sprotty-elk/src/node/stdio-server.ts index 377bedbc..a0daa644 100644 --- a/packages/sprotty-elk/src/node/stdio-server.ts +++ b/packages/sprotty-elk/src/node/stdio-server.ts @@ -17,8 +17,8 @@ import { spawn, ChildProcess } from 'child_process'; import { ELK, ElkLayoutAlgorithmDescription, ElkLayoutCategoryDescription, ElkLayoutOptionDescription, ElkNode -} from 'elkjs/lib/elk-api'; -import { applyLayoutData, findObjectEnd, isError, LayoutData, ParseState } from './layout-data'; +} from 'elkjs'; +import { applyLayoutData, findObjectEnd, isError, LayoutData, ParseState } from './layout-data.js'; const DEFAULT_TIMEOUT = 10_000; @@ -79,7 +79,7 @@ export class StdioElkServer implements ELK { process.stdout?.removeListener('data', dataCallback); process.stdin?.removeListener('error', reject); try { - const response = JSON.parse(Buffer.concat(buffers).toString()) as LayoutData | Error; + const response = JSON.parse(Buffer.concat(buffers as Uint8Array[]).toString()) as LayoutData | Error; if (isError(response)) { // The layout server responded an error reject(response); From ef23ac1233f6be344215ab49dc0d5ab019309bda Mon Sep 17 00:00:00 2001 From: Guillaume Fontorbe Date: Fri, 20 Feb 2026 15:13:09 +0100 Subject: [PATCH 3/8] Migrate sprotty --- packages/sprotty/package.json | 12 +- .../base/actions/action-dispatcher.spec.ts | 24 +- .../src/base/actions/action-dispatcher.ts | 21 +- .../src/base/actions/action-handler.ts | 8 +- packages/sprotty/src/base/actions/action.ts | 2 +- .../src/base/actions/diagram-locker.ts | 2 +- .../sprotty/src/base/animations/animation.ts | 6 +- .../src/base/animations/easing.spec.ts | 4 +- .../commands/command-registration.spec.ts | 16 +- .../src/base/commands/command-registration.ts | 12 +- .../base/commands/command-stack-options.ts | 4 +- .../src/base/commands/command-stack.spec.ts | 20 +- .../src/base/commands/command-stack.ts | 27 +- packages/sprotty/src/base/commands/command.ts | 15 +- .../src/base/commands/request-command.ts | 10 +- packages/sprotty/src/base/di.config.ts | 50 +-- .../base/features/initialize-canvas.spec.ts | 8 +- .../src/base/features/initialize-canvas.ts | 17 +- .../src/base/features/set-model.spec.ts | 20 +- .../sprotty/src/base/features/set-model.ts | 10 +- .../src/base/model/smodel-factory.spec.ts | 21 +- .../sprotty/src/base/model/smodel-factory.ts | 10 +- .../sprotty/src/base/model/smodel-utils.ts | 8 +- .../sprotty/src/base/model/smodel.spec.ts | 4 +- packages/sprotty/src/base/model/smodel.ts | 5 +- .../ui-extensions/ui-extension-registry.ts | 10 +- .../src/base/ui-extensions/ui-extension.ts | 8 +- .../views/css-class-postprocessor.spec.tsx | 8 +- .../src/base/views/css-class-postprocessor.ts | 10 +- packages/sprotty/src/base/views/dom-helper.ts | 6 +- .../src/base/views/id-postprocessor.ts | 12 +- packages/sprotty/src/base/views/key-tool.ts | 12 +- packages/sprotty/src/base/views/mouse-tool.ts | 15 +- .../sprotty/src/base/views/pointer-tool.ts | 14 +- .../src/base/views/thunk-view.spec.tsx | 10 +- packages/sprotty/src/base/views/thunk-view.ts | 4 +- packages/sprotty/src/base/views/touch-tool.ts | 14 +- packages/sprotty/src/base/views/view.spec.ts | 19 +- packages/sprotty/src/base/views/view.tsx | 16 +- .../sprotty/src/base/views/viewer-cache.ts | 10 +- .../sprotty/src/base/views/viewer-options.ts | 6 +- packages/sprotty/src/base/views/viewer.tsx | 28 +- .../src/base/views/vnode-postprocessor.ts | 6 +- .../src/features/bounds/abstract-layout.ts | 13 +- .../features/bounds/bounds-manipulation.ts | 12 +- .../bounds/bounds-manipulations.spec.ts | 18 +- .../sprotty/src/features/bounds/di.config.ts | 16 +- .../src/features/bounds/hbox-layout.spec.ts | 20 +- .../src/features/bounds/hbox-layout.ts | 15 +- .../features/bounds/hidden-bounds-updater.ts | 19 +- .../src/features/bounds/layout-options.ts | 2 +- .../sprotty/src/features/bounds/layout.ts | 16 +- .../sprotty/src/features/bounds/model.spec.ts | 6 +- packages/sprotty/src/features/bounds/model.ts | 13 +- .../sprotty/src/features/bounds/resize.ts | 10 +- .../src/features/bounds/stack-layout.spec.ts | 20 +- .../src/features/bounds/stack-layout.ts | 15 +- .../src/features/bounds/vbox-layout.spec.ts | 22 +- .../src/features/bounds/vbox-layout.ts | 15 +- .../sprotty/src/features/bounds/views.spec.ts | 10 +- packages/sprotty/src/features/bounds/views.ts | 8 +- .../src/features/button/button-handler.ts | 10 +- .../sprotty/src/features/button/di.config.ts | 2 +- packages/sprotty/src/features/button/model.ts | 4 +- .../command-palette/action-providers.ts | 15 +- .../command-palette/command-palette.ts | 39 +- .../src/features/command-palette/di.config.ts | 6 +- .../context-menu/context-menu-service.ts | 2 +- .../src/features/context-menu/di.config.ts | 8 +- .../context-menu/menu-providers.spec.ts | 4 +- .../features/context-menu/menu-providers.ts | 15 +- .../features/context-menu/mouse-listener.ts | 18 +- .../features/decoration/decoration-placer.ts | 16 +- .../src/features/decoration/di.config.ts | 10 +- .../sprotty/src/features/decoration/model.ts | 8 +- .../sprotty/src/features/decoration/views.tsx | 10 +- .../features/edge-intersection/di.config.ts | 4 +- .../intersection-finder.spec.ts | 6 +- .../edge-intersection/intersection-finder.ts | 8 +- .../features/edge-intersection/sweepline.ts | 14 +- .../src/features/edge-junction/di.config.ts | 6 +- .../edge-junction/junction-finder.spec.ts | 6 +- .../features/edge-junction/junction-finder.ts | 6 +- .../edge-junction/junction-postprocessor.ts | 10 +- .../src/features/edge-layout/di.config.ts | 4 +- .../src/features/edge-layout/edge-layout.ts | 27 +- .../sprotty/src/features/edge-layout/model.ts | 8 +- .../src/features/edit/create-on-drag.ts | 4 +- packages/sprotty/src/features/edit/create.ts | 8 +- packages/sprotty/src/features/edit/delete.ts | 8 +- .../sprotty/src/features/edit/di.config.ts | 22 +- .../src/features/edit/edit-label-ui.ts | 32 +- .../sprotty/src/features/edit/edit-label.ts | 20 +- .../sprotty/src/features/edit/edit-routing.ts | 15 +- packages/sprotty/src/features/edit/model.ts | 6 +- .../sprotty/src/features/edit/reconnect.ts | 10 +- .../sprotty/src/features/expand/di.config.ts | 4 +- .../sprotty/src/features/expand/expand.ts | 10 +- packages/sprotty/src/features/expand/model.ts | 2 +- .../sprotty/src/features/expand/views.tsx | 12 +- .../sprotty/src/features/export/di.config.ts | 8 +- .../src/features/export/export.spec.ts | 23 +- .../sprotty/src/features/export/export.ts | 26 +- packages/sprotty/src/features/export/model.ts | 2 +- .../export/svg-export-postprocessor.ts | 2 +- .../src/features/export/svg-exporter.ts | 17 +- .../sprotty/src/features/fade/di.config.ts | 4 +- packages/sprotty/src/features/fade/fade.ts | 14 +- packages/sprotty/src/features/fade/model.ts | 2 +- .../sprotty/src/features/hover/di.config.ts | 25 +- .../sprotty/src/features/hover/hover.spec.ts | 19 +- packages/sprotty/src/features/hover/hover.ts | 27 +- packages/sprotty/src/features/hover/model.ts | 2 +- .../features/hover/popup-position-updater.ts | 8 +- .../sprotty/src/features/move/di.config.ts | 6 +- packages/sprotty/src/features/move/model.ts | 5 +- .../sprotty/src/features/move/move.spec.ts | 24 +- packages/sprotty/src/features/move/move.ts | 46 ++- packages/sprotty/src/features/move/snap.ts | 6 +- .../sprotty/src/features/nameable/model.ts | 2 +- .../sprotty/src/features/open/di.config.ts | 4 +- packages/sprotty/src/features/open/model.ts | 2 +- packages/sprotty/src/features/open/open.ts | 10 +- .../sprotty/src/features/projection/model.ts | 10 +- .../sprotty/src/features/projection/views.tsx | 14 +- .../features/routing/abstract-edge-router.ts | 22 +- .../sprotty/src/features/routing/anchor.ts | 8 +- .../src/features/routing/bezier-anchors.ts | 6 +- .../features/routing/bezier-edge-router.ts | 21 +- .../sprotty/src/features/routing/di.config.ts | 20 +- .../src/features/routing/manhattan-anchors.ts | 10 +- .../features/routing/manhattan-edge-router.ts | 12 +- .../src/features/routing/model.spec.ts | 10 +- .../sprotty/src/features/routing/model.ts | 17 +- .../src/features/routing/polyline-anchors.ts | 10 +- .../features/routing/polyline-edge-router.ts | 13 +- .../sprotty/src/features/routing/routing.ts | 18 +- .../src/features/routing/views.spec.ts | 12 +- .../sprotty/src/features/routing/views.ts | 6 +- .../sprotty/src/features/select/di.config.ts | 6 +- packages/sprotty/src/features/select/model.ts | 2 +- .../src/features/select/select.spec.ts | 24 +- .../sprotty/src/features/select/select.ts | 42 +- .../src/features/undo-redo/di.config.ts | 4 +- .../src/features/undo-redo/undo-redo.ts | 10 +- .../sprotty/src/features/update/di.config.ts | 4 +- .../features/update/model-matching.spec.ts | 4 +- .../src/features/update/model-matching.ts | 5 +- .../src/features/update/update-model.spec.ts | 42 +- .../src/features/update/update-model.ts | 40 +- .../src/features/viewport/center-fit.ts | 27 +- .../src/features/viewport/di.config.ts | 12 +- .../sprotty/src/features/viewport/model.ts | 7 +- .../sprotty/src/features/viewport/scroll.ts | 28 +- .../src/features/viewport/viewport-root.ts | 11 +- .../src/features/viewport/viewport.spec.ts | 24 +- .../sprotty/src/features/viewport/viewport.ts | 20 +- .../sprotty/src/features/viewport/zoom.ts | 20 +- .../sprotty/src/features/zorder/di.config.ts | 4 +- .../src/features/zorder/zorder.spec.ts | 18 +- .../sprotty/src/features/zorder/zorder.ts | 12 +- packages/sprotty/src/graph/sgraph.spec.ts | 18 +- packages/sprotty/src/graph/sgraph.ts | 32 +- packages/sprotty/src/graph/views.spec.tsx | 62 +-- packages/sprotty/src/graph/views.tsx | 25 +- packages/sprotty/src/index.ts | 360 +++++++++--------- packages/sprotty/src/lib/generic-views.tsx | 12 +- packages/sprotty/src/lib/html-views.tsx | 8 +- packages/sprotty/src/lib/jsx.spec.tsx | 2 +- packages/sprotty/src/lib/model.ts | 15 +- packages/sprotty/src/lib/modules.ts | 42 +- packages/sprotty/src/lib/svg-views.tsx | 21 +- packages/sprotty/src/lib/virtualize.spec.ts | 2 +- .../sprotty/src/model-source/commit-model.ts | 11 +- .../sprotty/src/model-source/di.config.ts | 8 +- .../src/model-source/diagram-server.ts | 34 +- .../model-source/local-model-source.spec.ts | 38 +- .../src/model-source/local-model-source.ts | 38 +- packages/sprotty/src/model-source/logging.ts | 10 +- .../sprotty/src/model-source/model-source.ts | 15 +- .../sprotty/src/model-source/websocket.ts | 4 +- packages/sprotty/src/utils/geometry.spec.ts | 4 +- packages/sprotty/src/utils/iterable.spec.ts | 2 +- packages/sprotty/src/utils/keyboard.ts | 2 +- packages/sprotty/src/utils/logging.ts | 4 +- packages/sprotty/src/utils/registry.spec.ts | 2 +- 186 files changed, 1430 insertions(+), 1413 deletions(-) diff --git a/packages/sprotty/package.json b/packages/sprotty/package.json index 831bee34..1096df7d 100644 --- a/packages/sprotty/package.json +++ b/packages/sprotty/package.json @@ -1,6 +1,7 @@ { "name": "sprotty", "version": "1.4.0", + "type": "module", "description": "A next-gen framework for graphical views", "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)", "keywords": [ @@ -49,6 +50,13 @@ "css", "src" ], - "main": "lib/index", - "types": "lib/index" + "main": "lib/index.js", + "types": "lib/index.d.ts", + "exports": { + ".": { + "types": "./lib/index.d.ts", + "import": "./lib/index.js" + }, + "./lib/*": "./lib/*" + } } diff --git a/packages/sprotty/src/base/actions/action-dispatcher.spec.ts b/packages/sprotty/src/base/actions/action-dispatcher.spec.ts index f56326ba..a85538f2 100644 --- a/packages/sprotty/src/base/actions/action-dispatcher.spec.ts +++ b/packages/sprotty/src/base/actions/action-dispatcher.spec.ts @@ -14,19 +14,19 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; -import { expect, describe, it } from 'vitest';; import { Container, injectable, interfaces } from "inversify"; -import { Action, RedoAction, RejectAction, RequestModelAction, SetModelAction, UndoAction } from 'sprotty-protocol/lib/actions'; -import { Bounds } from 'sprotty-protocol/lib/utils/geometry'; -import { TYPES } from "../types"; -import { InitializeCanvasBoundsAction } from '../features/initialize-canvas'; -import { Command, CommandExecutionContext, CommandReturn, ICommand } from '../commands/command'; -import { ICommandStack } from "../commands/command-stack"; -import { ActionDispatcher } from "./action-dispatcher"; -import defaultModule from "../di.config"; -import { EMPTY_ROOT } from '../model/smodel-factory'; -import { IActionHandler, configureActionHandler } from './action-handler'; +import 'reflect-metadata'; +import { Action, Bounds, RedoAction, RejectAction, RequestModelAction, SetModelAction, UndoAction } from 'sprotty-protocol'; +import { describe, expect, it } from 'vitest'; +import { ICommandStack } from "../commands/command-stack.js"; +import { Command, CommandExecutionContext, CommandReturn, ICommand } from '../commands/command.js'; +import defaultModule from "../di.config.js"; +import { InitializeCanvasBoundsAction } from '../features/initialize-canvas.js'; +import { EMPTY_ROOT } from '../model/smodel-factory.js'; +import { TYPES } from "../types.js"; +import { ActionDispatcher } from "./action-dispatcher.js"; +import { IActionHandler, configureActionHandler } from './action-handler.js'; +; describe('ActionDispatcher', () => { @injectable() diff --git a/packages/sprotty/src/base/actions/action-dispatcher.ts b/packages/sprotty/src/base/actions/action-dispatcher.ts index 7022e4d7..82bd128b 100644 --- a/packages/sprotty/src/base/actions/action-dispatcher.ts +++ b/packages/sprotty/src/base/actions/action-dispatcher.ts @@ -16,17 +16,18 @@ import { inject, injectable } from 'inversify'; import { - Action, isAction, isRequestAction, isResponseAction, RedoAction, RejectAction, RequestAction, + Action, + Deferred, + isAction, isRequestAction, isResponseAction, RedoAction, RejectAction, RequestAction, ResponseAction, SetModelAction, setRequestContext, UndoAction -} from 'sprotty-protocol/lib/actions'; -import { Deferred } from 'sprotty-protocol/lib/utils/async'; -import { TYPES } from '../types'; -import { ILogger } from '../../utils/logging'; -import { EMPTY_ROOT } from '../model/smodel-factory'; -import { ICommandStack } from '../commands/command-stack'; -import { AnimationFrameSyncer } from '../animations/animation-frame-syncer'; -import { ActionHandlerRegistry } from './action-handler'; -import { IDiagramLocker } from './diagram-locker'; +} from 'sprotty-protocol'; +import { ILogger } from '../../utils/logging.js'; +import { AnimationFrameSyncer } from '../animations/animation-frame-syncer.js'; +import { ICommandStack } from '../commands/command-stack.js'; +import { EMPTY_ROOT } from '../model/smodel-factory.js'; +import { TYPES } from '../types.js'; +import { ActionHandlerRegistry } from './action-handler.js'; +import { IDiagramLocker } from './diagram-locker.js'; export interface IActionDispatcher { dispatch(action: Action): Promise diff --git a/packages/sprotty/src/base/actions/action-handler.ts b/packages/sprotty/src/base/actions/action-handler.ts index 76cd3e69..61600b7f 100644 --- a/packages/sprotty/src/base/actions/action-handler.ts +++ b/packages/sprotty/src/base/actions/action-handler.ts @@ -15,10 +15,10 @@ ********************************************************************************/ import { injectable, multiInject, optional, interfaces } from "inversify"; -import { TYPES } from "../types"; -import { MultiInstanceRegistry } from "../../utils/registry"; -import { isInjectable } from "../../utils/inversify"; -import { ICommand } from "../commands/command"; +import { TYPES } from "../types.js"; +import { MultiInstanceRegistry } from "../../utils/registry.js"; +import { isInjectable } from "../../utils/inversify.js"; +import { ICommand } from "../commands/command.js"; import { Action } from "sprotty-protocol"; /** diff --git a/packages/sprotty/src/base/actions/action.ts b/packages/sprotty/src/base/actions/action.ts index 64bfbe8a..2d1108ed 100644 --- a/packages/sprotty/src/base/actions/action.ts +++ b/packages/sprotty/src/base/actions/action.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Action } from 'sprotty-protocol/lib/actions'; +import { Action } from 'sprotty-protocol'; /** * A list of actions with a label. diff --git a/packages/sprotty/src/base/actions/diagram-locker.ts b/packages/sprotty/src/base/actions/diagram-locker.ts index 60e55a7c..835aecd0 100644 --- a/packages/sprotty/src/base/actions/diagram-locker.ts +++ b/packages/sprotty/src/base/actions/diagram-locker.ts @@ -15,7 +15,7 @@ ********************************************************************************/ import { injectable } from "inversify"; -import { Action } from "sprotty-protocol/lib/actions"; +import { Action } from "sprotty-protocol"; /** * Allows to lock the diagram by preventing certain actions from being diff --git a/packages/sprotty/src/base/animations/animation.ts b/packages/sprotty/src/base/animations/animation.ts index 663777d5..7dc9f057 100644 --- a/packages/sprotty/src/base/animations/animation.ts +++ b/packages/sprotty/src/base/animations/animation.ts @@ -14,9 +14,9 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { CommandExecutionContext } from "../commands/command"; -import { SModelRootImpl } from "../model/smodel"; -import { easeInOut } from "./easing"; +import { CommandExecutionContext } from "../commands/command.js"; +import { SModelRootImpl } from "../model/smodel.js"; +import { easeInOut } from "./easing.js"; /** * An animation uses the rendering loop of the browser to smoothly diff --git a/packages/sprotty/src/base/animations/easing.spec.ts b/packages/sprotty/src/base/animations/easing.spec.ts index 85385299..03aa8375 100644 --- a/packages/sprotty/src/base/animations/easing.spec.ts +++ b/packages/sprotty/src/base/animations/easing.spec.ts @@ -14,8 +14,8 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { expect, describe, it } from 'vitest'; -import { easeInOut } from "./easing"; +import { describe, expect, it } from 'vitest'; +import { easeInOut } from "./easing.js"; describe('easing', () => { it('test in/out', () => { diff --git a/packages/sprotty/src/base/commands/command-registration.spec.ts b/packages/sprotty/src/base/commands/command-registration.spec.ts index 2cd44761..c5a624e8 100644 --- a/packages/sprotty/src/base/commands/command-registration.spec.ts +++ b/packages/sprotty/src/base/commands/command-registration.spec.ts @@ -14,16 +14,16 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ +import { Container, inject, injectable } from "inversify"; import "reflect-metadata"; -import { expect, describe, it } from 'vitest'; -import { Container, injectable, inject } from "inversify"; -import { TYPES } from "../types"; -import { configureCommand, CommandActionHandlerInitializer } from "./command-registration"; -import { SetModelCommand } from "../features/set-model"; -import { ActionHandlerRegistry } from "../actions/action-handler"; -import { EMPTY_ROOT } from "../model/smodel-factory"; -import { Command, CommandResult } from "./command"; import { SetModelAction } from "sprotty-protocol"; +import { describe, expect, it } from 'vitest'; +import { ActionHandlerRegistry } from "../actions/action-handler.js"; +import { SetModelCommand } from "../features/set-model.js"; +import { EMPTY_ROOT } from "../model/smodel-factory.js"; +import { TYPES } from "../types.js"; +import { CommandActionHandlerInitializer, configureCommand } from "./command-registration.js"; +import { Command, CommandResult } from "./command.js"; const MySymbol = Symbol('MySymbol'); diff --git a/packages/sprotty/src/base/commands/command-registration.ts b/packages/sprotty/src/base/commands/command-registration.ts index b718b1e6..bb1d7de2 100644 --- a/packages/sprotty/src/base/commands/command-registration.ts +++ b/packages/sprotty/src/base/commands/command-registration.ts @@ -14,12 +14,12 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { injectable, multiInject, optional, interfaces, Container } from "inversify"; -import { Action } from "sprotty-protocol/lib/actions"; -import { isInjectable } from "../../utils/inversify"; -import { ActionHandlerRegistry, IActionHandler, IActionHandlerInitializer } from "../actions/action-handler"; -import { ICommand } from "./command"; -import { TYPES } from "../types"; +import { Container, injectable, interfaces, multiInject, optional } from "inversify"; +import { Action } from "sprotty-protocol"; +import { isInjectable } from "../../utils/inversify.js"; +import { ActionHandlerRegistry, IActionHandler, IActionHandlerInitializer } from "../actions/action-handler.js"; +import { TYPES } from "../types.js"; +import { ICommand } from "./command.js"; export class CommandActionHandler implements IActionHandler { constructor(private commandRegistration: CommandRegistration) { diff --git a/packages/sprotty/src/base/commands/command-stack-options.ts b/packages/sprotty/src/base/commands/command-stack-options.ts index bf43b6ac..ca924571 100644 --- a/packages/sprotty/src/base/commands/command-stack-options.ts +++ b/packages/sprotty/src/base/commands/command-stack-options.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { Container, interfaces } from 'inversify'; -import { safeAssign } from 'sprotty-protocol/lib/utils/object'; -import { TYPES } from '../types'; +import { safeAssign } from 'sprotty-protocol'; +import { TYPES } from '../types.js'; /** * Options for the command execution diff --git a/packages/sprotty/src/base/commands/command-stack.spec.ts b/packages/sprotty/src/base/commands/command-stack.spec.ts index a74e78b2..77c21e2e 100644 --- a/packages/sprotty/src/base/commands/command-stack.spec.ts +++ b/packages/sprotty/src/base/commands/command-stack.spec.ts @@ -14,16 +14,20 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import "reflect-metadata"; -import { expect, describe, it } from 'vitest'; import { Container, injectable } from "inversify"; -import { TYPES } from "../types"; -import defaultModule from "../di.config"; -import { IViewerProvider } from "../views/viewer"; +import "reflect-metadata"; +import { describe, expect, it } from 'vitest'; +import defaultModule from "../di.config.js"; +import { TYPES } from "../types.js"; +import { IViewerProvider } from "../views/viewer.js"; +import { ICommandStack } from "./command-stack.js"; import { - Command, HiddenCommand, SystemCommand, CommandExecutionContext, CommandReturn, MergeableCommand, PopupCommand -} from './command'; -import { ICommandStack } from "./command-stack"; + Command, + CommandExecutionContext, CommandReturn, + HiddenCommand, + MergeableCommand, PopupCommand, + SystemCommand +} from './command.js'; let operations: string[] = []; diff --git a/packages/sprotty/src/base/commands/command-stack.ts b/packages/sprotty/src/base/commands/command-stack.ts index 2b0b4022..31b59691 100644 --- a/packages/sprotty/src/base/commands/command-stack.ts +++ b/packages/sprotty/src/base/commands/command-stack.ts @@ -15,18 +15,23 @@ ********************************************************************************/ import { inject, injectable, postConstruct } from "inversify"; -import { Action } from "sprotty-protocol/lib/actions"; -import { TYPES } from "../types"; -import { ILogger } from "../../utils/logging"; -import { EMPTY_ROOT, IModelFactory } from "../model/smodel-factory"; -import { SModelRootImpl } from "../model/smodel"; -import { AnimationFrameSyncer } from "../animations/animation-frame-syncer"; -import { IViewer, IViewerProvider } from "../views/viewer"; -import { CommandStackOptions } from './command-stack-options'; +import { Action } from "sprotty-protocol"; +import { ILogger } from "../../utils/logging.js"; +import { AnimationFrameSyncer } from "../animations/animation-frame-syncer.js"; +import { EMPTY_ROOT, IModelFactory } from "../model/smodel-factory.js"; +import { SModelRootImpl } from "../model/smodel.js"; +import { TYPES } from "../types.js"; +import { IViewer, IViewerProvider } from "../views/viewer.js"; +import { CommandStackOptions } from './command-stack-options.js'; import { - HiddenCommand, ICommand, CommandExecutionContext, CommandReturn, SystemCommand, - MergeableCommand, PopupCommand, ResetCommand, CommandResult, isStoppableCommand, IStoppableCommand -} from './command'; + CommandExecutionContext, + CommandResult, + CommandReturn, + HiddenCommand, ICommand, + isStoppableCommand, IStoppableCommand, + MergeableCommand, PopupCommand, ResetCommand, + SystemCommand +} from './command.js'; /** * The component that holds the current model and applies the commands diff --git a/packages/sprotty/src/base/commands/command.ts b/packages/sprotty/src/base/commands/command.ts index 950254e5..64272504 100644 --- a/packages/sprotty/src/base/commands/command.ts +++ b/packages/sprotty/src/base/commands/command.ts @@ -14,15 +14,14 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; import { injectable } from "inversify"; -import { Action } from "sprotty-protocol/lib/actions"; -import { ILogger } from "../../utils/logging"; -import { AnimationFrameSyncer } from "../animations/animation-frame-syncer"; -import { SModelRootImpl } from "../model/smodel"; -import { IModelFactory } from "../model/smodel-factory"; -import { IViewer } from "../views/viewer"; -import { hasOwnProperty } from 'sprotty-protocol'; +import 'reflect-metadata'; +import { Action, hasOwnProperty } from "sprotty-protocol"; +import { ILogger } from "../../utils/logging.js"; +import { AnimationFrameSyncer } from "../animations/animation-frame-syncer.js"; +import { IModelFactory } from "../model/smodel-factory.js"; +import { SModelRootImpl } from "../model/smodel.js"; +import { IViewer } from "../views/viewer.js"; /** * A command holds the behaviour of an action. diff --git a/packages/sprotty/src/base/commands/request-command.ts b/packages/sprotty/src/base/commands/request-command.ts index 40d8e4dd..cab72fc5 100644 --- a/packages/sprotty/src/base/commands/request-command.ts +++ b/packages/sprotty/src/base/commands/request-command.ts @@ -14,11 +14,11 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { injectable, inject } from "inversify"; -import { ResponseAction } from "sprotty-protocol/lib/actions"; -import { TYPES } from "../types"; -import { SystemCommand, CommandExecutionContext, CommandReturn } from "./command"; -import { IActionDispatcher } from "../actions/action-dispatcher"; +import { inject, injectable } from "inversify"; +import { ResponseAction } from "sprotty-protocol"; +import { IActionDispatcher } from "../actions/action-dispatcher.js"; +import { TYPES } from "../types.js"; +import { CommandExecutionContext, CommandReturn, SystemCommand } from "./command.js"; /** * A command that does not modify the internal model, but retrieves information diff --git a/packages/sprotty/src/base/di.config.ts b/packages/sprotty/src/base/di.config.ts index a6daac87..4ebcd18a 100644 --- a/packages/sprotty/src/base/di.config.ts +++ b/packages/sprotty/src/base/di.config.ts @@ -15,31 +15,31 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "./types"; -import { CanvasBoundsInitializer, InitializeCanvasBoundsCommand } from './features/initialize-canvas'; -import { LogLevel, NullLogger } from "../utils/logging"; -import { ActionDispatcher, IActionDispatcher } from "./actions/action-dispatcher"; -import { ActionHandlerRegistry } from "./actions/action-handler"; -import { CommandStack, ICommandStack } from "./commands/command-stack"; -import { CommandStackOptions, defaultCommandStackOptions } from "./commands/command-stack-options"; -import { SModelFactory, SModelRegistry } from './model/smodel-factory'; -import { AnimationFrameSyncer } from "./animations/animation-frame-syncer"; -import { IViewer, ModelViewer, HiddenModelViewer, PopupModelViewer, ModelRenderer, PatcherProvider } from "./views/viewer"; -import { ViewerOptions, defaultViewerOptions } from "./views/viewer-options"; -import { MouseTool, PopupMouseTool, MousePositionTracker } from "./views/mouse-tool"; -import { KeyTool } from "./views/key-tool"; -import { FocusFixPostprocessor, IVNodePostprocessor } from "./views/vnode-postprocessor"; -import { ViewRegistry, RenderingTargetKind, IViewArgs } from "./views/view"; -import { ViewerCache } from "./views/viewer-cache"; -import { DOMHelper } from "./views/dom-helper"; -import { IdPostprocessor } from "./views/id-postprocessor"; -import { configureCommand, CommandActionHandlerInitializer } from "./commands/command-registration"; -import { CssClassPostprocessor } from "./views/css-class-postprocessor"; -import { SetModelCommand } from "./features/set-model"; -import { UIExtensionRegistry, SetUIExtensionVisibilityCommand } from "./ui-extensions/ui-extension-registry"; -import { DefaultDiagramLocker } from "./actions/diagram-locker"; -import { TouchTool } from "./views/touch-tool"; -import { PointerTool } from "./views/pointer-tool"; +import { LogLevel, NullLogger } from "../utils/logging.js"; +import { ActionDispatcher, IActionDispatcher } from "./actions/action-dispatcher.js"; +import { ActionHandlerRegistry } from "./actions/action-handler.js"; +import { DefaultDiagramLocker } from "./actions/diagram-locker.js"; +import { AnimationFrameSyncer } from "./animations/animation-frame-syncer.js"; +import { CommandActionHandlerInitializer, configureCommand } from "./commands/command-registration.js"; +import { CommandStackOptions, defaultCommandStackOptions } from "./commands/command-stack-options.js"; +import { CommandStack, ICommandStack } from "./commands/command-stack.js"; +import { CanvasBoundsInitializer, InitializeCanvasBoundsCommand } from './features/initialize-canvas.js'; +import { SetModelCommand } from "./features/set-model.js"; +import { SModelFactory, SModelRegistry } from './model/smodel-factory.js'; +import { TYPES } from "./types.js"; +import { SetUIExtensionVisibilityCommand, UIExtensionRegistry } from "./ui-extensions/ui-extension-registry.js"; +import { CssClassPostprocessor } from "./views/css-class-postprocessor.js"; +import { DOMHelper } from "./views/dom-helper.js"; +import { IdPostprocessor } from "./views/id-postprocessor.js"; +import { KeyTool } from "./views/key-tool.js"; +import { MousePositionTracker, MouseTool, PopupMouseTool } from "./views/mouse-tool.js"; +import { PointerTool } from "./views/pointer-tool.js"; +import { TouchTool } from "./views/touch-tool.js"; +import { IViewArgs, RenderingTargetKind, ViewRegistry } from "./views/view.js"; +import { ViewerCache } from "./views/viewer-cache.js"; +import { ViewerOptions, defaultViewerOptions } from "./views/viewer-options.js"; +import { HiddenModelViewer, IViewer, ModelRenderer, ModelViewer, PatcherProvider, PopupModelViewer } from "./views/viewer.js"; +import { FocusFixPostprocessor, IVNodePostprocessor } from "./views/vnode-postprocessor.js"; const defaultContainerModule = new ContainerModule((bind, _unbind, isBound) => { // Logging --------------------------------------------- diff --git a/packages/sprotty/src/base/features/initialize-canvas.spec.ts b/packages/sprotty/src/base/features/initialize-canvas.spec.ts index c9e8d039..2b4f4e2a 100644 --- a/packages/sprotty/src/base/features/initialize-canvas.spec.ts +++ b/packages/sprotty/src/base/features/initialize-canvas.spec.ts @@ -15,11 +15,11 @@ ********************************************************************************/ import "reflect-metadata"; -import { expect, describe, it } from 'vitest'; -import { CommandExecutionContext } from '../commands/command'; -import { InitializeCanvasBoundsAction, InitializeCanvasBoundsCommand } from './initialize-canvas'; -import { SModelRootImpl } from "../model/smodel"; import { Bounds } from "sprotty-protocol"; +import { describe, expect, it } from 'vitest'; +import { CommandExecutionContext } from '../commands/command.js'; +import { SModelRootImpl } from "../model/smodel.js"; +import { InitializeCanvasBoundsAction, InitializeCanvasBoundsCommand } from './initialize-canvas.js'; describe('InitializeCanvasBoundsCommand', () => { diff --git a/packages/sprotty/src/base/features/initialize-canvas.ts b/packages/sprotty/src/base/features/initialize-canvas.ts index e8ad7846..4b0fa3e8 100644 --- a/packages/sprotty/src/base/features/initialize-canvas.ts +++ b/packages/sprotty/src/base/features/initialize-canvas.ts @@ -14,16 +14,15 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { injectable, inject } from "inversify"; +import { inject, injectable } from "inversify"; import { VNode } from "snabbdom"; -import { Action } from "sprotty-protocol/lib/actions"; -import { almostEquals, Bounds, Dimension } from "sprotty-protocol/lib/utils/geometry"; -import { TYPES } from "../types"; -import { IActionDispatcher } from '../actions/action-dispatcher'; -import { IVNodePostprocessor } from "../views/vnode-postprocessor"; -import { SModelElementImpl, SModelRootImpl } from "../model/smodel"; -import { SystemCommand, CommandExecutionContext, CommandReturn } from '../commands/command'; -import { getWindowScroll } from "../../utils/browser"; +import { Action, almostEquals, Bounds, Dimension } from "sprotty-protocol"; +import { getWindowScroll } from "../../utils/browser.js"; +import { IActionDispatcher } from '../actions/action-dispatcher.js'; +import { CommandExecutionContext, CommandReturn, SystemCommand } from '../commands/command.js'; +import { SModelElementImpl, SModelRootImpl } from "../model/smodel.js"; +import { TYPES } from "../types.js"; +import { IVNodePostprocessor } from "../views/vnode-postprocessor.js"; /** * Grabs the bounds from the root element in page coordinates and fires a diff --git a/packages/sprotty/src/base/features/set-model.spec.ts b/packages/sprotty/src/base/features/set-model.spec.ts index c6cfe33c..e33ba25b 100644 --- a/packages/sprotty/src/base/features/set-model.spec.ts +++ b/packages/sprotty/src/base/features/set-model.spec.ts @@ -14,18 +14,18 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; -import { TYPES } from '../types'; -import { SModelElementImpl } from '../model/smodel'; -import { EMPTY_ROOT, IModelFactory } from '../model/smodel-factory'; -import { CommandExecutionContext } from '../commands/command'; -import { ConsoleLogger } from '../../utils/logging'; -import { AnimationFrameSyncer } from '../animations/animation-frame-syncer'; -import { SetModelCommand } from './set-model'; -import defaultModule from '../di.config'; +import 'reflect-metadata'; import { SModelElement, SModelRoot, SetModelAction } from 'sprotty-protocol'; +import { describe, expect, it } from 'vitest'; +import { ConsoleLogger } from '../../utils/logging.js'; +import { AnimationFrameSyncer } from '../animations/animation-frame-syncer.js'; +import { CommandExecutionContext } from '../commands/command.js'; +import defaultModule from '../di.config.js'; +import { EMPTY_ROOT, IModelFactory } from '../model/smodel-factory.js'; +import { SModelElementImpl } from '../model/smodel.js'; +import { TYPES } from '../types.js'; +import { SetModelCommand } from './set-model.js'; function compare(expected: SModelElement, actual: SModelElementImpl) { for (const p in expected) { diff --git a/packages/sprotty/src/base/features/set-model.ts b/packages/sprotty/src/base/features/set-model.ts index d3fb9763..22aef53f 100644 --- a/packages/sprotty/src/base/features/set-model.ts +++ b/packages/sprotty/src/base/features/set-model.ts @@ -15,11 +15,11 @@ ********************************************************************************/ import { inject, injectable } from "inversify"; -import { Action, SetModelAction } from "sprotty-protocol/lib/actions"; -import { CommandExecutionContext, ResetCommand } from "../commands/command"; -import { SModelRootImpl } from "../model/smodel"; -import { TYPES } from "../types"; -import { InitializeCanvasBoundsCommand } from './initialize-canvas'; +import { Action, SetModelAction } from "sprotty-protocol"; +import { CommandExecutionContext, ResetCommand } from "../commands/command.js"; +import { SModelRootImpl } from "../model/smodel.js"; +import { TYPES } from "../types.js"; +import { InitializeCanvasBoundsCommand } from './initialize-canvas.js'; @injectable() export class SetModelCommand extends ResetCommand { diff --git a/packages/sprotty/src/base/model/smodel-factory.spec.ts b/packages/sprotty/src/base/model/smodel-factory.spec.ts index bdee5879..328cba6a 100644 --- a/packages/sprotty/src/base/model/smodel-factory.spec.ts +++ b/packages/sprotty/src/base/model/smodel-factory.spec.ts @@ -14,18 +14,17 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; -import { Selectable } from 'sprotty-protocol/lib/model'; -import { TYPES } from '../types'; -import { ModelIndexImpl, SChildElementImpl } from './smodel'; -import { SModelFactory } from './smodel-factory'; -import { registerModelElement } from './smodel-utils'; -import { selectFeature } from '../../features/select/model'; -import { boundsFeature } from '../../features/bounds/model'; -import defaultModule from '../di.config'; -import { SModelElement } from 'sprotty-protocol'; +import 'reflect-metadata'; +import { Selectable, SModelElement } from 'sprotty-protocol'; +import { describe, expect, it } from 'vitest'; +import { boundsFeature } from '../../features/bounds/model.js'; +import { selectFeature } from '../../features/select/model.js'; +import defaultModule from '../di.config.js'; +import { SModelFactory } from './smodel-factory.js'; +import { registerModelElement } from './smodel-utils.js'; +import { ModelIndexImpl, SChildElementImpl } from './smodel.js'; +import { TYPES } from '../types.js'; describe('model factory', () => { diff --git a/packages/sprotty/src/base/model/smodel-factory.ts b/packages/sprotty/src/base/model/smodel-factory.ts index 19412a59..b4baf2e2 100644 --- a/packages/sprotty/src/base/model/smodel-factory.ts +++ b/packages/sprotty/src/base/model/smodel-factory.ts @@ -14,11 +14,11 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { injectable, multiInject, optional, inject } from 'inversify'; -import { SModelElement, SModelRoot } from 'sprotty-protocol/lib/model'; -import { TYPES } from "../types"; -import { FactoryRegistry } from '../../utils/registry'; -import { SChildElementImpl, SModelElementImpl, SModelRootImpl, SParentElementImpl, isParent, FeatureSet } from './smodel'; +import { inject, injectable, multiInject, optional } from 'inversify'; +import { SModelElement, SModelRoot } from 'sprotty-protocol'; +import { FactoryRegistry } from '../../utils/registry.js'; +import { TYPES } from "../types.js"; +import { FeatureSet, SChildElementImpl, SModelElementImpl, SModelRootImpl, SParentElementImpl, isParent } from './smodel.js'; /** * Model element classes registered here are considered automatically when constructring a model from its schema. diff --git a/packages/sprotty/src/base/model/smodel-utils.ts b/packages/sprotty/src/base/model/smodel-utils.ts index 57b7ea96..c148d5bc 100644 --- a/packages/sprotty/src/base/model/smodel-utils.ts +++ b/packages/sprotty/src/base/model/smodel-utils.ts @@ -15,10 +15,10 @@ ********************************************************************************/ import { interfaces } from "inversify"; -import { Bounds, Point } from "sprotty-protocol/lib/utils/geometry"; -import { TYPES } from "../types"; -import { SChildElementImpl, SModelElementImpl, SModelRootImpl, SParentElementImpl } from "./smodel"; -import { SModelElementRegistration, CustomFeatures } from "./smodel-factory"; +import { Bounds, Point } from "sprotty-protocol"; +import { TYPES } from "../types.js"; +import { CustomFeatures, SModelElementRegistration } from "./smodel-factory.js"; +import { SChildElementImpl, SModelElementImpl, SModelRootImpl, SParentElementImpl } from "./smodel.js"; /** * Register a model element constructor for an element type. diff --git a/packages/sprotty/src/base/model/smodel.spec.ts b/packages/sprotty/src/base/model/smodel.spec.ts index 7e7c3985..f1f18528 100644 --- a/packages/sprotty/src/base/model/smodel.spec.ts +++ b/packages/sprotty/src/base/model/smodel.spec.ts @@ -14,8 +14,8 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { expect, describe, it } from 'vitest'; -import { SChildElementImpl, ModelIndexImpl, SModelRootImpl } from './smodel'; +import { describe, expect, it } from 'vitest'; +import { ModelIndexImpl, SChildElementImpl, SModelRootImpl } from './smodel.js'; describe('SModelRootImpl', () => { function setup() { diff --git a/packages/sprotty/src/base/model/smodel.ts b/packages/sprotty/src/base/model/smodel.ts index beaa71f4..0c4a5ad7 100644 --- a/packages/sprotty/src/base/model/smodel.ts +++ b/packages/sprotty/src/base/model/smodel.ts @@ -14,9 +14,8 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { SModelElement } from 'sprotty-protocol/lib/model'; -import { Bounds, isBounds, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { FluentIterable, mapIterable } from '../../utils/iterable'; +import { Bounds, isBounds, Point, SModelElement } from 'sprotty-protocol'; +import { FluentIterable, mapIterable } from '../../utils/iterable.js'; /** * Base class for all elements of the internal diagram model. diff --git a/packages/sprotty/src/base/ui-extensions/ui-extension-registry.ts b/packages/sprotty/src/base/ui-extensions/ui-extension-registry.ts index d9ad2859..0f17114c 100644 --- a/packages/sprotty/src/base/ui-extensions/ui-extension-registry.ts +++ b/packages/sprotty/src/base/ui-extensions/ui-extension-registry.ts @@ -14,11 +14,11 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ import { inject, injectable, multiInject, optional } from "inversify"; -import { Action } from "sprotty-protocol/lib/actions"; -import { InstanceRegistry } from "../../utils/registry"; -import { CommandExecutionContext, SystemCommand, CommandReturn } from "../commands/command"; -import { TYPES } from "../types"; -import { IUIExtension } from "./ui-extension"; +import { Action } from "sprotty-protocol"; +import { InstanceRegistry } from "../../utils/registry.js"; +import { CommandExecutionContext, CommandReturn, SystemCommand } from "../commands/command.js"; +import { TYPES } from "../types.js"; +import { IUIExtension } from "./ui-extension.js"; /** * The registry maintaining UI extensions registered via `TYPES.IUIExtension`. diff --git a/packages/sprotty/src/base/ui-extensions/ui-extension.ts b/packages/sprotty/src/base/ui-extensions/ui-extension.ts index 24b4b990..8b78ff71 100644 --- a/packages/sprotty/src/base/ui-extensions/ui-extension.ts +++ b/packages/sprotty/src/base/ui-extensions/ui-extension.ts @@ -15,10 +15,10 @@ ********************************************************************************/ import { inject, injectable } from "inversify"; import { hasOwnProperty } from "sprotty-protocol"; -import { ILogger } from "../../utils/logging"; -import { SModelRootImpl } from "../model/smodel"; -import { TYPES } from "../types"; -import { ViewerOptions } from "../views/viewer-options"; +import { ILogger } from "../../utils/logging.js"; +import { SModelRootImpl } from "../model/smodel.js"; +import { TYPES } from "../types.js"; +import { ViewerOptions } from "../views/viewer-options.js"; /** * A UI extension displaying additional UI elements on top of a sprotty diagram. diff --git a/packages/sprotty/src/base/views/css-class-postprocessor.spec.tsx b/packages/sprotty/src/base/views/css-class-postprocessor.spec.tsx index a3b156d6..b1fdff98 100644 --- a/packages/sprotty/src/base/views/css-class-postprocessor.spec.tsx +++ b/packages/sprotty/src/base/views/css-class-postprocessor.spec.tsx @@ -15,12 +15,12 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from '../../lib/jsx'; +import { svg } from '../../lib/jsx.js'; import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; -import { CssClassPostprocessor } from './css-class-postprocessor'; -import { SModelElementImpl } from '../model/smodel'; +import { describe, expect, it } from 'vitest'; +import { SModelElementImpl } from '../model/smodel.js'; +import { CssClassPostprocessor } from './css-class-postprocessor.js'; describe('CssClassPostprocessor', () => { it('classes are not overwritten', () => { diff --git a/packages/sprotty/src/base/views/css-class-postprocessor.ts b/packages/sprotty/src/base/views/css-class-postprocessor.ts index 05a7e6ad..32e8f4aa 100644 --- a/packages/sprotty/src/base/views/css-class-postprocessor.ts +++ b/packages/sprotty/src/base/views/css-class-postprocessor.ts @@ -14,12 +14,12 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { IVNodePostprocessor } from "./vnode-postprocessor"; -import { VNode } from "snabbdom"; -import { getSubType } from 'sprotty-protocol/lib/utils/model-utils'; -import { SModelElementImpl } from "../model/smodel"; -import { setClass } from "./vnode-utils"; import { injectable } from "inversify"; +import { VNode } from "snabbdom"; +import { getSubType } from 'sprotty-protocol'; +import { SModelElementImpl } from "../model/smodel.js"; +import { IVNodePostprocessor } from "./vnode-postprocessor.js"; +import { setClass } from "./vnode-utils.js"; @injectable() export class CssClassPostprocessor implements IVNodePostprocessor { diff --git a/packages/sprotty/src/base/views/dom-helper.ts b/packages/sprotty/src/base/views/dom-helper.ts index a8d78cc3..7d98f846 100644 --- a/packages/sprotty/src/base/views/dom-helper.ts +++ b/packages/sprotty/src/base/views/dom-helper.ts @@ -15,9 +15,9 @@ ********************************************************************************/ import { inject, injectable } from "inversify"; -import { ViewerOptions } from "./viewer-options"; -import { TYPES } from "../types"; -import { SModelElementImpl } from "../model/smodel"; +import { SModelElementImpl } from "../model/smodel.js"; +import { TYPES } from "../types.js"; +import { ViewerOptions } from "./viewer-options.js"; @injectable() export class DOMHelper { diff --git a/packages/sprotty/src/base/views/id-postprocessor.ts b/packages/sprotty/src/base/views/id-postprocessor.ts index 4e00666d..0fa9421e 100644 --- a/packages/sprotty/src/base/views/id-postprocessor.ts +++ b/packages/sprotty/src/base/views/id-postprocessor.ts @@ -16,12 +16,12 @@ import { inject, injectable } from "inversify"; import { VNode } from "snabbdom"; -import { TYPES } from "../types"; -import { ILogger } from "../../utils/logging"; -import { SModelElementImpl } from "../model/smodel"; -import { IVNodePostprocessor } from "./vnode-postprocessor"; -import { DOMHelper } from "./dom-helper"; -import { getAttrs } from "./vnode-utils"; +import { ILogger } from "../../utils/logging.js"; +import { SModelElementImpl } from "../model/smodel.js"; +import { TYPES } from "../types.js"; +import { DOMHelper } from "./dom-helper.js"; +import { IVNodePostprocessor } from "./vnode-postprocessor.js"; +import { getAttrs } from "./vnode-utils.js"; @injectable() export class IdPostprocessor implements IVNodePostprocessor { diff --git a/packages/sprotty/src/base/views/key-tool.ts b/packages/sprotty/src/base/views/key-tool.ts index bccb21c3..91a1cabc 100644 --- a/packages/sprotty/src/base/views/key-tool.ts +++ b/packages/sprotty/src/base/views/key-tool.ts @@ -16,12 +16,12 @@ import { inject, injectable, multiInject, optional } from "inversify"; import { VNode } from "snabbdom"; -import { Action } from "sprotty-protocol/lib/actions"; -import { TYPES } from "../types"; -import { IActionDispatcher } from "../actions/action-dispatcher"; -import { SModelElementImpl, SModelRootImpl } from "../model/smodel"; -import { IVNodePostprocessor } from "./vnode-postprocessor"; -import { on } from "./vnode-utils"; +import { Action } from "sprotty-protocol"; +import { IActionDispatcher } from "../actions/action-dispatcher.js"; +import { SModelElementImpl, SModelRootImpl } from "../model/smodel.js"; +import { TYPES } from "../types.js"; +import { IVNodePostprocessor } from "./vnode-postprocessor.js"; +import { on } from "./vnode-utils.js"; @injectable() export class KeyTool implements IVNodePostprocessor { diff --git a/packages/sprotty/src/base/views/mouse-tool.ts b/packages/sprotty/src/base/views/mouse-tool.ts index e92521dc..054f9161 100644 --- a/packages/sprotty/src/base/views/mouse-tool.ts +++ b/packages/sprotty/src/base/views/mouse-tool.ts @@ -16,14 +16,13 @@ import { inject, injectable, multiInject, optional } from "inversify"; import { VNode } from "snabbdom"; -import { Action, isAction } from "sprotty-protocol/lib/actions"; -import { Point } from "sprotty-protocol/lib/utils/geometry"; -import { IActionDispatcher } from "../actions/action-dispatcher"; -import { SModelElementImpl, SModelRootImpl } from "../model/smodel"; -import { TYPES } from "../types"; -import { DOMHelper } from "./dom-helper"; -import { IVNodePostprocessor } from "./vnode-postprocessor"; -import { on } from "./vnode-utils"; +import { Action, isAction, Point } from "sprotty-protocol"; +import { IActionDispatcher } from "../actions/action-dispatcher.js"; +import { SModelElementImpl, SModelRootImpl } from "../model/smodel.js"; +import { TYPES } from "../types.js"; +import { DOMHelper } from "./dom-helper.js"; +import { IVNodePostprocessor } from "./vnode-postprocessor.js"; +import { on } from "./vnode-utils.js"; @injectable() export class MouseTool implements IVNodePostprocessor { diff --git a/packages/sprotty/src/base/views/pointer-tool.ts b/packages/sprotty/src/base/views/pointer-tool.ts index 8f9586ca..b5cd2b8c 100644 --- a/packages/sprotty/src/base/views/pointer-tool.ts +++ b/packages/sprotty/src/base/views/pointer-tool.ts @@ -16,13 +16,13 @@ import { inject, injectable, multiInject, optional } from "inversify"; import { VNode } from "snabbdom"; -import { Action, isAction } from "sprotty-protocol/lib/actions"; -import { IActionDispatcher } from "../actions/action-dispatcher"; -import { SModelElementImpl, SModelRootImpl } from "../model/smodel"; -import { TYPES } from "../types"; -import { DOMHelper } from "./dom-helper"; -import { IVNodePostprocessor } from "./vnode-postprocessor"; -import { on } from "./vnode-utils"; +import { Action, isAction } from "sprotty-protocol"; +import { IActionDispatcher } from "../actions/action-dispatcher.js"; +import { SModelElementImpl, SModelRootImpl } from "../model/smodel.js"; +import { TYPES } from "../types.js"; +import { DOMHelper } from "./dom-helper.js"; +import { IVNodePostprocessor } from "./vnode-postprocessor.js"; +import { on } from "./vnode-utils.js"; @injectable() export class PointerTool implements IVNodePostprocessor { diff --git a/packages/sprotty/src/base/views/thunk-view.spec.tsx b/packages/sprotty/src/base/views/thunk-view.spec.tsx index 16b809c4..df5e531b 100644 --- a/packages/sprotty/src/base/views/thunk-view.spec.tsx +++ b/packages/sprotty/src/base/views/thunk-view.spec.tsx @@ -15,14 +15,14 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from '../../lib/jsx'; +import { svg } from '../../lib/jsx.js'; -import { expect, describe, it } from 'vitest'; import { init } from "snabbdom"; -import { SModelElementImpl } from "../model/smodel"; -import { ModelRenderer } from './viewer'; -import { ThunkView } from './thunk-view'; import toHTML from 'snabbdom-to-html'; +import { describe, expect, it } from 'vitest'; +import { SModelElementImpl } from "../model/smodel.js"; +import { ThunkView } from './thunk-view.js'; +import { ModelRenderer } from './viewer.js'; /** * @vitest-environment happy-dom diff --git a/packages/sprotty/src/base/views/thunk-view.ts b/packages/sprotty/src/base/views/thunk-view.ts index 7b0d54be..ce893234 100644 --- a/packages/sprotty/src/base/views/thunk-view.ts +++ b/packages/sprotty/src/base/views/thunk-view.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { h, VNode, VNodeData } from "snabbdom"; -import { SModelElementImpl } from "../model/smodel"; -import { RenderingContext, IView } from "./view"; +import { SModelElementImpl } from "../model/smodel.js"; +import { RenderingContext, IView } from "./view.js"; import { injectable } from "inversify"; /** diff --git a/packages/sprotty/src/base/views/touch-tool.ts b/packages/sprotty/src/base/views/touch-tool.ts index 15d2e4c9..eeda88d7 100644 --- a/packages/sprotty/src/base/views/touch-tool.ts +++ b/packages/sprotty/src/base/views/touch-tool.ts @@ -16,13 +16,13 @@ import { inject, injectable, multiInject, optional } from "inversify"; import { VNode } from "snabbdom"; -import { Action, isAction } from "sprotty-protocol/lib/actions"; -import { IActionDispatcher } from "../actions/action-dispatcher"; -import { SModelElementImpl, SModelRootImpl } from "../model/smodel"; -import { TYPES } from "../types"; -import { DOMHelper } from "./dom-helper"; -import { IVNodePostprocessor } from "./vnode-postprocessor"; -import { on } from "./vnode-utils"; +import { Action, isAction } from "sprotty-protocol"; +import { IActionDispatcher } from "../actions/action-dispatcher.js"; +import { SModelElementImpl, SModelRootImpl } from "../model/smodel.js"; +import { TYPES } from "../types.js"; +import { DOMHelper } from "./dom-helper.js"; +import { IVNodePostprocessor } from "./vnode-postprocessor.js"; +import { on } from "./vnode-utils.js"; @injectable() export class TouchTool implements IVNodePostprocessor { diff --git a/packages/sprotty/src/base/views/view.spec.ts b/packages/sprotty/src/base/views/view.spec.ts index 03488e5b..73acc408 100644 --- a/packages/sprotty/src/base/views/view.spec.ts +++ b/packages/sprotty/src/base/views/view.spec.ts @@ -14,17 +14,16 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; -import { TYPES } from '../types'; -import { EMPTY_ROOT, SModelFactory } from '../model/smodel-factory'; -import { SNodeImpl } from "../../graph/sgraph"; -import { EmptyView, findArgValue, MissingView } from "./view"; -import { ModelRenderer } from "./viewer"; -import defaultModule from "../di.config"; - -const toHTML = require('snabbdom-to-html'); +import 'reflect-metadata'; +import toHTML from 'snabbdom-to-html'; +import { describe, expect, it } from 'vitest'; +import { SNodeImpl } from "../../graph/sgraph.js"; +import defaultModule from "../di.config.js"; +import { EMPTY_ROOT, SModelFactory } from '../model/smodel-factory.js'; +import { TYPES } from '../types.js'; +import { EmptyView, findArgValue, MissingView } from "./view.js"; +import { ModelRenderer } from "./viewer.js"; describe('base views', () => { const container = new Container(); diff --git a/packages/sprotty/src/base/views/view.tsx b/packages/sprotty/src/base/views/view.tsx index 391a5688..b6a395b3 100644 --- a/packages/sprotty/src/base/views/view.tsx +++ b/packages/sprotty/src/base/views/view.tsx @@ -15,18 +15,18 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from '../../lib/jsx'; +import { svg } from '../../lib/jsx.js'; import { injectable, multiInject, optional, interfaces, inject } from 'inversify'; import { VNode } from 'snabbdom'; -import { TYPES } from '../types'; -import { InstanceRegistry } from '../../utils/registry'; -import { isInjectable } from '../../utils/inversify'; -import { SModelElementImpl, SModelRootImpl, SParentElementImpl } from '../model/smodel'; -import { EMPTY_ROOT, CustomFeatures } from '../model/smodel-factory'; -import { registerModelElement } from '../model/smodel-utils'; +import { TYPES } from '../types.js'; +import { InstanceRegistry } from '../../utils/registry.js'; +import { isInjectable } from '../../utils/inversify.js'; +import { SModelElementImpl, SModelRootImpl, SParentElementImpl } from '../model/smodel.js'; +import { EMPTY_ROOT, CustomFeatures } from '../model/smodel-factory.js'; +import { registerModelElement } from '../model/smodel-utils.js'; import { Point } from 'sprotty-protocol'; -import { ILogger } from '../../utils/logging'; +import { ILogger } from '../../utils/logging.js'; /** * Arguments for `IView` rendering. diff --git a/packages/sprotty/src/base/views/viewer-cache.ts b/packages/sprotty/src/base/views/viewer-cache.ts index 6ccf20a2..fafe249c 100644 --- a/packages/sprotty/src/base/views/viewer-cache.ts +++ b/packages/sprotty/src/base/views/viewer-cache.ts @@ -15,11 +15,11 @@ ********************************************************************************/ import { inject, injectable } from "inversify"; -import { Action } from "sprotty-protocol/lib/actions"; -import { SModelRootImpl } from "../model/smodel"; -import { TYPES } from "../types"; -import { AnimationFrameSyncer } from "../animations/animation-frame-syncer"; -import { IViewer } from "./viewer"; +import { Action } from "sprotty-protocol"; +import { AnimationFrameSyncer } from "../animations/animation-frame-syncer.js"; +import { SModelRootImpl } from "../model/smodel.js"; +import { TYPES } from "../types.js"; +import { IViewer } from "./viewer.js"; /** * Updating the view is rather expensive, and it doesn't make sense to calculate diff --git a/packages/sprotty/src/base/views/viewer-options.ts b/packages/sprotty/src/base/views/viewer-options.ts index 01a411b0..2f8b8363 100644 --- a/packages/sprotty/src/base/views/viewer-options.ts +++ b/packages/sprotty/src/base/views/viewer-options.ts @@ -15,9 +15,9 @@ ********************************************************************************/ import { Container, interfaces } from 'inversify'; -import { safeAssign } from 'sprotty-protocol/lib/utils/object'; -import { Limits } from '../../utils/geometry'; -import { TYPES } from '../types'; +import { safeAssign } from 'sprotty-protocol'; +import { Limits } from '../../utils/geometry.js'; +import { TYPES } from '../types.js'; export interface ViewerOptions { /** ID of the HTML element into which the visible diagram is rendered. */ diff --git a/packages/sprotty/src/base/views/viewer.tsx b/packages/sprotty/src/base/views/viewer.tsx index 428ce4a4..836303a6 100644 --- a/packages/sprotty/src/base/views/viewer.tsx +++ b/packages/sprotty/src/base/views/viewer.tsx @@ -17,20 +17,20 @@ /** @jsx html */ import { inject, injectable, multiInject, optional } from 'inversify'; import { attributesModule, classModule, eventListenersModule, init, Module, propsModule, styleModule, VNode } from 'snabbdom'; -import { Action } from 'sprotty-protocol/lib/actions'; -import { html } from '../../lib/jsx'; // must be html here, as we're creating a div -import { getWindowScroll } from '../../utils/browser'; -import { ILogger } from '../../utils/logging'; -import { IActionDispatcher } from '../actions/action-dispatcher'; -import { InitializeCanvasBoundsAction } from '../features/initialize-canvas'; -import { SModelElementImpl, SModelRootImpl, SParentElementImpl } from '../model/smodel'; -import { EMPTY_ROOT } from '../model/smodel-factory'; -import { TYPES } from '../types'; -import { isThunk } from './thunk-view'; -import { IViewArgs, RenderingContext, RenderingTargetKind, ViewRegistry } from './view'; -import { ViewerOptions } from './viewer-options'; -import { IVNodePostprocessor } from './vnode-postprocessor'; -import { copyClassesFromElement, copyClassesFromVNode, setAttr, setClass } from './vnode-utils'; +import { Action } from 'sprotty-protocol'; +import { html } from '../../lib/jsx.js'; // must be html here, as we're creating a div +import { getWindowScroll } from '../../utils/browser.js'; +import { ILogger } from '../../utils/logging.js'; +import { IActionDispatcher } from '../actions/action-dispatcher.js'; +import { InitializeCanvasBoundsAction } from '../features/initialize-canvas.js'; +import { EMPTY_ROOT } from '../model/smodel-factory.js'; +import { SModelElementImpl, SModelRootImpl, SParentElementImpl } from '../model/smodel.js'; +import { TYPES } from '../types.js'; +import { isThunk } from './thunk-view.js'; +import { IViewArgs, RenderingContext, RenderingTargetKind, ViewRegistry } from './view.js'; +import { ViewerOptions } from './viewer-options.js'; +import { IVNodePostprocessor } from './vnode-postprocessor.js'; +import { copyClassesFromElement, copyClassesFromVNode, setAttr, setClass } from './vnode-utils.js'; export interface IViewer { diff --git a/packages/sprotty/src/base/views/vnode-postprocessor.ts b/packages/sprotty/src/base/views/vnode-postprocessor.ts index 61741ec2..166cea25 100644 --- a/packages/sprotty/src/base/views/vnode-postprocessor.ts +++ b/packages/sprotty/src/base/views/vnode-postprocessor.ts @@ -16,9 +16,9 @@ import { injectable } from "inversify"; import { VNode } from "snabbdom"; -import { Action } from "sprotty-protocol/lib/actions"; -import { SModelElementImpl } from "../model/smodel"; -import { setAttr } from "./vnode-utils"; +import { Action } from "sprotty-protocol"; +import { SModelElementImpl } from "../model/smodel.js"; +import { setAttr } from "./vnode-utils.js"; /** * Manipulates a created VNode after it has been created. diff --git a/packages/sprotty/src/features/bounds/abstract-layout.ts b/packages/sprotty/src/features/bounds/abstract-layout.ts index f9d2ec41..165b44dc 100644 --- a/packages/sprotty/src/features/bounds/abstract-layout.ts +++ b/packages/sprotty/src/features/bounds/abstract-layout.ts @@ -14,14 +14,13 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Bounds, Dimension, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SParentElementImpl, SModelElementImpl, SChildElementImpl } from '../../base/model/smodel'; -import { isLayoutContainer, isLayoutableChild, InternalLayoutContainer, isBoundsAware } from './model'; -import { ILayout, StatefulLayouter } from './layout'; -import { AbstractLayoutOptions } from './layout-options'; -import { BoundsData } from './hidden-bounds-updater'; import { injectable } from 'inversify'; -import { HAlignment, VAlignment } from 'sprotty-protocol/lib/model'; +import { Bounds, Dimension, HAlignment, Point, VAlignment } from 'sprotty-protocol'; +import { SChildElementImpl, SModelElementImpl, SParentElementImpl } from '../../base/model/smodel.js'; +import { BoundsData } from './hidden-bounds-updater.js'; +import { AbstractLayoutOptions } from './layout-options.js'; +import { ILayout, StatefulLayouter } from './layout.js'; +import { InternalLayoutContainer, isBoundsAware, isLayoutContainer, isLayoutableChild } from './model.js'; @injectable() export abstract class AbstractLayout implements ILayout { diff --git a/packages/sprotty/src/features/bounds/bounds-manipulation.ts b/packages/sprotty/src/features/bounds/bounds-manipulation.ts index b7de2b03..3b61c83c 100644 --- a/packages/sprotty/src/features/bounds/bounds-manipulation.ts +++ b/packages/sprotty/src/features/bounds/bounds-manipulation.ts @@ -15,13 +15,11 @@ ********************************************************************************/ import { inject, injectable } from 'inversify'; -import { Action, ComputedBoundsAction, RequestBoundsAction, SetBoundsAction } from 'sprotty-protocol/lib/actions'; -import { Alignable } from 'sprotty-protocol/lib/model'; -import { Bounds, Dimension, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { CommandExecutionContext, CommandResult, CommandReturn, HiddenCommand, SystemCommand } from '../../base/commands/command'; -import { SModelElementImpl } from '../../base/model/smodel'; -import { TYPES } from '../../base/types'; -import { InternalBoundsAware, isBoundsAware } from './model'; +import { Action, Alignable, Bounds, ComputedBoundsAction, Dimension, Point, RequestBoundsAction, SetBoundsAction } from 'sprotty-protocol'; +import { CommandExecutionContext, CommandResult, CommandReturn, HiddenCommand, SystemCommand } from '../../base/commands/command.js'; +import { SModelElementImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { InternalBoundsAware, isBoundsAware } from './model.js'; export interface ResolvedElementAndBounds { element: SModelElementImpl & InternalBoundsAware diff --git a/packages/sprotty/src/features/bounds/bounds-manipulations.spec.ts b/packages/sprotty/src/features/bounds/bounds-manipulations.spec.ts index 6199da9a..c9ec1adf 100644 --- a/packages/sprotty/src/features/bounds/bounds-manipulations.spec.ts +++ b/packages/sprotty/src/features/bounds/bounds-manipulations.spec.ts @@ -17,16 +17,16 @@ import { Container } from 'inversify'; import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; -import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer'; -import { CommandExecutionContext } from '../../base/commands/command'; -import defaultModule from '../../base/di.config'; -import { TYPES } from '../../base/types'; -import { SGraphImpl, SNodeImpl } from '../../graph/sgraph'; -import { ConsoleLogger } from '../../utils/logging'; -import { SetBoundsCommand } from '../bounds/bounds-manipulation'; import { SNode, SetBoundsAction } from 'sprotty-protocol'; -import { IModelFactory } from '../../base/model/smodel-factory'; +import { describe, expect, it } from 'vitest'; +import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer.js'; +import { CommandExecutionContext } from '../../base/commands/command.js'; +import defaultModule from '../../base/di.config.js'; +import { IModelFactory } from '../../base/model/smodel-factory.js'; +import { TYPES } from '../../base/types.js'; +import { SGraphImpl, SNodeImpl } from '../../graph/sgraph.js'; +import { ConsoleLogger } from '../../utils/logging.js'; +import { SetBoundsCommand } from '../bounds/bounds-manipulation.js'; describe('SetBoundsCommand', () => { const container = new Container(); diff --git a/packages/sprotty/src/features/bounds/di.config.ts b/packages/sprotty/src/features/bounds/di.config.ts index abc88cc6..0f9f69b2 100644 --- a/packages/sprotty/src/features/bounds/di.config.ts +++ b/packages/sprotty/src/features/bounds/di.config.ts @@ -15,14 +15,14 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; -import { SetBoundsCommand, RequestBoundsCommand } from "./bounds-manipulation"; -import { HiddenBoundsUpdater } from './hidden-bounds-updater'; -import { configureLayout, Layouter, LayoutRegistry } from "./layout"; -import { configureCommand } from "../../base/commands/command-registration"; -import { HBoxLayouter } from "./hbox-layout"; -import { VBoxLayouter } from "./vbox-layout"; -import { StackLayouter} from "./stack-layout"; +import { TYPES } from "../../base/types.js"; +import { SetBoundsCommand, RequestBoundsCommand } from "./bounds-manipulation.js"; +import { HiddenBoundsUpdater } from './hidden-bounds-updater.js'; +import { configureLayout, Layouter, LayoutRegistry } from "./layout.js"; +import { configureCommand } from "../../base/commands/command-registration.js"; +import { HBoxLayouter } from "./hbox-layout.js"; +import { VBoxLayouter } from "./vbox-layout.js"; +import { StackLayouter} from "./stack-layout.js"; const boundsModule = new ContainerModule((bind, _unbind, isBound) => { configureCommand({ bind, isBound }, SetBoundsCommand); diff --git a/packages/sprotty/src/features/bounds/hbox-layout.spec.ts b/packages/sprotty/src/features/bounds/hbox-layout.spec.ts index 7dbc8d51..106eda77 100644 --- a/packages/sprotty/src/features/bounds/hbox-layout.spec.ts +++ b/packages/sprotty/src/features/bounds/hbox-layout.spec.ts @@ -17,17 +17,17 @@ import 'reflect-metadata'; import { expect, describe, it } from 'vitest'; -import { SModelElementImpl, SParentElementImpl } from '../../base/model/smodel'; -import { createFeatureSet } from '../../base/model/smodel-factory'; -import { SNodeImpl, SLabelImpl } from '../../graph/sgraph'; -import { StatefulLayouter, LayoutRegistry } from './layout'; -import { BoundsData } from './hidden-bounds-updater'; -import { ConsoleLogger } from '../../utils/logging'; -import { layoutableChildFeature } from './model'; -import { TYPES } from '../../base/types'; +import { SModelElementImpl, SParentElementImpl } from '../../base/model/smodel.js'; +import { createFeatureSet } from '../../base/model/smodel-factory.js'; +import { SNodeImpl, SLabelImpl } from '../../graph/sgraph.js'; +import { StatefulLayouter, LayoutRegistry } from './layout.js'; +import { BoundsData } from './hidden-bounds-updater.js'; +import { ConsoleLogger } from '../../utils/logging.js'; +import { layoutableChildFeature } from './model.js'; +import { TYPES } from '../../base/types.js'; import { Container } from 'inversify'; -import boundsModule from './di.config'; -import defaultModule from '../../base/di.config'; +import boundsModule from './di.config.js'; +import defaultModule from '../../base/di.config.js'; import { Dimension } from 'sprotty-protocol'; describe('HBoxLayouter', () => { diff --git a/packages/sprotty/src/features/bounds/hbox-layout.ts b/packages/sprotty/src/features/bounds/hbox-layout.ts index 9da86af2..86a5f3ba 100644 --- a/packages/sprotty/src/features/bounds/hbox-layout.ts +++ b/packages/sprotty/src/features/bounds/hbox-layout.ts @@ -15,14 +15,13 @@ ********************************************************************************/ import { injectable } from 'inversify'; -import { Bounds, Dimension, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SParentElementImpl, SChildElementImpl } from "../../base/model/smodel"; -import { AbstractLayout } from './abstract-layout'; -import { AbstractLayoutOptions } from './layout-options'; -import { BoundsData } from './hidden-bounds-updater'; -import { InternalLayoutContainer, isLayoutableChild } from './model'; -import { StatefulLayouter } from './layout'; -import { VAlignment } from 'sprotty-protocol/lib/model'; +import { Bounds, Dimension, Point, VAlignment } from 'sprotty-protocol'; +import { SChildElementImpl, SParentElementImpl } from "../../base/model/smodel.js"; +import { AbstractLayout } from './abstract-layout.js'; +import { BoundsData } from './hidden-bounds-updater.js'; +import { AbstractLayoutOptions } from './layout-options.js'; +import { StatefulLayouter } from './layout.js'; +import { InternalLayoutContainer, isLayoutableChild } from './model.js'; export interface HBoxLayoutOptions extends AbstractLayoutOptions { hGap: number diff --git a/packages/sprotty/src/features/bounds/hidden-bounds-updater.ts b/packages/sprotty/src/features/bounds/hidden-bounds-updater.ts index d9e2dd7d..dfcec92b 100644 --- a/packages/sprotty/src/features/bounds/hidden-bounds-updater.ts +++ b/packages/sprotty/src/features/bounds/hidden-bounds-updater.ts @@ -16,16 +16,15 @@ import { inject, injectable } from 'inversify'; import { VNode } from 'snabbdom'; -import { Action, ComputedBoundsAction, ElementAndAlignment, ElementAndBounds, RequestBoundsAction } from 'sprotty-protocol/lib/actions'; -import { almostEquals, Bounds, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { isSVGGraphicsElement } from '../../utils/browser'; -import { ILogger } from '../../utils/logging'; -import { IActionDispatcher } from '../../base/actions/action-dispatcher'; -import { SChildElementImpl, SModelElementImpl, SModelRootImpl } from '../../base/model/smodel'; -import { TYPES } from '../../base/types'; -import { IVNodePostprocessor } from '../../base/views/vnode-postprocessor'; -import { Layouter } from './layout'; -import { InternalBoundsAware, isAlignable, isLayoutContainer, isSizeable } from './model'; +import { Action, almostEquals, Bounds, ComputedBoundsAction, ElementAndAlignment, ElementAndBounds, Point, RequestBoundsAction } from 'sprotty-protocol'; +import { IActionDispatcher } from '../../base/actions/action-dispatcher.js'; +import { SChildElementImpl, SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { IVNodePostprocessor } from '../../base/views/vnode-postprocessor.js'; +import { isSVGGraphicsElement } from '../../utils/browser.js'; +import { ILogger } from '../../utils/logging.js'; +import { Layouter } from './layout.js'; +import { InternalBoundsAware, isAlignable, isLayoutContainer, isSizeable } from './model.js'; export class BoundsData { vnode?: VNode; diff --git a/packages/sprotty/src/features/bounds/layout-options.ts b/packages/sprotty/src/features/bounds/layout-options.ts index cac51f10..2cbcd439 100644 --- a/packages/sprotty/src/features/bounds/layout-options.ts +++ b/packages/sprotty/src/features/bounds/layout-options.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { JsonMap } from 'sprotty-protocol/lib/utils/json'; +import { JsonMap } from 'sprotty-protocol'; /** @deprecated Use HAlignment from `sprotty-protocol` instead */ export type HAlignment = 'left' | 'center' | 'right'; diff --git a/packages/sprotty/src/features/bounds/layout.ts b/packages/sprotty/src/features/bounds/layout.ts index bfd7a2a2..f2bb080b 100644 --- a/packages/sprotty/src/features/bounds/layout.ts +++ b/packages/sprotty/src/features/bounds/layout.ts @@ -15,14 +15,14 @@ ********************************************************************************/ import { inject, injectable, interfaces, multiInject, optional } from "inversify"; -import { Bounds } from "sprotty-protocol/lib/utils/geometry"; -import { TYPES } from "../../base/types"; -import { ILogger } from '../../utils/logging'; -import { InstanceRegistry } from "../../utils/registry"; -import { SParentElementImpl, SModelElementImpl } from "../../base/model/smodel"; -import { isLayoutContainer, InternalLayoutContainer } from "./model"; -import { BoundsData } from "./hidden-bounds-updater"; -import { isInjectable } from "../../utils/inversify"; +import { Bounds } from "sprotty-protocol"; +import { SModelElementImpl, SParentElementImpl } from "../../base/model/smodel.js"; +import { TYPES } from "../../base/types.js"; +import { isInjectable } from "../../utils/inversify.js"; +import { ILogger } from '../../utils/logging.js'; +import { InstanceRegistry } from "../../utils/registry.js"; +import { BoundsData } from "./hidden-bounds-updater.js"; +import { InternalLayoutContainer, isLayoutContainer } from "./model.js"; @injectable() export class LayoutRegistry extends InstanceRegistry { diff --git a/packages/sprotty/src/features/bounds/model.spec.ts b/packages/sprotty/src/features/bounds/model.spec.ts index a278b70b..f0126440 100644 --- a/packages/sprotty/src/features/bounds/model.spec.ts +++ b/packages/sprotty/src/features/bounds/model.spec.ts @@ -14,9 +14,9 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { expect, describe, it } from 'vitest'; -import { SModelRootImpl } from '../../base/model/smodel'; -import { SShapeElementImpl, getAbsoluteBounds } from './model'; +import { describe, expect, it } from 'vitest'; +import { SModelRootImpl } from '../../base/model/smodel.js'; +import { SShapeElementImpl, getAbsoluteBounds } from './model.js'; describe('getAbsoluteBounds', () => { function createModel(): SModelRootImpl { diff --git a/packages/sprotty/src/features/bounds/model.ts b/packages/sprotty/src/features/bounds/model.ts index abc4346f..9b7ca170 100644 --- a/packages/sprotty/src/features/bounds/model.ts +++ b/packages/sprotty/src/features/bounds/model.ts @@ -14,13 +14,12 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Locateable } from 'sprotty-protocol/lib/model'; -import { Bounds, Dimension, isBounds, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SChildElementImpl, SModelElementImpl, SModelRootImpl, SParentElementImpl } from '../../base/model/smodel'; -import { findParentByFeature } from '../../base/model/smodel-utils'; -import { DOMHelper } from '../../base/views/dom-helper'; -import { ViewerOptions } from '../../base/views/viewer-options'; -import { getWindowScroll } from '../../utils/browser'; +import { Bounds, Dimension, isBounds, Locateable, Point } from 'sprotty-protocol'; +import { findParentByFeature } from '../../base/model/smodel-utils.js'; +import { SChildElementImpl, SModelElementImpl, SModelRootImpl, SParentElementImpl } from '../../base/model/smodel.js'; +import { DOMHelper } from '../../base/views/dom-helper.js'; +import { ViewerOptions } from '../../base/views/viewer-options.js'; +import { getWindowScroll } from '../../utils/browser.js'; export const boundsFeature = Symbol('boundsFeature'); export const layoutContainerFeature = Symbol('layoutContainerFeature'); diff --git a/packages/sprotty/src/features/bounds/resize.ts b/packages/sprotty/src/features/bounds/resize.ts index bbeb50d4..9753843b 100644 --- a/packages/sprotty/src/features/bounds/resize.ts +++ b/packages/sprotty/src/features/bounds/resize.ts @@ -14,11 +14,11 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Dimension } from "sprotty-protocol/lib/utils/geometry"; -import { Animation } from "../../base/animations/animation"; -import { SModelRootImpl, SModelElementImpl } from "../../base/model/smodel"; -import { CommandExecutionContext } from "../../base/commands/command"; -import { InternalBoundsAware } from './model'; +import { Dimension } from "sprotty-protocol"; +import { Animation } from "../../base/animations/animation.js"; +import { CommandExecutionContext } from "../../base/commands/command.js"; +import { SModelElementImpl, SModelRootImpl } from "../../base/model/smodel.js"; +import { InternalBoundsAware } from './model.js'; export interface ResolvedElementResize { element: SModelElementImpl & InternalBoundsAware diff --git a/packages/sprotty/src/features/bounds/stack-layout.spec.ts b/packages/sprotty/src/features/bounds/stack-layout.spec.ts index a83a0129..4542bb7b 100644 --- a/packages/sprotty/src/features/bounds/stack-layout.spec.ts +++ b/packages/sprotty/src/features/bounds/stack-layout.spec.ts @@ -16,18 +16,18 @@ import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; -import { SModelElementImpl, SParentElementImpl } from '../../base/model/smodel'; -import { createFeatureSet } from '../../base/model/smodel-factory'; -import { SNodeImpl, SLabelImpl } from '../../graph/sgraph'; -import { StatefulLayouter, LayoutRegistry } from './layout'; -import { BoundsData } from './hidden-bounds-updater'; -import { ConsoleLogger } from '../../utils/logging'; -import boundsModule from './di.config'; import { Container } from 'inversify'; -import { TYPES } from '../../base/types'; -import defaultModule from '../../base/di.config'; import { Dimension } from 'sprotty-protocol'; +import { describe, expect, it } from 'vitest'; +import defaultModule from '../../base/di.config.js'; +import { createFeatureSet } from '../../base/model/smodel-factory.js'; +import { SModelElementImpl, SParentElementImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { SLabelImpl, SNodeImpl } from '../../graph/sgraph.js'; +import { ConsoleLogger } from '../../utils/logging.js'; +import boundsModule from './di.config.js'; +import { BoundsData } from './hidden-bounds-updater.js'; +import { LayoutRegistry, StatefulLayouter } from './layout.js'; describe('StackLayouter', () => { diff --git a/packages/sprotty/src/features/bounds/stack-layout.ts b/packages/sprotty/src/features/bounds/stack-layout.ts index 5a86c106..2c4a3324 100644 --- a/packages/sprotty/src/features/bounds/stack-layout.ts +++ b/packages/sprotty/src/features/bounds/stack-layout.ts @@ -15,14 +15,13 @@ ********************************************************************************/ import { injectable } from 'inversify'; -import { Bounds, Dimension, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SParentElementImpl, SChildElementImpl } from "../../base/model/smodel"; -import { AbstractLayout } from './abstract-layout'; -import { AbstractLayoutOptions } from './layout-options'; -import { BoundsData } from './hidden-bounds-updater'; -import { InternalLayoutContainer, isLayoutableChild } from './model'; -import { StatefulLayouter } from './layout'; -import { VAlignment, HAlignment } from 'sprotty-protocol/lib/model'; +import { Bounds, Dimension, HAlignment, Point, VAlignment } from 'sprotty-protocol'; +import { SChildElementImpl, SParentElementImpl } from "../../base/model/smodel.js"; +import { AbstractLayout } from './abstract-layout.js'; +import { BoundsData } from './hidden-bounds-updater.js'; +import { AbstractLayoutOptions } from './layout-options.js'; +import { StatefulLayouter } from './layout.js'; +import { InternalLayoutContainer, isLayoutableChild } from './model.js'; export interface StackLayoutOptions extends AbstractLayoutOptions { paddingFactor: number diff --git a/packages/sprotty/src/features/bounds/vbox-layout.spec.ts b/packages/sprotty/src/features/bounds/vbox-layout.spec.ts index 42848cd5..e42e6fa1 100644 --- a/packages/sprotty/src/features/bounds/vbox-layout.spec.ts +++ b/packages/sprotty/src/features/bounds/vbox-layout.spec.ts @@ -14,19 +14,19 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; -import { SModelElementImpl, SParentElementImpl } from '../../base/model/smodel'; -import { createFeatureSet } from '../../base/model/smodel-factory'; -import { SNodeImpl, SLabelImpl } from '../../graph/sgraph'; -import { StatefulLayouter, LayoutRegistry } from './layout'; -import { BoundsData } from './hidden-bounds-updater'; -import { ConsoleLogger } from '../../utils/logging'; import { Container } from 'inversify'; -import boundsModule from './di.config'; -import { TYPES } from '../../base/types'; -import defaultModule from '../../base/di.config'; +import 'reflect-metadata'; import { Dimension } from 'sprotty-protocol'; +import { describe, expect, it } from 'vitest'; +import defaultModule from '../../base/di.config.js'; +import { createFeatureSet } from '../../base/model/smodel-factory.js'; +import { SModelElementImpl, SParentElementImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { SLabelImpl, SNodeImpl } from '../../graph/sgraph.js'; +import { ConsoleLogger } from '../../utils/logging.js'; +import boundsModule from './di.config.js'; +import { BoundsData } from './hidden-bounds-updater.js'; +import { LayoutRegistry, StatefulLayouter } from './layout.js'; describe('VBoxLayouter', () => { diff --git a/packages/sprotty/src/features/bounds/vbox-layout.ts b/packages/sprotty/src/features/bounds/vbox-layout.ts index 48b034c9..8f658ea7 100644 --- a/packages/sprotty/src/features/bounds/vbox-layout.ts +++ b/packages/sprotty/src/features/bounds/vbox-layout.ts @@ -15,14 +15,13 @@ ********************************************************************************/ import { injectable } from 'inversify'; -import { Bounds, Dimension, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SParentElementImpl, SChildElementImpl } from "../../base/model/smodel"; -import { AbstractLayout } from './abstract-layout'; -import { AbstractLayoutOptions } from './layout-options'; -import { BoundsData } from './hidden-bounds-updater'; -import { InternalLayoutContainer, isLayoutableChild } from './model'; -import { StatefulLayouter } from './layout'; -import { HAlignment } from 'sprotty-protocol/lib/model'; +import { Bounds, Dimension, HAlignment, Point } from 'sprotty-protocol'; +import { SChildElementImpl, SParentElementImpl } from "../../base/model/smodel.js"; +import { AbstractLayout } from './abstract-layout.js'; +import { BoundsData } from './hidden-bounds-updater.js'; +import { AbstractLayoutOptions } from './layout-options.js'; +import { StatefulLayouter } from './layout.js'; +import { InternalLayoutContainer, isLayoutableChild } from './model.js'; export interface VBoxLayoutOptions extends AbstractLayoutOptions { vGap: number diff --git a/packages/sprotty/src/features/bounds/views.spec.ts b/packages/sprotty/src/features/bounds/views.spec.ts index 85a3bac7..90ddd3f7 100644 --- a/packages/sprotty/src/features/bounds/views.spec.ts +++ b/packages/sprotty/src/features/bounds/views.spec.ts @@ -16,12 +16,12 @@ import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; -import { IViewArgs, RenderingContext } from '../../base/views/view'; -import { ViewportRootElementImpl } from '../viewport/viewport-root'; -import { SShapeElementImpl } from './model'; -import { ShapeView } from './views'; import { VNode } from 'snabbdom'; +import { describe, expect, it } from 'vitest'; +import { IViewArgs, RenderingContext } from '../../base/views/view.js'; +import { ViewportRootElementImpl } from '../viewport/viewport-root.js'; +import { SShapeElementImpl } from './model.js'; +import { ShapeView } from './views.js'; describe('ShapeView.isVisible', () => { diff --git a/packages/sprotty/src/features/bounds/views.ts b/packages/sprotty/src/features/bounds/views.ts index 913de073..04cd85e6 100644 --- a/packages/sprotty/src/features/bounds/views.ts +++ b/packages/sprotty/src/features/bounds/views.ts @@ -16,10 +16,10 @@ import { injectable } from 'inversify'; import { VNode } from 'snabbdom'; -import { Dimension } from 'sprotty-protocol/lib/utils/geometry'; -import { IViewArgs, IView, RenderingContext } from '../../base/views/view'; -import { getAbsoluteBounds, InternalBoundsAware } from './model'; -import { SChildElementImpl } from '../../base/model/smodel'; +import { Dimension } from 'sprotty-protocol'; +import { SChildElementImpl } from '../../base/model/smodel.js'; +import { IView, IViewArgs, RenderingContext } from '../../base/views/view.js'; +import { getAbsoluteBounds, InternalBoundsAware } from './model.js'; @injectable() export abstract class ShapeView implements IView { diff --git a/packages/sprotty/src/features/button/button-handler.ts b/packages/sprotty/src/features/button/button-handler.ts index ab7562b8..c74401bc 100644 --- a/packages/sprotty/src/features/button/button-handler.ts +++ b/packages/sprotty/src/features/button/button-handler.ts @@ -15,11 +15,11 @@ ********************************************************************************/ import { injectable, interfaces, multiInject, optional } from 'inversify'; -import { Action } from 'sprotty-protocol/lib/actions'; -import { InstanceRegistry } from '../../utils/registry'; -import { TYPES } from '../../base/types'; -import { SButtonImpl } from './model'; -import { isInjectable } from '../../utils/inversify'; +import { Action } from 'sprotty-protocol'; +import { TYPES } from '../../base/types.js'; +import { isInjectable } from '../../utils/inversify.js'; +import { InstanceRegistry } from '../../utils/registry.js'; +import { SButtonImpl } from './model.js'; export interface IButtonHandler { buttonPressed(button: SButtonImpl): (Action | Promise)[] diff --git a/packages/sprotty/src/features/button/di.config.ts b/packages/sprotty/src/features/button/di.config.ts index 3f0151b8..b190e195 100644 --- a/packages/sprotty/src/features/button/di.config.ts +++ b/packages/sprotty/src/features/button/di.config.ts @@ -15,7 +15,7 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { ButtonHandlerRegistry } from './button-handler'; +import { ButtonHandlerRegistry } from './button-handler.js'; const buttonModule = new ContainerModule(bind => { bind(ButtonHandlerRegistry).toSelf().inSingletonScope(); diff --git a/packages/sprotty/src/features/button/model.ts b/packages/sprotty/src/features/button/model.ts index a5e83293..b03de77d 100644 --- a/packages/sprotty/src/features/button/model.ts +++ b/packages/sprotty/src/features/button/model.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { SShapeElement } from 'sprotty-protocol'; -import { boundsFeature, layoutableChildFeature, SShapeElementImpl } from '../bounds/model'; -import { fadeFeature } from '../fade/model'; +import { boundsFeature, layoutableChildFeature, SShapeElementImpl } from '../bounds/model.js'; +import { fadeFeature } from '../fade/model.js'; /** * @deprecated Use SButton from `sprotty-protocol` instead. diff --git a/packages/sprotty/src/features/command-palette/action-providers.ts b/packages/sprotty/src/features/command-palette/action-providers.ts index 0d064634..a0ef4d7a 100644 --- a/packages/sprotty/src/features/command-palette/action-providers.ts +++ b/packages/sprotty/src/features/command-palette/action-providers.ts @@ -15,14 +15,13 @@ ********************************************************************************/ import { inject, injectable, multiInject, optional } from "inversify"; -import { CenterAction, SelectAction, SelectAllAction } from "sprotty-protocol/lib/actions"; -import { Point } from "sprotty-protocol/lib/utils/geometry"; -import { LabeledAction } from "../../base/actions/action"; -import { SModelRootImpl } from "../../base/model/smodel"; -import { TYPES } from "../../base/types"; -import { toArray } from "../../utils/iterable"; -import { ILogger } from "../../utils/logging"; -import { isNameable, name } from "../nameable/model"; +import { CenterAction, Point, SelectAction, SelectAllAction } from "sprotty-protocol"; +import { LabeledAction } from "../../base/actions/action.js"; +import { SModelRootImpl } from "../../base/model/smodel.js"; +import { TYPES } from "../../base/types.js"; +import { toArray } from "../../utils/iterable.js"; +import { ILogger } from "../../utils/logging.js"; +import { isNameable, name } from "../nameable/model.js"; export interface ICommandPaletteActionProvider { getActions(root: Readonly, text: string, lastMousePosition?: Point, index?: number): Promise; diff --git a/packages/sprotty/src/features/command-palette/command-palette.ts b/packages/sprotty/src/features/command-palette/command-palette.ts index b95c8190..fdaa97bc 100644 --- a/packages/sprotty/src/features/command-palette/command-palette.ts +++ b/packages/sprotty/src/features/command-palette/command-palette.ts @@ -13,26 +13,25 @@ * * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { AutocompleteResult, AutocompleteSettings } from "autocompleter"; +import configureAutocomplete, { AutocompleteResult, AutocompleteSettings } from "autocompleter"; import { inject, injectable } from "inversify"; -import { Action, isAction } from 'sprotty-protocol/lib/actions'; -import { LabeledAction, isLabeledAction } from "../../base/actions/action"; -import { IActionDispatcherProvider } from "../../base/actions/action-dispatcher"; -import { SModelElementImpl, SModelRootImpl } from "../../base/model/smodel"; -import { TYPES } from "../../base/types"; -import { AbstractUIExtension } from "../../base/ui-extensions/ui-extension"; -import { SetUIExtensionVisibilityAction } from "../../base/ui-extensions/ui-extension-registry"; -import { DOMHelper } from "../../base/views/dom-helper"; -import { KeyListener } from "../../base/views/key-tool"; -import { ViewerOptions } from "../../base/views/viewer-options"; -import { codiconCSSClasses, codiconCSSString } from "../../utils/codicon"; -import { toArray } from "../../utils/iterable"; -import { matchesKeystroke } from "../../utils/keyboard"; -import { getAbsoluteClientBounds } from "../bounds/model"; -import { isSelectable } from "../select/model"; -import { CommandPaletteActionProviderRegistry } from "./action-providers"; -import { MousePositionTracker } from "../../base/views/mouse-tool"; -import configureAutocomplete from "autocompleter"; +import { Action, isAction } from 'sprotty-protocol'; +import { IActionDispatcherProvider } from "../../base/actions/action-dispatcher.js"; +import { LabeledAction, isLabeledAction } from "../../base/actions/action.js"; +import { SModelElementImpl, SModelRootImpl } from "../../base/model/smodel.js"; +import { TYPES } from "../../base/types.js"; +import { SetUIExtensionVisibilityAction } from "../../base/ui-extensions/ui-extension-registry.js"; +import { AbstractUIExtension } from "../../base/ui-extensions/ui-extension.js"; +import { DOMHelper } from "../../base/views/dom-helper.js"; +import { KeyListener } from "../../base/views/key-tool.js"; +import { MousePositionTracker } from "../../base/views/mouse-tool.js"; +import { ViewerOptions } from "../../base/views/viewer-options.js"; +import { codiconCSSClasses, codiconCSSString } from "../../utils/codicon.js"; +import { toArray } from "../../utils/iterable.js"; +import { matchesKeystroke } from "../../utils/keyboard.js"; +import { getAbsoluteClientBounds } from "../bounds/model.js"; +import { isSelectable } from "../select/model.js"; +import { CommandPaletteActionProviderRegistry } from "./action-providers.js"; @injectable() export class CommandPalette extends AbstractUIExtension { @@ -66,7 +65,7 @@ export class CommandPalette extends AbstractUIExtension { this.paletteIndex = 0; this.contextActions = undefined; this.inputElement!.value = ""; - this.autoCompleteResult = configureAutocomplete(this.autocompleteSettings(root)); + this.autoCompleteResult = configureAutocomplete.default(this.autocompleteSettings(root)); this.inputElement.focus(); } diff --git a/packages/sprotty/src/features/command-palette/di.config.ts b/packages/sprotty/src/features/command-palette/di.config.ts index 89426a50..08001a36 100644 --- a/packages/sprotty/src/features/command-palette/di.config.ts +++ b/packages/sprotty/src/features/command-palette/di.config.ts @@ -14,9 +14,9 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; -import { CommandPaletteActionProviderRegistry } from "./action-providers"; -import { CommandPalette, CommandPaletteKeyListener } from "./command-palette"; +import { TYPES } from "../../base/types.js"; +import { CommandPaletteActionProviderRegistry } from "./action-providers.js"; +import { CommandPalette, CommandPaletteKeyListener } from "./command-palette.js"; const commandPaletteModule = new ContainerModule((bind) => { bind(CommandPalette).toSelf().inSingletonScope(); diff --git a/packages/sprotty/src/features/context-menu/context-menu-service.ts b/packages/sprotty/src/features/context-menu/context-menu-service.ts index 5a24ca90..cfcef85b 100644 --- a/packages/sprotty/src/features/context-menu/context-menu-service.ts +++ b/packages/sprotty/src/features/context-menu/context-menu-service.ts @@ -13,7 +13,7 @@ * * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { LabeledAction } from "../../base/actions/action"; +import { LabeledAction } from "../../base/actions/action.js"; export interface MenuItem extends LabeledAction { /** Technical id of the menu item. */ diff --git a/packages/sprotty/src/features/context-menu/di.config.ts b/packages/sprotty/src/features/context-menu/di.config.ts index 35d966fd..ac520b82 100644 --- a/packages/sprotty/src/features/context-menu/di.config.ts +++ b/packages/sprotty/src/features/context-menu/di.config.ts @@ -15,10 +15,10 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { IContextMenuService } from "./context-menu-service"; -import { ContextMenuProviderRegistry } from "./menu-providers"; -import { ContextMenuMouseListener } from "./mouse-listener"; -import { TYPES } from "../../base/types"; +import { TYPES } from "../../base/types.js"; +import { IContextMenuService } from "./context-menu-service.js"; +import { ContextMenuProviderRegistry } from "./menu-providers.js"; +import { ContextMenuMouseListener } from "./mouse-listener.js"; const contextMenuModule = new ContainerModule(bind => { bind(TYPES.IContextMenuServiceProvider).toProvider(ctx => { diff --git a/packages/sprotty/src/features/context-menu/menu-providers.spec.ts b/packages/sprotty/src/features/context-menu/menu-providers.spec.ts index 39d0df7a..fbd4783d 100644 --- a/packages/sprotty/src/features/context-menu/menu-providers.spec.ts +++ b/packages/sprotty/src/features/context-menu/menu-providers.spec.ts @@ -17,8 +17,8 @@ import 'reflect-metadata'; import { expect, describe, it } from 'vitest'; -import { ContextMenuProviderRegistry } from "./menu-providers"; -import { SModelRootImpl } from "../../base/model/smodel"; +import { ContextMenuProviderRegistry } from "./menu-providers.js"; +import { SModelRootImpl } from "../../base/model/smodel.js"; describe('ContextMenuProviderRegistry', () => { diff --git a/packages/sprotty/src/features/context-menu/menu-providers.ts b/packages/sprotty/src/features/context-menu/menu-providers.ts index 1d2a8d1d..1a253bc8 100644 --- a/packages/sprotty/src/features/context-menu/menu-providers.ts +++ b/packages/sprotty/src/features/context-menu/menu-providers.ts @@ -15,14 +15,13 @@ ********************************************************************************/ import { injectable, multiInject, optional } from 'inversify'; -import { Point } from 'sprotty-protocol/lib/utils/geometry'; -import { MenuItem } from './context-menu-service'; -import { SModelRootImpl } from '../../base/model/smodel'; -import { LabeledAction } from '../../base/actions/action'; -import { TYPES } from '../../base/types'; -import { isDeletable } from '../edit/delete'; -import { isSelected } from '../select/model'; -import { DeleteElementAction } from 'sprotty-protocol'; +import { DeleteElementAction, Point } from 'sprotty-protocol'; +import { LabeledAction } from '../../base/actions/action.js'; +import { SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { isDeletable } from '../edit/delete.js'; +import { isSelected } from '../select/model.js'; +import { MenuItem } from './context-menu-service.js'; export interface IContextMenuItemProvider { getItems(root: Readonly, lastMousePosition?: Point): Promise; diff --git a/packages/sprotty/src/features/context-menu/mouse-listener.ts b/packages/sprotty/src/features/context-menu/mouse-listener.ts index 570dcf6d..c96a255a 100644 --- a/packages/sprotty/src/features/context-menu/mouse-listener.ts +++ b/packages/sprotty/src/features/context-menu/mouse-listener.ts @@ -15,15 +15,15 @@ ********************************************************************************/ import { inject } from "inversify"; -import { Action, SelectAction } from "sprotty-protocol/lib/actions"; -import { IActionDispatcher } from "../../base/actions/action-dispatcher"; -import { SModelElementImpl } from "../../base/model/smodel"; -import { findParentByFeature } from "../../base/model/smodel-utils"; -import { TYPES } from "../../base/types"; -import { MouseListener } from "../../base/views/mouse-tool"; -import { isSelectable, isSelected } from "../select/model"; -import { IContextMenuService, IContextMenuServiceProvider } from "./context-menu-service"; -import { ContextMenuProviderRegistry } from "./menu-providers"; +import { Action, SelectAction } from "sprotty-protocol"; +import { IActionDispatcher } from "../../base/actions/action-dispatcher.js"; +import { findParentByFeature } from "../../base/model/smodel-utils.js"; +import { SModelElementImpl } from "../../base/model/smodel.js"; +import { TYPES } from "../../base/types.js"; +import { MouseListener } from "../../base/views/mouse-tool.js"; +import { isSelectable, isSelected } from "../select/model.js"; +import { IContextMenuService, IContextMenuServiceProvider } from "./context-menu-service.js"; +import { ContextMenuProviderRegistry } from "./menu-providers.js"; export class ContextMenuMouseListener extends MouseListener { @inject(TYPES.IActionDispatcher) protected actionDispatcher: IActionDispatcher; diff --git a/packages/sprotty/src/features/decoration/decoration-placer.ts b/packages/sprotty/src/features/decoration/decoration-placer.ts index 46026376..15b1d993 100644 --- a/packages/sprotty/src/features/decoration/decoration-placer.ts +++ b/packages/sprotty/src/features/decoration/decoration-placer.ts @@ -14,16 +14,16 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { injectable, inject } from "inversify"; +import { inject, injectable } from "inversify"; import { VNode } from "snabbdom"; -import { SModelElementImpl, SChildElementImpl } from "../../base/model/smodel"; -import { IVNodePostprocessor } from "../../base/views/vnode-postprocessor"; -import { isDecoration, Decoration } from "./model"; -import { setAttr } from "../../base/views/vnode-utils"; -import { isSizeable } from "../bounds/model"; -import { SRoutableElementImpl } from "../routing/model"; -import { EdgeRouterRegistry } from "../routing/routing"; import { Point } from "sprotty-protocol"; +import { SChildElementImpl, SModelElementImpl } from "../../base/model/smodel.js"; +import { IVNodePostprocessor } from "../../base/views/vnode-postprocessor.js"; +import { setAttr } from "../../base/views/vnode-utils.js"; +import { isSizeable } from "../bounds/model.js"; +import { SRoutableElementImpl } from "../routing/model.js"; +import { EdgeRouterRegistry } from "../routing/routing.js"; +import { Decoration, isDecoration } from "./model.js"; @injectable() export class DecorationPlacer implements IVNodePostprocessor { diff --git a/packages/sprotty/src/features/decoration/di.config.ts b/packages/sprotty/src/features/decoration/di.config.ts index fa589531..8382b2b5 100644 --- a/packages/sprotty/src/features/decoration/di.config.ts +++ b/packages/sprotty/src/features/decoration/di.config.ts @@ -14,12 +14,12 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { configureModelElement } from "../../base/views/view"; +import { configureModelElement } from "../../base/views/view.js"; import { ContainerModule } from "inversify"; -import { SIssueMarkerImpl } from "./model"; -import { IssueMarkerView } from "./views"; -import { TYPES } from "../../base/types"; -import { DecorationPlacer } from "./decoration-placer"; +import { SIssueMarkerImpl } from "./model.js"; +import { IssueMarkerView } from "./views.js"; +import { TYPES } from "../../base/types.js"; +import { DecorationPlacer } from "./decoration-placer.js"; const decorationModule = new ContainerModule((bind, _unbind, isBound) => { configureModelElement({ bind, isBound }, 'marker', SIssueMarkerImpl, IssueMarkerView); diff --git a/packages/sprotty/src/features/decoration/model.ts b/packages/sprotty/src/features/decoration/model.ts index d8261549..5cf432ab 100644 --- a/packages/sprotty/src/features/decoration/model.ts +++ b/packages/sprotty/src/features/decoration/model.ts @@ -14,10 +14,10 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { SIssue as SIssueSchema } from 'sprotty-protocol/lib/model'; -import { SModelElementImpl } from '../../base/model/smodel'; -import { SShapeElementImpl, boundsFeature } from '../bounds/model'; -import { hoverFeedbackFeature, popupFeature } from '../hover/model'; +import { SIssue as SIssueSchema } from 'sprotty-protocol'; +import { SModelElementImpl } from '../../base/model/smodel.js'; +import { SShapeElementImpl, boundsFeature } from '../bounds/model.js'; +import { hoverFeedbackFeature, popupFeature } from '../hover/model.js'; export const decorationFeature = Symbol('decorationFeature'); diff --git a/packages/sprotty/src/features/decoration/views.tsx b/packages/sprotty/src/features/decoration/views.tsx index 1dd01e67..c9e0d6cc 100644 --- a/packages/sprotty/src/features/decoration/views.tsx +++ b/packages/sprotty/src/features/decoration/views.tsx @@ -15,13 +15,13 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from '../../lib/jsx'; +import { svg } from '../../lib/jsx.js'; -import { VNode } from 'snabbdom'; -import { IView, RenderingContext } from '../../base/views/view'; -import { SIssueMarkerImpl, SIssueSeverity } from './model'; -import { setClass } from '../../base/views/vnode-utils'; import { injectable } from 'inversify'; +import { VNode } from 'snabbdom'; +import { IView, RenderingContext } from '../../base/views/view.js'; +import { setClass } from '../../base/views/vnode-utils.js'; +import { SIssueMarkerImpl, SIssueSeverity } from './model.js'; @injectable() export class IssueMarkerView implements IView { diff --git a/packages/sprotty/src/features/edge-intersection/di.config.ts b/packages/sprotty/src/features/edge-intersection/di.config.ts index 0a16feb9..5b18df1a 100644 --- a/packages/sprotty/src/features/edge-intersection/di.config.ts +++ b/packages/sprotty/src/features/edge-intersection/di.config.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; -import { IntersectionFinder } from "../edge-intersection/intersection-finder"; +import { TYPES } from "../../base/types.js"; +import { IntersectionFinder } from "../edge-intersection/intersection-finder.js"; const edgeIntersectionModule = new ContainerModule(bind => { bind(IntersectionFinder).toSelf().inSingletonScope(); diff --git a/packages/sprotty/src/features/edge-intersection/intersection-finder.spec.ts b/packages/sprotty/src/features/edge-intersection/intersection-finder.spec.ts index 86b97b50..36a5e5fe 100644 --- a/packages/sprotty/src/features/edge-intersection/intersection-finder.spec.ts +++ b/packages/sprotty/src/features/edge-intersection/intersection-finder.spec.ts @@ -15,9 +15,9 @@ ********************************************************************************/ import "reflect-metadata"; -import { expect, describe, it } from 'vitest'; -import { EdgeRouting } from "../routing/routing"; -import { IntersectionFinder } from "./intersection-finder"; +import { describe, expect, it } from 'vitest'; +import { EdgeRouting } from "../routing/routing.js"; +import { IntersectionFinder } from "./intersection-finder.js"; describe('IntersectionFinder', () => { diff --git a/packages/sprotty/src/features/edge-intersection/intersection-finder.ts b/packages/sprotty/src/features/edge-intersection/intersection-finder.ts index ece77f5a..f318d387 100644 --- a/packages/sprotty/src/features/edge-intersection/intersection-finder.ts +++ b/packages/sprotty/src/features/edge-intersection/intersection-finder.ts @@ -15,10 +15,10 @@ ********************************************************************************/ import { injectable } from "inversify"; -import { Point } from "sprotty-protocol/lib/utils/geometry"; +import { Point } from "sprotty-protocol"; import TinyQueue from "tinyqueue"; -import { EdgeRouting, IEdgeRoutePostprocessor, RoutedPoint } from "../routing/routing"; -import { addRoute, checkWhichEventIsLeft, runSweep, SweepEvent } from "./sweepline"; +import { EdgeRouting, IEdgeRoutePostprocessor, RoutedPoint } from "../routing/routing.js"; +import { addRoute, checkWhichEventIsLeft, runSweep, SweepEvent } from "./sweepline.js"; export interface Intersection { readonly routable1: string; @@ -88,7 +88,7 @@ export class IntersectionFinder implements IEdgeRoutePostprocessor { * @returns the identified intersections. */ find(routing: EdgeRouting): Intersection[] { - const eventQueue = new TinyQueue(undefined, checkWhichEventIsLeft); + const eventQueue = new TinyQueue.default(undefined, checkWhichEventIsLeft); routing.routes.forEach((route, routeId) => { if (this.isSupportedRoute(route)) { addRoute(routeId, route, eventQueue); diff --git a/packages/sprotty/src/features/edge-intersection/sweepline.ts b/packages/sprotty/src/features/edge-intersection/sweepline.ts index f8590998..f967ebd1 100644 --- a/packages/sprotty/src/features/edge-intersection/sweepline.ts +++ b/packages/sprotty/src/features/edge-intersection/sweepline.ts @@ -15,11 +15,11 @@ ********************************************************************************/ // Based on the sweepline implementation at https://github.com/rowanwins/sweepline-intersections // which is published under the terms of MIT, but has been adapted to the use case of sprotty. +import { Point } from "sprotty-protocol"; import TinyQueue from "tinyqueue"; -import { Point } from "sprotty-protocol/lib/utils/geometry"; -import { PointToPointLine } from "../../utils/geometry"; -import { Intersection } from "./intersection-finder"; -import { RoutedPoint } from "../routing/routing"; +import { PointToPointLine } from "../../utils/geometry.js"; +import { RoutedPoint } from "../routing/routing.js"; +import { Intersection } from "./intersection-finder.js"; /* * The algorithm implemented in this module is loosely based on the Bentley-Ottmann algorithm for @@ -42,7 +42,7 @@ import { RoutedPoint } from "../routing/routing"; * @param route the route as array of points. * @param queue the queue to add the route to. */ -export function addRoute(routeId: string, route: RoutedPoint[], queue: TinyQueue) { +export function addRoute(routeId: string, route: RoutedPoint[], queue: TinyQueue.default) { if (route.length < 1) return; let currentPoint = route[0]; let nextPoint = undefined; @@ -122,9 +122,9 @@ export class Segment { * @param eventQueue the event queue. * @returns the identified intersections. */ -export function runSweep(eventQueue: TinyQueue): Intersection[] { +export function runSweep(eventQueue: TinyQueue.default): Intersection[] { const intersectionPoints: Intersection[] = []; - const outQueue = new TinyQueue([], checkWhichSegmentHasRightEndpointFirst); + const outQueue = new TinyQueue.default([], checkWhichSegmentHasRightEndpointFirst); while (eventQueue.length) { const event = eventQueue.pop(); if (event?.isLeftEndpoint) { diff --git a/packages/sprotty/src/features/edge-junction/di.config.ts b/packages/sprotty/src/features/edge-junction/di.config.ts index bb14a3eb..cf9800ab 100644 --- a/packages/sprotty/src/features/edge-junction/di.config.ts +++ b/packages/sprotty/src/features/edge-junction/di.config.ts @@ -15,9 +15,9 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; -import { JunctionFinder } from "./junction-finder"; -import { JunctionPostProcessor } from "./junction-postprocessor"; +import { TYPES } from "../../base/types.js"; +import { JunctionFinder } from "./junction-finder.js"; +import { JunctionPostProcessor } from "./junction-postprocessor.js"; const edgeJunctionModule = new ContainerModule(bind => { bind(JunctionFinder).toSelf().inSingletonScope(); diff --git a/packages/sprotty/src/features/edge-junction/junction-finder.spec.ts b/packages/sprotty/src/features/edge-junction/junction-finder.spec.ts index 5ab99151..09fc6f05 100644 --- a/packages/sprotty/src/features/edge-junction/junction-finder.spec.ts +++ b/packages/sprotty/src/features/edge-junction/junction-finder.spec.ts @@ -18,9 +18,9 @@ import 'reflect-metadata'; import { Point } from 'sprotty-protocol'; import { assert, describe, expect, it } from 'vitest'; -import { SEdgeImpl, SGraphImpl } from '../../graph/sgraph'; -import { EdgeRouting, RoutedPoint } from '../routing/routing'; -import { JunctionFinder } from './junction-finder'; +import { SEdgeImpl, SGraphImpl } from '../../graph/sgraph.js'; +import { EdgeRouting, RoutedPoint } from '../routing/routing.js'; +import { JunctionFinder } from './junction-finder.js'; describe('JunctionFinder', () => { diff --git a/packages/sprotty/src/features/edge-junction/junction-finder.ts b/packages/sprotty/src/features/edge-junction/junction-finder.ts index e1011548..8fb68b08 100644 --- a/packages/sprotty/src/features/edge-junction/junction-finder.ts +++ b/packages/sprotty/src/features/edge-junction/junction-finder.ts @@ -15,9 +15,9 @@ ********************************************************************************/ import { injectable } from "inversify"; -import { SParentElementImpl } from "../../base/model/smodel"; -import { SEdgeImpl } from "../../graph/sgraph"; -import { EdgeRouting, IEdgeRoutePostprocessor, RoutedPoint } from "../routing/routing"; +import { SParentElementImpl } from "../../base/model/smodel.js"; +import { SEdgeImpl } from "../../graph/sgraph.js"; +import { EdgeRouting, IEdgeRoutePostprocessor, RoutedPoint } from "../routing/routing.js"; /** * Finds junction points in the edge routes. A junction point is a point where two or more edges split. diff --git a/packages/sprotty/src/features/edge-junction/junction-postprocessor.ts b/packages/sprotty/src/features/edge-junction/junction-postprocessor.ts index b2ca3068..36fcb83f 100644 --- a/packages/sprotty/src/features/edge-junction/junction-postprocessor.ts +++ b/packages/sprotty/src/features/edge-junction/junction-postprocessor.ts @@ -17,11 +17,11 @@ import { inject, injectable } from "inversify"; import { VNode } from "snabbdom"; import { Action, RequestBoundsAction, SModelRoot } from "sprotty-protocol"; -import { SModelElementImpl } from "../../base/model/smodel"; -import { TYPES } from "../../base/types"; -import { ViewerOptions } from "../../base/views/viewer-options"; -import { IVNodePostprocessor } from "../../base/views/vnode-postprocessor"; -import { ModelSource } from "../../model-source/model-source"; +import { SModelElementImpl } from "../../base/model/smodel.js"; +import { TYPES } from "../../base/types.js"; +import { ViewerOptions } from "../../base/views/viewer-options.js"; +import { IVNodePostprocessor } from "../../base/views/vnode-postprocessor.js"; +import { ModelSource } from "../../model-source/model-source.js"; /** * Finds all junction points in the first SVG group element (diagram root level) and moves them to the end of the SVG. diff --git a/packages/sprotty/src/features/edge-layout/di.config.ts b/packages/sprotty/src/features/edge-layout/di.config.ts index e78247e9..c8154f12 100644 --- a/packages/sprotty/src/features/edge-layout/di.config.ts +++ b/packages/sprotty/src/features/edge-layout/di.config.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; -import { EdgeLayoutPostprocessor } from "./edge-layout"; +import { TYPES } from "../../base/types.js"; +import { EdgeLayoutPostprocessor } from "./edge-layout.js"; const edgeLayoutModule = new ContainerModule(bind => { bind(EdgeLayoutPostprocessor).toSelf().inSingletonScope(); diff --git a/packages/sprotty/src/features/edge-layout/edge-layout.ts b/packages/sprotty/src/features/edge-layout/edge-layout.ts index 17a79879..aa8c3d27 100644 --- a/packages/sprotty/src/features/edge-layout/edge-layout.ts +++ b/packages/sprotty/src/features/edge-layout/edge-layout.ts @@ -14,21 +14,20 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { injectable, inject } from 'inversify'; +import { inject, injectable } from 'inversify'; import { VNode } from 'snabbdom'; -import { Bounds, Point, toDegrees } from 'sprotty-protocol/lib/utils/geometry'; -import { EdgeLayoutable, EdgePlacement } from 'sprotty-protocol/lib/model'; -import { SModelElementImpl, SChildElementImpl } from '../../base/model/smodel'; -import { IVNodePostprocessor } from '../../base/views/vnode-postprocessor'; -import { setAttr } from '../../base/views/vnode-utils'; -import { SEdgeImpl } from '../../graph/sgraph'; -import { Orientation } from '../../utils/geometry'; -import { isAlignable, InternalBoundsAware } from '../bounds/model'; -import { DEFAULT_EDGE_PLACEMENT, isEdgeLayoutable, checkEdgePlacement } from './model'; -import { EdgeRouterRegistry } from '../routing/routing'; -import { TYPES } from '../../base/types'; -import { ILogger } from '../../utils/logging'; -import { isMoveable } from '../move/model'; +import { Bounds, EdgeLayoutable, EdgePlacement, Point, toDegrees } from 'sprotty-protocol'; +import { SChildElementImpl, SModelElementImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { IVNodePostprocessor } from '../../base/views/vnode-postprocessor.js'; +import { setAttr } from '../../base/views/vnode-utils.js'; +import { SEdgeImpl } from '../../graph/sgraph.js'; +import { Orientation } from '../../utils/geometry.js'; +import { ILogger } from '../../utils/logging.js'; +import { InternalBoundsAware, isAlignable } from '../bounds/model.js'; +import { isMoveable } from '../move/model.js'; +import { EdgeRouterRegistry } from '../routing/routing.js'; +import { checkEdgePlacement, DEFAULT_EDGE_PLACEMENT, isEdgeLayoutable } from './model.js'; @injectable() export class EdgeLayoutPostprocessor implements IVNodePostprocessor { diff --git a/packages/sprotty/src/features/edge-layout/model.ts b/packages/sprotty/src/features/edge-layout/model.ts index 3c36df59..64a8bf23 100644 --- a/packages/sprotty/src/features/edge-layout/model.ts +++ b/packages/sprotty/src/features/edge-layout/model.ts @@ -14,10 +14,10 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import type { EdgePlacement as EdgePlacementSchema } from 'sprotty-protocol/lib/model'; -import { SModelElementImpl, SChildElementImpl } from '../../base/model/smodel'; -import { InternalBoundsAware, isBoundsAware } from '../bounds/model'; -import { SRoutableElementImpl } from '../routing/model'; +import type { EdgePlacement as EdgePlacementSchema } from 'sprotty-protocol'; +import { SChildElementImpl, SModelElementImpl } from '../../base/model/smodel.js'; +import { InternalBoundsAware, isBoundsAware } from '../bounds/model.js'; +import { SRoutableElementImpl } from '../routing/model.js'; export const edgeLayoutFeature = Symbol('edgeLayout'); diff --git a/packages/sprotty/src/features/edit/create-on-drag.ts b/packages/sprotty/src/features/edit/create-on-drag.ts index 7085e539..6aa70c0a 100644 --- a/packages/sprotty/src/features/edit/create-on-drag.ts +++ b/packages/sprotty/src/features/edit/create-on-drag.ts @@ -14,8 +14,8 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Action } from "sprotty-protocol/lib/actions"; -import { SModelElementImpl } from "../../base/model/smodel"; +import { Action } from "sprotty-protocol"; +import { SModelElementImpl } from "../../base/model/smodel.js"; export const creatingOnDragFeature = Symbol('creatingOnDragFeature'); diff --git a/packages/sprotty/src/features/edit/create.ts b/packages/sprotty/src/features/edit/create.ts index 916a3b1e..8b26e913 100644 --- a/packages/sprotty/src/features/edit/create.ts +++ b/packages/sprotty/src/features/edit/create.ts @@ -15,10 +15,10 @@ ********************************************************************************/ import { inject, injectable } from 'inversify'; -import { CreateElementAction } from 'sprotty-protocol/lib/actions'; -import { Command, CommandExecutionContext, CommandReturn } from '../../base/commands/command'; -import { SParentElementImpl, SChildElementImpl } from '../../base/model/smodel'; -import { TYPES } from '../../base/types'; +import { CreateElementAction } from 'sprotty-protocol'; +import { Command, CommandExecutionContext, CommandReturn } from '../../base/commands/command.js'; +import { SChildElementImpl, SParentElementImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; @injectable() export class CreateElementCommand extends Command { diff --git a/packages/sprotty/src/features/edit/delete.ts b/packages/sprotty/src/features/edit/delete.ts index 609445f7..d0caa66a 100644 --- a/packages/sprotty/src/features/edit/delete.ts +++ b/packages/sprotty/src/features/edit/delete.ts @@ -15,10 +15,10 @@ ********************************************************************************/ import { inject, injectable } from 'inversify'; -import { DeleteElementAction } from 'sprotty-protocol/lib/actions'; -import { Command, CommandExecutionContext, CommandReturn } from '../../base/commands/command'; -import { SModelElementImpl, SParentElementImpl, SChildElementImpl } from '../../base/model/smodel'; -import { TYPES } from '../../base/types'; +import { DeleteElementAction } from 'sprotty-protocol'; +import { Command, CommandExecutionContext, CommandReturn } from '../../base/commands/command.js'; +import { SChildElementImpl, SModelElementImpl, SParentElementImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; export const deletableFeature = Symbol('deletableFeature'); diff --git a/packages/sprotty/src/features/edit/di.config.ts b/packages/sprotty/src/features/edit/di.config.ts index 435223a4..9869b096 100644 --- a/packages/sprotty/src/features/edit/di.config.ts +++ b/packages/sprotty/src/features/edit/di.config.ts @@ -15,17 +15,17 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; -import { configureCommand } from "../../base/commands/command-registration"; -import { configureActionHandler } from "../../base/actions/action-handler"; -import { configureModelElement } from "../../base/views/view"; -import { SDanglingAnchorImpl } from "../../features/routing/model"; -import { EmptyGroupView } from "../../lib/svg-views"; -import { DeleteElementCommand } from "./delete"; -import { EditLabelMouseListener, ApplyLabelEditCommand, EditLabelKeyListener, EditLabelAction } from "./edit-label"; -import { EditLabelUI, EditLabelActionHandler } from "./edit-label-ui"; -import { SwitchEditModeCommand } from "./edit-routing"; -import { ReconnectCommand } from "./reconnect"; +import { configureActionHandler } from "../../base/actions/action-handler.js"; +import { configureCommand } from "../../base/commands/command-registration.js"; +import { TYPES } from "../../base/types.js"; +import { configureModelElement } from "../../base/views/view.js"; +import { SDanglingAnchorImpl } from "../../features/routing/model.js"; +import { EmptyGroupView } from "../../lib/svg-views.js"; +import { DeleteElementCommand } from "./delete.js"; +import { EditLabelActionHandler, EditLabelUI } from "./edit-label-ui.js"; +import { ApplyLabelEditCommand, EditLabelAction, EditLabelKeyListener, EditLabelMouseListener } from "./edit-label.js"; +import { SwitchEditModeCommand } from "./edit-routing.js"; +import { ReconnectCommand } from "./reconnect.js"; export const edgeEditModule = new ContainerModule((bind, _unbind, isBound) => { const context = { bind, isBound }; diff --git a/packages/sprotty/src/features/edit/edit-label-ui.ts b/packages/sprotty/src/features/edit/edit-label-ui.ts index d637433e..3ae7edb4 100644 --- a/packages/sprotty/src/features/edit/edit-label-ui.ts +++ b/packages/sprotty/src/features/edit/edit-label-ui.ts @@ -15,22 +15,22 @@ ********************************************************************************/ import { inject, injectable, optional } from 'inversify'; -import { Action, ApplyLabelEditAction } from 'sprotty-protocol/lib/actions'; -import { IActionDispatcherProvider } from '../../base/actions/action-dispatcher'; -import { IActionHandler } from '../../base/actions/action-handler'; -import { ICommand } from '../../base/commands/command'; -import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel'; -import { TYPES } from '../../base/types'; -import { AbstractUIExtension } from '../../base/ui-extensions/ui-extension'; -import { SetUIExtensionVisibilityAction } from '../../base/ui-extensions/ui-extension-registry'; -import { DOMHelper } from '../../base/views/dom-helper'; -import { ViewerOptions } from '../../base/views/viewer-options'; -import { CommitModelAction } from '../../model-source/commit-model'; -import { matchesKeystroke, KeyCode, KeyboardModifier } from '../../utils/keyboard'; -import { getAbsoluteClientBounds } from '../bounds/model'; -import { getZoom } from '../viewport/zoom'; -import { EditLabelValidationResult, IEditLabelValidator, isEditLabelAction, Severity } from './edit-label'; -import { EditableLabel, isEditableLabel } from './model'; +import { Action, ApplyLabelEditAction } from 'sprotty-protocol'; +import { IActionDispatcherProvider } from '../../base/actions/action-dispatcher.js'; +import { IActionHandler } from '../../base/actions/action-handler.js'; +import { ICommand } from '../../base/commands/command.js'; +import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { SetUIExtensionVisibilityAction } from '../../base/ui-extensions/ui-extension-registry.js'; +import { AbstractUIExtension } from '../../base/ui-extensions/ui-extension.js'; +import { DOMHelper } from '../../base/views/dom-helper.js'; +import { ViewerOptions } from '../../base/views/viewer-options.js'; +import { CommitModelAction } from '../../model-source/commit-model.js'; +import { KeyboardModifier, KeyCode, matchesKeystroke } from '../../utils/keyboard.js'; +import { getAbsoluteClientBounds } from '../bounds/model.js'; +import { getZoom } from '../viewport/zoom.js'; +import { EditLabelValidationResult, IEditLabelValidator, isEditLabelAction, Severity } from './edit-label.js'; +import { EditableLabel, isEditableLabel } from './model.js'; /** Shows a UI extension for editing a label on emitted `EditLabelAction`s. */ @injectable() diff --git a/packages/sprotty/src/features/edit/edit-label.ts b/packages/sprotty/src/features/edit/edit-label.ts index a1271bc0..9bf8a843 100644 --- a/packages/sprotty/src/features/edit/edit-label.ts +++ b/packages/sprotty/src/features/edit/edit-label.ts @@ -15,16 +15,16 @@ ********************************************************************************/ import { inject } from 'inversify'; -import { Action, isAction, ApplyLabelEditAction } from 'sprotty-protocol/lib/actions'; -import { CommandExecutionContext, CommandReturn, Command } from '../../base/commands/command'; -import { SModelElementImpl } from '../../base/model/smodel'; -import { TYPES } from '../../base/types'; -import { MouseListener } from '../../base/views/mouse-tool'; -import { KeyListener } from '../../base/views/key-tool'; -import { matchesKeystroke } from '../../utils/keyboard'; -import { isSelectable } from '../select/model'; -import { toArray } from '../../utils/iterable'; -import { EditableLabel, isEditableLabel, isWithEditableLabel } from './model'; +import { Action, ApplyLabelEditAction, isAction } from 'sprotty-protocol'; +import { Command, CommandExecutionContext, CommandReturn } from '../../base/commands/command.js'; +import { SModelElementImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { KeyListener } from '../../base/views/key-tool.js'; +import { MouseListener } from '../../base/views/mouse-tool.js'; +import { toArray } from '../../utils/iterable.js'; +import { matchesKeystroke } from '../../utils/keyboard.js'; +import { isSelectable } from '../select/model.js'; +import { EditableLabel, isEditableLabel, isWithEditableLabel } from './model.js'; export interface EditLabelAction extends Action { kind: typeof EditLabelAction.KIND diff --git a/packages/sprotty/src/features/edit/edit-routing.ts b/packages/sprotty/src/features/edit/edit-routing.ts index ad7e5131..661b509c 100644 --- a/packages/sprotty/src/features/edit/edit-routing.ts +++ b/packages/sprotty/src/features/edit/edit-routing.ts @@ -15,14 +15,13 @@ ********************************************************************************/ import { inject, injectable } from "inversify"; -import { Action } from "sprotty-protocol/lib/actions"; -import { Point } from "sprotty-protocol/lib/utils/geometry"; -import { Command, CommandExecutionContext, CommandReturn } from "../../base/commands/command"; -import { SModelElementImpl, SModelRootImpl, SParentElementImpl } from '../../base/model/smodel'; -import { TYPES } from "../../base/types"; -import { SRoutableElementImpl, SRoutingHandleImpl } from "../routing/model"; -import { EdgeRouterRegistry } from "../routing/routing"; -import { canEditRouting } from './model'; +import { Action, Point } from "sprotty-protocol"; +import { Command, CommandExecutionContext, CommandReturn } from "../../base/commands/command.js"; +import { SModelElementImpl, SModelRootImpl, SParentElementImpl } from '../../base/model/smodel.js'; +import { TYPES } from "../../base/types.js"; +import { SRoutableElementImpl, SRoutingHandleImpl } from "../routing/model.js"; +import { EdgeRouterRegistry } from "../routing/routing.js"; +import { canEditRouting } from './model.js'; export interface SwitchEditModeAction extends Action { kind: typeof SwitchEditModeAction.KIND; diff --git a/packages/sprotty/src/features/edit/model.ts b/packages/sprotty/src/features/edit/model.ts index 28eddef9..12012414 100644 --- a/packages/sprotty/src/features/edit/model.ts +++ b/packages/sprotty/src/features/edit/model.ts @@ -14,9 +14,9 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Dimension, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SModelElementImpl } from '../../base/model/smodel'; -import { SRoutableElementImpl } from '../routing/model'; +import { Dimension, Point } from 'sprotty-protocol'; +import { SModelElementImpl } from '../../base/model/smodel.js'; +import { SRoutableElementImpl } from '../routing/model.js'; export const editFeature = Symbol('editFeature'); diff --git a/packages/sprotty/src/features/edit/reconnect.ts b/packages/sprotty/src/features/edit/reconnect.ts index f89d9759..570d87ba 100644 --- a/packages/sprotty/src/features/edit/reconnect.ts +++ b/packages/sprotty/src/features/edit/reconnect.ts @@ -15,11 +15,11 @@ ********************************************************************************/ import { inject, injectable } from 'inversify'; -import { ReconnectAction } from 'sprotty-protocol/lib/actions'; -import { Command, CommandExecutionContext, CommandReturn } from '../../base/commands/command'; -import { TYPES } from '../../base/types'; -import { SRoutableElementImpl } from '../routing/model'; -import { EdgeMemento, EdgeRouterRegistry } from '../routing/routing'; +import { ReconnectAction } from 'sprotty-protocol'; +import { Command, CommandExecutionContext, CommandReturn } from '../../base/commands/command.js'; +import { TYPES } from '../../base/types.js'; +import { SRoutableElementImpl } from '../routing/model.js'; +import { EdgeMemento, EdgeRouterRegistry } from '../routing/routing.js'; @injectable() export class ReconnectCommand extends Command { diff --git a/packages/sprotty/src/features/expand/di.config.ts b/packages/sprotty/src/features/expand/di.config.ts index bb0bfd4f..d835ddb3 100644 --- a/packages/sprotty/src/features/expand/di.config.ts +++ b/packages/sprotty/src/features/expand/di.config.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { configureButtonHandler } from "../button/button-handler"; -import { ExpandButtonHandler } from "./expand"; +import { configureButtonHandler } from "../button/button-handler.js"; +import { ExpandButtonHandler } from "./expand.js"; const expandModule = new ContainerModule((bind, _unbind, isBound) => { configureButtonHandler({bind, isBound}, ExpandButtonHandler.TYPE, ExpandButtonHandler); diff --git a/packages/sprotty/src/features/expand/expand.ts b/packages/sprotty/src/features/expand/expand.ts index 1bea4d4f..aef04180 100644 --- a/packages/sprotty/src/features/expand/expand.ts +++ b/packages/sprotty/src/features/expand/expand.ts @@ -15,11 +15,11 @@ ********************************************************************************/ import { injectable } from 'inversify'; -import { Action, CollapseExpandAction } from 'sprotty-protocol/lib/actions'; -import { SButtonImpl } from '../button/model'; -import { findParentByFeature } from '../../base/model/smodel-utils'; -import { isExpandable } from './model'; -import { IButtonHandler } from '../button/button-handler'; +import { Action, CollapseExpandAction } from 'sprotty-protocol'; +import { findParentByFeature } from '../../base/model/smodel-utils.js'; +import { IButtonHandler } from '../button/button-handler.js'; +import { SButtonImpl } from '../button/model.js'; +import { isExpandable } from './model.js'; @injectable() export class ExpandButtonHandler implements IButtonHandler { diff --git a/packages/sprotty/src/features/expand/model.ts b/packages/sprotty/src/features/expand/model.ts index a3ddcb39..5a90a0b9 100644 --- a/packages/sprotty/src/features/expand/model.ts +++ b/packages/sprotty/src/features/expand/model.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { SModelElementImpl } from '../../base/model/smodel'; +import { SModelElementImpl } from '../../base/model/smodel.js'; export const expandFeature = Symbol('expandFeature'); diff --git a/packages/sprotty/src/features/expand/views.tsx b/packages/sprotty/src/features/expand/views.tsx index ef05904a..a3a530ce 100644 --- a/packages/sprotty/src/features/expand/views.tsx +++ b/packages/sprotty/src/features/expand/views.tsx @@ -15,14 +15,14 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from '../../lib/jsx'; +import { svg } from '../../lib/jsx.js'; -import { VNode } from 'snabbdom'; -import { IView, RenderingContext } from '../../base/views/view'; -import { isExpandable } from './model'; -import { findParentByFeature } from '../../base/model/smodel-utils'; -import { SButtonImpl } from '../button/model'; import { injectable } from 'inversify'; +import { VNode } from 'snabbdom'; +import { findParentByFeature } from '../../base/model/smodel-utils.js'; +import { IView, RenderingContext } from '../../base/views/view.js'; +import { SButtonImpl } from '../button/model.js'; +import { isExpandable } from './model.js'; @injectable() export class ExpandButtonView implements IView { diff --git a/packages/sprotty/src/features/export/di.config.ts b/packages/sprotty/src/features/export/di.config.ts index 483021f4..9bec284e 100644 --- a/packages/sprotty/src/features/export/di.config.ts +++ b/packages/sprotty/src/features/export/di.config.ts @@ -15,10 +15,10 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from '../../base/types'; -import { ExportSvgPostprocessor, ExportSvgKeyListener, ExportSvgCommand } from './export'; -import { SvgExporter } from './svg-exporter'; -import { configureCommand } from "../../base/commands/command-registration"; +import { configureCommand } from "../../base/commands/command-registration.js"; +import { TYPES } from '../../base/types.js'; +import { ExportSvgCommand, ExportSvgKeyListener, ExportSvgPostprocessor } from './export.js'; +import { SvgExporter } from './svg-exporter.js'; const exportSvgModule = new ContainerModule((bind, _unbind, isBound) => { bind(ExportSvgKeyListener).toSelf().inSingletonScope(); diff --git a/packages/sprotty/src/features/export/export.spec.ts b/packages/sprotty/src/features/export/export.spec.ts index d87ecad0..821af6ab 100644 --- a/packages/sprotty/src/features/export/export.spec.ts +++ b/packages/sprotty/src/features/export/export.spec.ts @@ -14,19 +14,18 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; -import { TYPES } from '../../base/types'; -import { ConsoleLogger } from '../../utils/logging'; -import { CommandExecutionContext } from '../../base/commands/command'; -import { SNodeImpl, SGraphImpl } from '../../graph/sgraph'; -import { ExportSvgCommand } from './export'; -import defaultModule from '../../base/di.config'; -import { RequestExportSvgAction } from 'sprotty-protocol/lib/actions'; -import { SNode } from 'sprotty-protocol/lib/model'; -import { IModelFactory } from '../../base/model/smodel-factory'; -import { registerModelElement } from '../../base/model/smodel-utils'; +import 'reflect-metadata'; +import { RequestExportSvgAction, SNode } from 'sprotty-protocol'; +import { describe, expect, it } from 'vitest'; +import { CommandExecutionContext } from '../../base/commands/command.js'; +import defaultModule from '../../base/di.config.js'; +import { IModelFactory } from '../../base/model/smodel-factory.js'; +import { registerModelElement } from '../../base/model/smodel-utils.js'; +import { TYPES } from '../../base/types.js'; +import { SGraphImpl, SNodeImpl } from '../../graph/sgraph.js'; +import { ConsoleLogger } from '../../utils/logging.js'; +import { ExportSvgCommand } from './export.js'; describe('ExportSvgCommand', () => { const container = new Container(); diff --git a/packages/sprotty/src/features/export/export.ts b/packages/sprotty/src/features/export/export.ts index 16308d26..61815948 100644 --- a/packages/sprotty/src/features/export/export.ts +++ b/packages/sprotty/src/features/export/export.ts @@ -14,20 +14,20 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { injectable, inject } from 'inversify'; +import { inject, injectable } from 'inversify'; import { VNode } from 'snabbdom'; -import { Action, ExportSvgAction, generateRequestId, RequestAction } from 'sprotty-protocol/lib/actions'; -import { CommandExecutionContext, HiddenCommand, CommandResult } from '../../base/commands/command'; -import { IVNodePostprocessor } from '../../base/views/vnode-postprocessor'; -import { isSelectable } from '../select/model'; -import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel'; -import { KeyListener } from '../../base/views/key-tool'; -import { matchesKeystroke } from '../../utils/keyboard'; -import { isExportable } from './model'; -import { SvgExporter } from './svg-exporter'; -import { isViewport } from '../viewport/model'; -import { isHoverable } from '../hover/model'; -import { TYPES } from '../../base/types'; +import { Action, ExportSvgAction, generateRequestId, RequestAction } from 'sprotty-protocol'; +import { CommandExecutionContext, CommandResult, HiddenCommand } from '../../base/commands/command.js'; +import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { KeyListener } from '../../base/views/key-tool.js'; +import { IVNodePostprocessor } from '../../base/views/vnode-postprocessor.js'; +import { matchesKeystroke } from '../../utils/keyboard.js'; +import { isHoverable } from '../hover/model.js'; +import { isSelectable } from '../select/model.js'; +import { isViewport } from '../viewport/model.js'; +import { isExportable } from './model.js'; +import { SvgExporter } from './svg-exporter.js'; @injectable() export class ExportSvgKeyListener extends KeyListener { diff --git a/packages/sprotty/src/features/export/model.ts b/packages/sprotty/src/features/export/model.ts index e406bbd5..4521d9bc 100644 --- a/packages/sprotty/src/features/export/model.ts +++ b/packages/sprotty/src/features/export/model.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { SModelElementImpl } from '../../base/model/smodel'; +import { SModelElementImpl } from '../../base/model/smodel.js'; export const exportFeature = Symbol('exportFeature'); diff --git a/packages/sprotty/src/features/export/svg-export-postprocessor.ts b/packages/sprotty/src/features/export/svg-export-postprocessor.ts index 9aa8318e..bfd02b37 100644 --- a/packages/sprotty/src/features/export/svg-export-postprocessor.ts +++ b/packages/sprotty/src/features/export/svg-export-postprocessor.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Action } from "sprotty-protocol/lib/actions"; +import { Action } from "sprotty-protocol"; export interface ISvgExportPostProcessor { postUpdate(element: SVGSVGElement, cause?: Action): void; diff --git a/packages/sprotty/src/features/export/svg-exporter.ts b/packages/sprotty/src/features/export/svg-exporter.ts index e4c0e57e..65beac88 100644 --- a/packages/sprotty/src/features/export/svg-exporter.ts +++ b/packages/sprotty/src/features/export/svg-exporter.ts @@ -15,15 +15,14 @@ ********************************************************************************/ import { inject, injectable, multiInject, optional } from 'inversify'; -import { Action, ExportSvgOptions, RequestExportSvgAction, ResponseAction } from 'sprotty-protocol/lib/actions'; -import { Bounds } from 'sprotty-protocol/lib/utils/geometry'; -import { ActionDispatcher } from '../../base/actions/action-dispatcher'; -import { SModelRootImpl } from '../../base/model/smodel'; -import { TYPES } from '../../base/types'; -import { ViewerOptions } from '../../base/views/viewer-options'; -import { ILogger } from '../../utils/logging'; -import { isBoundsAware } from '../bounds/model'; -import { ISvgExportPostProcessor } from './svg-export-postprocessor'; +import { Action, Bounds, ExportSvgOptions, RequestExportSvgAction, ResponseAction } from 'sprotty-protocol'; +import { ActionDispatcher } from '../../base/actions/action-dispatcher.js'; +import { SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { ViewerOptions } from '../../base/views/viewer-options.js'; +import { ILogger } from '../../utils/logging.js'; +import { isBoundsAware } from '../bounds/model.js'; +import { ISvgExportPostProcessor } from './svg-export-postprocessor.js'; /** * @deprecated Use the definition from `sprotty-protocol` instead. diff --git a/packages/sprotty/src/features/fade/di.config.ts b/packages/sprotty/src/features/fade/di.config.ts index 398d3943..ef9e2f97 100644 --- a/packages/sprotty/src/features/fade/di.config.ts +++ b/packages/sprotty/src/features/fade/di.config.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; -import { ElementFader } from "./fade"; +import { TYPES } from "../../base/types.js"; +import { ElementFader } from "./fade.js"; const fadeModule = new ContainerModule(bind => { bind(ElementFader).toSelf().inSingletonScope(); diff --git a/packages/sprotty/src/features/fade/fade.ts b/packages/sprotty/src/features/fade/fade.ts index 82800eb4..93c522dc 100644 --- a/packages/sprotty/src/features/fade/fade.ts +++ b/packages/sprotty/src/features/fade/fade.ts @@ -16,13 +16,13 @@ import { injectable } from 'inversify'; import { VNode } from 'snabbdom'; -import { Fadeable } from 'sprotty-protocol/lib/model'; -import { Animation } from '../../base/animations/animation'; -import { CommandExecutionContext } from '../../base/commands/command'; -import { SModelRootImpl, SModelElementImpl, SChildElementImpl } from '../../base/model/smodel'; -import { IVNodePostprocessor } from '../../base/views/vnode-postprocessor'; -import { setAttr } from '../../base/views/vnode-utils'; -import { isFadeable } from './model'; +import { Fadeable } from 'sprotty-protocol'; +import { Animation } from '../../base/animations/animation.js'; +import { CommandExecutionContext } from '../../base/commands/command.js'; +import { SChildElementImpl, SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { IVNodePostprocessor } from '../../base/views/vnode-postprocessor.js'; +import { setAttr } from '../../base/views/vnode-utils.js'; +import { isFadeable } from './model.js'; export interface ResolvedElementFade { element: SModelElementImpl & Fadeable diff --git a/packages/sprotty/src/features/fade/model.ts b/packages/sprotty/src/features/fade/model.ts index 9b5dd7ee..be6103f5 100644 --- a/packages/sprotty/src/features/fade/model.ts +++ b/packages/sprotty/src/features/fade/model.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { SModelElementImpl } from '../../base/model/smodel'; +import { SModelElementImpl } from '../../base/model/smodel.js'; export const fadeFeature = Symbol('fadeFeature'); diff --git a/packages/sprotty/src/features/hover/di.config.ts b/packages/sprotty/src/features/hover/di.config.ts index 1cc10991..98d9bb10 100644 --- a/packages/sprotty/src/features/hover/di.config.ts +++ b/packages/sprotty/src/features/hover/di.config.ts @@ -15,17 +15,22 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; +import { configureActionHandler } from "../../base/actions/action-handler.js"; +import { configureCommand } from "../../base/commands/command-registration.js"; +import { TYPES } from "../../base/types.js"; +import { MoveCommand } from "../move/move.js"; +import { CenterCommand, FitToScreenCommand } from "../viewport/center-fit.js"; +import { SetViewportCommand } from "../viewport/viewport.js"; import { - HoverMouseListener, PopupHoverMouseListener, HoverFeedbackCommand, SetPopupModelCommand, - HoverKeyListener, HoverState, ClosePopupActionHandler -} from "./hover"; -import { PopupPositionUpdater } from "./popup-position-updater"; -import { configureCommand } from "../../base/commands/command-registration"; -import { configureActionHandler } from "../../base/actions/action-handler"; -import { FitToScreenCommand, CenterCommand } from "../viewport/center-fit"; -import { SetViewportCommand } from "../viewport/viewport"; -import { MoveCommand } from "../move/move"; + ClosePopupActionHandler, + HoverFeedbackCommand, + HoverKeyListener, + HoverMouseListener, + HoverState, + PopupHoverMouseListener, + SetPopupModelCommand +} from "./hover.js"; +import { PopupPositionUpdater } from "./popup-position-updater.js"; const hoverModule = new ContainerModule((bind, _unbind, isBound) => { bind(PopupPositionUpdater).toSelf().inSingletonScope(); diff --git a/packages/sprotty/src/features/hover/hover.spec.ts b/packages/sprotty/src/features/hover/hover.spec.ts index 2d82172b..32b0b3a4 100644 --- a/packages/sprotty/src/features/hover/hover.spec.ts +++ b/packages/sprotty/src/features/hover/hover.spec.ts @@ -14,17 +14,16 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; -import { Action, HoverFeedbackAction } from 'sprotty-protocol/lib/actions'; -import { Hoverable } from 'sprotty-protocol/lib/model'; -import { TYPES } from '../../base/types'; -import { SChildElementImpl, SModelElementImpl, SModelRootImpl } from '../../base/model/smodel'; -import { HoverMouseListener } from './hover'; -import { hoverFeedbackFeature, popupFeature } from './model'; -import defaultModule from '../../base/di.config'; -import hoverModule from './di.config'; +import 'reflect-metadata'; +import { Action, Hoverable, HoverFeedbackAction } from 'sprotty-protocol'; +import { describe, expect, it } from 'vitest'; +import defaultModule from '../../base/di.config.js'; +import { SChildElementImpl, SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import hoverModule from './di.config.js'; +import { HoverMouseListener } from './hover.js'; +import { hoverFeedbackFeature, popupFeature } from './model.js'; describe('hover', () => { class HoverListenerMock extends HoverMouseListener { diff --git a/packages/sprotty/src/features/hover/hover.ts b/packages/sprotty/src/features/hover/hover.ts index 9af21dd3..910fa50f 100644 --- a/packages/sprotty/src/features/hover/hover.ts +++ b/packages/sprotty/src/features/hover/hover.ts @@ -15,20 +15,19 @@ ********************************************************************************/ import { inject, injectable } from 'inversify'; -import { Action, RequestPopupModelAction, SetPopupModelAction, HoverFeedbackAction } from 'sprotty-protocol/lib/actions'; -import { Bounds, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { matchesKeystroke } from '../../utils/keyboard'; -import { TYPES } from '../../base/types'; -import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel'; -import { MouseListener } from '../../base/views/mouse-tool'; -import { CommandExecutionContext, PopupCommand, SystemCommand, CommandReturn, ICommand } from '../../base/commands/command'; -import { IActionHandler } from '../../base/actions/action-handler'; -import { EMPTY_ROOT } from '../../base/model/smodel-factory'; -import { KeyListener } from '../../base/views/key-tool'; -import { findParentByFeature, findParent } from '../../base/model/smodel-utils'; -import { ViewerOptions } from '../../base/views/viewer-options'; -import { getAbsoluteBounds } from '../bounds/model'; -import { hasPopupFeature, isHoverable } from './model'; +import { Action, Bounds, HoverFeedbackAction, Point, RequestPopupModelAction, SetPopupModelAction } from 'sprotty-protocol'; +import { IActionHandler } from '../../base/actions/action-handler.js'; +import { CommandExecutionContext, CommandReturn, ICommand, PopupCommand, SystemCommand } from '../../base/commands/command.js'; +import { EMPTY_ROOT } from '../../base/model/smodel-factory.js'; +import { findParent, findParentByFeature } from '../../base/model/smodel-utils.js'; +import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { KeyListener } from '../../base/views/key-tool.js'; +import { MouseListener } from '../../base/views/mouse-tool.js'; +import { ViewerOptions } from '../../base/views/viewer-options.js'; +import { matchesKeystroke } from '../../utils/keyboard.js'; +import { getAbsoluteBounds } from '../bounds/model.js'; +import { hasPopupFeature, isHoverable } from './model.js'; @injectable() diff --git a/packages/sprotty/src/features/hover/model.ts b/packages/sprotty/src/features/hover/model.ts index 1a9dacd7..0f8e095c 100644 --- a/packages/sprotty/src/features/hover/model.ts +++ b/packages/sprotty/src/features/hover/model.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { SModelElementImpl } from '../../base/model/smodel'; +import { SModelElementImpl } from '../../base/model/smodel.js'; export const hoverFeedbackFeature = Symbol('hoverFeedbackFeature'); diff --git a/packages/sprotty/src/features/hover/popup-position-updater.ts b/packages/sprotty/src/features/hover/popup-position-updater.ts index 439b21d4..b6ddee16 100644 --- a/packages/sprotty/src/features/hover/popup-position-updater.ts +++ b/packages/sprotty/src/features/hover/popup-position-updater.ts @@ -16,10 +16,10 @@ import { inject, injectable } from "inversify"; import { VNode } from "snabbdom"; -import { TYPES } from "../../base/types"; -import { IVNodePostprocessor } from "../../base/views/vnode-postprocessor"; -import { ViewerOptions } from "../../base/views/viewer-options"; -import { SModelElementImpl } from "../../base/model/smodel"; +import { SModelElementImpl } from "../../base/model/smodel.js"; +import { TYPES } from "../../base/types.js"; +import { ViewerOptions } from "../../base/views/viewer-options.js"; +import { IVNodePostprocessor } from "../../base/views/vnode-postprocessor.js"; @injectable() export class PopupPositionUpdater implements IVNodePostprocessor { diff --git a/packages/sprotty/src/features/move/di.config.ts b/packages/sprotty/src/features/move/di.config.ts index e9d18817..bd15c117 100644 --- a/packages/sprotty/src/features/move/di.config.ts +++ b/packages/sprotty/src/features/move/di.config.ts @@ -15,9 +15,9 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from '../../base/types'; -import { MoveCommand, MoveMouseListener, LocationPostprocessor } from './move'; -import { configureCommand } from "../../base/commands/command-registration"; +import { configureCommand } from "../../base/commands/command-registration.js"; +import { TYPES } from '../../base/types.js'; +import { LocationPostprocessor, MoveCommand, MoveMouseListener } from './move.js'; const moveModule = new ContainerModule((bind, _unbind, isBound) => { bind(MoveMouseListener).toSelf().inSingletonScope(); diff --git a/packages/sprotty/src/features/move/model.ts b/packages/sprotty/src/features/move/model.ts index bb72f0bd..4a7cff6e 100644 --- a/packages/sprotty/src/features/move/model.ts +++ b/packages/sprotty/src/features/move/model.ts @@ -14,9 +14,8 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { hasOwnProperty } from 'sprotty-protocol/lib/utils/object'; -import { Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SModelElementImpl } from '../../base/model/smodel'; +import { hasOwnProperty, Point } from 'sprotty-protocol'; +import { SModelElementImpl } from '../../base/model/smodel.js'; export const moveFeature = Symbol('moveFeature'); diff --git a/packages/sprotty/src/features/move/move.spec.ts b/packages/sprotty/src/features/move/move.spec.ts index ab45f078..ab521793 100644 --- a/packages/sprotty/src/features/move/move.spec.ts +++ b/packages/sprotty/src/features/move/move.spec.ts @@ -14,20 +14,20 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; -import { TYPES } from '../../base/types'; -import { ConsoleLogger } from '../../utils/logging'; -import { CommandExecutionContext } from '../../base/commands/command'; -import { SModelRootImpl } from '../../base/model/smodel'; -import { SGraphImpl, SNodeImpl } from '../../graph/sgraph'; -import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer'; -import { ElementMove, MoveCommand } from './move'; -import defaultModule from '../../base/di.config'; +import 'reflect-metadata'; import { MoveAction, Point } from 'sprotty-protocol'; -import { IModelFactory } from '../../base/model/smodel-factory'; -import { registerModelElement } from '../../base/model/smodel-utils'; +import { describe, expect, it } from 'vitest'; +import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer.js'; +import { CommandExecutionContext } from '../../base/commands/command.js'; +import defaultModule from '../../base/di.config.js'; +import { IModelFactory } from '../../base/model/smodel-factory.js'; +import { registerModelElement } from '../../base/model/smodel-utils.js'; +import { SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { SGraphImpl, SNodeImpl } from '../../graph/sgraph.js'; +import { ConsoleLogger } from '../../utils/logging.js'; +import { ElementMove, MoveCommand } from './move.js'; describe('move', () => { const container = new Container(); diff --git a/packages/sprotty/src/features/move/move.ts b/packages/sprotty/src/features/move/move.ts index a14f4e3c..bbddddee 100644 --- a/packages/sprotty/src/features/move/move.ts +++ b/packages/sprotty/src/features/move/move.ts @@ -16,30 +16,28 @@ import { inject, injectable, optional } from 'inversify'; import { VNode } from 'snabbdom'; -import { Locateable } from 'sprotty-protocol/lib/model'; -import { Bounds, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { Action, DeleteElementAction, ReconnectAction, SelectAction, SelectAllAction, MoveAction } from 'sprotty-protocol/lib/actions'; -import { Animation, CompoundAnimation } from '../../base/animations/animation'; -import { CommandExecutionContext, ICommand, MergeableCommand, CommandReturn, IStoppableCommand } from '../../base/commands/command'; -import { SChildElementImpl, SModelElementImpl, SModelRootImpl, isParent } from '../../base/model/smodel'; -import { findParentByFeature, translatePoint } from '../../base/model/smodel-utils'; -import { TYPES } from '../../base/types'; -import { MouseListener } from '../../base/views/mouse-tool'; -import { IVNodePostprocessor } from '../../base/views/vnode-postprocessor'; -import { setAttr } from '../../base/views/vnode-utils'; -import { SEdgeImpl } from '../../graph/sgraph'; -import { CommitModelAction } from '../../model-source/commit-model'; -import { findChildrenAtPosition, isAlignable } from '../bounds/model'; -import { CreatingOnDrag, isCreatingOnDrag } from '../edit/create-on-drag'; -import { SwitchEditModeAction } from '../edit/edit-routing'; -import { ReconnectCommand } from '../edit/reconnect'; -import { edgeInProgressID, edgeInProgressTargetHandleID, isConnectable, SConnectableElementImpl, SRoutableElementImpl, SRoutingHandleImpl } from '../routing/model'; -import { EdgeMemento, EdgeRouterRegistry, EdgeSnapshot, RoutedPoint } from '../routing/routing'; -import { isEdgeLayoutable } from '../edge-layout/model'; -import { isSelectable } from '../select/model'; -import { isViewport } from '../viewport/model'; -import { isLocateable, isMoveable } from './model'; -import { ISnapper } from './snap'; +import { Action, Bounds, DeleteElementAction, Locateable, MoveAction, Point, ReconnectAction, SelectAction, SelectAllAction } from 'sprotty-protocol'; +import { Animation, CompoundAnimation } from '../../base/animations/animation.js'; +import { CommandExecutionContext, CommandReturn, ICommand, IStoppableCommand, MergeableCommand } from '../../base/commands/command.js'; +import { findParentByFeature, translatePoint } from '../../base/model/smodel-utils.js'; +import { isParent, SChildElementImpl, SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { MouseListener } from '../../base/views/mouse-tool.js'; +import { IVNodePostprocessor } from '../../base/views/vnode-postprocessor.js'; +import { setAttr } from '../../base/views/vnode-utils.js'; +import { SEdgeImpl } from '../../graph/sgraph.js'; +import { CommitModelAction } from '../../model-source/commit-model.js'; +import { findChildrenAtPosition, isAlignable } from '../bounds/model.js'; +import { isEdgeLayoutable } from '../edge-layout/model.js'; +import { CreatingOnDrag, isCreatingOnDrag } from '../edit/create-on-drag.js'; +import { SwitchEditModeAction } from '../edit/edit-routing.js'; +import { ReconnectCommand } from '../edit/reconnect.js'; +import { edgeInProgressID, edgeInProgressTargetHandleID, isConnectable, SConnectableElementImpl, SRoutableElementImpl, SRoutingHandleImpl } from '../routing/model.js'; +import { EdgeMemento, EdgeRouterRegistry, EdgeSnapshot, RoutedPoint } from '../routing/routing.js'; +import { isSelectable } from '../select/model.js'; +import { isViewport } from '../viewport/model.js'; +import { isLocateable, isMoveable } from './model.js'; +import { ISnapper } from './snap.js'; export interface ElementMove { elementId: string diff --git a/packages/sprotty/src/features/move/snap.ts b/packages/sprotty/src/features/move/snap.ts index 7a1ada40..4cbbc696 100644 --- a/packages/sprotty/src/features/move/snap.ts +++ b/packages/sprotty/src/features/move/snap.ts @@ -15,9 +15,9 @@ ********************************************************************************/ import { injectable } from "inversify"; -import { Point } from "sprotty-protocol/lib/utils/geometry"; -import { SModelElementImpl } from "../../base/model/smodel"; -import { isBoundsAware } from "../bounds/model"; +import { Point } from "sprotty-protocol"; +import { SModelElementImpl } from "../../base/model/smodel.js"; +import { isBoundsAware } from "../bounds/model.js"; /** * A snapper helps to align nodes and routing handles. diff --git a/packages/sprotty/src/features/nameable/model.ts b/packages/sprotty/src/features/nameable/model.ts index f1b94cb5..8edbaf91 100644 --- a/packages/sprotty/src/features/nameable/model.ts +++ b/packages/sprotty/src/features/nameable/model.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { SModelElementImpl } from '../../base/model/smodel'; +import { SModelElementImpl } from '../../base/model/smodel.js'; export const nameFeature = Symbol('nameableFeature'); diff --git a/packages/sprotty/src/features/open/di.config.ts b/packages/sprotty/src/features/open/di.config.ts index 8091335d..873ae17a 100644 --- a/packages/sprotty/src/features/open/di.config.ts +++ b/packages/sprotty/src/features/open/di.config.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; -import { OpenMouseListener } from "./open"; +import { TYPES } from "../../base/types.js"; +import { OpenMouseListener } from "./open.js"; const openModule = new ContainerModule(bind => { bind(OpenMouseListener).toSelf().inSingletonScope(); diff --git a/packages/sprotty/src/features/open/model.ts b/packages/sprotty/src/features/open/model.ts index 3f1bdeb5..4da0847a 100644 --- a/packages/sprotty/src/features/open/model.ts +++ b/packages/sprotty/src/features/open/model.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { SModelElementImpl } from '../../base/model/smodel'; +import { SModelElementImpl } from '../../base/model/smodel.js'; export const openFeature = Symbol('openFeature'); diff --git a/packages/sprotty/src/features/open/open.ts b/packages/sprotty/src/features/open/open.ts index 5a310164..3ceee2a6 100644 --- a/packages/sprotty/src/features/open/open.ts +++ b/packages/sprotty/src/features/open/open.ts @@ -14,11 +14,11 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Action, OpenAction } from 'sprotty-protocol/lib/actions'; -import { MouseListener } from '../../base/views/mouse-tool'; -import { SModelElementImpl } from '../../base/model/smodel'; -import { findParentByFeature } from '../../base/model/smodel-utils'; -import { isOpenable } from './model'; +import { Action, OpenAction } from 'sprotty-protocol'; +import { findParentByFeature } from '../../base/model/smodel-utils.js'; +import { SModelElementImpl } from '../../base/model/smodel.js'; +import { MouseListener } from '../../base/views/mouse-tool.js'; +import { isOpenable } from './model.js'; export class OpenMouseListener extends MouseListener { diff --git a/packages/sprotty/src/features/projection/model.ts b/packages/sprotty/src/features/projection/model.ts index 25e92823..e75335ef 100644 --- a/packages/sprotty/src/features/projection/model.ts +++ b/packages/sprotty/src/features/projection/model.ts @@ -14,12 +14,10 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Projectable as ProjectableSchema, Viewport } from 'sprotty-protocol/lib/model'; -import { Bounds, Dimension } from 'sprotty-protocol/lib/utils/geometry'; -import { hasOwnProperty } from 'sprotty-protocol/lib/utils/object'; -import { SChildElementImpl, SModelRootImpl, SParentElementImpl } from '../../base/model/smodel'; -import { transformToRootBounds } from '../../base/model/smodel-utils'; -import { isBoundsAware } from '../bounds/model'; +import { Bounds, Dimension, hasOwnProperty, Projectable as ProjectableSchema, Viewport } from 'sprotty-protocol'; +import { transformToRootBounds } from '../../base/model/smodel-utils.js'; +import { SChildElementImpl, SModelRootImpl, SParentElementImpl } from '../../base/model/smodel.js'; +import { isBoundsAware } from '../bounds/model.js'; /** * Model elements implementing this interface can be displayed on a projection bar. diff --git a/packages/sprotty/src/features/projection/views.tsx b/packages/sprotty/src/features/projection/views.tsx index a167fd71..ace12427 100644 --- a/packages/sprotty/src/features/projection/views.tsx +++ b/packages/sprotty/src/features/projection/views.tsx @@ -15,15 +15,15 @@ ********************************************************************************/ /** @jsx html */ -import { html } from '../../lib/jsx'; +import { html } from '../../lib/jsx.js'; import { injectable } from 'inversify'; -import { VNode, VNodeStyle, h } from 'snabbdom'; -import { Bounds } from 'sprotty-protocol/lib/utils/geometry'; -import { IView, IViewArgs, RenderingContext } from '../../base/views/view'; -import { setAttr, setClass } from '../../base/views/vnode-utils'; -import { ViewportRootElementImpl } from '../viewport/viewport-root'; -import { getModelBounds, getProjections, ViewProjection } from './model'; +import { h, VNode, VNodeStyle } from 'snabbdom'; +import { Bounds } from 'sprotty-protocol'; +import { IView, IViewArgs, RenderingContext } from '../../base/views/view.js'; +import { setAttr, setClass } from '../../base/views/vnode-utils.js'; +import { ViewportRootElementImpl } from '../viewport/viewport-root.js'; +import { getModelBounds, getProjections, ViewProjection } from './model.js'; /** * Special viewport root view that renders horizontal and vertical projection bars for quick navigation. diff --git a/packages/sprotty/src/features/routing/abstract-edge-router.ts b/packages/sprotty/src/features/routing/abstract-edge-router.ts index 134c34e8..0f2b1ffb 100644 --- a/packages/sprotty/src/features/routing/abstract-edge-router.ts +++ b/packages/sprotty/src/features/routing/abstract-edge-router.ts @@ -15,14 +15,16 @@ ********************************************************************************/ import { inject, injectable } from "inversify"; -import { Bounds, Point } from "sprotty-protocol/lib/utils/geometry"; -import { SModelElementImpl, SParentElementImpl } from "../../base/model/smodel"; -import { translateBounds, translatePoint } from "../../base/model/smodel-utils"; -import { ResolvedHandleMove } from "../move/move"; -import { RoutingHandleKind, SDanglingAnchorImpl, SRoutingHandleImpl, edgeInProgressID, edgeInProgressTargetHandleID } from "./model"; -import { AnchorComputerRegistry, IAnchorComputer } from "./anchor"; -import { SConnectableElementImpl, SRoutableElementImpl } from "./model"; -import { EdgeSnapshot, IEdgeRouter, RoutedPoint } from "./routing"; +import { Bounds, Point } from "sprotty-protocol"; +import { translateBounds, translatePoint } from "../../base/model/smodel-utils.js"; +import { SModelElementImpl, SParentElementImpl } from "../../base/model/smodel.js"; +import { ResolvedHandleMove } from "../move/move.js"; +import { AnchorComputerRegistry, IAnchorComputer } from "./anchor.js"; +import { + RoutingHandleKind, SConnectableElementImpl, SDanglingAnchorImpl, SRoutableElementImpl, + SRoutingHandleImpl, edgeInProgressID, edgeInProgressTargetHandleID +} from "./model.js"; +import { EdgeSnapshot, IEdgeRouter, RoutedPoint } from "./routing.js"; export interface LinearRouteOptions { minimalPointDistance: number @@ -88,7 +90,7 @@ export abstract class AbstractEdgeRouter implements IEdgeRouter { protected abstract getOptions(edge: SRoutableElementImpl): LinearRouteOptions; - findOrthogonalIntersection(edge: SRoutableElementImpl, point: Point): {point: Point, derivative: Point} { + findOrthogonalIntersection(edge: SRoutableElementImpl, point: Point): { point: Point, derivative: Point } { const calcOrthogonalIntersectionForSegment = (p1: Point, p2: Point) => { // Calculate the direction vector d of the edge and vector pq from p1 to point q const d: Point = Point.subtract(p2, p1); @@ -120,7 +122,7 @@ export abstract class AbstractEdgeRouter implements IEdgeRouter { } } const derivative = Point.subtract(routedPoints[index + 1], routedPoints[index]); - return {point: intersectionPoint, derivative}; + return { point: intersectionPoint, derivative }; } pointAt(edge: SRoutableElementImpl, t: number): Point | undefined { diff --git a/packages/sprotty/src/features/routing/anchor.ts b/packages/sprotty/src/features/routing/anchor.ts index d5d36628..009699fc 100644 --- a/packages/sprotty/src/features/routing/anchor.ts +++ b/packages/sprotty/src/features/routing/anchor.ts @@ -15,10 +15,10 @@ ********************************************************************************/ import { injectable, multiInject } from "inversify"; -import { Point } from "sprotty-protocol/lib/utils/geometry"; -import { TYPES } from "../../base/types"; -import { InstanceRegistry } from "../../utils/registry"; -import { SConnectableElementImpl } from "./model"; +import { Point } from "sprotty-protocol"; +import { TYPES } from "../../base/types.js"; +import { InstanceRegistry } from "../../utils/registry.js"; +import { SConnectableElementImpl } from "./model.js"; export const DIAMOND_ANCHOR_KIND = 'diamond'; export const ELLIPTIC_ANCHOR_KIND = 'elliptic'; diff --git a/packages/sprotty/src/features/routing/bezier-anchors.ts b/packages/sprotty/src/features/routing/bezier-anchors.ts index e7c2c3a7..2e3ff1b5 100644 --- a/packages/sprotty/src/features/routing/bezier-anchors.ts +++ b/packages/sprotty/src/features/routing/bezier-anchors.ts @@ -14,10 +14,10 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { ELLIPTIC_ANCHOR_KIND, RECTANGULAR_ANCHOR_KIND, DIAMOND_ANCHOR_KIND } from "./anchor"; +import { ELLIPTIC_ANCHOR_KIND, RECTANGULAR_ANCHOR_KIND, DIAMOND_ANCHOR_KIND } from "./anchor.js"; import { injectable } from "inversify"; -import { DiamondAnchor, EllipseAnchor, RectangleAnchor } from './polyline-anchors'; -import { BezierEdgeRouter } from './bezier-edge-router'; +import { DiamondAnchor, EllipseAnchor, RectangleAnchor } from './polyline-anchors.js'; +import { BezierEdgeRouter } from './bezier-edge-router.js'; @injectable() export class BezierEllipseAnchor extends EllipseAnchor { diff --git a/packages/sprotty/src/features/routing/bezier-edge-router.ts b/packages/sprotty/src/features/routing/bezier-edge-router.ts index ddb5778e..e78cfa88 100644 --- a/packages/sprotty/src/features/routing/bezier-edge-router.ts +++ b/packages/sprotty/src/features/routing/bezier-edge-router.ts @@ -15,17 +15,16 @@ ********************************************************************************/ import { inject, injectable } from 'inversify'; -import { Action } from 'sprotty-protocol/lib/actions'; -import { centerOfLine, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { ResolvedHandleMove } from '../move/move'; -import { SDanglingAnchorImpl, SRoutableElementImpl, SRoutingHandleImpl } from './model'; -import { SModelElementImpl } from '../../base/model/smodel'; -import { EdgeRouterRegistry, RoutedPoint } from './routing'; -import { AbstractEdgeRouter, LinearRouteOptions } from './abstract-edge-router'; -import { MouseListener } from '../../base/views/mouse-tool'; -import { Command, CommandExecutionContext, CommandReturn } from '../../base/commands/command'; -import { TYPES } from "../../base/types"; -import { SEdgeImpl } from '../../graph/sgraph'; +import { Action, centerOfLine, Point } from 'sprotty-protocol'; +import { Command, CommandExecutionContext, CommandReturn } from '../../base/commands/command.js'; +import { SModelElementImpl } from '../../base/model/smodel.js'; +import { TYPES } from "../../base/types.js"; +import { MouseListener } from '../../base/views/mouse-tool.js'; +import { SEdgeImpl } from '../../graph/sgraph.js'; +import { ResolvedHandleMove } from '../move/move.js'; +import { AbstractEdgeRouter, LinearRouteOptions } from './abstract-edge-router.js'; +import { SDanglingAnchorImpl, SRoutableElementImpl, SRoutingHandleImpl } from './model.js'; +import { EdgeRouterRegistry, RoutedPoint } from './routing.js'; @injectable() export class BezierEdgeRouter extends AbstractEdgeRouter { diff --git a/packages/sprotty/src/features/routing/di.config.ts b/packages/sprotty/src/features/routing/di.config.ts index eb04a41a..c08141fd 100644 --- a/packages/sprotty/src/features/routing/di.config.ts +++ b/packages/sprotty/src/features/routing/di.config.ts @@ -15,16 +15,16 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; -import { ManhattanEdgeRouter } from "./manhattan-edge-router"; -import { PolylineEdgeRouter } from "./polyline-edge-router"; -import { ManhattanRectangularAnchor, ManhattanEllipticAnchor, ManhattanDiamondAnchor } from "./manhattan-anchors"; -import { RectangleAnchor, EllipseAnchor, DiamondAnchor } from "./polyline-anchors"; -import { AnchorComputerRegistry } from "./anchor"; -import { EdgeRouterRegistry } from "./routing"; -import { AddRemoveBezierSegmentCommand, BezierEdgeRouter } from './bezier-edge-router'; -import { BezierDiamondAnchor, BezierEllipseAnchor, BezierRectangleAnchor } from './bezier-anchors'; -import { configureCommand } from "../../base/commands/command-registration"; +import { configureCommand } from "../../base/commands/command-registration.js"; +import { TYPES } from "../../base/types.js"; +import { AnchorComputerRegistry } from "./anchor.js"; +import { BezierDiamondAnchor, BezierEllipseAnchor, BezierRectangleAnchor } from './bezier-anchors.js'; +import { AddRemoveBezierSegmentCommand, BezierEdgeRouter } from './bezier-edge-router.js'; +import { ManhattanDiamondAnchor, ManhattanEllipticAnchor, ManhattanRectangularAnchor } from "./manhattan-anchors.js"; +import { ManhattanEdgeRouter } from "./manhattan-edge-router.js"; +import { DiamondAnchor, EllipseAnchor, RectangleAnchor } from "./polyline-anchors.js"; +import { PolylineEdgeRouter } from "./polyline-edge-router.js"; +import { EdgeRouterRegistry } from "./routing.js"; const routingModule = new ContainerModule((bind, _unbind, isBound) => { bind(EdgeRouterRegistry).toSelf().inSingletonScope(); diff --git a/packages/sprotty/src/features/routing/manhattan-anchors.ts b/packages/sprotty/src/features/routing/manhattan-anchors.ts index c22f74cb..ac41d953 100644 --- a/packages/sprotty/src/features/routing/manhattan-anchors.ts +++ b/packages/sprotty/src/features/routing/manhattan-anchors.ts @@ -14,12 +14,12 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Bounds, Point } from "sprotty-protocol/lib/utils/geometry"; -import { Line, PointToPointLine, intersection } from "../../utils/geometry"; -import { RECTANGULAR_ANCHOR_KIND, IAnchorComputer, DIAMOND_ANCHOR_KIND, ELLIPTIC_ANCHOR_KIND } from "./anchor"; -import { ManhattanEdgeRouter } from "./manhattan-edge-router"; -import { SConnectableElementImpl } from "./model"; import { injectable } from "inversify"; +import { Bounds, Point } from "sprotty-protocol"; +import { Line, PointToPointLine, intersection } from "../../utils/geometry.js"; +import { DIAMOND_ANCHOR_KIND, ELLIPTIC_ANCHOR_KIND, IAnchorComputer, RECTANGULAR_ANCHOR_KIND } from "./anchor.js"; +import { ManhattanEdgeRouter } from "./manhattan-edge-router.js"; +import { SConnectableElementImpl } from "./model.js"; @injectable() export class ManhattanRectangularAnchor implements IAnchorComputer { diff --git a/packages/sprotty/src/features/routing/manhattan-edge-router.ts b/packages/sprotty/src/features/routing/manhattan-edge-router.ts index 5f85710a..974da7f8 100644 --- a/packages/sprotty/src/features/routing/manhattan-edge-router.ts +++ b/packages/sprotty/src/features/routing/manhattan-edge-router.ts @@ -14,12 +14,12 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { almostEquals, Bounds, Point } from "sprotty-protocol/lib/utils/geometry"; -import { translatePoint } from "../../base/model/smodel-utils"; -import { ResolvedHandleMove } from "../move/move"; -import { DefaultAnchors, AbstractEdgeRouter, LinearRouteOptions, Side } from "./abstract-edge-router"; -import { SRoutableElementImpl, RoutingHandleKind, SRoutingHandleImpl } from "./model"; -import { RoutedPoint } from "./routing"; +import { almostEquals, Bounds, Point } from "sprotty-protocol"; +import { translatePoint } from "../../base/model/smodel-utils.js"; +import { ResolvedHandleMove } from "../move/move.js"; +import { AbstractEdgeRouter, DefaultAnchors, LinearRouteOptions, Side } from "./abstract-edge-router.js"; +import { RoutingHandleKind, SRoutableElementImpl, SRoutingHandleImpl } from "./model.js"; +import { RoutedPoint } from "./routing.js"; export interface ManhattanRouterOptions extends LinearRouteOptions { standardDistance: number; diff --git a/packages/sprotty/src/features/routing/model.spec.ts b/packages/sprotty/src/features/routing/model.spec.ts index 0968ffaa..c468d053 100644 --- a/packages/sprotty/src/features/routing/model.spec.ts +++ b/packages/sprotty/src/features/routing/model.spec.ts @@ -16,11 +16,11 @@ import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; -import { SModelRootImpl } from '../../base/model/smodel'; -import { SShapeElementImpl } from '../bounds/model'; -import { SRoutableElementImpl, getAbsoluteRouteBounds } from './model'; -import { SEdgeImpl, SGraphImpl, SNodeImpl } from '../../graph/sgraph'; +import { describe, expect, it } from 'vitest'; +import { SModelRootImpl } from '../../base/model/smodel.js'; +import { SEdgeImpl, SGraphImpl, SNodeImpl } from '../../graph/sgraph.js'; +import { SShapeElementImpl } from '../bounds/model.js'; +import { SRoutableElementImpl, getAbsoluteRouteBounds } from './model.js'; describe('getAbsoluteRouteBounds', () => { function createModel(): SModelRootImpl { diff --git a/packages/sprotty/src/features/routing/model.ts b/packages/sprotty/src/features/routing/model.ts index 93571569..8f5a7095 100644 --- a/packages/sprotty/src/features/routing/model.ts +++ b/packages/sprotty/src/features/routing/model.ts @@ -14,15 +14,14 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Hoverable, Selectable } from 'sprotty-protocol/lib/model'; -import { Bounds, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SChildElementImpl, SModelElementImpl } from '../../base/model/smodel'; -import { FluentIterable } from '../../utils/iterable'; -import { SShapeElementImpl } from '../bounds/model'; -import { deletableFeature } from '../edit/delete'; -import { selectFeature } from '../select/model'; -import { hoverFeedbackFeature } from '../hover/model'; -import { moveFeature } from '../move/model'; +import { Bounds, Hoverable, Point, Selectable } from 'sprotty-protocol'; +import { SChildElementImpl, SModelElementImpl } from '../../base/model/smodel.js'; +import { FluentIterable } from '../../utils/iterable.js'; +import { SShapeElementImpl } from '../bounds/model.js'; +import { deletableFeature } from '../edit/delete.js'; +import { hoverFeedbackFeature } from '../hover/model.js'; +import { moveFeature } from '../move/model.js'; +import { selectFeature } from '../select/model.js'; export abstract class SRoutableElementImpl extends SChildElementImpl { diff --git a/packages/sprotty/src/features/routing/polyline-anchors.ts b/packages/sprotty/src/features/routing/polyline-anchors.ts index 98a07913..33d3ad13 100644 --- a/packages/sprotty/src/features/routing/polyline-anchors.ts +++ b/packages/sprotty/src/features/routing/polyline-anchors.ts @@ -14,12 +14,12 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { IAnchorComputer, ELLIPTIC_ANCHOR_KIND, RECTANGULAR_ANCHOR_KIND, DIAMOND_ANCHOR_KIND } from "./anchor"; -import { SConnectableElementImpl } from "./model"; -import { PointToPointLine, Diamond, intersection } from "../../utils/geometry"; import { injectable } from "inversify"; -import { PolylineEdgeRouter } from "./polyline-edge-router"; -import { almostEquals, Bounds, Point } from "sprotty-protocol/lib/utils/geometry"; +import { almostEquals, Bounds, Point } from "sprotty-protocol"; +import { Diamond, intersection, PointToPointLine } from "../../utils/geometry.js"; +import { DIAMOND_ANCHOR_KIND, ELLIPTIC_ANCHOR_KIND, IAnchorComputer, RECTANGULAR_ANCHOR_KIND } from "./anchor.js"; +import { SConnectableElementImpl } from "./model.js"; +import { PolylineEdgeRouter } from "./polyline-edge-router.js"; @injectable() export class EllipseAnchor implements IAnchorComputer { diff --git a/packages/sprotty/src/features/routing/polyline-edge-router.ts b/packages/sprotty/src/features/routing/polyline-edge-router.ts index 50814403..8be0a760 100644 --- a/packages/sprotty/src/features/routing/polyline-edge-router.ts +++ b/packages/sprotty/src/features/routing/polyline-edge-router.ts @@ -15,13 +15,12 @@ ********************************************************************************/ import { inject, injectable } from "inversify"; -import { angleBetweenPoints, Bounds, centerOfLine, Point } from "sprotty-protocol/lib/utils/geometry"; -import { SRoutingHandleImpl } from "./model"; -import { ResolvedHandleMove } from "../move/move"; -import { AnchorComputerRegistry } from "./anchor"; -import { AbstractEdgeRouter, LinearRouteOptions } from "./abstract-edge-router"; -import { SRoutableElementImpl } from "./model"; -import { RoutedPoint } from "./routing"; +import { angleBetweenPoints, Bounds, centerOfLine, Point } from "sprotty-protocol"; +import { ResolvedHandleMove } from "../move/move.js"; +import { AbstractEdgeRouter, LinearRouteOptions } from "./abstract-edge-router.js"; +import { AnchorComputerRegistry } from "./anchor.js"; +import { SRoutableElementImpl, SRoutingHandleImpl } from "./model.js"; +import { RoutedPoint } from "./routing.js"; export interface PolylineRouteOptions extends LinearRouteOptions { /** The angle in radians below which a routing handle is removed. */ diff --git a/packages/sprotty/src/features/routing/routing.ts b/packages/sprotty/src/features/routing/routing.ts index 925f2f7c..826ea6de 100644 --- a/packages/sprotty/src/features/routing/routing.ts +++ b/packages/sprotty/src/features/routing/routing.ts @@ -15,15 +15,15 @@ ********************************************************************************/ import { injectable, multiInject, optional } from "inversify"; -import { Point } from "sprotty-protocol/lib/utils/geometry"; -import { SParentElementImpl } from "../../base/model/smodel"; -import { TYPES } from "../../base/types"; -import { findArgValue, IViewArgs } from "../../base/views/view"; -import { InstanceRegistry } from "../../utils/registry"; -import { ResolvedHandleMove } from "../move/move"; -import { SRoutingHandleImpl } from "../routing/model"; -import { SConnectableElementImpl, SRoutableElementImpl } from "./model"; -import { PolylineEdgeRouter } from "./polyline-edge-router"; +import { Point } from "sprotty-protocol"; +import { SParentElementImpl } from "../../base/model/smodel.js"; +import { TYPES } from "../../base/types.js"; +import { findArgValue, IViewArgs } from "../../base/views/view.js"; +import { InstanceRegistry } from "../../utils/registry.js"; +import { ResolvedHandleMove } from "../move/move.js"; +import { SRoutingHandleImpl } from "../routing/model.js"; +import { SConnectableElementImpl, SRoutableElementImpl } from "./model.js"; +import { PolylineEdgeRouter } from "./polyline-edge-router.js"; /** * A point describing the shape of an edge. diff --git a/packages/sprotty/src/features/routing/views.spec.ts b/packages/sprotty/src/features/routing/views.spec.ts index ff9a6000..a41cec1b 100644 --- a/packages/sprotty/src/features/routing/views.spec.ts +++ b/packages/sprotty/src/features/routing/views.spec.ts @@ -16,13 +16,13 @@ import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; -import { IViewArgs, RenderingContext } from '../../base/views/view'; -import { SShapeElementImpl } from '../bounds/model'; -import { ViewportRootElementImpl } from '../viewport/viewport-root'; -import { SRoutableElementImpl } from './model'; -import { RoutableView } from './views'; import { VNode } from 'snabbdom'; +import { describe, expect, it } from 'vitest'; +import { IViewArgs, RenderingContext } from '../../base/views/view.js'; +import { SShapeElementImpl } from '../bounds/model.js'; +import { ViewportRootElementImpl } from '../viewport/viewport-root.js'; +import { SRoutableElementImpl } from './model.js'; +import { RoutableView } from './views.js'; describe('RoutableView.isVisible', () => { diff --git a/packages/sprotty/src/features/routing/views.ts b/packages/sprotty/src/features/routing/views.ts index e3b5ba4e..cec76730 100644 --- a/packages/sprotty/src/features/routing/views.ts +++ b/packages/sprotty/src/features/routing/views.ts @@ -16,9 +16,9 @@ import { injectable } from 'inversify'; import { VNode } from 'snabbdom'; -import { Point } from 'sprotty-protocol/lib/utils/geometry'; -import { IViewArgs, IView, RenderingContext } from '../../base/views/view'; -import { SRoutableElementImpl, getAbsoluteRouteBounds } from './model'; +import { Point } from 'sprotty-protocol'; +import { IView, IViewArgs, RenderingContext } from '../../base/views/view.js'; +import { SRoutableElementImpl, getAbsoluteRouteBounds } from './model.js'; @injectable() export abstract class RoutableView implements IView { diff --git a/packages/sprotty/src/features/select/di.config.ts b/packages/sprotty/src/features/select/di.config.ts index 7dcd2660..48e67686 100644 --- a/packages/sprotty/src/features/select/di.config.ts +++ b/packages/sprotty/src/features/select/di.config.ts @@ -15,9 +15,9 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; -import { SelectCommand, SelectAllCommand, SelectKeyboardListener, SelectMouseListener, GetSelectionCommand } from "./select"; -import { configureCommand } from "../../base/commands/command-registration"; +import { configureCommand } from "../../base/commands/command-registration.js"; +import { TYPES } from "../../base/types.js"; +import { GetSelectionCommand, SelectAllCommand, SelectCommand, SelectKeyboardListener, SelectMouseListener } from "./select.js"; const selectModule = new ContainerModule((bind, _unbind, isBound) => { configureCommand({ bind, isBound }, SelectCommand); diff --git a/packages/sprotty/src/features/select/model.ts b/packages/sprotty/src/features/select/model.ts index 6bf86740..6aa78591 100644 --- a/packages/sprotty/src/features/select/model.ts +++ b/packages/sprotty/src/features/select/model.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { SModelElementImpl } from '../../base/model/smodel'; +import { SModelElementImpl } from '../../base/model/smodel.js'; export const selectFeature = Symbol('selectFeature'); diff --git a/packages/sprotty/src/features/select/select.spec.ts b/packages/sprotty/src/features/select/select.spec.ts index 9a9d35df..eb38c07e 100644 --- a/packages/sprotty/src/features/select/select.spec.ts +++ b/packages/sprotty/src/features/select/select.spec.ts @@ -14,20 +14,20 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; -import { TYPES } from '../../base/types'; -import { ConsoleLogger } from '../../utils/logging'; -import { SModelRootImpl } from '../../base/model/smodel'; -import { EMPTY_ROOT, IModelFactory } from '../../base/model/smodel-factory'; -import { CommandExecutionContext } from '../../base/commands/command'; -import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer'; -import { SGraphImpl, SNodeImpl } from '../../graph/sgraph'; -import { SelectCommand, SelectAllCommand } from './select'; -import defaultModule from '../../base/di.config'; +import 'reflect-metadata'; import { SelectAction, SelectAllAction } from 'sprotty-protocol'; -import { registerModelElement } from '../../base/model/smodel-utils'; +import { describe, expect, it } from 'vitest'; +import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer.js'; +import { CommandExecutionContext } from '../../base/commands/command.js'; +import defaultModule from '../../base/di.config.js'; +import { EMPTY_ROOT, IModelFactory } from '../../base/model/smodel-factory.js'; +import { registerModelElement } from '../../base/model/smodel-utils.js'; +import { SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { SGraphImpl, SNodeImpl } from '../../graph/sgraph.js'; +import { ConsoleLogger } from '../../utils/logging.js'; +import { SelectAllCommand, SelectCommand } from './select.js'; function getNode(nodeId: string, model: SModelRootImpl) { return model.index.getById(nodeId); diff --git a/packages/sprotty/src/features/select/select.ts b/packages/sprotty/src/features/select/select.ts index e206b27b..79eb852f 100644 --- a/packages/sprotty/src/features/select/select.ts +++ b/packages/sprotty/src/features/select/select.ts @@ -17,27 +17,27 @@ import { inject, injectable, optional } from 'inversify'; import { VNode } from 'snabbdom'; import { - Action, BringToFrontAction, GetSelectionAction, ResponseAction, SelectAction, SelectAllAction, SelectionResult -} from 'sprotty-protocol/lib/actions'; -import { Selectable } from 'sprotty-protocol/lib/model'; -import { Command, CommandExecutionContext } from '../../base/commands/command'; -import { ModelRequestCommand } from '../../base/commands/request-command'; -import { SChildElementImpl, SModelElementImpl, SModelRootImpl, SParentElementImpl } from '../../base/model/smodel'; -import { findParentByFeature } from '../../base/model/smodel-utils'; -import { TYPES } from '../../base/types'; -import { KeyListener } from '../../base/views/key-tool'; -import { MouseListener } from '../../base/views/mouse-tool'; -import { setClass } from '../../base/views/vnode-utils'; -import { isCtrlOrCmd } from '../../utils/browser'; -import { toArray } from '../../utils/iterable'; -import { matchesKeystroke } from '../../utils/keyboard'; -import { ButtonHandlerRegistry } from '../button/button-handler'; -import { SButtonImpl } from '../button/model'; -import { SwitchEditModeAction } from '../edit/edit-routing'; -import { SRoutingHandleImpl } from '../routing/model'; -import { SRoutableElementImpl } from '../routing/model'; -import { findViewportScrollbar } from '../viewport/scroll'; -import { isSelectable } from './model'; + Action, BringToFrontAction, GetSelectionAction, ResponseAction, + Selectable, + SelectAction, SelectAllAction, SelectionResult +} from 'sprotty-protocol'; +import { Command, CommandExecutionContext } from '../../base/commands/command.js'; +import { ModelRequestCommand } from '../../base/commands/request-command.js'; +import { findParentByFeature } from '../../base/model/smodel-utils.js'; +import { SChildElementImpl, SModelElementImpl, SModelRootImpl, SParentElementImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { KeyListener } from '../../base/views/key-tool.js'; +import { MouseListener } from '../../base/views/mouse-tool.js'; +import { setClass } from '../../base/views/vnode-utils.js'; +import { isCtrlOrCmd } from '../../utils/browser.js'; +import { toArray } from '../../utils/iterable.js'; +import { matchesKeystroke } from '../../utils/keyboard.js'; +import { ButtonHandlerRegistry } from '../button/button-handler.js'; +import { SButtonImpl } from '../button/model.js'; +import { SwitchEditModeAction } from '../edit/edit-routing.js'; +import { SRoutableElementImpl, SRoutingHandleImpl } from '../routing/model.js'; +import { findViewportScrollbar } from '../viewport/scroll.js'; +import { isSelectable } from './model.js'; @injectable() export class SelectCommand extends Command { diff --git a/packages/sprotty/src/features/undo-redo/di.config.ts b/packages/sprotty/src/features/undo-redo/di.config.ts index fe4f7c14..d2ae4bcd 100644 --- a/packages/sprotty/src/features/undo-redo/di.config.ts +++ b/packages/sprotty/src/features/undo-redo/di.config.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; -import { UndoRedoKeyListener } from "./undo-redo"; +import { TYPES } from "../../base/types.js"; +import { UndoRedoKeyListener } from "./undo-redo.js"; const undoRedoModule = new ContainerModule(bind => { bind(UndoRedoKeyListener).toSelf().inSingletonScope(); diff --git a/packages/sprotty/src/features/undo-redo/undo-redo.ts b/packages/sprotty/src/features/undo-redo/undo-redo.ts index 7d99e724..315e3fdb 100644 --- a/packages/sprotty/src/features/undo-redo/undo-redo.ts +++ b/packages/sprotty/src/features/undo-redo/undo-redo.ts @@ -14,11 +14,11 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Action, UndoAction, RedoAction } from 'sprotty-protocol/lib/actions'; -import { matchesKeystroke } from '../../utils/keyboard'; -import { KeyListener } from '../../base/views/key-tool'; -import { SModelElementImpl } from '../../base/model/smodel'; -import { isMac } from '../../utils/browser'; +import { Action, RedoAction, UndoAction } from 'sprotty-protocol'; +import { SModelElementImpl } from '../../base/model/smodel.js'; +import { KeyListener } from '../../base/views/key-tool.js'; +import { isMac } from '../../utils/browser.js'; +import { matchesKeystroke } from '../../utils/keyboard.js'; export class UndoRedoKeyListener extends KeyListener { override keyDown(element: SModelElementImpl, event: KeyboardEvent): Action[] { diff --git a/packages/sprotty/src/features/update/di.config.ts b/packages/sprotty/src/features/update/di.config.ts index f68f6bcd..56265493 100644 --- a/packages/sprotty/src/features/update/di.config.ts +++ b/packages/sprotty/src/features/update/di.config.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { configureCommand } from "../../base/commands/command-registration"; -import { UpdateModelCommand } from "./update-model"; +import { configureCommand } from "../../base/commands/command-registration.js"; +import { UpdateModelCommand } from "./update-model.js"; const updateModule = new ContainerModule((bind, _unbind, isBound) => { configureCommand({ bind, isBound }, UpdateModelCommand); diff --git a/packages/sprotty/src/features/update/model-matching.spec.ts b/packages/sprotty/src/features/update/model-matching.spec.ts index 1b9bbca6..3d4cef51 100644 --- a/packages/sprotty/src/features/update/model-matching.spec.ts +++ b/packages/sprotty/src/features/update/model-matching.spec.ts @@ -15,9 +15,9 @@ ********************************************************************************/ import "reflect-metadata"; -import { expect, describe, it } from 'vitest'; import { SModelElement } from 'sprotty-protocol'; -import { ModelMatcher } from "./model-matching"; +import { describe, expect, it } from 'vitest'; +import { ModelMatcher } from "./model-matching.js"; describe('ModelMatcher', () => { it('finds new elements', () => { diff --git a/packages/sprotty/src/features/update/model-matching.ts b/packages/sprotty/src/features/update/model-matching.ts index 7ee41ca9..bebfadb1 100644 --- a/packages/sprotty/src/features/update/model-matching.ts +++ b/packages/sprotty/src/features/update/model-matching.ts @@ -14,9 +14,8 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { SModelElement, SModelRoot } from 'sprotty-protocol/lib/model'; -import { SModelRootImpl, SModelElementImpl, isParent, IModelIndex } from '../../base/model/smodel'; -import { SModelIndex } from 'sprotty-protocol'; +import { SModelElement, SModelIndex, SModelRoot } from 'sprotty-protocol'; +import { IModelIndex, SModelElementImpl, SModelRootImpl, isParent } from '../../base/model/smodel.js'; export interface Match { left?: SModelElement diff --git a/packages/sprotty/src/features/update/update-model.spec.ts b/packages/sprotty/src/features/update/update-model.spec.ts index 8546214a..8160a31e 100644 --- a/packages/sprotty/src/features/update/update-model.spec.ts +++ b/packages/sprotty/src/features/update/update-model.spec.ts @@ -14,28 +14,28 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; -import { TYPES } from '../../base/types'; -import { ConsoleLogger } from '../../utils/logging'; -import { EMPTY_ROOT, IModelFactory } from '../../base/model/smodel-factory'; -import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel'; -import { CommandExecutionContext } from '../../base/commands/command'; -import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer'; -import { CompoundAnimation, Animation } from '../../base/animations/animation'; -import { SEdgeImpl, SGraphImpl, SNodeImpl } from '../../graph/sgraph'; -import { FadeAnimation } from '../../features/fade/fade'; -import { MoveAnimation, MorphEdgesAnimation } from '../../features/move/move'; -import { UpdateModelCommand } from './update-model'; -import { ModelMatcher } from './model-matching'; -import { ManhattanEdgeRouter } from '../routing/manhattan-edge-router'; -import defaultModule from '../../base/di.config'; -import { EdgeRouterRegistry } from '../routing/routing'; -import { AnchorComputerRegistry } from '../routing/anchor'; -import { ManhattanRectangularAnchor } from '../routing/manhattan-anchors'; -import { Point, SEdge, SGraph, SModelElement, SModelRoot,SNode, UpdateModelAction } from 'sprotty-protocol'; -import { registerModelElement } from '../../base/model/smodel-utils'; +import 'reflect-metadata'; +import { Point, SEdge, SGraph, SModelElement, SModelRoot, SNode, UpdateModelAction } from 'sprotty-protocol'; +import { describe, expect, it } from 'vitest'; +import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer.js'; +import { Animation, CompoundAnimation } from '../../base/animations/animation.js'; +import { CommandExecutionContext } from '../../base/commands/command.js'; +import defaultModule from '../../base/di.config.js'; +import { EMPTY_ROOT, IModelFactory } from '../../base/model/smodel-factory.js'; +import { registerModelElement } from '../../base/model/smodel-utils.js'; +import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { FadeAnimation } from '../../features/fade/fade.js'; +import { MorphEdgesAnimation, MoveAnimation } from '../../features/move/move.js'; +import { SEdgeImpl, SGraphImpl, SNodeImpl } from '../../graph/sgraph.js'; +import { ConsoleLogger } from '../../utils/logging.js'; +import { AnchorComputerRegistry } from '../routing/anchor.js'; +import { ManhattanRectangularAnchor } from '../routing/manhattan-anchors.js'; +import { ManhattanEdgeRouter } from '../routing/manhattan-edge-router.js'; +import { EdgeRouterRegistry } from '../routing/routing.js'; +import { ModelMatcher } from './model-matching.js'; +import { UpdateModelCommand } from './update-model.js'; function compare(expected: SModelElement, actual: SModelElementImpl) { for (const p in expected) { diff --git a/packages/sprotty/src/features/update/update-model.ts b/packages/sprotty/src/features/update/update-model.ts index 6242e005..a930b02e 100644 --- a/packages/sprotty/src/features/update/update-model.ts +++ b/packages/sprotty/src/features/update/update-model.ts @@ -14,27 +14,25 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { injectable, inject, optional } from 'inversify'; -import { UpdateModelAction } from 'sprotty-protocol/lib/actions'; -import { Fadeable } from 'sprotty-protocol/lib/model'; -import { almostEquals, Dimension } from 'sprotty-protocol/lib/utils/geometry'; -import { Animation, CompoundAnimation } from '../../base/animations/animation'; -import { CommandExecutionContext, CommandReturn, Command } from '../../base/commands/command'; -import { FadeAnimation, ResolvedElementFade } from '../fade/fade'; -import { SModelRootImpl, SChildElementImpl, SModelElementImpl, SParentElementImpl } from '../../base/model/smodel'; -import { MoveAnimation, ResolvedElementMove, MorphEdgesAnimation } from '../move/move'; -import { isFadeable } from '../fade/model'; -import { isLocateable } from '../move/model'; -import { isSizeable } from '../bounds/model'; -import { ViewportRootElementImpl } from '../viewport/viewport-root'; -import { isSelectable } from '../select/model'; -import { MatchResult, ModelMatcher, Match, forEachMatch } from './model-matching'; -import { ResolvedElementResize, ResizeAnimation } from '../bounds/resize'; -import { TYPES } from '../../base/types'; -import { isViewport } from '../viewport/model'; -import { EdgeRouterRegistry, EdgeSnapshot, EdgeMemento } from '../routing/routing'; -import { SRoutableElementImpl } from '../routing/model'; -import { containsSome } from '../../base/model/smodel-utils'; +import { inject, injectable, optional } from 'inversify'; +import { almostEquals, Dimension, Fadeable, UpdateModelAction } from 'sprotty-protocol'; +import { Animation, CompoundAnimation } from '../../base/animations/animation.js'; +import { Command, CommandExecutionContext, CommandReturn } from '../../base/commands/command.js'; +import { containsSome } from '../../base/model/smodel-utils.js'; +import { SChildElementImpl, SModelElementImpl, SModelRootImpl, SParentElementImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { isSizeable } from '../bounds/model.js'; +import { ResizeAnimation, ResolvedElementResize } from '../bounds/resize.js'; +import { FadeAnimation, ResolvedElementFade } from '../fade/fade.js'; +import { isFadeable } from '../fade/model.js'; +import { isLocateable } from '../move/model.js'; +import { MorphEdgesAnimation, MoveAnimation, ResolvedElementMove } from '../move/move.js'; +import { SRoutableElementImpl } from '../routing/model.js'; +import { EdgeMemento, EdgeRouterRegistry, EdgeSnapshot } from '../routing/routing.js'; +import { isSelectable } from '../select/model.js'; +import { isViewport } from '../viewport/model.js'; +import { ViewportRootElementImpl } from '../viewport/viewport-root.js'; +import { forEachMatch, Match, MatchResult, ModelMatcher } from './model-matching.js'; export interface UpdateAnimationData { diff --git a/packages/sprotty/src/features/viewport/center-fit.ts b/packages/sprotty/src/features/viewport/center-fit.ts index cca9a645..c6543003 100644 --- a/packages/sprotty/src/features/viewport/center-fit.ts +++ b/packages/sprotty/src/features/viewport/center-fit.ts @@ -14,21 +14,18 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Action, CenterAction, FitToScreenAction } from 'sprotty-protocol/lib/actions'; -import { Viewport } from 'sprotty-protocol/lib/model'; -import { almostEquals, Bounds, Dimension } from 'sprotty-protocol/lib/utils/geometry'; -import { matchesKeystroke } from '../../utils/keyboard'; -import { SChildElementImpl } from '../../base/model/smodel'; -import { Command, CommandExecutionContext, CommandReturn } from '../../base/commands/command'; -import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel'; -import { KeyListener } from '../../base/views/key-tool'; -import { isBoundsAware } from '../bounds/model'; -import { isSelectable } from '../select/model'; -import { ViewportAnimation } from './viewport'; -import { isViewport, limitViewport } from './model'; -import { injectable, inject } from 'inversify'; -import { TYPES } from '../../base/types'; -import { ViewerOptions } from '../../base/views/viewer-options'; +import { inject, injectable } from 'inversify'; +import { Action, almostEquals, Bounds, CenterAction, Dimension, FitToScreenAction, Viewport } from 'sprotty-protocol'; +import { Command, CommandExecutionContext, CommandReturn } from '../../base/commands/command.js'; +import { SChildElementImpl, SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { KeyListener } from '../../base/views/key-tool.js'; +import { ViewerOptions } from '../../base/views/viewer-options.js'; +import { matchesKeystroke } from '../../utils/keyboard.js'; +import { isBoundsAware } from '../bounds/model.js'; +import { isSelectable } from '../select/model.js'; +import { isViewport, limitViewport } from './model.js'; +import { ViewportAnimation } from './viewport.js'; @injectable() export abstract class BoundsAwareViewportCommand extends Command { diff --git a/packages/sprotty/src/features/viewport/di.config.ts b/packages/sprotty/src/features/viewport/di.config.ts index 2d823bb7..b91ecdaf 100644 --- a/packages/sprotty/src/features/viewport/di.config.ts +++ b/packages/sprotty/src/features/viewport/di.config.ts @@ -15,12 +15,12 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { TYPES } from "../../base/types"; -import { CenterCommand, CenterKeyboardListener, FitToScreenCommand } from "./center-fit"; -import { SetViewportCommand, GetViewportCommand } from "./viewport"; -import { ScrollMouseListener } from "./scroll"; -import { ZoomMouseListener } from "./zoom"; -import { configureCommand } from "../../base/commands/command-registration"; +import { configureCommand } from "../../base/commands/command-registration.js"; +import { TYPES } from "../../base/types.js"; +import { CenterCommand, CenterKeyboardListener, FitToScreenCommand } from "./center-fit.js"; +import { ScrollMouseListener } from "./scroll.js"; +import { GetViewportCommand, SetViewportCommand } from "./viewport.js"; +import { ZoomMouseListener } from "./zoom.js"; const viewportModule = new ContainerModule((bind , _unbind, isBound) => { configureCommand({ bind, isBound }, CenterCommand); diff --git a/packages/sprotty/src/features/viewport/model.ts b/packages/sprotty/src/features/viewport/model.ts index 8e3266ca..ff7e3792 100644 --- a/packages/sprotty/src/features/viewport/model.ts +++ b/packages/sprotty/src/features/viewport/model.ts @@ -14,10 +14,9 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Bounds, Dimension } from 'sprotty-protocol'; -import { Viewport } from 'sprotty-protocol/lib/model'; -import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel'; -import { limit, Limits } from '../../utils/geometry'; +import { Bounds, Dimension, Viewport } from 'sprotty-protocol'; +import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { limit, Limits } from '../../utils/geometry.js'; export const viewportFeature = Symbol('viewportFeature'); diff --git a/packages/sprotty/src/features/viewport/scroll.ts b/packages/sprotty/src/features/viewport/scroll.ts index 2bb4b35f..bf5faf5e 100644 --- a/packages/sprotty/src/features/viewport/scroll.ts +++ b/packages/sprotty/src/features/viewport/scroll.ts @@ -15,21 +15,19 @@ ********************************************************************************/ import { inject } from 'inversify'; -import { Viewport } from 'sprotty-protocol/lib/model'; -import { Action, CenterAction, SetViewportAction } from 'sprotty-protocol/lib/actions'; -import { almostEquals, Bounds, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel'; -import { MouseListener } from '../../base/views/mouse-tool'; -import { findParentByFeature } from '../../base/model/smodel-utils'; -import { isViewport } from './model'; -import { isMoveable } from '../move/model'; -import { SRoutingHandleImpl } from '../routing/model'; -import { getModelBounds } from '../projection/model'; -import { getWindowScroll, hitsMouseEvent } from '../../utils/browser'; -import { TYPES } from '../../base/types'; -import { ViewerOptions } from '../../base/views/viewer-options'; -import { ITouchListener } from '../../base/views/touch-tool'; -import { limit } from '../../utils/geometry'; +import { Action, almostEquals, Bounds, CenterAction, Point, SetViewportAction, Viewport } from 'sprotty-protocol'; +import { findParentByFeature } from '../../base/model/smodel-utils.js'; +import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { MouseListener } from '../../base/views/mouse-tool.js'; +import { ITouchListener } from '../../base/views/touch-tool.js'; +import { ViewerOptions } from '../../base/views/viewer-options.js'; +import { getWindowScroll, hitsMouseEvent } from '../../utils/browser.js'; +import { limit } from '../../utils/geometry.js'; +import { isMoveable } from '../move/model.js'; +import { getModelBounds } from '../projection/model.js'; +import { SRoutingHandleImpl } from '../routing/model.js'; +import { isViewport } from './model.js'; export class ScrollMouseListener extends MouseListener implements ITouchListener { diff --git a/packages/sprotty/src/features/viewport/viewport-root.ts b/packages/sprotty/src/features/viewport/viewport-root.ts index 74f882a6..f6949ad2 100644 --- a/packages/sprotty/src/features/viewport/viewport-root.ts +++ b/packages/sprotty/src/features/viewport/viewport-root.ts @@ -14,12 +14,11 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Viewport } from 'sprotty-protocol/lib/model'; -import { Bounds, Dimension, isBounds, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SModelRootImpl, ModelIndexImpl } from '../../base/model/smodel'; -import { viewportFeature } from "./model"; -import { exportFeature } from "../export/model"; -import { InternalBoundsAware } from "../bounds/model"; +import { Bounds, Dimension, isBounds, Point, Viewport } from 'sprotty-protocol'; +import { ModelIndexImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { InternalBoundsAware } from "../bounds/model.js"; +import { exportFeature } from "../export/model.js"; +import { viewportFeature } from "./model.js"; /** * Model root element that defines a viewport, so it transforms the coordinate system with diff --git a/packages/sprotty/src/features/viewport/viewport.spec.ts b/packages/sprotty/src/features/viewport/viewport.spec.ts index 31d7f348..25c73682 100644 --- a/packages/sprotty/src/features/viewport/viewport.spec.ts +++ b/packages/sprotty/src/features/viewport/viewport.spec.ts @@ -14,20 +14,20 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; -import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; -import { TYPES } from '../../base/types'; -import { ConsoleLogger } from '../../utils/logging'; -import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer'; -import { CommandExecutionContext } from '../../base/commands/command'; -import { SetViewportCommand } from './viewport'; -import { ViewportRootElementImpl } from './viewport-root'; -import defaultModule from '../../base/di.config'; +import 'reflect-metadata'; import { SetViewportAction, Viewport, almostEquals } from 'sprotty-protocol'; -import { IModelFactory } from '../../base/model/smodel-factory'; -import { registerModelElement } from '../../base/model/smodel-utils'; -import { SGraphImpl, SNodeImpl } from '../../graph/sgraph'; +import { describe, expect, it } from 'vitest'; +import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer.js'; +import { CommandExecutionContext } from '../../base/commands/command.js'; +import defaultModule from '../../base/di.config.js'; +import { IModelFactory } from '../../base/model/smodel-factory.js'; +import { registerModelElement } from '../../base/model/smodel-utils.js'; +import { TYPES } from '../../base/types.js'; +import { SGraphImpl, SNodeImpl } from '../../graph/sgraph.js'; +import { ConsoleLogger } from '../../utils/logging.js'; +import { ViewportRootElementImpl } from './viewport-root.js'; +import { SetViewportCommand } from './viewport.js'; describe('BoundsAwareViewportCommand', () => { const container = new Container(); diff --git a/packages/sprotty/src/features/viewport/viewport.ts b/packages/sprotty/src/features/viewport/viewport.ts index 514d6ef6..0921fbba 100644 --- a/packages/sprotty/src/features/viewport/viewport.ts +++ b/packages/sprotty/src/features/viewport/viewport.ts @@ -14,17 +14,15 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { injectable, inject } from 'inversify'; -import { GetViewportAction, ResponseAction, SetViewportAction, ViewportResult } from 'sprotty-protocol/lib/actions'; -import { Viewport } from 'sprotty-protocol/lib/model'; -import { Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel'; -import { MergeableCommand, ICommand, CommandExecutionContext, CommandReturn } from '../../base/commands/command'; -import { Animation } from '../../base/animations/animation'; -import { isViewport, limitViewport } from './model'; -import { TYPES } from '../../base/types'; -import { ModelRequestCommand } from '../../base/commands/request-command'; -import { ViewerOptions } from '../../base/views/viewer-options'; +import { inject, injectable } from 'inversify'; +import { GetViewportAction, Point, ResponseAction, SetViewportAction, Viewport, ViewportResult } from 'sprotty-protocol'; +import { Animation } from '../../base/animations/animation.js'; +import { CommandExecutionContext, CommandReturn, ICommand, MergeableCommand } from '../../base/commands/command.js'; +import { ModelRequestCommand } from '../../base/commands/request-command.js'; +import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { ViewerOptions } from '../../base/views/viewer-options.js'; +import { isViewport, limitViewport } from './model.js'; @injectable() export class SetViewportCommand extends MergeableCommand { diff --git a/packages/sprotty/src/features/viewport/zoom.ts b/packages/sprotty/src/features/viewport/zoom.ts index 3dbc2e84..44bffce0 100644 --- a/packages/sprotty/src/features/viewport/zoom.ts +++ b/packages/sprotty/src/features/viewport/zoom.ts @@ -15,17 +15,15 @@ ********************************************************************************/ import { inject } from 'inversify'; -import { Action, SetViewportAction } from 'sprotty-protocol/lib/actions'; -import { Viewport } from 'sprotty-protocol/lib/model'; -import { almostEquals, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel'; -import { findParentByFeature } from '../../base/model/smodel-utils'; -import { TYPES } from '../../base/types'; -import { MouseListener } from '../../base/views/mouse-tool'; -import { ViewerOptions } from '../../base/views/viewer-options'; -import { getWindowScroll, isMac } from '../../utils/browser'; -import { isViewport } from './model'; -import { limit } from '../../utils/geometry'; +import { Action, almostEquals, Point, SetViewportAction, Viewport } from 'sprotty-protocol'; +import { findParentByFeature } from '../../base/model/smodel-utils.js'; +import { SModelElementImpl, SModelRootImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { MouseListener } from '../../base/views/mouse-tool.js'; +import { ViewerOptions } from '../../base/views/viewer-options.js'; +import { getWindowScroll, isMac } from '../../utils/browser.js'; +import { limit } from '../../utils/geometry.js'; +import { isViewport } from './model.js'; export function getZoom(label: SModelElementImpl) { let zoom = 1; diff --git a/packages/sprotty/src/features/zorder/di.config.ts b/packages/sprotty/src/features/zorder/di.config.ts index 292fb4f4..23f5af6a 100644 --- a/packages/sprotty/src/features/zorder/di.config.ts +++ b/packages/sprotty/src/features/zorder/di.config.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { configureCommand } from "../../base/commands/command-registration"; -import { BringToFrontCommand } from './zorder'; +import { configureCommand } from "../../base/commands/command-registration.js"; +import { BringToFrontCommand } from './zorder.js'; const zorderModule = new ContainerModule((bind, _unbind, isBound) => { configureCommand({ bind, isBound }, BringToFrontCommand); diff --git a/packages/sprotty/src/features/zorder/zorder.spec.ts b/packages/sprotty/src/features/zorder/zorder.spec.ts index b6ac5685..18566266 100644 --- a/packages/sprotty/src/features/zorder/zorder.spec.ts +++ b/packages/sprotty/src/features/zorder/zorder.spec.ts @@ -17,15 +17,15 @@ import 'reflect-metadata'; import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; -import { TYPES } from '../../base/types'; -import { ConsoleLogger } from '../../utils/logging'; -import { SModelRootImpl } from '../../base/model/smodel'; -import { EMPTY_ROOT, IModelFactory } from '../../base/model/smodel-factory'; -import { CommandExecutionContext } from '../../base/commands/command'; -import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer'; -import { BringToFrontCommand } from './zorder'; -import defaultModule from '../../base/di.config'; -import { SNodeImpl } from '../../graph/sgraph'; +import { TYPES } from '../../base/types.js'; +import { ConsoleLogger } from '../../utils/logging.js'; +import { SModelRootImpl } from '../../base/model/smodel.js'; +import { EMPTY_ROOT, IModelFactory } from '../../base/model/smodel-factory.js'; +import { CommandExecutionContext } from '../../base/commands/command.js'; +import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer.js'; +import { BringToFrontCommand } from './zorder.js'; +import defaultModule from '../../base/di.config.js'; +import { SNodeImpl } from '../../graph/sgraph.js'; import { BringToFrontAction } from 'sprotty-protocol'; function getNode(nodeId: string, model: SModelRootImpl) { diff --git a/packages/sprotty/src/features/zorder/zorder.ts b/packages/sprotty/src/features/zorder/zorder.ts index 6875a756..a36cd934 100644 --- a/packages/sprotty/src/features/zorder/zorder.ts +++ b/packages/sprotty/src/features/zorder/zorder.ts @@ -14,12 +14,12 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { injectable, inject } from 'inversify'; -import { BringToFrontAction } from 'sprotty-protocol/lib/actions'; -import { TYPES } from '../../base/types'; -import { SModelRootImpl, SChildElementImpl, SModelElementImpl, SParentElementImpl } from '../../base/model/smodel'; -import { Command, CommandExecutionContext } from '../../base/commands/command'; -import { SRoutableElementImpl, SConnectableElementImpl } from '../routing/model'; +import { inject, injectable } from 'inversify'; +import { BringToFrontAction } from 'sprotty-protocol'; +import { Command, CommandExecutionContext } from '../../base/commands/command.js'; +import { SChildElementImpl, SModelElementImpl, SModelRootImpl, SParentElementImpl } from '../../base/model/smodel.js'; +import { TYPES } from '../../base/types.js'; +import { SConnectableElementImpl, SRoutableElementImpl } from '../routing/model.js'; export type ZOrderElement = { element: SChildElementImpl diff --git a/packages/sprotty/src/graph/sgraph.spec.ts b/packages/sprotty/src/graph/sgraph.spec.ts index a67d9ffc..b8ee5113 100644 --- a/packages/sprotty/src/graph/sgraph.spec.ts +++ b/packages/sprotty/src/graph/sgraph.spec.ts @@ -17,16 +17,16 @@ import 'reflect-metadata'; import { expect, describe, it } from 'vitest'; -import { SRoutingHandleImpl } from '../features/routing/model'; -import { RectangularNode, RectangularPort } from '../lib/model'; -import { SNodeImpl, SEdgeImpl, SGraphImpl, SPortImpl } from './sgraph'; -import { RoutedPoint } from "../features/routing/routing"; -import { PolylineEdgeRouter } from "../features/routing/polyline-edge-router"; +import { SRoutingHandleImpl } from '../features/routing/model.js'; +import { RectangularNode, RectangularPort } from '../lib/model.js'; +import { SNodeImpl, SEdgeImpl, SGraphImpl, SPortImpl } from './sgraph.js'; +import { RoutedPoint } from "../features/routing/routing.js"; +import { PolylineEdgeRouter } from "../features/routing/polyline-edge-router.js"; import { Container } from "inversify"; -import { AnchorComputerRegistry } from "../features/routing/anchor"; -import { RectangleAnchor } from "../features/routing/polyline-anchors"; -import { TYPES } from "../base/types"; -import routingModule from "../features/routing/di.config"; +import { AnchorComputerRegistry } from "../features/routing/anchor.js"; +import { RectangleAnchor } from "../features/routing/polyline-anchors.js"; +import { TYPES } from "../base/types.js"; +import routingModule from "../features/routing/di.config.js"; describe('SEdgeImpl', () => { const graph = new SGraphImpl(); diff --git a/packages/sprotty/src/graph/sgraph.ts b/packages/sprotty/src/graph/sgraph.ts index 86366122..f4fe3420 100644 --- a/packages/sprotty/src/graph/sgraph.ts +++ b/packages/sprotty/src/graph/sgraph.ts @@ -14,23 +14,25 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Point } from 'sprotty-protocol/lib/utils/geometry'; -import { Alignable, EdgePlacement, Fadeable, Hoverable, Selectable } from 'sprotty-protocol/lib/model'; -import { ModelIndexImpl, SChildElementImpl, SModelElementImpl } from '../base/model/smodel'; +import { Alignable, EdgePlacement, Fadeable, Hoverable, Point, Selectable } from 'sprotty-protocol'; +import { ModelIndexImpl, SChildElementImpl, SModelElementImpl } from '../base/model/smodel.js'; import { - alignFeature, InternalBoundsAware, boundsFeature, layoutableChildFeature, layoutContainerFeature, + alignFeature, + boundsFeature, + InternalBoundsAware, + layoutableChildFeature, layoutContainerFeature, ModelLayoutOptions, SShapeElementImpl -} from '../features/bounds/model'; -import { edgeLayoutFeature } from '../features/edge-layout/model'; -import { deletableFeature } from '../features/edit/delete'; -import { editFeature } from '../features/edit/model'; -import { fadeFeature } from '../features/fade/model'; -import { hoverFeedbackFeature, popupFeature } from '../features/hover/model'; -import { moveFeature } from '../features/move/model'; -import { connectableFeature, SConnectableElementImpl, SRoutableElementImpl } from '../features/routing/model'; -import { selectFeature } from '../features/select/model'; -import { ViewportRootElementImpl } from '../features/viewport/viewport-root'; -import { FluentIterable, FluentIterableImpl } from '../utils/iterable'; +} from '../features/bounds/model.js'; +import { edgeLayoutFeature } from '../features/edge-layout/model.js'; +import { deletableFeature } from '../features/edit/delete.js'; +import { editFeature } from '../features/edit/model.js'; +import { fadeFeature } from '../features/fade/model.js'; +import { hoverFeedbackFeature, popupFeature } from '../features/hover/model.js'; +import { moveFeature } from '../features/move/model.js'; +import { connectableFeature, SConnectableElementImpl, SRoutableElementImpl } from '../features/routing/model.js'; +import { selectFeature } from '../features/select/model.js'; +import { ViewportRootElementImpl } from '../features/viewport/viewport-root.js'; +import { FluentIterable, FluentIterableImpl } from '../utils/iterable.js'; /** * Root element for graph-like models. diff --git a/packages/sprotty/src/graph/views.spec.tsx b/packages/sprotty/src/graph/views.spec.tsx index dadede51..03b32589 100644 --- a/packages/sprotty/src/graph/views.spec.tsx +++ b/packages/sprotty/src/graph/views.spec.tsx @@ -15,26 +15,26 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from '../lib/jsx'; +import { svg } from '../lib/jsx.js'; import 'reflect-metadata'; import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; import { VNode } from 'snabbdom'; -import { TYPES } from '../base/types'; -import { IVNodePostprocessor } from '../base/views/vnode-postprocessor'; -import { CircularNodeView, RectangularNodeView } from '../lib/svg-views'; -import { CircularNode, RectangularNode, RectangularPort } from '../lib/model'; -import { RenderingContext, ViewRegistry, configureModelElement } from '../base/views/view'; -import { ModelRendererFactory } from '../base/views/viewer'; -import { PolylineEdgeView, SGraphView } from './views'; -import { SModelElementImpl, SParentElementImpl } from '../base/model/smodel'; -import { IModelFactory } from '../base/model/smodel-factory'; -import defaultModule from '../base/di.config'; -import selectModule from '../features/select/di.config'; -import moveModule from '../features/move/di.config'; -import { SEdgeImpl, SGraphImpl, SNodeImpl, SPortImpl } from './sgraph'; -import routingModule from '../features/routing/di.config'; +import { TYPES } from '../base/types.js'; +import { IVNodePostprocessor } from '../base/views/vnode-postprocessor.js'; +import { CircularNodeView, RectangularNodeView } from '../lib/svg-views.js'; +import { CircularNode, RectangularNode, RectangularPort } from '../lib/model.js'; +import { RenderingContext, ViewRegistry, configureModelElement } from '../base/views/view.js'; +import { ModelRendererFactory } from '../base/views/viewer.js'; +import { PolylineEdgeView, SGraphView } from './views.js'; +import { SModelElementImpl, SParentElementImpl } from '../base/model/smodel.js'; +import { IModelFactory } from '../base/model/smodel-factory.js'; +import defaultModule from '../base/di.config.js'; +import selectModule from '../features/select/di.config.js'; +import moveModule from '../features/move/di.config.js'; +import { SEdgeImpl, SGraphImpl, SNodeImpl, SPortImpl } from './sgraph.js'; +import routingModule from '../features/routing/di.config.js'; import toHTML from 'snabbdom-to-html'; import { SEdge, SNode, SPort } from 'sprotty-protocol'; @@ -74,7 +74,10 @@ describe('graph views', () => { const graph = graphFactory.createRoot(schema) as SGraphImpl; const view = viewRegistry.get(graph.type); const vnode = view.render(graph, context); - expect(toHTML(vnode)).to.be.equal(''); + expect(vnode).not.toBeUndefined(); + if (vnode) { + expect(toHTML(vnode)).to.be.equal(''); + } }); function createModel() { @@ -90,15 +93,21 @@ describe('graph views', () => { const view = viewRegistry.get('edge:straight'); const vnode = view.render(graph.index.getById('edge0') as SEdgeImpl, context); - expect(toHTML(vnode)).to.be.equal( - ''); + expect(vnode).not.toBeUndefined(); + if (vnode) { + expect(toHTML(vnode)).to.be.equal( + ''); + } }); it('render a circle node', () => { const graph = createModel(); const view = viewRegistry.get('node:circle'); const vnode = view.render(graph.index.getById('node0') as SNodeImpl, context); - expect(toHTML(vnode)).to.be.equal(''); + expect(vnode).not.toBeUndefined(); + if (vnode) { + expect(toHTML(vnode)).to.be.equal(''); + } }); it('render a whole graph', () => { @@ -117,7 +126,10 @@ describe('graph views', () => { + '' + '' + ''; - expect(toHTML(vnode)).to.be.equal(expectation); + expect(vnode).not.toBeUndefined(); + if (vnode) { + expect(toHTML(vnode)).to.be.equal(expectation); + } }); }); @@ -190,12 +202,18 @@ describe('PolylineEdgeView', () => { it('correctly translates edge source and target position', () => { const edge = model.index.getById('edge1') as SEdgeImpl; const vnode = edgeView.render(edge, context); - expect(toHTML(vnode)).to.equal(''); + expect(vnode).not.toBeUndefined(); + if (vnode) { + expect(toHTML(vnode)).to.equal(''); + } }); it('correctly translates edge target and source position', () => { const edge = model.index.getById('edge2') as SEdgeImpl; const vnode = edgeView.render(edge, context); - expect(toHTML(vnode)).to.equal(''); + expect(vnode).not.toBeUndefined(); + if (vnode) { + expect(toHTML(vnode)).to.equal(''); + } }); }); diff --git a/packages/sprotty/src/graph/views.tsx b/packages/sprotty/src/graph/views.tsx index 14ddba8e..4cd220f9 100644 --- a/packages/sprotty/src/graph/views.tsx +++ b/packages/sprotty/src/graph/views.tsx @@ -17,11 +17,10 @@ /** @jsx svg */ import { inject, injectable } from 'inversify'; import { VNode } from "snabbdom"; -import { Point } from 'sprotty-protocol/lib/utils/geometry'; -import { getSubType } from 'sprotty-protocol/lib/utils/model-utils'; -import { IView, IViewArgs, RenderingContext } from "../base/views/view"; -import { setAttr } from '../base/views/vnode-utils'; -import { ShapeView } from '../features/bounds/views'; +import { getSubType, Point } from 'sprotty-protocol'; +import { IView, IViewArgs, RenderingContext } from "../base/views/view.js"; +import { setAttr } from '../base/views/vnode-utils.js'; +import { ShapeView } from '../features/bounds/views.js'; import { BY_DESCENDING_X_THEN_DESCENDING_Y, BY_DESCENDING_X_THEN_Y, @@ -30,14 +29,14 @@ import { IntersectingRoutedPoint, Intersection, isIntersectingRoutedPoint -} from '../features/edge-intersection/intersection-finder'; -import { isEdgeLayoutable } from '../features/edge-layout/model'; -import { SRoutableElementImpl, SRoutingHandleImpl } from '../features/routing/model'; -import { EdgeRouterRegistry, RoutedPoint } from '../features/routing/routing'; -import { RoutableView } from '../features/routing/views'; -import { svg } from '../lib/jsx'; -import { PointToPointLine } from '../utils/geometry'; -import { SCompartmentImpl, SEdgeImpl, SGraphImpl, SLabelImpl } from "./sgraph"; +} from '../features/edge-intersection/intersection-finder.js'; +import { isEdgeLayoutable } from '../features/edge-layout/model.js'; +import { SRoutableElementImpl, SRoutingHandleImpl } from '../features/routing/model.js'; +import { EdgeRouterRegistry, RoutedPoint } from '../features/routing/routing.js'; +import { RoutableView } from '../features/routing/views.js'; +import { svg } from '../lib/jsx.js'; +import { PointToPointLine } from '../utils/geometry.js'; +import { SCompartmentImpl, SEdgeImpl, SGraphImpl, SLabelImpl } from "./sgraph.js"; /** * IView component that turns an SGraph element and its children into a tree of virtual DOM elements. diff --git a/packages/sprotty/src/index.ts b/packages/sprotty/src/index.ts index 62b9e02f..42d8d473 100644 --- a/packages/sprotty/src/index.ts +++ b/packages/sprotty/src/index.ts @@ -16,169 +16,169 @@ // ------------------ Base ------------------ -export * from './base/actions/action'; -export * from './base/actions/action-dispatcher'; -export * from './base/actions/action-handler'; -export * from './base/actions/diagram-locker'; - -export * from './base/animations/animation-frame-syncer'; -export * from './base/animations/animation'; -export * from './base/animations/easing'; - -export * from './base/commands/command'; -export * from './base/commands/command-registration'; -export * from './base/commands/command-stack-options'; -export * from './base/commands/command-stack'; - -export * from './base/features/initialize-canvas'; -export * from './base/features/set-model'; - -export * from './base/model/smodel-factory'; -export * from './base/model/smodel-utils'; -export * from './base/model/smodel'; - -export * from './base/ui-extensions/ui-extension-registry'; -export * from './base/ui-extensions/ui-extension'; - -export * from './base/views/key-tool'; -export * from './base/views/mouse-tool'; -export * from './base/views/pointer-tool'; -export * from './base/views/thunk-view'; -export * from './base/views/touch-tool'; -export * from './base/views/view'; -export * from './base/views/viewer-cache'; -export * from './base/views/viewer-options'; -export * from './base/views/viewer'; -export * from './base/views/vnode-postprocessor'; -export * from './base/views/vnode-utils'; - -export * from './base/types'; - -import defaultModule from './base/di.config'; +export * from './base/actions/action.js'; +export * from './base/actions/action-dispatcher.js'; +export * from './base/actions/action-handler.js'; +export * from './base/actions/diagram-locker.js'; + +export * from './base/animations/animation-frame-syncer.js'; +export * from './base/animations/animation.js'; +export * from './base/animations/easing.js'; + +export * from './base/commands/command.js'; +export * from './base/commands/command-registration.js'; +export * from './base/commands/command-stack-options.js'; +export * from './base/commands/command-stack.js'; + +export * from './base/features/initialize-canvas.js'; +export * from './base/features/set-model.js'; + +export * from './base/model/smodel-factory.js'; +export * from './base/model/smodel-utils.js'; +export * from './base/model/smodel.js'; + +export * from './base/ui-extensions/ui-extension-registry.js'; +export * from './base/ui-extensions/ui-extension.js'; + +export * from './base/views/key-tool.js'; +export * from './base/views/mouse-tool.js'; +export * from './base/views/pointer-tool.js'; +export * from './base/views/thunk-view.js'; +export * from './base/views/touch-tool.js'; +export * from './base/views/view.js'; +export * from './base/views/viewer-cache.js'; +export * from './base/views/viewer-options.js'; +export * from './base/views/viewer.js'; +export * from './base/views/vnode-postprocessor.js'; +export * from './base/views/vnode-utils.js'; + +export * from './base/types.js'; + +import defaultModule from './base/di.config.js'; export { defaultModule }; // ------------------ Features ------------------ -export * from './features/bounds/bounds-manipulation'; -export * from './features/bounds/hidden-bounds-updater'; -export * from './features/bounds/layout'; -export * from './features/bounds/model'; -export * from './features/bounds/vbox-layout'; -export * from './features/bounds/hbox-layout'; -export * from './features/bounds/stack-layout'; -export * from './features/bounds/views'; - -export * from './features/button/button-handler'; -export * from './features/button/model'; - -export * from './features/command-palette/action-providers'; -export * from './features/command-palette/command-palette'; - -export * from './features/context-menu/context-menu-service'; -export * from './features/context-menu/menu-providers'; -export * from './features/context-menu/mouse-listener'; - -export * from './features/edge-layout/di.config'; -export * from './features/edge-layout/edge-layout'; -export * from './features/edge-layout/model'; - -export * from './features/edit/create'; -export * from './features/edit/create-on-drag'; -export * from './features/edit/di.config'; -export * from './features/edit/delete'; -export * from './features/edit/edit-label'; -export * from './features/edit/edit-label-ui'; -export * from './features/edit/edit-routing'; -export * from './features/edit/model'; -export * from './features/edit/reconnect'; - -export * from './features/expand/expand'; -export * from './features/expand/model'; -export * from './features/expand/views'; - -export * from './features/export/export'; -export * from './features/export/model'; -export * from './features/export/svg-exporter'; -export * from './features/export/svg-export-postprocessor'; - -export * from './features/fade/fade'; -export * from './features/fade/model'; - -export * from './features/hover/hover'; -export * from './features/hover/model'; - -export * from './features/decoration/model'; -export * from './features/decoration/views'; -export * from './features/decoration/decoration-placer'; - -export * from './features/edge-intersection/intersection-finder'; -export * from './features/edge-intersection/sweepline'; - -export * from './features/edge-junction/junction-finder'; -export * from './features/edge-junction/junction-postprocessor'; - -export * from './features/move/model'; -export * from './features/move/move'; -export * from './features/move/snap'; - -export * from './features/nameable/model'; - -export * from './features/open/open'; -export * from './features/open/model'; - -export * from './features/projection/model'; -export * from './features/projection/views'; - -export * from './features/routing/anchor'; -export * from './features/routing/abstract-edge-router'; -export * from './features/routing/bezier-anchors'; -export * from './features/routing/bezier-edge-router'; -export * from './features/routing/manhattan-anchors'; -export * from './features/routing/manhattan-edge-router'; -export * from './features/routing/model'; -export * from './features/routing/polyline-anchors'; -export * from './features/routing/polyline-edge-router'; -export * from './features/routing/routing'; -export * from './features/routing/views'; - -export * from './features/select/model'; -export * from './features/select/select'; - -export * from './features/undo-redo/undo-redo'; - -export * from './features/update/model-matching'; -export * from './features/update/update-model'; - -export * from './features/viewport/center-fit'; -export * from './features/viewport/model'; -export * from './features/viewport/scroll'; -export * from './features/viewport/viewport-root'; -export * from './features/viewport/viewport'; -export * from './features/viewport/zoom'; - -export * from './features/zorder/zorder'; - -import boundsModule from './features/bounds/di.config'; -import buttonModule from './features/button/di.config'; -import commandPaletteModule from './features/command-palette/di.config'; -import contextMenuModule from './features/context-menu/di.config'; -import decorationModule from './features/decoration/di.config'; -import edgeIntersectionModule from './features/edge-intersection/di.config'; -import edgeJunctionModule from './features/edge-junction/di.config'; -import edgeLayoutModule from './features/edge-layout/di.config'; -import expandModule from './features/expand/di.config'; -import exportModule from './features/export/di.config'; -import fadeModule from './features/fade/di.config'; -import hoverModule from './features/hover/di.config'; -import moveModule from './features/move/di.config'; -import openModule from './features/open/di.config'; -import routingModule from './features/routing/di.config'; -import selectModule from './features/select/di.config'; -import undoRedoModule from './features/undo-redo/di.config'; -import updateModule from './features/update/di.config'; -import viewportModule from './features/viewport/di.config'; -import zorderModule from './features/zorder/di.config'; +export * from './features/bounds/bounds-manipulation.js'; +export * from './features/bounds/hidden-bounds-updater.js'; +export * from './features/bounds/layout.js'; +export * from './features/bounds/model.js'; +export * from './features/bounds/vbox-layout.js'; +export * from './features/bounds/hbox-layout.js'; +export * from './features/bounds/stack-layout.js'; +export * from './features/bounds/views.js'; + +export * from './features/button/button-handler.js'; +export * from './features/button/model.js'; + +export * from './features/command-palette/action-providers.js'; +export * from './features/command-palette/command-palette.js'; + +export * from './features/context-menu/context-menu-service.js'; +export * from './features/context-menu/menu-providers.js'; +export * from './features/context-menu/mouse-listener.js'; + +export * from './features/edge-layout/di.config.js'; +export * from './features/edge-layout/edge-layout.js'; +export * from './features/edge-layout/model.js'; + +export * from './features/edit/create.js'; +export * from './features/edit/create-on-drag.js'; +export * from './features/edit/di.config.js'; +export * from './features/edit/delete.js'; +export * from './features/edit/edit-label.js'; +export * from './features/edit/edit-label-ui.js'; +export * from './features/edit/edit-routing.js'; +export * from './features/edit/model.js'; +export * from './features/edit/reconnect.js'; + +export * from './features/expand/expand.js'; +export * from './features/expand/model.js'; +export * from './features/expand/views.js'; + +export * from './features/export/export.js'; +export * from './features/export/model.js'; +export * from './features/export/svg-exporter.js'; +export * from './features/export/svg-export-postprocessor.js'; + +export * from './features/fade/fade.js'; +export * from './features/fade/model.js'; + +export * from './features/hover/hover.js'; +export * from './features/hover/model.js'; + +export * from './features/decoration/model.js'; +export * from './features/decoration/views.js'; +export * from './features/decoration/decoration-placer.js'; + +export * from './features/edge-intersection/intersection-finder.js'; +export * from './features/edge-intersection/sweepline.js'; + +export * from './features/edge-junction/junction-finder.js'; +export * from './features/edge-junction/junction-postprocessor.js'; + +export * from './features/move/model.js'; +export * from './features/move/move.js'; +export * from './features/move/snap.js'; + +export * from './features/nameable/model.js'; + +export * from './features/open/open.js'; +export * from './features/open/model.js'; + +export * from './features/projection/model.js'; +export * from './features/projection/views.js'; + +export * from './features/routing/anchor.js'; +export * from './features/routing/abstract-edge-router.js'; +export * from './features/routing/bezier-anchors.js'; +export * from './features/routing/bezier-edge-router.js'; +export * from './features/routing/manhattan-anchors.js'; +export * from './features/routing/manhattan-edge-router.js'; +export * from './features/routing/model.js'; +export * from './features/routing/polyline-anchors.js'; +export * from './features/routing/polyline-edge-router.js'; +export * from './features/routing/routing.js'; +export * from './features/routing/views.js'; + +export * from './features/select/model.js'; +export * from './features/select/select.js'; + +export * from './features/undo-redo/undo-redo.js'; + +export * from './features/update/model-matching.js'; +export * from './features/update/update-model.js'; + +export * from './features/viewport/center-fit.js'; +export * from './features/viewport/model.js'; +export * from './features/viewport/scroll.js'; +export * from './features/viewport/viewport-root.js'; +export * from './features/viewport/viewport.js'; +export * from './features/viewport/zoom.js'; + +export * from './features/zorder/zorder.js'; + +import boundsModule from './features/bounds/di.config.js'; +import buttonModule from './features/button/di.config.js'; +import commandPaletteModule from './features/command-palette/di.config.js'; +import contextMenuModule from './features/context-menu/di.config.js'; +import decorationModule from './features/decoration/di.config.js'; +import edgeIntersectionModule from './features/edge-intersection/di.config.js'; +import edgeJunctionModule from './features/edge-junction/di.config.js'; +import edgeLayoutModule from './features/edge-layout/di.config.js'; +import expandModule from './features/expand/di.config.js'; +import exportModule from './features/export/di.config.js'; +import fadeModule from './features/fade/di.config.js'; +import hoverModule from './features/hover/di.config.js'; +import moveModule from './features/move/di.config.js'; +import openModule from './features/open/di.config.js'; +import routingModule from './features/routing/di.config.js'; +import selectModule from './features/select/di.config.js'; +import undoRedoModule from './features/undo-redo/di.config.js'; +import updateModule from './features/update/di.config.js'; +import viewportModule from './features/viewport/di.config.js'; +import zorderModule from './features/zorder/di.config.js'; export { boundsModule, buttonModule, commandPaletteModule, contextMenuModule, decorationModule, @@ -188,39 +188,39 @@ export { // ------------------ Graph ------------------ -export * from './graph/sgraph'; -export * from './graph/views'; +export * from './graph/sgraph.js'; +export * from './graph/views.js'; // ------------------ Library ------------------ -export * from './lib/modules'; -export * from './lib/generic-views'; -export * from './lib/html-views'; -export * from './lib/jsx'; -export * from './lib/model'; -export * from './lib/svg-views'; +export * from './lib/modules.js'; +export * from './lib/generic-views.js'; +export * from './lib/html-views.js'; +export * from './lib/jsx.js'; +export * from './lib/model.js'; +export * from './lib/svg-views.js'; // ------------------ Model Source ------------------ -export * from './model-source/commit-model'; -export * from './model-source/diagram-server'; -export * from './model-source/local-model-source'; -export * from './model-source/logging'; -export * from './model-source/model-source'; -export * from './model-source/websocket'; +export * from './model-source/commit-model.js'; +export * from './model-source/diagram-server.js'; +export * from './model-source/local-model-source.js'; +export * from './model-source/logging.js'; +export * from './model-source/model-source.js'; +export * from './model-source/websocket.js'; -import modelSourceModule from './model-source/di.config'; +import modelSourceModule from './model-source/di.config.js'; export { modelSourceModule }; // ------------------ Utilities ------------------ -export * from './utils/browser'; -export * from './utils/codicon'; -export * from './utils/color'; -export * from './utils/geometry'; -export * from './utils/inversify'; -export * from './utils/logging'; -export * from './utils/registry'; +export * from './utils/browser.js'; +export * from './utils/codicon.js'; +export * from './utils/color.js'; +export * from './utils/geometry.js'; +export * from './utils/inversify.js'; +export * from './utils/logging.js'; +export * from './utils/registry.js'; diff --git a/packages/sprotty/src/lib/generic-views.tsx b/packages/sprotty/src/lib/generic-views.tsx index 817f167f..3d72519a 100644 --- a/packages/sprotty/src/lib/generic-views.tsx +++ b/packages/sprotty/src/lib/generic-views.tsx @@ -15,14 +15,14 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from './jsx'; +import { svg } from './jsx.js'; import { injectable } from "inversify"; -import virtualize from "./virtualize"; +import virtualize from "./virtualize.js"; import { VNode } from "snabbdom"; -import { IView, RenderingContext } from "../base/views/view"; -import { setNamespace, setAttr } from "../base/views/vnode-utils"; -import { ShapeView } from "../features/bounds/views"; -import { ForeignObjectElementImpl, PreRenderedElementImpl, ShapedPreRenderedElementImpl } from "./model"; +import { IView, RenderingContext } from "../base/views/view.js"; +import { setNamespace, setAttr } from "../base/views/vnode-utils.js"; +import { ShapeView } from "../features/bounds/views.js"; +import { ForeignObjectElementImpl, PreRenderedElementImpl, ShapedPreRenderedElementImpl } from "./model.js"; @injectable() export class PreRenderedView extends ShapeView { diff --git a/packages/sprotty/src/lib/html-views.tsx b/packages/sprotty/src/lib/html-views.tsx index 80a9fa17..3ed739d6 100644 --- a/packages/sprotty/src/lib/html-views.tsx +++ b/packages/sprotty/src/lib/html-views.tsx @@ -15,13 +15,13 @@ ********************************************************************************/ /** @jsx html */ -import { html } from './jsx'; +import { html } from './jsx.js'; import { injectable } from 'inversify'; import { VNode } from 'snabbdom'; -import { IView, RenderingContext } from '../base/views/view'; -import { setClass } from '../base/views/vnode-utils'; -import { HtmlRootImpl } from './model'; +import { IView, RenderingContext } from '../base/views/view.js'; +import { setClass } from '../base/views/vnode-utils.js'; +import { HtmlRootImpl } from './model.js'; /** * View for `HtmlRoot` elements. Typically this is used in hover popup boxes. diff --git a/packages/sprotty/src/lib/jsx.spec.tsx b/packages/sprotty/src/lib/jsx.spec.tsx index 4a1e958f..561cbf44 100644 --- a/packages/sprotty/src/lib/jsx.spec.tsx +++ b/packages/sprotty/src/lib/jsx.spec.tsx @@ -15,7 +15,7 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from './jsx'; +import { svg } from './jsx.js'; import { expect, describe, it } from 'vitest'; import { h } from 'snabbdom'; diff --git a/packages/sprotty/src/lib/model.ts b/packages/sprotty/src/lib/model.ts index 0fba2f61..937cd352 100644 --- a/packages/sprotty/src/lib/model.ts +++ b/packages/sprotty/src/lib/model.ts @@ -14,14 +14,13 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { Alignable, Locateable, Selectable, SModelElement, SModelRoot } from 'sprotty-protocol/lib/model'; -import { Bounds, Dimension, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SModelRootImpl, SChildElementImpl } from '../base/model/smodel'; -import { InternalBoundsAware, boundsFeature, alignFeature, isBoundsAware } from '../features/bounds/model'; -import { moveFeature } from '../features/move/model'; -import { selectFeature } from '../features/select/model'; -import { SNodeImpl, SPortImpl } from '../graph/sgraph'; -import { RECTANGULAR_ANCHOR_KIND, DIAMOND_ANCHOR_KIND, ELLIPTIC_ANCHOR_KIND } from '../features/routing/anchor'; +import { Alignable, Bounds, Dimension, Locateable, Point, Selectable, SModelElement, SModelRoot } from 'sprotty-protocol'; +import { SChildElementImpl, SModelRootImpl } from '../base/model/smodel.js'; +import { alignFeature, boundsFeature, InternalBoundsAware, isBoundsAware } from '../features/bounds/model.js'; +import { moveFeature } from '../features/move/model.js'; +import { DIAMOND_ANCHOR_KIND, ELLIPTIC_ANCHOR_KIND, RECTANGULAR_ANCHOR_KIND } from '../features/routing/anchor.js'; +import { selectFeature } from '../features/select/model.js'; +import { SNodeImpl, SPortImpl } from '../graph/sgraph.js'; /** * A node that is represented by a circle. diff --git a/packages/sprotty/src/lib/modules.ts b/packages/sprotty/src/lib/modules.ts index fb6216d1..287c9f4a 100644 --- a/packages/sprotty/src/lib/modules.ts +++ b/packages/sprotty/src/lib/modules.ts @@ -15,27 +15,27 @@ ********************************************************************************/ import { Container, ContainerModule } from 'inversify'; -import defaultModule from '../base/di.config'; -import modelSourceModule from '../model-source/di.config'; -import boundsModule from '../features/bounds/di.config'; -import buttonModule from '../features/button/di.config'; -import commandPaletteModule from '../features/command-palette/di.config'; -import contextMenuModule from '../features/context-menu/di.config'; -import decorationModule from '../features/decoration/di.config'; -import edgeLayoutModule from '../features/edge-layout/di.config'; -import { edgeEditModule, labelEditModule, labelEditUiModule } from '../features/edit/di.config'; -import expandModule from '../features/expand/di.config'; -import exportModule from '../features/export/di.config'; -import fadeModule from '../features/fade/di.config'; -import hoverModule from '../features/hover/di.config'; -import moveModule from '../features/move/di.config'; -import openModule from '../features/open/di.config'; -import routingModule from '../features/routing/di.config'; -import selectModule from '../features/select/di.config'; -import undoRedoModule from '../features/undo-redo/di.config'; -import updateModule from '../features/update/di.config'; -import viewportModule from '../features/viewport/di.config'; -import zorderModule from '../features/zorder/di.config'; +import defaultModule from '../base/di.config.js'; +import modelSourceModule from '../model-source/di.config.js'; +import boundsModule from '../features/bounds/di.config.js'; +import buttonModule from '../features/button/di.config.js'; +import commandPaletteModule from '../features/command-palette/di.config.js'; +import contextMenuModule from '../features/context-menu/di.config.js'; +import decorationModule from '../features/decoration/di.config.js'; +import edgeLayoutModule from '../features/edge-layout/di.config.js'; +import { edgeEditModule, labelEditModule, labelEditUiModule } from '../features/edit/di.config.js'; +import expandModule from '../features/expand/di.config.js'; +import exportModule from '../features/export/di.config.js'; +import fadeModule from '../features/fade/di.config.js'; +import hoverModule from '../features/hover/di.config.js'; +import moveModule from '../features/move/di.config.js'; +import openModule from '../features/open/di.config.js'; +import routingModule from '../features/routing/di.config.js'; +import selectModule from '../features/select/di.config.js'; +import undoRedoModule from '../features/undo-redo/di.config.js'; +import updateModule from '../features/update/di.config.js'; +import viewportModule from '../features/viewport/di.config.js'; +import zorderModule from '../features/zorder/di.config.js'; export interface LoadModuleOptions { exclude?: ContainerModule[] diff --git a/packages/sprotty/src/lib/svg-views.tsx b/packages/sprotty/src/lib/svg-views.tsx index 8cdbc4c2..66f373f7 100644 --- a/packages/sprotty/src/lib/svg-views.tsx +++ b/packages/sprotty/src/lib/svg-views.tsx @@ -15,19 +15,18 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from './jsx'; +import { svg } from './jsx.js'; -import { VNode } from 'snabbdom'; -import { Hoverable, Selectable } from 'sprotty-protocol/lib/model'; -import { Point } from 'sprotty-protocol/lib/utils/geometry'; -import { IView, IViewArgs, RenderingContext } from '../base/views/view'; -import { SNodeImpl, SPortImpl } from '../graph/sgraph'; -import { ViewportRootElementImpl } from '../features/viewport/viewport-root'; -import { SShapeElementImpl } from '../features/bounds/model'; -import { ShapeView } from '../features/bounds/views'; -import { Diamond } from '../utils/geometry'; -import { SModelElementImpl } from '../base/model/smodel'; import { injectable } from 'inversify'; +import { VNode } from 'snabbdom'; +import { Hoverable, Point, Selectable } from 'sprotty-protocol'; +import { SModelElementImpl } from '../base/model/smodel.js'; +import { IView, IViewArgs, RenderingContext } from '../base/views/view.js'; +import { SShapeElementImpl } from '../features/bounds/model.js'; +import { ShapeView } from '../features/bounds/views.js'; +import { ViewportRootElementImpl } from '../features/viewport/viewport-root.js'; +import { SNodeImpl, SPortImpl } from '../graph/sgraph.js'; +import { Diamond } from '../utils/geometry.js'; @injectable() export class SvgViewportView implements IView { diff --git a/packages/sprotty/src/lib/virtualize.spec.ts b/packages/sprotty/src/lib/virtualize.spec.ts index 93c8e568..b60d7909 100644 --- a/packages/sprotty/src/lib/virtualize.spec.ts +++ b/packages/sprotty/src/lib/virtualize.spec.ts @@ -18,7 +18,7 @@ import { describe, expect, it } from 'vitest'; import { VNode, h } from 'snabbdom'; -import virtualize from './virtualize'; +import virtualize from './virtualize.js'; /** * @vitest-environment happy-dom diff --git a/packages/sprotty/src/model-source/commit-model.ts b/packages/sprotty/src/model-source/commit-model.ts index 9ebdb089..f96b82f3 100644 --- a/packages/sprotty/src/model-source/commit-model.ts +++ b/packages/sprotty/src/model-source/commit-model.ts @@ -15,12 +15,11 @@ ********************************************************************************/ import { inject, injectable } from 'inversify'; -import { Action } from 'sprotty-protocol/lib/actions'; -import { SModelRoot } from 'sprotty-protocol/lib/model'; -import { CommandExecutionContext, CommandReturn, SystemCommand } from '../base/commands/command'; -import { SModelRootImpl } from '../base/model/smodel'; -import { TYPES } from '../base/types'; -import { ModelSource } from './model-source'; +import { Action, SModelRoot } from 'sprotty-protocol'; +import { CommandExecutionContext, CommandReturn, SystemCommand } from '../base/commands/command.js'; +import { SModelRootImpl } from '../base/model/smodel.js'; +import { TYPES } from '../base/types.js'; +import { ModelSource } from './model-source.js'; /** * Commit the current SModel back to the model source. diff --git a/packages/sprotty/src/model-source/di.config.ts b/packages/sprotty/src/model-source/di.config.ts index afbd018b..99d92997 100644 --- a/packages/sprotty/src/model-source/di.config.ts +++ b/packages/sprotty/src/model-source/di.config.ts @@ -15,10 +15,10 @@ ********************************************************************************/ import { ContainerModule } from "inversify"; -import { configureCommand } from "../base/commands/command-registration"; -import { TYPES } from "../base/types"; -import { CommitModelCommand } from "./commit-model"; -import { ComputedBoundsApplicator, ModelSource } from "./model-source"; +import { configureCommand } from "../base/commands/command-registration.js"; +import { TYPES } from "../base/types.js"; +import { CommitModelCommand } from "./commit-model.js"; +import { ComputedBoundsApplicator, ModelSource } from "./model-source.js"; /** * This container module does NOT provide any binding for TYPES.ModelSource because that needs to be diff --git a/packages/sprotty/src/model-source/diagram-server.ts b/packages/sprotty/src/model-source/diagram-server.ts index 02716b22..a481b29d 100644 --- a/packages/sprotty/src/model-source/diagram-server.ts +++ b/packages/sprotty/src/model-source/diagram-server.ts @@ -17,19 +17,25 @@ import { saveAs } from 'file-saver'; import { inject, injectable } from 'inversify'; import { - Action, OpenAction, ActionMessage, isActionMessage, CollapseExpandAction, CollapseExpandAllAction, - ComputedBoundsAction, RequestModelAction, RequestPopupModelAction, SetModelAction, UpdateModelAction, - ExportSvgAction -} from 'sprotty-protocol/lib/actions'; -import { SModelRoot } from 'sprotty-protocol/lib/model'; -import { ActionHandlerRegistry } from '../base/actions/action-handler'; -import { ICommand } from '../base/commands/command'; -import { SetModelCommand } from '../base/features/set-model'; -import { TYPES } from '../base/types'; -import { RequestBoundsCommand } from '../features/bounds/bounds-manipulation'; -import { UpdateModelCommand } from '../features/update/update-model'; -import { ILogger } from '../utils/logging'; -import { ComputedBoundsApplicator, ModelSource } from './model-source'; + Action, + ActionMessage, + CollapseExpandAction, CollapseExpandAllAction, + ComputedBoundsAction, + ExportSvgAction, + isActionMessage, + OpenAction, + RequestModelAction, RequestPopupModelAction, SetModelAction, + SModelRoot, + UpdateModelAction +} from 'sprotty-protocol'; +import { ActionHandlerRegistry } from '../base/actions/action-handler.js'; +import { ICommand } from '../base/commands/command.js'; +import { SetModelCommand } from '../base/features/set-model.js'; +import { TYPES } from '../base/types.js'; +import { RequestBoundsCommand } from '../features/bounds/bounds-manipulation.js'; +import { UpdateModelCommand } from '../features/update/update-model.js'; +import { ILogger } from '../utils/logging.js'; +import { ComputedBoundsApplicator, ModelSource } from './model-source.js'; /** * Sent by the external server when to signal a state change. @@ -111,7 +117,7 @@ export abstract class DiagramServerProxy extends ModelSource { * Called when a message is received from the remote diagram server. */ protected messageReceived(data: any): void { - const object = typeof(data) === 'string' ? JSON.parse(data) : data; + const object = typeof (data) === 'string' ? JSON.parse(data) : data; if (isActionMessage(object) && object.action) { if (!object.clientId || object.clientId === this.clientId) { (object.action as any)[receivedFromServerProperty] = true; diff --git a/packages/sprotty/src/model-source/local-model-source.spec.ts b/packages/sprotty/src/model-source/local-model-source.spec.ts index 90cd2a5c..c9470664 100644 --- a/packages/sprotty/src/model-source/local-model-source.spec.ts +++ b/packages/sprotty/src/model-source/local-model-source.spec.ts @@ -14,19 +14,27 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import "reflect-metadata"; -import { expect, describe, it } from 'vitest'; import { Container, injectable } from "inversify"; -// eslint-disable-next-line max-len -import { Action, ComputedBoundsAction, isResponseAction, RequestAction, RequestBoundsAction, ResponseAction, SetModelAction, UpdateModelAction } from 'sprotty-protocol/lib/actions'; -import { Deferred } from 'sprotty-protocol/lib/utils/async'; -import { TYPES } from "../base/types"; -import { ViewerOptions, overrideViewerOptions } from "../base/views/viewer-options"; -import { IActionDispatcher } from "../base/actions/action-dispatcher"; -import { LocalModelSource } from "./local-model-source"; -import { ComputedBoundsApplicator } from "./model-source"; -import defaultContainerModule from "../base/di.config"; -import { SModelElement } from "sprotty-protocol"; +import "reflect-metadata"; +import { + Action, + ComputedBoundsAction, + Deferred, + isResponseAction, + RequestAction, + RequestBoundsAction, + ResponseAction, + SetModelAction, + SModelElement, + UpdateModelAction +} from 'sprotty-protocol'; +import { describe, expect, it } from 'vitest'; +import { IActionDispatcher } from "../base/actions/action-dispatcher.js"; +import defaultContainerModule from "../base/di.config.js"; +import { TYPES } from "../base/types.js"; +import { overrideViewerOptions, ViewerOptions } from "../base/views/viewer-options.js"; +import { LocalModelSource } from "./local-model-source.js"; +import { ComputedBoundsApplicator } from "./model-source.js"; describe('LocalModelSource', () => { @@ -200,8 +208,8 @@ describe('LocalModelSource', () => { id: 'root', children: [ { - type: 'node', - id: 'child1' + type: 'node', + id: 'child1' }, { type: 'node', @@ -289,7 +297,7 @@ describe('LocalModelSource', () => { elementId: 'child1', newPosition: { x: 10, y: 10 }, newSize: { width: 20, height: 20 } - } + } ], { requestId: dispatcher.requests[0].requestId })); await promise1; diff --git a/packages/sprotty/src/model-source/local-model-source.ts b/packages/sprotty/src/model-source/local-model-source.ts index 9a1ee889..933c11f0 100644 --- a/packages/sprotty/src/model-source/local-model-source.ts +++ b/packages/sprotty/src/model-source/local-model-source.ts @@ -17,20 +17,30 @@ import { saveAs } from 'file-saver'; import { inject, injectable, optional } from 'inversify'; import { - Action, ComputedBoundsAction, ExportSvgAction, RequestBoundsAction, RequestModelAction, RequestPopupModelAction, - SetModelAction, SetPopupModelAction, UpdateModelAction -} from 'sprotty-protocol/lib/actions'; -import { SModelElement, SModelRoot, Viewport} from 'sprotty-protocol/lib/model'; -import { IModelLayoutEngine, GetViewportAction, ViewportResult, GetSelectionAction, SelectionResult } from 'sprotty-protocol'; -import { Bounds } from 'sprotty-protocol/lib/utils/geometry'; -import { SModelIndex, findElement } from 'sprotty-protocol/lib/utils/model-utils'; -import { ILogger } from '../utils/logging'; -import { FluentIterable } from '../utils/iterable'; -import { TYPES } from '../base/types'; -import { ActionHandlerRegistry } from '../base/actions/action-handler'; -import { EMPTY_ROOT } from '../base/model/smodel-factory'; -import { applyMatches, Match } from '../features/update/model-matching'; -import { ModelSource, ComputedBoundsApplicator } from './model-source'; + Action, + Bounds, + ComputedBoundsAction, ExportSvgAction, + findElement, + GetSelectionAction, + GetViewportAction, + IModelLayoutEngine, + RequestBoundsAction, RequestModelAction, RequestPopupModelAction, + SelectionResult, + SetModelAction, SetPopupModelAction, + SModelElement, + SModelIndex, + SModelRoot, + UpdateModelAction, + Viewport, + ViewportResult +} from 'sprotty-protocol'; +import { ActionHandlerRegistry } from '../base/actions/action-handler.js'; +import { EMPTY_ROOT } from '../base/model/smodel-factory.js'; +import { TYPES } from '../base/types.js'; +import { applyMatches, Match } from '../features/update/model-matching.js'; +import { FluentIterable } from '../utils/iterable.js'; +import { ILogger } from '../utils/logging.js'; +import { ComputedBoundsApplicator, ModelSource } from './model-source.js'; export interface IPopupModelProvider { getPopupModel(request: RequestPopupModelAction, element?: SModelElement): SModelRoot | undefined; diff --git a/packages/sprotty/src/model-source/logging.ts b/packages/sprotty/src/model-source/logging.ts index b7450927..8d8532f3 100644 --- a/packages/sprotty/src/model-source/logging.ts +++ b/packages/sprotty/src/model-source/logging.ts @@ -14,11 +14,11 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { injectable, inject } from 'inversify'; -import { LoggingAction } from 'sprotty-protocol/lib/actions'; -import { ILogger, LogLevel } from '../utils/logging'; -import { TYPES } from '../base/types'; -import { ModelSource } from './model-source'; +import { inject, injectable } from 'inversify'; +import { LoggingAction } from 'sprotty-protocol'; +import { TYPES } from '../base/types.js'; +import { ILogger, LogLevel } from '../utils/logging.js'; +import { ModelSource } from './model-source.js'; /** * A logger that forwards messages of type 'error', 'warn', and 'info' to the model source. diff --git a/packages/sprotty/src/model-source/model-source.ts b/packages/sprotty/src/model-source/model-source.ts index 511211e9..d96a13b5 100644 --- a/packages/sprotty/src/model-source/model-source.ts +++ b/packages/sprotty/src/model-source/model-source.ts @@ -15,15 +15,12 @@ ********************************************************************************/ import { inject, injectable } from 'inversify'; -import { Action, ComputedBoundsAction, ExportSvgAction, RequestModelAction } from 'sprotty-protocol/lib/actions'; -import { SModelElement, SModelRoot } from 'sprotty-protocol/lib/model'; -import { Dimension, Point } from 'sprotty-protocol/lib/utils/geometry'; -import { SModelIndex } from 'sprotty-protocol/lib/utils/model-utils'; -import { IActionDispatcher } from '../base/actions/action-dispatcher'; -import { ActionHandlerRegistry, IActionHandler, IActionHandlerInitializer } from '../base/actions/action-handler'; -import { ICommand } from '../base/commands/command'; -import { TYPES } from '../base/types'; -import { ViewerOptions } from '../base/views/viewer-options'; +import { Action, ComputedBoundsAction, Dimension, ExportSvgAction, Point, RequestModelAction, SModelElement, SModelIndex, SModelRoot } from 'sprotty-protocol'; +import { IActionDispatcher } from '../base/actions/action-dispatcher.js'; +import { ActionHandlerRegistry, IActionHandler, IActionHandlerInitializer } from '../base/actions/action-handler.js'; +import { ICommand } from '../base/commands/command.js'; +import { TYPES } from '../base/types.js'; +import { ViewerOptions } from '../base/views/viewer-options.js'; /** * A model source is serving the model to the event cycle. It represents diff --git a/packages/sprotty/src/model-source/websocket.ts b/packages/sprotty/src/model-source/websocket.ts index 48fe0759..8695acb1 100644 --- a/packages/sprotty/src/model-source/websocket.ts +++ b/packages/sprotty/src/model-source/websocket.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { injectable } from 'inversify'; -import { ActionMessage } from 'sprotty-protocol/lib/actions'; -import { DiagramServerProxy } from './diagram-server'; +import { ActionMessage } from 'sprotty-protocol'; +import { DiagramServerProxy } from './diagram-server.js'; /** * An external ModelSource that connects to the model provider using a websocket. diff --git a/packages/sprotty/src/utils/geometry.spec.ts b/packages/sprotty/src/utils/geometry.spec.ts index 300c931c..7fec75c2 100644 --- a/packages/sprotty/src/utils/geometry.spec.ts +++ b/packages/sprotty/src/utils/geometry.spec.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { expect, describe, it } from 'vitest'; -import { almostEquals } from 'sprotty-protocol/lib/utils/geometry'; -import { PointToPointLine } from "./geometry"; +import { almostEquals } from 'sprotty-protocol'; +import { PointToPointLine } from "./geometry.js"; describe('PointToPointLine', () => { describe('angle', () => { diff --git a/packages/sprotty/src/utils/iterable.spec.ts b/packages/sprotty/src/utils/iterable.spec.ts index cb3b630b..c0472af0 100644 --- a/packages/sprotty/src/utils/iterable.spec.ts +++ b/packages/sprotty/src/utils/iterable.spec.ts @@ -15,7 +15,7 @@ ********************************************************************************/ import { expect, describe, it } from 'vitest'; -import { FluentIterable, FluentIterableImpl, DONE_RESULT } from './iterable'; +import { FluentIterable, FluentIterableImpl, DONE_RESULT } from './iterable.js'; describe('FluentIterableImpl', () => { const iterable: FluentIterable = new FluentIterableImpl(() => ({ n: 1 }), state => { diff --git a/packages/sprotty/src/utils/keyboard.ts b/packages/sprotty/src/utils/keyboard.ts index 1dc8601b..49c6084b 100644 --- a/packages/sprotty/src/utils/keyboard.ts +++ b/packages/sprotty/src/utils/keyboard.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { isMac } from './browser'; +import { isMac } from './browser.js'; /** * Returns whether the keyboard event matches the keystroke described by the given diff --git a/packages/sprotty/src/utils/logging.ts b/packages/sprotty/src/utils/logging.ts index 5c3f66e0..aabf25c1 100644 --- a/packages/sprotty/src/utils/logging.ts +++ b/packages/sprotty/src/utils/logging.ts @@ -15,8 +15,8 @@ ********************************************************************************/ import { inject, injectable } from "inversify"; -import { TYPES } from "../base/types"; -import { ViewerOptions } from "../base/views/viewer-options"; +import { TYPES } from "../base/types.js"; +import { ViewerOptions } from "../base/views/viewer-options.js"; export interface ILogger { logLevel: LogLevel diff --git a/packages/sprotty/src/utils/registry.spec.ts b/packages/sprotty/src/utils/registry.spec.ts index b981197a..f399f11e 100644 --- a/packages/sprotty/src/utils/registry.spec.ts +++ b/packages/sprotty/src/utils/registry.spec.ts @@ -16,7 +16,7 @@ import 'reflect-metadata'; import { expect, describe, it } from 'vitest'; -import { InstanceRegistry, ProviderRegistry } from "./registry"; +import { InstanceRegistry, ProviderRegistry } from "./registry.js"; describe('ProviderRegistry', () => { function setup() { From 2785a0a96959c4c258b567813ef2537b9be468c2 Mon Sep 17 00:00:00 2001 From: Guillaume Fontorbe Date: Fri, 20 Feb 2026 15:19:51 +0100 Subject: [PATCH 4/8] Migrate sprotty-library --- packages/sprotty-library/package.json | 11 +++++++++-- packages/sprotty-library/src/flowchart/index.ts | 7 ++++--- packages/sprotty-library/src/index.ts | 2 +- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/packages/sprotty-library/package.json b/packages/sprotty-library/package.json index 6674d7c7..cedbb974 100644 --- a/packages/sprotty-library/package.json +++ b/packages/sprotty-library/package.json @@ -1,6 +1,7 @@ { "name": "sprotty-library", "version": "1.4.0", + "type": "module", "description": "Views and elements library for Sprotty", "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)", "keywords": [ @@ -40,6 +41,12 @@ "css", "src" ], - "main": "lib/index", - "types": "lib/index" + "main": "lib/index.js", + "types": "lib/index.d.ts", + "exports": { + ".": { + "types": "./lib/index.d.ts", + "import": "./lib/index.js" + } + } } diff --git a/packages/sprotty-library/src/flowchart/index.ts b/packages/sprotty-library/src/flowchart/index.ts index 00a892da..cb2ec581 100644 --- a/packages/sprotty-library/src/flowchart/index.ts +++ b/packages/sprotty-library/src/flowchart/index.ts @@ -14,6 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -export * from './container'; -export * from './model'; -export * from './views'; +export * from './container.js'; +export * from './model.js'; +export * from './views.js'; + diff --git a/packages/sprotty-library/src/index.ts b/packages/sprotty-library/src/index.ts index 1e31792c..659e1294 100644 --- a/packages/sprotty-library/src/index.ts +++ b/packages/sprotty-library/src/index.ts @@ -13,6 +13,6 @@ * * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import * as Flowchart from './flowchart'; +import * as Flowchart from './flowchart/index.js'; export { Flowchart }; From f80c6c56618d9b7a7ca3fa2ea7f2baeee182b123 Mon Sep 17 00:00:00 2001 From: Guillaume Fontorbe Date: Thu, 5 Mar 2026 13:07:09 +0100 Subject: [PATCH 5/8] Migration to ESM --- examples/browser-app.ts | 24 +- examples/circlegraph/src/di.config.ts | 2 +- examples/circlegraph/src/standalone.ts | 2 +- examples/circlegraph/src/views.tsx | 3 +- examples/classdiagram/src/di.config.ts | 56 +- examples/classdiagram/src/popup.ts | 2 +- examples/classdiagram/src/standalone.ts | 2 +- examples/classdiagram/src/views.tsx | 8 +- .../custom-views-showcase/src/di.config.ts | 4 +- .../custom-views-showcase/src/standalone.ts | 2 +- examples/custom-views-showcase/src/views.tsx | 5 +- examples/flowchart/src/standalone.ts | 4 +- examples/jsxample/src/di.config.ts | 2 +- examples/jsxample/src/standalone.ts | 2 +- examples/jsxample/src/views.tsx | 4 +- .../src/di.config.ts | 12 +- .../src/standalone.ts | 2 +- .../layout-strategies-showcase/src/views.tsx | 2 +- .../micro-layout-showcase/src/di.config.ts | 4 +- .../micro-layout-showcase/src/standalone.ts | 2 +- examples/micro-layout-showcase/src/views.tsx | 4 +- examples/multicore/src/di.config.ts | 4 +- examples/multicore/src/multicore.ts | 4 +- examples/multicore/src/views.tsx | 8 +- examples/package.json | 3 +- .../src/standalone.ts | 2 +- examples/random-graph/src/di.config.ts | 10 +- examples/random-graph/src/standalone.ts | 4 +- examples/random-graph/src/views.tsx | 4 +- examples/server/server-app.ts | 9 +- examples/styling-showcase/src/di.config.ts | 2 +- examples/styling-showcase/src/standalone.ts | 2 +- examples/styling-showcase/src/views.tsx | 3 +- examples/svg/src/standalone.ts | 2 +- .../{webpack.config.js => webpack.config.cjs} | 12 +- packages/sprotty-elk/src/index.ts | 1 + packages/sprotty-library/package.json | 3 +- packages/sprotty/package.json | 5 +- .../edge-intersection/intersection-finder.ts | 2 +- .../features/edge-intersection/sweepline.ts | 6 +- yarn.lock | 1914 ++++++++--------- 41 files changed, 1088 insertions(+), 1060 deletions(-) rename examples/{webpack.config.js => webpack.config.cjs} (79%) diff --git a/examples/browser-app.ts b/examples/browser-app.ts index b54e5f5a..b0e600ba 100644 --- a/examples/browser-app.ts +++ b/examples/browser-app.ts @@ -16,18 +16,18 @@ import "reflect-metadata"; -import runCircleGraph from "./circlegraph/src/standalone"; -import runClassDiagram from "./classdiagram/src/standalone"; -import runRandomGraph from "./random-graph/src/standalone"; -import runRandomGraphDistributed from "./random-graph-distributed/src/standalone"; -import runSvgPreRendered from "./svg/src/standalone"; -import runMulticore from "./multicore/src/multicore"; -import runFlowchart from "./flowchart/src/standalone"; -import runJsxample from "./jsxample/src/standalone"; -import runStylingShowcase from "./styling-showcase/src/standalone"; -import runMicroLayoutShowcase from "./micro-layout-showcase/src/standalone"; -import runCustomViewsShowcase from "./custom-views-showcase/src/standalone"; -import runLayoutStrategiesShowcase from "./layout-strategies-showcase/src/standalone"; +import runCircleGraph from "./circlegraph/src/standalone.js"; +import runClassDiagram from "./classdiagram/src/standalone.js"; +import runRandomGraph from "./random-graph/src/standalone.js"; +import runRandomGraphDistributed from "./random-graph-distributed/src/standalone.js"; +import runSvgPreRendered from "./svg/src/standalone.js"; +import runMulticore from "./multicore/src/multicore.js"; +import runFlowchart from "./flowchart/src/standalone.js"; +import runJsxample from "./jsxample/src/standalone.js"; +import runStylingShowcase from "./styling-showcase/src/standalone.js"; +import runMicroLayoutShowcase from "./micro-layout-showcase/src/standalone.js"; +import runCustomViewsShowcase from "./custom-views-showcase/src/standalone.js"; +import runLayoutStrategiesShowcase from "./layout-strategies-showcase/src/standalone.js"; const appDiv = document.getElementById('sprotty-app'); if (appDiv) { diff --git a/examples/circlegraph/src/di.config.ts b/examples/circlegraph/src/di.config.ts index 9c0a1858..6eb14f8e 100644 --- a/examples/circlegraph/src/di.config.ts +++ b/examples/circlegraph/src/di.config.ts @@ -21,7 +21,7 @@ import { PolylineEdgeView, MouseListener, SModelElementImpl } from 'sprotty'; import { Action, Point } from 'sprotty-protocol'; -import { CircleNodeView } from './views'; +import { CircleNodeView } from './views.js'; const NodeCreator = Symbol('NodeCreator'); diff --git a/examples/circlegraph/src/standalone.ts b/examples/circlegraph/src/standalone.ts index 970dee0a..271cee1d 100644 --- a/examples/circlegraph/src/standalone.ts +++ b/examples/circlegraph/src/standalone.ts @@ -18,7 +18,7 @@ import { TYPES, IActionDispatcher, ElementMove, LocalModelSource } from 'sprotty'; import { Bounds, Point, SEdge, SelectAction, SGraph, SNode, getBasicType, MoveAction } from 'sprotty-protocol'; -import createContainer from './di.config'; +import createContainer from './di.config.js'; const NODE_SIZE = 60; diff --git a/examples/circlegraph/src/views.tsx b/examples/circlegraph/src/views.tsx index 20a12c74..feea974b 100644 --- a/examples/circlegraph/src/views.tsx +++ b/examples/circlegraph/src/views.tsx @@ -15,10 +15,9 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from 'sprotty/lib/lib/jsx'; import { injectable } from 'inversify'; import { VNode } from 'snabbdom'; -import { RenderingContext, SNodeImpl, ShapeView } from 'sprotty'; +import { RenderingContext, SNodeImpl, ShapeView, svg } from 'sprotty'; /** * A very simple example node consisting of a plain circle. diff --git a/examples/classdiagram/src/di.config.ts b/examples/classdiagram/src/di.config.ts index 2a9a00c6..4c644d4b 100644 --- a/examples/classdiagram/src/di.config.ts +++ b/examples/classdiagram/src/di.config.ts @@ -16,21 +16,49 @@ import '@vscode/codicons/dist/codicon.css'; import { Container, ContainerModule } from 'inversify'; import { - TYPES, configureViewerOptions, SGraphView, SLabelView, SCompartmentView, JumpingPolylineEdgeView, - ConsoleLogger, LogLevel, loadDefaultModules, HtmlRootView, PreRenderedView, ExpandButtonView, - SRoutingHandleView, PreRenderedElementImpl, HtmlRootImpl, SGraphImpl, configureModelElement, SLabelImpl, - SCompartmentImpl, SEdgeImpl, SButtonImpl, SRoutingHandleImpl, RevealNamedElementActionProvider, - CenterGridSnapper, expandFeature, nameFeature, withEditLabelFeature, editLabelFeature, - RectangularNode, BezierCurveEdgeView, SBezierCreateHandleView, SBezierControlHandleView, moveFeature, selectFeature + BezierCurveEdgeView, + BezierMouseListener, + CenterGridSnapper, + ConsoleLogger, + ExpandButtonView, + HtmlRootImpl, + HtmlRootView, + JumpingPolylineEdgeView, + LogLevel, + PreRenderedElementImpl, + PreRenderedView, + RectangularNode, + RevealNamedElementActionProvider, + SBezierControlHandleView, + SBezierCreateHandleView, + SButtonImpl, + SCompartmentImpl, + SCompartmentView, + SEdgeImpl, + SGraphImpl, + SGraphView, + SLabelImpl, + SLabelView, + SRoutingHandleImpl, + SRoutingHandleView, + TYPES, + configureModelElement, + configureViewerOptions, + edgeIntersectionModule, + editLabelFeature, + expandFeature, + loadDefaultModules, + moveFeature, + nameFeature, + selectFeature, + withEditLabelFeature } from 'sprotty'; -import edgeIntersectionModule from 'sprotty/lib/features/edge-intersection/di.config'; -import { BezierMouseListener } from 'sprotty/lib/features/routing/bezier-edge-router'; -import { ClassDiagramLabelValidationDecorator, ClassDiagramLabelValidator } from './label-validation'; -import { ClassContextMenuItemProvider, ClassContextMenuService } from './menu'; -import { ClassLabel, ClassNode, Icon, PropertyLabel } from './model'; -import { ClassDiagramModelSource } from './model-source'; -import { PopupModelProvider } from './popup'; -import { IconView, NodeView } from './views'; +import { ClassDiagramLabelValidationDecorator, ClassDiagramLabelValidator } from './label-validation.js'; +import { ClassContextMenuItemProvider, ClassContextMenuService } from './menu.js'; +import { ClassLabel, ClassNode, Icon, PropertyLabel } from './model.js'; +import { ClassDiagramModelSource } from './model-source.js'; +import { PopupModelProvider } from './popup.js'; +import { IconView, NodeView } from './views.js'; export default (containerId: string) => { require('sprotty/css/sprotty.css'); diff --git a/examples/classdiagram/src/popup.ts b/examples/classdiagram/src/popup.ts index aba20914..86c6585c 100644 --- a/examples/classdiagram/src/popup.ts +++ b/examples/classdiagram/src/popup.ts @@ -19,7 +19,7 @@ import { TYPES, IModelFactory, IPopupModelProvider } from 'sprotty'; import { PreRenderedElement, RequestPopupModelAction, SModelElement, SModelRoot } from 'sprotty-protocol'; -import { ClassNode } from './model'; +import { ClassNode } from './model.js'; @injectable() export class PopupModelProvider implements IPopupModelProvider { diff --git a/examples/classdiagram/src/standalone.ts b/examples/classdiagram/src/standalone.ts index db160354..047ce1d3 100644 --- a/examples/classdiagram/src/standalone.ts +++ b/examples/classdiagram/src/standalone.ts @@ -14,7 +14,7 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import createContainer from './di.config'; +import createContainer from './di.config.js'; import { TYPES, LocalModelSource } from 'sprotty'; export default function runClassDiagram() { diff --git a/examples/classdiagram/src/views.tsx b/examples/classdiagram/src/views.tsx index c3c4cf4b..6fa49a7b 100644 --- a/examples/classdiagram/src/views.tsx +++ b/examples/classdiagram/src/views.tsx @@ -15,12 +15,10 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from 'sprotty/lib/lib/jsx'; - -import { RenderingContext, IView, RectangularNodeView, SNodeImpl, IViewArgs } from 'sprotty'; -import { VNode } from 'snabbdom'; -import { Icon } from './model'; import { injectable } from 'inversify'; +import { VNode } from 'snabbdom'; +import { IView, IViewArgs, RectangularNodeView, RenderingContext, SNodeImpl, svg } from 'sprotty'; +import { Icon } from './model.js'; @injectable() export class NodeView extends RectangularNodeView { diff --git a/examples/custom-views-showcase/src/di.config.ts b/examples/custom-views-showcase/src/di.config.ts index 4fa98046..318f5c69 100644 --- a/examples/custom-views-showcase/src/di.config.ts +++ b/examples/custom-views-showcase/src/di.config.ts @@ -25,13 +25,13 @@ import { import { BasicShapeNode, EnhancedNode, ComplexNode, StatefulNode, StyledEdge, CustomLabel -} from './model'; +} from './model.js'; // Import our custom view classes import { BasicShapeView, EnhancedNodeView, ComplexNodeView, StatefulNodeView, StyledEdgeView, CustomLabelView -} from './views'; +} from './views.js'; export default () => { require('sprotty/css/sprotty.css'); diff --git a/examples/custom-views-showcase/src/standalone.ts b/examples/custom-views-showcase/src/standalone.ts index 568714cb..a2df862a 100644 --- a/examples/custom-views-showcase/src/standalone.ts +++ b/examples/custom-views-showcase/src/standalone.ts @@ -16,7 +16,7 @@ import { TYPES, LocalModelSource, IActionDispatcher } from 'sprotty'; import { SGraph, SNode, SEdge, SLabel, FitToScreenAction } from 'sprotty-protocol'; -import createContainer from './di.config'; +import createContainer from './di.config.js'; export default async function runCustomViewsShowcase() { console.log('Starting Custom Views Showcase...'); diff --git a/examples/custom-views-showcase/src/views.tsx b/examples/custom-views-showcase/src/views.tsx index 58b25fe8..3bf401af 100644 --- a/examples/custom-views-showcase/src/views.tsx +++ b/examples/custom-views-showcase/src/views.tsx @@ -15,11 +15,10 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from 'sprotty'; import { injectable } from 'inversify'; import { VNode } from 'snabbdom'; -import { IView, RenderingContext, IViewArgs, RectangularNodeView, PolylineEdgeView } from 'sprotty'; -import { BasicShapeNode, EnhancedNode, ComplexNode, StatefulNode, StyledEdge, CustomLabel } from './model'; +import { IView, IViewArgs, PolylineEdgeView, RectangularNodeView, RenderingContext, svg } from 'sprotty'; +import { BasicShapeNode, ComplexNode, CustomLabel, EnhancedNode, StatefulNode, StyledEdge } from './model.js'; /** * Basic Shape View - demonstrates simple custom view creation diff --git a/examples/flowchart/src/standalone.ts b/examples/flowchart/src/standalone.ts index 33753062..9acd8987 100644 --- a/examples/flowchart/src/standalone.ts +++ b/examples/flowchart/src/standalone.ts @@ -16,8 +16,8 @@ import { LocalModelSource, TYPES } from 'sprotty'; import { BringToFrontAction, FitToScreenAction } from 'sprotty-protocol'; -import createContainer from './di.config'; -import { initializeModel } from './data'; +import createContainer from './di.config.js'; +import { initializeModel } from './data.js'; export default async function runFlowchart() { const container = createContainer('sprotty'); diff --git a/examples/jsxample/src/di.config.ts b/examples/jsxample/src/di.config.ts index b1944a67..da1539a8 100644 --- a/examples/jsxample/src/di.config.ts +++ b/examples/jsxample/src/di.config.ts @@ -28,7 +28,7 @@ import { configureModelElement, configureViewerOptions, loadDefaultModules} from "sprotty"; -import { ExampleNodeView } from "./views"; +import { ExampleNodeView } from "./views.js"; export default (containerId: string) => { require('../css/diagram.css'); diff --git a/examples/jsxample/src/standalone.ts b/examples/jsxample/src/standalone.ts index 66300fc4..c42b87de 100644 --- a/examples/jsxample/src/standalone.ts +++ b/examples/jsxample/src/standalone.ts @@ -15,7 +15,7 @@ ********************************************************************************/ import { LocalModelSource, TYPES } from 'sprotty'; -import createContainer from './di.config'; +import createContainer from './di.config.js'; export default async function runJsxample() { const container = createContainer('sprotty'); diff --git a/examples/jsxample/src/views.tsx b/examples/jsxample/src/views.tsx index 0de3126c..0c55d84a 100644 --- a/examples/jsxample/src/views.tsx +++ b/examples/jsxample/src/views.tsx @@ -14,11 +14,9 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ /** @jsx svg */ -import { SLabelImpl, svg } from 'sprotty'; - import { injectable } from "inversify"; import { VNode } from "snabbdom"; -import { IViewArgs, RenderingContext, SShapeElementImpl, ShapeView } from "sprotty"; +import { IViewArgs, RenderingContext, SLabelImpl, SShapeElementImpl, ShapeView, svg } from 'sprotty'; @injectable() export class ExampleNodeView extends ShapeView { diff --git a/examples/layout-strategies-showcase/src/di.config.ts b/examples/layout-strategies-showcase/src/di.config.ts index 29f63700..205a8878 100644 --- a/examples/layout-strategies-showcase/src/di.config.ts +++ b/examples/layout-strategies-showcase/src/di.config.ts @@ -41,25 +41,25 @@ import { ElkFactory, ElkLayoutEngine, ILayoutConfigurator -} from 'sprotty-elk/lib/inversify'; -import { LayoutOptions } from 'elkjs/lib/elk-api'; +} from 'sprotty-elk'; +import { LayoutOptions } from 'elkjs'; import { SGraph, SModelIndex, SNode } from 'sprotty-protocol'; -import ElkConstructor from 'elkjs/lib/elk.bundled'; +import ElkConstructor from 'elkjs'; import { ServerLayoutNode, LayoutEdge -} from './model'; +} from './model.js'; import { ClientLayoutNodeView, ServerLayoutNodeView, HybridLayoutNodeView, LayoutEdgeView -} from './views'; +} from './views.js'; /** * ELK factory for creating ELK layout instances */ -const elkFactory: ElkFactory = () => new ElkConstructor({ +const elkFactory: ElkFactory = () => new ElkConstructor.default({ algorithms: ['layered'] }); diff --git a/examples/layout-strategies-showcase/src/standalone.ts b/examples/layout-strategies-showcase/src/standalone.ts index 983d3af2..91ba7b12 100644 --- a/examples/layout-strategies-showcase/src/standalone.ts +++ b/examples/layout-strategies-showcase/src/standalone.ts @@ -16,7 +16,7 @@ import { TYPES, LocalModelSource } from 'sprotty'; import { SGraph, SNode, SEdge, SLabel, SCompartment, FitToScreenAction } from 'sprotty-protocol'; -import { createLayoutContainer } from './di.config'; +import { createLayoutContainer } from './di.config.js'; // Global variables for the demo let currentContainer: any; let currentModelSource: LocalModelSource; diff --git a/examples/layout-strategies-showcase/src/views.tsx b/examples/layout-strategies-showcase/src/views.tsx index b32a10b9..b3484017 100644 --- a/examples/layout-strategies-showcase/src/views.tsx +++ b/examples/layout-strategies-showcase/src/views.tsx @@ -22,7 +22,7 @@ import { IView, RenderingContext, IViewArgs, PolylineEdgeView, ShapeView } from import { ServerLayoutNode, LayoutEdge -} from './model'; +} from './model.js'; /** * Client Layout Node View - Rich content with micro-layout diff --git a/examples/micro-layout-showcase/src/di.config.ts b/examples/micro-layout-showcase/src/di.config.ts index 6df071ef..c94b6461 100644 --- a/examples/micro-layout-showcase/src/di.config.ts +++ b/examples/micro-layout-showcase/src/di.config.ts @@ -32,8 +32,8 @@ import { layoutableChildFeature, loadDefaultModules } from 'sprotty'; -import { InteractiveCardNode } from './model'; -import { ComponentView, DemoCardView, InteractiveCardView } from './views'; +import { InteractiveCardNode } from './model.js'; +import { ComponentView, DemoCardView, InteractiveCardView } from './views.js'; export default () => { require('sprotty/css/sprotty.css'); diff --git a/examples/micro-layout-showcase/src/standalone.ts b/examples/micro-layout-showcase/src/standalone.ts index 96bc4b7d..8cc6e97e 100644 --- a/examples/micro-layout-showcase/src/standalone.ts +++ b/examples/micro-layout-showcase/src/standalone.ts @@ -16,7 +16,7 @@ import { TYPES, LocalModelSource, IActionDispatcher } from 'sprotty'; import { SGraph, SNode, SLabel, SCompartment, FitToScreenAction } from 'sprotty-protocol'; -import createContainer from './di.config'; +import createContainer from './di.config.js'; export default async function runMicroLayoutShowcase() { const container = createContainer(); diff --git a/examples/micro-layout-showcase/src/views.tsx b/examples/micro-layout-showcase/src/views.tsx index 919399ae..4d4840fa 100644 --- a/examples/micro-layout-showcase/src/views.tsx +++ b/examples/micro-layout-showcase/src/views.tsx @@ -15,11 +15,11 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from 'sprotty/lib/lib/jsx'; +import { svg } from 'sprotty'; import { injectable } from 'inversify'; import { VNode } from 'snabbdom'; import { RenderingContext, ShapeView } from 'sprotty'; -import { InteractiveCardNode } from './model'; +import { InteractiveCardNode } from './model.js'; /** * Custom view for the interactive card that shows layout effects. diff --git a/examples/multicore/src/di.config.ts b/examples/multicore/src/di.config.ts index 58fffc55..41d2481e 100644 --- a/examples/multicore/src/di.config.ts +++ b/examples/multicore/src/di.config.ts @@ -20,8 +20,8 @@ import { loadDefaultModules, LocalModelSource, HtmlRootView, PreRenderedView, SvgExporter, configureModelElement, PreRenderedElementImpl, HtmlRootImpl, SLabelImpl, SCompartmentImpl } from 'sprotty'; -import { ProcessorView, CoreView, CrossbarView, ChannelView, SimpleCoreView } from './views'; -import { Channel, Core, Crossbar, Processor } from './chipmodel'; +import { ProcessorView, CoreView, CrossbarView, ChannelView, SimpleCoreView } from './views.js'; +import { Channel, Core, Crossbar, Processor } from './chipmodel.js'; class FilteringSvgExporter extends SvgExporter { isExported(styleSheet: CSSStyleSheet): boolean { diff --git a/examples/multicore/src/multicore.ts b/examples/multicore/src/multicore.ts index 3a52701c..420acca2 100644 --- a/examples/multicore/src/multicore.ts +++ b/examples/multicore/src/multicore.ts @@ -20,8 +20,8 @@ import { CORE_DISTANCE, CORE_WIDTH, ChannelSchema, CoreSchema, CrossbarSchema, Direction, ProcessorSchema -} from './chipmodel'; -import createContainer from './di.config'; +} from './chipmodel.js'; +import createContainer from './di.config.js'; export default function runMulticore() { const container = createContainer(); diff --git a/examples/multicore/src/views.tsx b/examples/multicore/src/views.tsx index a9fa01c1..e4934c8a 100644 --- a/examples/multicore/src/views.tsx +++ b/examples/multicore/src/views.tsx @@ -15,12 +15,10 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from 'sprotty/lib/lib/jsx'; - -import { VNode } from "snabbdom"; -import { IView, RenderingContext, setAttr, ThunkView, RGBColor, toSVG, rgb, ShapeView, IViewArgs } from 'sprotty'; -import { CORE_DISTANCE, CORE_WIDTH, Channel, Core, Crossbar, Direction, Processor } from './chipmodel'; import { injectable } from 'inversify'; +import { VNode } from "snabbdom"; +import { IView, IViewArgs, RenderingContext, rgb, RGBColor, setAttr, ShapeView, svg, ThunkView, toSVG } from 'sprotty'; +import { Channel, Core, CORE_DISTANCE, CORE_WIDTH, Crossbar, Direction, Processor } from './chipmodel.js'; @injectable() export class ProcessorView implements IView { diff --git a/examples/package.json b/examples/package.json index 735f70dd..54fc1781 100644 --- a/examples/package.json +++ b/examples/package.json @@ -2,6 +2,7 @@ "name": "sprotty-examples", "version": "1.4.0", "private": "true", + "type": "module", "dependencies": { "@vscode/codicons": "^0.0.33", "express": "^4.18.2", @@ -33,7 +34,7 @@ "prepare": "yarn run build", "clean": "shx rm -fr lib artifacts *.tsbuildinfo", "compile": "tsc -b tsconfig.json", - "build": "webpack && npm run compile", + "build": "webpack --config webpack.config.cjs && npm run compile", "watch": "yarn run watch:browser", "watch:browser": "webpack --watch", "watch:server": "tsc -w", diff --git a/examples/random-graph-distributed/src/standalone.ts b/examples/random-graph-distributed/src/standalone.ts index d5c7fd86..18440008 100644 --- a/examples/random-graph-distributed/src/standalone.ts +++ b/examples/random-graph-distributed/src/standalone.ts @@ -16,7 +16,7 @@ import { IActionDispatcher, TYPES, WebSocketDiagramServerProxy } from 'sprotty'; import { RequestModelAction, FitToScreenAction } from 'sprotty-protocol'; -import createContainer from './di.config'; +import createContainer from './di.config.js'; export default function runRandomGraphDistributed() { const container = createContainer('sprotty'); diff --git a/examples/random-graph/src/di.config.ts b/examples/random-graph/src/di.config.ts index 3f8aba9a..45641b5f 100644 --- a/examples/random-graph/src/di.config.ts +++ b/examples/random-graph/src/di.config.ts @@ -14,8 +14,8 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import { LayoutOptions } from 'elkjs/lib/elk-api'; -import ElkConstructor from 'elkjs/lib/elk.bundled'; +import { LayoutOptions } from 'elkjs'; +import ElkConstructor from 'elkjs/lib/elk.bundled.js'; import { Container, ContainerModule } from 'inversify'; import { Animation, CommandExecutionContext, configureModelElement, configureViewerOptions, ConsoleLogger, @@ -25,15 +25,15 @@ import { } from 'sprotty'; import { DefaultLayoutConfigurator, ElkFactory, ElkLayoutEngine, elkLayoutModule, ILayoutConfigurator -} from 'sprotty-elk/lib/inversify'; +} from 'sprotty-elk'; import { Point, SGraph, SModelIndex, SNode, SPort } from 'sprotty-protocol'; -import { PortViewWithExternalLabel } from './views'; +import { PortViewWithExternalLabel } from './views.js'; export default (containerId: string) => { require('sprotty/css/sprotty.css'); require('../css/diagram.css'); - const elkFactory: ElkFactory = () => new ElkConstructor({ + const elkFactory: ElkFactory = () => new ElkConstructor.default({ algorithms: ['layered'] }); diff --git a/examples/random-graph/src/standalone.ts b/examples/random-graph/src/standalone.ts index d9410eae..04e1d777 100644 --- a/examples/random-graph/src/standalone.ts +++ b/examples/random-graph/src/standalone.ts @@ -15,9 +15,9 @@ ********************************************************************************/ import { LocalModelSource, TYPES } from 'sprotty'; -import { ILayoutConfigurator } from 'sprotty-elk/lib/inversify'; +import { ILayoutConfigurator } from 'sprotty-elk'; import { SEdge, SGraph, SLabel, SNode, SPort } from 'sprotty-protocol'; -import createContainer, { RandomGraphLayoutConfigurator } from './di.config'; +import createContainer, { RandomGraphLayoutConfigurator } from './di.config.js'; export default function runRandomGraph() { const container = createContainer('sprotty'); diff --git a/examples/random-graph/src/views.tsx b/examples/random-graph/src/views.tsx index a544d27e..6c761a76 100644 --- a/examples/random-graph/src/views.tsx +++ b/examples/random-graph/src/views.tsx @@ -15,11 +15,9 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from 'sprotty/lib/lib/jsx'; - import { injectable } from 'inversify'; import { VNode } from 'snabbdom'; -import { ATTR_BBOX_ELEMENT, RenderingContext, setAttr, ShapeView, SPortImpl } from 'sprotty'; +import { ATTR_BBOX_ELEMENT, RenderingContext, setAttr, ShapeView, SPortImpl, svg } from 'sprotty'; @injectable() diff --git a/examples/server/server-app.ts b/examples/server/server-app.ts index 6b8249a6..2c0fc0ad 100644 --- a/examples/server/server-app.ts +++ b/examples/server/server-app.ts @@ -16,11 +16,10 @@ import express from 'express'; import * as path from 'path'; -import { ElkFactory, ElkLayoutEngine } from 'sprotty-elk/lib/elk-layout'; -import { SocketElkServer } from 'sprotty-elk/lib/node'; +import { ElkFactory, ElkLayoutEngine, SocketElkServer } from 'sprotty-elk'; import { Action, ActionMessage, DiagramServer, DiagramServices } from 'sprotty-protocol'; -import { RandomGraphGenerator } from './random-graph-generator'; -import { Server } from 'ws'; +import { WebSocketServer } from 'ws'; +import { RandomGraphGenerator } from './random-graph-generator.js'; const serverApp = express(); serverApp.use(express.json()); @@ -33,7 +32,7 @@ const services: DiagramServices = { // Create a WebSocket Server // This is called from the `random-graph-distributed` example by `WebSocketDiagramServerProxy` -const wsServer = new Server({ noServer: true }); +const wsServer = new WebSocketServer({ noServer: true }); wsServer.on('connection', socket => { let clientId: string | undefined; diff --git a/examples/styling-showcase/src/di.config.ts b/examples/styling-showcase/src/di.config.ts index e1b20de6..d48236ab 100644 --- a/examples/styling-showcase/src/di.config.ts +++ b/examples/styling-showcase/src/di.config.ts @@ -21,7 +21,7 @@ import { configureModelElement, SGraphImpl, SNodeImpl, SEdgeImpl, SLabelImpl, SLabelView, selectFeature, hoverFeedbackFeature } from 'sprotty'; -import { LoadMonitorNodeView } from './views'; +import { LoadMonitorNodeView } from './views.js'; export default () => { require('sprotty/css/sprotty.css'); diff --git a/examples/styling-showcase/src/standalone.ts b/examples/styling-showcase/src/standalone.ts index 9a3f02ec..8b17c50d 100644 --- a/examples/styling-showcase/src/standalone.ts +++ b/examples/styling-showcase/src/standalone.ts @@ -16,7 +16,7 @@ import { TYPES, LocalModelSource, IActionDispatcher } from 'sprotty'; import { SGraph, SNode, SEdge, SLabel, FitToScreenAction } from 'sprotty-protocol'; -import createContainer from './di.config'; +import createContainer from './di.config.js'; export default async function runStylingShowcase() { const container = createContainer(); diff --git a/examples/styling-showcase/src/views.tsx b/examples/styling-showcase/src/views.tsx index 2eaeab58..c372ba0e 100644 --- a/examples/styling-showcase/src/views.tsx +++ b/examples/styling-showcase/src/views.tsx @@ -15,10 +15,9 @@ ********************************************************************************/ /** @jsx svg */ -import { svg } from 'sprotty/lib/lib/jsx'; import { injectable } from 'inversify'; import { VNode } from 'snabbdom'; -import { RenderingContext, ShapeView } from 'sprotty'; +import { RenderingContext, ShapeView, svg } from 'sprotty'; /** * Custom view for load monitoring node that demonstrates conditional styling. * CSS classes are applied based on the load percentage value. diff --git a/examples/svg/src/standalone.ts b/examples/svg/src/standalone.ts index c3de0f13..9aa5ec15 100644 --- a/examples/svg/src/standalone.ts +++ b/examples/svg/src/standalone.ts @@ -15,7 +15,7 @@ ********************************************************************************/ import { TYPES, LocalModelSource } from 'sprotty'; -import createContainer from './di.config'; +import createContainer from './di.config.js'; import { ForeignObjectElement, SShapeElement, ShapedPreRenderedElement, ViewportRootElement, Projectable } from 'sprotty-protocol'; diff --git a/examples/webpack.config.js b/examples/webpack.config.cjs similarity index 79% rename from examples/webpack.config.js rename to examples/webpack.config.cjs index 1653d926..40186383 100644 --- a/examples/webpack.config.js +++ b/examples/webpack.config.cjs @@ -15,9 +15,17 @@ const config = { filename: 'bundle.js', path: path.resolve(__dirname, 'resources') }, - resolve: { - extensions: ['.ts', '.tsx', '.js'] + extensions: ['.ts', '.tsx', '.js'], + extensionAlias: { + '.js': ['.ts', '.tsx', '.js'], + '.jsx': ['.tsx', '.jsx'], + }, + fallback: { + 'net': false, + 'child_process': false, + 'web-worker': false, + }, }, module: { rules: [ diff --git a/packages/sprotty-elk/src/index.ts b/packages/sprotty-elk/src/index.ts index ab7797c5..c4301787 100644 --- a/packages/sprotty-elk/src/index.ts +++ b/packages/sprotty-elk/src/index.ts @@ -17,3 +17,4 @@ // By default we export the Inversify-ready version. If you want to use the plain // version, import from `sprotty-elk/lib/elk-layout`. export * from './inversify.js'; +export * from './node/index.js'; diff --git a/packages/sprotty-library/package.json b/packages/sprotty-library/package.json index cedbb974..d67b8ae1 100644 --- a/packages/sprotty-library/package.json +++ b/packages/sprotty-library/package.json @@ -19,7 +19,8 @@ "name": "Eclipse Sprotty" }, "dependencies": { - "sprotty": "^1.4.0" + "sprotty": "^1.4.0", + "sprotty-protocol": "^1.4.0" }, "repository": { "type": "git", diff --git a/packages/sprotty/package.json b/packages/sprotty/package.json index 1096df7d..12c15ab4 100644 --- a/packages/sprotty/package.json +++ b/packages/sprotty/package.json @@ -28,7 +28,7 @@ "inversify": "^6.1.3", "snabbdom": "~3.5.1", "sprotty-protocol": "^1.4.0", - "tinyqueue": "^2.0.3" + "tinyqueue": "^3.0.0" }, "devDependencies": { "@types/file-saver": "^2.0.5", @@ -57,6 +57,7 @@ "types": "./lib/index.d.ts", "import": "./lib/index.js" }, - "./lib/*": "./lib/*" + "./lib/*": "./lib/*", + "./css/*": "./css/*" } } diff --git a/packages/sprotty/src/features/edge-intersection/intersection-finder.ts b/packages/sprotty/src/features/edge-intersection/intersection-finder.ts index f318d387..1964a2e4 100644 --- a/packages/sprotty/src/features/edge-intersection/intersection-finder.ts +++ b/packages/sprotty/src/features/edge-intersection/intersection-finder.ts @@ -88,7 +88,7 @@ export class IntersectionFinder implements IEdgeRoutePostprocessor { * @returns the identified intersections. */ find(routing: EdgeRouting): Intersection[] { - const eventQueue = new TinyQueue.default(undefined, checkWhichEventIsLeft); + const eventQueue = new TinyQueue(undefined, checkWhichEventIsLeft); routing.routes.forEach((route, routeId) => { if (this.isSupportedRoute(route)) { addRoute(routeId, route, eventQueue); diff --git a/packages/sprotty/src/features/edge-intersection/sweepline.ts b/packages/sprotty/src/features/edge-intersection/sweepline.ts index f967ebd1..d1fdf6c9 100644 --- a/packages/sprotty/src/features/edge-intersection/sweepline.ts +++ b/packages/sprotty/src/features/edge-intersection/sweepline.ts @@ -42,7 +42,7 @@ import { Intersection } from "./intersection-finder.js"; * @param route the route as array of points. * @param queue the queue to add the route to. */ -export function addRoute(routeId: string, route: RoutedPoint[], queue: TinyQueue.default) { +export function addRoute(routeId: string, route: RoutedPoint[], queue: TinyQueue) { if (route.length < 1) return; let currentPoint = route[0]; let nextPoint = undefined; @@ -122,9 +122,9 @@ export class Segment { * @param eventQueue the event queue. * @returns the identified intersections. */ -export function runSweep(eventQueue: TinyQueue.default): Intersection[] { +export function runSweep(eventQueue: TinyQueue): Intersection[] { const intersectionPoints: Intersection[] = []; - const outQueue = new TinyQueue.default([], checkWhichSegmentHasRightEndpointFirst); + const outQueue = new TinyQueue([], checkWhichSegmentHasRightEndpointFirst); while (eventQueue.length) { const event = eventQueue.pop(); if (event?.isLeftEndpoint) { diff --git a/yarn.lock b/yarn.lock index cd054140..c8c73793 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4,12 +4,12 @@ "@aashutoshrathi/word-wrap@^1.2.3": version "1.2.6" - resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + resolved "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz" integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== "@ampproject/remapping@^2.2.1": version "2.2.1" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" + resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz" integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== dependencies: "@jridgewell/gen-mapping" "^0.3.0" @@ -17,7 +17,7 @@ "@babel/code-frame@^7.0.0": version "7.22.13" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz" integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== dependencies: "@babel/highlight" "^7.22.13" @@ -25,17 +25,17 @@ "@babel/helper-string-parser@^7.23.4": version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" + resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz" integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== "@babel/helper-validator-identifier@^7.22.20": version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== "@babel/highlight@^7.22.13": version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz" integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg== dependencies: "@babel/helper-validator-identifier" "^7.22.20" @@ -44,19 +44,19 @@ "@babel/parser@^7.23.3": version "7.23.5" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.5.tgz#37dee97c4752af148e1d38c34b856b2507660563" + resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.23.5.tgz" integrity sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ== "@babel/runtime@^7.21.0": version "7.23.2" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.2.tgz#062b0ac103261d68a966c4c7baf2ae3e62ec3885" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz" integrity sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg== dependencies: regenerator-runtime "^0.14.0" "@babel/types@^7.23.3": version "7.23.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.5.tgz#48d730a00c95109fa4393352705954d74fb5b602" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.23.5.tgz" integrity sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w== dependencies: "@babel/helper-string-parser" "^7.23.4" @@ -65,12 +65,12 @@ "@bcoe/v8-coverage@^0.2.3": version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz" integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== "@discoveryjs/json-ext@^0.5.0": version "0.5.7" - resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" + resolved "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz" integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== "@esbuild/aix-ppc64@0.21.5": @@ -95,7 +95,7 @@ "@esbuild/darwin-arm64@0.21.5": version "0.21.5" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" + resolved "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz" integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== "@esbuild/darwin-x64@0.21.5": @@ -190,19 +190,19 @@ "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": version "4.4.0" - resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + resolved "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz" integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== dependencies: eslint-visitor-keys "^3.3.0" "@eslint-community/regexpp@^4.5.1", "@eslint-community/regexpp@^4.6.1": version "4.9.1" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.9.1.tgz#449dfa81a57a1d755b09aa58d826c1262e4283b4" + resolved "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.1.tgz" integrity sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA== "@eslint/eslintrc@^2.1.3": version "2.1.3" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.3.tgz#797470a75fe0fbd5a53350ee715e85e87baff22d" + resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz" integrity sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA== dependencies: ajv "^6.12.4" @@ -217,12 +217,12 @@ "@eslint/js@8.53.0": version "8.53.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.53.0.tgz#bea56f2ed2b5baea164348ff4d5a879f6f81f20d" + resolved "https://registry.npmjs.org/@eslint/js/-/js-8.53.0.tgz" integrity sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w== "@humanwhocodes/config-array@^0.11.13": version "0.11.13" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.13.tgz#075dc9684f40a531d9b26b0822153c1e832ee297" + resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz" integrity sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ== dependencies: "@humanwhocodes/object-schema" "^2.0.1" @@ -231,27 +231,27 @@ "@humanwhocodes/module-importer@^1.0.1": version "1.0.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== "@humanwhocodes/object-schema@^2.0.1": version "2.0.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz#e5211452df060fa8522b55c7b3c0c4d1981cb044" + resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz" integrity sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw== "@hutson/parse-repository-url@^3.0.0": version "3.0.2" - resolved "https://registry.yarnpkg.com/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz#98c23c950a3d9b6c8f0daed06da6c3af06981340" + resolved "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz" integrity sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q== "@inversifyjs/common@1.4.0": version "1.4.0" - resolved "https://registry.yarnpkg.com/@inversifyjs/common/-/common-1.4.0.tgz#4df42e8cb012a1630ebf2f3c65bb76ac5b0f3e4c" + resolved "https://registry.npmjs.org/@inversifyjs/common/-/common-1.4.0.tgz" integrity sha512-qfRJ/3iOlCL/VfJq8+4o5X4oA14cZSBbpAmHsYj8EsIit1xDndoOl0xKOyglKtQD4u4gdNVxMHx4RWARk/I4QA== "@inversifyjs/core@1.3.5": version "1.3.5" - resolved "https://registry.yarnpkg.com/@inversifyjs/core/-/core-1.3.5.tgz#c02ee3ed036aae40189302794f16a9f4e0ed4557" + resolved "https://registry.npmjs.org/@inversifyjs/core/-/core-1.3.5.tgz" integrity sha512-B4MFXabhNTAmrfgB+yeD6wd/GIvmvWC6IQ8Rh/j2C3Ix69kmqwz9pr8Jt3E+Nho9aEHOQCZaGmrALgtqRd+oEQ== dependencies: "@inversifyjs/common" "1.4.0" @@ -259,12 +259,12 @@ "@inversifyjs/reflect-metadata-utils@0.2.4": version "0.2.4" - resolved "https://registry.yarnpkg.com/@inversifyjs/reflect-metadata-utils/-/reflect-metadata-utils-0.2.4.tgz#c65172283db9516c4a27e8d673ca7a31a07d528b" + resolved "https://registry.npmjs.org/@inversifyjs/reflect-metadata-utils/-/reflect-metadata-utils-0.2.4.tgz" integrity sha512-u95rV3lKfG+NT2Uy/5vNzoDujos8vN8O18SSA5UyhxsGYd4GLQn/eUsGXfOsfa7m34eKrDelTKRUX1m/BcNX5w== "@isaacs/cliui@^8.0.2": version "8.0.2" - resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" + resolved "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz" integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== dependencies: string-width "^5.1.2" @@ -276,19 +276,19 @@ "@istanbuljs/schema@^0.1.2": version "0.1.3" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== "@jest/schemas@^29.6.3": version "29.6.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" + resolved "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz" integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== dependencies: "@sinclair/typebox" "^0.27.8" "@jridgewell/gen-mapping@^0.3.0": version "0.3.3" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz" integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== dependencies: "@jridgewell/set-array" "^1.0.1" @@ -297,17 +297,17 @@ "@jridgewell/resolve-uri@^3.1.0": version "3.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" + resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz" integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== "@jridgewell/set-array@^1.0.1": version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== "@jridgewell/source-map@^0.3.3": version "0.3.5" - resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91" + resolved "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz" integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ== dependencies: "@jridgewell/gen-mapping" "^0.3.0" @@ -315,12 +315,12 @@ "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15": version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== "@jridgewell/trace-mapping@^0.3.12": version "0.3.20" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz" integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q== dependencies: "@jridgewell/resolve-uri" "^3.1.0" @@ -328,7 +328,7 @@ "@jridgewell/trace-mapping@^0.3.25": version "0.3.31" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz#db15d6781c931f3a251a3dac39501c98a6082fd0" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz" integrity sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw== dependencies: "@jridgewell/resolve-uri" "^3.1.0" @@ -336,7 +336,7 @@ "@jridgewell/trace-mapping@^0.3.9": version "0.3.19" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" + resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz" integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== dependencies: "@jridgewell/resolve-uri" "^3.1.0" @@ -344,7 +344,7 @@ "@lerna/child-process@7.3.0": version "7.3.0" - resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-7.3.0.tgz#c56488a8a881f22a64793bf9339c5a2450a18559" + resolved "https://registry.npmjs.org/@lerna/child-process/-/child-process-7.3.0.tgz" integrity sha512-rA+fGUo2j/LEq6w1w8s6oVikLbJTWoIDVpYMc7bUCtwDOUuZKMQiRtjmpavY3fTm7ltu42f4AKflc2A70K4wvA== dependencies: chalk "^4.1.0" @@ -353,7 +353,7 @@ "@lerna/create@7.3.0": version "7.3.0" - resolved "https://registry.yarnpkg.com/@lerna/create/-/create-7.3.0.tgz#5438c231f617b8e825731390d394f8684af471d5" + resolved "https://registry.npmjs.org/@lerna/create/-/create-7.3.0.tgz" integrity sha512-fjgiKjg9VXwQ4ZKKsrXICEKRiC3yo6+FprR0mc55uz0s5e9xupoSGLobUTTBdE7ncNB3ibqml8dfaAn/+ESajQ== dependencies: "@lerna/child-process" "7.3.0" @@ -424,7 +424,7 @@ "@nodelib/fs.scandir@2.1.5": version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== dependencies: "@nodelib/fs.stat" "2.0.5" @@ -432,12 +432,12 @@ "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== dependencies: "@nodelib/fs.scandir" "2.1.5" @@ -445,14 +445,14 @@ "@npmcli/fs@^3.1.0": version "3.1.0" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-3.1.0.tgz#233d43a25a91d68c3a863ba0da6a3f00924a173e" + resolved "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz" integrity sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w== dependencies: semver "^7.3.5" "@npmcli/git@^4.0.0": version "4.1.0" - resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-4.1.0.tgz#ab0ad3fd82bc4d8c1351b6c62f0fa56e8fe6afa6" + resolved "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz" integrity sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ== dependencies: "@npmcli/promise-spawn" "^6.0.0" @@ -466,7 +466,7 @@ "@npmcli/installed-package-contents@^2.0.1": version "2.0.2" - resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz#bfd817eccd9e8df200919e73f57f9e3d9e4f9e33" + resolved "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz" integrity sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ== dependencies: npm-bundled "^3.0.0" @@ -474,19 +474,19 @@ "@npmcli/node-gyp@^3.0.0": version "3.0.0" - resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz#101b2d0490ef1aa20ed460e4c0813f0db560545a" + resolved "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz" integrity sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA== "@npmcli/promise-spawn@^6.0.0", "@npmcli/promise-spawn@^6.0.1": version "6.0.2" - resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz#c8bc4fa2bd0f01cb979d8798ba038f314cfa70f2" + resolved "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz" integrity sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg== dependencies: which "^3.0.0" "@npmcli/run-script@6.0.2", "@npmcli/run-script@^6.0.0": version "6.0.2" - resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-6.0.2.tgz#a25452d45ee7f7fb8c16dfaf9624423c0c0eb885" + resolved "https://registry.npmjs.org/@npmcli/run-script/-/run-script-6.0.2.tgz" integrity sha512-NCcr1uQo1k5U+SYlnIrbAh3cxy+OQT1VtqiAbxdymSlptbzBb62AjH2xXgjNCoP073hoa1CfCAcwoZ8k96C4nA== dependencies: "@npmcli/node-gyp" "^3.0.0" @@ -497,14 +497,14 @@ "@nrwl/devkit@16.9.1": version "16.9.1" - resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-16.9.1.tgz#e8b42ac23926a241338b173f3eed66757d75e530" + resolved "https://registry.npmjs.org/@nrwl/devkit/-/devkit-16.9.1.tgz" integrity sha512-+iR7tg+LOrGWAGmGv0hr45hYUOeKjK/Jm6WV3Ldmx6I7LaaYM5Fu6Ev2KXL669QMzLJpg3kqgKQsneWbFT3MAw== dependencies: "@nx/devkit" "16.9.1" "@nrwl/tao@16.9.1": version "16.9.1" - resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-16.9.1.tgz#84e9be4002792cf5a2cf45f4e0733ac7091d732a" + resolved "https://registry.npmjs.org/@nrwl/tao/-/tao-16.9.1.tgz" integrity sha512-KsRBRAE5mSP83ZjO9cPW6ZQZWOtkMfCBih/WE9qpaiHn+hCydtYStyAO2QSic4tHVV+8VpPUQWYnpf5rhkNzWg== dependencies: nx "16.9.1" @@ -512,7 +512,7 @@ "@nx/devkit@16.9.1", "@nx/devkit@>=16.5.1 < 17": version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-16.9.1.tgz#819f355849eecde24b40634150af3038d2652570" + resolved "https://registry.npmjs.org/@nx/devkit/-/devkit-16.9.1.tgz" integrity sha512-jQMLX8pUKsOIk0tLFzJms5awPxKfJEi0uxY7+IUfRNHcnDkOFiv6gf1QqJ3pobmgwBdbC6Nv/dhDP3JT2wA1gA== dependencies: "@nrwl/devkit" "16.9.1" @@ -525,7 +525,7 @@ "@nx/nx-darwin-arm64@16.9.1": version "16.9.1" - resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.9.1.tgz#aff318f99e2b53af480803d00322edcc2037ed5f" + resolved "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-16.9.1.tgz" integrity sha512-JWGrPxxt3XjgIYzvnaNAeNmK24wyF6yEE1bV+wnnKzd7yavVps3c2TOVE/AT4sgvdVj3xFzztyixYGV58tCYrg== "@nx/nx-darwin-x64@16.9.1": @@ -575,19 +575,19 @@ "@octokit/auth-token@^2.4.4": version "2.5.0" - resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.5.0.tgz#27c37ea26c205f28443402477ffd261311f21e36" + resolved "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz" integrity sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g== dependencies: "@octokit/types" "^6.0.3" "@octokit/auth-token@^3.0.0": version "3.0.4" - resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.4.tgz#70e941ba742bdd2b49bdb7393e821dea8520a3db" + resolved "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.4.tgz" integrity sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ== "@octokit/core@^3.5.1": version "3.6.0" - resolved "https://registry.yarnpkg.com/@octokit/core/-/core-3.6.0.tgz#3376cb9f3008d9b3d110370d90e0a1fcd5fe6085" + resolved "https://registry.npmjs.org/@octokit/core/-/core-3.6.0.tgz" integrity sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q== dependencies: "@octokit/auth-token" "^2.4.4" @@ -600,7 +600,7 @@ "@octokit/core@^4.2.1": version "4.2.4" - resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.2.4.tgz#d8769ec2b43ff37cc3ea89ec4681a20ba58ef907" + resolved "https://registry.npmjs.org/@octokit/core/-/core-4.2.4.tgz" integrity sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ== dependencies: "@octokit/auth-token" "^3.0.0" @@ -613,7 +613,7 @@ "@octokit/endpoint@^6.0.1": version "6.0.12" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.12.tgz#3b4d47a4b0e79b1027fb8d75d4221928b2d05658" + resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz" integrity sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA== dependencies: "@octokit/types" "^6.0.3" @@ -622,7 +622,7 @@ "@octokit/endpoint@^7.0.0": version "7.0.6" - resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.6.tgz#791f65d3937555141fb6c08f91d618a7d645f1e2" + resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.6.tgz" integrity sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg== dependencies: "@octokit/types" "^9.0.0" @@ -631,7 +631,7 @@ "@octokit/graphql@^4.5.8": version "4.8.0" - resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.8.0.tgz#664d9b11c0e12112cbf78e10f49a05959aa22cc3" + resolved "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz" integrity sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg== dependencies: "@octokit/request" "^5.6.0" @@ -640,7 +640,7 @@ "@octokit/graphql@^5.0.0": version "5.0.6" - resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.6.tgz#9eac411ac4353ccc5d3fca7d76736e6888c5d248" + resolved "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.6.tgz" integrity sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw== dependencies: "@octokit/request" "^6.0.0" @@ -649,29 +649,29 @@ "@octokit/openapi-types@^12.11.0": version "12.11.0" - resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-12.11.0.tgz#da5638d64f2b919bca89ce6602d059f1b52d3ef0" + resolved "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-12.11.0.tgz" integrity sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ== "@octokit/openapi-types@^18.0.0": version "18.1.1" - resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-18.1.1.tgz#09bdfdabfd8e16d16324326da5148010d765f009" + resolved "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-18.1.1.tgz" integrity sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw== "@octokit/plugin-enterprise-rest@6.0.1": version "6.0.1" - resolved "https://registry.yarnpkg.com/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz#e07896739618dab8da7d4077c658003775f95437" + resolved "https://registry.npmjs.org/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz" integrity sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw== "@octokit/plugin-paginate-rest@^2.16.8": version "2.21.3" - resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz#7f12532797775640dbb8224da577da7dc210c87e" + resolved "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz" integrity sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw== dependencies: "@octokit/types" "^6.40.0" "@octokit/plugin-paginate-rest@^6.1.2": version "6.1.2" - resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz#f86456a7a1fe9e58fec6385a85cf1b34072341f8" + resolved "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz" integrity sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ== dependencies: "@octokit/tsconfig" "^1.0.2" @@ -679,12 +679,12 @@ "@octokit/plugin-request-log@^1.0.4": version "1.0.4" - resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz#5e50ed7083a613816b1e4a28aeec5fb7f1462e85" + resolved "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz" integrity sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA== "@octokit/plugin-rest-endpoint-methods@^5.12.0": version "5.16.2" - resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.16.2.tgz#7ee8bf586df97dd6868cf68f641354e908c25342" + resolved "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.16.2.tgz" integrity sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw== dependencies: "@octokit/types" "^6.39.0" @@ -692,14 +692,14 @@ "@octokit/plugin-rest-endpoint-methods@^7.1.2": version "7.2.3" - resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz#37a84b171a6cb6658816c82c4082ac3512021797" + resolved "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.2.3.tgz" integrity sha512-I5Gml6kTAkzVlN7KCtjOM+Ruwe/rQppp0QU372K1GP7kNOYEKe8Xn5BW4sE62JAHdwpq95OQK/qGNyKQMUzVgA== dependencies: "@octokit/types" "^10.0.0" "@octokit/request-error@^2.0.5", "@octokit/request-error@^2.1.0": version "2.1.0" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.1.0.tgz#9e150357831bfc788d13a4fd4b1913d60c74d677" + resolved "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz" integrity sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg== dependencies: "@octokit/types" "^6.0.3" @@ -708,7 +708,7 @@ "@octokit/request-error@^3.0.0": version "3.0.3" - resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-3.0.3.tgz#ef3dd08b8e964e53e55d471acfe00baa892b9c69" + resolved "https://registry.npmjs.org/@octokit/request-error/-/request-error-3.0.3.tgz" integrity sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ== dependencies: "@octokit/types" "^9.0.0" @@ -717,7 +717,7 @@ "@octokit/request@^5.6.0", "@octokit/request@^5.6.3": version "5.6.3" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-5.6.3.tgz#19a022515a5bba965ac06c9d1334514eb50c48b0" + resolved "https://registry.npmjs.org/@octokit/request/-/request-5.6.3.tgz" integrity sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A== dependencies: "@octokit/endpoint" "^6.0.1" @@ -729,7 +729,7 @@ "@octokit/request@^6.0.0": version "6.2.8" - resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.8.tgz#aaf480b32ab2b210e9dadd8271d187c93171d8eb" + resolved "https://registry.npmjs.org/@octokit/request/-/request-6.2.8.tgz" integrity sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw== dependencies: "@octokit/endpoint" "^7.0.0" @@ -741,7 +741,7 @@ "@octokit/rest@19.0.11": version "19.0.11" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-19.0.11.tgz#2ae01634fed4bd1fca5b642767205ed3fd36177c" + resolved "https://registry.npmjs.org/@octokit/rest/-/rest-19.0.11.tgz" integrity sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw== dependencies: "@octokit/core" "^4.2.1" @@ -751,7 +751,7 @@ "@octokit/rest@^18.0.6": version "18.12.0" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-18.12.0.tgz#f06bc4952fc87130308d810ca9d00e79f6988881" + resolved "https://registry.npmjs.org/@octokit/rest/-/rest-18.12.0.tgz" integrity sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q== dependencies: "@octokit/core" "^3.5.1" @@ -761,33 +761,33 @@ "@octokit/tsconfig@^1.0.2": version "1.0.2" - resolved "https://registry.yarnpkg.com/@octokit/tsconfig/-/tsconfig-1.0.2.tgz#59b024d6f3c0ed82f00d08ead5b3750469125af7" + resolved "https://registry.npmjs.org/@octokit/tsconfig/-/tsconfig-1.0.2.tgz" integrity sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA== "@octokit/types@^10.0.0": version "10.0.0" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-10.0.0.tgz#7ee19c464ea4ada306c43f1a45d444000f419a4a" + resolved "https://registry.npmjs.org/@octokit/types/-/types-10.0.0.tgz" integrity sha512-Vm8IddVmhCgU1fxC1eyinpwqzXPEYu0NrYzD3YZjlGjyftdLBTeqNblRC0jmJmgxbJIsQlyogVeGnrNaaMVzIg== dependencies: "@octokit/openapi-types" "^18.0.0" "@octokit/types@^6.0.3", "@octokit/types@^6.16.1", "@octokit/types@^6.39.0", "@octokit/types@^6.40.0": version "6.41.0" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-6.41.0.tgz#e58ef78d78596d2fb7df9c6259802464b5f84a04" + resolved "https://registry.npmjs.org/@octokit/types/-/types-6.41.0.tgz" integrity sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg== dependencies: "@octokit/openapi-types" "^12.11.0" "@octokit/types@^9.0.0", "@octokit/types@^9.2.3": version "9.3.2" - resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.3.2.tgz#3f5f89903b69f6a2d196d78ec35f888c0013cac5" + resolved "https://registry.npmjs.org/@octokit/types/-/types-9.3.2.tgz" integrity sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA== dependencies: "@octokit/openapi-types" "^18.0.0" "@parcel/watcher@2.0.4": version "2.0.4" - resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.0.4.tgz#f300fef4cc38008ff4b8c29d92588eced3ce014b" + resolved "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.0.4.tgz" integrity sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg== dependencies: node-addon-api "^3.2.1" @@ -795,7 +795,7 @@ "@pkgjs/parseargs@^0.11.0": version "0.11.0" - resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + resolved "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz" integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== "@rollup/rollup-android-arm-eabi@4.31.0": @@ -810,7 +810,7 @@ "@rollup/rollup-darwin-arm64@4.31.0": version "4.31.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.31.0.tgz#d137dff254b19163a6b52ac083a71cd055dae844" + resolved "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.31.0.tgz" integrity sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g== "@rollup/rollup-darwin-x64@4.31.0": @@ -895,19 +895,19 @@ "@sigstore/bundle@^1.1.0": version "1.1.0" - resolved "https://registry.yarnpkg.com/@sigstore/bundle/-/bundle-1.1.0.tgz#17f8d813b09348b16eeed66a8cf1c3d6bd3d04f1" + resolved "https://registry.npmjs.org/@sigstore/bundle/-/bundle-1.1.0.tgz" integrity sha512-PFutXEy0SmQxYI4texPw3dd2KewuNqv7OuK1ZFtY2fM754yhvG2KdgwIhRnoEE2uHdtdGNQ8s0lb94dW9sELog== dependencies: "@sigstore/protobuf-specs" "^0.2.0" "@sigstore/protobuf-specs@^0.2.0": version "0.2.1" - resolved "https://registry.yarnpkg.com/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz#be9ef4f3c38052c43bd399d3f792c97ff9e2277b" + resolved "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz" integrity sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A== "@sigstore/sign@^1.0.0": version "1.0.0" - resolved "https://registry.yarnpkg.com/@sigstore/sign/-/sign-1.0.0.tgz#6b08ebc2f6c92aa5acb07a49784cb6738796f7b4" + resolved "https://registry.npmjs.org/@sigstore/sign/-/sign-1.0.0.tgz" integrity sha512-INxFVNQteLtcfGmcoldzV6Je0sbbfh9I16DM4yJPw3j5+TFP8X6uIiA18mvpEa9yyeycAKgPmOA3X9hVdVTPUA== dependencies: "@sigstore/bundle" "^1.1.0" @@ -916,7 +916,7 @@ "@sigstore/tuf@^1.0.3": version "1.0.3" - resolved "https://registry.yarnpkg.com/@sigstore/tuf/-/tuf-1.0.3.tgz#2a65986772ede996485728f027b0514c0b70b160" + resolved "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.3.tgz" integrity sha512-2bRovzs0nJZFlCN3rXirE4gwxCn97JNjMmwpecqlbgV9WcxX7WRuIrgzx/X7Ib7MYRbyUTpBYE0s2x6AmZXnlg== dependencies: "@sigstore/protobuf-specs" "^0.2.0" @@ -924,47 +924,47 @@ "@sinclair/typebox@^0.27.8": version "0.27.8" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" + resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz" integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== "@sinonjs/commons@^1.7.0": version "1.8.6" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9" + resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz" integrity sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ== dependencies: type-detect "4.0.8" "@sinonjs/commons@^2.0.0": version "2.0.0" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-2.0.0.tgz#fd4ca5b063554307e8327b4564bd56d3b73924a3" + resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz" integrity sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg== dependencies: type-detect "4.0.8" "@sinonjs/commons@^3.0.0": version "3.0.0" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72" + resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz" integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA== dependencies: type-detect "4.0.8" "@sinonjs/fake-timers@^10.0.2": version "10.3.0" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" + resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz" integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== dependencies: "@sinonjs/commons" "^3.0.0" "@sinonjs/fake-timers@^9.1.2": version "9.1.2" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz#4eaab737fab77332ab132d396a3c0d364bd0ea8c" + resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz" integrity sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw== dependencies: "@sinonjs/commons" "^1.7.0" "@sinonjs/samsam@^7.0.1": version "7.0.1" - resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-7.0.1.tgz#5b5fa31c554636f78308439d220986b9523fc51f" + resolved "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-7.0.1.tgz" integrity sha512-zsAk2Jkiq89mhZovB2LLOdTCxJF4hqqTToGP0ASWlhp4I1hqOjcfmZGafXntCN7MDC6yySH0mFHrYtHceOeLmw== dependencies: "@sinonjs/commons" "^2.0.0" @@ -973,22 +973,22 @@ "@sinonjs/text-encoding@^0.7.1": version "0.7.2" - resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz#5981a8db18b56ba38ef0efb7d995b12aa7b51918" + resolved "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.2.tgz" integrity sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ== "@tootallnate/once@2": version "2.0.0" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" + resolved "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz" integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== "@tufjs/canonical-json@1.0.0": version "1.0.0" - resolved "https://registry.yarnpkg.com/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz#eade9fd1f537993bc1f0949f3aea276ecc4fab31" + resolved "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-1.0.0.tgz" integrity sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ== "@tufjs/models@1.0.4": version "1.0.4" - resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-1.0.4.tgz#5a689630f6b9dbda338d4b208019336562f176ef" + resolved "https://registry.npmjs.org/@tufjs/models/-/models-1.0.4.tgz" integrity sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A== dependencies: "@tufjs/canonical-json" "1.0.0" @@ -996,7 +996,7 @@ "@types/body-parser@*": version "1.19.3" - resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.3.tgz#fb558014374f7d9e56c8f34bab2042a3a07d25cd" + resolved "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.3.tgz" integrity sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ== dependencies: "@types/connect" "*" @@ -1004,31 +1004,31 @@ "@types/connect@*": version "3.4.36" - resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.36.tgz#e511558c15a39cb29bd5357eebb57bd1459cd1ab" + resolved "https://registry.npmjs.org/@types/connect/-/connect-3.4.36.tgz" integrity sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w== dependencies: "@types/node" "*" "@types/debug@*": version "4.1.9" - resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.9.tgz#906996938bc672aaf2fb8c0d3733ae1dda05b005" + resolved "https://registry.npmjs.org/@types/debug/-/debug-4.1.9.tgz" integrity sha512-8Hz50m2eoS56ldRlepxSBa6PWEVCtzUo/92HgLc2qTMnotJNIm7xP+UZhyWoYsyOdd5dxZ+NZLb24rsKyFs2ow== dependencies: "@types/ms" "*" "@types/diff@*": version "5.0.5" - resolved "https://registry.yarnpkg.com/@types/diff/-/diff-5.0.5.tgz#5fea9742557f5ba76c652e35f6f8461ad9336cae" + resolved "https://registry.npmjs.org/@types/diff/-/diff-5.0.5.tgz" integrity sha512-rt7WqM1bWwKJMRxlB5Rhke56UN21Bqwp1ILER31bafTivcapYdfhtPd5xRWfhf08yjPxoDcfjVkkECdRwFe7EA== "@types/ejs@*": version "3.1.3" - resolved "https://registry.yarnpkg.com/@types/ejs/-/ejs-3.1.3.tgz#ad91d1dd6e24fb60bbf96c534bce58b95eef9b57" + resolved "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.3.tgz" integrity sha512-mv5T/JI/bu+pbfz1o+TLl1NF0NIBbjS0Vl6Ppz1YY9DkXfzZT0lelXpfS5i3ZS3U/p90it7uERQpBvLYoK8e4A== "@types/eslint-scope@^3.7.7": version "3.7.7" - resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5" + resolved "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz" integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg== dependencies: "@types/eslint" "*" @@ -1036,7 +1036,7 @@ "@types/eslint@*": version "9.6.1" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-9.6.1.tgz#d5795ad732ce81715f27f75da913004a56751584" + resolved "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz" integrity sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag== dependencies: "@types/estree" "*" @@ -1044,22 +1044,22 @@ "@types/estree@*", "@types/estree@^1.0.0", "@types/estree@^1.0.8": version "1.0.8" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.8.tgz#958b91c991b1867ced318bedea0e215ee050726e" + resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz" integrity sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w== "@types/estree@1.0.6": version "1.0.6" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" + resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz" integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== "@types/expect@^1.20.4": version "1.20.4" - resolved "https://registry.yarnpkg.com/@types/expect/-/expect-1.20.4.tgz#8288e51737bf7e3ab5d7c77bfa695883745264e5" + resolved "https://registry.npmjs.org/@types/expect/-/expect-1.20.4.tgz" integrity sha512-Q5Vn3yjTDyCMV50TB6VRIbQNxSE4OmZR86VSbGaNpfUolm0iePBB4KdEEHmxoY5sT2+2DIvXW0rvMDP2nHZ4Mg== "@types/express-serve-static-core@^4.17.33": version "4.17.37" - resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.37.tgz#7e4b7b59da9142138a2aaa7621f5abedce8c7320" + resolved "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.37.tgz" integrity sha512-ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg== dependencies: "@types/node" "*" @@ -1069,7 +1069,7 @@ "@types/express@^4.17.18": version "4.17.18" - resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.18.tgz#efabf5c4495c1880df1bdffee604b143b29c4a95" + resolved "https://registry.npmjs.org/@types/express/-/express-4.17.18.tgz" integrity sha512-Sxv8BSLLgsBYmcnGdGjjEjqET2U+AKAdCRODmMiq02FgjwuV75Ut85DRpvFjyw/Mk0vgUOliGRU0UUmuuZHByQ== dependencies: "@types/body-parser" "*" @@ -1079,17 +1079,17 @@ "@types/file-saver@^2.0.5": version "2.0.5" - resolved "https://registry.yarnpkg.com/@types/file-saver/-/file-saver-2.0.5.tgz#9ee342a5d1314bb0928375424a2f162f97c310c7" + resolved "https://registry.npmjs.org/@types/file-saver/-/file-saver-2.0.5.tgz" integrity sha512-zv9kNf3keYegP5oThGLaPk8E081DFDuwfqjtiTzm6PoxChdJ1raSuADf2YGCVIyrSynLrgc8JWv296s7Q7pQSQ== "@types/http-errors@*": version "2.0.2" - resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.2.tgz#a86e00bbde8950364f8e7846687259ffcd96e8c2" + resolved "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.2.tgz" integrity sha512-lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg== "@types/inquirer@^8", "@types/inquirer@^8.2.5": version "8.2.6" - resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-8.2.6.tgz#abd41a5fb689c7f1acb12933d787d4262a02a0ab" + resolved "https://registry.npmjs.org/@types/inquirer/-/inquirer-8.2.6.tgz" integrity sha512-3uT88kxg8lNzY8ay2ZjP44DKcRaTGztqeIvN2zHvhzIBH/uAPaL75aBtdNRKbA7xXoMbBt5kX0M00VKAnfOYlA== dependencies: "@types/through" "*" @@ -1097,22 +1097,22 @@ "@types/istanbul-lib-coverage@^2.0.1": version "2.0.5" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#fdfdd69fa16d530047d9963635bd77c71a08c068" + resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz" integrity sha512-zONci81DZYCZjiLe0r6equvZut0b+dBRPBN5kBDjsONnutYNtJMoWQ9uR2RkL1gLG9NMTzvf+29e5RFfPbeKhQ== "@types/json-schema@*", "@types/json-schema@^7.0.12", "@types/json-schema@^7.0.15", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": version "7.0.15" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz" integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== "@types/lodash@^4.14.199": version "4.14.199" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.199.tgz#c3edb5650149d847a277a8961a7ad360c474e9bf" + resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.199.tgz" integrity sha512-Vrjz5N5Ia4SEzWWgIVwnHNEnb1UE1XMkvY5DGXrAeOGE9imk0hgTHh5GyDjLDJi9OTCn9oo9dXH1uToK1VRfrg== "@types/mem-fs-editor@*", "@types/mem-fs-editor@^7.0.2": version "7.0.4" - resolved "https://registry.yarnpkg.com/@types/mem-fs-editor/-/mem-fs-editor-7.0.4.tgz#72a54147274eb86cc63ade8dc51f3d1eaa83ba7f" + resolved "https://registry.npmjs.org/@types/mem-fs-editor/-/mem-fs-editor-7.0.4.tgz" integrity sha512-aJkJZGEoBvNHzmzdhbaBk3HHuW6/+y0wWYD+uBYz2BbgWJoKNAgbQDCjLC+SXv27XKVP+a8UIOaAaj0gvSe8rQ== dependencies: "@types/ejs" "*" @@ -1124,7 +1124,7 @@ "@types/mem-fs@*": version "1.1.3" - resolved "https://registry.yarnpkg.com/@types/mem-fs/-/mem-fs-1.1.3.tgz#99d04df683aa0a1d97fecadb56a64089e8830998" + resolved "https://registry.npmjs.org/@types/mem-fs/-/mem-fs-1.1.3.tgz" integrity sha512-fFRjo3o+PN+jjJGaI9vJ8QLBHmeSAaM62IEaDOWSOcRdQ5naXHacq31uI60EEbcvxLY9tkwI8rMnRQ7YL6M9mg== dependencies: "@types/node" "*" @@ -1132,64 +1132,64 @@ "@types/mime@*": version "3.0.2" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.2.tgz#c1ae807f13d308ee7511a5b81c74f327028e66e8" + resolved "https://registry.npmjs.org/@types/mime/-/mime-3.0.2.tgz" integrity sha512-Wj+fqpTLtTbG7c0tH47dkahefpLKEbB+xAZuLq7b4/IDHPl/n6VoXcyUQ2bypFlbSwvCr0y+bD4euTTqTJsPxQ== "@types/mime@^1": version "1.3.3" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.3.tgz#bbe64987e0eb05de150c305005055c7ad784a9ce" + resolved "https://registry.npmjs.org/@types/mime/-/mime-1.3.3.tgz" integrity sha512-Ys+/St+2VF4+xuY6+kDIXGxbNRO0mesVg0bbxEfB97Od1Vjpjx9KD1qxs64Gcb3CWPirk9Xe+PT4YiiHQ9T+eg== "@types/minimatch@^3.0.3": version "3.0.5" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" + resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz" integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== "@types/minimist@^1.2.0": version "1.2.3" - resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.3.tgz#dd249cef80c6fff2ba6a0d4e5beca913e04e25f8" + resolved "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.3.tgz" integrity sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A== "@types/ms@*": version "0.7.32" - resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.32.tgz#f6cd08939ae3ad886fcc92ef7f0109dacddf61ab" + resolved "https://registry.npmjs.org/@types/ms/-/ms-0.7.32.tgz" integrity sha512-xPSg0jm4mqgEkNhowKgZFBNtwoEwF6gJ4Dhww+GFpm3IgtNseHQZ5IqdNwnquZEoANxyDAKDRAdVo4Z72VvD/g== "@types/node@*": version "20.8.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.0.tgz#10ddf0119cf20028781c06d7115562934e53f745" + resolved "https://registry.npmjs.org/@types/node/-/node-20.8.0.tgz" integrity sha512-LzcWltT83s1bthcvjBmiBvGJiiUe84NWRHkw+ZV6Fr41z2FbIzvc815dk2nQ3RAKMuN2fkenM/z3Xv2QzEpYxQ== "@types/node@~18.19.3": version "18.19.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.3.tgz#e4723c4cb385641d61b983f6fe0b716abd5f8fc0" + resolved "https://registry.npmjs.org/@types/node/-/node-18.19.3.tgz" integrity sha512-k5fggr14DwAytoA/t8rPrIz++lXK7/DqckthCmoZOKNsEbJkId4Z//BqgApXBUGrGddrigYa1oqheo/7YmW4rg== dependencies: undici-types "~5.26.4" "@types/normalize-package-data@^2.4.0": version "2.4.2" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz#9b0e3e8533fe5024ad32d6637eb9589988b6fdca" + resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz" integrity sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A== "@types/qs@*": version "6.9.8" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.8.tgz#f2a7de3c107b89b441e071d5472e6b726b4adf45" + resolved "https://registry.npmjs.org/@types/qs/-/qs-6.9.8.tgz" integrity sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg== "@types/range-parser@*": version "1.2.5" - resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.5.tgz#38bd1733ae299620771bd414837ade2e57757498" + resolved "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.5.tgz" integrity sha512-xrO9OoVPqFuYyR/loIHjnbvvyRZREYKLjxV4+dY6v3FQR3stQ9ZxIGkaclF7YhI9hfjpuTbu14hZEy94qKLtOA== "@types/semver@^7.5.0": version "7.5.3" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.3.tgz#9a726e116beb26c24f1ccd6850201e1246122e04" + resolved "https://registry.npmjs.org/@types/semver/-/semver-7.5.3.tgz" integrity sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw== "@types/send@*": version "0.17.2" - resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.2.tgz#af78a4495e3c2b79bfbdac3955fdd50e03cc98f2" + resolved "https://registry.npmjs.org/@types/send/-/send-0.17.2.tgz" integrity sha512-aAG6yRf6r0wQ29bkS+x97BIs64ZLxeE/ARwyS6wrldMm3C1MdKwCcnnEwMC1slI8wuxJOpiUH9MioC0A0i+GJw== dependencies: "@types/mime" "^1" @@ -1197,7 +1197,7 @@ "@types/serve-static@*": version "1.15.3" - resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.3.tgz#2cfacfd1fd4520bbc3e292cca432d5e8e2e3ee61" + resolved "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.3.tgz" integrity sha512-yVRvFsEMrv7s0lGhzrggJjNOSmZCdgCjw9xWrPr/kNNLp6FaDfMC1KaYl3TSJ0c58bECwNBMoQrZJ8hA8E1eFg== dependencies: "@types/http-errors" "*" @@ -1206,19 +1206,19 @@ "@types/text-table@*": version "0.2.3" - resolved "https://registry.yarnpkg.com/@types/text-table/-/text-table-0.2.3.tgz#c9b0c8df377e10d16795381c2117b718562cae8b" + resolved "https://registry.npmjs.org/@types/text-table/-/text-table-0.2.3.tgz" integrity sha512-MUW7DN7e178wJ2dB9rHuhwUWRUJGrl8fCng37BEWV0r2r5VpzkRFRiMfnX6sjXlu4tMn41lrjzsVh/z1XrKc+A== "@types/through@*": version "0.0.31" - resolved "https://registry.yarnpkg.com/@types/through/-/through-0.0.31.tgz#eb410602641807e74a90c5e951f46686e75eed1c" + resolved "https://registry.npmjs.org/@types/through/-/through-0.0.31.tgz" integrity sha512-LpKpmb7FGevYgXnBXYs6HWnmiFyVG07Pt1cnbgM1IhEacITTiUaBXXvOR3Y50ksaJWGSfhbEvQFivQEFGCC55w== dependencies: "@types/node" "*" "@types/vinyl@*": version "2.0.8" - resolved "https://registry.yarnpkg.com/@types/vinyl/-/vinyl-2.0.8.tgz#a944157b80cf615437aa952131e87efe8a9646cd" + resolved "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.8.tgz" integrity sha512-bls3EAsYVnVoPKoqgFC4Rtq7Kzte4MCk8xMA9UEPPVncJFsov9FJWYj0uxqJRwNEi9b4i4zX13FydaDrhadmHg== dependencies: "@types/expect" "^1.20.4" @@ -1226,24 +1226,24 @@ "@types/webpack-env@^1.18.2": version "1.18.2" - resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.18.2.tgz#0264bc30c0c4a073118ce5b26c5ef143da4374df" + resolved "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.18.2.tgz" integrity sha512-BFqcTHHTrrI8EBmIzNAmLPP3IqtEG9J1IPFWbPeS/F0/TGNmo0pI5svOa7JbMF9vSCXQCvJWT2gxLJNVuf9blw== "@types/which@^2.0.1": version "2.0.2" - resolved "https://registry.yarnpkg.com/@types/which/-/which-2.0.2.tgz#54541d02d6b1daee5ec01ac0d1b37cecf37db1ae" + resolved "https://registry.npmjs.org/@types/which/-/which-2.0.2.tgz" integrity sha512-113D3mDkZDjo+EeUEHCFy0qniNc1ZpecGiAU7WSo7YDoSzolZIQKpYFHrPpjkB2nuyahcKfrmLXeQlh7gqJYdw== "@types/ws@^8.5.6": version "8.5.6" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.6.tgz#e9ad51f0ab79b9110c50916c9fcbddc36d373065" + resolved "https://registry.npmjs.org/@types/ws/-/ws-8.5.6.tgz" integrity sha512-8B5EO9jLVCy+B58PLHvLDuOD8DRVMgQzq8d55SjLCOn9kqGyqOvy27exVaTio1q1nX5zLu8/6N0n2ThSxOM6tg== dependencies: "@types/node" "*" "@types/yeoman-environment@*", "@types/yeoman-environment@^2.10.8": version "2.10.9" - resolved "https://registry.yarnpkg.com/@types/yeoman-environment/-/yeoman-environment-2.10.9.tgz#8edfbaa43a812dc989d66a583df171127ef5ca3a" + resolved "https://registry.npmjs.org/@types/yeoman-environment/-/yeoman-environment-2.10.9.tgz" integrity sha512-W/gLV/Y00PyQAxaIrePaHYSRMK8Md5/4WPqhMHnGbCzLldUk99ItfF/oO2Du+ozAZCFMQJNFxaoJ6jD9ReJ6pQ== dependencies: "@types/diff" "*" @@ -1259,7 +1259,7 @@ "@types/yeoman-generator@*", "@types/yeoman-generator@^5.2.11", "@types/yeoman-generator@^5.2.12": version "5.2.12" - resolved "https://registry.yarnpkg.com/@types/yeoman-generator/-/yeoman-generator-5.2.12.tgz#bd258530983f0e0e345ca8f1abce3d463e7edce9" + resolved "https://registry.npmjs.org/@types/yeoman-generator/-/yeoman-generator-5.2.12.tgz" integrity sha512-WXJiSuJR1OpiCzMwnKxpA6GJZ0Tlg4u7l15zfNFTVOwT+Pks63uuDCqMj+QMf8FZ6c2sFTpZrw2cBZscI7HOvA== dependencies: "@types/debug" "*" @@ -1271,7 +1271,7 @@ "@types/yeoman-test@^4.0.4": version "4.0.4" - resolved "https://registry.yarnpkg.com/@types/yeoman-test/-/yeoman-test-4.0.4.tgz#2f3feb578dd05c26a365322d4f1c8fda22432e24" + resolved "https://registry.npmjs.org/@types/yeoman-test/-/yeoman-test-4.0.4.tgz" integrity sha512-cfeGSgAfhq2h1qgiUlpmjdUdcaUYsmrkars0x/tZNSHFyoBcEeJtXzdpd0dGmj70wK/hl4ORvgk2NWb3grql0Q== dependencies: "@types/mem-fs" "*" @@ -1281,7 +1281,7 @@ "@typescript-eslint/eslint-plugin@^6.10.0": version "6.10.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.10.0.tgz#cfe2bd34e26d2289212946b96ab19dcad64b661a" + resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.10.0.tgz" integrity sha512-uoLj4g2OTL8rfUQVx2AFO1hp/zja1wABJq77P6IclQs6I/m9GLrm7jCdgzZkvWdDCQf1uEvoa8s8CupsgWQgVg== dependencies: "@eslint-community/regexpp" "^4.5.1" @@ -1298,7 +1298,7 @@ "@typescript-eslint/parser@^6.10.0": version "6.10.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.10.0.tgz#578af79ae7273193b0b6b61a742a2bc8e02f875a" + resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.10.0.tgz" integrity sha512-+sZwIj+s+io9ozSxIWbNB5873OSdfeBEH/FR0re14WLI6BaKuSOnnwCJ2foUiu8uXf4dRp1UqHP0vrZ1zXGrog== dependencies: "@typescript-eslint/scope-manager" "6.10.0" @@ -1309,7 +1309,7 @@ "@typescript-eslint/scope-manager@6.10.0": version "6.10.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.10.0.tgz#b0276118b13d16f72809e3cecc86a72c93708540" + resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.10.0.tgz" integrity sha512-TN/plV7dzqqC2iPNf1KrxozDgZs53Gfgg5ZHyw8erd6jd5Ta/JIEcdCheXFt9b1NYb93a1wmIIVW/2gLkombDg== dependencies: "@typescript-eslint/types" "6.10.0" @@ -1317,7 +1317,7 @@ "@typescript-eslint/type-utils@6.10.0": version "6.10.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.10.0.tgz#1007faede067c78bdbcef2e8abb31437e163e2e1" + resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.10.0.tgz" integrity sha512-wYpPs3hgTFblMYwbYWPT3eZtaDOjbLyIYuqpwuLBBqhLiuvJ+9sEp2gNRJEtR5N/c9G1uTtQQL5AhV0fEPJYcg== dependencies: "@typescript-eslint/typescript-estree" "6.10.0" @@ -1327,12 +1327,12 @@ "@typescript-eslint/types@6.10.0": version "6.10.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.10.0.tgz#f4f0a84aeb2ac546f21a66c6e0da92420e921367" + resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.10.0.tgz" integrity sha512-36Fq1PWh9dusgo3vH7qmQAj5/AZqARky1Wi6WpINxB6SkQdY5vQoT2/7rW7uBIsPDcvvGCLi4r10p0OJ7ITAeg== "@typescript-eslint/typescript-estree@6.10.0": version "6.10.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.10.0.tgz#667381eed6f723a1a8ad7590a31f312e31e07697" + resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.10.0.tgz" integrity sha512-ek0Eyuy6P15LJVeghbWhSrBCj/vJpPXXR+EpaRZqou7achUWL8IdYnMSC5WHAeTWswYQuP2hAZgij/bC9fanBg== dependencies: "@typescript-eslint/types" "6.10.0" @@ -1345,7 +1345,7 @@ "@typescript-eslint/utils@6.10.0": version "6.10.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.10.0.tgz#4d76062d94413c30e402c9b0df8c14aef8d77336" + resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.10.0.tgz" integrity sha512-v+pJ1/RcVyRc0o4wAGux9x42RHmAjIGzPRo538Z8M1tVx6HOnoQBCX/NoadHQlZeC+QO2yr4nNSFWOoraZCAyg== dependencies: "@eslint-community/eslint-utils" "^4.4.0" @@ -1358,7 +1358,7 @@ "@typescript-eslint/visitor-keys@6.10.0": version "6.10.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.10.0.tgz#b9eaf855a1ac7e95633ae1073af43d451e8f84e3" + resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.10.0.tgz" integrity sha512-xMGluxQIEtOM7bqFCo+rCMh5fqI+ZxV5RUUOa29iVPz1OgCZrtc7rFnz5cLUazlkPKYqX+75iuDq7m0HQ48nCg== dependencies: "@typescript-eslint/types" "6.10.0" @@ -1366,12 +1366,12 @@ "@ungap/structured-clone@^1.2.0": version "1.2.0" - resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" + resolved "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz" integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== "@vitest/coverage-v8@~1.0.2": version "1.0.2" - resolved "https://registry.yarnpkg.com/@vitest/coverage-v8/-/coverage-v8-1.0.2.tgz#a2019f45ed715a31862294a265a3c842b5134c1f" + resolved "https://registry.npmjs.org/@vitest/coverage-v8/-/coverage-v8-1.0.2.tgz" integrity sha512-WCTbfnvFPqH8TGVPNnPXcLBK/tbMX5GGZ/Lc9EuYvVX4xbO0ULKLzWDbVU37C2Y2YIlNu/VP1kp7QKUZolUDgA== dependencies: "@ampproject/remapping" "^2.2.1" @@ -1390,7 +1390,7 @@ "@vitest/expect@1.6.1": version "1.6.1" - resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-1.6.1.tgz#b90c213f587514a99ac0bf84f88cff9042b0f14d" + resolved "https://registry.npmjs.org/@vitest/expect/-/expect-1.6.1.tgz" integrity sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog== dependencies: "@vitest/spy" "1.6.1" @@ -1399,7 +1399,7 @@ "@vitest/runner@1.6.1": version "1.6.1" - resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-1.6.1.tgz#10f5857c3e376218d58c2bfacfea1161e27e117f" + resolved "https://registry.npmjs.org/@vitest/runner/-/runner-1.6.1.tgz" integrity sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA== dependencies: "@vitest/utils" "1.6.1" @@ -1408,7 +1408,7 @@ "@vitest/snapshot@1.6.1": version "1.6.1" - resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-1.6.1.tgz#90414451a634bb36cd539ccb29ae0d048a8c0479" + resolved "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-1.6.1.tgz" integrity sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ== dependencies: magic-string "^0.30.5" @@ -1417,14 +1417,14 @@ "@vitest/spy@1.6.1": version "1.6.1" - resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-1.6.1.tgz#33376be38a5ed1ecd829eb986edaecc3e798c95d" + resolved "https://registry.npmjs.org/@vitest/spy/-/spy-1.6.1.tgz" integrity sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw== dependencies: tinyspy "^2.2.0" "@vitest/utils@1.6.1": version "1.6.1" - resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-1.6.1.tgz#6d2f36cb6d866f2bbf59da854a324d6bf8040f17" + resolved "https://registry.npmjs.org/@vitest/utils/-/utils-1.6.1.tgz" integrity sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g== dependencies: diff-sequences "^29.6.3" @@ -1434,12 +1434,12 @@ "@vscode/codicons@^0.0.33": version "0.0.33" - resolved "https://registry.yarnpkg.com/@vscode/codicons/-/codicons-0.0.33.tgz#a56243ab5492801fff04e53c0aab0d18a6521751" + resolved "https://registry.npmjs.org/@vscode/codicons/-/codicons-0.0.33.tgz" integrity sha512-VdgpnD75swH9hpXjd34VBgQ2w2quK63WljodlUcOoJDPKiV+rPjHrcUc2sjLCNKxhl6oKqmsZgwOWcDAY2GKKQ== "@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.14.1": version "1.14.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.14.1.tgz#a9f6a07f2b03c95c8d38c4536a1fdfb521ff55b6" + resolved "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz" integrity sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ== dependencies: "@webassemblyjs/helper-numbers" "1.13.2" @@ -1447,22 +1447,22 @@ "@webassemblyjs/floating-point-hex-parser@1.13.2": version "1.13.2" - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz#fcca1eeddb1cc4e7b6eed4fc7956d6813b21b9fb" + resolved "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz" integrity sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA== "@webassemblyjs/helper-api-error@1.13.2": version "1.13.2" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz#e0a16152248bc38daee76dd7e21f15c5ef3ab1e7" + resolved "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz" integrity sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ== "@webassemblyjs/helper-buffer@1.14.1": version "1.14.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz#822a9bc603166531f7d5df84e67b5bf99b72b96b" + resolved "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz" integrity sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA== "@webassemblyjs/helper-numbers@1.13.2": version "1.13.2" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz#dbd932548e7119f4b8a7877fd5a8d20e63490b2d" + resolved "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz" integrity sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA== dependencies: "@webassemblyjs/floating-point-hex-parser" "1.13.2" @@ -1471,12 +1471,12 @@ "@webassemblyjs/helper-wasm-bytecode@1.13.2": version "1.13.2" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz#e556108758f448aae84c850e593ce18a0eb31e0b" + resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz" integrity sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA== "@webassemblyjs/helper-wasm-section@1.14.1": version "1.14.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz#9629dda9c4430eab54b591053d6dc6f3ba050348" + resolved "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz" integrity sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw== dependencies: "@webassemblyjs/ast" "1.14.1" @@ -1486,26 +1486,26 @@ "@webassemblyjs/ieee754@1.13.2": version "1.13.2" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz#1c5eaace1d606ada2c7fd7045ea9356c59ee0dba" + resolved "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz" integrity sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw== dependencies: "@xtuc/ieee754" "^1.2.0" "@webassemblyjs/leb128@1.13.2": version "1.13.2" - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.13.2.tgz#57c5c3deb0105d02ce25fa3fd74f4ebc9fd0bbb0" + resolved "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz" integrity sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw== dependencies: "@xtuc/long" "4.2.2" "@webassemblyjs/utf8@1.13.2": version "1.13.2" - resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.13.2.tgz#917a20e93f71ad5602966c2d685ae0c6c21f60f1" + resolved "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz" integrity sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ== "@webassemblyjs/wasm-edit@^1.14.1": version "1.14.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz#ac6689f502219b59198ddec42dcd496b1004d597" + resolved "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz" integrity sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ== dependencies: "@webassemblyjs/ast" "1.14.1" @@ -1519,7 +1519,7 @@ "@webassemblyjs/wasm-gen@1.14.1": version "1.14.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz#991e7f0c090cb0bb62bbac882076e3d219da9570" + resolved "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz" integrity sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg== dependencies: "@webassemblyjs/ast" "1.14.1" @@ -1530,7 +1530,7 @@ "@webassemblyjs/wasm-opt@1.14.1": version "1.14.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz#e6f71ed7ccae46781c206017d3c14c50efa8106b" + resolved "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz" integrity sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw== dependencies: "@webassemblyjs/ast" "1.14.1" @@ -1540,7 +1540,7 @@ "@webassemblyjs/wasm-parser@1.14.1", "@webassemblyjs/wasm-parser@^1.14.1": version "1.14.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz#b3e13f1893605ca78b52c68e54cf6a865f90b9fb" + resolved "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz" integrity sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ== dependencies: "@webassemblyjs/ast" "1.14.1" @@ -1552,7 +1552,7 @@ "@webassemblyjs/wast-printer@1.14.1": version "1.14.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz#3bb3e9638a8ae5fdaf9610e7a06b4d9f9aa6fe07" + resolved "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz" integrity sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw== dependencies: "@webassemblyjs/ast" "1.14.1" @@ -1560,37 +1560,37 @@ "@webpack-cli/configtest@^2.1.1": version "2.1.1" - resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-2.1.1.tgz#3b2f852e91dac6e3b85fb2a314fb8bef46d94646" + resolved "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz" integrity sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw== "@webpack-cli/info@^2.0.2": version "2.0.2" - resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-2.0.2.tgz#cc3fbf22efeb88ff62310cf885c5b09f44ae0fdd" + resolved "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz" integrity sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A== "@webpack-cli/serve@^2.0.5": version "2.0.5" - resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-2.0.5.tgz#325db42395cd49fe6c14057f9a900e427df8810e" + resolved "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz" integrity sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ== "@xtuc/ieee754@^1.2.0": version "1.2.0" - resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + resolved "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz" integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== "@xtuc/long@4.2.2": version "4.2.2" - resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + resolved "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz" integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== "@yarnpkg/lockfile@^1.1.0": version "1.1.0" - resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" + resolved "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz" integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== "@yarnpkg/parsers@3.0.0-rc.46": version "3.0.0-rc.46" - resolved "https://registry.yarnpkg.com/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz#03f8363111efc0ea670e53b0282cd3ef62de4e01" + resolved "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz" integrity sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q== dependencies: js-yaml "^3.10.0" @@ -1598,14 +1598,14 @@ "@zkochan/js-yaml@0.0.6": version "0.0.6" - resolved "https://registry.yarnpkg.com/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz#975f0b306e705e28b8068a07737fa46d3fc04826" + resolved "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz" integrity sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg== dependencies: argparse "^2.0.1" JSONStream@^1.3.5: version "1.3.5" - resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz" integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== dependencies: jsonparse "^1.2.0" @@ -1613,17 +1613,17 @@ JSONStream@^1.3.5: abab@^2.0.6: version "2.0.6" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" + resolved "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz" integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== abbrev@^1.0.0: version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz" integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== accepts@~1.3.8: version "1.3.8" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== dependencies: mime-types "~2.1.34" @@ -1631,48 +1631,48 @@ accepts@~1.3.8: acorn-import-phases@^1.0.3: version "1.0.4" - resolved "https://registry.yarnpkg.com/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz#16eb850ba99a056cb7cbfe872ffb8972e18c8bd7" + resolved "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz" integrity sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ== acorn-jsx@^5.3.2: version "5.3.2" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== acorn-walk@^8.3.2: version "8.3.4" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.4.tgz#794dd169c3977edf4ba4ea47583587c5866236b7" + resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz" integrity sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g== dependencies: acorn "^8.11.0" acorn@^8.10.0, acorn@^8.11.0, acorn@^8.15.0, acorn@^8.9.0: version "8.15.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz#a360898bc415edaac46c8241f6383975b930b816" + resolved "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz" integrity sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg== add-stream@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" + resolved "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz" integrity sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ== agent-base@6, agent-base@^6.0.2: version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + resolved "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== dependencies: debug "4" agentkeepalive@^4.2.1: version "4.5.0" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.5.0.tgz#2673ad1389b3c418c5a20c5d7364f93ca04be923" + resolved "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz" integrity sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew== dependencies: humanize-ms "^1.2.1" aggregate-error@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + resolved "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== dependencies: clean-stack "^2.0.0" @@ -1680,26 +1680,26 @@ aggregate-error@^3.0.0: ajv-formats@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" + resolved "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz" integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA== dependencies: ajv "^8.0.0" ajv-keywords@^3.5.2: version "3.5.2" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz" integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== ajv-keywords@^5.1.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" + resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz" integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== dependencies: fast-deep-equal "^3.1.3" ajv@^6.12.4, ajv@^6.12.5: version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== dependencies: fast-deep-equal "^3.1.1" @@ -1709,7 +1709,7 @@ ajv@^6.12.4, ajv@^6.12.5: ajv@^8.0.0, ajv@^8.9.0: version "8.17.1" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6" + resolved "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz" integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g== dependencies: fast-deep-equal "^3.1.3" @@ -1719,58 +1719,58 @@ ajv@^8.0.0, ajv@^8.9.0: ansi-colors@^4.1.1: version "4.1.3" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + resolved "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz" integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== ansi-escapes@^4.2.1: version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + resolved "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== dependencies: type-fest "^0.21.3" ansi-regex@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== ansi-regex@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz" integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== ansi-styles@^3.2.1: version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" ansi-styles@^5.0.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz" integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== ansi-styles@^6.1.0: version "6.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz" integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== "aproba@^1.0.3 || ^2.0.0": version "2.0.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" + resolved "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz" integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== are-we-there-yet@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz#679df222b278c64f2cdba1175cdc00b0d96164bd" + resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz" integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== dependencies: delegates "^1.0.0" @@ -1778,69 +1778,69 @@ are-we-there-yet@^3.0.0: argparse@^1.0.7: version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== dependencies: sprintf-js "~1.0.2" argparse@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== array-differ@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b" + resolved "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz" integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg== array-flatten@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== array-ify@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" + resolved "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz" integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== array-union@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== arrify@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== arrify@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" + resolved "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz" integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== assertion-error@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" + resolved "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz" integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== async@^3.2.3: version "3.2.4" - resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" + resolved "https://registry.npmjs.org/async/-/async-3.2.4.tgz" integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== asynckit@^0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== autocompleter@^9.1.2: version "9.1.2" - resolved "https://registry.yarnpkg.com/autocompleter/-/autocompleter-9.1.2.tgz#1f30c2db277de029a05a3fbbfac642e73ca107c1" + resolved "https://registry.npmjs.org/autocompleter/-/autocompleter-9.1.2.tgz" integrity sha512-L4DJ2UIsIy/YrTchKHHfyQRng2p8m9xpari1uHYZ/5DynQombeshF73uVQbrtdLxLSlK0R7ObhpnbPBkI8j8xA== axios@^1.0.0: version "1.8.4" - resolved "https://registry.yarnpkg.com/axios/-/axios-1.8.4.tgz#78990bb4bc63d2cae072952d374835950a82f447" + resolved "https://registry.npmjs.org/axios/-/axios-1.8.4.tgz" integrity sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw== dependencies: follow-redirects "^1.15.6" @@ -1849,37 +1849,37 @@ axios@^1.0.0: balanced-match@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== base64-js@^1.3.1: version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== baseline-browser-mapping@^2.9.0: version "2.9.19" - resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.9.19.tgz#3e508c43c46d961eb4d7d2e5b8d1dd0f9ee4f488" + resolved "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.19.tgz" integrity sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg== before-after-hook@^2.2.0: version "2.2.3" - resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c" + resolved "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz" integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ== big.js@^5.2.2: version "5.2.2" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + resolved "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz" integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== binaryextensions@^4.16.0: version "4.18.0" - resolved "https://registry.yarnpkg.com/binaryextensions/-/binaryextensions-4.18.0.tgz#22aeada2d14de062c60e8ca59a504a5636a76ceb" + resolved "https://registry.npmjs.org/binaryextensions/-/binaryextensions-4.18.0.tgz" integrity sha512-PQu3Kyv9dM4FnwB7XGj1+HucW+ShvJzJqjuw1JkKVs1mWdwOKVcRjOi+pV9X52A0tNvrPCsPkbFFQb+wE1EAXw== bl@^4.0.3, bl@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + resolved "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz" integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== dependencies: buffer "^5.5.0" @@ -1888,7 +1888,7 @@ bl@^4.0.3, bl@^4.1.0: body-parser@1.20.3: version "1.20.3" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.3.tgz#1953431221c6fb5cd63c4b36d53fab0928e548c6" + resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz" integrity sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g== dependencies: bytes "3.1.2" @@ -1906,7 +1906,7 @@ body-parser@1.20.3: brace-expansion@^1.1.7: version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" @@ -1914,26 +1914,26 @@ brace-expansion@^1.1.7: brace-expansion@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz" integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== dependencies: balanced-match "^1.0.0" braces@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz" integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== dependencies: fill-range "^7.1.1" browser-split@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/browser-split/-/browser-split-0.0.1.tgz#7b097574f8e3ead606fb4664e64adfdda2981a93" + resolved "https://registry.npmjs.org/browser-split/-/browser-split-0.0.1.tgz" integrity sha512-JhvgRb2ihQhsljNda3BI8/UcRHVzrVwo3Q+P8vDtSiyobXuFpuZ9mq+MbRGMnC22CjW3RrfXdg6j6ITX8M+7Ow== browserslist@^4.28.1: version "4.28.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.28.1.tgz#7f534594628c53c63101079e27e40de490456a95" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz" integrity sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA== dependencies: baseline-browser-mapping "^2.9.0" @@ -1944,12 +1944,12 @@ browserslist@^4.28.1: buffer-from@^1.0.0: version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== buffer@^5.5.0: version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== dependencies: base64-js "^1.3.1" @@ -1957,34 +1957,34 @@ buffer@^5.5.0: builtins@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" + resolved "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz" integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ== builtins@^5.0.0: version "5.0.1" - resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.0.1.tgz#87f6db9ab0458be728564fa81d876d8d74552fa9" + resolved "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz" integrity sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ== dependencies: semver "^7.0.0" byte-size@8.1.1: version "8.1.1" - resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-8.1.1.tgz#3424608c62d59de5bfda05d31e0313c6174842ae" + resolved "https://registry.npmjs.org/byte-size/-/byte-size-8.1.1.tgz" integrity sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg== bytes@3.1.2: version "3.1.2" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== cac@^6.7.14: version "6.7.14" - resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" + resolved "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz" integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== cacache@^17.0.0: version "17.1.4" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-17.1.4.tgz#b3ff381580b47e85c6e64f801101508e26604b35" + resolved "https://registry.npmjs.org/cacache/-/cacache-17.1.4.tgz" integrity sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A== dependencies: "@npmcli/fs" "^3.1.0" @@ -2002,7 +2002,7 @@ cacache@^17.0.0: call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6" + resolved "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz" integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ== dependencies: es-errors "^1.3.0" @@ -2010,7 +2010,7 @@ call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2: call-bind@^1.0.0: version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== dependencies: function-bind "^1.1.1" @@ -2018,7 +2018,7 @@ call-bind@^1.0.0: call-bind@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz" integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== dependencies: es-define-property "^1.0.0" @@ -2029,12 +2029,12 @@ call-bind@^1.0.7: callsites@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== camelcase-keys@^6.2.2: version "6.2.2" - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" + resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz" integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== dependencies: camelcase "^5.3.1" @@ -2043,17 +2043,17 @@ camelcase-keys@^6.2.2: camelcase@^5.3.1: version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== caniuse-lite@^1.0.30001759: version "1.0.30001769" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001769.tgz#1ad91594fad7dc233777c2781879ab5409f7d9c2" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001769.tgz" integrity sha512-BCfFL1sHijQlBGWBMuJyhZUhzo7wer5sVj9hqekB/7xn0Ypy+pER/edCYQm4exbXj4WiySGp40P8UuTh6w1srg== chai@^4.3.10: version "4.3.10" - resolved "https://registry.yarnpkg.com/chai/-/chai-4.3.10.tgz#d784cec635e3b7e2ffb66446a63b4e33bd390384" + resolved "https://registry.npmjs.org/chai/-/chai-4.3.10.tgz" integrity sha512-0UXG04VuVbruMUYbJ6JctvH0YnC/4q3/AkT18q4NaITo91CUm0liMS9VqzT9vZhVQ/1eqPanMWjBM+Juhfb/9g== dependencies: assertion-error "^1.1.0" @@ -2066,7 +2066,7 @@ chai@^4.3.10: chalk@4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz" integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== dependencies: ansi-styles "^4.1.0" @@ -2074,7 +2074,7 @@ chalk@4.1.0: chalk@^2.4.2: version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" @@ -2083,7 +2083,7 @@ chalk@^2.4.2: chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" @@ -2091,66 +2091,66 @@ chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: chardet@^0.7.0: version "0.7.0" - resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + resolved "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz" integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== check-error@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.3.tgz#a6502e4312a7ee969f646e83bb3ddd56281bd694" + resolved "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz" integrity sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg== dependencies: get-func-name "^2.0.2" chownr@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + resolved "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz" integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== chrome-trace-event@^1.0.2: version "1.0.3" - resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" + resolved "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz" integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== ci-info@^3.2.0, ci-info@^3.6.1: version "3.8.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" + resolved "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz" integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== circular-dependency-plugin@^5.2.2: version "5.2.2" - resolved "https://registry.yarnpkg.com/circular-dependency-plugin/-/circular-dependency-plugin-5.2.2.tgz#39e836079db1d3cf2f988dc48c5188a44058b600" + resolved "https://registry.npmjs.org/circular-dependency-plugin/-/circular-dependency-plugin-5.2.2.tgz" integrity sha512-g38K9Cm5WRwlaH6g03B9OEz/0qRizI+2I7n+Gz+L5DxXJAPAiWQvwlYNm1V1jkdpUv95bOe/ASm2vfi/G560jQ== clean-stack@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + resolved "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== cli-cursor@3.1.0, cli-cursor@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + resolved "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz" integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== dependencies: restore-cursor "^3.1.0" cli-spinners@2.6.1: version "2.6.1" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d" + resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz" integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g== cli-spinners@^2.5.0: version "2.9.1" - resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.1.tgz#9c0b9dad69a6d47cbb4333c14319b060ed395a35" + resolved "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.1.tgz" integrity sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ== cli-width@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + resolved "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz" integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== cliui@^7.0.2: version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz" integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== dependencies: string-width "^4.2.0" @@ -2159,7 +2159,7 @@ cliui@^7.0.2: cliui@^8.0.1: version "8.0.1" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + resolved "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz" integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== dependencies: string-width "^4.2.0" @@ -2168,7 +2168,7 @@ cliui@^8.0.1: clone-deep@4.0.1, clone-deep@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + resolved "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz" integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== dependencies: is-plain-object "^2.0.4" @@ -2177,51 +2177,51 @@ clone-deep@4.0.1, clone-deep@^4.0.1: clone@^1.0.2: version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz" integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== cmd-shim@6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-6.0.1.tgz#a65878080548e1dca760b3aea1e21ed05194da9d" + resolved "https://registry.npmjs.org/cmd-shim/-/cmd-shim-6.0.1.tgz" integrity sha512-S9iI9y0nKR4hwEQsVWpyxld/6kRfGepGfzff83FcaiEBpmvlbA2nnGe7Cylgrx2f/p1P5S5wpRm9oL8z1PbS3Q== color-convert@^1.9.0: version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== dependencies: color-name "1.1.3" color-convert@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== dependencies: color-name "~1.1.4" color-name@1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== color-name@~1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== color-support@^1.1.3: version "1.1.3" - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + resolved "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz" integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== colorette@^2.0.14: version "2.0.20" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" + resolved "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz" integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== columnify@1.6.0: version "1.6.0" - resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.6.0.tgz#6989531713c9008bb29735e61e37acf5bd553cf3" + resolved "https://registry.npmjs.org/columnify/-/columnify-1.6.0.tgz" integrity sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q== dependencies: strip-ansi "^6.0.1" @@ -2229,34 +2229,34 @@ columnify@1.6.0: combined-stream@^1.0.8: version "1.0.8" - resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== dependencies: delayed-stream "~1.0.0" commander@^10.0.1: version "10.0.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" + resolved "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz" integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== commander@^2.20.0: version "2.20.3" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + resolved "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== commander@^9.0.0: version "9.5.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" + resolved "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz" integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== commondir@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== compare-func@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" + resolved "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz" integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== dependencies: array-ify "^1.0.0" @@ -2264,12 +2264,12 @@ compare-func@^2.0.0: concat-map@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== concat-stream@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1" + resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz" integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A== dependencies: buffer-from "^1.0.0" @@ -2279,7 +2279,7 @@ concat-stream@^2.0.0: concurrently@~8.2.1: version "8.2.2" - resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-8.2.2.tgz#353141985c198cfa5e4a3ef90082c336b5851784" + resolved "https://registry.npmjs.org/concurrently/-/concurrently-8.2.2.tgz" integrity sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg== dependencies: chalk "^4.1.2" @@ -2294,31 +2294,31 @@ concurrently@~8.2.1: console-control-strings@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz" integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== content-disposition@0.5.4: version "0.5.4" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz" integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== dependencies: safe-buffer "5.2.1" content-type@~1.0.4, content-type@~1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz" integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== conventional-changelog-angular@6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-6.0.0.tgz#a9a9494c28b7165889144fd5b91573c4aa9ca541" + resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-6.0.0.tgz" integrity sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg== dependencies: compare-func "^2.0.0" conventional-changelog-core@5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-5.0.1.tgz#3c331b155d5b9850f47b4760aeddfc983a92ad49" + resolved "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-5.0.1.tgz" integrity sha512-Rvi5pH+LvgsqGwZPZ3Cq/tz4ty7mjijhr3qR4m9IBXNbxGGYgTVVO+duXzz9aArmHxFtwZ+LRkrNIMDQzgoY4A== dependencies: add-stream "^1.0.0" @@ -2335,12 +2335,12 @@ conventional-changelog-core@5.0.1: conventional-changelog-preset-loader@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-3.0.0.tgz#14975ef759d22515d6eabae6396c2ae721d4c105" + resolved "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-3.0.0.tgz" integrity sha512-qy9XbdSLmVnwnvzEisjxdDiLA4OmV3o8db+Zdg4WiFw14fP3B6XNz98X0swPPpkTd/pc1K7+adKgEDM1JCUMiA== conventional-changelog-writer@^6.0.0: version "6.0.1" - resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-6.0.1.tgz#d8d3bb5e1f6230caed969dcc762b1c368a8f7b01" + resolved "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-6.0.1.tgz" integrity sha512-359t9aHorPw+U+nHzUXHS5ZnPBOizRxfQsWT5ZDHBfvfxQOAik+yfuhKXG66CN5LEWPpMNnIMHUTCKeYNprvHQ== dependencies: conventional-commits-filter "^3.0.0" @@ -2353,7 +2353,7 @@ conventional-changelog-writer@^6.0.0: conventional-commits-filter@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-3.0.0.tgz#bf1113266151dd64c49cd269e3eb7d71d7015ee2" + resolved "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-3.0.0.tgz" integrity sha512-1ymej8b5LouPx9Ox0Dw/qAO2dVdfpRFq28e5Y0jJEU8ZrLdy0vOSkkIInwmxErFGhg6SALro60ZrwYFVTUDo4Q== dependencies: lodash.ismatch "^4.4.0" @@ -2361,7 +2361,7 @@ conventional-commits-filter@^3.0.0: conventional-commits-parser@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz#02ae1178a381304839bce7cea9da5f1b549ae505" + resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz" integrity sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg== dependencies: JSONStream "^1.3.5" @@ -2371,7 +2371,7 @@ conventional-commits-parser@^4.0.0: conventional-recommended-bump@7.0.1: version "7.0.1" - resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-7.0.1.tgz#ec01f6c7f5d0e2491c2d89488b0d757393392424" + resolved "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-7.0.1.tgz" integrity sha512-Ft79FF4SlOFvX4PkwFDRnaNiIVX7YbmqGU0RwccUaiGvgp3S0a8ipR2/Qxk31vclDNM+GSdJOVs2KrsUCjblVA== dependencies: concat-stream "^2.0.0" @@ -2384,27 +2384,27 @@ conventional-recommended-bump@7.0.1: convert-source-map@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== cookie-signature@1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== cookie@0.6.0: version "0.6.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" + resolved "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz" integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== core-util-is@~1.0.0: version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== cosmiconfig@^8.2.0: version "8.3.6" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3" + resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz" integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== dependencies: import-fresh "^3.3.0" @@ -2414,7 +2414,7 @@ cosmiconfig@^8.2.0: cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.6" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz" integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== dependencies: path-key "^3.1.0" @@ -2423,7 +2423,7 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: css-loader@^6.8.1: version "6.8.1" - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.8.1.tgz#0f8f52699f60f5e679eab4ec0fcd68b8e8a50a88" + resolved "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz" integrity sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g== dependencies: icss-utils "^5.1.0" @@ -2437,43 +2437,43 @@ css-loader@^6.8.1: cssesc@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== dargs@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" + resolved "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz" integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== date-fns@^2.30.0: version "2.30.0" - resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.30.0.tgz#f367e644839ff57894ec6ac480de40cae4b0f4d0" + resolved "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz" integrity sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw== dependencies: "@babel/runtime" "^7.21.0" dateformat@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" + resolved "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz" integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== debug@2.6.9: version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" debug@4, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" decamelize-keys@^1.1.0: version "1.1.1" - resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" + resolved "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz" integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== dependencies: decamelize "^1.1.0" @@ -2481,41 +2481,41 @@ decamelize-keys@^1.1.0: decamelize@^1.1.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== dedent@0.7.0: version "0.7.0" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz" integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== deep-eql@^4.1.3: version "4.1.3" - resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-4.1.3.tgz#7c7775513092f7df98d8df9996dd085eb668cc6d" + resolved "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz" integrity sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw== dependencies: type-detect "^4.0.0" deep-extend@^0.6.0: version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz" integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== deep-is@^0.1.3: version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== defaults@^1.0.3: version "1.0.4" - resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + resolved "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz" integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== dependencies: clone "^1.0.2" define-data-property@^1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz" integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== dependencies: es-define-property "^1.0.0" @@ -2524,83 +2524,83 @@ define-data-property@^1.1.4: define-lazy-prop@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== delayed-stream@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== delegates@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz" integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== depd@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz" integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== deprecation@^2.0.0, deprecation@^2.3.1: version "2.3.1" - resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" + resolved "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz" integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== destroy@1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz" integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== detect-indent@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" + resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz" integrity sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g== diff-sequences@^29.6.3: version "29.6.3" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" + resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz" integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== diff@^5.0.0: version "5.2.2" - resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.2.tgz#0a4742797281d09cfa699b79ea32d27723623bad" + resolved "https://registry.npmjs.org/diff/-/diff-5.2.2.tgz" integrity sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A== dir-glob@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== dependencies: path-type "^4.0.0" doctrine@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== dependencies: esutils "^2.0.2" dot-prop@^5.1.0: version "5.3.0" - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" + resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz" integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== dependencies: is-obj "^2.0.0" dotenv-expand@~10.0.0: version "10.0.0" - resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-10.0.0.tgz#12605d00fb0af6d0a592e6558585784032e4ef37" + resolved "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz" integrity sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A== dotenv@~16.3.1: version "16.3.1" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.1.tgz#369034de7d7e5b120972693352a3bf112172cc3e" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz" integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ== dunder-proto@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" + resolved "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz" integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A== dependencies: call-bind-apply-helpers "^1.0.1" @@ -2609,78 +2609,78 @@ dunder-proto@^1.0.1: duplexer@^0.1.1: version "0.1.2" - resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz" integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== eastasianwidth@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + resolved "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz" integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== ee-first@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== ejs@^3.1.7, ejs@^3.1.8: version "3.1.10" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b" + resolved "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz" integrity sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA== dependencies: jake "^10.8.5" electron-to-chromium@^1.5.263: version "1.5.286" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.286.tgz#142be1ab5e1cd5044954db0e5898f60a4960384e" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.286.tgz" integrity sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A== elkjs@^0.8.2: version "0.8.2" - resolved "https://registry.yarnpkg.com/elkjs/-/elkjs-0.8.2.tgz#c37763c5a3e24e042e318455e0147c912a7c248e" + resolved "https://registry.npmjs.org/elkjs/-/elkjs-0.8.2.tgz" integrity sha512-L6uRgvZTH+4OF5NE/MBbzQx/WYpru1xCBE9respNj6qznEewGUIfhzmm7horWWxbNO2M0WckQypGctR8lH79xQ== emoji-regex@^8.0.0: version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== emoji-regex@^9.2.2: version "9.2.2" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== emojis-list@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz" integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== encodeurl@~1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== encodeurl@~2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz" integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== encoding@^0.1.13: version "0.1.13" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" + resolved "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz" integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== dependencies: iconv-lite "^0.6.2" end-of-stream@^1.4.1: version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== dependencies: once "^1.4.0" enhanced-resolve@^5.0.0, enhanced-resolve@^5.17.4: version "5.19.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.19.0.tgz#6687446a15e969eaa63c2fa2694510e17ae6d97c" + resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.19.0.tgz" integrity sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg== dependencies: graceful-fs "^4.2.4" @@ -2688,75 +2688,75 @@ enhanced-resolve@^5.0.0, enhanced-resolve@^5.17.4: enquirer@~2.3.6: version "2.3.6" - resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + resolved "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz" integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== dependencies: ansi-colors "^4.1.1" entities@^4.5.0: version "4.5.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== env-paths@^2.2.0: version "2.2.1" - resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" + resolved "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz" integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== envinfo@7.8.1: version "7.8.1" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" + resolved "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz" integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== envinfo@^7.7.3: version "7.10.0" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.10.0.tgz#55146e3909cc5fe63c22da63fb15b05aeac35b13" + resolved "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz" integrity sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw== err-code@^2.0.2: version "2.0.3" - resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" + resolved "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz" integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== error-ex@^1.3.1: version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" es-define-property@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz" integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== dependencies: get-intrinsic "^1.2.4" es-define-property@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" + resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz" integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== es-errors@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== es-module-lexer@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-2.0.0.tgz#f657cd7a9448dcdda9c070a3cb75e5dc1e85f5b1" + resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.0.0.tgz" integrity sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw== es-object-atoms@^1.0.0, es-object-atoms@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1" + resolved "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz" integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA== dependencies: es-errors "^1.3.0" es-set-tostringtag@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz#f31dbbe0c183b00a6d26eb6325c810c0fd18bd4d" + resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz" integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA== dependencies: es-errors "^1.3.0" @@ -2766,7 +2766,7 @@ es-set-tostringtag@^2.1.0: esbuild@^0.21.3: version "0.21.5" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" + resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz" integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== optionalDependencies: "@esbuild/aix-ppc64" "0.21.5" @@ -2795,47 +2795,47 @@ esbuild@^0.21.3: escalade@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== escalade@^3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5" + resolved "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz" integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA== escape-html@~1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== escape-string-regexp@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== escape-string-regexp@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== eslint-config-prettier@^9.0.0: version "9.0.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz#eb25485946dd0c66cd216a46232dc05451518d1f" + resolved "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz" integrity sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw== eslint-plugin-header@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-header/-/eslint-plugin-header-3.1.1.tgz#6ce512432d57675265fac47292b50d1eff11acd6" + resolved "https://registry.npmjs.org/eslint-plugin-header/-/eslint-plugin-header-3.1.1.tgz" integrity sha512-9vlKxuJ4qf793CmeeSrZUvVClw6amtpghq3CuWcB5cUNnWHQhgcqy5eF8oVKFk1G3Y/CbchGfEaw3wiIJaNmVg== eslint-plugin-no-null@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-no-null/-/eslint-plugin-no-null-1.0.2.tgz#1236a812391390a1877ad4007c26e745341c951f" + resolved "https://registry.npmjs.org/eslint-plugin-no-null/-/eslint-plugin-no-null-1.0.2.tgz" integrity sha512-uRDiz88zCO/2rzGfgG15DBjNsgwWtWiSo4Ezy7zzajUgpnFIqd1TjepKeRmJZHEfBGu58o2a8S0D7vglvvhkVA== eslint-scope@5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== dependencies: esrecurse "^4.3.0" @@ -2843,7 +2843,7 @@ eslint-scope@5.1.1: eslint-scope@^7.2.2: version "7.2.2" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz" integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== dependencies: esrecurse "^4.3.0" @@ -2851,12 +2851,12 @@ eslint-scope@^7.2.2: eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: version "3.4.3" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== eslint@^8.53.0: version "8.53.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.53.0.tgz#14f2c8244298fcae1f46945459577413ba2697ce" + resolved "https://registry.npmjs.org/eslint/-/eslint-8.53.0.tgz" integrity sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag== dependencies: "@eslint-community/eslint-utils" "^4.2.0" @@ -2900,7 +2900,7 @@ eslint@^8.53.0: espree@^9.6.0, espree@^9.6.1: version "9.6.1" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + resolved "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz" integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== dependencies: acorn "^8.9.0" @@ -2909,63 +2909,63 @@ espree@^9.6.0, espree@^9.6.1: esprima@^4.0.0: version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + resolved "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== esquery@^1.4.2: version "1.5.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + resolved "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz" integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== dependencies: estraverse "^5.1.0" esrecurse@^4.3.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== dependencies: estraverse "^5.2.0" estraverse@^4.1.1: version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== estraverse@^5.1.0, estraverse@^5.2.0: version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== estree-walker@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.3.tgz#67c3e549ec402a487b4fc193d1953a524752340d" + resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz" integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g== dependencies: "@types/estree" "^1.0.0" esutils@^2.0.2: version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== etag@~1.8.1: version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== eventemitter3@^4.0.4: version "4.0.7" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz" integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== events@^3.2.0: version "3.3.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + resolved "https://registry.npmjs.org/events/-/events-3.3.0.tgz" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== execa@5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.0.0.tgz#4029b0007998a841fbd1032e5f4de86a3c1e3376" + resolved "https://registry.npmjs.org/execa/-/execa-5.0.0.tgz" integrity sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ== dependencies: cross-spawn "^7.0.3" @@ -2980,7 +2980,7 @@ execa@5.0.0: execa@^5.0.0, execa@^5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + resolved "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz" integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== dependencies: cross-spawn "^7.0.3" @@ -2995,7 +2995,7 @@ execa@^5.0.0, execa@^5.1.1: execa@^8.0.1: version "8.0.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-8.0.1.tgz#51f6a5943b580f963c3ca9c6321796db8cc39b8c" + resolved "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz" integrity sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg== dependencies: cross-spawn "^7.0.3" @@ -3010,12 +3010,12 @@ execa@^8.0.1: exponential-backoff@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6" + resolved "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz" integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw== express@^4.18.2: version "4.20.0" - resolved "https://registry.yarnpkg.com/express/-/express-4.20.0.tgz#f1d08e591fcec770c07be4767af8eb9bcfd67c48" + resolved "https://registry.npmjs.org/express/-/express-4.20.0.tgz" integrity sha512-pLdae7I6QqShF5PnNTCVn4hI91Dx0Grkn2+IAsMTgMIKuQVte2dN9PeGSSAME2FR8anOhVA62QDIUaWVfEXVLw== dependencies: accepts "~1.3.8" @@ -3052,7 +3052,7 @@ express@^4.18.2: external-editor@^3.0.3: version "3.1.0" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + resolved "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz" integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== dependencies: chardet "^0.7.0" @@ -3061,12 +3061,12 @@ external-editor@^3.0.3: fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== fast-glob@^3.2.9: version "3.3.1" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" + resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz" integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== dependencies: "@nodelib/fs.stat" "^2.0.2" @@ -3077,48 +3077,48 @@ fast-glob@^3.2.9: fast-json-stable-stringify@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== fast-levenshtein@^2.0.6: version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== fast-uri@^3.0.1: version "3.1.0" - resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.1.0.tgz#66eecff6c764c0df9b762e62ca7edcfb53b4edfa" + resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz" integrity sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA== fastest-levenshtein@^1.0.12: version "1.0.16" - resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" + resolved "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz" integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== fastq@^1.6.0: version "1.15.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" + resolved "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz" integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== dependencies: reusify "^1.0.4" figures@3.2.0, figures@^3.0.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz" integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== dependencies: escape-string-regexp "^1.0.5" file-entry-cache@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== dependencies: flat-cache "^3.0.4" file-loader@^6.2.0: version "6.2.0" - resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" + resolved "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz" integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== dependencies: loader-utils "^2.0.0" @@ -3126,26 +3126,26 @@ file-loader@^6.2.0: file-saver@^2.0.5: version "2.0.5" - resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-2.0.5.tgz#d61cfe2ce059f414d899e9dd6d4107ee25670c38" + resolved "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz" integrity sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA== filelist@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" + resolved "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz" integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== dependencies: minimatch "^5.0.1" fill-range@^7.1.1: version "7.1.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== dependencies: to-regex-range "^5.0.1" finalhandler@1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz" integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== dependencies: debug "2.6.9" @@ -3158,14 +3158,14 @@ finalhandler@1.2.0: find-up@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz" integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== dependencies: locate-path "^2.0.0" find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== dependencies: locate-path "^5.0.0" @@ -3173,7 +3173,7 @@ find-up@^4.0.0, find-up@^4.1.0: find-up@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== dependencies: locate-path "^6.0.0" @@ -3181,7 +3181,7 @@ find-up@^5.0.0: flat-cache@^3.0.4: version "3.1.0" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.1.0.tgz#0e54ab4a1a60fe87e2946b6b00657f1c99e1af3f" + resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz" integrity sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew== dependencies: flatted "^3.2.7" @@ -3190,22 +3190,22 @@ flat-cache@^3.0.4: flat@^5.0.2: version "5.0.2" - resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + resolved "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz" integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== flatted@^3.2.7: version "3.2.9" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf" + resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz" integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ== follow-redirects@^1.15.6: version "1.15.9" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz" integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ== foreground-child@^3.1.0: version "3.1.1" - resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d" + resolved "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz" integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== dependencies: cross-spawn "^7.0.0" @@ -3213,7 +3213,7 @@ foreground-child@^3.1.0: form-data@^4.0.0: version "4.0.4" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz#784cdcce0669a9d68e94d11ac4eea98088edd2c4" + resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz" integrity sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow== dependencies: asynckit "^0.4.0" @@ -3224,22 +3224,22 @@ form-data@^4.0.0: forwarded@0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz" integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== fresh@0.5.2: version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== fs-constants@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + resolved "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz" integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== fs-extra@^11.1.0, fs-extra@^11.1.1: version "11.1.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.1.tgz#da69f7c39f3b002378b0954bb6ae7efdc0876e2d" + resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz" integrity sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== dependencies: graceful-fs "^4.2.0" @@ -3248,41 +3248,41 @@ fs-extra@^11.1.0, fs-extra@^11.1.1: fs-minipass@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz" integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== dependencies: minipass "^3.0.0" fs-minipass@^3.0.0: version "3.0.3" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-3.0.3.tgz#79a85981c4dc120065e96f62086bf6f9dc26cc54" + resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz" integrity sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw== dependencies: minipass "^7.0.3" fs.realpath@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== fsevents@~2.3.2, fsevents@~2.3.3: version "2.3.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz" integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== function-bind@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== function-bind@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== gauge@^4.0.3: version "4.0.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" + resolved "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz" integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== dependencies: aproba "^1.0.3 || ^2.0.0" @@ -3296,17 +3296,17 @@ gauge@^4.0.3: get-caller-file@^2.0.5: version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-func-name@^2.0.0, get-func-name@^2.0.1, get-func-name@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.2.tgz#0d7cf20cd13fda808669ffa88f4ffc7a3943fc41" + resolved "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz" integrity sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ== get-intrinsic@^1.0.2: version "1.2.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz" integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== dependencies: function-bind "^1.1.1" @@ -3316,7 +3316,7 @@ get-intrinsic@^1.0.2: get-intrinsic@^1.1.3, get-intrinsic@^1.2.4: version "1.2.4" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz" integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== dependencies: es-errors "^1.3.0" @@ -3327,7 +3327,7 @@ get-intrinsic@^1.1.3, get-intrinsic@^1.2.4: get-intrinsic@^1.2.6: version "1.3.0" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz" integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ== dependencies: call-bind-apply-helpers "^1.0.2" @@ -3343,7 +3343,7 @@ get-intrinsic@^1.2.6: get-pkg-repo@^4.2.1: version "4.2.1" - resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz#75973e1c8050c73f48190c52047c4cee3acbf385" + resolved "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz" integrity sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA== dependencies: "@hutson/parse-repository-url" "^3.0.0" @@ -3353,12 +3353,12 @@ get-pkg-repo@^4.2.1: get-port@5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" + resolved "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz" integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== get-proto@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1" + resolved "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz" integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g== dependencies: dunder-proto "^1.0.1" @@ -3366,22 +3366,22 @@ get-proto@^1.0.1: get-stream@6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.0.tgz#3e0012cb6827319da2706e601a1583e8629a6718" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.0.tgz" integrity sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg== get-stream@^6.0.0: version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== get-stream@^8.0.1: version "8.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2" + resolved "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz" integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA== git-raw-commits@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-3.0.0.tgz#5432f053a9744f67e8db03dbc48add81252cfdeb" + resolved "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-3.0.0.tgz" integrity sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw== dependencies: dargs "^7.0.0" @@ -3390,7 +3390,7 @@ git-raw-commits@^3.0.0: git-remote-origin-url@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" + resolved "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz" integrity sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw== dependencies: gitconfiglocal "^1.0.0" @@ -3398,7 +3398,7 @@ git-remote-origin-url@^2.0.0: git-semver-tags@^5.0.0: version "5.0.1" - resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-5.0.1.tgz#db748aa0e43d313bf38dcd68624d8443234e1c15" + resolved "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-5.0.1.tgz" integrity sha512-hIvOeZwRbQ+7YEUmCkHqo8FOLQZCEn18yevLHADlFPZY02KJGsu5FZt9YW/lybfK2uhWFI7Qg/07LekJiTv7iA== dependencies: meow "^8.1.2" @@ -3406,7 +3406,7 @@ git-semver-tags@^5.0.0: git-up@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/git-up/-/git-up-7.0.0.tgz#bace30786e36f56ea341b6f69adfd83286337467" + resolved "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz" integrity sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ== dependencies: is-ssh "^1.4.0" @@ -3414,47 +3414,47 @@ git-up@^7.0.0: git-url-parse@13.1.0: version "13.1.0" - resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-13.1.0.tgz#07e136b5baa08d59fabdf0e33170de425adf07b4" + resolved "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.0.tgz" integrity sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA== dependencies: git-up "^7.0.0" gitconfiglocal@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" + resolved "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz" integrity sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ== dependencies: ini "^1.3.2" github-username@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/github-username/-/github-username-6.0.0.tgz#d543eced7295102996cd8e4e19050ebdcbe60658" + resolved "https://registry.npmjs.org/github-username/-/github-username-6.0.0.tgz" integrity sha512-7TTrRjxblSI5l6adk9zd+cV5d6i1OrJSo3Vr9xdGqFLBQo0mz5P9eIfKCDJ7eekVGGFLbce0qbPSnktXV2BjDQ== dependencies: "@octokit/rest" "^18.0.6" glob-parent@5.1.2, glob-parent@^5.1.2: version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" glob-parent@^6.0.2: version "6.0.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== dependencies: is-glob "^4.0.3" glob-to-regexp@^0.4.1: version "0.4.1" - resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + resolved "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz" integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== glob@7.1.4: version "7.1.4" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" + resolved "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz" integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== dependencies: fs.realpath "^1.0.0" @@ -3466,7 +3466,7 @@ glob@7.1.4: glob@^10.2.2: version "10.3.10" - resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b" + resolved "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz" integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== dependencies: foreground-child "^3.1.0" @@ -3477,7 +3477,7 @@ glob@^10.2.2: glob@^7.0.0, glob@^7.1.3, glob@^7.1.4: version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== dependencies: fs.realpath "^1.0.0" @@ -3489,7 +3489,7 @@ glob@^7.0.0, glob@^7.1.3, glob@^7.1.4: glob@^8.0.1: version "8.1.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" + resolved "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz" integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== dependencies: fs.realpath "^1.0.0" @@ -3500,7 +3500,7 @@ glob@^8.0.1: glob@^9.2.0: version "9.3.5" - resolved "https://registry.yarnpkg.com/glob/-/glob-9.3.5.tgz#ca2ed8ca452781a3009685607fdf025a899dfe21" + resolved "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz" integrity sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q== dependencies: fs.realpath "^1.0.0" @@ -3510,14 +3510,14 @@ glob@^9.2.0: globals@^13.19.0: version "13.22.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.22.0.tgz#0c9fcb9c48a2494fbb5edbfee644285543eba9d8" + resolved "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz" integrity sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw== dependencies: type-fest "^0.20.2" globby@11.1.0, globby@^11.1.0: version "11.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== dependencies: array-union "^2.1.0" @@ -3529,29 +3529,29 @@ globby@11.1.0, globby@^11.1.0: gopd@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== dependencies: get-intrinsic "^1.1.3" gopd@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" + resolved "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz" integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== graceful-fs@4.2.11, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6: version "4.2.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== graphemer@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + resolved "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz" integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== handlebars@^4.7.7: version "4.7.8" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.8.tgz#41c42c18b1be2365439188c77c6afae71c0cd9e9" + resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz" integrity sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ== dependencies: minimist "^1.2.5" @@ -3563,7 +3563,7 @@ handlebars@^4.7.7: happy-dom@^15.10.2: version "15.10.2" - resolved "https://registry.yarnpkg.com/happy-dom/-/happy-dom-15.10.2.tgz#14ae6652d1a80d2611e3f5832cb61ab5e2d1b539" + resolved "https://registry.npmjs.org/happy-dom/-/happy-dom-15.10.2.tgz" integrity sha512-NbA5XrSovenJIIcfixCREX3ZnV7yHP4phhbfuxxf4CPn+LZpz/jIM9EqJ2DrPwgVDSMoAKH3pZwQvkbsSiCrUw== dependencies: entities "^4.5.0" @@ -3572,106 +3572,106 @@ happy-dom@^15.10.2: hard-rejection@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" + resolved "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz" integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== has-flag@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== has-flag@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== has-property-descriptors@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz" integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== dependencies: es-define-property "^1.0.0" has-proto@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz" integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== has-symbols@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== has-symbols@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz" integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== has-tostringtag@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" + resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz" integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== dependencies: has-symbols "^1.0.3" has-unicode@2.0.1, has-unicode@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz" integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== has@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" hasown@^2.0.0, hasown@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== dependencies: function-bind "^1.1.2" hosted-git-info@^2.1.4: version "2.8.9" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz" integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== hosted-git-info@^3.0.6: version "3.0.8" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz#6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz" integrity sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw== dependencies: lru-cache "^6.0.0" hosted-git-info@^4.0.0, hosted-git-info@^4.0.1: version "4.1.0" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz" integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== dependencies: lru-cache "^6.0.0" hosted-git-info@^6.0.0: version "6.1.1" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-6.1.1.tgz#629442c7889a69c05de604d52996b74fe6f26d58" + resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.1.tgz" integrity sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w== dependencies: lru-cache "^7.5.1" html-escaper@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== http-cache-semantics@^4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" + resolved "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz" integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== http-errors@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz" integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== dependencies: depd "2.0.0" @@ -3682,7 +3682,7 @@ http-errors@2.0.0: http-proxy-agent@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" + resolved "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz" integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== dependencies: "@tootallnate/once" "2" @@ -3691,7 +3691,7 @@ http-proxy-agent@^5.0.0: https-proxy-agent@^5.0.0: version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" + resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== dependencies: agent-base "6" @@ -3699,67 +3699,67 @@ https-proxy-agent@^5.0.0: human-signals@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== human-signals@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28" + resolved "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz" integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ== humanize-ms@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + resolved "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz" integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== dependencies: ms "^2.0.0" iconv-lite@0.4.24, iconv-lite@^0.4.24: version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" iconv-lite@^0.6.2, iconv-lite@^0.6.3: version "0.6.3" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== dependencies: safer-buffer ">= 2.1.2 < 3.0.0" icss-utils@^5.0.0, icss-utils@^5.1.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" + resolved "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz" integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== ieee754@^1.1.13: version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== ignore-walk@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-5.0.1.tgz#5f199e23e1288f518d90358d461387788a154776" + resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-5.0.1.tgz" integrity sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw== dependencies: minimatch "^5.0.1" ignore-walk@^6.0.0: version "6.0.3" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-6.0.3.tgz#0fcdb6decaccda35e308a7b0948645dd9523b7bb" + resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.3.tgz" integrity sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA== dependencies: minimatch "^9.0.0" ignore@^5.0.4, ignore@^5.2.0, ignore@^5.2.4: version "5.2.4" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" + resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz" integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== import-fresh@^3.2.1, import-fresh@^3.3.0: version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== dependencies: parent-module "^1.0.0" @@ -3767,7 +3767,7 @@ import-fresh@^3.2.1, import-fresh@^3.3.0: import-local@3.1.0, import-local@^3.0.2: version "3.1.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" + resolved "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz" integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== dependencies: pkg-dir "^4.2.0" @@ -3775,17 +3775,17 @@ import-local@3.1.0, import-local@^3.0.2: imurmurhash@^0.1.4: version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== indent-string@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== inflight@^1.0.4: version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" @@ -3793,17 +3793,17 @@ inflight@^1.0.4: inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== ini@^1.3.2, ini@^1.3.8: version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== init-package-json@5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-5.0.0.tgz#030cf0ea9c84cfc1b0dc2e898b45d171393e4b40" + resolved "https://registry.npmjs.org/init-package-json/-/init-package-json-5.0.0.tgz" integrity sha512-kBhlSheBfYmq3e0L1ii+VKe3zBTLL5lDCDWR+f9dLmEGSB3MqLlMlsolubSsyI88Bg6EA+BIMlomAnQ1SwgQBw== dependencies: npm-package-arg "^10.0.0" @@ -3816,7 +3816,7 @@ init-package-json@5.0.0: inquirer@^8.2.4, inquirer@^8.2.5: version "8.2.6" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.6.tgz#733b74888195d8d400a67ac332011b5fae5ea562" + resolved "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz" integrity sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg== dependencies: ansi-escapes "^4.2.1" @@ -3837,17 +3837,17 @@ inquirer@^8.2.4, inquirer@^8.2.5: interpret@^1.0.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + resolved "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz" integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== interpret@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4" + resolved "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz" integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ== inversify@^6.1.3: version "6.2.0" - resolved "https://registry.yarnpkg.com/inversify/-/inversify-6.2.0.tgz#3c1a81bcd5722975f001a8af162c48255858daaa" + resolved "https://registry.npmjs.org/inversify/-/inversify-6.2.0.tgz" integrity sha512-wpiGpyIphFthWf18CBASJ1gClYwnW0mKjcSHwOuF7ToF/TBoarYSItX492WTGyK0VdJN1afwBIfaEpvp8IetPA== dependencies: "@inversifyjs/common" "1.4.0" @@ -3855,181 +3855,181 @@ inversify@^6.1.3: ip@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.1.tgz#e8f3595d33a3ea66490204234b77636965307105" + resolved "https://registry.npmjs.org/ip/-/ip-2.0.1.tgz" integrity sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ== ipaddr.js@1.9.1: version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== is-arrayish@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-ci@3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" + resolved "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz" integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== dependencies: ci-info "^3.2.0" is-core-module@^2.13.0, is-core-module@^2.5.0, is-core-module@^2.8.1: version "2.13.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz" integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== dependencies: has "^1.0.3" is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== is-extglob@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== is-fullwidth-code-point@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" is-interactive@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + resolved "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz" integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== is-lambda@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" + resolved "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz" integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== is-number@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== is-obj@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + resolved "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== is-path-inside@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz" integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== is-plain-obj@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz" integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== is-plain-object@^2.0.4: version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== dependencies: isobject "^3.0.1" is-plain-object@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz" integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== is-ssh@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.0.tgz#4f8220601d2839d8fa624b3106f8e8884f01b8b2" + resolved "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz" integrity sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ== dependencies: protocols "^2.0.1" is-stream@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz" integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== is-stream@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== is-stream@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" + resolved "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz" integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== is-text-path@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" + resolved "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz" integrity sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w== dependencies: text-extensions "^1.0.0" is-unicode-supported@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + resolved "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz" integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== is-wsl@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== dependencies: is-docker "^2.0.0" isarray@0.0.1: version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== isarray@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== isbinaryfile@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.0.tgz#034b7e54989dab8986598cbcea41f66663c65234" + resolved "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.0.tgz" integrity sha512-UDdnyGvMajJUWCkib7Cei/dvyJrrvo4FIrsvSFWdPpXSUorzXrDJ0S+X5Q4ZlasfPjca4yqCNNsjbCeiy8FFeg== isexe@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== isobject@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + resolved "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== istanbul-lib-coverage@^3.0.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" + resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz" integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== istanbul-lib-coverage@^3.2.2: version "3.2.2" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" + resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz" integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== istanbul-lib-report@^3.0.0, istanbul-lib-report@^3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" + resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz" integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== dependencies: istanbul-lib-coverage "^3.0.0" @@ -4038,7 +4038,7 @@ istanbul-lib-report@^3.0.0, istanbul-lib-report@^3.0.1: istanbul-lib-source-maps@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" + resolved "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz" integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== dependencies: debug "^4.1.1" @@ -4047,7 +4047,7 @@ istanbul-lib-source-maps@^4.0.1: istanbul-reports@^3.1.6: version "3.1.6" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz#2544bcab4768154281a2f0870471902704ccaa1a" + resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz" integrity sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg== dependencies: html-escaper "^2.0.0" @@ -4055,7 +4055,7 @@ istanbul-reports@^3.1.6: jackspeak@^2.3.5: version "2.3.6" - resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8" + resolved "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz" integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ== dependencies: "@isaacs/cliui" "^8.0.2" @@ -4064,7 +4064,7 @@ jackspeak@^2.3.5: jake@^10.8.5: version "10.8.7" - resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.7.tgz#63a32821177940c33f356e0ba44ff9d34e1c7d8f" + resolved "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz" integrity sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w== dependencies: async "^3.2.3" @@ -4074,7 +4074,7 @@ jake@^10.8.5: "jest-diff@>=29.4.3 < 30", jest-diff@^29.4.1: version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" + resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz" integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== dependencies: chalk "^4.0.0" @@ -4084,12 +4084,12 @@ jake@^10.8.5: jest-get-type@^29.6.3: version "29.6.3" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" + resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz" integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== jest-worker@^27.4.5: version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" + resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz" integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== dependencies: "@types/node" "*" @@ -4098,24 +4098,24 @@ jest-worker@^27.4.5: js-tokens@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== js-tokens@^9.0.1: version "9.0.1" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-9.0.1.tgz#2ec43964658435296f6761b34e10671c2d9527f4" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.1.tgz" integrity sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ== js-yaml@4.1.0, js-yaml@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== dependencies: argparse "^2.0.1" js-yaml@^3.10.0: version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== dependencies: argparse "^1.0.7" @@ -4123,57 +4123,57 @@ js-yaml@^3.10.0: json-buffer@3.0.1: version "3.0.1" - resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + resolved "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz" integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== json-parse-better-errors@^1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz" integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== json-parse-even-better-errors@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz#2cb2ee33069a78870a0c7e3da560026b89669cf7" + resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz" integrity sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA== json-schema-traverse@^0.4.1: version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== json-schema-traverse@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== json-stringify-safe@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== json5@^2.1.2, json5@^2.2.2: version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== jsonc-parser@3.2.0, jsonc-parser@^3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" + resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz" integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== jsonfile@^6.0.1: version "6.1.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + resolved "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== dependencies: universalify "^2.0.0" @@ -4182,29 +4182,29 @@ jsonfile@^6.0.1: jsonparse@^1.2.0, jsonparse@^1.3.1: version "1.3.1" - resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz" integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== just-extend@^4.0.2: version "4.2.1" - resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.2.1.tgz#ef5e589afb61e5d66b24eca749409a8939a8c744" + resolved "https://registry.npmjs.org/just-extend/-/just-extend-4.2.1.tgz" integrity sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg== keyv@^4.5.3: version "4.5.3" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.3.tgz#00873d2b046df737963157bd04f294ca818c9c25" + resolved "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz" integrity sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug== dependencies: json-buffer "3.0.1" kind-of@^6.0.2, kind-of@^6.0.3: version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== lerna@^7.3.0: version "7.3.0" - resolved "https://registry.yarnpkg.com/lerna/-/lerna-7.3.0.tgz#efecafbdce15694e2f6841256e073a3a2061053e" + resolved "https://registry.npmjs.org/lerna/-/lerna-7.3.0.tgz" integrity sha512-Dt8TH+J+c9+3MhTYcm5OxnNzXb87WG7GPNj3kidjYJjJY7KxIMDNU37qBTYRWA1h3wAeNKBplXVQYUPkGcYgkQ== dependencies: "@lerna/child-process" "7.3.0" @@ -4285,7 +4285,7 @@ lerna@^7.3.0: levn@^0.4.1: version "0.4.1" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== dependencies: prelude-ls "^1.2.1" @@ -4293,7 +4293,7 @@ levn@^0.4.1: libnpmaccess@7.0.2: version "7.0.2" - resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-7.0.2.tgz#7f056c8c933dd9c8ba771fa6493556b53c5aac52" + resolved "https://registry.npmjs.org/libnpmaccess/-/libnpmaccess-7.0.2.tgz" integrity sha512-vHBVMw1JFMTgEk15zRsJuSAg7QtGGHpUSEfnbcRL1/gTBag9iEfJbyjpDmdJmwMhvpoLoNBtdAUCdGnaP32hhw== dependencies: npm-package-arg "^10.1.0" @@ -4301,7 +4301,7 @@ libnpmaccess@7.0.2: libnpmpublish@7.3.0: version "7.3.0" - resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-7.3.0.tgz#2ceb2b36866d75a6cd7b4aa748808169f4d17e37" + resolved "https://registry.npmjs.org/libnpmpublish/-/libnpmpublish-7.3.0.tgz" integrity sha512-fHUxw5VJhZCNSls0KLNEG0mCD2PN1i14gH5elGOgiVnU3VgTcRahagYP2LKI1m0tFCJ+XrAm0zVYyF5RCbXzcg== dependencies: ci-info "^3.6.1" @@ -4315,17 +4315,17 @@ libnpmpublish@7.3.0: lines-and-columns@^1.1.6: version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== lines-and-columns@~2.0.3: version "2.0.3" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-2.0.3.tgz#b2f0badedb556b747020ab8ea7f0373e22efac1b" + resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz" integrity sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w== load-json-file@6.2.0: version "6.2.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-6.2.0.tgz#5c7770b42cafa97074ca2848707c61662f4251a1" + resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-6.2.0.tgz" integrity sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ== dependencies: graceful-fs "^4.1.15" @@ -4335,7 +4335,7 @@ load-json-file@6.2.0: load-json-file@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz" integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== dependencies: graceful-fs "^4.1.2" @@ -4345,12 +4345,12 @@ load-json-file@^4.0.0: loader-runner@^4.3.1: version "4.3.1" - resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.1.tgz#6c76ed29b0ccce9af379208299f07f876de737e3" + resolved "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.1.tgz" integrity sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q== loader-utils@^2.0.0: version "2.0.4" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" + resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz" integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== dependencies: big.js "^5.2.2" @@ -4359,7 +4359,7 @@ loader-utils@^2.0.0: local-pkg@^0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.5.0.tgz#093d25a346bae59a99f80e75f6e9d36d7e8c925c" + resolved "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz" integrity sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg== dependencies: mlly "^1.4.2" @@ -4367,7 +4367,7 @@ local-pkg@^0.5.0: locate-path@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz" integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== dependencies: p-locate "^2.0.0" @@ -4375,66 +4375,66 @@ locate-path@^2.0.0: locate-path@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== dependencies: p-locate "^4.1.0" locate-path@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== dependencies: p-locate "^5.0.0" lodash.escape@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-4.0.1.tgz#c9044690c21e04294beaa517712fded1fa88de98" + resolved "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz" integrity sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw== lodash.forown@^4.4.0: version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.forown/-/lodash.forown-4.4.0.tgz#85115cf04f73ef966eced52511d3893cc46683af" + resolved "https://registry.npmjs.org/lodash.forown/-/lodash.forown-4.4.0.tgz" integrity sha512-xcpca6BCshoe5SFSrQOoV8FBEbNzcBa6QQYmtv48eEFNzdwQLkHkcWSaBlecHhyHb1BUk1xqFdXoiSLJkt/w5w== lodash.get@^4.4.2: version "4.4.2" - resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + resolved "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz" integrity sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ== lodash.ismatch@^4.4.0: version "4.4.0" - resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" + resolved "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz" integrity sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g== lodash.kebabcase@^4.1.1: version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" + resolved "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz" integrity sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g== lodash.merge@^4.6.2: version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== lodash.remove@^4.7.0: version "4.7.0" - resolved "https://registry.yarnpkg.com/lodash.remove/-/lodash.remove-4.7.0.tgz#f31d31e7c39a0690d5074ec0d3627162334ee626" + resolved "https://registry.npmjs.org/lodash.remove/-/lodash.remove-4.7.0.tgz" integrity sha512-GnwkSsEXGXirSxh3YI+jc/qvptE2DV8ZjA4liK0NT1MJ3mNDMFhX3bY+4Wr8onlNItYuPp7/4u19Fi55mvzkTw== lodash.uniq@^4.5.0: version "4.5.0" - resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + resolved "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz" integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== lodash@^4.17.11, lodash@^4.17.21: version "4.17.23" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.23.tgz#f113b0378386103be4f6893388c73d0bde7f2c5a" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz" integrity sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w== log-symbols@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz" integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== dependencies: chalk "^4.1.0" @@ -4442,45 +4442,45 @@ log-symbols@^4.1.0: loupe@^2.3.6: version "2.3.6" - resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.6.tgz#76e4af498103c532d1ecc9be102036a21f787b53" + resolved "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz" integrity sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA== dependencies: get-func-name "^2.0.0" loupe@^2.3.7: version "2.3.7" - resolved "https://registry.yarnpkg.com/loupe/-/loupe-2.3.7.tgz#6e69b7d4db7d3ab436328013d37d1c8c3540c697" + resolved "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz" integrity sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA== dependencies: get-func-name "^2.0.1" lru-cache@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== dependencies: yallist "^4.0.0" lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1: version "7.18.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz" integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== "lru-cache@^9.1.1 || ^10.0.0": version "10.0.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.0.1.tgz#0a3be479df549cca0e5d693ac402ff19537a6b7a" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz" integrity sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g== magic-string@^0.30.5: version "0.30.5" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.5.tgz#1994d980bd1c8835dc6e78db7cbd4ae4f24746f9" + resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz" integrity sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA== dependencies: "@jridgewell/sourcemap-codec" "^1.4.15" magicast@^0.3.2: version "0.3.2" - resolved "https://registry.yarnpkg.com/magicast/-/magicast-0.3.2.tgz#42dcade5573ed8f10f5540f9d04964e21dba9130" + resolved "https://registry.npmjs.org/magicast/-/magicast-0.3.2.tgz" integrity sha512-Fjwkl6a0syt9TFN0JSYpOybxiMCkYNEeOTnOTNRbjphirLakznZXAqrXgj/7GG3D1dvETONNwrBfinvAbpunDg== dependencies: "@babel/parser" "^7.23.3" @@ -4489,14 +4489,14 @@ magicast@^0.3.2: make-dir@4.0.0, make-dir@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" + resolved "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz" integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== dependencies: semver "^7.5.3" make-dir@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + resolved "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== dependencies: pify "^4.0.1" @@ -4504,7 +4504,7 @@ make-dir@^2.1.0: make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.0.3, make-fetch-happen@^11.1.1: version "11.1.1" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz#85ceb98079584a9523d4bf71d32996e7e208549f" + resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz" integrity sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w== dependencies: agentkeepalive "^4.2.1" @@ -4525,27 +4525,27 @@ make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.0.3, map-obj@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz" integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== map-obj@^4.0.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" + resolved "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz" integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== math-intrinsics@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9" + resolved "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz" integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g== media-typer@0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== mem-fs-editor@^9.0.0, mem-fs-editor@^9.7.0: version "9.7.0" - resolved "https://registry.yarnpkg.com/mem-fs-editor/-/mem-fs-editor-9.7.0.tgz#dbb458b8acb885c84013645e93f71aa267a7fdf6" + resolved "https://registry.npmjs.org/mem-fs-editor/-/mem-fs-editor-9.7.0.tgz" integrity sha512-ReB3YD24GNykmu4WeUL/FDIQtkoyGB6zfJv60yfCo3QjKeimNcTqv2FT83bP0ccs6uu+sm5zyoBlspAzigmsdg== dependencies: binaryextensions "^4.16.0" @@ -4561,7 +4561,7 @@ mem-fs-editor@^9.0.0, mem-fs-editor@^9.7.0: meow@^8.1.2: version "8.1.2" - resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" + resolved "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz" integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== dependencies: "@types/minimist" "^1.2.0" @@ -4578,27 +4578,27 @@ meow@^8.1.2: merge-descriptors@1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz#d80319a65f3c7935351e5cfdac8f9318504dbed5" + resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz" integrity sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ== merge-stream@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== methods@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== micromatch@^4.0.0, micromatch@^4.0.4: version "4.0.8" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" + resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz" integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== dependencies: braces "^3.0.3" @@ -4606,81 +4606,81 @@ micromatch@^4.0.0, micromatch@^4.0.4: mime-db@1.52.0: version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== mime-types@^2.1.12, mime-types@^2.1.27, mime-types@~2.1.24, mime-types@~2.1.34: version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" mime@1.6.0: version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== mimic-fn@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== mimic-fn@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" + resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz" integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== min-indent@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" + resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz" integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== minimatch@3.0.5: version "3.0.5" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.5.tgz#4da8f1290ee0f0f8e83d60ca69f8f134068604a3" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.5.tgz" integrity sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw== dependencies: brace-expansion "^1.1.7" minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" minimatch@^5.0.1: version "5.1.6" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz" integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== dependencies: brace-expansion "^2.0.1" minimatch@^7.2.0: version "7.4.6" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-7.4.6.tgz#845d6f254d8f4a5e4fd6baf44d5f10c8448365fb" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz" integrity sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw== dependencies: brace-expansion "^2.0.1" minimatch@^8.0.2: version "8.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-8.0.4.tgz#847c1b25c014d4e9a7f68aaf63dedd668a626229" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz" integrity sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA== dependencies: brace-expansion "^2.0.1" minimatch@^9.0.0, minimatch@^9.0.1: version "9.0.3" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz" integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== dependencies: brace-expansion "^2.0.1" minimist-options@4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" + resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz" integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== dependencies: arrify "^1.0.1" @@ -4689,19 +4689,19 @@ minimist-options@4.1.0: minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6: version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== minipass-collect@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" + resolved "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz" integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== dependencies: minipass "^3.0.0" minipass-fetch@^3.0.0: version "3.0.4" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-3.0.4.tgz#4d4d9b9f34053af6c6e597a64be8e66e42bf45b7" + resolved "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz" integrity sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg== dependencies: minipass "^7.0.3" @@ -4712,14 +4712,14 @@ minipass-fetch@^3.0.0: minipass-flush@^1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" + resolved "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz" integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== dependencies: minipass "^3.0.0" minipass-json-stream@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz#7edbb92588fbfc2ff1db2fc10397acb7b6b44aa7" + resolved "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz" integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg== dependencies: jsonparse "^1.3.1" @@ -4727,43 +4727,43 @@ minipass-json-stream@^1.0.1: minipass-pipeline@^1.2.4: version "1.2.4" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" + resolved "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz" integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== dependencies: minipass "^3.0.0" minipass-sized@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" + resolved "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz" integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== dependencies: minipass "^3.0.0" minipass@^3.0.0, minipass@^3.1.1: version "3.3.6" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" + resolved "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz" integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== dependencies: yallist "^4.0.0" minipass@^4.2.4: version "4.2.8" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.2.8.tgz#f0010f64393ecfc1d1ccb5f582bcaf45f48e1a3a" + resolved "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz" integrity sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ== minipass@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" + resolved "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz" integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== "minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.3: version "7.0.4" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c" + resolved "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz" integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ== minizlib@^2.1.1, minizlib@^2.1.2: version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + resolved "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz" integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== dependencies: minipass "^3.0.0" @@ -4771,12 +4771,12 @@ minizlib@^2.1.1, minizlib@^2.1.2: mkdirp@^1.0.3: version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== mlly@^1.2.0, mlly@^1.4.2: version "1.4.2" - resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.4.2.tgz#7cf406aa319ff6563d25da6b36610a93f2a8007e" + resolved "https://registry.npmjs.org/mlly/-/mlly-1.4.2.tgz" integrity sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg== dependencies: acorn "^8.10.0" @@ -4786,27 +4786,27 @@ mlly@^1.2.0, mlly@^1.4.2: modify-values@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" + resolved "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz" integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== ms@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== ms@2.1.2: version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== ms@2.1.3, ms@^2.0.0: version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== multimatch@5.0.0, multimatch@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-5.0.0.tgz#932b800963cea7a31a033328fa1e0c3a1874dbe6" + resolved "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz" integrity sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA== dependencies: "@types/minimatch" "^3.0.3" @@ -4817,37 +4817,37 @@ multimatch@5.0.0, multimatch@^5.0.0: mute-stream@0.0.8: version "0.0.8" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz" integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== mute-stream@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-1.0.0.tgz#e31bd9fe62f0aed23520aa4324ea6671531e013e" + resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz" integrity sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA== nanoid@^3.3.8: version "3.3.8" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" + resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz" integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== natural-compare@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== negotiator@0.6.3, negotiator@^0.6.3: version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== neo-async@^2.6.2: version "2.6.2" - resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== nise@^5.1.2: version "5.1.4" - resolved "https://registry.yarnpkg.com/nise/-/nise-5.1.4.tgz#491ce7e7307d4ec546f5a659b2efe94a18b4bbc0" + resolved "https://registry.npmjs.org/nise/-/nise-5.1.4.tgz" integrity sha512-8+Ib8rRJ4L0o3kfmyVCL7gzrohyDe0cMFTBa2d364yIrEGMEoetznKJx899YxjybU6bL9SQkYPSBBs1gyYs8Xg== dependencies: "@sinonjs/commons" "^2.0.0" @@ -4858,31 +4858,31 @@ nise@^5.1.2: node-addon-api@^3.2.1: version "3.2.1" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" + resolved "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz" integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== node-fetch@2.6.7: version "2.6.7" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz" integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== dependencies: whatwg-url "^5.0.0" node-fetch@^2.6.7: version "2.7.0" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" + resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz" integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== dependencies: whatwg-url "^5.0.0" node-gyp-build@^4.3.0: version "4.6.1" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.6.1.tgz#24b6d075e5e391b8d5539d98c7fc5c210cac8a3e" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.1.tgz" integrity sha512-24vnklJmyRS8ViBNI8KbtK/r/DmXQMRiOMXTNz2nrTnAYUwjmEEbnnpB/+kt+yWRv73bPsSPRFddrcIbAxSiMQ== node-gyp@^9.0.0: version "9.4.0" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.4.0.tgz#2a7a91c7cba4eccfd95e949369f27c9ba704f369" + resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz" integrity sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg== dependencies: env-paths "^2.2.0" @@ -4899,24 +4899,24 @@ node-gyp@^9.0.0: node-machine-id@1.1.12: version "1.1.12" - resolved "https://registry.yarnpkg.com/node-machine-id/-/node-machine-id-1.1.12.tgz#37904eee1e59b320bb9c5d6c0a59f3b469cb6267" + resolved "https://registry.npmjs.org/node-machine-id/-/node-machine-id-1.1.12.tgz" integrity sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ== node-releases@^2.0.27: version "2.0.27" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.27.tgz#eedca519205cf20f650f61d56b070db111231e4e" + resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz" integrity sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA== nopt@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-6.0.0.tgz#245801d8ebf409c6df22ab9d95b65e1309cdb16d" + resolved "https://registry.npmjs.org/nopt/-/nopt-6.0.0.tgz" integrity sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g== dependencies: abbrev "^1.0.0" normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== dependencies: hosted-git-info "^2.1.4" @@ -4926,7 +4926,7 @@ normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: normalize-package-data@^3.0.0, normalize-package-data@^3.0.3: version "3.0.3" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz" integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== dependencies: hosted-git-info "^4.0.1" @@ -4936,7 +4936,7 @@ normalize-package-data@^3.0.0, normalize-package-data@^3.0.3: normalize-package-data@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-5.0.0.tgz#abcb8d7e724c40d88462b84982f7cbf6859b4588" + resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz" integrity sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q== dependencies: hosted-git-info "^6.0.0" @@ -4946,43 +4946,43 @@ normalize-package-data@^5.0.0: normalize-path@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== npm-bundled@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz#944c78789bd739035b70baa2ca5cc32b8d860bc1" + resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz" integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== dependencies: npm-normalize-package-bin "^1.0.1" npm-bundled@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-3.0.0.tgz#7e8e2f8bb26b794265028491be60321a25a39db7" + resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz" integrity sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ== dependencies: npm-normalize-package-bin "^3.0.0" npm-install-checks@^6.0.0: version "6.2.0" - resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-6.2.0.tgz#fae55b9967b03ac309695ec96629492d5cedf371" + resolved "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.2.0.tgz" integrity sha512-744wat5wAAHsxa4590mWO0tJ8PKxR8ORZsH9wGpQc3nWTzozMAgBN/XyqYw7mg3yqLM8dLwEnwSfKMmXAjF69g== dependencies: semver "^7.1.1" npm-normalize-package-bin@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" + resolved "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz" integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== npm-normalize-package-bin@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832" + resolved "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz" integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ== npm-package-arg@8.1.1: version "8.1.1" - resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.1.tgz#00ebf16ac395c63318e67ce66780a06db6df1b04" + resolved "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-8.1.1.tgz" integrity sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg== dependencies: hosted-git-info "^3.0.6" @@ -4991,7 +4991,7 @@ npm-package-arg@8.1.1: npm-package-arg@^10.0.0, npm-package-arg@^10.1.0: version "10.1.0" - resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-10.1.0.tgz#827d1260a683806685d17193073cc152d3c7e9b1" + resolved "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz" integrity sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA== dependencies: hosted-git-info "^6.0.0" @@ -5001,7 +5001,7 @@ npm-package-arg@^10.0.0, npm-package-arg@^10.1.0: npm-packlist@5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-5.1.1.tgz#79bcaf22a26b6c30aa4dd66b976d69cc286800e0" + resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.1.1.tgz" integrity sha512-UfpSvQ5YKwctmodvPPkK6Fwk603aoVsf8AEbmVKAEECrfvL8SSe1A2YIwrJ6xmTHAITKPwwZsWo7WwEbNk0kxw== dependencies: glob "^8.0.1" @@ -5011,14 +5011,14 @@ npm-packlist@5.1.1: npm-packlist@^7.0.0: version "7.0.4" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-7.0.4.tgz#033bf74110eb74daf2910dc75144411999c5ff32" + resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-7.0.4.tgz" integrity sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q== dependencies: ignore-walk "^6.0.0" npm-pick-manifest@^8.0.0: version "8.0.2" - resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-8.0.2.tgz#2159778d9c7360420c925c1a2287b5a884c713aa" + resolved "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.2.tgz" integrity sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg== dependencies: npm-install-checks "^6.0.0" @@ -5028,7 +5028,7 @@ npm-pick-manifest@^8.0.0: npm-registry-fetch@^14.0.0, npm-registry-fetch@^14.0.3, npm-registry-fetch@^14.0.5: version "14.0.5" - resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz#fe7169957ba4986a4853a650278ee02e568d115d" + resolved "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-14.0.5.tgz" integrity sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA== dependencies: make-fetch-happen "^11.0.0" @@ -5041,21 +5041,21 @@ npm-registry-fetch@^14.0.0, npm-registry-fetch@^14.0.3, npm-registry-fetch@^14.0 npm-run-path@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== dependencies: path-key "^3.0.0" npm-run-path@^5.1.0: version "5.1.0" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" + resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz" integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== dependencies: path-key "^4.0.0" npmlog@^6.0.0, npmlog@^6.0.2: version "6.0.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830" + resolved "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz" integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== dependencies: are-we-there-yet "^3.0.0" @@ -5065,7 +5065,7 @@ npmlog@^6.0.0, npmlog@^6.0.2: nx@16.9.1, "nx@>=16.5.1 < 17": version "16.9.1" - resolved "https://registry.yarnpkg.com/nx/-/nx-16.9.1.tgz#eac231c4cdfd6b3f7088d57289e215fbd539b7a1" + resolved "https://registry.npmjs.org/nx/-/nx-16.9.1.tgz" integrity sha512-h6jp0fXzEsBO3pwCNS2JbfzJZRgE2DnIo7Sj1/1oBo82o44jNqsPo3nMTj95qhcveJ0qBiKIh+Xw/fghXiRiSQ== dependencies: "@nrwl/tao" "16.9.1" @@ -5118,50 +5118,50 @@ nx@16.9.1, "nx@>=16.5.1 < 17": object-assign@^4.1.0: version "4.1.1" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== object-inspect@^1.13.1: version "1.13.2" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz" integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== object-inspect@^1.9.0: version "1.12.3" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz" integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== on-finished@2.4.1: version "2.4.1" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== dependencies: ee-first "1.1.1" once@^1.3.0, once@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" onetime@^5.1.0, onetime@^5.1.2: version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" onetime@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" + resolved "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz" integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== dependencies: mimic-fn "^4.0.0" open@^8.4.0: version "8.4.2" - resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" + resolved "https://registry.npmjs.org/open/-/open-8.4.2.tgz" integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== dependencies: define-lazy-prop "^2.0.0" @@ -5170,7 +5170,7 @@ open@^8.4.0: optionator@^0.9.3: version "0.9.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz" integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== dependencies: "@aashutoshrathi/word-wrap" "^1.2.3" @@ -5182,7 +5182,7 @@ optionator@^0.9.3: ora@^5.4.1: version "5.4.1" - resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + resolved "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz" integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== dependencies: bl "^4.1.0" @@ -5197,83 +5197,83 @@ ora@^5.4.1: os-tmpdir@~1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz" integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== p-finally@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== p-limit@^1.1.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz" integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== dependencies: p-try "^1.0.0" p-limit@^2.2.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== dependencies: p-try "^2.0.0" p-limit@^3.0.2: version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== dependencies: yocto-queue "^0.1.0" p-limit@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-5.0.0.tgz#6946d5b7140b649b7a33a027d89b4c625b3a5985" + resolved "https://registry.npmjs.org/p-limit/-/p-limit-5.0.0.tgz" integrity sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ== dependencies: yocto-queue "^1.0.0" p-locate@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz" integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== dependencies: p-limit "^1.1.0" p-locate@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== dependencies: p-limit "^2.2.0" p-locate@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== dependencies: p-limit "^3.0.2" p-map-series@2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-2.1.0.tgz#7560d4c452d9da0c07e692fdbfe6e2c81a2a91f2" + resolved "https://registry.npmjs.org/p-map-series/-/p-map-series-2.1.0.tgz" integrity sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q== p-map@4.0.0, p-map@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + resolved "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== dependencies: aggregate-error "^3.0.0" p-pipe@3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/p-pipe/-/p-pipe-3.1.0.tgz#48b57c922aa2e1af6a6404cb7c6bf0eb9cc8e60e" + resolved "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz" integrity sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw== p-queue@6.6.2: version "6.6.2" - resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426" + resolved "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz" integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== dependencies: eventemitter3 "^4.0.4" @@ -5281,36 +5281,36 @@ p-queue@6.6.2: p-reduce@2.1.0, p-reduce@^2.0.0, p-reduce@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-2.1.0.tgz#09408da49507c6c274faa31f28df334bc712b64a" + resolved "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz" integrity sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw== p-timeout@^3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" + resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz" integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== dependencies: p-finally "^1.0.0" p-try@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz" integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== p-try@^2.0.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== p-waterfall@2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/p-waterfall/-/p-waterfall-2.1.1.tgz#63153a774f472ccdc4eb281cdb2967fcf158b2ee" + resolved "https://registry.npmjs.org/p-waterfall/-/p-waterfall-2.1.1.tgz" integrity sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw== dependencies: p-reduce "^2.0.0" pacote@^15.2.0: version "15.2.0" - resolved "https://registry.yarnpkg.com/pacote/-/pacote-15.2.0.tgz#0f0dfcc3e60c7b39121b2ac612bf8596e95344d3" + resolved "https://registry.npmjs.org/pacote/-/pacote-15.2.0.tgz" integrity sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA== dependencies: "@npmcli/git" "^4.0.0" @@ -5334,14 +5334,14 @@ pacote@^15.2.0: parent-module@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== dependencies: callsites "^3.0.0" parse-json@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz" integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== dependencies: error-ex "^1.3.1" @@ -5349,7 +5349,7 @@ parse-json@^4.0.0: parse-json@^5.0.0, parse-json@^5.2.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== dependencies: "@babel/code-frame" "^7.0.0" @@ -5359,63 +5359,63 @@ parse-json@^5.0.0, parse-json@^5.2.0: parse-path@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.0.0.tgz#605a2d58d0a749c8594405d8cc3a2bf76d16099b" + resolved "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz" integrity sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog== dependencies: protocols "^2.0.0" parse-sel@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/parse-sel/-/parse-sel-1.0.0.tgz#b9300d2bb946a06c22c98e208e47b2088690cbdd" + resolved "https://registry.npmjs.org/parse-sel/-/parse-sel-1.0.0.tgz" integrity sha512-GLAtaUf/vkdsPQwFKKBR1LHsw4Sm5YVDSbzcPQqmq3N/qlI8gsxUMhSV8NRHj677eeJUV1YpI8OeALaUL5yxUQ== dependencies: browser-split "0.0.1" parse-url@^8.1.0: version "8.1.0" - resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-8.1.0.tgz#972e0827ed4b57fc85f0ea6b0d839f0d8a57a57d" + resolved "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz" integrity sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w== dependencies: parse-path "^7.0.0" parseurl@~1.3.3: version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== path-exists@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== path-exists@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== path-key@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" + resolved "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz" integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== path-parse@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== path-scurry@^1.10.1, path-scurry@^1.6.1: version "1.10.1" - resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" + resolved "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz" integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ== dependencies: lru-cache "^9.1.1 || ^10.0.0" @@ -5423,78 +5423,78 @@ path-scurry@^1.10.1, path-scurry@^1.6.1: path-to-regexp@0.1.10: version "0.1.10" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.10.tgz#67e9108c5c0551b9e5326064387de4763c4d5f8b" + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz" integrity sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w== path-to-regexp@^1.7.0: version "1.8.0" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a" + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz" integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== dependencies: isarray "0.0.1" path-type@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz" integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== dependencies: pify "^3.0.0" path-type@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== pathe@^1.1.0, pathe@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.1.tgz#1dd31d382b974ba69809adc9a7a347e65d84829a" + resolved "https://registry.npmjs.org/pathe/-/pathe-1.1.1.tgz" integrity sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q== pathval@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" + resolved "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz" integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== picocolors@^1.0.0, picocolors@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" + resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== picomatch@^2.3.1: version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== pify@5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f" + resolved "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz" integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== pify@^2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== pify@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz" integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== pify@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== pkg-dir@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== dependencies: find-up "^4.0.0" pkg-types@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.0.3.tgz#988b42ab19254c01614d13f4f65a2cfc7880f868" + resolved "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.3.tgz" integrity sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A== dependencies: jsonc-parser "^3.2.0" @@ -5503,12 +5503,12 @@ pkg-types@^1.0.3: postcss-modules-extract-imports@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" + resolved "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz" integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== postcss-modules-local-by-default@^4.0.3: version "4.0.3" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524" + resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz" integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA== dependencies: icss-utils "^5.0.0" @@ -5517,21 +5517,21 @@ postcss-modules-local-by-default@^4.0.3: postcss-modules-scope@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" + resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz" integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== dependencies: postcss-selector-parser "^6.0.4" postcss-modules-values@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" + resolved "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz" integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== dependencies: icss-utils "^5.0.0" postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: version "6.0.13" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" + resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz" integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== dependencies: cssesc "^3.0.0" @@ -5539,12 +5539,12 @@ postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== postcss@^8.4.21, postcss@^8.4.43: version "8.5.1" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.1.tgz#e2272a1f8a807fafa413218245630b5db10a3214" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz" integrity sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ== dependencies: nanoid "^3.3.8" @@ -5553,12 +5553,12 @@ postcss@^8.4.21, postcss@^8.4.43: prelude-ls@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== pretty-format@^29.7.0: version "29.7.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" + resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz" integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== dependencies: "@jest/schemas" "^29.6.3" @@ -5567,22 +5567,22 @@ pretty-format@^29.7.0: proc-log@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-3.0.0.tgz#fb05ef83ccd64fd7b20bbe9c8c1070fc08338dd8" + resolved "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz" integrity sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A== process-nextick-args@~2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== promise-inflight@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + resolved "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz" integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== promise-retry@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" + resolved "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz" integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== dependencies: err-code "^2.0.2" @@ -5590,19 +5590,19 @@ promise-retry@^2.0.1: promzard@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/promzard/-/promzard-1.0.0.tgz#3246f8e6c9895a77c0549cefb65828ac0f6c006b" + resolved "https://registry.npmjs.org/promzard/-/promzard-1.0.0.tgz" integrity sha512-KQVDEubSUHGSt5xLakaToDFrSoZhStB8dXLzk2xvwR67gJktrHFvpR63oZgHyK19WKbHFLXJqCPXdVR3aBP8Ig== dependencies: read "^2.0.0" protocols@^2.0.0, protocols@^2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.1.tgz#8f155da3fc0f32644e83c5782c8e8212ccf70a86" + resolved "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz" integrity sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q== proxy-addr@~2.0.7: version "2.0.7" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz" integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== dependencies: forwarded "0.2.0" @@ -5610,53 +5610,53 @@ proxy-addr@~2.0.7: proxy-from-env@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + resolved "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz" integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== punycode@^2.1.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz" integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== qs@6.11.0: version "6.11.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + resolved "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz" integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== dependencies: side-channel "^1.0.4" qs@6.13.0: version "6.13.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.0.tgz#6ca3bd58439f7e245655798997787b0d88a51906" + resolved "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz" integrity sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg== dependencies: side-channel "^1.0.6" queue-microtask@^1.2.2: version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== quick-lru@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" + resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz" integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== randombytes@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + resolved "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz" integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== dependencies: safe-buffer "^5.1.0" range-parser@~1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== raw-body@2.5.2: version "2.5.2" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" + resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz" integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== dependencies: bytes "3.1.2" @@ -5666,17 +5666,17 @@ raw-body@2.5.2: react-is@^18.0.0: version "18.2.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" + resolved "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz" integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== read-cmd-shim@4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz#640a08b473a49043e394ae0c7a34dd822c73b9bb" + resolved "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz" integrity sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q== read-package-json-fast@^3.0.0: version "3.0.2" - resolved "https://registry.yarnpkg.com/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz#394908a9725dc7a5f14e70c8e7556dff1d2b1049" + resolved "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz" integrity sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw== dependencies: json-parse-even-better-errors "^3.0.0" @@ -5684,7 +5684,7 @@ read-package-json-fast@^3.0.0: read-package-json@6.0.4, read-package-json@^6.0.0: version "6.0.4" - resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-6.0.4.tgz#90318824ec456c287437ea79595f4c2854708836" + resolved "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz" integrity sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw== dependencies: glob "^10.2.2" @@ -5694,7 +5694,7 @@ read-package-json@6.0.4, read-package-json@^6.0.0: read-pkg-up@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" + resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz" integrity sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw== dependencies: find-up "^2.0.0" @@ -5702,7 +5702,7 @@ read-pkg-up@^3.0.0: read-pkg-up@^7.0.1: version "7.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz" integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== dependencies: find-up "^4.1.0" @@ -5711,7 +5711,7 @@ read-pkg-up@^7.0.1: read-pkg@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz" integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== dependencies: load-json-file "^4.0.0" @@ -5720,7 +5720,7 @@ read-pkg@^3.0.0: read-pkg@^5.2.0: version "5.2.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz" integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== dependencies: "@types/normalize-package-data" "^2.4.0" @@ -5730,14 +5730,14 @@ read-pkg@^5.2.0: read@^2.0.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/read/-/read-2.1.0.tgz#69409372c54fe3381092bc363a00650b6ac37218" + resolved "https://registry.npmjs.org/read/-/read-2.1.0.tgz" integrity sha512-bvxi1QLJHcaywCAEsAk4DG3nVoqiY2Csps3qzWalhj5hFqRn1d/OixkFXtLO1PrgHUcAP0FNaSY/5GYNfENFFQ== dependencies: mute-stream "~1.0.0" readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== dependencies: inherits "^2.0.3" @@ -5746,7 +5746,7 @@ readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.1.1, readable readable-stream@~2.3.6: version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz" integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== dependencies: core-util-is "~1.0.0" @@ -5759,21 +5759,21 @@ readable-stream@~2.3.6: rechoir@^0.6.2: version "0.6.2" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz" integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== dependencies: resolve "^1.1.6" rechoir@^0.8.0: version "0.8.0" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22" + resolved "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz" integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ== dependencies: resolve "^1.20.0" redent@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" + resolved "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz" integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== dependencies: indent-string "^4.0.0" @@ -5781,44 +5781,44 @@ redent@^3.0.0: reflect-metadata@~0.1.14: version "0.1.14" - resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.14.tgz#24cf721fe60677146bb77eeb0e1f9dece3d65859" + resolved "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.14.tgz" integrity sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A== regenerator-runtime@^0.14.0: version "0.14.0" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" + resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz" integrity sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA== require-directory@^2.1.1: version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== require-from-string@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== resolve-cwd@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + resolved "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== dependencies: resolve-from "^5.0.0" resolve-from@5.0.0, resolve-from@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== resolve-from@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== resolve@^1.1.6, resolve@^1.10.0, resolve@^1.20.0: version "1.22.6" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.6.tgz#dd209739eca3aef739c626fea1b4f3c506195362" + resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.6.tgz" integrity sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw== dependencies: is-core-module "^2.13.0" @@ -5827,7 +5827,7 @@ resolve@^1.1.6, resolve@^1.10.0, resolve@^1.20.0: restore-cursor@^3.1.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + resolved "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz" integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== dependencies: onetime "^5.1.0" @@ -5835,31 +5835,31 @@ restore-cursor@^3.1.0: retry@^0.12.0: version "0.12.0" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + resolved "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz" integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== reusify@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== dependencies: glob "^7.1.3" rimraf@^4.4.1: version "4.4.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-4.4.1.tgz#bd33364f67021c5b79e93d7f4fa0568c7c21b755" + resolved "https://registry.npmjs.org/rimraf/-/rimraf-4.4.1.tgz" integrity sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og== dependencies: glob "^9.2.0" rollup@^4.20.0: version "4.31.0" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.31.0.tgz#b84af969a0292cb047dce2c0ec5413a9457597a4" + resolved "https://registry.npmjs.org/rollup/-/rollup-4.31.0.tgz" integrity sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw== dependencies: "@types/estree" "1.0.6" @@ -5887,48 +5887,48 @@ rollup@^4.20.0: run-async@^2.0.0, run-async@^2.4.0: version "2.4.1" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + resolved "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz" integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== run-parallel@^1.1.9: version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== dependencies: queue-microtask "^1.2.2" rxjs@^6.4.0: version "6.6.7" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz" integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== dependencies: tslib "^1.9.0" rxjs@^7.2.0, rxjs@^7.5.5, rxjs@^7.8.1: version "7.8.1" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" + resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz" integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== dependencies: tslib "^2.1.0" safe-buffer@5.2.1, safe-buffer@^5.1.0, safe-buffer@~5.2.0: version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== schema-utils@^3.0.0: version "3.3.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" + resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz" integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== dependencies: "@types/json-schema" "^7.0.8" @@ -5937,7 +5937,7 @@ schema-utils@^3.0.0: schema-utils@^4.3.0, schema-utils@^4.3.3: version "4.3.3" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.3.3.tgz#5b1850912fa31df90716963d45d9121fdfc09f46" + resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz" integrity sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA== dependencies: "@types/json-schema" "^7.0.9" @@ -5947,26 +5947,26 @@ schema-utils@^4.3.0, schema-utils@^4.3.3: "semver@2 || 3 || 4 || 5", semver@^5.6.0: version "5.7.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + resolved "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz" integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== semver@7.5.3: version "7.5.3" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.3.tgz#161ce8c2c6b4b3bdca6caadc9fa3317a4c4fe88e" + resolved "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz" integrity sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ== dependencies: lru-cache "^6.0.0" semver@^7.0.0, semver@^7.1.1, semver@^7.2.1, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8, semver@^7.5.3, semver@^7.5.4: version "7.5.4" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + resolved "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" send@0.18.0: version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + resolved "https://registry.npmjs.org/send/-/send-0.18.0.tgz" integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== dependencies: debug "2.6.9" @@ -5985,7 +5985,7 @@ send@0.18.0: send@0.19.0: version "0.19.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.19.0.tgz#bbc5a388c8ea6c048967049dbeac0e4a3f09d7f8" + resolved "https://registry.npmjs.org/send/-/send-0.19.0.tgz" integrity sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw== dependencies: debug "2.6.9" @@ -6004,14 +6004,14 @@ send@0.19.0: serialize-javascript@^6.0.2: version "6.0.2" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2" + resolved "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz" integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== dependencies: randombytes "^2.1.0" serve-static@1.16.0: version "1.16.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.16.0.tgz#2bf4ed49f8af311b519c46f272bf6ac3baf38a92" + resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.16.0.tgz" integrity sha512-pDLK8zwl2eKaYrs8mrPZBJua4hMplRWJ1tIFksVC3FtBEBnl8dxgeHtsaMS8DhS9i4fLObaon6ABoc4/hQGdPA== dependencies: encodeurl "~1.0.2" @@ -6021,12 +6021,12 @@ serve-static@1.16.0: set-blocking@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== set-function-length@^1.2.1: version "1.2.2" - resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== dependencies: define-data-property "^1.1.4" @@ -6038,36 +6038,36 @@ set-function-length@^1.2.1: setprototypeof@1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz" integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== shallow-clone@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + resolved "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz" integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== dependencies: kind-of "^6.0.2" shebang-command@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== dependencies: shebang-regex "^3.0.0" shebang-regex@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== shell-quote@^1.8.1: version "1.8.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" + resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz" integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== shelljs@^0.8.5: version "0.8.5" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" + resolved "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz" integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== dependencies: glob "^7.0.0" @@ -6076,7 +6076,7 @@ shelljs@^0.8.5: shx@^0.3.4: version "0.3.4" - resolved "https://registry.yarnpkg.com/shx/-/shx-0.3.4.tgz#74289230b4b663979167f94e1935901406e40f02" + resolved "https://registry.npmjs.org/shx/-/shx-0.3.4.tgz" integrity sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g== dependencies: minimist "^1.2.3" @@ -6084,7 +6084,7 @@ shx@^0.3.4: side-channel@^1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== dependencies: call-bind "^1.0.0" @@ -6093,7 +6093,7 @@ side-channel@^1.0.4: side-channel@^1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz" integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== dependencies: call-bind "^1.0.7" @@ -6103,22 +6103,22 @@ side-channel@^1.0.6: siginfo@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/siginfo/-/siginfo-2.0.0.tgz#32e76c70b79724e3bb567cb9d543eb858ccfaf30" + resolved "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz" integrity sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g== signal-exit@3.0.7, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== signal-exit@^4.0.1, signal-exit@^4.1.0: version "4.1.0" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz" integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== sigstore@^1.3.0, sigstore@^1.4.0: version "1.9.0" - resolved "https://registry.yarnpkg.com/sigstore/-/sigstore-1.9.0.tgz#1e7ad8933aa99b75c6898ddd0eeebc3eb0d59875" + resolved "https://registry.npmjs.org/sigstore/-/sigstore-1.9.0.tgz" integrity sha512-0Zjz0oe37d08VeOtBIuB6cRriqXse2e8w+7yIy2XSXjshRKxbc2KkhXjL229jXSxEm7UbcjS76wcJDGQddVI9A== dependencies: "@sigstore/bundle" "^1.1.0" @@ -6129,7 +6129,7 @@ sigstore@^1.3.0, sigstore@^1.4.0: sinon@^14.0.2: version "14.0.2" - resolved "https://registry.yarnpkg.com/sinon/-/sinon-14.0.2.tgz#585a81a3c7b22cf950762ac4e7c28eb8b151c46f" + resolved "https://registry.npmjs.org/sinon/-/sinon-14.0.2.tgz" integrity sha512-PDpV0ZI3ZCS3pEqx0vpNp6kzPhHrLx72wA0G+ZLaaJjLIYeE0n8INlgaohKuGy7hP0as5tbUd23QWu5U233t+w== dependencies: "@sinonjs/commons" "^2.0.0" @@ -6141,17 +6141,17 @@ sinon@^14.0.2: slash@3.0.0, slash@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== smart-buffer@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" + resolved "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz" integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== snabbdom-to-html@^7.1.0: version "7.1.0" - resolved "https://registry.yarnpkg.com/snabbdom-to-html/-/snabbdom-to-html-7.1.0.tgz#b81f0c6de1957819c41da247bb038d6eaa5b13e3" + resolved "https://registry.npmjs.org/snabbdom-to-html/-/snabbdom-to-html-7.1.0.tgz" integrity sha512-R/Rc/5duxWvV4w/B3JI/lt1jXb96pIVV9Xxwqvne259cNuDRXYppuBMtoUGdda0JGhMjNmvc1z+G9ch/PQx+kg== dependencies: lodash.escape "^4.0.1" @@ -6164,12 +6164,12 @@ snabbdom-to-html@^7.1.0: snabbdom@~3.5.1: version "3.5.1" - resolved "https://registry.yarnpkg.com/snabbdom/-/snabbdom-3.5.1.tgz#25f80ef15b194baea703d9d5441892e369de18e1" + resolved "https://registry.npmjs.org/snabbdom/-/snabbdom-3.5.1.tgz" integrity sha512-wHMNIOjkm/YNE5EM3RCbr/+DVgPg6AqQAX1eOxO46zYNvCXjKP5Y865tqQj3EXnaMBjkxmQA5jFuDpDK/dbfiA== socks-proxy-agent@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz#dc069ecf34436621acb41e3efa66ca1b5fed15b6" + resolved "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz" integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== dependencies: agent-base "^6.0.2" @@ -6178,7 +6178,7 @@ socks-proxy-agent@^7.0.0: socks@^2.6.2: version "2.7.1" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" + resolved "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz" integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== dependencies: ip "^2.0.0" @@ -6186,31 +6186,31 @@ socks@^2.6.2: sort-keys@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" + resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz" integrity sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg== dependencies: is-plain-obj "^1.0.0" sort-keys@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-4.2.0.tgz#6b7638cee42c506fff8c1cecde7376d21315be18" + resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-4.2.0.tgz" integrity sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg== dependencies: is-plain-obj "^2.0.0" source-map-js@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== source-map-js@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz" integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== source-map-loader@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-4.0.1.tgz#72f00d05f5d1f90f80974eda781cbd7107c125f2" + resolved "https://registry.npmjs.org/source-map-loader/-/source-map-loader-4.0.1.tgz" integrity sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA== dependencies: abab "^2.0.6" @@ -6219,7 +6219,7 @@ source-map-loader@^4.0.1: source-map-support@~0.5.20: version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz" integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== dependencies: buffer-from "^1.0.0" @@ -6227,17 +6227,17 @@ source-map-support@~0.5.20: source-map@^0.6.0, source-map@^0.6.1: version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== spawn-command@0.0.2: version "0.0.2" - resolved "https://registry.yarnpkg.com/spawn-command/-/spawn-command-0.0.2.tgz#9544e1a43ca045f8531aac1a48cb29bdae62338e" + resolved "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz" integrity sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ== spdx-correct@^3.0.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" + resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz" integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== dependencies: spdx-expression-parse "^3.0.0" @@ -6245,12 +6245,12 @@ spdx-correct@^3.0.0: spdx-exceptions@^2.1.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz" integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== spdx-expression-parse@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz" integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== dependencies: spdx-exceptions "^2.1.0" @@ -6258,60 +6258,60 @@ spdx-expression-parse@^3.0.0: spdx-license-ids@^3.0.0: version "3.0.15" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz#142460aabaca062bc7cd4cc87b7d50725ed6a4ba" + resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz" integrity sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ== split2@^3.2.2: version "3.2.2" - resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" + resolved "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz" integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== dependencies: readable-stream "^3.0.0" split@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" + resolved "https://registry.npmjs.org/split/-/split-1.0.1.tgz" integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== dependencies: through "2" sprintf-js@~1.0.2: version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== ssri@^10.0.0, ssri@^10.0.1: version "10.0.5" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-10.0.5.tgz#e49efcd6e36385196cb515d3a2ad6c3f0265ef8c" + resolved "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz" integrity sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A== dependencies: minipass "^7.0.3" ssri@^9.0.1: version "9.0.1" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057" + resolved "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz" integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== dependencies: minipass "^3.1.1" stackback@0.0.2: version "0.0.2" - resolved "https://registry.yarnpkg.com/stackback/-/stackback-0.0.2.tgz#1ac8a0d9483848d1695e418b6d031a3c3ce68e3b" + resolved "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz" integrity sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw== statuses@2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== std-env@^3.5.0: version "3.6.0" - resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.6.0.tgz#94807562bddc68fa90f2e02c5fd5b6865bb4e98e" + resolved "https://registry.npmjs.org/std-env/-/std-env-3.6.0.tgz" integrity sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg== "string-width-cjs@npm:string-width@^4.2.0": version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" @@ -6320,7 +6320,7 @@ std-env@^3.5.0: "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== dependencies: emoji-regex "^8.0.0" @@ -6329,7 +6329,7 @@ std-env@^3.5.0: string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + resolved "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz" integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== dependencies: eastasianwidth "^0.2.0" @@ -6338,81 +6338,81 @@ string-width@^5.0.1, string-width@^5.1.2: string_decoder@^1.1.1: version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== dependencies: safe-buffer "~5.2.0" string_decoder@~1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: safe-buffer "~5.1.0" "strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== dependencies: ansi-regex "^5.0.1" strip-ansi@^7.0.1: version "7.1.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz" integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== dependencies: ansi-regex "^6.0.1" strip-bom@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== strip-bom@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz" integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== strip-final-newline@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== strip-final-newline@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" + resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz" integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== strip-indent@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" + resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz" integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== dependencies: min-indent "^1.0.0" strip-json-comments@^3.1.1: version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== strip-literal@^2.0.0: version "2.1.1" - resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-2.1.1.tgz#26906e65f606d49f748454a08084e94190c2e5ad" + resolved "https://registry.npmjs.org/strip-literal/-/strip-literal-2.1.1.tgz" integrity sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q== dependencies: js-tokens "^9.0.1" strong-log-transformer@2.1.0, strong-log-transformer@^2.1.0: version "2.1.0" - resolved "https://registry.yarnpkg.com/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz#0f5ed78d325e0421ac6f90f7f10e691d6ae3ae10" + resolved "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz" integrity sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA== dependencies: duplexer "^0.1.1" @@ -6421,43 +6421,43 @@ strong-log-transformer@2.1.0, strong-log-transformer@^2.1.0: style-loader@^3.3.3: version "3.3.3" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.3.tgz#bba8daac19930169c0c9c96706749a597ae3acff" + resolved "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz" integrity sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw== supports-color@^5.3.0: version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== dependencies: has-flag "^3.0.0" supports-color@^7.1.0, supports-color@^7.2.0: version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" supports-color@^8.0.0, supports-color@^8.1.1: version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz" integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== dependencies: has-flag "^4.0.0" supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== tapable@^2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz#7e3ea6d5ca31ba8e078b560f0d83ce9a14aa8be6" + resolved "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz" integrity sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg== tar-stream@~2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + resolved "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz" integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== dependencies: bl "^4.0.3" @@ -6468,7 +6468,7 @@ tar-stream@~2.2.0: tar@6.1.11: version "6.1.11" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" + resolved "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz" integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== dependencies: chownr "^2.0.0" @@ -6480,7 +6480,7 @@ tar@6.1.11: tar@^6.1.11, tar@^6.1.2: version "6.2.0" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.0.tgz#b14ce49a79cb1cd23bc9b016302dea5474493f73" + resolved "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz" integrity sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ== dependencies: chownr "^2.0.0" @@ -6492,17 +6492,17 @@ tar@^6.1.11, tar@^6.1.2: temp-dir@1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" + resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz" integrity sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ== temp-dir@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-3.0.0.tgz#7f147b42ee41234cc6ba3138cd8e8aa2302acffa" + resolved "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz" integrity sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw== terser-webpack-plugin@^5.3.16: version "5.3.16" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.16.tgz#741e448cc3f93d8026ebe4f7ef9e4afacfd56330" + resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.16.tgz" integrity sha512-h9oBFCWrq78NyWWVcSwZarJkZ01c2AyGrzs1crmHZO3QUg9D61Wu4NPjBy69n7JqylFF5y+CsUZYmYEIZ3mR+Q== dependencies: "@jridgewell/trace-mapping" "^0.3.25" @@ -6513,7 +6513,7 @@ terser-webpack-plugin@^5.3.16: terser@^5.31.1: version "5.46.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.46.0.tgz#1b81e560d584bbdd74a8ede87b4d9477b0ff9695" + resolved "https://registry.npmjs.org/terser/-/terser-5.46.0.tgz" integrity sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg== dependencies: "@jridgewell/source-map" "^0.3.3" @@ -6523,7 +6523,7 @@ terser@^5.31.1: test-exclude@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz" integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== dependencies: "@istanbuljs/schema" "^0.1.2" @@ -6532,22 +6532,22 @@ test-exclude@^6.0.0: text-extensions@^1.0.0: version "1.9.0" - resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" + resolved "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz" integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== text-table@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== textextensions@^5.13.0: version "5.16.0" - resolved "https://registry.yarnpkg.com/textextensions/-/textextensions-5.16.0.tgz#57dd60c305019bba321e848b1fdf0f99bfa59ec1" + resolved "https://registry.npmjs.org/textextensions/-/textextensions-5.16.0.tgz" integrity sha512-7D/r3s6uPZyU//MCYrX6I14nzauDwJ5CxazouuRGNuvSCihW87ufN6VLoROLCrHg6FblLuJrT6N2BVaPVzqElw== through2@^2.0.0: version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz" integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== dependencies: readable-stream "~2.3.6" @@ -6555,83 +6555,83 @@ through2@^2.0.0: through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6: version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== tinybench@^2.5.1: version "2.5.1" - resolved "https://registry.yarnpkg.com/tinybench/-/tinybench-2.5.1.tgz#3408f6552125e53a5a48adee31261686fd71587e" + resolved "https://registry.npmjs.org/tinybench/-/tinybench-2.5.1.tgz" integrity sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg== tinypool@^0.8.3: version "0.8.4" - resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-0.8.4.tgz#e217fe1270d941b39e98c625dcecebb1408c9aa8" + resolved "https://registry.npmjs.org/tinypool/-/tinypool-0.8.4.tgz" integrity sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ== -tinyqueue@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/tinyqueue/-/tinyqueue-2.0.3.tgz#64d8492ebf39e7801d7bd34062e29b45b2035f08" - integrity sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA== +tinyqueue@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/tinyqueue/-/tinyqueue-3.0.0.tgz#101ea761ccc81f979e29200929e78f1556e3661e" + integrity sha512-gRa9gwYU3ECmQYv3lslts5hxuIa90veaEcxDYuu3QGOIAEM2mOZkVHp48ANJuu1CURtRdHKUBY5Lm1tHV+sD4g== tinyspy@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-2.2.0.tgz#9dc04b072746520b432f77ea2c2d17933de5d6ce" + resolved "https://registry.npmjs.org/tinyspy/-/tinyspy-2.2.0.tgz" integrity sha512-d2eda04AN/cPOR89F7Xv5bK/jrQEhmcLFe6HFldoeO9AJtps+fqEnh486vnT/8y4bw38pSyxDcTCAq+Ks2aJTg== tmp@^0.0.33: version "0.0.33" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + resolved "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz" integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== dependencies: os-tmpdir "~1.0.2" tmp@~0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" + resolved "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz" integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== dependencies: rimraf "^3.0.0" to-fast-properties@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== to-regex-range@^5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" toidentifier@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== tr46@~0.0.3: version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + resolved "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz" integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== tree-kill@^1.2.2: version "1.2.2" - resolved "https://registry.yarnpkg.com/tree-kill/-/tree-kill-1.2.2.tgz#4ca09a9092c88b73a7cdc5e8a01b507b0790a0cc" + resolved "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz" integrity sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A== trim-newlines@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" + resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz" integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== ts-api-utils@^1.0.1: version "1.0.3" - resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.0.3.tgz#f12c1c781d04427313dbac808f453f050e54a331" + resolved "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz" integrity sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg== ts-loader@^9.4.4: version "9.4.4" - resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-9.4.4.tgz#6ceaf4d58dcc6979f84125335904920884b7cee4" + resolved "https://registry.npmjs.org/ts-loader/-/ts-loader-9.4.4.tgz" integrity sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w== dependencies: chalk "^4.1.0" @@ -6641,7 +6641,7 @@ ts-loader@^9.4.4: tsconfig-paths@^4.1.2: version "4.2.0" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz#ef78e19039133446d244beac0fd6a1632e2d107c" + resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz" integrity sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg== dependencies: json5 "^2.2.2" @@ -6650,17 +6650,17 @@ tsconfig-paths@^4.1.2: tslib@^1.9.0: version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0: version "2.6.2" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== tuf-js@^1.1.7: version "1.1.7" - resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-1.1.7.tgz#21b7ae92a9373015be77dfe0cb282a80ec3bbe43" + resolved "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz" integrity sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg== dependencies: "@tufjs/models" "1.0.4" @@ -6669,49 +6669,49 @@ tuf-js@^1.1.7: type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== dependencies: prelude-ls "^1.2.1" type-detect@4.0.8, type-detect@^4.0.0, type-detect@^4.0.8: version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + resolved "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== type-fest@^0.18.0: version "0.18.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz" integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== type-fest@^0.20.2: version "0.20.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== type-fest@^0.21.3: version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== type-fest@^0.4.1: version "0.4.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.4.1.tgz#8bdf77743385d8a4f13ba95f610f5ccd68c728f8" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.4.1.tgz" integrity sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw== type-fest@^0.6.0: version "0.6.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz" integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== type-fest@^0.8.1: version "0.8.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== type-is@~1.6.18: version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz" integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== dependencies: media-typer "0.3.0" @@ -6719,66 +6719,66 @@ type-is@~1.6.18: typedarray@^0.0.6: version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== "typescript@>=3 < 6", typescript@~5.2.2: version "5.2.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78" + resolved "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz" integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w== ufo@^1.3.0: version "1.3.1" - resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.3.1.tgz#e085842f4627c41d4c1b60ebea1f75cdab4ce86b" + resolved "https://registry.npmjs.org/ufo/-/ufo-1.3.1.tgz" integrity sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw== uglify-js@^3.1.4: version "3.17.4" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" + resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz" integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== undici-types@~5.26.4: version "5.26.5" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== unique-filename@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-3.0.0.tgz#48ba7a5a16849f5080d26c760c86cf5cf05770ea" + resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz" integrity sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g== dependencies: unique-slug "^4.0.0" unique-slug@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-4.0.0.tgz#6bae6bb16be91351badd24cdce741f892a6532e3" + resolved "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz" integrity sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ== dependencies: imurmurhash "^0.1.4" universal-user-agent@^6.0.0: version "6.0.0" - resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee" + resolved "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz" integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w== universalify@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + resolved "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz" integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== upath@2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" + resolved "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz" integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== update-browserslist-db@^1.2.0: version "1.2.3" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz#64d76db58713136acbeb4c49114366cc6cc2e80d" + resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz" integrity sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w== dependencies: escalade "^3.2.0" @@ -6786,34 +6786,34 @@ update-browserslist-db@^1.2.0: uri-js@^4.2.2: version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== utils-merge@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== uuid@^9.0.0: version "9.0.1" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" + resolved "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz" integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== v8-compile-cache@2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz" integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== v8-to-istanbul@^9.2.0: version "9.2.0" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz#2ed7644a245cddd83d4e087b9b33b3e62dfd10ad" + resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz" integrity sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA== dependencies: "@jridgewell/trace-mapping" "^0.3.12" @@ -6822,7 +6822,7 @@ v8-to-istanbul@^9.2.0: validate-npm-package-license@3.0.4, validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== dependencies: spdx-correct "^3.0.0" @@ -6830,26 +6830,26 @@ validate-npm-package-license@3.0.4, validate-npm-package-license@^3.0.1, validat validate-npm-package-name@5.0.0, validate-npm-package-name@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz#f16afd48318e6f90a1ec101377fa0384cfc8c713" + resolved "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz" integrity sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ== dependencies: builtins "^5.0.0" validate-npm-package-name@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" + resolved "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz" integrity sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw== dependencies: builtins "^1.0.3" vary@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== vite-node@1.6.1: version "1.6.1" - resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-1.6.1.tgz#fff3ef309296ea03ceaa6ca4bb660922f5416c57" + resolved "https://registry.npmjs.org/vite-node/-/vite-node-1.6.1.tgz" integrity sha512-YAXkfvGtuTzwWbDSACdJSg4A4DZiAqckWe90Zapc/sEX3XvHcw1NdurM/6od8J207tSDqNbSsgdCacBgvJKFuA== dependencies: cac "^6.7.14" @@ -6860,7 +6860,7 @@ vite-node@1.6.1: vite@^5.0.0, vite@~5.4.12: version "5.4.21" - resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.21.tgz#84a4f7c5d860b071676d39ba513c0d598fdc7027" + resolved "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz" integrity sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw== dependencies: esbuild "^0.21.3" @@ -6871,7 +6871,7 @@ vite@^5.0.0, vite@~5.4.12: vitest@~1.6.1: version "1.6.1" - resolved "https://registry.yarnpkg.com/vitest/-/vitest-1.6.1.tgz#b4a3097adf8f79ac18bc2e2e0024c534a7a78d2f" + resolved "https://registry.npmjs.org/vitest/-/vitest-1.6.1.tgz" integrity sha512-Ljb1cnSJSivGN0LqXd/zmDbWEM0RNNg2t1QW/XUhYl/qPqyu7CsqeWtqQXHVaJsecLPuDoak2oJcZN2QoRIOag== dependencies: "@vitest/expect" "1.6.1" @@ -6897,7 +6897,7 @@ vitest@~1.6.1: watchpack@^2.4.4: version "2.5.1" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.5.1.tgz#dd38b601f669e0cbf567cb802e75cead82cde102" + resolved "https://registry.npmjs.org/watchpack/-/watchpack-2.5.1.tgz" integrity sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg== dependencies: glob-to-regexp "^0.4.1" @@ -6905,24 +6905,24 @@ watchpack@^2.4.4: wcwidth@^1.0.0, wcwidth@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz" integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== dependencies: defaults "^1.0.3" webidl-conversions@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz" integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== webidl-conversions@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" + resolved "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz" integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== webpack-cli@^5.1.4: version "5.1.4" - resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-5.1.4.tgz#c8e046ba7eaae4911d7e71e2b25b776fcc35759b" + resolved "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz" integrity sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg== dependencies: "@discoveryjs/json-ext" "^0.5.0" @@ -6941,7 +6941,7 @@ webpack-cli@^5.1.4: webpack-merge@^5.7.3: version "5.9.0" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" + resolved "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.9.0.tgz" integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== dependencies: clone-deep "^4.0.1" @@ -6949,12 +6949,12 @@ webpack-merge@^5.7.3: webpack-sources@^3.3.3: version "3.3.3" - resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.3.3.tgz#d4bf7f9909675d7a070ff14d0ef2a4f3c982c723" + resolved "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz" integrity sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg== webpack@^5.88.2: version "5.104.1" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.104.1.tgz#94bd41eb5dbf06e93be165ba8be41b8260d4fb1a" + resolved "https://registry.npmjs.org/webpack/-/webpack-5.104.1.tgz" integrity sha512-Qphch25abbMNtekmEGJmeRUhLDbe+QfiWTiqpKYkpCOWY64v9eyl+KRRLmqOFA2AvKPpc9DC6+u2n76tQLBoaA== dependencies: "@types/eslint-scope" "^3.7.7" @@ -6985,12 +6985,12 @@ webpack@^5.88.2: whatwg-mimetype@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" + resolved "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz" integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== whatwg-url@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + resolved "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz" integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== dependencies: tr46 "~0.0.3" @@ -6998,21 +6998,21 @@ whatwg-url@^5.0.0: which@^2.0.1, which@^2.0.2: version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" which@^3.0.0: version "3.0.1" - resolved "https://registry.yarnpkg.com/which/-/which-3.0.1.tgz#89f1cd0c23f629a8105ffe69b8172791c87b4be1" + resolved "https://registry.npmjs.org/which/-/which-3.0.1.tgz" integrity sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg== dependencies: isexe "^2.0.0" why-is-node-running@^2.2.2: version "2.2.2" - resolved "https://registry.yarnpkg.com/why-is-node-running/-/why-is-node-running-2.2.2.tgz#4185b2b4699117819e7154594271e7e344c9973e" + resolved "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.2.2.tgz" integrity sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA== dependencies: siginfo "^2.0.0" @@ -7020,24 +7020,24 @@ why-is-node-running@^2.2.2: wide-align@^1.1.5: version "1.1.5" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" + resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz" integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== dependencies: string-width "^1.0.2 || 2 || 3 || 4" wildcard@^2.0.0: version "2.0.1" - resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" + resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz" integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== wordwrap@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz" integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: ansi-styles "^4.0.0" @@ -7046,7 +7046,7 @@ wordwrap@^1.0.0: wrap-ansi@^6.0.1: version "6.2.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== dependencies: ansi-styles "^4.0.0" @@ -7055,7 +7055,7 @@ wrap-ansi@^6.0.1: wrap-ansi@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== dependencies: ansi-styles "^4.0.0" @@ -7064,7 +7064,7 @@ wrap-ansi@^7.0.0: wrap-ansi@^8.1.0: version "8.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz" integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== dependencies: ansi-styles "^6.1.0" @@ -7073,12 +7073,12 @@ wrap-ansi@^8.1.0: wrappy@1: version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== write-file-atomic@5.0.1: version "5.0.1" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-5.0.1.tgz#68df4717c55c6fa4281a7860b4c2ba0a6d2b11e7" + resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz" integrity sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw== dependencies: imurmurhash "^0.1.4" @@ -7086,7 +7086,7 @@ write-file-atomic@5.0.1: write-file-atomic@^2.4.2: version "2.4.3" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz" integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== dependencies: graceful-fs "^4.1.11" @@ -7095,7 +7095,7 @@ write-file-atomic@^2.4.2: write-json-file@^3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-3.2.0.tgz#65bbdc9ecd8a1458e15952770ccbadfcff5fe62a" + resolved "https://registry.npmjs.org/write-json-file/-/write-json-file-3.2.0.tgz" integrity sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ== dependencies: detect-indent "^5.0.0" @@ -7107,7 +7107,7 @@ write-json-file@^3.2.0: write-pkg@4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-4.0.0.tgz#675cc04ef6c11faacbbc7771b24c0abbf2a20039" + resolved "https://registry.npmjs.org/write-pkg/-/write-pkg-4.0.0.tgz" integrity sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA== dependencies: sort-keys "^2.0.0" @@ -7116,42 +7116,42 @@ write-pkg@4.0.0: ws@^8.14.2: version "8.17.1" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.1.tgz#9293da530bb548febc95371d90f9c878727d919b" + resolved "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz" integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ== xtend@~4.0.1: version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== y18n@^5.0.5: version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== yallist@^4.0.0: version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== yargs-parser@20.2.4: version "20.2.4" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz" integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== yargs-parser@21.1.1, yargs-parser@^21.1.1: version "21.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== yargs-parser@^20.2.2, yargs-parser@^20.2.3: version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz" integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== yargs@16.2.0, yargs@^16.2.0: version "16.2.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz" integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== dependencies: cliui "^7.0.2" @@ -7164,7 +7164,7 @@ yargs@16.2.0, yargs@^16.2.0: yargs@^17.6.2, yargs@^17.7.2: version "17.7.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + resolved "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz" integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== dependencies: cliui "^8.0.1" @@ -7177,7 +7177,7 @@ yargs@^17.6.2, yargs@^17.7.2: yeoman-generator@^5.9.0: version "5.9.0" - resolved "https://registry.yarnpkg.com/yeoman-generator/-/yeoman-generator-5.9.0.tgz#a83c9e391b0b3442536da677bc204cfa3f81f2c7" + resolved "https://registry.npmjs.org/yeoman-generator/-/yeoman-generator-5.9.0.tgz" integrity sha512-sN1e01Db4fdd8P/n/yYvizfy77HdbwzvXmPxps9Gwz2D24slegrkSn+qyj+0nmZhtFwGX2i/cH29QDrvAFT9Aw== dependencies: chalk "^4.1.0" @@ -7198,7 +7198,7 @@ yeoman-generator@^5.9.0: yeoman-test@^7.4.0: version "7.4.0" - resolved "https://registry.yarnpkg.com/yeoman-test/-/yeoman-test-7.4.0.tgz#dc237965df79d41e7a6888c5980f7cafb817cae0" + resolved "https://registry.npmjs.org/yeoman-test/-/yeoman-test-7.4.0.tgz" integrity sha512-Cv+ecjgIwHCtZepkhHtpXFi1jL6PmA5QqIcYdTBhP4RbyCTgo4Ytj/lel5DHB/Nj4BOlf1GZ04bJnGmSr9PWOg== dependencies: "@types/inquirer" "^8.2.5" @@ -7213,10 +7213,10 @@ yeoman-test@^7.4.0: yocto-queue@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== yocto-queue@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" + resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz" integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== From 33c9ed0d183d3c5913b7fccaab7e650d929e2263 Mon Sep 17 00:00:00 2001 From: Guillaume Fontorbe Date: Thu, 5 Mar 2026 14:19:16 +0100 Subject: [PATCH 6/8] Update sprotty-elk exports and update examples --- examples/layout-strategies-showcase/src/di.config.ts | 2 +- examples/server/server-app.ts | 5 ++++- examples/webpack.config.cjs | 5 ----- packages/sprotty-elk/package.json | 3 ++- packages/sprotty-elk/src/index.ts | 1 - 5 files changed, 7 insertions(+), 9 deletions(-) diff --git a/examples/layout-strategies-showcase/src/di.config.ts b/examples/layout-strategies-showcase/src/di.config.ts index 205a8878..72d11e3c 100644 --- a/examples/layout-strategies-showcase/src/di.config.ts +++ b/examples/layout-strategies-showcase/src/di.config.ts @@ -44,7 +44,7 @@ import { } from 'sprotty-elk'; import { LayoutOptions } from 'elkjs'; import { SGraph, SModelIndex, SNode } from 'sprotty-protocol'; -import ElkConstructor from 'elkjs'; +import ElkConstructor from 'elkjs/lib/elk.bundled.js'; import { ServerLayoutNode, LayoutEdge diff --git a/examples/server/server-app.ts b/examples/server/server-app.ts index 2c0fc0ad..35447146 100644 --- a/examples/server/server-app.ts +++ b/examples/server/server-app.ts @@ -16,7 +16,9 @@ import express from 'express'; import * as path from 'path'; -import { ElkFactory, ElkLayoutEngine, SocketElkServer } from 'sprotty-elk'; +import { fileURLToPath } from 'url'; +import { ElkFactory, ElkLayoutEngine } from 'sprotty-elk'; +import { SocketElkServer } from 'sprotty-elk/lib/node/index.js'; import { Action, ActionMessage, DiagramServer, DiagramServices } from 'sprotty-protocol'; import { WebSocketServer } from 'ws'; import { RandomGraphGenerator } from './random-graph-generator.js'; @@ -54,6 +56,7 @@ wsServer.on('connection', socket => { }); }); +const __dirname = path.dirname(fileURLToPath(import.meta.url)); serverApp.use(express.static(path.join(__dirname, '../..'))); const server = serverApp.listen(8080, () => { diff --git a/examples/webpack.config.cjs b/examples/webpack.config.cjs index 40186383..e5617a6c 100644 --- a/examples/webpack.config.cjs +++ b/examples/webpack.config.cjs @@ -21,11 +21,6 @@ const config = { '.js': ['.ts', '.tsx', '.js'], '.jsx': ['.tsx', '.jsx'], }, - fallback: { - 'net': false, - 'child_process': false, - 'web-worker': false, - }, }, module: { rules: [ diff --git a/packages/sprotty-elk/package.json b/packages/sprotty-elk/package.json index d8d9dc9d..feed1289 100644 --- a/packages/sprotty-elk/package.json +++ b/packages/sprotty-elk/package.json @@ -48,6 +48,7 @@ ".": { "types": "./lib/index.d.ts", "import": "./lib/index.js" - } + }, + "./lib/*": "./lib/*" } } diff --git a/packages/sprotty-elk/src/index.ts b/packages/sprotty-elk/src/index.ts index c4301787..ab7797c5 100644 --- a/packages/sprotty-elk/src/index.ts +++ b/packages/sprotty-elk/src/index.ts @@ -17,4 +17,3 @@ // By default we export the Inversify-ready version. If you want to use the plain // version, import from `sprotty-elk/lib/elk-layout`. export * from './inversify.js'; -export * from './node/index.js'; From 8b5be94848f7c420b8dc0435c33f281b5cbf180e Mon Sep 17 00:00:00 2001 From: Guillaume Fontorbe Date: Mon, 16 Mar 2026 21:35:32 +0100 Subject: [PATCH 7/8] Update with kaisalmen's comments --- .../layout-strategies-showcase/src/model.ts | 6 +- examples/server/server-app.ts | 2 +- examples/webpack.config.cjs | 4 +- package.json | 6 +- .../sprotty-local-template/package.json | 2 +- packages/generator-sprotty/src/index.ts | 2 +- packages/sprotty-elk/package.json | 3 +- packages/sprotty-elk/src/elk-layout.spec.ts | 1 - packages/sprotty-library/package.json | 3 +- packages/sprotty-protocol/package.json | 3 +- packages/sprotty/package.json | 3 +- .../base/actions/action-dispatcher.spec.ts | 2 - .../src/base/actions/action-dispatcher.ts | 10 ++- .../commands/command-registration.spec.ts | 1 - .../src/base/commands/command-stack.spec.ts | 1 - packages/sprotty/src/base/commands/command.ts | 1 - .../base/features/initialize-canvas.spec.ts | 1 - .../src/base/features/set-model.spec.ts | 1 - .../src/base/model/smodel-factory.spec.ts | 1 - .../views/css-class-postprocessor.spec.tsx | 1 - packages/sprotty/src/base/views/view.spec.ts | 1 - .../bounds/bounds-manipulations.spec.ts | 2 - .../src/features/bounds/hbox-layout.spec.ts | 2 - .../src/features/bounds/stack-layout.spec.ts | 2 - .../src/features/bounds/vbox-layout.spec.ts | 1 - .../sprotty/src/features/bounds/views.spec.ts | 2 - .../context-menu/menu-providers.spec.ts | 2 - .../intersection-finder.spec.ts | 1 - .../edge-junction/junction-finder.spec.ts | 2 - .../src/features/export/export.spec.ts | 1 - .../sprotty/src/features/hover/hover.spec.ts | 1 - packages/sprotty/src/features/hover/hover.ts | 2 +- .../sprotty/src/features/move/move.spec.ts | 1 - .../src/features/routing/model.spec.ts | 2 - .../features/routing/polyline-edge-router.ts | 2 +- .../src/features/routing/views.spec.ts | 2 - .../src/features/select/select.spec.ts | 1 - .../features/update/model-matching.spec.ts | 1 - .../src/features/update/update-model.spec.ts | 1 - .../src/features/viewport/viewport.spec.ts | 1 - .../src/features/zorder/zorder.spec.ts | 1 - packages/sprotty/src/graph/sgraph.spec.ts | 2 - packages/sprotty/src/graph/sgraph.ts | 6 +- packages/sprotty/src/graph/views.spec.tsx | 67 +++++++------------ .../model-source/local-model-source.spec.ts | 1 - packages/sprotty/src/utils/inversify.ts | 5 +- packages/sprotty/src/utils/registry.spec.ts | 1 - tsconfig.json | 12 ++-- yarn.lock | 25 ++++--- 49 files changed, 79 insertions(+), 125 deletions(-) diff --git a/examples/layout-strategies-showcase/src/model.ts b/examples/layout-strategies-showcase/src/model.ts index ee87d6b9..b0534aa8 100644 --- a/examples/layout-strategies-showcase/src/model.ts +++ b/examples/layout-strategies-showcase/src/model.ts @@ -40,7 +40,7 @@ export class ClientLayoutNode extends SNodeImpl { // Layout configuration override layout: string = 'vbox'; - override layoutOptions?: { + declare layoutOptions?: { paddingTop?: number; paddingBottom?: number; paddingLeft?: number; @@ -75,7 +75,7 @@ export class ServerLayoutNode extends SNodeImpl { nodeType?: 'service' | 'database' | 'client' | 'router' | 'gateway'; // Layout constraints for server algorithms - override layoutOptions?: { + declare layoutOptions?: { 'elk.portConstraints'?: string; 'elk.nodeLabels.placement'?: string; 'elk.priority'?: number; @@ -101,7 +101,7 @@ export class HybridLayoutNode extends SNodeImpl { // Client layout for internal content override layout: string = 'vbox'; - override layoutOptions?: { + declare layoutOptions?: { paddingTop?: number; paddingBottom?: number; paddingLeft?: number; diff --git a/examples/server/server-app.ts b/examples/server/server-app.ts index 35447146..7a63f7da 100644 --- a/examples/server/server-app.ts +++ b/examples/server/server-app.ts @@ -15,7 +15,7 @@ ********************************************************************************/ import express from 'express'; -import * as path from 'path'; +import * as path from 'node:path'; import { fileURLToPath } from 'url'; import { ElkFactory, ElkLayoutEngine } from 'sprotty-elk'; import { SocketElkServer } from 'sprotty-elk/lib/node/index.js'; diff --git a/examples/webpack.config.cjs b/examples/webpack.config.cjs index e5617a6c..f584509b 100644 --- a/examples/webpack.config.cjs +++ b/examples/webpack.config.cjs @@ -1,7 +1,7 @@ //@ts-check const webpack = require('webpack'); -const path = require('path'); +const path = require('node:path'); const CircularDependencyPlugin = require('circular-dependency-plugin'); /** @type {import('webpack').Configuration} */ @@ -13,7 +13,7 @@ const config = { entry: './browser-app.ts', output: { filename: 'bundle.js', - path: path.resolve(__dirname, 'resources') + path: path.resolve(__dirname, 'resources'), }, resolve: { extensions: ['.ts', '.tsx', '.js'], diff --git a/package.json b/package.json index af595358..652572bb 100644 --- a/package.json +++ b/package.json @@ -15,12 +15,12 @@ "publish:next": "SHA=$(git rev-parse --short HEAD) && lerna publish preminor --exact --canary --preid next.${SHA} --dist-tag next --no-git-reset --no-git-tag-version --no-push --ignore-scripts --yes --no-verify-access" }, "devDependencies": { - "@types/node": "~18.19.3", + "@types/node": "^22", "@typescript-eslint/eslint-plugin": "^6.10.0", "@typescript-eslint/parser": "^6.10.0", "@vitest/coverage-v8": "~1.0.2", - "eslint": "^8.53.0", "concurrently": "~8.2.1", + "eslint": "^8.53.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-header": "^3.1.1", "eslint-plugin-no-null": "^1.0.2", @@ -28,7 +28,7 @@ "reflect-metadata": "~0.1.14", "semver": "^7.5.4", "shx": "^0.3.4", - "typescript": "~5.2.2", + "typescript": "~5.9.3", "vite": "~5.4.12", "vitest": "~1.6.1" }, diff --git a/packages/generator-sprotty/sprotty-local-template/package.json b/packages/generator-sprotty/sprotty-local-template/package.json index 7e284bc2..bdf603f7 100644 --- a/packages/generator-sprotty/sprotty-local-template/package.json +++ b/packages/generator-sprotty/sprotty-local-template/package.json @@ -7,7 +7,7 @@ "sprotty": "^1.0.0" }, "devDependencies": { - "typescript": "~5.2.2", + "typescript": "~5.9.3", "esbuild": "^0.19.4" }, "scripts": { diff --git a/packages/generator-sprotty/src/index.ts b/packages/generator-sprotty/src/index.ts index a1918685..a8779c85 100644 --- a/packages/generator-sprotty/src/index.ts +++ b/packages/generator-sprotty/src/index.ts @@ -16,7 +16,7 @@ import Generator from 'yeoman-generator'; import chalk from 'chalk'; -import path from 'path'; +import path from 'node:path'; const TEMPLATE_DIR = '../sprotty-local-template'; const USER_DIR = '.'; diff --git a/packages/sprotty-elk/package.json b/packages/sprotty-elk/package.json index feed1289..40056664 100644 --- a/packages/sprotty-elk/package.json +++ b/packages/sprotty-elk/package.json @@ -47,7 +47,8 @@ "exports": { ".": { "types": "./lib/index.d.ts", - "import": "./lib/index.js" + "import": "./lib/index.js", + "default": "./lib/index.js" }, "./lib/*": "./lib/*" } diff --git a/packages/sprotty-elk/src/elk-layout.spec.ts b/packages/sprotty-elk/src/elk-layout.spec.ts index 00b19833..84dff51d 100644 --- a/packages/sprotty-elk/src/elk-layout.spec.ts +++ b/packages/sprotty-elk/src/elk-layout.spec.ts @@ -14,7 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; import Elk from 'elkjs'; diff --git a/packages/sprotty-library/package.json b/packages/sprotty-library/package.json index d67b8ae1..826bfd30 100644 --- a/packages/sprotty-library/package.json +++ b/packages/sprotty-library/package.json @@ -47,7 +47,8 @@ "exports": { ".": { "types": "./lib/index.d.ts", - "import": "./lib/index.js" + "import": "./lib/index.js", + "default": "./lib/index.js" } } } diff --git a/packages/sprotty-protocol/package.json b/packages/sprotty-protocol/package.json index 1bfabe51..9810050c 100644 --- a/packages/sprotty-protocol/package.json +++ b/packages/sprotty-protocol/package.json @@ -41,7 +41,8 @@ "exports": { ".": { "types": "./lib/index.d.ts", - "import": "./lib/index.js" + "import": "./lib/index.js", + "default": "./lib/index.js" } } } diff --git a/packages/sprotty/package.json b/packages/sprotty/package.json index 12c15ab4..6ee4767a 100644 --- a/packages/sprotty/package.json +++ b/packages/sprotty/package.json @@ -55,7 +55,8 @@ "exports": { ".": { "types": "./lib/index.d.ts", - "import": "./lib/index.js" + "import": "./lib/index.js", + "default": "./lib/index.js" }, "./lib/*": "./lib/*", "./css/*": "./css/*" diff --git a/packages/sprotty/src/base/actions/action-dispatcher.spec.ts b/packages/sprotty/src/base/actions/action-dispatcher.spec.ts index a85538f2..de250f7c 100644 --- a/packages/sprotty/src/base/actions/action-dispatcher.spec.ts +++ b/packages/sprotty/src/base/actions/action-dispatcher.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container, injectable, interfaces } from "inversify"; -import 'reflect-metadata'; import { Action, Bounds, RedoAction, RejectAction, RequestModelAction, SetModelAction, UndoAction } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; import { ICommandStack } from "../commands/command-stack.js"; @@ -26,7 +25,6 @@ import { EMPTY_ROOT } from '../model/smodel-factory.js'; import { TYPES } from "../types.js"; import { ActionDispatcher } from "./action-dispatcher.js"; import { IActionHandler, configureActionHandler } from './action-handler.js'; -; describe('ActionDispatcher', () => { @injectable() diff --git a/packages/sprotty/src/base/actions/action-dispatcher.ts b/packages/sprotty/src/base/actions/action-dispatcher.ts index 82bd128b..801bfd23 100644 --- a/packages/sprotty/src/base/actions/action-dispatcher.ts +++ b/packages/sprotty/src/base/actions/action-dispatcher.ts @@ -16,9 +16,7 @@ import { inject, injectable } from 'inversify'; import { - Action, - Deferred, - isAction, isRequestAction, isResponseAction, RedoAction, RejectAction, RequestAction, + Action, Deferred, isAction, isRequestAction, isResponseAction, RedoAction, RejectAction, RequestAction, ResponseAction, SetModelAction, setRequestContext, UndoAction } from 'sprotty-protocol'; import { ILogger } from '../../utils/logging.js'; @@ -112,10 +110,10 @@ export class ActionDispatcher implements IActionDispatcher { protected handleAction(action: Action): Promise { if (action.kind === UndoAction.KIND) { - return this.commandStack.undo().then(() => {}); + return this.commandStack.undo().then(() => { }); } if (action.kind === RedoAction.KIND) { - return this.commandStack.redo().then(() => {}); + return this.commandStack.redo().then(() => { }); } if (isResponseAction(action)) { const deferred = this.requests.get(action.responseId); @@ -125,7 +123,7 @@ export class ActionDispatcher implements IActionDispatcher { const rejectAction = action as RejectAction; deferred.reject(new Error(rejectAction.message)); this.logger.warn(this, `Request with id ${action.responseId} failed.`, - rejectAction.message, rejectAction.detail); + rejectAction.message, rejectAction.detail); } else { deferred.resolve(action); } diff --git a/packages/sprotty/src/base/commands/command-registration.spec.ts b/packages/sprotty/src/base/commands/command-registration.spec.ts index c5a624e8..feeb1683 100644 --- a/packages/sprotty/src/base/commands/command-registration.spec.ts +++ b/packages/sprotty/src/base/commands/command-registration.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container, inject, injectable } from "inversify"; -import "reflect-metadata"; import { SetModelAction } from "sprotty-protocol"; import { describe, expect, it } from 'vitest'; import { ActionHandlerRegistry } from "../actions/action-handler.js"; diff --git a/packages/sprotty/src/base/commands/command-stack.spec.ts b/packages/sprotty/src/base/commands/command-stack.spec.ts index 77c21e2e..abf65dda 100644 --- a/packages/sprotty/src/base/commands/command-stack.spec.ts +++ b/packages/sprotty/src/base/commands/command-stack.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container, injectable } from "inversify"; -import "reflect-metadata"; import { describe, expect, it } from 'vitest'; import defaultModule from "../di.config.js"; import { TYPES } from "../types.js"; diff --git a/packages/sprotty/src/base/commands/command.ts b/packages/sprotty/src/base/commands/command.ts index 64272504..fe688e34 100644 --- a/packages/sprotty/src/base/commands/command.ts +++ b/packages/sprotty/src/base/commands/command.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { injectable } from "inversify"; -import 'reflect-metadata'; import { Action, hasOwnProperty } from "sprotty-protocol"; import { ILogger } from "../../utils/logging.js"; import { AnimationFrameSyncer } from "../animations/animation-frame-syncer.js"; diff --git a/packages/sprotty/src/base/features/initialize-canvas.spec.ts b/packages/sprotty/src/base/features/initialize-canvas.spec.ts index 2b4f4e2a..6d897c19 100644 --- a/packages/sprotty/src/base/features/initialize-canvas.spec.ts +++ b/packages/sprotty/src/base/features/initialize-canvas.spec.ts @@ -14,7 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import "reflect-metadata"; import { Bounds } from "sprotty-protocol"; import { describe, expect, it } from 'vitest'; import { CommandExecutionContext } from '../commands/command.js'; diff --git a/packages/sprotty/src/base/features/set-model.spec.ts b/packages/sprotty/src/base/features/set-model.spec.ts index e33ba25b..15e80544 100644 --- a/packages/sprotty/src/base/features/set-model.spec.ts +++ b/packages/sprotty/src/base/features/set-model.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container } from 'inversify'; -import 'reflect-metadata'; import { SModelElement, SModelRoot, SetModelAction } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; import { ConsoleLogger } from '../../utils/logging.js'; diff --git a/packages/sprotty/src/base/model/smodel-factory.spec.ts b/packages/sprotty/src/base/model/smodel-factory.spec.ts index 328cba6a..a0f94c3c 100644 --- a/packages/sprotty/src/base/model/smodel-factory.spec.ts +++ b/packages/sprotty/src/base/model/smodel-factory.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container } from 'inversify'; -import 'reflect-metadata'; import { Selectable, SModelElement } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; import { boundsFeature } from '../../features/bounds/model.js'; diff --git a/packages/sprotty/src/base/views/css-class-postprocessor.spec.tsx b/packages/sprotty/src/base/views/css-class-postprocessor.spec.tsx index b1fdff98..723cd402 100644 --- a/packages/sprotty/src/base/views/css-class-postprocessor.spec.tsx +++ b/packages/sprotty/src/base/views/css-class-postprocessor.spec.tsx @@ -17,7 +17,6 @@ /** @jsx svg */ import { svg } from '../../lib/jsx.js'; -import 'reflect-metadata'; import { describe, expect, it } from 'vitest'; import { SModelElementImpl } from '../model/smodel.js'; import { CssClassPostprocessor } from './css-class-postprocessor.js'; diff --git a/packages/sprotty/src/base/views/view.spec.ts b/packages/sprotty/src/base/views/view.spec.ts index 73acc408..292629fb 100644 --- a/packages/sprotty/src/base/views/view.spec.ts +++ b/packages/sprotty/src/base/views/view.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container } from 'inversify'; -import 'reflect-metadata'; import toHTML from 'snabbdom-to-html'; import { describe, expect, it } from 'vitest'; import { SNodeImpl } from "../../graph/sgraph.js"; diff --git a/packages/sprotty/src/features/bounds/bounds-manipulations.spec.ts b/packages/sprotty/src/features/bounds/bounds-manipulations.spec.ts index c9ec1adf..39592f32 100644 --- a/packages/sprotty/src/features/bounds/bounds-manipulations.spec.ts +++ b/packages/sprotty/src/features/bounds/bounds-manipulations.spec.ts @@ -15,8 +15,6 @@ ********************************************************************************/ import { Container } from 'inversify'; -import 'reflect-metadata'; - import { SNode, SetBoundsAction } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer.js'; diff --git a/packages/sprotty/src/features/bounds/hbox-layout.spec.ts b/packages/sprotty/src/features/bounds/hbox-layout.spec.ts index 106eda77..3c4c0f33 100644 --- a/packages/sprotty/src/features/bounds/hbox-layout.spec.ts +++ b/packages/sprotty/src/features/bounds/hbox-layout.spec.ts @@ -14,8 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; - import { expect, describe, it } from 'vitest'; import { SModelElementImpl, SParentElementImpl } from '../../base/model/smodel.js'; import { createFeatureSet } from '../../base/model/smodel-factory.js'; diff --git a/packages/sprotty/src/features/bounds/stack-layout.spec.ts b/packages/sprotty/src/features/bounds/stack-layout.spec.ts index 4542bb7b..4f8a8a0f 100644 --- a/packages/sprotty/src/features/bounds/stack-layout.spec.ts +++ b/packages/sprotty/src/features/bounds/stack-layout.spec.ts @@ -14,8 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; - import { Container } from 'inversify'; import { Dimension } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; diff --git a/packages/sprotty/src/features/bounds/vbox-layout.spec.ts b/packages/sprotty/src/features/bounds/vbox-layout.spec.ts index e42e6fa1..b9943c8b 100644 --- a/packages/sprotty/src/features/bounds/vbox-layout.spec.ts +++ b/packages/sprotty/src/features/bounds/vbox-layout.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container } from 'inversify'; -import 'reflect-metadata'; import { Dimension } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; import defaultModule from '../../base/di.config.js'; diff --git a/packages/sprotty/src/features/bounds/views.spec.ts b/packages/sprotty/src/features/bounds/views.spec.ts index 90ddd3f7..776abbd4 100644 --- a/packages/sprotty/src/features/bounds/views.spec.ts +++ b/packages/sprotty/src/features/bounds/views.spec.ts @@ -14,8 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; - import { VNode } from 'snabbdom'; import { describe, expect, it } from 'vitest'; import { IViewArgs, RenderingContext } from '../../base/views/view.js'; diff --git a/packages/sprotty/src/features/context-menu/menu-providers.spec.ts b/packages/sprotty/src/features/context-menu/menu-providers.spec.ts index fbd4783d..42d119db 100644 --- a/packages/sprotty/src/features/context-menu/menu-providers.spec.ts +++ b/packages/sprotty/src/features/context-menu/menu-providers.spec.ts @@ -14,8 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; - import { expect, describe, it } from 'vitest'; import { ContextMenuProviderRegistry } from "./menu-providers.js"; import { SModelRootImpl } from "../../base/model/smodel.js"; diff --git a/packages/sprotty/src/features/edge-intersection/intersection-finder.spec.ts b/packages/sprotty/src/features/edge-intersection/intersection-finder.spec.ts index 36a5e5fe..aae6dd92 100644 --- a/packages/sprotty/src/features/edge-intersection/intersection-finder.spec.ts +++ b/packages/sprotty/src/features/edge-intersection/intersection-finder.spec.ts @@ -14,7 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import "reflect-metadata"; import { describe, expect, it } from 'vitest'; import { EdgeRouting } from "../routing/routing.js"; import { IntersectionFinder } from "./intersection-finder.js"; diff --git a/packages/sprotty/src/features/edge-junction/junction-finder.spec.ts b/packages/sprotty/src/features/edge-junction/junction-finder.spec.ts index 09fc6f05..17efc3e8 100644 --- a/packages/sprotty/src/features/edge-junction/junction-finder.spec.ts +++ b/packages/sprotty/src/features/edge-junction/junction-finder.spec.ts @@ -14,8 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; - import { Point } from 'sprotty-protocol'; import { assert, describe, expect, it } from 'vitest'; import { SEdgeImpl, SGraphImpl } from '../../graph/sgraph.js'; diff --git a/packages/sprotty/src/features/export/export.spec.ts b/packages/sprotty/src/features/export/export.spec.ts index 821af6ab..65080096 100644 --- a/packages/sprotty/src/features/export/export.spec.ts +++ b/packages/sprotty/src/features/export/export.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container } from 'inversify'; -import 'reflect-metadata'; import { RequestExportSvgAction, SNode } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; import { CommandExecutionContext } from '../../base/commands/command.js'; diff --git a/packages/sprotty/src/features/hover/hover.spec.ts b/packages/sprotty/src/features/hover/hover.spec.ts index 32b0b3a4..18a9a223 100644 --- a/packages/sprotty/src/features/hover/hover.spec.ts +++ b/packages/sprotty/src/features/hover/hover.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container } from 'inversify'; -import 'reflect-metadata'; import { Action, Hoverable, HoverFeedbackAction } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; import defaultModule from '../../base/di.config.js'; diff --git a/packages/sprotty/src/features/hover/hover.ts b/packages/sprotty/src/features/hover/hover.ts index 910fa50f..7401744b 100644 --- a/packages/sprotty/src/features/hover/hover.ts +++ b/packages/sprotty/src/features/hover/hover.ts @@ -142,7 +142,7 @@ export class HoverMouseListener extends AbstractHoverMouseListener { protected lastHoverFeedbackElementId?: string; - @inject(TYPES.ViewerOptions) protected override options: ViewerOptions; + @inject(TYPES.ViewerOptions) protected declare options: ViewerOptions; protected computePopupBounds(target: SModelElementImpl, mousePosition: Point): Bounds { // Default position: below the mouse cursor diff --git a/packages/sprotty/src/features/move/move.spec.ts b/packages/sprotty/src/features/move/move.spec.ts index ab521793..88f7bde4 100644 --- a/packages/sprotty/src/features/move/move.spec.ts +++ b/packages/sprotty/src/features/move/move.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container } from 'inversify'; -import 'reflect-metadata'; import { MoveAction, Point } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer.js'; diff --git a/packages/sprotty/src/features/routing/model.spec.ts b/packages/sprotty/src/features/routing/model.spec.ts index c468d053..a7b9ca10 100644 --- a/packages/sprotty/src/features/routing/model.spec.ts +++ b/packages/sprotty/src/features/routing/model.spec.ts @@ -14,8 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; - import { describe, expect, it } from 'vitest'; import { SModelRootImpl } from '../../base/model/smodel.js'; import { SEdgeImpl, SGraphImpl, SNodeImpl } from '../../graph/sgraph.js'; diff --git a/packages/sprotty/src/features/routing/polyline-edge-router.ts b/packages/sprotty/src/features/routing/polyline-edge-router.ts index 8be0a760..0c0182fb 100644 --- a/packages/sprotty/src/features/routing/polyline-edge-router.ts +++ b/packages/sprotty/src/features/routing/polyline-edge-router.ts @@ -30,7 +30,7 @@ export interface PolylineRouteOptions extends LinearRouteOptions { @injectable() export class PolylineEdgeRouter extends AbstractEdgeRouter { - @inject(AnchorComputerRegistry) override anchorRegistry: AnchorComputerRegistry; + @inject(AnchorComputerRegistry) declare anchorRegistry: AnchorComputerRegistry; static readonly KIND = 'polyline'; diff --git a/packages/sprotty/src/features/routing/views.spec.ts b/packages/sprotty/src/features/routing/views.spec.ts index a41cec1b..81f54ac5 100644 --- a/packages/sprotty/src/features/routing/views.spec.ts +++ b/packages/sprotty/src/features/routing/views.spec.ts @@ -14,8 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; - import { VNode } from 'snabbdom'; import { describe, expect, it } from 'vitest'; import { IViewArgs, RenderingContext } from '../../base/views/view.js'; diff --git a/packages/sprotty/src/features/select/select.spec.ts b/packages/sprotty/src/features/select/select.spec.ts index eb38c07e..ecb5b7bd 100644 --- a/packages/sprotty/src/features/select/select.spec.ts +++ b/packages/sprotty/src/features/select/select.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container } from 'inversify'; -import 'reflect-metadata'; import { SelectAction, SelectAllAction } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer.js'; diff --git a/packages/sprotty/src/features/update/model-matching.spec.ts b/packages/sprotty/src/features/update/model-matching.spec.ts index 3d4cef51..cefc8443 100644 --- a/packages/sprotty/src/features/update/model-matching.spec.ts +++ b/packages/sprotty/src/features/update/model-matching.spec.ts @@ -14,7 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import "reflect-metadata"; import { SModelElement } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; import { ModelMatcher } from "./model-matching.js"; diff --git a/packages/sprotty/src/features/update/update-model.spec.ts b/packages/sprotty/src/features/update/update-model.spec.ts index 8160a31e..e52bce2f 100644 --- a/packages/sprotty/src/features/update/update-model.spec.ts +++ b/packages/sprotty/src/features/update/update-model.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container } from 'inversify'; -import 'reflect-metadata'; import { Point, SEdge, SGraph, SModelElement, SModelRoot, SNode, UpdateModelAction } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer.js'; diff --git a/packages/sprotty/src/features/viewport/viewport.spec.ts b/packages/sprotty/src/features/viewport/viewport.spec.ts index 25c73682..e2ee3c98 100644 --- a/packages/sprotty/src/features/viewport/viewport.spec.ts +++ b/packages/sprotty/src/features/viewport/viewport.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container } from 'inversify'; -import 'reflect-metadata'; import { SetViewportAction, Viewport, almostEquals } from 'sprotty-protocol'; import { describe, expect, it } from 'vitest'; import { AnimationFrameSyncer } from '../../base/animations/animation-frame-syncer.js'; diff --git a/packages/sprotty/src/features/zorder/zorder.spec.ts b/packages/sprotty/src/features/zorder/zorder.spec.ts index 18566266..8e87f9cd 100644 --- a/packages/sprotty/src/features/zorder/zorder.spec.ts +++ b/packages/sprotty/src/features/zorder/zorder.spec.ts @@ -14,7 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; import { TYPES } from '../../base/types.js'; diff --git a/packages/sprotty/src/graph/sgraph.spec.ts b/packages/sprotty/src/graph/sgraph.spec.ts index b8ee5113..74b0aaf4 100644 --- a/packages/sprotty/src/graph/sgraph.spec.ts +++ b/packages/sprotty/src/graph/sgraph.spec.ts @@ -14,8 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; - import { expect, describe, it } from 'vitest'; import { SRoutingHandleImpl } from '../features/routing/model.js'; import { RectangularNode, RectangularPort } from '../lib/model.js'; diff --git a/packages/sprotty/src/graph/sgraph.ts b/packages/sprotty/src/graph/sgraph.ts index f4fe3420..679649f1 100644 --- a/packages/sprotty/src/graph/sgraph.ts +++ b/packages/sprotty/src/graph/sgraph.ts @@ -54,7 +54,7 @@ export class SNodeImpl extends SConnectableElementImpl implements Selectable, Fa static readonly DEFAULT_FEATURES = [connectableFeature, deletableFeature, selectFeature, boundsFeature, moveFeature, layoutContainerFeature, fadeFeature, hoverFeedbackFeature, popupFeature]; - override children: SChildElementImpl[]; + declare children: SChildElementImpl[]; layout?: string; selected: boolean = false; hoverFeedback: boolean = false; @@ -153,9 +153,9 @@ export class SCompartmentImpl extends SShapeElementImpl implements Fadeable { static readonly DEFAULT_FEATURES = [boundsFeature, layoutContainerFeature, layoutableChildFeature, fadeFeature]; - override children: SChildElementImpl[]; + declare children: SChildElementImpl[]; layout?: string; - override layoutOptions?: {[key: string]: string | number | boolean}; + declare layoutOptions?: {[key: string]: string | number | boolean}; opacity = 1; } diff --git a/packages/sprotty/src/graph/views.spec.tsx b/packages/sprotty/src/graph/views.spec.tsx index 03b32589..a748b2c7 100644 --- a/packages/sprotty/src/graph/views.spec.tsx +++ b/packages/sprotty/src/graph/views.spec.tsx @@ -14,10 +14,8 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ - /** @jsx svg */ +/** @jsx svg */ import { svg } from '../lib/jsx.js'; - -import 'reflect-metadata'; import { expect, describe, it } from 'vitest'; import { Container } from 'inversify'; import { VNode } from 'snabbdom'; @@ -44,8 +42,8 @@ describe('graph views', () => { override render(node: SNodeImpl, renderContext: RenderingContext): VNode { const radius = this.getRadius(node); return - - ; + + ; } protected override getRadius(node: SNodeImpl) { return 40; @@ -74,10 +72,8 @@ describe('graph views', () => { const graph = graphFactory.createRoot(schema) as SGraphImpl; const view = viewRegistry.get(graph.type); const vnode = view.render(graph, context); - expect(vnode).not.toBeUndefined(); - if (vnode) { - expect(toHTML(vnode)).to.be.equal(''); - } + + expect(toHTML(vnode)).to.be.equal(''); }); function createModel() { @@ -93,21 +89,16 @@ describe('graph views', () => { const view = viewRegistry.get('edge:straight'); const vnode = view.render(graph.index.getById('edge0') as SEdgeImpl, context); - expect(vnode).not.toBeUndefined(); - if (vnode) { - expect(toHTML(vnode)).to.be.equal( - ''); - } + expect(toHTML(vnode)).to.be.equal( + ''); }); it('render a circle node', () => { const graph = createModel(); const view = viewRegistry.get('node:circle'); const vnode = view.render(graph.index.getById('node0') as SNodeImpl, context); - expect(vnode).not.toBeUndefined(); - if (vnode) { - expect(toHTML(vnode)).to.be.equal(''); - } + + expect(toHTML(vnode)).to.be.equal(''); }); it('render a whole graph', () => { @@ -115,21 +106,19 @@ describe('graph views', () => { const vnode = context.renderElement(graph); const expectation = '' + '' - + '' - + '' - + '' - + '' - + '' - + '' - + '' - + '' - + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + + '' + '' + ''; - expect(vnode).not.toBeUndefined(); - if (vnode) { - expect(toHTML(vnode)).to.be.equal(expectation); - } + + expect(toHTML(vnode)).to.be.equal(expectation); }); }); @@ -194,26 +183,20 @@ describe('PolylineEdgeView', () => { const context = { targetKind: 'hidden', viewRegistry, - decorate: function(vnode: VNode, element: SModelElementImpl): VNode { return vnode; }, - renderElement: function(element: SModelElementImpl): VNode { return ; }, - renderChildren: function(element: SParentElementImpl): VNode[] { return []; } + decorate: function (vnode: VNode, element: SModelElementImpl): VNode { return vnode; }, + renderElement: function (element: SModelElementImpl): VNode { return ; }, + renderChildren: function (element: SParentElementImpl): VNode[] { return []; } } as RenderingContext; it('correctly translates edge source and target position', () => { const edge = model.index.getById('edge1') as SEdgeImpl; const vnode = edgeView.render(edge, context); - expect(vnode).not.toBeUndefined(); - if (vnode) { - expect(toHTML(vnode)).to.equal(''); - } + expect(toHTML(vnode)).to.equal(''); }); it('correctly translates edge target and source position', () => { const edge = model.index.getById('edge2') as SEdgeImpl; const vnode = edgeView.render(edge, context); - expect(vnode).not.toBeUndefined(); - if (vnode) { - expect(toHTML(vnode)).to.equal(''); - } + expect(toHTML(vnode)).to.equal(''); }); }); diff --git a/packages/sprotty/src/model-source/local-model-source.spec.ts b/packages/sprotty/src/model-source/local-model-source.spec.ts index c9470664..0955f193 100644 --- a/packages/sprotty/src/model-source/local-model-source.spec.ts +++ b/packages/sprotty/src/model-source/local-model-source.spec.ts @@ -15,7 +15,6 @@ ********************************************************************************/ import { Container, injectable } from "inversify"; -import "reflect-metadata"; import { Action, ComputedBoundsAction, diff --git a/packages/sprotty/src/utils/inversify.ts b/packages/sprotty/src/utils/inversify.ts index c6ae3f0c..5baae08e 100644 --- a/packages/sprotty/src/utils/inversify.ts +++ b/packages/sprotty/src/utils/inversify.ts @@ -13,7 +13,10 @@ * * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import {interfaces} from "inversify"; + +import 'reflect-metadata'; + +import { interfaces } from "inversify"; export function isInjectable(constr: interfaces.Newable| Function ): boolean { return Reflect.getMetadata('inversify:paramtypes', constr) !== undefined; diff --git a/packages/sprotty/src/utils/registry.spec.ts b/packages/sprotty/src/utils/registry.spec.ts index f399f11e..08fc65df 100644 --- a/packages/sprotty/src/utils/registry.spec.ts +++ b/packages/sprotty/src/utils/registry.spec.ts @@ -14,7 +14,6 @@ * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 ********************************************************************************/ -import 'reflect-metadata'; import { expect, describe, it } from 'vitest'; import { InstanceRegistry, ProviderRegistry } from "./registry.js"; diff --git a/tsconfig.json b/tsconfig.json index ff13ad42..689e4530 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,11 @@ { "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { - "target": "ES2017", - "module": "Node16", - "moduleResolution": "Node16", + "target": "ES2022", + "module": "Node20", + "moduleResolution": "NodeNext", "lib": [ - "ES2017", + "ES2022", "DOM" ], "sourceMap": true, @@ -21,7 +21,8 @@ "emitDecoratorMetadata": true, "esModuleInterop": true, "jsx": "react", - "composite": true + "composite": true, + "skipLibCheck": true }, "include": [ "**/src/**/*.ts", @@ -30,5 +31,6 @@ "exclude": [ "lib/**/*", "node_modules/**/*" + ] } \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index c8c73793..c0901728 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1160,12 +1160,12 @@ resolved "https://registry.npmjs.org/@types/node/-/node-20.8.0.tgz" integrity sha512-LzcWltT83s1bthcvjBmiBvGJiiUe84NWRHkw+ZV6Fr41z2FbIzvc815dk2nQ3RAKMuN2fkenM/z3Xv2QzEpYxQ== -"@types/node@~18.19.3": - version "18.19.3" - resolved "https://registry.npmjs.org/@types/node/-/node-18.19.3.tgz" - integrity sha512-k5fggr14DwAytoA/t8rPrIz++lXK7/DqckthCmoZOKNsEbJkId4Z//BqgApXBUGrGddrigYa1oqheo/7YmW4rg== +"@types/node@^22": + version "22.19.15" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.19.15.tgz#6091d99fdf7c08cb57dc8b1345d407ba9a1df576" + integrity sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg== dependencies: - undici-types "~5.26.4" + undici-types "~6.21.0" "@types/normalize-package-data@^2.4.0": version "2.4.2" @@ -6722,11 +6722,16 @@ typedarray@^0.0.6: resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== -"typescript@>=3 < 6", typescript@~5.2.2: +"typescript@>=3 < 6": version "5.2.2" resolved "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz" integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w== +typescript@~5.9.3: + version "5.9.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.3.tgz#5b4f59e15310ab17a216f5d6cf53ee476ede670f" + integrity sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw== + ufo@^1.3.0: version "1.3.1" resolved "https://registry.npmjs.org/ufo/-/ufo-1.3.1.tgz" @@ -6737,10 +6742,10 @@ uglify-js@^3.1.4: resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz" integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== -undici-types@~5.26.4: - version "5.26.5" - resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz" - integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== +undici-types@~6.21.0: + version "6.21.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb" + integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ== unique-filename@^3.0.0: version "3.0.0" From 2722d1ef385da0cc78568349beb6b0ed912fac36 Mon Sep 17 00:00:00 2001 From: Guillaume Fontorbe Date: Fri, 20 Mar 2026 09:17:32 +0100 Subject: [PATCH 8/8] Fix class optional fields checks --- packages/sprotty/src/features/bounds/model.ts | 3 ++- packages/sprotty/src/features/edge-layout/model.ts | 2 +- packages/sprotty/src/graph/sgraph.ts | 8 ++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/packages/sprotty/src/features/bounds/model.ts b/packages/sprotty/src/features/bounds/model.ts index 9b7ca170..fce6f3bc 100644 --- a/packages/sprotty/src/features/bounds/model.ts +++ b/packages/sprotty/src/features/bounds/model.ts @@ -79,7 +79,8 @@ export function isBoundsAware(element: SModelElementImpl): element is SModelElem export function isLayoutContainer(element: SModelElementImpl): element is SParentElementImpl & InternalLayoutContainer { return isBoundsAware(element) && element.hasFeature(layoutContainerFeature) - && 'layout' in element; + && 'layout' in element + && element.layout !== undefined; } export function isLayoutableChild(element: SModelElementImpl): element is SChildElementImpl & InternalLayoutableChild { diff --git a/packages/sprotty/src/features/edge-layout/model.ts b/packages/sprotty/src/features/edge-layout/model.ts index 64a8bf23..55ffd7be 100644 --- a/packages/sprotty/src/features/edge-layout/model.ts +++ b/packages/sprotty/src/features/edge-layout/model.ts @@ -37,7 +37,7 @@ export function isEdgeLayoutable(element: T): eleme } export function checkEdgePlacement(element: SChildElementImpl): element is SChildElementImpl & EdgeLayoutable { - return 'edgePlacement' in element; + return 'edgePlacement' in element && element.edgePlacement !== undefined; } /** diff --git a/packages/sprotty/src/graph/sgraph.ts b/packages/sprotty/src/graph/sgraph.ts index 679649f1..6c919ed2 100644 --- a/packages/sprotty/src/graph/sgraph.ts +++ b/packages/sprotty/src/graph/sgraph.ts @@ -38,7 +38,7 @@ import { FluentIterable, FluentIterableImpl } from '../utils/iterable.js'; * Root element for graph-like models. */ export class SGraphImpl extends ViewportRootElementImpl { - layoutOptions?: ModelLayoutOptions; + declare layoutOptions?: ModelLayoutOptions; constructor(index = new SGraphIndex()) { super(index); @@ -55,7 +55,7 @@ export class SNodeImpl extends SConnectableElementImpl implements Selectable, Fa moveFeature, layoutContainerFeature, fadeFeature, hoverFeedbackFeature, popupFeature]; declare children: SChildElementImpl[]; - layout?: string; + declare layout?: string; selected: boolean = false; hoverFeedback: boolean = false; opacity: number = 1; @@ -141,7 +141,7 @@ export class SLabelImpl extends SShapeElementImpl implements Selectable, Alignab selected: boolean = false; alignment: Point = Point.ORIGIN; opacity = 1; - edgePlacement?: EdgePlacement; + declare edgePlacement?: EdgePlacement; } @@ -154,7 +154,7 @@ export class SCompartmentImpl extends SShapeElementImpl implements Fadeable { fadeFeature]; declare children: SChildElementImpl[]; - layout?: string; + declare layout?: string; declare layoutOptions?: {[key: string]: string | number | boolean}; opacity = 1;