diff --git a/.gitignore b/.gitignore index c8b8918..5e2157a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ _PackageInt/ Packages/ PackagesMetadata/ -node_modules/ \ No newline at end of file +node_modules/ +PackageSources/html_ui/Pages/VCockpit/Instruments/FSS_B727/KH_FE_FPLAN/ \ No newline at end of file diff --git a/.prettierrc.cjs b/.prettierrc.cjs new file mode 100644 index 0000000..11e342d --- /dev/null +++ b/.prettierrc.cjs @@ -0,0 +1,9 @@ +module.exports = { + printWidth: 120, + tabWidth: 2, + semi: true, + trailingComma: 'es5', + singleQuote: true, + arrowParens: 'always', + plugins: ['prettier-plugin-organize-imports'], +}; diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/components/test/test.js b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/components/test/test.js new file mode 100644 index 0000000..797a623 --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/components/test/test.js @@ -0,0 +1,7 @@ +import { FSComponent, DisplayComponent } from "@microsoft/msfs-sdk"; +export class Test extends DisplayComponent { + render() { + return FSComponent.buildComponent("div", { class: "test" }, "Hello World!"); + } +} +//# sourceMappingURL=test.js.map \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/components/test/test.js.map b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/components/test/test.js.map new file mode 100644 index 0000000..2db2ecf --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/components/test/test.js.map @@ -0,0 +1 @@ +{"version":3,"file":"test.js","sourceRoot":"","sources":["../../../src/components/test/test.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAS,MAAM,qBAAqB,CAAC;AAE3E,MAAM,OAAO,IAAK,SAAQ,gBAAqB;IACtC,MAAM;QACX,OAAO,oCAAK,KAAK,EAAC,MAAM,mBAAmB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["import { FSComponent, DisplayComponent, VNode } from \"@microsoft/msfs-sdk\";\r\n\r\nexport class Test extends DisplayComponent {\r\n public render(): VNode {\r\n return
Hello World!
;\r\n }\r\n}\r\n"]} \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/index.js b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/index.js new file mode 100644 index 0000000..101a7b2 --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/index.js @@ -0,0 +1,14 @@ +/// +import { FSComponent } from "@microsoft/msfs-sdk"; +import { Test } from "./components/test/test"; +class KH_FE_FPLAN extends BaseInstrument { + get templateID() { + return "KH_FE_FPLAN"; + } + connectedCallback() { + super.connectedCallback(); + FSComponent.render(FSComponent.buildComponent(Test, null), document.getElementById("InstrumentContent")); + } +} +registerInstrument("KH_FE_FPLAN", KH_FE_FPLAN); +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/index.js.map b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/index.js.map new file mode 100644 index 0000000..c6880aa --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,4EAA4E;AAE5E,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAE9C,MAAM,WAAY,SAAQ,cAAc;IACtC,IAAI,UAAU;QACZ,OAAO,aAAa,CAAC;IACvB,CAAC;IAEM,iBAAiB;QACtB,KAAK,CAAC,iBAAiB,EAAE,CAAC;QAE1B,WAAW,CAAC,MAAM,CAAC,2BAAC,IAAI,OAAG,EAAE,QAAQ,CAAC,cAAc,CAAC,mBAAmB,CAAC,CAAC,CAAC;IAC7E,CAAC;CACF;AAED,kBAAkB,CAAC,aAAa,EAAE,WAAW,CAAC,CAAC","sourcesContent":["/// \r\n\r\nimport { FSComponent } from \"@microsoft/msfs-sdk\";\r\nimport { Test } from \"./components/test/test\";\r\n\r\nclass KH_FE_FPLAN extends BaseInstrument {\r\n get templateID(): string {\r\n return \"KH_FE_FPLAN\";\r\n }\r\n\r\n public connectedCallback(): void {\r\n super.connectedCallback();\r\n\r\n FSComponent.render(, document.getElementById(\"InstrumentContent\"));\r\n }\r\n}\r\n\r\nregisterInstrument(\"KH_FE_FPLAN\", KH_FE_FPLAN);\r\n"]} \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/tsconfig.tsbuildinfo b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/tsconfig.tsbuildinfo new file mode 100644 index 0000000..e028810 --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/build/tsconfig.tsbuildinfo @@ -0,0 +1 @@ +{"fileNames":["../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.full.d.ts","../../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/pages/vcockpit/core/vcockpit.d.ts","../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","../../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/pages/vcockpit/instruments/shared/utils/xmllogic.d.ts","../../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/pages/vcockpit/instruments/shared/baseinstrument.d.ts","../../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/netbingmap.d.ts","../../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/types.d.ts","../../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/simplane.d.ts","../../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/simvar.d.ts","../../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/common.d.ts","../../node_modules/.pnpm/@microsoft+msfs-sdk@2.0.5/node_modules/@microsoft/msfs-sdk/msfssdk.d.ts","../src/components/test/test.tsx","../src/index.tsx"],"fileIdsList":[[31,39],[30,31,39,40],[32,33,34,35,36,37,38]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1d242d5c24cf285c88bc4fb93c5ff903de8319064e282986edeb6247ba028d5e","impliedFormat":1},{"version":"d0e443178a1a636f76e429d9670724bf4eae48e32fdfb059de61532b40b5c530","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"96ee5faa7c6e27d7bee0f486995ac26a8f516f34332253d9e456a20cd3e4d3fd","affectsGlobalScope":true,"impliedFormat":1},{"version":"637721ee6467debad655d422789d062df43031f074117002e9ca48ab6afa7e13","affectsGlobalScope":true,"impliedFormat":1},{"version":"5ebf697e60f23921bd3dbda30676248797f798c1707fb3d394ea845a84b66b70","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d52748a319f8d8a199c9b8a4ce489295c6bf14392db33a8dc787b87796d9088","affectsGlobalScope":true,"impliedFormat":1},{"version":"dfce6257bbf8a8418ba2d72bb052ddd136dbf7627be5055aa2c55da380d5f8f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8103f3f5b87808999d1b36f9b96cad985b89f2cf810859dc938db802f07ead6","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2d2f777efc77c8da9a39734b33436d5db626bff5ff64a5e181742ff426901bf","affectsGlobalScope":true,"impliedFormat":1},{"version":"ad544ca26f68efb41d527bbbe10a85bc395a02ea56fa365b4d9e9d04e479913c","impliedFormat":1},"a2cb432cf73145c6759d847563970e6435d993616f7f8a384b27faeb22f6940e","0da2911b3be78419595c7daac50a0456a896444d16decf40c87693b493049027"],"root":[40,41],"options":{"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"inlineSources":true,"jsx":2,"module":5,"noEmitHelpers":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":4},"referencedMap":[[40,1],[41,2],[39,3]],"version":"5.7.3"} \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/src/components/test/test.js b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/src/components/test/test.js new file mode 100644 index 0000000..797a623 --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/src/components/test/test.js @@ -0,0 +1,7 @@ +import { FSComponent, DisplayComponent } from "@microsoft/msfs-sdk"; +export class Test extends DisplayComponent { + render() { + return FSComponent.buildComponent("div", { class: "test" }, "Hello World!"); + } +} +//# sourceMappingURL=test.js.map \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/src/components/test/test.js.map b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/src/components/test/test.js.map new file mode 100644 index 0000000..582ae3a --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/src/components/test/test.js.map @@ -0,0 +1 @@ +{"version":3,"file":"test.js","sourceRoot":"","sources":["test.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAS,MAAM,qBAAqB,CAAC;AAE3E,MAAM,OAAO,IAAK,SAAQ,gBAAqB;IACtC,MAAM;QACX,OAAO,oCAAK,KAAK,EAAC,MAAM,mBAAmB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["import { FSComponent, DisplayComponent, VNode } from \"@microsoft/msfs-sdk\";\r\n\r\nexport class Test extends DisplayComponent {\r\n public render(): VNode {\r\n return
Hello World!
;\r\n }\r\n}\r\n"]} \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/src/index.js b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/src/index.js new file mode 100644 index 0000000..101a7b2 --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/src/index.js @@ -0,0 +1,14 @@ +/// +import { FSComponent } from "@microsoft/msfs-sdk"; +import { Test } from "./components/test/test"; +class KH_FE_FPLAN extends BaseInstrument { + get templateID() { + return "KH_FE_FPLAN"; + } + connectedCallback() { + super.connectedCallback(); + FSComponent.render(FSComponent.buildComponent(Test, null), document.getElementById("InstrumentContent")); + } +} +registerInstrument("KH_FE_FPLAN", KH_FE_FPLAN); +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/src/index.js.map b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/src/index.js.map new file mode 100644 index 0000000..e44a785 --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/Gauge/src/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["index.tsx"],"names":[],"mappings":"AAAA,4EAA4E;AAE5E,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAE9C,MAAM,WAAY,SAAQ,cAAc;IACtC,IAAI,UAAU;QACZ,OAAO,aAAa,CAAC;IACvB,CAAC;IAEM,iBAAiB;QACtB,KAAK,CAAC,iBAAiB,EAAE,CAAC;QAE1B,WAAW,CAAC,MAAM,CAAC,2BAAC,IAAI,OAAG,EAAE,QAAQ,CAAC,cAAc,CAAC,mBAAmB,CAAC,CAAC,CAAC;IAC7E,CAAC;CACF;AAED,kBAAkB,CAAC,aAAa,EAAE,WAAW,CAAC,CAAC","sourcesContent":["/// \r\n\r\nimport { FSComponent } from \"@microsoft/msfs-sdk\";\r\nimport { Test } from \"./components/test/test\";\r\n\r\nclass KH_FE_FPLAN extends BaseInstrument {\r\n get templateID(): string {\r\n return \"KH_FE_FPLAN\";\r\n }\r\n\r\n public connectedCallback(): void {\r\n super.connectedCallback();\r\n\r\n FSComponent.render(, document.getElementById(\"InstrumentContent\"));\r\n }\r\n}\r\n\r\nregisterInstrument(\"KH_FE_FPLAN\", KH_FE_FPLAN);\r\n"]} \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/components/test/test.js b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/components/test/test.js new file mode 100644 index 0000000..797a623 --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/components/test/test.js @@ -0,0 +1,7 @@ +import { FSComponent, DisplayComponent } from "@microsoft/msfs-sdk"; +export class Test extends DisplayComponent { + render() { + return FSComponent.buildComponent("div", { class: "test" }, "Hello World!"); + } +} +//# sourceMappingURL=test.js.map \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/components/test/test.js.map b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/components/test/test.js.map new file mode 100644 index 0000000..c0a44c5 --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/components/test/test.js.map @@ -0,0 +1 @@ +{"version":3,"file":"test.js","sourceRoot":"","sources":["../../../Gauge/src/components/test/test.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,gBAAgB,EAAS,MAAM,qBAAqB,CAAC;AAE3E,MAAM,OAAO,IAAK,SAAQ,gBAAqB;IACtC,MAAM;QACX,OAAO,oCAAK,KAAK,EAAC,MAAM,mBAAmB,CAAC;IAC9C,CAAC;CACF","sourcesContent":["import { FSComponent, DisplayComponent, VNode } from \"@microsoft/msfs-sdk\";\r\n\r\nexport class Test extends DisplayComponent {\r\n public render(): VNode {\r\n return
Hello World!
;\r\n }\r\n}\r\n"]} \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/index.js b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/index.js new file mode 100644 index 0000000..101a7b2 --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/index.js @@ -0,0 +1,14 @@ +/// +import { FSComponent } from "@microsoft/msfs-sdk"; +import { Test } from "./components/test/test"; +class KH_FE_FPLAN extends BaseInstrument { + get templateID() { + return "KH_FE_FPLAN"; + } + connectedCallback() { + super.connectedCallback(); + FSComponent.render(FSComponent.buildComponent(Test, null), document.getElementById("InstrumentContent")); + } +} +registerInstrument("KH_FE_FPLAN", KH_FE_FPLAN); +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/index.js.map b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/index.js.map new file mode 100644 index 0000000..3c66848 --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../Gauge/src/index.tsx"],"names":[],"mappings":"AAAA,4EAA4E;AAE5E,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAE9C,MAAM,WAAY,SAAQ,cAAc;IACtC,IAAI,UAAU;QACZ,OAAO,aAAa,CAAC;IACvB,CAAC;IAEM,iBAAiB;QACtB,KAAK,CAAC,iBAAiB,EAAE,CAAC;QAE1B,WAAW,CAAC,MAAM,CAAC,2BAAC,IAAI,OAAG,EAAE,QAAQ,CAAC,cAAc,CAAC,mBAAmB,CAAC,CAAC,CAAC;IAC7E,CAAC;CACF;AAED,kBAAkB,CAAC,aAAa,EAAE,WAAW,CAAC,CAAC","sourcesContent":["/// \r\n\r\nimport { FSComponent } from \"@microsoft/msfs-sdk\";\r\nimport { Test } from \"./components/test/test\";\r\n\r\nclass KH_FE_FPLAN extends BaseInstrument {\r\n get templateID(): string {\r\n return \"KH_FE_FPLAN\";\r\n }\r\n\r\n public connectedCallback(): void {\r\n super.connectedCallback();\r\n\r\n FSComponent.render(, document.getElementById(\"InstrumentContent\"));\r\n }\r\n}\r\n\r\nregisterInstrument(\"KH_FE_FPLAN\", KH_FE_FPLAN);\r\n"]} \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/tsconfig.tsbuildinfo b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/tsconfig.tsbuildinfo new file mode 100644 index 0000000..06ba040 --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/build/tsconfig.tsbuildinfo @@ -0,0 +1 @@ +{"fileNames":["../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/pages/vcockpit/core/vcockpit.d.ts","../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/pages/vcockpit/instruments/shared/utils/xmllogic.d.ts","../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/pages/vcockpit/instruments/shared/baseinstrument.d.ts","../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/netbingmap.d.ts","../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/types.d.ts","../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/simplane.d.ts","../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/simvar.d.ts","../node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/common.d.ts","../node_modules/.pnpm/@microsoft+msfs-sdk@2.0.5/node_modules/@microsoft/msfs-sdk/msfssdk.d.ts","../gauge/src/components/test/test.tsx","../gauge/src/index.tsx"],"fileIdsList":[[31,39],[30,31,39,40],[32,33,34,35,36,37,38]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1d242d5c24cf285c88bc4fb93c5ff903de8319064e282986edeb6247ba028d5e","impliedFormat":1},{"version":"d0e443178a1a636f76e429d9670724bf4eae48e32fdfb059de61532b40b5c530","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"96ee5faa7c6e27d7bee0f486995ac26a8f516f34332253d9e456a20cd3e4d3fd","affectsGlobalScope":true,"impliedFormat":1},{"version":"637721ee6467debad655d422789d062df43031f074117002e9ca48ab6afa7e13","affectsGlobalScope":true,"impliedFormat":1},{"version":"5ebf697e60f23921bd3dbda30676248797f798c1707fb3d394ea845a84b66b70","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d52748a319f8d8a199c9b8a4ce489295c6bf14392db33a8dc787b87796d9088","affectsGlobalScope":true,"impliedFormat":1},{"version":"dfce6257bbf8a8418ba2d72bb052ddd136dbf7627be5055aa2c55da380d5f8f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8103f3f5b87808999d1b36f9b96cad985b89f2cf810859dc938db802f07ead6","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2d2f777efc77c8da9a39734b33436d5db626bff5ff64a5e181742ff426901bf","affectsGlobalScope":true,"impliedFormat":1},{"version":"ad544ca26f68efb41d527bbbe10a85bc395a02ea56fa365b4d9e9d04e479913c","impliedFormat":1},"a2cb432cf73145c6759d847563970e6435d993616f7f8a384b27faeb22f6940e","0da2911b3be78419595c7daac50a0456a896444d16decf40c87693b493049027"],"root":[40,41],"options":{"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"inlineSources":true,"jsx":2,"module":5,"noEmitHelpers":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":4},"referencedMap":[[40,1],[41,2],[39,3]],"version":"5.7.3"} \ No newline at end of file diff --git a/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/tsconfig.tsbuildinfo b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/tsconfig.tsbuildinfo new file mode 100644 index 0000000..b158244 --- /dev/null +++ b/.rollup.cache/C/Users/llego/Documents/MyFSProjects/xkhofmann-fss-aircraft-boeing-727-200f-sb-fplan/tsconfig.tsbuildinfo @@ -0,0 +1 @@ +{"fileNames":["./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es5.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.scripthost.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.full.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/pages/vcockpit/core/vcockpit.d.ts","./node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/pages/vcockpit/instruments/shared/utils/xmllogic.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/pages/vcockpit/instruments/shared/baseinstrument.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/netbingmap.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/types.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/simplane.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/simvar.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/common.d.ts","./node_modules/.pnpm/@microsoft+msfs-sdk@2.0.5/node_modules/@microsoft/msfs-sdk/msfssdk.d.ts","./gauge/src/components/test/test.tsx","./gauge/src/index.tsx"],"fileIdsList":[[31,39],[30,31,39,40],[32,33,34,35,36,37,38]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1d242d5c24cf285c88bc4fb93c5ff903de8319064e282986edeb6247ba028d5e","impliedFormat":1},{"version":"d0e443178a1a636f76e429d9670724bf4eae48e32fdfb059de61532b40b5c530","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"96ee5faa7c6e27d7bee0f486995ac26a8f516f34332253d9e456a20cd3e4d3fd","affectsGlobalScope":true,"impliedFormat":1},{"version":"637721ee6467debad655d422789d062df43031f074117002e9ca48ab6afa7e13","affectsGlobalScope":true,"impliedFormat":1},{"version":"5ebf697e60f23921bd3dbda30676248797f798c1707fb3d394ea845a84b66b70","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d52748a319f8d8a199c9b8a4ce489295c6bf14392db33a8dc787b87796d9088","affectsGlobalScope":true,"impliedFormat":1},{"version":"dfce6257bbf8a8418ba2d72bb052ddd136dbf7627be5055aa2c55da380d5f8f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8103f3f5b87808999d1b36f9b96cad985b89f2cf810859dc938db802f07ead6","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2d2f777efc77c8da9a39734b33436d5db626bff5ff64a5e181742ff426901bf","affectsGlobalScope":true,"impliedFormat":1},{"version":"ad544ca26f68efb41d527bbbe10a85bc395a02ea56fa365b4d9e9d04e479913c","impliedFormat":1},"a2cb432cf73145c6759d847563970e6435d993616f7f8a384b27faeb22f6940e","0da2911b3be78419595c7daac50a0456a896444d16decf40c87693b493049027"],"root":[40,41],"options":{"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"inlineSources":true,"jsx":2,"module":5,"noEmitHelpers":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":4},"referencedMap":[[40,1],[41,2],[39,3]],"version":"5.7.3"} \ No newline at end of file diff --git a/Blender/FSS-FLPAN.blend b/Blender/FSS-FLPAN.blend index 022e643..5d77dfd 100644 Binary files a/Blender/FSS-FLPAN.blend and b/Blender/FSS-FLPAN.blend differ diff --git a/Blender/FSS-FLPAN.blend1 b/Blender/FSS-FLPAN.blend1 index 6ef76a1..917962a 100644 Binary files a/Blender/FSS-FLPAN.blend1 and b/Blender/FSS-FLPAN.blend1 differ diff --git a/Gauge/src/components/test/test.tsx b/Gauge/src/components/test/test.tsx new file mode 100644 index 0000000..5660ea2 --- /dev/null +++ b/Gauge/src/components/test/test.tsx @@ -0,0 +1,7 @@ +import { FSComponent, DisplayComponent, VNode } from "@microsoft/msfs-sdk"; + +export class Test extends DisplayComponent { + public render(): VNode { + return
Hello World!
; + } +} diff --git a/Gauge/src/index.html b/Gauge/src/index.html new file mode 100644 index 0000000..021faa7 --- /dev/null +++ b/Gauge/src/index.html @@ -0,0 +1,6 @@ + + + + diff --git a/Gauge/src/index.tsx b/Gauge/src/index.tsx new file mode 100644 index 0000000..b1e2013 --- /dev/null +++ b/Gauge/src/index.tsx @@ -0,0 +1,18 @@ +/// + +import { FSComponent } from "@microsoft/msfs-sdk"; +import { Test } from "./components/test/test"; + +class KH_FE_FPLAN extends BaseInstrument { + get templateID(): string { + return "KH_FE_FPLAN"; + } + + public connectedCallback(): void { + super.connectedCallback(); + + FSComponent.render(, document.getElementById("InstrumentContent")); + } +} + +registerInstrument("KH_FE_FPLAN", KH_FE_FPLAN); diff --git a/MyLayout.ini b/MyLayout.ini deleted file mode 100644 index 0081d5d..0000000 --- a/MyLayout.ini +++ /dev/null @@ -1,779 +0,0 @@ -[Window][DockSpace] -Pos=0,22 -Size=1920,987 -Collapsed=0 - -[Window][Debug##Default] -Pos=60,60 -Size=400,400 -Collapsed=0 - -[Window][Console] -Pos=0,757 -Size=1920,252 -Collapsed=0 -DockId=0x00000007,0 - -[Window][Ruler] -Pos=67,29 -Size=450,196 -Collapsed=0 - -[Window][Teleport Window] -Pos=35,168 -Size=443,442 -Collapsed=0 - -[Window][ModelBehaviourDebug] -ViewportPos=0,0 -ViewportId=0x680EA0C7 -Size=600,1000 -Collapsed=0 - -[Window][###Virtual File System] -ViewportPos=434,196 -ViewportId=0x0E7087E1 -Size=568,987 -Collapsed=0 - -[Window][User Lights] -Pos=44,49 -Size=962,864 -Collapsed=0 - -[Window][Developer Camera Settings] -Pos=60,37 -Size=159,77 -Collapsed=0 - -[Window][Aircraft Selector] -Pos=0,734 -Size=1920,252 -Collapsed=0 -DockId=0x00000004,1 - -[Window][###Project Editor:Inspector] -Pos=0,22 -Size=700,624 -Collapsed=0 -DockId=0x00000001,1 - -[Window][Create New Project] -Pos=660,456 -Size=600,104 -Collapsed=0 - -[Window][###Project Editor] -Pos=0,22 -Size=147,733 -Collapsed=0 -DockId=0x00000001,0 - -[Window][###Aircraft Editor] -Pos=1106,36 -Size=696,800 -Collapsed=0 - -[Window][Asset Selector] -Pos=769,135 -Size=400,500 -Collapsed=0 - -[Window][Add Package] -Pos=806,458 -Size=312,100 -Collapsed=0 - -[Window][###Aircraft Editor:Gizmo] -Pos=600,200 -Size=300,210 -Collapsed=0 - -[Window][Containers] -Pos=143,114 -Size=1373,800 -Collapsed=0 - -[Window][SDK Updates] -Pos=289,215 -Size=1234,484 -Collapsed=0 - -[Window][###Packages] -ViewportPos=6,136 -ViewportId=0x6C0E2317 -Size=1557,987 -Collapsed=0 - -[Window][###Statistics Profiler] -Pos=0,547 -Size=1920,439 -Collapsed=0 -DockId=0x00000005,1 - -[Window][FlightObjectsDisplay] -Pos=691,161 -Size=408,86 -Collapsed=0 - -[Window][InGamePOI] -ViewportPos=-48,73 -ViewportId=0x6A5AB4F0 -Size=338,1026 -Collapsed=0 - -[Window][###Project Editor:Fill in the creator and company names] -Pos=670,409 -Size=580,128 -Collapsed=0 - -[Window][###Project Editor:Create new project] -Pos=680,356 -Size=560,250 -Collapsed=0 - -[Window][###Project Editor:Add package] -Pos=759,429 -Size=401,150 -Collapsed=0 - -[Window][###Project Editor:Wizard selection] -Pos=724,387 -Size=472,364 -Collapsed=0 - -[Window][###Project Editor:Add custom asset group] -Pos=337,398 -Size=657,302 -Collapsed=0 - -[Window][Debug Aircraft Sim Info] -ViewportPos=876,458 -ViewportId=0x3DD03744 -Size=942,648 -Collapsed=0 -DockId=0x00000002,2 - -[Window][Debug Aircraft Sim Curves] -Pos=131,151 -Size=1286,825 -Collapsed=0 - -[Window][Debug Aircraft Engines] -Pos=62,19 -Size=1368,957 -Collapsed=0 - -[Window][Debug Aircraft Sim Tuning] -ViewportPos=876,458 -ViewportId=0x3DD03744 -Size=942,648 -Collapsed=0 -DockId=0x00000002,3 - -[Window][Debug Aircraft Weight] -Pos=486,77 -Size=871,871 -Collapsed=0 - -[Window][SimObjects stats] -Pos=48,154 -Size=600,800 -Collapsed=0 - -[Window][###Aircraft Thumbnail Capture tool] -Pos=117,209 -Size=400,800 -Collapsed=0 - -[Window][BehaviourDebug] -Pos=58,59 -Size=1026,595 -Collapsed=0 - -[Window][Position##Net Bing position window] -Pos=477,240 -Size=361,228 -Collapsed=0 - -[Window][###Aircraft Capture Tool] -Pos=687,149 -Size=1099,816 -Collapsed=0 - -[Window][###Project Editor:Build finished] -Pos=623,418 -Size=674,110 -Collapsed=0 - -[Window][Wasm Debug] -Pos=292,76 -Size=1292,814 -Collapsed=0 - -[Window][###SDK launch alert] -Pos=669,183 -Size=600,550 -Collapsed=0 - -[Window][Confirm Forcing All LOD Loading] -Pos=544,406 -Size=832,104 -Collapsed=0 - -[Window][Scenery package order] -ViewportPos=362,-1 -ViewportId=0x59B89DF7 -Size=428,1026 -Collapsed=0 - -[Window][Sim] -Pos=149,22 -Size=1771,733 -Collapsed=0 - -[Window][###Scenery Editor] -Pos=106,184 -Size=642,749 -Collapsed=0 - -[Window][###Scenery Editor:Objects] -ViewportPos=1480,532 -ViewportId=0xC403EDBF -Size=569,466 -Collapsed=0 - -[Window][###Material Editor] -Pos=57,85 -Size=772,856 -Collapsed=0 - -[Window][Debug Aircraft Ground Effect] -ViewportPos=13,206 -ViewportId=0x4C654A26 -Size=841,828 -Collapsed=0 - -[Window][Debug Aircraft CFD] -Pos=527,38 -Size=1006,387 -Collapsed=0 - -[Window][Debug Aircraft Stall] -Pos=309,157 -Size=1001,789 -Collapsed=0 - -[Window][Debug Aircraft Drag] -ViewportPos=0,49 -ViewportId=0xB5A9DF30 -Size=1922,962 -Collapsed=1 - -[Window][Debug Aircraft AP] -Pos=11,111 -Size=708,897 -Collapsed=0 - -[Window][Debug Aircraft Legacy] -Pos=3,16 -Size=756,564 -Collapsed=0 -DockId=0x00000002,2 - -[Window][Debug Aircraft Sim Polar VhVs] -Pos=60,37 -Size=966,850 -Collapsed=0 - -[Window][Debug Aircraft Tracking] -ViewportPos=876,458 -ViewportId=0x3DD03744 -Size=942,648 -Collapsed=0 -DockId=0x00000002,0 - -[Window][Debug Aircraft Data] -ViewportPos=876,458 -ViewportId=0x3DD03744 -Size=942,648 -Collapsed=0 -DockId=0x00000002,1 - -[Window][Debug Aircraft Speed] -Pos=3,0 -Size=756,564 -Collapsed=0 -DockId=0x00000002,1 - -[Window][Debug Aircraft Pitch] -Pos=869,135 -Size=701,154 -Collapsed=0 - -[Window][Debug Aircraft Polar ClCd] -Pos=609,191 -Size=958,675 -Collapsed=0 - -[Window][Debug Aircraft Sim Polar Power] -Pos=34,32 -Size=1255,858 -Collapsed=0 - -[Window][Debug Aircraft Wheels] -ViewportPos=6,1 -ViewportId=0xAB43E6E2 -Size=722,1026 -Collapsed=0 - -[Window][Debug Weather Sim] -ViewportPos=148,657 -ViewportId=0x64B31DB5 -Size=1728,928 -Collapsed=0 - -[Window][ElectricalSystemDebug] -Pos=558,263 -Size=1229,437 -Collapsed=0 - -[Window][SimConnect Inspector] -Pos=0,815 -Size=1920,194 -Collapsed=0 -DockId=0x00000003,2 - -[Window][Exclusion debug] -Pos=60,60 -Size=254,548 -Collapsed=0 - -[Window][###Project Editor:Publishing Item selection] -Pos=685,374 -Size=550,215 -Collapsed=0 - -[Window][###Project Editor:Import Item] -Pos=729,412 -Size=461,138 -Collapsed=0 - -[Window][###Project Editor:Export items] -Pos=560,204 -Size=800,600 -Collapsed=0 - -[Window][###Project Editor:Export finished] -Pos=525,449 -Size=870,110 -Collapsed=0 - -[Window][###Scenery Editor:Properties] -Pos=1463,50 -Size=439,400 -Collapsed=0 - -[Window][###Project Editor:Removing options] -Pos=660,397 -Size=600,215 -Collapsed=0 - -[Window][###Project Editor:Bundle or Pack Creation] -Pos=710,354 -Size=500,300 -Collapsed=0 - -[Window][###Script Editor] -Pos=100,200 -Size=400,800 -Collapsed=0 - -[Window][###Script Editor:Inspector] -Pos=400,200 -Size=400,800 -Collapsed=0 - -[Window][###Script Editor:Node Graph] -Pos=1208,322 -Size=400,400 -Collapsed=0 - -[Window][###Project Editor:Undo History - Project Editor] -Pos=50,200 -Size=200,400 -Collapsed=0 - -[Window][###Project Editor:Error List] -Pos=1099,22 -Size=821,987 -Collapsed=0 -DockId=0x00000008,0 - -[Window][###Visual Effects Editor] -Pos=100,154 -Size=400,800 -Collapsed=0 - -[Window][###Visual Effects Editor:Inspector] -Pos=400,177 -Size=400,800 -Collapsed=0 - -[Window][###Visual Effects Editor:Node List] -Pos=400,177 -Size=400,800 -Collapsed=0 - -[Window][###Visual Effects Editor:Node Graph] -Pos=301,396 -Size=400,200 -Collapsed=0 - -[Window][###Project Editor:Clean publishing item error] -ViewportPos=640,407 -ViewportId=0x6781E3A3 -Size=640,240 -Collapsed=0 - -[Window][Debug Vegetation] -Pos=60,37 -Size=548,300 -Collapsed=0 - -[Window][Debug LODs] -Pos=54,68 -Size=436,628 -Collapsed=0 - -[Window][###Project Editor:Airport creation] -Pos=696,390 -Size=528,182 -Collapsed=0 - -[Window][###Material Editor:Material Inspector] -Pos=50,50 -Size=400,800 -Collapsed=0 - -[Window][###Scenery Editor:Gizmo] -Pos=600,200 -Size=300,210 -Collapsed=0 - -[Window][Select airport] -Pos=760,356 -Size=400,250 -Collapsed=0 - -[Window][###Project Editor:Paths to be renamed] -Pos=460,419 -Size=1000,170 -Collapsed=0 - -[Window][Action StateMachine] -Pos=112,185 -Size=155,74 -Collapsed=0 - -[Window][###Project Editor:Aircraft creation] -Pos=402,319 -Size=562,248 -Collapsed=0 - -[Table][0xD2BDBE04,5] -RefScale=16 -Column 0 Width=30 Order=0 -Column 1 Width=55 Order=1 Sort=0v -Column 2 Weight=1.0000 Order=3 -Column 3 Width=179 Order=2 -Column 4 Width=4 Order=4 - -[Table][0x283E85F3,10] -Column 0 Weight=0.5922 Visible=1 -Column 1 Weight=4.3263 Visible=1 -Column 2 Weight=0.9705 Visible=1 -Column 3 Weight=5.0007 Visible=1 -Column 4 Weight=5.0000 Visible=1 -Column 5 Weight=0.7731 Visible=1 -Column 6 Weight=4.7046 Visible=1 Sort=0v -Column 7 Weight=2.7142 Visible=1 -Column 8 Weight=2.8951 Visible=1 -Column 9 Weight=2.0233 Visible=1 - -[Table][0xC89A75DC,2] -RefScale=16 -Column 0 Weight=1.0000 -Column 1 Width=129 - -[Table][0x89FC986F,2] -RefScale=16 -Column 0 Weight=1.0000 -Column 1 Width=210 - -[Table][0x4E35ABC4,3] -RefScale=16 -Column 0 Width=255 -Column 1 Width=100 -Column 2 Weight=1.0000 - -[Table][0xDAC489F2,3] -RefScale=16 -Column 0 Width=100 -Column 1 Width=100 -Column 2 Weight=1.0000 - -[Table][0x3E2BBAAE,7] -RefScale=16 -Column 0 Width=30 -Column 1 Width=100 -Column 2 Weight=1.0000 -Column 3 Width=50 -Column 4 Weight=1.0000 -Column 5 Width=100 -Column 6 Width=50 - -[Table][0x0F2CFBA7,2] -RefScale=16 -Column 0 Width=150 -Column 1 Weight=1.0000 - -[Table][0xE1FAD545,3] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Width=25 - -[Table][0x4E7C28D1,3] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Width=25 - -[Table][0x69E94729,2] -RefScale=16 -Column 0 Width=150 -Column 1 Weight=1.0000 - -[Table][0x4561AF10,8] -RefScale=16 -Column 0 Width=22 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Weight=1.0000 -Column 4 Weight=1.0000 -Column 5 Weight=1.0000 -Column 6 Weight=1.0000 -Column 7 Weight=1.0000 - -[Table][0x1EC98EE8,2] -Column 0 Weight=1.0000 -Column 1 Weight=1.0000 - -[Table][0x2164DEE5,2] -RefScale=16 -Column 0 Weight=1.0000 -Column 1 Width=51 - -[Table][0x140E1AEE,2] -Column 0 Weight=1.0000 -Column 1 Weight=1.0000 - -[Table][0x0B5DD78E,2] -Column 0 Weight=1.0000 -Column 1 Weight=1.0000 - -[Table][0x67EDF12A,5] -RefScale=16 -Column 0 Width=16 -Column 1 Width=190 -Column 2 Width=132 -Column 3 Weight=1.0000 -Column 4 Weight=1.0000 - -[Table][0x4BEBB621,2] -RefScale=16 -Column 0 Width=16 -Column 1 Weight=1.0000 - -[Table][0x0E53EAE0,2] -RefScale=16 -Column 0 Weight=1.0000 -Column 1 Width=51 - -[Table][0x25949493,4] -RefScale=16 -Column 0 Width=16 -Column 1 Width=153 -Column 2 Weight=1.0000 -Column 3 Width=59 - -[Table][0x201B584F,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x5F489108,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0xC1AC8150,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x96962D95,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x4E209E0C,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x90AC7254,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x6AB977DE,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x32C34D14,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x3BD7D55D,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x1A6F6016,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0xFF6FD775,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x9D8B9076,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x5B92C5EA,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0xD97712A5,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x4E4A0E59,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x27A84CFE,4] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Width=25 - -[Table][0x24666411,2] -RefScale=16 -Column 0 Width=150 -Column 1 Weight=1.0000 - -[Table][0x6647F3C5,2] -RefScale=16 -Column 0 Width=150 -Column 1 Weight=1.0000 - -[Table][0xA714D239,2] -RefScale=16 -Column 0 Width=150 -Column 1 Weight=1.0000 - -[Table][0x8393FC15,7] -Column 0 Weight=1.0000 -Column 1 Weight=1.0000 -Column 2 Weight=1.0000 -Column 3 Weight=1.0000 -Column 4 Weight=0.6803 -Column 5 Weight=1.3197 -Column 6 Weight=1.0000 - -[Table][0x96772355,3] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Width=25 - -[Table][0x3C36B393,3] -RefScale=16 -Column 0 Width=50 -Column 1 Weight=1.0000 -Column 2 Width=25 - -[Table][0x82DE5BE9,8] -Column 0 Weight=1.2483 Sort=0v -Column 1 Weight=0.7448 -Column 2 Weight=0.9931 -Column 3 Weight=1.0000 -Column 4 Weight=1.0000 -Column 5 Weight=1.0000 -Column 6 Weight=1.0069 -Column 7 Weight=1.0069 - -[Docking][Data] -DockSpace ID=0x8E673552 Window=0x9A404470 Pos=0,45 Size=1920,987 Split=Y Selected=0x0E7087E1 - DockNode ID=0x00000006 Parent=0x8E673552 SizeRef=1920,733 Split=Y - DockNode ID=0x00000003 Parent=0x00000006 SizeRef=1920,733 Split=X - DockNode ID=0x00000001 Parent=0x00000003 SizeRef=147,987 Selected=0x4D53C840 - DockNode ID=0x00000002 Parent=0x00000003 SizeRef=1771,987 Split=X - DockNode ID=0x00000005 Parent=0x00000002 SizeRef=0,0 CentralNode=1 Selected=0x49278EEE - DockNode ID=0x00000008 Parent=0x00000002 SizeRef=821,928 Selected=0xB2CC244E - DockNode ID=0x00000004 Parent=0x00000006 SizeRef=1920,252 Selected=0xD8501777 - DockNode ID=0x00000007 Parent=0x8E673552 SizeRef=1920,252 Selected=0x49278EEE - diff --git a/PackageSources/SimObjects/Airplanes/FSS_Boeing_727_200F/model/B727_interior.xml b/PackageSources/SimObjects/Airplanes/FSS_Boeing_727_200F/model/B727_interior.xml index fdc8eef..8bc584b 100644 --- a/PackageSources/SimObjects/Airplanes/FSS_Boeing_727_200F/model/B727_interior.xml +++ b/PackageSources/SimObjects/Airplanes/FSS_Boeing_727_200F/model/B727_interior.xml @@ -497,7 +497,7 @@ - + Hand @@ -518,7 +518,7 @@ (L:KH_FE_FPLAN_BOARD) 30 * - + KH_FE_FPLAN 30 @@ -526,6 +526,11 @@ (L:KH_FE_FPLAN_P1) 30 * + + + (L:KH_FE_FPLAN_P1) 0 == + + diff --git a/PackageSources/SimObjects/Airplanes/FSS_Boeing_727_200F/panel/panel.cfg b/PackageSources/SimObjects/Airplanes/FSS_Boeing_727_200F/panel/panel.cfg index fe1481c..e0dcadc 100644 --- a/PackageSources/SimObjects/Airplanes/FSS_Boeing_727_200F/panel/panel.cfg +++ b/PackageSources/SimObjects/Airplanes/FSS_Boeing_727_200F/panel/panel.cfg @@ -189,10 +189,20 @@ htmlgauge00= FSS_B727/RadioScreens/RadioScreens.html?index=2&type=adf, 0, 0, 378 ; KHOFMANN START [VCockpit29] -size_mm = 210, 297 -pixel_size = 744, 1052 -texture = KH_FE_FPLAN_P1 -htmlgauge00= FSS_B727/KH_FE_FPLAN/FPLAN.html, 0, 0, 378, 320 +background_color = 0,0,0 +size_mm = 840, 1188 +pixel_size = 840, 1188 +texture = $KH_FE_FPLAN_P1 +htmlgauge00= FSS_B727/KH_FE_FPLAN/index.html?type=ofp, 0, 0, 840, 1188 +emissive = 0 + +[VCockpit30] +background_color = 0,0,0 +size_mm = 840, 1188 +pixel_size = 840, 1188 +texture = $KH_FE_FPLAN_P2 +htmlgauge00= FSS_B727/KH_FE_FPLAN/index.html?type=tlr, 0, 0, 840, 1188 +emissive = 0 ; KHOFMANN END [VPainting01] diff --git a/PackageSources/SimObjects/Misc/fss-aircraft-boeing-727-200f-sb-fplan/model/sb-fplan.bin b/PackageSources/SimObjects/Misc/fss-aircraft-boeing-727-200f-sb-fplan/model/sb-fplan.bin index 9ccc932..661c317 100644 Binary files a/PackageSources/SimObjects/Misc/fss-aircraft-boeing-727-200f-sb-fplan/model/sb-fplan.bin and b/PackageSources/SimObjects/Misc/fss-aircraft-boeing-727-200f-sb-fplan/model/sb-fplan.bin differ diff --git a/PackageSources/SimObjects/Misc/fss-aircraft-boeing-727-200f-sb-fplan/model/sb-fplan.gltf b/PackageSources/SimObjects/Misc/fss-aircraft-boeing-727-200f-sb-fplan/model/sb-fplan.gltf index ae3411f..7ea0473 100644 --- a/PackageSources/SimObjects/Misc/fss-aircraft-boeing-727-200f-sb-fplan/model/sb-fplan.gltf +++ b/PackageSources/SimObjects/Misc/fss-aircraft-boeing-727-200f-sb-fplan/model/sb-fplan.gltf @@ -19,8 +19,7 @@ { "name": "Scene", "nodes": [ - 13, - 14 + 2 ] } ], @@ -60,205 +59,15 @@ "name": "KH_FE_FPLAN_P2", "translation": [ 0, - -0.010000407695770264, - 0.0014985650777816772 + -0.010025441646575928, + 0.0016529858112335205 ] }, { - "extensions": { - "ASOBO_unique_id": { - "id": "KH_BONE008" - } - }, - "name": "KH_BONE008", - "rotation": [ - 2.890080213546753e-05, + "children": [ 0, - 1.1254996934439987e-11, 1 ], - "translation": [ - -7.968317561335425e-08, - 0.033000439405441284, - 1.2579110375554592e-07 - ] - }, - { - "children": [ - 2 - ], - "extensions": { - "ASOBO_unique_id": { - "id": "KH_BONE007" - } - }, - "name": "KH_BONE007", - "translation": [ - -7.96828487636958e-08, - 0.03299975395202637, - -1.3047203992755385e-06 - ] - }, - { - "children": [ - 3 - ], - "extensions": { - "ASOBO_unique_id": { - "id": "KH_BONE006" - } - }, - "name": "KH_BONE006", - "translation": [ - -7.968341719788441e-08, - 0.03299999237060547, - 1.0422124887554673e-06 - ] - }, - { - "children": [ - 4 - ], - "extensions": { - "ASOBO_unique_id": { - "id": "KH_BONE005" - } - }, - "name": "KH_BONE005", - "translation": [ - -7.968306192651653e-08, - 0.03299981355667114, - -2.370153424635646e-06 - ] - }, - { - "children": [ - 5 - ], - "extensions": { - "ASOBO_unique_id": { - "id": "KH_BONE004" - } - }, - "name": "KH_BONE004", - "translation": [ - -7.968317561335425e-08, - 0.033000051975250244, - 1.88412809620786e-06 - ] - }, - { - "children": [ - 6 - ], - "extensions": { - "ASOBO_unique_id": { - "id": "KH_BONE003" - } - }, - "name": "KH_BONE003", - "translation": [ - -7.968282744741373e-08, - 0.03299987316131592, - -1.4909849141986342e-06 - ] - }, - { - "children": [ - 7 - ], - "extensions": { - "ASOBO_unique_id": { - "id": "KH_BONE002" - } - }, - "name": "KH_BONE002", - "translation": [ - -7.968339588160234e-08, - 0.03299987316131592, - 8.633985544292955e-07 - ] - }, - { - "children": [ - 8 - ], - "extensions": { - "ASOBO_unique_id": { - "id": "KH_BONE001" - } - }, - "name": "KH_BONE001", - "translation": [ - -7.968304771566181e-08, - 0.03300011157989502, - -6.043658231646987e-07 - ] - }, - { - "children": [ - 9 - ], - "extensions": { - "ASOBO_unique_id": { - "id": "KH_BONE" - } - }, - "name": "KH_BONE", - "rotation": [ - 1.9470719792025193e-07, - 0, - -1, - 0 - ], - "translation": [ - 0.8823389410972595, - -2.2633981704711914, - 18.878217697143555 - ] - }, - { - "extensions": { - "ASOBO_unique_id": { - "id": "TARGET" - } - }, - "name": "TARGET", - "rotation": [ - 1.9470719792025193e-07, - 0, - -1, - 0 - ], - "translation": [ - 0.8823389410972595, - -2.5603981018066406, - 18.878217697143555 - ] - }, - { - "children": [ - 10, - 11 - ], - "extensions": { - "ASOBO_unique_id": { - "id": "KH_RIG" - } - }, - "name": "KH_RIG", - "translation": [ - -0.8823389410972595, - 2.411898136138916, - -18.878217697143555 - ] - }, - { - "children": [ - 0, - 1, - 12 - ], "extensions": { "ASOBO_unique_id": { "id": "KH_FE_FPLAN_BOARD" @@ -277,16 +86,6 @@ 0.5709999799728394, 19.02309799194336 ] - }, - { - "extensions": { - "ASOBO_unique_id": { - "id": "KH_FE_FPLAN_P1" - } - }, - "mesh": 3, - "name": "KH_FE_FPLAN_P1", - "skin": 0 } ], "animations": [ @@ -295,14 +94,14 @@ { "sampler": 0, "target": { - "node": 13, + "node": 2, "path": "translation" } }, { "sampler": 1, "target": { - "node": 13, + "node": 2, "path": "rotation" } } @@ -310,141 +109,14 @@ "name": "KH_FE_FPLAN_BOARD", "samplers": [ { - "input": 19, + "input": 12, "interpolation": "LINEAR", - "output": 20 + "output": 13 }, { - "input": 19, + "input": 12, "interpolation": "LINEAR", - "output": 21 - } - ] - }, - { - "channels": [ - { - "sampler": 0, - "target": { - "node": 9, - "path": "rotation" - } - }, - { - "sampler": 1, - "target": { - "node": 8, - "path": "rotation" - } - }, - { - "sampler": 2, - "target": { - "node": 7, - "path": "rotation" - } - }, - { - "sampler": 3, - "target": { - "node": 6, - "path": "rotation" - } - }, - { - "sampler": 4, - "target": { - "node": 5, - "path": "rotation" - } - }, - { - "sampler": 5, - "target": { - "node": 4, - "path": "rotation" - } - }, - { - "sampler": 6, - "target": { - "node": 3, - "path": "rotation" - } - }, - { - "sampler": 7, - "target": { - "node": 2, - "path": "rotation" - } - }, - { - "sampler": 8, - "target": { - "node": 11, - "path": "translation" - } - }, - { - "sampler": 9, - "target": { - "node": 11, - "path": "rotation" - } - } - ], - "name": "KH_FE_FPLAN", - "samplers": [ - { - "input": 22, - "interpolation": "LINEAR", - "output": 23 - }, - { - "input": 22, - "interpolation": "LINEAR", - "output": 24 - }, - { - "input": 22, - "interpolation": "LINEAR", - "output": 25 - }, - { - "input": 22, - "interpolation": "LINEAR", - "output": 26 - }, - { - "input": 22, - "interpolation": "LINEAR", - "output": 27 - }, - { - "input": 22, - "interpolation": "LINEAR", - "output": 28 - }, - { - "input": 22, - "interpolation": "LINEAR", - "output": 29 - }, - { - "input": 22, - "interpolation": "LINEAR", - "output": 30 - }, - { - "input": 22, - "interpolation": "LINEAR", - "output": 31 - }, - { - "input": 22, - "interpolation": "LINEAR", - "output": 32 + "output": 14 } ] } @@ -480,20 +152,39 @@ } }, { - "doubleSided": true, "emissiveFactor": [ 0, 0, 0 ], "extras": {}, - "name": "KH_FE_FLPAN_P2", - "normalTexture": { - "index": 0, - "scale": 1 + "name": "$KH_FE_FPLAN_P2", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 1, + 1, + 1, + 1 + ], + "metallicFactor": 1, + "roughnessFactor": 1 + } + }, + { + "alphaMode": "BLEND", + "emissiveFactor": [ + 0, + 0, + 0 + ], + "emissiveTexture": { + "index": 0 }, - "occlusionTexture": { - "index": 1 + "extras": {}, + "name": "FSS_B727_Pilot_Panelx", + "normalTexture": { + "index": 1, + "scale": 1 }, "pbrMetallicRoughness": { "baseColorFactor": [ @@ -506,71 +197,6 @@ "index": 2 }, "metallicFactor": 1, - "metallicRoughnessTexture": { - "index": 1 - }, - "roughnessFactor": 1 - } - }, - { - "emissiveFactor": [ - 0, - 0, - 0 - ], - "emissiveTexture": { - "index": 3 - }, - "extras": {}, - "name": "FSS_B727_Pilot_Panelx", - "normalTexture": { - "index": 4, - "scale": 1 - }, - "pbrMetallicRoughness": { - "baseColorFactor": [ - 1, - 1, - 1, - 1 - ], - "baseColorTexture": { - "index": 5 - }, - "metallicFactor": 1, - "roughnessFactor": 1 - } - }, - { - "doubleSided": true, - "emissiveFactor": [ - 0, - 0, - 0 - ], - "extras": {}, - "name": "KH_FE_FPLAN_P1", - "normalTexture": { - "index": 6, - "scale": 1 - }, - "occlusionTexture": { - "index": 7 - }, - "pbrMetallicRoughness": { - "baseColorFactor": [ - 1, - 1, - 1, - 1 - ], - "baseColorTexture": { - "index": 8 - }, - "metallicFactor": 1, - "metallicRoughnessTexture": { - "index": 7 - }, "roughnessFactor": 1 } } @@ -617,49 +243,9 @@ "material": 2 } ] - }, - { - "name": "Mesh", - "primitives": [ - { - "attributes": { - "POSITION": 12, - "NORMAL": 13, - "TEXCOORD_0": 14, - "JOINTS_0": 15, - "WEIGHTS_0": 16 - }, - "indices": 17, - "material": 3 - } - ] } ], "textures": [ - { - "sampler": 0, - "source": 0 - }, - { - "sampler": 0, - "source": 1 - }, - { - "sampler": 0, - "source": 2 - }, - { - "sampler": 0, - "source": 3 - }, - { - "sampler": 0, - "source": 4 - }, - { - "sampler": 0, - "source": 5 - }, { "sampler": 0, "source": 0 @@ -674,21 +260,6 @@ } ], "images": [ - { - "mimeType": "image/png", - "name": "FSS_727_GENERAL_NORM.PNG", - "uri": "FSS_727_GENERAL_NORM.PNG" - }, - { - "mimeType": "image/png", - "name": "FSS_727_GENERAL_COMP.PNG", - "uri": "FSS_727_GENERAL_COMP.PNG" - }, - { - "mimeType": "image/png", - "name": "FSS_727_COCKPIT_DECAL_ALBD.PNG", - "uri": "FSS_727_COCKPIT_DECAL_ALBD.PNG" - }, { "mimeType": "image/png", "name": "FSS_B727_PILOT_PANEL_EMIS.PNG", @@ -705,24 +276,6 @@ "uri": "FSS_B727_PILOT_PANEL_ALBD.PNG" } ], - "skins": [ - { - "inverseBindMatrices": 18, - "joints": [ - 10, - 9, - 8, - 7, - 6, - 5, - 4, - 3, - 2, - 11 - ], - "name": "KH_RIG" - } - ], "accessors": [ { "bufferView": 0, @@ -761,7 +314,7 @@ { "bufferView": 4, "componentType": 5126, - "count": 24, + "count": 4, "max": [ 0.10500000417232513, 0.1485000103712082, @@ -770,36 +323,36 @@ "min": [ -0.10500000417232513, -0.1485000103712082, - -9.995472646551207e-05 + -4.527312924551552e-08 ], "type": "VEC3" }, { "bufferView": 5, "componentType": 5126, - "count": 24, + "count": 4, "type": "VEC3" }, { "bufferView": 6, "componentType": 5126, - "count": 24, + "count": 4, "type": "VEC2" }, { "bufferView": 7, "componentType": 5123, - "count": 36, + "count": 6, "type": "SCALAR" }, { "bufferView": 8, "componentType": 5126, - "count": 2244, + "count": 2270, "max": [ 0.10764703899621964, 0.15674053132534027, - 0.006499063223600388 + 0.009322341531515121 ], "min": [ -0.1076275110244751, @@ -811,76 +364,24 @@ { "bufferView": 9, "componentType": 5126, - "count": 2244, + "count": 2270, "type": "VEC3" }, { "bufferView": 10, "componentType": 5126, - "count": 2244, + "count": 2270, "type": "VEC2" }, { "bufferView": 11, "componentType": 5123, - "count": 6126, + "count": 6285, "type": "SCALAR" }, { "bufferView": 12, "componentType": 5126, - "count": 359, - "max": [ - 0.9873392581939697, - 0.7080603241920471, - 19.049575805664062 - ], - "min": [ - 0.7773390412330627, - 0.4147166907787323, - 19.00311279296875 - ], - "type": "VEC3" - }, - { - "bufferView": 13, - "componentType": 5126, - "count": 359, - "type": "VEC3" - }, - { - "bufferView": 14, - "componentType": 5126, - "count": 359, - "type": "VEC2" - }, - { - "bufferView": 15, - "componentType": 5121, - "count": 359, - "type": "VEC4" - }, - { - "bufferView": 16, - "componentType": 5126, - "count": 359, - "type": "VEC4" - }, - { - "bufferView": 17, - "componentType": 5123, - "count": 1440, - "type": "SCALAR" - }, - { - "bufferView": 18, - "componentType": 5126, - "count": 10, - "type": "MAT4" - }, - { - "bufferView": 19, - "componentType": 5126, "count": 60, "max": [ 2.4583333333333335 @@ -891,88 +392,16 @@ "type": "SCALAR" }, { - "bufferView": 20, + "bufferView": 13, "componentType": 5126, "count": 60, "type": "VEC3" }, { - "bufferView": 21, + "bufferView": 14, "componentType": 5126, "count": 60, "type": "VEC4" - }, - { - "bufferView": 22, - "componentType": 5126, - "count": 11, - "max": [ - 0.4166666666666667 - ], - "min": [ - 0 - ], - "type": "SCALAR" - }, - { - "bufferView": 23, - "componentType": 5126, - "count": 11, - "type": "VEC4" - }, - { - "bufferView": 24, - "componentType": 5126, - "count": 11, - "type": "VEC4" - }, - { - "bufferView": 25, - "componentType": 5126, - "count": 11, - "type": "VEC4" - }, - { - "bufferView": 26, - "componentType": 5126, - "count": 11, - "type": "VEC4" - }, - { - "bufferView": 27, - "componentType": 5126, - "count": 11, - "type": "VEC4" - }, - { - "bufferView": 28, - "componentType": 5126, - "count": 11, - "type": "VEC4" - }, - { - "bufferView": 29, - "componentType": 5126, - "count": 11, - "type": "VEC4" - }, - { - "bufferView": 30, - "componentType": 5126, - "count": 11, - "type": "VEC4" - }, - { - "bufferView": 31, - "componentType": 5126, - "count": 11, - "type": "VEC3" - }, - { - "bufferView": 32, - "componentType": 5126, - "count": 11, - "type": "VEC4" } ], "bufferViews": [ @@ -1002,162 +431,66 @@ }, { "buffer": 0, - "byteLength": 288, + "byteLength": 48, "byteOffset": 140, "target": 34962 }, { "buffer": 0, - "byteLength": 288, - "byteOffset": 428, + "byteLength": 48, + "byteOffset": 188, "target": 34962 }, { "buffer": 0, - "byteLength": 192, - "byteOffset": 716, + "byteLength": 32, + "byteOffset": 236, "target": 34962 }, { "buffer": 0, - "byteLength": 72, - "byteOffset": 908, + "byteLength": 12, + "byteOffset": 268, "target": 34963 }, { "buffer": 0, - "byteLength": 26928, - "byteOffset": 980, + "byteLength": 27240, + "byteOffset": 280, "target": 34962 }, { "buffer": 0, - "byteLength": 26928, - "byteOffset": 27908, + "byteLength": 27240, + "byteOffset": 27520, "target": 34962 }, { "buffer": 0, - "byteLength": 17952, - "byteOffset": 54836, + "byteLength": 18160, + "byteOffset": 54760, "target": 34962 }, { "buffer": 0, - "byteLength": 12252, - "byteOffset": 72788, + "byteLength": 12570, + "byteOffset": 72920, "target": 34963 }, - { - "buffer": 0, - "byteLength": 4308, - "byteOffset": 85040, - "target": 34962 - }, - { - "buffer": 0, - "byteLength": 4308, - "byteOffset": 89348, - "target": 34962 - }, - { - "buffer": 0, - "byteLength": 2872, - "byteOffset": 93656, - "target": 34962 - }, - { - "buffer": 0, - "byteLength": 1436, - "byteOffset": 96528, - "target": 34962 - }, - { - "buffer": 0, - "byteLength": 5744, - "byteOffset": 97964, - "target": 34962 - }, - { - "buffer": 0, - "byteLength": 2880, - "byteOffset": 103708, - "target": 34963 - }, - { - "buffer": 0, - "byteLength": 640, - "byteOffset": 106588 - }, { "buffer": 0, "byteLength": 240, - "byteOffset": 107228 + "byteOffset": 85492 }, { "buffer": 0, "byteLength": 720, - "byteOffset": 107468 + "byteOffset": 85732 }, { "buffer": 0, "byteLength": 960, - "byteOffset": 108188 - }, - { - "buffer": 0, - "byteLength": 44, - "byteOffset": 109148 - }, - { - "buffer": 0, - "byteLength": 176, - "byteOffset": 109192 - }, - { - "buffer": 0, - "byteLength": 176, - "byteOffset": 109368 - }, - { - "buffer": 0, - "byteLength": 176, - "byteOffset": 109544 - }, - { - "buffer": 0, - "byteLength": 176, - "byteOffset": 109720 - }, - { - "buffer": 0, - "byteLength": 176, - "byteOffset": 109896 - }, - { - "buffer": 0, - "byteLength": 176, - "byteOffset": 110072 - }, - { - "buffer": 0, - "byteLength": 176, - "byteOffset": 110248 - }, - { - "buffer": 0, - "byteLength": 176, - "byteOffset": 110424 - }, - { - "buffer": 0, - "byteLength": 132, - "byteOffset": 110600 - }, - { - "buffer": 0, - "byteLength": 176, - "byteOffset": 110732 + "byteOffset": 86452 } ], "samplers": [ @@ -1168,7 +501,7 @@ ], "buffers": [ { - "byteLength": 110908, + "byteLength": 87412, "uri": "sb-fplan.bin" } ] diff --git a/PackageSources/html_ui/Pages/VCockpit/Instruments/FSS_B727/KH_FE_FPLAN/FPLAN.css b/PackageSources/html_ui/Pages/VCockpit/Instruments/FSS_B727/KH_FE_FPLAN/FPLAN.css deleted file mode 100644 index 74d8543..0000000 --- a/PackageSources/html_ui/Pages/VCockpit/Instruments/FSS_B727/KH_FE_FPLAN/FPLAN.css +++ /dev/null @@ -1,115 +0,0 @@ -:root { - --bodyHeightScale: 1; -} -@keyframes TemporaryShow { - 0%, 100% { - visibility: visible; - } -} -@keyframes TemporaryHide { - 0%, 100% { - visibility: hidden; - } -} -html { - height: 100%; - width: 100%; - overflow: hidden; -} -html body { - -webkit-user-select: none; - font-family: var(--font); - font-size: calc(var(--viewportHeightRatio) * (36px / 21.6) * var(--currentPageHeight) / 100 ); - color: white; - height: 100%; - width: 100%; - margin: 0; - padding: 0; -} -#highlight { - position: absolute; - height: 100%; - width: 100%; - z-index: 10; - pointer-events: none; -} -#Electricity { - width: 100%; - height: 100%; -} -#Electricity[state=off] { - display: none; -} -hour-meter-element { - background-color: #121212; - height: 100vh; - width: 100vw; - display: inline-block; - overflow: hidden; -} -hour-meter-element #Mainframe { - position: absolute; - height: 100vh; - width: 100vw; - background-color: #121212; - overflow: visible; - font-size: 75vh; - line-height: 100vh; - font-weight: bold; -} -hour-meter-element #Mainframe div { - background-color: #121212; - color: #a0a0a0; - position: absolute; - height: 100vh; - width: 16.6666666667vw; - vertical-align: central; - text-align: center; - border-left: 0.5vw solid black; - border-right: 0.5vw solid black; -} -hour-meter-element #Mainframe .bot { - bottom: -100vh; -} -hour-meter-element #Mainframe #d1, hour-meter-element #Mainframe #d1Bot { - left: 0vw; -} -hour-meter-element #Mainframe #d1[state=decimal], hour-meter-element #Mainframe #d1Bot[state=decimal] { - background-color: #a0a0a0; - color: black; -} -hour-meter-element #Mainframe #d2, hour-meter-element #Mainframe #d2Bot { - left: 16.6666666667vw; -} -hour-meter-element #Mainframe #d2[state=decimal], hour-meter-element #Mainframe #d2Bot[state=decimal] { - background-color: #a0a0a0; - color: black; -} -hour-meter-element #Mainframe #d3, hour-meter-element #Mainframe #d3Bot { - left: 33.3333333333vw; -} -hour-meter-element #Mainframe #d3[state=decimal], hour-meter-element #Mainframe #d3Bot[state=decimal] { - background-color: #a0a0a0; - color: black; -} -hour-meter-element #Mainframe #d4, hour-meter-element #Mainframe #d4Bot { - left: 50vw; -} -hour-meter-element #Mainframe #d4[state=decimal], hour-meter-element #Mainframe #d4Bot[state=decimal] { - background-color: #a0a0a0; - color: black; -} -hour-meter-element #Mainframe #d5, hour-meter-element #Mainframe #d5Bot { - left: 66.6666666667vw; -} -hour-meter-element #Mainframe #d5[state=decimal], hour-meter-element #Mainframe #d5Bot[state=decimal] { - background-color: #a0a0a0; - color: black; -} -hour-meter-element #Mainframe #d6, hour-meter-element #Mainframe #d6Bot { - left: 83.3333333333vw; -} -hour-meter-element #Mainframe #d6[state=decimal], hour-meter-element #Mainframe #d6Bot[state=decimal] { - background-color: #a0a0a0; - color: black; -} \ No newline at end of file diff --git a/PackageSources/html_ui/Pages/VCockpit/Instruments/FSS_B727/KH_FE_FPLAN/FPLAN.html b/PackageSources/html_ui/Pages/VCockpit/Instruments/FSS_B727/KH_FE_FPLAN/FPLAN.html deleted file mode 100644 index 67aa0ff..0000000 --- a/PackageSources/html_ui/Pages/VCockpit/Instruments/FSS_B727/KH_FE_FPLAN/FPLAN.html +++ /dev/null @@ -1,21 +0,0 @@ - - - diff --git a/PackageSources/html_ui/Pages/VCockpit/Instruments/FSS_B727/KH_FE_FPLAN/FPLAN.js b/PackageSources/html_ui/Pages/VCockpit/Instruments/FSS_B727/KH_FE_FPLAN/FPLAN.js deleted file mode 100644 index c1daf0a..0000000 --- a/PackageSources/html_ui/Pages/VCockpit/Instruments/FSS_B727/KH_FE_FPLAN/FPLAN.js +++ /dev/null @@ -1,75 +0,0 @@ -class HourMeter extends BaseInstrument { - constructor() { - super(); - this.decimals = 1; - } - get templateID() { - return "HourMeter"; - } - connectedCallback() { - super.connectedCallback(); - this.digits = []; - this.digitsBot = []; - for (let i = 1; i <= 6; i++) { - this.digits.push(this.getChildById("d" + i)); - this.digitsBot.push(this.getChildById("d" + i + "Bot")); - } - } - disconnectedCallback() { - super.disconnectedCallback(); - } - parseXMLConfig() { - super.parseXMLConfig(); - if (this.instrumentXmlConfig) { - let mode = this.instrumentXmlConfig.getElementsByTagName("Decimals"); - if (mode.length > 0) { - this.decimals = parseInt(mode[0].textContent.toLowerCase()); - } - } - for ( - let i = this.digits.length - 1; - i >= this.digits.length - this.decimals; - i-- - ) { - diffAndSetAttribute(this.digits[i], "state", "decimal"); - diffAndSetAttribute(this.digitsBot[i], "state", "decimal"); - } - } - Update() { - super.Update(); - let hour = SimVar.GetSimVarValue("GENERAL ENG ELAPSED TIME:1", "hour"); - for (let i = this.digits.length - 1; i >= 0; i--) { - if (hour < 0) { - hour = 0; - } - let power = this.digits.length - i - 1 - this.decimals; - let digit = Math.floor( - (hour % Math.pow(10, power + 1)) / Math.pow(10, power) - ); - if (this.digits[i].textContent != digit + "") { - diffAndSetText(this.digits[i], digit + ""); - diffAndSetText(this.digitsBot[i], ((digit + 1) % 10) + ""); - } - if ( - Math.pow(10, power) * (digit + 1) < - (hour % Math.pow(10, power + 1)) + 0.001 - ) { - diffAndSetStyle( - this.digits[i], - StyleProperty.transform, - "translate(0vh,-" + ((100000 * hour) % 100) + "" + "vh)" - ); - diffAndSetStyle( - this.digitsBot[i], - StyleProperty.transform, - "translate(0vh,-" + ((100000 * hour) % 100) + "" + "vh)" - ); - } else { - diffAndSetStyle(this.digits[i], StyleProperty.transform, ""); - diffAndSetStyle(this.digitsBot[i], StyleProperty.transform, ""); - } - hour -= 0.0001; - } - } -} -registerInstrument("hour-meter-element", HourMeter); diff --git a/README.MD b/README.MD index 0e8fdd8..23d7714 100644 --- a/README.MD +++ b/README.MD @@ -1,3 +1,7 @@ # How to export a package -- If a new blender export was done, run `pnpm model`. -- Export from MSFS \ No newline at end of file +- Export from MSFS + +# TODO +- Gauge on page 1 +- Gauge on page 2 +- Modify EFB script to pull data into localStorage \ No newline at end of file diff --git a/package.json b/package.json index e1fdcaa..fac73eb 100644 --- a/package.json +++ b/package.json @@ -4,11 +4,30 @@ "description": "Adds a new clipboard to view your imported SimBrief flightplan and takeoff/landing performance", "main": "index.js", "scripts": { - "test": "node scripts/postProcessModel.mjs" + "dev": "npx rollup -c", + "prod": "cross-env NODE_ENV=production npx rollup -c" }, "type": "module", "keywords": [], "author": "khofmann", "license": "", - "dependencies": {} + "devDependencies": { + "@microsoft/msfs-sdk": "^2.0.5", + "@microsoft/msfs-types": "^1.14.6", + "@rollup/plugin-node-resolve": "^16.0.0", + "@rollup/plugin-terser": "^0.4.4", + "@rollup/plugin-typescript": "^12.1.2", + "autoprefixer": "^10.4.20", + "cross-env": "^7.0.3", + "node-sass": "^9.0.0", + "postcss-import": "^16.1.0", + "prettier": "^3.4.2", + "prettier-plugin-organize-imports": "^4.1.0", + "rollup": "2", + "rollup-plugin-copy": "^3.5.0", + "rollup-plugin-import-css": "^3.5.8", + "rollup-plugin-postcss": "^4.0.2", + "tslib": "^2.8.1", + "typescript": "^5.7.3" + } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d53c506..ff12171 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,24 +7,3166 @@ settings: importers: .: - dependencies: - fast-xml-parser: - specifier: ^4.5.1 - version: 4.5.1 + devDependencies: + '@microsoft/msfs-sdk': + specifier: ^2.0.5 + version: 2.0.5 + '@microsoft/msfs-types': + specifier: ^1.14.6 + version: 1.14.6 + '@rollup/plugin-node-resolve': + specifier: ^16.0.0 + version: 16.0.0(rollup@2.79.2) + '@rollup/plugin-terser': + specifier: ^0.4.4 + version: 0.4.4(rollup@2.79.2) + '@rollup/plugin-typescript': + specifier: ^12.1.2 + version: 12.1.2(rollup@2.79.2)(tslib@2.8.1)(typescript@5.7.3) + autoprefixer: + specifier: ^10.4.20 + version: 10.4.20(postcss@8.5.1) + cross-env: + specifier: ^7.0.3 + version: 7.0.3 + node-sass: + specifier: ^9.0.0 + version: 9.0.0 + postcss-import: + specifier: ^16.1.0 + version: 16.1.0(postcss@8.5.1) + prettier: + specifier: ^3.4.2 + version: 3.4.2 + prettier-plugin-organize-imports: + specifier: ^4.1.0 + version: 4.1.0(prettier@3.4.2)(typescript@5.7.3) + rollup: + specifier: '2' + version: 2.79.2 + rollup-plugin-copy: + specifier: ^3.5.0 + version: 3.5.0 + rollup-plugin-import-css: + specifier: ^3.5.8 + version: 3.5.8(rollup@2.79.2) + rollup-plugin-postcss: + specifier: ^4.0.2 + version: 4.0.2(postcss@8.5.1) + tslib: + specifier: ^2.8.1 + version: 2.8.1 + typescript: + specifier: ^5.7.3 + version: 5.7.3 packages: - fast-xml-parser@4.5.1: - resolution: {integrity: sha512-y655CeyUQ+jj7KBbYMc4FG01V8ZQqjN+gDYGJ50RtfsUB8iG9AmwmwoAgeKLJdmueKKMrH1RJ7yXHTSoczdv5w==} + '@babel/code-frame@7.26.2': + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.25.9': + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} + engines: {node: '>=6.9.0'} + + '@gar/promisify@1.1.3': + resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} + + '@jridgewell/gen-mapping@0.3.8': + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + + '@jridgewell/source-map@0.3.6': + resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} + + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@microsoft/msfs-sdk@2.0.5': + resolution: {integrity: sha512-7maXNMBx2Cp1RYPc3IJFIYU+E/HQOvk/aNVAm2FIYQwFDBlSnoR2Y5B9b7htFLuLDiBZPL1T/u5v3O9byvEY1A==} + + '@microsoft/msfs-types@1.14.6': + resolution: {integrity: sha512-p2dmrxMpnurr7lOFRKjLCysxR6bb+MWJmRvYQkaExq7qBc8bu98WgI14X8W+pf2g0rlH69cN+uP9Kvz/dnPDuw==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@npmcli/fs@1.1.1': + resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} + + '@npmcli/fs@2.1.2': + resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + '@npmcli/move-file@1.1.2': + resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} + engines: {node: '>=10'} + deprecated: This functionality has been moved to @npmcli/fs + + '@npmcli/move-file@2.0.1': + resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This functionality has been moved to @npmcli/fs + + '@rollup/plugin-node-resolve@16.0.0': + resolution: {integrity: sha512-0FPvAeVUT/zdWoO0jnb/V5BlBsUSNfkIOtFHzMO4H9MOklrmQFY6FduVHKucNb/aTFxvnGhj4MNj/T1oNdDfNg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.78.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-terser@0.4.4': + resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/plugin-typescript@12.1.2': + resolution: {integrity: sha512-cdtSp154H5sv637uMr1a8OTWB0L1SWDSm1rDGiyfcGcvQ6cuTs4MDk2BVEBGysUWago4OJN4EQZqOTl/QY3Jgg==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.14.0||^3.0.0||^4.0.0 + tslib: '*' + typescript: '>=3.7.0' + peerDependenciesMeta: + rollup: + optional: true + tslib: + optional: true + + '@rollup/pluginutils@5.1.4': + resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@tootallnate/once@1.1.2': + resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} + engines: {node: '>= 6'} + + '@tootallnate/once@2.0.0': + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@types/estree@1.0.6': + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + + '@types/fs-extra@8.1.5': + resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} + + '@types/glob@7.2.0': + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + + '@types/minimatch@5.1.2': + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + + '@types/minimist@1.2.5': + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + + '@types/node@22.13.0': + resolution: {integrity: sha512-ClIbNe36lawluuvq3+YYhnIN2CELi+6q8NpnM7PYp4hBn/TatfboPgVSm2rwKRfnV2M+Ty9GWDFI64KEe+kysA==} + + '@types/normalize-package-data@2.4.4': + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + + '@types/resolve@1.20.2': + resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + + abbrev@1.1.1: + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + + acorn@8.14.0: + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} + engines: {node: '>=0.4.0'} hasBin: true - strnum@1.0.5: - resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} + agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + + agentkeepalive@4.6.0: + resolution: {integrity: sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==} + engines: {node: '>= 8.0.0'} + + aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + aproba@2.0.0: + resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + + are-we-there-yet@3.0.1: + resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + + async-foreach@0.1.3: + resolution: {integrity: sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA==} + + autoprefixer@10.4.20: + resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.24.4: + resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + cacache@15.3.0: + resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} + engines: {node: '>= 10'} + + cacache@16.1.3: + resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + + camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + + caniuse-api@3.0.0: + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + + caniuse-lite@1.0.30001696: + resolution: {integrity: sha512-pDCPkvzfa39ehJtJ+OwGT/2yvT2SbjfHhiIW2LWOAcMQ7BzwxT/XuyUp4OTOd0XFWA6BKw0JalnBHgSi5DGJBQ==} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} + + clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + color-support@1.1.3: + resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + hasBin: true + + colord@2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + + colorette@1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + concat-with-sourcemaps@1.1.0: + resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} + + console-control-strings@1.1.0: + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cross-env@7.0.3: + resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} + engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} + hasBin: true + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + css-declaration-sorter@6.4.1: + resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} + engines: {node: ^10 || ^12 || >=14} + peerDependencies: + postcss: ^8.0.9 + + css-select@4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + + css-tree@1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + + css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + cssnano-preset-default@5.2.14: + resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano-utils@3.1.0: + resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + cssnano@5.1.15: + resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + csso@4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} + + debug@4.4.0: + resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + + decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + + deepmerge@4.3.1: + resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} + engines: {node: '>=0.10.0'} + + delegates@1.0.0: + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + + domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + + electron-to-chromium@1.5.90: + resolution: {integrity: sha512-C3PN4aydfW91Natdyd449Kw+BzhLmof6tzy5W1pFC5SpQxVXT+oyiyOG9AgYYSN9OdA/ik3YkCrpwqI8ug5Tug==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + encoding@0.1.13: + resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + + entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + + env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + + err-code@2.0.3: + resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + estree-walker@0.6.1: + resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + eventemitter3@4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fastq@1.19.0: + resolution: {integrity: sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + + fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + + fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + gauge@4.0.4: + resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. + + gaze@1.1.3: + resolution: {integrity: sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==} + engines: {node: '>= 4.0.0'} + + generic-names@4.0.0: + resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-stdin@4.0.1: + resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} + engines: {node: '>=0.10.0'} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob@7.1.7: + resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + glob@8.1.0: + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} + deprecated: Glob versions prior to v9 are no longer supported + + globby@10.0.1: + resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==} + engines: {node: '>=8'} + + globule@1.3.4: + resolution: {integrity: sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==} + engines: {node: '>= 0.10'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-unicode@2.0.1: + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + + hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + + http-cache-semantics@4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + + http-proxy-agent@4.0.1: + resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} + engines: {node: '>= 6'} + + http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + + https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + + humanize-ms@1.2.1: + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + icss-replace-symbols@1.1.0: + resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} + + icss-utils@5.1.0: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + import-cwd@3.0.0: + resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} + engines: {node: '>=8'} + + import-from@3.0.0: + resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} + engines: {node: '>=8'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + infer-owner@1.0.4: + resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-lambda@1.0.1: + resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} + + is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + + is-plain-object@3.0.1: + resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==} + engines: {node: '>=0.10.0'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + js-base64@2.6.4: + resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + loader-utils@3.3.1: + resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==} + engines: {node: '>= 12.13.0'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + + lodash.memoize@4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + + lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + + lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + + make-fetch-happen@10.2.1: + resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + make-fetch-happen@9.1.0: + resolution: {integrity: sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==} + engines: {node: '>= 10'} + + map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + + map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + + mdn-data@2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + + meow@9.0.0: + resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==} + engines: {node: '>=10'} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + + minimatch@3.0.8: + resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} + engines: {node: '>=10'} + + minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + + minipass-collect@1.0.2: + resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} + engines: {node: '>= 8'} + + minipass-fetch@1.4.1: + resolution: {integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==} + engines: {node: '>=8'} + + minipass-fetch@2.1.2: + resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + minipass-flush@1.0.5: + resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} + engines: {node: '>= 8'} + + minipass-pipeline@1.2.4: + resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} + engines: {node: '>=8'} + + minipass-sized@1.0.3: + resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==} + engines: {node: '>=8'} + + minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + + minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} + + minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + + mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + nan@2.22.0: + resolution: {integrity: sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==} + + nanoid@3.3.8: + resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + negotiator@0.6.4: + resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==} + engines: {node: '>= 0.6'} + + node-gyp@8.4.1: + resolution: {integrity: sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==} + engines: {node: '>= 10.12.0'} + hasBin: true + + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + node-sass@9.0.0: + resolution: {integrity: sha512-yltEuuLrfH6M7Pq2gAj5B6Zm7m+gdZoG66wTqG6mIZV/zijq3M2OO2HswtT6oBspPyFhHDcaxWpsBm0fRNDHPg==} + engines: {node: '>=16'} + deprecated: Node Sass is no longer supported. Please use `sass` or `sass-embedded` instead. + hasBin: true + + nopt@5.0.0: + resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} + engines: {node: '>=6'} + hasBin: true + + normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + + normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + + normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + + normalize-url@6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + + npmlog@6.0.2: + resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + deprecated: This package is no longer supported. + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + + p-queue@6.6.2: + resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==} + engines: {node: '>=8'} + + p-timeout@3.2.0: + resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} + engines: {node: '>=8'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@5.0.0: + resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} + engines: {node: '>=10'} + + postcss-calc@8.2.4: + resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} + peerDependencies: + postcss: ^8.2.2 + + postcss-colormin@5.3.1: + resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-convert-values@5.1.3: + resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-comments@5.1.2: + resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-duplicates@5.1.0: + resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-empty@5.1.1: + resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-discard-overridden@5.1.0: + resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-import@16.1.0: + resolution: {integrity: sha512-7hsAZ4xGXl4MW+OKEWCnF6T5jqBw80/EE9aXg1r2yyn1RsVEU8EtKXbijEODa+rg7iih4bKf7vlvTGYR4CnPNg==} + engines: {node: '>=18.0.0'} + peerDependencies: + postcss: ^8.0.0 + + postcss-load-config@3.1.4: + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + + postcss-merge-longhand@5.1.7: + resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-merge-rules@5.1.4: + resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-font-values@5.1.0: + resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-gradients@5.1.1: + resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-params@5.1.4: + resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-minify-selectors@5.2.1: + resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-modules-extract-imports@3.1.0: + resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-local-by-default@4.2.0: + resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-scope@3.2.1: + resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules-values@4.0.0: + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + + postcss-modules@4.3.1: + resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} + peerDependencies: + postcss: ^8.0.0 + + postcss-normalize-charset@5.1.0: + resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-display-values@5.1.0: + resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-positions@5.1.1: + resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-repeat-style@5.1.1: + resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-string@5.1.0: + resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-timing-functions@5.1.0: + resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-unicode@5.1.1: + resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-url@5.1.0: + resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-normalize-whitespace@5.1.1: + resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-ordered-values@5.1.3: + resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-reduce-initial@5.1.2: + resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-reduce-transforms@5.1.0: + resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + engines: {node: '>=4'} + + postcss-selector-parser@7.0.0: + resolution: {integrity: sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==} + engines: {node: '>=4'} + + postcss-svgo@5.1.0: + resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-unique-selectors@5.1.1: + resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + postcss@8.5.1: + resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==} + engines: {node: ^10 || ^12 || >=14} + + prettier-plugin-organize-imports@4.1.0: + resolution: {integrity: sha512-5aWRdCgv645xaa58X8lOxzZoiHAldAPChljr/MT0crXVOWTZ+Svl4hIWlz+niYSlO6ikE5UXkN1JrRvIP2ut0A==} + peerDependencies: + prettier: '>=2.0' + typescript: '>=2.9' + vue-tsc: ^2.1.0 + peerDependenciesMeta: + vue-tsc: + optional: true + + prettier@3.4.2: + resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==} + engines: {node: '>=14'} + hasBin: true + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + promise-inflight@1.0.1: + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} + peerDependencies: + bluebird: '*' + peerDependenciesMeta: + bluebird: + optional: true + + promise-retry@2.0.1: + resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} + engines: {node: '>=10'} + + promise.series@0.2.0: + resolution: {integrity: sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ==} + engines: {node: '>=0.12'} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + + randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + + read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + + read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + + read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + + retry@0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rollup-plugin-copy@3.5.0: + resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==} + engines: {node: '>=8.3'} + + rollup-plugin-import-css@3.5.8: + resolution: {integrity: sha512-a3YsZnwHz66mRHCKHjaPCSfWczczvS/HTkgDc+Eogn0mt/0JZXz0WjK0fzM5WwBpVtOqHB4/gHdmEY40ILsaVg==} + engines: {node: '>=16'} + peerDependencies: + rollup: ^2.x.x || ^3.x.x || ^4.x.x + + rollup-plugin-postcss@4.0.2: + resolution: {integrity: sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w==} + engines: {node: '>=10'} + peerDependencies: + postcss: 8.x + + rollup-pluginutils@2.8.2: + resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + + rollup@2.79.2: + resolution: {integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==} + engines: {node: '>=10.0.0'} + hasBin: true + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-identifier@0.4.2: + resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sass-graph@4.0.1: + resolution: {integrity: sha512-5YCfmGBmxoIRYHnKK2AKzrAkCoQ8ozO+iumT8K4tXJXRVCPf+7s1/9KxTSW3Rbvf+7Y7b4FR3mWyLnQr3PHocA==} + engines: {node: '>=12'} + hasBin: true + + scss-tokenizer@0.4.3: + resolution: {integrity: sha512-raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw==} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@7.7.0: + resolution: {integrity: sha512-DrfFnPzblFmNrIZzg5RzHegbiRWg7KMR7btwi2yjHwx06zsUbO5g613sVwEV7FTwmzJu+Io0lJe2GJ3LxqpvBQ==} + engines: {node: '>=10'} + hasBin: true + + serialize-javascript@6.0.2: + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + + set-blocking@2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + + smob@1.5.0: + resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==} + + socks-proxy-agent@6.2.1: + resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==} + engines: {node: '>= 10'} + + socks-proxy-agent@7.0.0: + resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==} + engines: {node: '>= 10'} + + socks@2.8.3: + resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + + spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + + spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + + spdx-license-ids@3.0.21: + resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==} + + sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + + ssri@8.0.1: + resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} + engines: {node: '>= 8'} + + ssri@9.0.1: + resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + stable@0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + + stdout-stream@1.4.1: + resolution: {integrity: sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==} + + string-hash@1.1.3: + resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + + style-inject@0.3.0: + resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} + + stylehacks@5.1.1: + resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + svgo@2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true + + tar@6.2.1: + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} + engines: {node: '>=10'} + + terser@5.37.0: + resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==} + engines: {node: '>=10'} + hasBin: true + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + + true-case-path@2.2.1: + resolution: {integrity: sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + + type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + + type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + + typescript@5.7.3: + resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==} + engines: {node: '>=14.17'} + hasBin: true + + undici-types@6.20.0: + resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} + + unique-filename@1.1.1: + resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} + + unique-filename@2.0.1: + resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + unique-slug@2.0.2: + resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} + + unique-slug@3.0.0: + resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + + universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + + update-browserslist-db@1.1.2: + resolution: {integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + wide-align@1.1.5: + resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + + yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} snapshots: - fast-xml-parser@4.5.1: + '@babel/code-frame@7.26.2': dependencies: - strnum: 1.0.5 + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 + picocolors: 1.1.1 - strnum@1.0.5: {} + '@babel/helper-validator-identifier@7.25.9': {} + + '@gar/promisify@1.1.3': {} + + '@jridgewell/gen-mapping@0.3.8': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/set-array@1.2.1': {} + + '@jridgewell/source-map@0.3.6': + dependencies: + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/sourcemap-codec@1.5.0': {} + + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + + '@microsoft/msfs-sdk@2.0.5': {} + + '@microsoft/msfs-types@1.14.6': {} + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.19.0 + + '@npmcli/fs@1.1.1': + dependencies: + '@gar/promisify': 1.1.3 + semver: 7.7.0 + + '@npmcli/fs@2.1.2': + dependencies: + '@gar/promisify': 1.1.3 + semver: 7.7.0 + + '@npmcli/move-file@1.1.2': + dependencies: + mkdirp: 1.0.4 + rimraf: 3.0.2 + + '@npmcli/move-file@2.0.1': + dependencies: + mkdirp: 1.0.4 + rimraf: 3.0.2 + + '@rollup/plugin-node-resolve@16.0.0(rollup@2.79.2)': + dependencies: + '@rollup/pluginutils': 5.1.4(rollup@2.79.2) + '@types/resolve': 1.20.2 + deepmerge: 4.3.1 + is-module: 1.0.0 + resolve: 1.22.10 + optionalDependencies: + rollup: 2.79.2 + + '@rollup/plugin-terser@0.4.4(rollup@2.79.2)': + dependencies: + serialize-javascript: 6.0.2 + smob: 1.5.0 + terser: 5.37.0 + optionalDependencies: + rollup: 2.79.2 + + '@rollup/plugin-typescript@12.1.2(rollup@2.79.2)(tslib@2.8.1)(typescript@5.7.3)': + dependencies: + '@rollup/pluginutils': 5.1.4(rollup@2.79.2) + resolve: 1.22.10 + typescript: 5.7.3 + optionalDependencies: + rollup: 2.79.2 + tslib: 2.8.1 + + '@rollup/pluginutils@5.1.4(rollup@2.79.2)': + dependencies: + '@types/estree': 1.0.6 + estree-walker: 2.0.2 + picomatch: 4.0.2 + optionalDependencies: + rollup: 2.79.2 + + '@tootallnate/once@1.1.2': {} + + '@tootallnate/once@2.0.0': {} + + '@trysound/sax@0.2.0': {} + + '@types/estree@1.0.6': {} + + '@types/fs-extra@8.1.5': + dependencies: + '@types/node': 22.13.0 + + '@types/glob@7.2.0': + dependencies: + '@types/minimatch': 5.1.2 + '@types/node': 22.13.0 + + '@types/minimatch@5.1.2': {} + + '@types/minimist@1.2.5': {} + + '@types/node@22.13.0': + dependencies: + undici-types: 6.20.0 + + '@types/normalize-package-data@2.4.4': {} + + '@types/resolve@1.20.2': {} + + abbrev@1.1.1: {} + + acorn@8.14.0: {} + + agent-base@6.0.2: + dependencies: + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + agentkeepalive@4.6.0: + dependencies: + humanize-ms: 1.2.1 + + aggregate-error@3.1.0: + dependencies: + clean-stack: 2.2.0 + indent-string: 4.0.0 + + ansi-regex@5.0.1: {} + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + aproba@2.0.0: {} + + are-we-there-yet@3.0.1: + dependencies: + delegates: 1.0.0 + readable-stream: 3.6.2 + + array-union@2.1.0: {} + + arrify@1.0.1: {} + + async-foreach@0.1.3: {} + + autoprefixer@10.4.20(postcss@8.5.1): + dependencies: + browserslist: 4.24.4 + caniuse-lite: 1.0.30001696 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.1.1 + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + balanced-match@1.0.2: {} + + boolbase@1.0.0: {} + + brace-expansion@1.1.11: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browserslist@4.24.4: + dependencies: + caniuse-lite: 1.0.30001696 + electron-to-chromium: 1.5.90 + node-releases: 2.0.19 + update-browserslist-db: 1.1.2(browserslist@4.24.4) + + buffer-from@1.1.2: {} + + cacache@15.3.0: + dependencies: + '@npmcli/fs': 1.1.1 + '@npmcli/move-file': 1.1.2 + chownr: 2.0.0 + fs-minipass: 2.1.0 + glob: 7.2.3 + infer-owner: 1.0.4 + lru-cache: 6.0.0 + minipass: 3.3.6 + minipass-collect: 1.0.2 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + mkdirp: 1.0.4 + p-map: 4.0.0 + promise-inflight: 1.0.1 + rimraf: 3.0.2 + ssri: 8.0.1 + tar: 6.2.1 + unique-filename: 1.1.1 + transitivePeerDependencies: + - bluebird + + cacache@16.1.3: + dependencies: + '@npmcli/fs': 2.1.2 + '@npmcli/move-file': 2.0.1 + chownr: 2.0.0 + fs-minipass: 2.1.0 + glob: 8.1.0 + infer-owner: 1.0.4 + lru-cache: 7.18.3 + minipass: 3.3.6 + minipass-collect: 1.0.2 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + mkdirp: 1.0.4 + p-map: 4.0.0 + promise-inflight: 1.0.1 + rimraf: 3.0.2 + ssri: 9.0.1 + tar: 6.2.1 + unique-filename: 2.0.1 + transitivePeerDependencies: + - bluebird + + camelcase-keys@6.2.2: + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + + camelcase@5.3.1: {} + + caniuse-api@3.0.0: + dependencies: + browserslist: 4.24.4 + caniuse-lite: 1.0.30001696 + lodash.memoize: 4.1.2 + lodash.uniq: 4.5.0 + + caniuse-lite@1.0.30001696: {} + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chownr@2.0.0: {} + + clean-stack@2.2.0: {} + + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.4: {} + + color-support@1.1.3: {} + + colord@2.9.3: {} + + colorette@1.4.0: {} + + commander@2.20.3: {} + + commander@7.2.0: {} + + concat-map@0.0.1: {} + + concat-with-sourcemaps@1.1.0: + dependencies: + source-map: 0.6.1 + + console-control-strings@1.1.0: {} + + core-util-is@1.0.3: {} + + cross-env@7.0.3: + dependencies: + cross-spawn: 7.0.6 + + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + css-declaration-sorter@6.4.1(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + + css-select@4.3.0: + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 4.3.1 + domutils: 2.8.0 + nth-check: 2.1.1 + + css-tree@1.1.3: + dependencies: + mdn-data: 2.0.14 + source-map: 0.6.1 + + css-what@6.1.0: {} + + cssesc@3.0.0: {} + + cssnano-preset-default@5.2.14(postcss@8.5.1): + dependencies: + css-declaration-sorter: 6.4.1(postcss@8.5.1) + cssnano-utils: 3.1.0(postcss@8.5.1) + postcss: 8.5.1 + postcss-calc: 8.2.4(postcss@8.5.1) + postcss-colormin: 5.3.1(postcss@8.5.1) + postcss-convert-values: 5.1.3(postcss@8.5.1) + postcss-discard-comments: 5.1.2(postcss@8.5.1) + postcss-discard-duplicates: 5.1.0(postcss@8.5.1) + postcss-discard-empty: 5.1.1(postcss@8.5.1) + postcss-discard-overridden: 5.1.0(postcss@8.5.1) + postcss-merge-longhand: 5.1.7(postcss@8.5.1) + postcss-merge-rules: 5.1.4(postcss@8.5.1) + postcss-minify-font-values: 5.1.0(postcss@8.5.1) + postcss-minify-gradients: 5.1.1(postcss@8.5.1) + postcss-minify-params: 5.1.4(postcss@8.5.1) + postcss-minify-selectors: 5.2.1(postcss@8.5.1) + postcss-normalize-charset: 5.1.0(postcss@8.5.1) + postcss-normalize-display-values: 5.1.0(postcss@8.5.1) + postcss-normalize-positions: 5.1.1(postcss@8.5.1) + postcss-normalize-repeat-style: 5.1.1(postcss@8.5.1) + postcss-normalize-string: 5.1.0(postcss@8.5.1) + postcss-normalize-timing-functions: 5.1.0(postcss@8.5.1) + postcss-normalize-unicode: 5.1.1(postcss@8.5.1) + postcss-normalize-url: 5.1.0(postcss@8.5.1) + postcss-normalize-whitespace: 5.1.1(postcss@8.5.1) + postcss-ordered-values: 5.1.3(postcss@8.5.1) + postcss-reduce-initial: 5.1.2(postcss@8.5.1) + postcss-reduce-transforms: 5.1.0(postcss@8.5.1) + postcss-svgo: 5.1.0(postcss@8.5.1) + postcss-unique-selectors: 5.1.1(postcss@8.5.1) + + cssnano-utils@3.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + + cssnano@5.1.15(postcss@8.5.1): + dependencies: + cssnano-preset-default: 5.2.14(postcss@8.5.1) + lilconfig: 2.1.0 + postcss: 8.5.1 + yaml: 1.10.2 + + csso@4.2.0: + dependencies: + css-tree: 1.1.3 + + debug@4.4.0: + dependencies: + ms: 2.1.3 + + decamelize-keys@1.1.1: + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + + decamelize@1.2.0: {} + + deepmerge@4.3.1: {} + + delegates@1.0.0: {} + + dir-glob@3.0.1: + dependencies: + path-type: 4.0.0 + + dom-serializer@1.4.1: + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + entities: 2.2.0 + + domelementtype@2.3.0: {} + + domhandler@4.3.1: + dependencies: + domelementtype: 2.3.0 + + domutils@2.8.0: + dependencies: + dom-serializer: 1.4.1 + domelementtype: 2.3.0 + domhandler: 4.3.1 + + electron-to-chromium@1.5.90: {} + + emoji-regex@8.0.0: {} + + encoding@0.1.13: + dependencies: + iconv-lite: 0.6.3 + optional: true + + entities@2.2.0: {} + + env-paths@2.2.1: {} + + err-code@2.0.3: {} + + error-ex@1.3.2: + dependencies: + is-arrayish: 0.2.1 + + escalade@3.2.0: {} + + estree-walker@0.6.1: {} + + estree-walker@2.0.2: {} + + eventemitter3@4.0.7: {} + + fast-glob@3.3.3: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fastq@1.19.0: + dependencies: + reusify: 1.0.4 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-up@4.1.0: + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + + fraction.js@4.3.7: {} + + fs-extra@8.1.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + + fs-minipass@2.1.0: + dependencies: + minipass: 3.3.6 + + fs.realpath@1.0.0: {} + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + gauge@4.0.4: + dependencies: + aproba: 2.0.0 + color-support: 1.1.3 + console-control-strings: 1.1.0 + has-unicode: 2.0.1 + signal-exit: 3.0.7 + string-width: 4.2.3 + strip-ansi: 6.0.1 + wide-align: 1.1.5 + + gaze@1.1.3: + dependencies: + globule: 1.3.4 + + generic-names@4.0.0: + dependencies: + loader-utils: 3.3.1 + + get-caller-file@2.0.5: {} + + get-stdin@4.0.1: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob@7.1.7: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + glob@7.2.3: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + glob@8.1.0: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.6 + once: 1.4.0 + + globby@10.0.1: + dependencies: + '@types/glob': 7.2.0 + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.3 + glob: 7.2.3 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 3.0.0 + + globule@1.3.4: + dependencies: + glob: 7.1.7 + lodash: 4.17.21 + minimatch: 3.0.8 + + graceful-fs@4.2.11: {} + + hard-rejection@2.1.0: {} + + has-flag@4.0.0: {} + + has-unicode@2.0.1: {} + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + hosted-git-info@2.8.9: {} + + hosted-git-info@4.1.0: + dependencies: + lru-cache: 6.0.0 + + http-cache-semantics@4.1.1: {} + + http-proxy-agent@4.0.1: + dependencies: + '@tootallnate/once': 1.1.2 + agent-base: 6.0.2 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + http-proxy-agent@5.0.0: + dependencies: + '@tootallnate/once': 2.0.0 + agent-base: 6.0.2 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + https-proxy-agent@5.0.1: + dependencies: + agent-base: 6.0.2 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + humanize-ms@1.2.1: + dependencies: + ms: 2.1.3 + + iconv-lite@0.6.3: + dependencies: + safer-buffer: 2.1.2 + optional: true + + icss-replace-symbols@1.1.0: {} + + icss-utils@5.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + + ignore@5.3.2: {} + + import-cwd@3.0.0: + dependencies: + import-from: 3.0.0 + + import-from@3.0.0: + dependencies: + resolve-from: 5.0.0 + + imurmurhash@0.1.4: {} + + indent-string@4.0.0: {} + + infer-owner@1.0.4: {} + + inflight@1.0.6: + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + inherits@2.0.4: {} + + ip-address@9.0.5: + dependencies: + jsbn: 1.1.0 + sprintf-js: 1.1.3 + + is-arrayish@0.2.1: {} + + is-core-module@2.16.1: + dependencies: + hasown: 2.0.2 + + is-extglob@2.1.1: {} + + is-fullwidth-code-point@3.0.0: {} + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-lambda@1.0.1: {} + + is-module@1.0.0: {} + + is-number@7.0.0: {} + + is-plain-obj@1.1.0: {} + + is-plain-object@3.0.1: {} + + isarray@1.0.0: {} + + isexe@2.0.0: {} + + js-base64@2.6.4: {} + + js-tokens@4.0.0: {} + + jsbn@1.1.0: {} + + json-parse-even-better-errors@2.3.1: {} + + jsonfile@4.0.0: + optionalDependencies: + graceful-fs: 4.2.11 + + kind-of@6.0.3: {} + + lilconfig@2.1.0: {} + + lines-and-columns@1.2.4: {} + + loader-utils@3.3.1: {} + + locate-path@5.0.0: + dependencies: + p-locate: 4.1.0 + + lodash.camelcase@4.3.0: {} + + lodash.memoize@4.1.2: {} + + lodash.uniq@4.5.0: {} + + lodash@4.17.21: {} + + lru-cache@6.0.0: + dependencies: + yallist: 4.0.0 + + lru-cache@7.18.3: {} + + make-fetch-happen@10.2.1: + dependencies: + agentkeepalive: 4.6.0 + cacache: 16.1.3 + http-cache-semantics: 4.1.1 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-lambda: 1.0.1 + lru-cache: 7.18.3 + minipass: 3.3.6 + minipass-collect: 1.0.2 + minipass-fetch: 2.1.2 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + negotiator: 0.6.4 + promise-retry: 2.0.1 + socks-proxy-agent: 7.0.0 + ssri: 9.0.1 + transitivePeerDependencies: + - bluebird + - supports-color + + make-fetch-happen@9.1.0: + dependencies: + agentkeepalive: 4.6.0 + cacache: 15.3.0 + http-cache-semantics: 4.1.1 + http-proxy-agent: 4.0.1 + https-proxy-agent: 5.0.1 + is-lambda: 1.0.1 + lru-cache: 6.0.0 + minipass: 3.3.6 + minipass-collect: 1.0.2 + minipass-fetch: 1.4.1 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + negotiator: 0.6.4 + promise-retry: 2.0.1 + socks-proxy-agent: 6.2.1 + ssri: 8.0.1 + transitivePeerDependencies: + - bluebird + - supports-color + + map-obj@1.0.1: {} + + map-obj@4.3.0: {} + + mdn-data@2.0.14: {} + + meow@9.0.0: + dependencies: + '@types/minimist': 1.2.5 + camelcase-keys: 6.2.2 + decamelize: 1.2.0 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 + + merge2@1.4.1: {} + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + min-indent@1.0.1: {} + + minimatch@3.0.8: + dependencies: + brace-expansion: 1.1.11 + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.11 + + minimatch@5.1.6: + dependencies: + brace-expansion: 2.0.1 + + minimist-options@4.1.0: + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + + minipass-collect@1.0.2: + dependencies: + minipass: 3.3.6 + + minipass-fetch@1.4.1: + dependencies: + minipass: 3.3.6 + minipass-sized: 1.0.3 + minizlib: 2.1.2 + optionalDependencies: + encoding: 0.1.13 + + minipass-fetch@2.1.2: + dependencies: + minipass: 3.3.6 + minipass-sized: 1.0.3 + minizlib: 2.1.2 + optionalDependencies: + encoding: 0.1.13 + + minipass-flush@1.0.5: + dependencies: + minipass: 3.3.6 + + minipass-pipeline@1.2.4: + dependencies: + minipass: 3.3.6 + + minipass-sized@1.0.3: + dependencies: + minipass: 3.3.6 + + minipass@3.3.6: + dependencies: + yallist: 4.0.0 + + minipass@5.0.0: {} + + minizlib@2.1.2: + dependencies: + minipass: 3.3.6 + yallist: 4.0.0 + + mkdirp@1.0.4: {} + + ms@2.1.3: {} + + nan@2.22.0: {} + + nanoid@3.3.8: {} + + negotiator@0.6.4: {} + + node-gyp@8.4.1: + dependencies: + env-paths: 2.2.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + make-fetch-happen: 9.1.0 + nopt: 5.0.0 + npmlog: 6.0.2 + rimraf: 3.0.2 + semver: 7.7.0 + tar: 6.2.1 + which: 2.0.2 + transitivePeerDependencies: + - bluebird + - supports-color + + node-releases@2.0.19: {} + + node-sass@9.0.0: + dependencies: + async-foreach: 0.1.3 + chalk: 4.1.2 + cross-spawn: 7.0.6 + gaze: 1.1.3 + get-stdin: 4.0.1 + glob: 7.2.3 + lodash: 4.17.21 + make-fetch-happen: 10.2.1 + meow: 9.0.0 + nan: 2.22.0 + node-gyp: 8.4.1 + sass-graph: 4.0.1 + stdout-stream: 1.4.1 + true-case-path: 2.2.1 + transitivePeerDependencies: + - bluebird + - supports-color + + nopt@5.0.0: + dependencies: + abbrev: 1.1.1 + + normalize-package-data@2.5.0: + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.10 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 + + normalize-package-data@3.0.3: + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.16.1 + semver: 7.7.0 + validate-npm-package-license: 3.0.4 + + normalize-range@0.1.2: {} + + normalize-url@6.1.0: {} + + npmlog@6.0.2: + dependencies: + are-we-there-yet: 3.0.1 + console-control-strings: 1.1.0 + gauge: 4.0.4 + set-blocking: 2.0.0 + + nth-check@2.1.1: + dependencies: + boolbase: 1.0.0 + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + p-finally@1.0.0: {} + + p-limit@2.3.0: + dependencies: + p-try: 2.2.0 + + p-locate@4.1.0: + dependencies: + p-limit: 2.3.0 + + p-map@4.0.0: + dependencies: + aggregate-error: 3.1.0 + + p-queue@6.6.2: + dependencies: + eventemitter3: 4.0.7 + p-timeout: 3.2.0 + + p-timeout@3.2.0: + dependencies: + p-finally: 1.0.0 + + p-try@2.2.0: {} + + parse-json@5.2.0: + dependencies: + '@babel/code-frame': 7.26.2 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + + path-exists@4.0.0: {} + + path-is-absolute@1.0.1: {} + + path-key@3.1.1: {} + + path-parse@1.0.7: {} + + path-type@4.0.0: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.2: {} + + pify@2.3.0: {} + + pify@5.0.0: {} + + postcss-calc@8.2.4(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-selector-parser: 6.1.2 + postcss-value-parser: 4.2.0 + + postcss-colormin@5.3.1(postcss@8.5.1): + dependencies: + browserslist: 4.24.4 + caniuse-api: 3.0.0 + colord: 2.9.3 + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-convert-values@5.1.3(postcss@8.5.1): + dependencies: + browserslist: 4.24.4 + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-discard-comments@5.1.2(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + + postcss-discard-duplicates@5.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + + postcss-discard-empty@5.1.1(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + + postcss-discard-overridden@5.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + + postcss-import@16.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.10 + + postcss-load-config@3.1.4(postcss@8.5.1): + dependencies: + lilconfig: 2.1.0 + yaml: 1.10.2 + optionalDependencies: + postcss: 8.5.1 + + postcss-merge-longhand@5.1.7(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + stylehacks: 5.1.1(postcss@8.5.1) + + postcss-merge-rules@5.1.4(postcss@8.5.1): + dependencies: + browserslist: 4.24.4 + caniuse-api: 3.0.0 + cssnano-utils: 3.1.0(postcss@8.5.1) + postcss: 8.5.1 + postcss-selector-parser: 6.1.2 + + postcss-minify-font-values@5.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-minify-gradients@5.1.1(postcss@8.5.1): + dependencies: + colord: 2.9.3 + cssnano-utils: 3.1.0(postcss@8.5.1) + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-minify-params@5.1.4(postcss@8.5.1): + dependencies: + browserslist: 4.24.4 + cssnano-utils: 3.1.0(postcss@8.5.1) + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-minify-selectors@5.2.1(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-selector-parser: 6.1.2 + + postcss-modules-extract-imports@3.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + + postcss-modules-local-by-default@4.2.0(postcss@8.5.1): + dependencies: + icss-utils: 5.1.0(postcss@8.5.1) + postcss: 8.5.1 + postcss-selector-parser: 7.0.0 + postcss-value-parser: 4.2.0 + + postcss-modules-scope@3.2.1(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-selector-parser: 7.0.0 + + postcss-modules-values@4.0.0(postcss@8.5.1): + dependencies: + icss-utils: 5.1.0(postcss@8.5.1) + postcss: 8.5.1 + + postcss-modules@4.3.1(postcss@8.5.1): + dependencies: + generic-names: 4.0.0 + icss-replace-symbols: 1.1.0 + lodash.camelcase: 4.3.0 + postcss: 8.5.1 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.1) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.1) + postcss-modules-scope: 3.2.1(postcss@8.5.1) + postcss-modules-values: 4.0.0(postcss@8.5.1) + string-hash: 1.1.3 + + postcss-normalize-charset@5.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + + postcss-normalize-display-values@5.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-normalize-positions@5.1.1(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-normalize-repeat-style@5.1.1(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-normalize-string@5.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-normalize-timing-functions@5.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-normalize-unicode@5.1.1(postcss@8.5.1): + dependencies: + browserslist: 4.24.4 + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-normalize-url@5.1.0(postcss@8.5.1): + dependencies: + normalize-url: 6.1.0 + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-normalize-whitespace@5.1.1(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-ordered-values@5.1.3(postcss@8.5.1): + dependencies: + cssnano-utils: 3.1.0(postcss@8.5.1) + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-reduce-initial@5.1.2(postcss@8.5.1): + dependencies: + browserslist: 4.24.4 + caniuse-api: 3.0.0 + postcss: 8.5.1 + + postcss-reduce-transforms@5.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + + postcss-selector-parser@6.1.2: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss-selector-parser@7.0.0: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss-svgo@5.1.0(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-value-parser: 4.2.0 + svgo: 2.8.0 + + postcss-unique-selectors@5.1.1(postcss@8.5.1): + dependencies: + postcss: 8.5.1 + postcss-selector-parser: 6.1.2 + + postcss-value-parser@4.2.0: {} + + postcss@8.5.1: + dependencies: + nanoid: 3.3.8 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + prettier-plugin-organize-imports@4.1.0(prettier@3.4.2)(typescript@5.7.3): + dependencies: + prettier: 3.4.2 + typescript: 5.7.3 + + prettier@3.4.2: {} + + process-nextick-args@2.0.1: {} + + promise-inflight@1.0.1: {} + + promise-retry@2.0.1: + dependencies: + err-code: 2.0.3 + retry: 0.12.0 + + promise.series@0.2.0: {} + + queue-microtask@1.2.3: {} + + quick-lru@4.0.1: {} + + randombytes@2.1.0: + dependencies: + safe-buffer: 5.2.1 + + read-cache@1.0.0: + dependencies: + pify: 2.3.0 + + read-pkg-up@7.0.1: + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + + read-pkg@5.2.0: + dependencies: + '@types/normalize-package-data': 2.4.4 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + + readable-stream@2.3.8: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + redent@3.0.0: + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + + require-directory@2.1.1: {} + + resolve-from@5.0.0: {} + + resolve@1.22.10: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + retry@0.12.0: {} + + reusify@1.0.4: {} + + rimraf@3.0.2: + dependencies: + glob: 7.2.3 + + rollup-plugin-copy@3.5.0: + dependencies: + '@types/fs-extra': 8.1.5 + colorette: 1.4.0 + fs-extra: 8.1.0 + globby: 10.0.1 + is-plain-object: 3.0.1 + + rollup-plugin-import-css@3.5.8(rollup@2.79.2): + dependencies: + '@rollup/pluginutils': 5.1.4(rollup@2.79.2) + rollup: 2.79.2 + + rollup-plugin-postcss@4.0.2(postcss@8.5.1): + dependencies: + chalk: 4.1.2 + concat-with-sourcemaps: 1.1.0 + cssnano: 5.1.15(postcss@8.5.1) + import-cwd: 3.0.0 + p-queue: 6.6.2 + pify: 5.0.0 + postcss: 8.5.1 + postcss-load-config: 3.1.4(postcss@8.5.1) + postcss-modules: 4.3.1(postcss@8.5.1) + promise.series: 0.2.0 + resolve: 1.22.10 + rollup-pluginutils: 2.8.2 + safe-identifier: 0.4.2 + style-inject: 0.3.0 + transitivePeerDependencies: + - ts-node + + rollup-pluginutils@2.8.2: + dependencies: + estree-walker: 0.6.1 + + rollup@2.79.2: + optionalDependencies: + fsevents: 2.3.3 + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + safe-buffer@5.1.2: {} + + safe-buffer@5.2.1: {} + + safe-identifier@0.4.2: {} + + safer-buffer@2.1.2: + optional: true + + sass-graph@4.0.1: + dependencies: + glob: 7.2.3 + lodash: 4.17.21 + scss-tokenizer: 0.4.3 + yargs: 17.7.2 + + scss-tokenizer@0.4.3: + dependencies: + js-base64: 2.6.4 + source-map: 0.7.4 + + semver@5.7.2: {} + + semver@7.7.0: {} + + serialize-javascript@6.0.2: + dependencies: + randombytes: 2.1.0 + + set-blocking@2.0.0: {} + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@3.0.0: {} + + signal-exit@3.0.7: {} + + slash@3.0.0: {} + + smart-buffer@4.2.0: {} + + smob@1.5.0: {} + + socks-proxy-agent@6.2.1: + dependencies: + agent-base: 6.0.2 + debug: 4.4.0 + socks: 2.8.3 + transitivePeerDependencies: + - supports-color + + socks-proxy-agent@7.0.0: + dependencies: + agent-base: 6.0.2 + debug: 4.4.0 + socks: 2.8.3 + transitivePeerDependencies: + - supports-color + + socks@2.8.3: + dependencies: + ip-address: 9.0.5 + smart-buffer: 4.2.0 + + source-map-js@1.2.1: {} + + source-map-support@0.5.21: + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + source-map@0.6.1: {} + + source-map@0.7.4: {} + + spdx-correct@3.2.0: + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.21 + + spdx-exceptions@2.5.0: {} + + spdx-expression-parse@3.0.1: + dependencies: + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.21 + + spdx-license-ids@3.0.21: {} + + sprintf-js@1.1.3: {} + + ssri@8.0.1: + dependencies: + minipass: 3.3.6 + + ssri@9.0.1: + dependencies: + minipass: 3.3.6 + + stable@0.1.8: {} + + stdout-stream@1.4.1: + dependencies: + readable-stream: 2.3.8 + + string-hash@1.1.3: {} + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string_decoder@1.1.1: + dependencies: + safe-buffer: 5.1.2 + + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-indent@3.0.0: + dependencies: + min-indent: 1.0.1 + + style-inject@0.3.0: {} + + stylehacks@5.1.1(postcss@8.5.1): + dependencies: + browserslist: 4.24.4 + postcss: 8.5.1 + postcss-selector-parser: 6.1.2 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + supports-preserve-symlinks-flag@1.0.0: {} + + svgo@2.8.0: + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 4.3.0 + css-tree: 1.1.3 + csso: 4.2.0 + picocolors: 1.1.1 + stable: 0.1.8 + + tar@6.2.1: + dependencies: + chownr: 2.0.0 + fs-minipass: 2.1.0 + minipass: 5.0.0 + minizlib: 2.1.2 + mkdirp: 1.0.4 + yallist: 4.0.0 + + terser@5.37.0: + dependencies: + '@jridgewell/source-map': 0.3.6 + acorn: 8.14.0 + commander: 2.20.3 + source-map-support: 0.5.21 + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + trim-newlines@3.0.1: {} + + true-case-path@2.2.1: {} + + tslib@2.8.1: {} + + type-fest@0.18.1: {} + + type-fest@0.6.0: {} + + type-fest@0.8.1: {} + + typescript@5.7.3: {} + + undici-types@6.20.0: {} + + unique-filename@1.1.1: + dependencies: + unique-slug: 2.0.2 + + unique-filename@2.0.1: + dependencies: + unique-slug: 3.0.0 + + unique-slug@2.0.2: + dependencies: + imurmurhash: 0.1.4 + + unique-slug@3.0.0: + dependencies: + imurmurhash: 0.1.4 + + universalify@0.1.2: {} + + update-browserslist-db@1.1.2(browserslist@4.24.4): + dependencies: + browserslist: 4.24.4 + escalade: 3.2.0 + picocolors: 1.1.1 + + util-deprecate@1.0.2: {} + + validate-npm-package-license@3.0.4: + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + wide-align@1.1.5: + dependencies: + string-width: 4.2.3 + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrappy@1.0.2: {} + + y18n@5.0.8: {} + + yallist@4.0.0: {} + + yaml@1.10.2: {} + + yargs-parser@20.2.9: {} + + yargs-parser@21.1.1: {} + + yargs@17.7.2: + dependencies: + cliui: 8.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 diff --git a/rollup.config.js b/rollup.config.js new file mode 100644 index 0000000..6f44b2d --- /dev/null +++ b/rollup.config.js @@ -0,0 +1,34 @@ +import resolve from '@rollup/plugin-node-resolve'; +import terser from '@rollup/plugin-terser'; +import typescript from '@rollup/plugin-typescript'; +import autoprefixer from 'autoprefixer'; +import atImport from 'postcss-import'; +import copy from 'rollup-plugin-copy'; +import postcss from 'rollup-plugin-postcss'; + +const { NODE_ENV: targetEnv = 'development' } = process.env; +const inDirBase = 'Gauge/src'; +const outDirBase = 'PackageSources/html_ui/Pages/VCockpit/Instruments/FSS_B727/KH_FE_FPLAN/'; + +export default { + input: `${inDirBase}/index.tsx`, + output: { + dir: outDirBase, + format: 'es', + sourcemap: targetEnv !== 'production', + }, + plugins: [ + postcss({ + plugins: [autoprefixer(), atImport()], + extract: true, + use: ['sass'], + sourceMap: 'inline', + }), + resolve(), + typescript(), + targetEnv === 'production' && terser(), + copy({ + targets: [{ src: [`${inDirBase}/index.html`], dest: outDirBase }], + }), + ], +}; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..d18e596 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "incremental": true, /* Enables incremental builds */ + "target": "es2017", /* Specifies the ES2017 target, compatible with Coherent GT */ + "module": "es2015", /* Ensures that modules are at least es2015 */ + "strict": true, /* Enables strict type checking, highly recommended but optional */ + "esModuleInterop": true, /* Emits additional JS to work with CommonJS modules */ + "skipLibCheck": true, /* Skip type checking on library .d.ts files */ + "forceConsistentCasingInFileNames": true, /* Ensures correct import casing */ + "moduleResolution": "node", /* Enables compatibility with MSFS SDK bare global imports */ + "jsxFactory": "FSComponent.buildComponent", /* Required for FSComponent framework JSX */ + "jsxFragmentFactory": "FSComponent.Fragment", /* Required for FSComponent framework JSX */ + "jsx": "react" /* Required for FSComponent framework JSX */ + } +} diff --git a/tsconfig.tsbuildinfo b/tsconfig.tsbuildinfo new file mode 100644 index 0000000..b158244 --- /dev/null +++ b/tsconfig.tsbuildinfo @@ -0,0 +1 @@ +{"fileNames":["./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es5.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.scripthost.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","./node_modules/.pnpm/typescript@5.7.3/node_modules/typescript/lib/lib.es2017.full.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/pages/vcockpit/core/vcockpit.d.ts","./node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/pages/vcockpit/instruments/shared/utils/xmllogic.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/pages/vcockpit/instruments/shared/baseinstrument.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/netbingmap.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/types.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/simplane.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/simvar.d.ts","./node_modules/.pnpm/@microsoft+msfs-types@1.14.6/node_modules/@microsoft/msfs-types/js/common.d.ts","./node_modules/.pnpm/@microsoft+msfs-sdk@2.0.5/node_modules/@microsoft/msfs-sdk/msfssdk.d.ts","./gauge/src/components/test/test.tsx","./gauge/src/index.tsx"],"fileIdsList":[[31,39],[30,31,39,40],[32,33,34,35,36,37,38]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"1d242d5c24cf285c88bc4fb93c5ff903de8319064e282986edeb6247ba028d5e","impliedFormat":1},{"version":"d0e443178a1a636f76e429d9670724bf4eae48e32fdfb059de61532b40b5c530","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"96ee5faa7c6e27d7bee0f486995ac26a8f516f34332253d9e456a20cd3e4d3fd","affectsGlobalScope":true,"impliedFormat":1},{"version":"637721ee6467debad655d422789d062df43031f074117002e9ca48ab6afa7e13","affectsGlobalScope":true,"impliedFormat":1},{"version":"5ebf697e60f23921bd3dbda30676248797f798c1707fb3d394ea845a84b66b70","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d52748a319f8d8a199c9b8a4ce489295c6bf14392db33a8dc787b87796d9088","affectsGlobalScope":true,"impliedFormat":1},{"version":"dfce6257bbf8a8418ba2d72bb052ddd136dbf7627be5055aa2c55da380d5f8f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8103f3f5b87808999d1b36f9b96cad985b89f2cf810859dc938db802f07ead6","affectsGlobalScope":true,"impliedFormat":1},{"version":"f2d2f777efc77c8da9a39734b33436d5db626bff5ff64a5e181742ff426901bf","affectsGlobalScope":true,"impliedFormat":1},{"version":"ad544ca26f68efb41d527bbbe10a85bc395a02ea56fa365b4d9e9d04e479913c","impliedFormat":1},"a2cb432cf73145c6759d847563970e6435d993616f7f8a384b27faeb22f6940e","0da2911b3be78419595c7daac50a0456a896444d16decf40c87693b493049027"],"root":[40,41],"options":{"emitDeclarationOnly":false,"esModuleInterop":true,"importHelpers":true,"inlineSources":true,"jsx":2,"module":5,"noEmitHelpers":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":4},"referencedMap":[[40,1],[41,2],[39,3]],"version":"5.7.3"} \ No newline at end of file