From be90a7679e739d827b633bf85e24fd6996869073 Mon Sep 17 00:00:00 2001 From: Ryan Turnquist Date: Fri, 14 Aug 2026 16:51:14 -0700 Subject: [PATCH 1/8] Docs: QUERY is a supported HTTP method in Marko Run --- docs/marko-run/file-based-routing.md | 4 ++-- docs/marko-run/validation.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/marko-run/file-based-routing.md b/docs/marko-run/file-based-routing.md index 887512e40..67fdbc132 100644 --- a/docs/marko-run/file-based-routing.md +++ b/docs/marko-run/file-based-routing.md @@ -34,7 +34,7 @@ export interface Input { ### `+handler.*` -These files establish a route at the current directory path that can respond to any HTTP method: exported functions named `GET`, `HEAD`, `POST`, `PUT`, `DELETE`, `PATCH`, or `OPTIONS` handle requests with the matching method. +These files establish a route at the current directory path that can respond to any HTTP method: exported functions named `GET`, `HEAD`, `POST`, `PUT`, `DELETE`, `PATCH`, `OPTIONS`, or `QUERY` handle requests with the matching method. Typically, these will be `.js` or `.ts` files, depending on the project. Like pages, only one handler file may exist for any served path. @@ -112,7 +112,7 @@ export default Run.ALL(async (ctx, next) => { These files represent static metadata to attach to the route. This metadata will be automatically provided as `ctx.meta` when the route is invoked. When the file is a non-JSON file, its default export will be used. -Metadata supports verb-specific overrides when it is an object (e.g. a JSON file or `export default { ... }`). Top-level keys that match one of `GET`, `HEAD`, `POST`, `PUT`, `DELETE`, `PATCH`, or `OPTIONS` are shallowly merged into the base object for requests of that method, overriding any existing values. These keys are excluded from the base object, and ignored when their value is not an object. For example, given a `+meta.json` file: +Metadata supports verb-specific overrides when it is an object (e.g. a JSON file or `export default { ... }`). Top-level keys that match one of `GET`, `HEAD`, `POST`, `PUT`, `DELETE`, `PATCH`, `OPTIONS`, or `QUERY` are shallowly merged into the base object for requests of that method, overriding any existing values. These keys are excluded from the base object, and ignored when their value is not an object. For example, given a `+meta.json` file: ```json { diff --git a/docs/marko-run/validation.md b/docs/marko-run/validation.md index a76fa94ed..8dd7d708b 100644 --- a/docs/marko-run/validation.md +++ b/docs/marko-run/validation.md @@ -4,7 +4,7 @@ Handlers and middleware are written using the verb helpers defined on the global ## Verb Helpers -Each verb helper (`Run.GET`, `Run.HEAD`, `Run.POST`, `Run.PUT`, `Run.DELETE`, `Run.PATCH`, `Run.OPTIONS`, and `Run.ALL`) accepts a handler function or an array of handler functions, optionally preceded by validation options: +Each verb helper (`Run.GET`, `Run.HEAD`, `Run.POST`, `Run.PUT`, `Run.DELETE`, `Run.PATCH`, `Run.OPTIONS`, `Run.QUERY`, and `Run.ALL`) accepts a handler function or an array of handler functions, optionally preceded by validation options: ```ts Run.POST(handler); // a handler function @@ -58,7 +58,7 @@ Validators are lazy. `ctx.params` and `ctx.search` do not run their validators u ## Request Bodies -`POST`, `PUT`, and `PATCH` handlers declare how request bodies are read with the `json` and `form` options. When either is configured, `ctx.body` is a promise for the parsed and validated body. Otherwise `ctx.body` is `undefined`. +`POST`, `PUT`, `PATCH`, and `QUERY` handlers declare how request bodies are read with the `json` and `form` options. When either is configured, `ctx.body` is a promise for the parsed and validated body. Otherwise `ctx.body` is `undefined`. ```ts import * as v from "valibot"; From 2ee786fbb5262a4dfea730f709948c05f53688fc Mon Sep 17 00:00:00 2001 From: Ryan Turnquist Date: Fri, 14 Aug 2026 17:35:28 -0700 Subject: [PATCH 2/8] Docs: pages serve QUERY requests; handler next renders the page --- docs/marko-run/file-based-routing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/marko-run/file-based-routing.md b/docs/marko-run/file-based-routing.md index 67fdbc132..29d47e43f 100644 --- a/docs/marko-run/file-based-routing.md +++ b/docs/marko-run/file-based-routing.md @@ -11,7 +11,7 @@ The router only recognizes certain filenames, all prefixed with `+`. The followi ### `+page.marko` -These files establish a route at the current directory path, which will be served for `GET` requests with the HTML content of the page. Only one page may exist for any served path. +These files establish a route at the current directory path, which will be served for `GET` and `QUERY` requests with the HTML content of the page. Only one page may exist for any served path. ### `+layout.marko` @@ -54,7 +54,7 @@ export const POST = Run.POST({ json: ReminderSchema }, async (ctx) => { Handler functions are synchronous or asynchronous functions that receive two arguments: - `ctx` contains the WHATWG request object, path parameters, URL, route metadata, and the [validated body](./validation.md#request-bodies) (see [Context](./runtime.md#context)) -- `next` renders the page for `GET`, `HEAD`, and `POST` requests where applicable, or returns a `204` response. Pass it an object to [make data available](./data-loading.md) to downstream handlers and the page. +- `next` renders the page for `GET`, `HEAD`, `POST`, and `QUERY` requests where applicable, or returns a `204` response. Pass it an object to [make data available](./data-loading.md) to downstream handlers and the page. > [!TIP] > Configure the [`json` or `form` option](./validation.md#request-bodies) to read validated request body content with `await ctx.body`. Calling `ctx.request.json()` or `ctx.request.formData()` in a handler bypasses validation and any configured size limits. Using [`Response.json`](https://developer.mozilla.org/en-US/docs/Web/API/Response/json_static) makes it easy to return JSON encoded data. From 661b18b44e7ebb4622f16e38d0a27c5ca55d3049 Mon Sep 17 00:00:00 2001 From: Ryan Turnquist Date: Mon, 17 Aug 2026 11:31:19 -0700 Subject: [PATCH 3/8] Docs: page renders for QUERY only via a handler's next --- docs/marko-run/file-based-routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/marko-run/file-based-routing.md b/docs/marko-run/file-based-routing.md index 29d47e43f..6046e281b 100644 --- a/docs/marko-run/file-based-routing.md +++ b/docs/marko-run/file-based-routing.md @@ -11,7 +11,7 @@ The router only recognizes certain filenames, all prefixed with `+`. The followi ### `+page.marko` -These files establish a route at the current directory path, which will be served for `GET` and `QUERY` requests with the HTML content of the page. Only one page may exist for any served path. +These files establish a route at the current directory path, which will be served for `GET` requests with the HTML content of the page. Only one page may exist for any served path. ### `+layout.marko` From e8a942e2da0bf8201de2335890b802dff07a1578 Mon Sep 17 00:00:00 2001 From: Ryan Turnquist Date: Mon, 17 Aug 2026 11:57:19 -0700 Subject: [PATCH 4/8] Docs: clarify next behavior for HEAD and other verbs --- docs/marko-run/file-based-routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/marko-run/file-based-routing.md b/docs/marko-run/file-based-routing.md index 6046e281b..679c6233b 100644 --- a/docs/marko-run/file-based-routing.md +++ b/docs/marko-run/file-based-routing.md @@ -54,7 +54,7 @@ export const POST = Run.POST({ json: ReminderSchema }, async (ctx) => { Handler functions are synchronous or asynchronous functions that receive two arguments: - `ctx` contains the WHATWG request object, path parameters, URL, route metadata, and the [validated body](./validation.md#request-bodies) (see [Context](./runtime.md#context)) -- `next` renders the page for `GET`, `HEAD`, `POST`, and `QUERY` requests where applicable, or returns a `204` response. Pass it an object to [make data available](./data-loading.md) to downstream handlers and the page. +- `next` renders the page for `GET`, `POST`, and `QUERY` requests where applicable, a `200` response for HEAD requests, or a `204` response for all other verbs. Pass it an object to [make data available](./data-loading.md) to downstream handlers and the page. > [!TIP] > Configure the [`json` or `form` option](./validation.md#request-bodies) to read validated request body content with `await ctx.body`. Calling `ctx.request.json()` or `ctx.request.formData()` in a handler bypasses validation and any configured size limits. Using [`Response.json`](https://developer.mozilla.org/en-US/docs/Web/API/Response/json_static) makes it easy to return JSON encoded data. From 51f2f488446b463e4960dcae83e610496ed024d3 Mon Sep 17 00:00:00 2001 From: Ryan Turnquist Date: Mon, 17 Aug 2026 12:22:37 -0700 Subject: [PATCH 5/8] Docs: format HEAD as code in the next description --- docs/marko-run/file-based-routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/marko-run/file-based-routing.md b/docs/marko-run/file-based-routing.md index 679c6233b..3c30562f8 100644 --- a/docs/marko-run/file-based-routing.md +++ b/docs/marko-run/file-based-routing.md @@ -54,7 +54,7 @@ export const POST = Run.POST({ json: ReminderSchema }, async (ctx) => { Handler functions are synchronous or asynchronous functions that receive two arguments: - `ctx` contains the WHATWG request object, path parameters, URL, route metadata, and the [validated body](./validation.md#request-bodies) (see [Context](./runtime.md#context)) -- `next` renders the page for `GET`, `POST`, and `QUERY` requests where applicable, a `200` response for HEAD requests, or a `204` response for all other verbs. Pass it an object to [make data available](./data-loading.md) to downstream handlers and the page. +- `next` renders the page for `GET`, `POST`, and `QUERY` requests where applicable, a `200` response for `HEAD` requests, or a `204` response for all other verbs. Pass it an object to [make data available](./data-loading.md) to downstream handlers and the page. > [!TIP] > Configure the [`json` or `form` option](./validation.md#request-bodies) to read validated request body content with `await ctx.body`. Calling `ctx.request.json()` or `ctx.request.formData()` in a handler bypasses validation and any configured size limits. Using [`Response.json`](https://developer.mozilla.org/en-US/docs/Web/API/Response/json_static) makes it easy to return JSON encoded data. From 5cde532c3f9ac8fad9021dff94bb96ee1b31c0f0 Mon Sep 17 00:00:00 2001 From: Ryan Turnquist Date: Wed, 19 Aug 2026 12:38:20 -0700 Subject: [PATCH 6/8] Docs: align data-loading next contract with QUERY and HEAD behavior --- docs/marko-run/data-loading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/marko-run/data-loading.md b/docs/marko-run/data-loading.md index 4bef5b67d..ac45c50bf 100644 --- a/docs/marko-run/data-loading.md +++ b/docs/marko-run/data-loading.md @@ -38,7 +38,7 @@ Independent data sources are best kept as separate promises. Two `` secti ## Rendering and Responses -The `next` function renders the page for `GET`, `HEAD`, and `POST` requests where applicable, or returns a `204` response when there is no page. A handler decides what to do with that result: +The `next` function renders the page for `GET`, `POST`, and `QUERY` requests where applicable, returns a `200` response for `HEAD` requests, or a `204` response when there is no page. A handler decides what to do with that result: ```ts export const GET = Run.GET((ctx, next) => { From 8f7dcb7a6a508edd73994dcbf66fafcd9773a91e Mon Sep 17 00:00:00 2001 From: Ryan Turnquist Date: Fri, 21 Aug 2026 14:24:54 -0700 Subject: [PATCH 7/8] chore: update @marko/run to 0.11.12 and adapter-static to 2.0.10 --- package.json | 4 +- pnpm-lock.yaml | 1172 ++++++++++++++++++------------------------------ 2 files changed, 439 insertions(+), 737 deletions(-) diff --git a/package.json b/package.json index 42deadfb8..6934d6a87 100644 --- a/package.json +++ b/package.json @@ -40,8 +40,8 @@ "@fortawesome/free-solid-svg-icons": "^7.3.1", "@jridgewell/source-map": "^0.3.11", "@marko/compiler": "^5.42.0", - "@marko/run": "^0.11.8", - "@marko/run-adapter-static": "^2.0.8", + "@marko/run": "^0.11.12", + "@marko/run-adapter-static": "^2.0.10", "@marko/type-check": "^3.1.6", "@resvg/resvg-js": "^2.6.2", "@rollup/browser": "^4.62.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 540023477..04cdea43f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -50,13 +50,13 @@ importers: version: 0.3.11 '@marko/compiler': specifier: ^5.42.0 - version: 5.42.0 + version: 5.42.3 '@marko/run': - specifier: ^0.11.8 - version: 0.11.8(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + specifier: ^0.11.12 + version: 0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) '@marko/run-adapter-static': - specifier: ^2.0.8 - version: 2.0.8(@marko/run@0.11.8(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))(supports-color@10.2.2) + specifier: ^2.0.10 + version: 2.0.10(@marko/run@0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))(supports-color@10.2.2) '@marko/type-check': specifier: ^3.1.6 version: 3.1.6 @@ -86,7 +86,7 @@ importers: version: link:shim/assert autoprefixer: specifier: ^10.5.4 - version: 10.5.4(postcss@8.5.23) + version: 10.5.4(postcss@8.5.26) codemirror: specifier: ^6.0.2 version: 6.0.2 @@ -134,13 +134,13 @@ importers: version: 1.0.1 postcss: specifier: ^8.5.23 - version: 8.5.23 + version: 8.5.26 postcss-import: specifier: ^16.1.1 - version: 16.1.1(postcss@8.5.23) + version: 16.1.1(postcss@8.5.26) postcss-preset-env: specifier: ^11.3.2 - version: 11.3.2(postcss@8.5.23) + version: 11.3.2(postcss@8.5.26) prettier: specifier: ^3.9.6 version: 3.9.6 @@ -176,10 +176,10 @@ importers: version: link:shim/util vite: specifier: ^8.1.5 - version: 8.1.5(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + version: 8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) vitest: specifier: ^4.1.10 - version: 4.1.10(@types/node@26.1.2)(vite@8.1.5(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)) + version: 4.1.10(@types/node@26.1.2)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)) writable-dom: specifier: ^1.0.6 version: 1.0.6 @@ -783,15 +783,6 @@ packages: '@ebay/browserslist-config@2.15.0': resolution: {integrity: sha512-VZRr18r7T+fCep6CmEzVKxsa+pHkZcueM/dx4qOYML6JVKHKV7MFoTxahgTWWJetSVkyb98ttQxCsFUDBUwntg==} - '@emnapi/core@1.11.1': - resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==} - - '@emnapi/runtime@1.11.1': - resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==} - - '@emnapi/wasi-threads@1.2.2': - resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==} - '@esbuild/aix-ppc64@0.27.7': resolution: {integrity: sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==} engines: {node: '>=18'} @@ -1006,25 +997,25 @@ packages: '@marijn/find-cluster-break@1.0.3': resolution: {integrity: sha512-FY+MKLBoTsLNJF/eLWaOsXGdz6uh3Iu1axjPf6TUq92IYumcTcXWHoS747JARLkcdlJ/Waiaxc5wQfFO8jC6NA==} - '@marko/compiler@5.42.0': - resolution: {integrity: sha512-w9awaOlrqIBpjX1hMz0fllOnRCa3IaY2ZeoD0+lp8Yo/EmTs2LxJHc6RxXwZsEMcj22fCCVh7yGcylRhhJNTQw==} + '@marko/compiler@5.42.3': + resolution: {integrity: sha512-o2y8q0+1sMSjgFYMYKAMeZmijL4+ssVV8Edh8DixgDXsJBIsFYw1kydUqrFbbouw6IQXGHEiBOtw/h09TfuzJA==} engines: {node: '>=22'} '@marko/language-tools@2.6.8': resolution: {integrity: sha512-JW3s23gA163kn8IVdxyO7nnS9htbI8WIuHf4fjC9pLlbJeEJrEmpy8nLwAymdcZYg9/6UuquGSXOnNmeDzfEow==} - '@marko/run-adapter-static@2.0.8': - resolution: {integrity: sha512-A5K1sj3jTbbS77rNxnaV6g7IA5SGgUc2/ym150udpgnJfS1A7xCmAh0CgefCRMtxT0RQ8esii8c2dH8WHkGmDw==} + '@marko/run-adapter-static@2.0.10': + resolution: {integrity: sha512-4Tc7Bf3uXy49zQvD917knly1pn5YzXaGhJT8/JHgopdJ+nKQIJ/sgF4ssWawdANp3mNu7pUXxoDivIyIU5QIhg==} peerDependencies: '@marko/run': ^0.7.7||^0.8||^0.9||^0.10||^0.11 - '@marko/run-explorer@2.0.4': - resolution: {integrity: sha512-E/wgGs8oo0j8XCR+wbxWuMkr1HpmAW+KydTuZXWc2haFRf+sE/7SXXQbgSCpCuRbfcGiVTTMXSfaL4lHrRLxAQ==} + '@marko/run-explorer@2.0.5': + resolution: {integrity: sha512-jUYw2pTyzTK/TZ1hbnIHqdgBPQa+YvPrGpunZkCWy+vhSBo4r/ZrrbHmp9AwVKPqeYU5AY+7mHmiIX9a2NOssg==} peerDependencies: '@marko/run': ^0.7||^0.8||^0.9||^0.10||^0.11 - '@marko/run@0.11.8': - resolution: {integrity: sha512-71mJFLgG6YZvegpC6RD4Mcm8jvQScnwShZ/XNT9HHuYb7Ftbuio5t+pIXLaUH0iZS3RiPY4l9lRHLJnNkUSp2A==} + '@marko/run@0.11.12': + resolution: {integrity: sha512-ohr0uLTe0l/L2iUEPG0m1CTSphLJx/4nel0+RyNPhiRt4pPRQ7y0wzcpLi//QtwgdwyzrtfjjhqG06GjPplQ5g==} hasBin: true peerDependencies: marko: 5 - 6 @@ -1033,8 +1024,8 @@ packages: resolution: {integrity: sha512-6AtWat4z8oWK2pGGH3e7+JbUkNwMB5j3gigZYSKZl+MrQk2Dmlo/0VUEC4hVV3f6c0d3dL6y46hpk4PmF9eIFw==} hasBin: true - '@marko/vite@6.1.9': - resolution: {integrity: sha512-ozJjVNe6988rWuNwYJf5+aWFO9iPkz5I6nIz7iK8fCrJq8KEHd7InMdovGaeKFf+mb0VZBWEH9WjbNqUoBQZlg==} + '@marko/vite@6.1.11': + resolution: {integrity: sha512-nZrRmKDsQBsf4Q666Qa+OQ6lWxpDF05lkrYVUMDj59qZKCk4KUhSny7gX6gyGU6Vp1HsdqSYQPDKOOujh21M2w==} peerDependencies: '@marko/compiler': ^5 vite: ^8 @@ -1121,12 +1112,6 @@ packages: resolution: {integrity: sha512-DEWl/B99RQsyMT3F9bvrXuhL01/eIQp/dtNSE3G1jQ4mTGRcP4iHWxoPZ577WrbjUinrNgvRA5+08g8fkPgimQ==} engines: {node: '>= 10'} - '@napi-rs/wasm-runtime@1.1.6': - resolution: {integrity: sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==} - peerDependencies: - '@emnapi/core': ^1.7.1 - '@emnapi/runtime': ^1.7.1 - '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -1188,11 +1173,8 @@ packages: '@oxc-project/types@0.136.0': resolution: {integrity: sha512-39Al/B3v9esnHCX7S8l9Se2+s2tb9b2jcMd+bZ2L659VG73kNyGPpPrL5Zi/p0ty7p4pTTU2/Dd+g27hv94XCg==} - '@oxc-project/types@0.139.0': - resolution: {integrity: sha512-r9gHphtCs+1M7J0pw6Sn/hh/Wpa/iQrOOkrNAlVLF/gHq+/CJmHIWKKUUhdWjcD6CIa8idarspCsASiXCXvFUw==} - - '@oxc-project/types@0.143.0': - resolution: {integrity: sha512-u6JZdLBTLotrNC9Vd6vPssINdzcCzleKAH6EJKImQb7GtYvX5keN2dxkoK44stCc4tffE6QQRtZTXVSzsLUlWA==} + '@oxc-project/types@0.146.0': + resolution: {integrity: sha512-XC0QsnnhVe7sLIWmYmdPw7x5P0h4W8vUU3Nv1ySgWXtvCz8NizoAEpGXA0sOYoJQV2Rl13LgURAHQ5cI5ILCSA==} '@parcel/source-map@2.1.1': resolution: {integrity: sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew==} @@ -1289,14 +1271,14 @@ packages: '@polka/url@1.0.0-next.29': resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==} - '@remix-run/form-data-parser@0.17.4': - resolution: {integrity: sha512-mqWVpD2OaJTFEW2i+M49/iWoUp2Cai6WD606/iynZ+NIlzVdkty3bbGb8g7vTjXeV/sQRmPbg3SJypgvQitvJg==} + '@remix-run/form-data-parser@0.17.5': + resolution: {integrity: sha512-LPBZ6uazgMhtWnt17wKZ6N97aebVqLQMXcNIuLooKdFH2s8uIg7twlbTfEO6G6Jgl8jrpjLpPL5HZgN5cdTXOw==} '@remix-run/headers@0.21.1': resolution: {integrity: sha512-DRhRveigepAQDUIi0MrOFhpcl3/KTv/fkpIhulv7Asv1pUwM8RpY2ENjdI8lfii6Z3MEsWtYhGt6If8bi6bYpQ==} - '@remix-run/multipart-parser@0.16.3': - resolution: {integrity: sha512-XvMYPIyDTuquR7s1YF4wo4CqMPDrBkpWY0zHSa7SpX0F+t9awg7FWd5mJywc6vTn4oWeS7nQYQQarZ9CuoC/RQ==} + '@remix-run/multipart-parser@0.16.4': + resolution: {integrity: sha512-XrrfbuU4csgEpTmHv9rjrnFrGu/7iz+31PM51cFL2fcu/JZ7+wZhDyqaOca2uOE8qNhVgXuJHqEOl/8eFCYTHQ==} '@resvg/resvg-js-android-arm-eabi@2.6.2': resolution: {integrity: sha512-FrJibrAk6v29eabIPgcTUMPXiEz8ssrAk7TXxsiZzww9UTQ1Z5KAbFJs+Z0Ez+VZTYgnE5IQJqBcoSiMebtPHA==} @@ -1378,187 +1360,98 @@ packages: resolution: {integrity: sha512-xBaJish5OeGmniDj9cW5PRa/PtmuVU3ziqrbr5xJj901ZDN4TosrVaNZpEiLZAxdfnhAe7uQ7QFWfjPe9d9K2Q==} engines: {node: '>= 10'} - '@rolldown/binding-android-arm64@1.1.5': - resolution: {integrity: sha512-lZg8fqIv2v7FF237bwMgzGZEJvGL79/s5knJ/i6FmsGF4XXlzccZ4jb+TrFIxtSSxFtIpdsgrPZeMk1I9AFcyQ==} + '@rolldown/binding-android-arm-eabi@1.2.5': + resolution: {integrity: sha512-DLe/i+l8ynIBY7XEQ191TeZvCoowIGa18R+dIV30GW7DiOtp74i/xX8hs8GUjW5ARV7VZuie3d6AumSmCwbeRA==} engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm64] + cpu: [arm] os: [android] - '@rolldown/binding-android-arm64@1.2.3': - resolution: {integrity: sha512-zrJtHDcaZJ1Fp7xf4hNl+7seH9Cn/N5TwLYkhgXREtBwAd/jaqW3uqeHxpDugJLVICWg4eW44kOQEGJ1r6jCGw==} + '@rolldown/binding-android-arm64@1.2.5': + resolution: {integrity: sha512-zXcwKlQApYAOELHd8PwKDFkagYF9Wy4e0RJ+0qnzl9Pjnpj75TEG8ufv40p2J7kCEfwZAsNiuzRIyNNMWT38ig==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - '@rolldown/binding-darwin-arm64@1.1.5': - resolution: {integrity: sha512-51Bnx9pNiMRKSUNtBfySkNJ9vMU9Hh3I1ozDd6gyPPYzaXCfnptUcEZxXGYFn+ul2dtcMUiqGR1Yai2K10uoTw==} + '@rolldown/binding-darwin-arm64@1.2.5': + resolution: {integrity: sha512-dK4QakI42nzWgJT5sm4y4y/O//D4OxM75/cH28RLV+nzIN9AY+YsbuUVrUTjlLjXR6vpyxFbSsbmNuJ6BP9sww==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - '@rolldown/binding-darwin-arm64@1.2.3': - resolution: {integrity: sha512-ieIiibVCp0tX7TLu2cafoNPv8wJyYi01ekXpbf8q2j7F4rGAhhXb/eQh7ge9DRBY78GwmRQtvjZDux7EDbA8kA==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm64] - os: [darwin] - - '@rolldown/binding-darwin-x64@1.1.5': - resolution: {integrity: sha512-Tm+gbfC0aHu1tBA/JvKQh32S0K6YgCHkiAF4/W6xX0K0RmNuc94VeK419dJoE65R5aRxmo+noZQSWrAMF6yb6g==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [x64] - os: [darwin] - - '@rolldown/binding-darwin-x64@1.2.3': - resolution: {integrity: sha512-Zh9tCon19eDXJoihx0rqKhMUlMYqzwj3aPsSuHmI4RWZh62dWUL+DJN4C5YQya5TcQBJU/Fe8+rY0jhXTQITqA==} + '@rolldown/binding-darwin-x64@1.2.5': + resolution: {integrity: sha512-fqSALaUu1Wjd1nK2uW2kJDWdLCc8lx1IcY+MTY26Aurfdx19anlzhqXOgCFbBFQnlFDTn4TC1/7Nz4Bl2mLP3A==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - '@rolldown/binding-freebsd-x64@1.1.5': - resolution: {integrity: sha512-JMzDKCCXq93YccG5gz3hvOs1oXRKAf0XYpfOS88e+wZrC8Iugj6j68867vrYZkvpDDpKn/KoKORThmchMpF6TA==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [x64] - os: [freebsd] - - '@rolldown/binding-freebsd-x64@1.2.3': - resolution: {integrity: sha512-nGbJWewA1wrXXZiQhjAT5rhibGfns5ZNkDVqxsO6zJ3f3YvpoDNNmGMSbbhLuXKjNScaBJVOAboztAWVespQMg==} + '@rolldown/binding-freebsd-x64@1.2.5': + resolution: {integrity: sha512-/vCnNxlkxs9tKxNDcyWUePpJ/PgTzxIaVhoM5SmG8UV+GR/IcPam4VYxi7GIMo7PSDuNqlJqvprqii9NqqVCMw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - '@rolldown/binding-linux-arm-gnueabihf@1.1.5': - resolution: {integrity: sha512-uML21j2K5TfPGutKxub+M+nLjZIrWjXQ5Grx4lCe/nimTj9B4L63zHpjXLl4y0L3mcm2htEQIb06oCG/szerNw==} + '@rolldown/binding-linux-arm-gnueabihf@1.2.5': + resolution: {integrity: sha512-abk0NLA519LxRCszmbE0jYKuQ9YPocOXTiOXOo6Yr+YAT95VH+PtqYAjOJvGKt3viEd/x4qzabAlwd5bHOOARg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - '@rolldown/binding-linux-arm-gnueabihf@1.2.3': - resolution: {integrity: sha512-QNniJr5Kml0kDEB98jiDOJjXNroxIIi0IXIbdYzY26Xt1pVbeP62+KnoIZLwirOymX/0jDk/2gI/bNUv7A7OIw==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm] - os: [linux] - - '@rolldown/binding-linux-arm64-gnu@1.1.5': - resolution: {integrity: sha512-navSiuTMogvnQoZoM/v+l3ZWo50/NTwSHSzheABx/RCnmUPaKwq9qSo4Br2OYRs21+Fz8uFqITZM3H4opOB0/Q==} + '@rolldown/binding-linux-arm64-gnu@1.2.5': + resolution: {integrity: sha512-Y7eALiJ8lr0M2HH103Js+g7V34wf6snlpZLAsHI90uLhr3PVlNsbFVAXJC9d/V6BnPyKtpSwI+NcB/RLxsQxuA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - '@rolldown/binding-linux-arm64-gnu@1.2.3': - resolution: {integrity: sha512-TkqEAcmmvH3I/q4114NB4RVt6241Dao48pF45uLcFGrwAaIn0iITgTAKP/dLjbN0R4buJjGb91+UHSoFmpgIWw==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm64] - os: [linux] - libc: [glibc] - - '@rolldown/binding-linux-arm64-musl@1.1.5': - resolution: {integrity: sha512-lAryqH7IteztmCXQXk0etKj4wBQ7Gx5S6LjKhsgp9zb8I5bsuvU/2llH1hDQcjsFeqIsovMVN339/8pUDDBXxA==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm64] - os: [linux] - libc: [musl] - - '@rolldown/binding-linux-arm64-musl@1.2.3': - resolution: {integrity: sha512-NHqjnxpsndf4MPymxteFAWHHfkTL8HjWh1KB7z23ofZ6QO2euONuxDXjat69dKZRALnGypg8k8SsK8vZJoXv1Q==} + '@rolldown/binding-linux-arm64-musl@1.2.5': + resolution: {integrity: sha512-xMvZgnbZg4YVnR/AX2b3oOPDTFYJvUVaJg5FedA/LuvexAtXibZQej4cnTkw3rjsJ/ggUROB64TdtETiim+FYA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - '@rolldown/binding-linux-ppc64-gnu@1.1.5': - resolution: {integrity: sha512-fsK/sNBnxzBlL4O1JNrZakVQxPspqpED5dLtNsZS9oOKmtSpdNIzxH2kkol5HYTWJN47sE20ztMJPxfZ89qGOg==} + '@rolldown/binding-linux-ppc64-gnu@1.2.5': + resolution: {integrity: sha512-GRjeqTUDHTo5GwntsLaAMcBahG3nlpjftXWZLN73HiYQlhwEowvarFgQnRnQZtIp4keXX7quXFbG38uPZBa2EA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - '@rolldown/binding-linux-ppc64-gnu@1.2.3': - resolution: {integrity: sha512-6tbrbwfz5GB9DQ4Jwo6hy9v+vR31xZlvzZ6n5Xut6Hhx5PvrA9q/HsK8KMaYQp063iqZGXwNvZtYNLD7EM/x0w==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [ppc64] - os: [linux] - libc: [glibc] - - '@rolldown/binding-linux-s390x-gnu@1.1.5': - resolution: {integrity: sha512-gLYb4BIadlfTOYT5gO503n8zQjXflgzpD0FcyKh0Mzx3rqCZKnHoJWV9xe1KXUJ5lx2JfcSHr/mhzS0PC/McAA==} + '@rolldown/binding-linux-s390x-gnu@1.2.5': + resolution: {integrity: sha512-vLNTR45F2Uwc8AufkNXPmB4VliaXs+FvcheEogIzOXzO4l+LzieXF5A/TWxLy5HtqpsRCHUfd0lPVrrdgXdLHQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - '@rolldown/binding-linux-s390x-gnu@1.2.3': - resolution: {integrity: sha512-oyuXxXmoZHjXC917IAPFAAv4wWAa0cM9afk8nx1+9/jNNOX1uPf8yDA6p7G0RypOfw/X0PQt5IfoquY1um+zSg==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [s390x] - os: [linux] - libc: [glibc] - - '@rolldown/binding-linux-x64-gnu@1.1.5': - resolution: {integrity: sha512-FjcpEKUyJygHgs1o50VYNvkt5+7Le/VEdYt0AkRpkL33MnyQfwr8l5mXwMmfmTbyMPr5vJLC+8/Gd9gXnwU1QQ==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [x64] - os: [linux] - libc: [glibc] - - '@rolldown/binding-linux-x64-gnu@1.2.3': - resolution: {integrity: sha512-TytMwF2KVGqP2tgd0I1OY0PAv78dZRAYcF5ssDzjM34SUXCED3uXvSd5+lHoC0bTD6eEdFz7LdQNCO1y0oVk9w==} + '@rolldown/binding-linux-x64-gnu@1.2.5': + resolution: {integrity: sha512-Mgj59/HTuYeK9Gz2MA+mBWKnHsAgkBSec15ZMb1st3oIfFbX7gCjOae7GydHhzcyQi9Z/7M1QuN9bR3oFqF0jQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - '@rolldown/binding-linux-x64-musl@1.1.5': - resolution: {integrity: sha512-Me+PfPI2TMeOQk0gYWfLQZtTktrmzbr8cDboqX83XKc7UrgAi55gF+2dUkWdxd19n55Essp2yeca+O9N5rBxHg==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [x64] - os: [linux] - libc: [musl] - - '@rolldown/binding-linux-x64-musl@1.2.3': - resolution: {integrity: sha512-/E9m3qstrJFVPoULV25mVQblSNExY2+kBsYe4sy0Tn0yOOgJ8wZbZt3KnRbF/XeU2Gl1STKUQnDNTqhIE5MD4A==} + '@rolldown/binding-linux-x64-musl@1.2.5': + resolution: {integrity: sha512-mY8AP0/ichsbhAxGnLa3d3+MwV0EfgrPND2bplI3Ym8T6R2pJ0N87bvrKVwNXmdy3jnr6eQBecdqx/HMknBmpA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - '@rolldown/binding-openharmony-arm64@1.1.5': - resolution: {integrity: sha512-yc5WrLzXks6zCQfn9Oxr8pORKyl/pF+QjHmW/Qx3qu0oyrrNC+y2JLTU1E2rcWYAmzlnqngWXHQjy51VzW70Vw==} + '@rolldown/binding-openharmony-arm64@1.2.5': + resolution: {integrity: sha512-8SLssA2oweAxyRgDp789ACfRb/3P+zNRJpzZxSizxF9m8NUDQ4+3xjo8ttjhVGGw6Qxb70oZiEtIjaKikCO7Yw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - '@rolldown/binding-openharmony-arm64@1.2.3': - resolution: {integrity: sha512-Kr0OcsoQI816i6HOl3vFHpd1K0eZyh76zgfj4c1nTyaTsd5r2Mj1lwM4R90y/qaCfmTn9eHy0SKwi98eitRxug==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm64] - os: [openharmony] - - '@rolldown/binding-wasm32-wasi@1.1.5': - resolution: {integrity: sha512-VbQGPX2b4r48TAMIM2cjgluIM1HYutm4pcTEJsle7iEP7sB1dFqtPLBVbdLAZCxy1txCcPxf4QFf4v8uvltPqA==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [wasm32] - - '@rolldown/binding-win32-arm64-msvc@1.1.5': - resolution: {integrity: sha512-gHv82k63z4qpV5+Q1y/12KrK0ltWBukVDI8nZcbT7Tt/ZlOIVwppazneq0F93oDxTo3IgAMEDIoQh3E2n6mVsw==} + '@rolldown/binding-win32-arm64-msvc@1.2.5': + resolution: {integrity: sha512-vGbruD5zquhoc8D9SViXgN2FBJtNdTyQ4DtG+SWiEGlJiAzoKcZ2xp+xuXCffhubVdt0NJlTZqkeRuERy7g8Cw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - '@rolldown/binding-win32-arm64-msvc@1.2.3': - resolution: {integrity: sha512-hOtMwTqnME+/gJcH/PCZ0wn0zPUjiWOgkHpxbSJpfGKMezHltx1S7/k1SitzVa7Ww2cqrDDaFbZEhcJZO8o+Jw==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [arm64] - os: [win32] - - '@rolldown/binding-win32-x64-msvc@1.1.5': - resolution: {integrity: sha512-tTZuDBPw85tEN5PQi1pnEBzDy0Z49HtScLAbD5t6hyeU92A95pRWaSMw1GZZi/RwgSgUIl0xrSlXIT/9QzvYSA==} - engines: {node: ^20.19.0 || >=22.12.0} - cpu: [x64] - os: [win32] - - '@rolldown/binding-win32-x64-msvc@1.2.3': - resolution: {integrity: sha512-ekcqMMkI2PlhYnfzQnB/cEdYUVVJViWvoUyLrbzgDoi3Snfc1mVBwdnc306ufA5ejy8JSPjT2RlW1nQSjW7efg==} + '@rolldown/binding-win32-x64-msvc@1.2.5': + resolution: {integrity: sha512-e/SXpgISz+IoqVcSSI0rx/d/he8zqLex+/rCWpnHpmVfmPIUjag9H6P7zotf0gJHwPUhQxZ/mF8tr6acebT9yw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] @@ -1611,9 +1504,6 @@ packages: '@standard-schema/spec@1.1.0': resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} - '@tybys/wasm-util@0.10.3': - resolution: {integrity: sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==} - '@types/chai@5.2.3': resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} @@ -1742,8 +1632,8 @@ packages: resolution: {integrity: sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw==} engines: {node: '>= 0.4'} - baseline-browser-mapping@2.11.5: - resolution: {integrity: sha512-xJo6a6YZnwZfnyGmQKWMbVOcii7XRibjOskRh+WJ9UHQoX16xrQrcIgAMQOzfvs8XiLMx6ih/fsLPF73iY2D1A==} + baseline-browser-mapping@2.11.17: + resolution: {integrity: sha512-KAUDn1OSS0fmPlGO+NOUMRcOQ/b/shUBH3OgkG73mPgdf+JD/BQ6fHboGxNOxnUmlwcq+lLq3dTkayRPuSfXwg==} engines: {node: '>=6.0.0'} hasBin: true @@ -1755,8 +1645,8 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.28.7: - resolution: {integrity: sha512-JxV13hNrFxqjOc8alRbq9dK1MM79NEXYpma2B2J4wAtpWS5zIEIKqWPGCl7N4o7Uc7B7itylh7SuDujATRyyTw==} + browserslist@4.28.8: + resolution: {integrity: sha512-V2NpofLblG64mfOtSgDhOJESZEGogzDMBv/q+W6oc4LXWP/q75eOXoOaaOu1EOadB9U4Bwx/e0yzbvwKH8zalA==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -1770,8 +1660,8 @@ packages: camelize@1.0.1: resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - caniuse-lite@1.0.30001806: - resolution: {integrity: sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==} + caniuse-lite@1.0.30001809: + resolution: {integrity: sha512-xxWVywk6a6Arlk+hymeycyn/VgqEfLDxupvhH/xiY5SJ/18kmi9o6MiO320DCUzypORHLtvh0I4i04tUhCNHNQ==} ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} @@ -2032,8 +1922,8 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - electron-to-chromium@1.5.396: - resolution: {integrity: sha512-yHiw2Y3C3H9U6TMbOfoWK/BPreiOPXRfTWPBwQBoZG6/8TB6eOPnsy5oaRYuatR7Fw2SJ4kKforgufeo7fq0EQ==} + electron-to-chromium@1.5.412: + resolution: {integrity: sha512-z4rMe3esBzlzovKHj4gxJnsCGZRK5l4baUvm+gCGJBPE+gsyUMKsuU9tnEUtI1dOebXz1ytAPGjvXhmQ7rIPwA==} email-addresses@5.0.0: resolution: {integrity: sha512-4OIPYlA6JXqtVn8zpHpGiI7vE6EQOAg16aGnDMIAlZVinnoZ8208tW1hAbjWydgN/4PLTT9q+O1K6AH/vALJGw==} @@ -2246,10 +2136,6 @@ packages: hastscript@9.0.1: resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} - he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} - hasBin: true - hex-rgb@4.3.0: resolution: {integrity: sha512-Ox1pJVrDCyGHMG9CFg1tmrRUMRPRsAWYc/PinY0XzJU4K7y7vjNoLKIQ7BR5UJMCxNN8EM1MNDmHWA/B3aZUuw==} engines: {node: '>=6'} @@ -2257,11 +2143,8 @@ packages: html-void-elements@3.0.0: resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} - htmljs-parser@5.13.0: - resolution: {integrity: sha512-utBMB1wGNNovgi1Bq//CfSg9LZ2SF6kfMHrfVy+d2RqwdAeVbzOFblXkdqycG+SbFGGUafbPuWy7/83s10ApfA==} - - htmljs-parser@5.14.0: - resolution: {integrity: sha512-cGHMvzufiWAcQl11UM8HwxxpFkVicgtJ5RniyFHTClT0WfwMWSxAc7QMAlqpKet+xTsrr7QOOeShOENBMvCPVg==} + htmljs-parser@5.15.0: + resolution: {integrity: sha512-30yoZmgr4gDCl7kqplFEYeV0buxezcdiNVYFtrvWzPiljaHNBhxEgAiWjgc3nV8n5nYpx58JNUfnt0QxaWg2vQ==} htmlparser2@10.1.0: resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==} @@ -2630,13 +2513,8 @@ packages: ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - nanoid@3.3.16: - resolution: {integrity: sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - - nanoid@3.3.17: - resolution: {integrity: sha512-xQLf0A3HOMlgHq0n247/LRuAOYmB7dXJ/DvAxGvsSBij45XtBSmQycu+F8ODbHwns/XyFZagyL1+J0Offw1E0g==} + nanoid@3.3.18: + resolution: {integrity: sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true @@ -2647,8 +2525,8 @@ packages: node-addon-api@7.1.1: resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} - node-releases@2.0.51: - resolution: {integrity: sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==} + node-releases@2.0.53: + resolution: {integrity: sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ==} engines: {node: '>=18'} normalize-path@3.0.0: @@ -2910,10 +2788,6 @@ packages: postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - postcss@8.5.23: - resolution: {integrity: sha512-g50586zr4bZmwFiTlflMu8E0bDTb5I5gertgwAKmsdUlTQIhZtunzUlD1WSzwcVWPoAVpsrA6vlfCD7oXvRwgg==} - engines: {node: ^10 || ^12 || >=14} - postcss@8.5.26: resolution: {integrity: sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==} engines: {node: ^10 || ^12 || >=14} @@ -3006,13 +2880,8 @@ packages: resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - rolldown@1.1.5: - resolution: {integrity: sha512-t9z29cJjXf/vxQ8dyhCSpt6H6aSwHTk8cT5I3iy6SMXuFpk5mB6PL6XfC8PCwrPTx93udwKUm9HRteAlTGBLiA==} - engines: {node: ^20.19.0 || >=22.12.0} - hasBin: true - - rolldown@1.2.3: - resolution: {integrity: sha512-rn9wpmxplLf7NLNyCk9FyWh3FM43DbY8jOzCdEPzH7uflhTftRbCEpqi6Ly2osgoU8OwObtmavMbWLaWy4LX7A==} + rolldown@1.2.5: + resolution: {integrity: sha512-VD2IE5PUG4Oj8zz2VGykiYd5wbnjdIiSsNQb8Qu5B+noEp+A78mu2iVvpp27g8es14Tk9rofNs5Tku9iQCS4fA==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true @@ -3372,8 +3241,8 @@ packages: resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} engines: {node: '>= 10.0.0'} - update-browserslist-db@1.2.3: - resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==} + update-browserslist-db@1.3.1: + resolution: {integrity: sha512-ZZ61DsRsOnakl74HAmp3oSN4aXUmEWXf+i/yv0h7tIBfICc3VdrFErQKUUKPgu3AMsTUMbcongALEN4l6GSUrQ==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -3394,56 +3263,13 @@ packages: vfile@6.0.3: resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} - vite@8.1.5: - resolution: {integrity: sha512-7ULLwsCdYx/nRyrpiEwvqb5TFHrMVZyBt+rg/OAXT7rgj/z+DtTDyKFeLAdDkubDVDKD8jOsndmy7m55XcfUsw==} + vite@8.2.2: + resolution: {integrity: sha512-cFKLV/PRgAUlIRm5WjMjJ86jrftzpqcgH+Us+DS8mI3CDNiH30Whrz8uHL3+MOLPAgqbMBAqWdAHAphOAM+z/Q==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: '@types/node': ^20.19.0 || >=22.12.0 - '@vitejs/devtools': ^0.3.0 - esbuild: ^0.27.0 || ^0.28.0 - jiti: '>=1.21.0' - less: ^4.0.0 - sass: ^1.70.0 - sass-embedded: ^1.70.0 - stylus: '>=0.54.8' - sugarss: ^5.0.0 - terser: ^5.16.0 - tsx: ^4.8.1 - yaml: ^2.4.2 - peerDependenciesMeta: - '@types/node': - optional: true - '@vitejs/devtools': - optional: true - esbuild: - optional: true - jiti: - optional: true - less: - optional: true - sass: - optional: true - sass-embedded: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - tsx: - optional: true - yaml: - optional: true - - vite@8.2.1: - resolution: {integrity: sha512-EU/eS7BH3XROHh2YnBefjM6DBKA6ZeMZEYQbj7NLWg5wHYlhB8B/Mayd5XsgWq+NFYccDOTemRpdETWR6Ka/lw==} - engines: {node: ^20.19.0 || >=22.12.0} - hasBin: true - peerDependencies: - '@types/node': ^20.19.0 || >=22.12.0 - '@vitejs/devtools': ^0.4.0 + '@vitejs/devtools': ^0.4.0 || ^0.5.0 esbuild: ^0.27.0 || ^0.28.0 jiti: '>=1.21.0' less: ^4.0.0 @@ -3874,297 +3700,297 @@ snapshots: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-alpha-function@2.0.8(postcss@8.5.23)': + '@csstools/postcss-alpha-function@2.0.8(postcss@8.5.26)': dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-cascade-layers@6.0.0(postcss@8.5.23)': + '@csstools/postcss-cascade-layers@6.0.0(postcss@8.5.26)': dependencies: '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.4) - postcss: 8.5.23 + postcss: 8.5.26 postcss-selector-parser: 7.1.4 - '@csstools/postcss-color-function-display-p3-linear@2.0.7(postcss@8.5.23)': + '@csstools/postcss-color-function-display-p3-linear@2.0.7(postcss@8.5.26)': dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-color-function@5.0.7(postcss@8.5.23)': + '@csstools/postcss-color-function@5.0.7(postcss@8.5.26)': dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-color-mix-function@4.0.7(postcss@8.5.23)': + '@csstools/postcss-color-mix-function@4.0.7(postcss@8.5.26)': dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-color-mix-variadic-function-arguments@2.0.7(postcss@8.5.23)': + '@csstools/postcss-color-mix-variadic-function-arguments@2.0.7(postcss@8.5.26)': dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-container-rule-prelude-list@1.0.1(postcss@8.5.23)': + '@csstools/postcss-container-rule-prelude-list@1.0.1(postcss@8.5.26)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-content-alt-text@3.0.2(postcss@8.5.23)': + '@csstools/postcss-content-alt-text@3.0.2(postcss@8.5.26)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-contrast-color-function@3.0.7(postcss@8.5.23)': + '@csstools/postcss-contrast-color-function@3.0.7(postcss@8.5.26)': dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-exponential-functions@3.0.4(postcss@8.5.23)': + '@csstools/postcss-exponential-functions@3.0.4(postcss@8.5.26)': dependencies: '@csstools/css-calc': 3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-font-format-keywords@5.0.0(postcss@8.5.23)': + '@csstools/postcss-font-format-keywords@5.0.0(postcss@8.5.26)': dependencies: - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 postcss-value-parser: 4.2.0 - '@csstools/postcss-font-width-property@1.0.0(postcss@8.5.23)': + '@csstools/postcss-font-width-property@1.0.0(postcss@8.5.26)': dependencies: - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-gamut-mapping@3.0.7(postcss@8.5.23)': + '@csstools/postcss-gamut-mapping@3.0.7(postcss@8.5.26)': dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-gradients-interpolation-method@6.0.7(postcss@8.5.23)': + '@csstools/postcss-gradients-interpolation-method@6.0.7(postcss@8.5.26)': dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-hwb-function@5.0.7(postcss@8.5.23)': + '@csstools/postcss-hwb-function@5.0.7(postcss@8.5.26)': dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-ic-unit@5.0.2(postcss@8.5.23)': + '@csstools/postcss-ic-unit@5.0.2(postcss@8.5.26)': dependencies: - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 postcss-value-parser: 4.2.0 - '@csstools/postcss-image-function@1.0.1(postcss@8.5.23)': + '@csstools/postcss-image-function@1.0.1(postcss@8.5.26)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-initial@3.0.0(postcss@8.5.23)': + '@csstools/postcss-initial@3.0.0(postcss@8.5.26)': dependencies: - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-is-pseudo-class@6.0.0(postcss@8.5.23)': + '@csstools/postcss-is-pseudo-class@6.0.0(postcss@8.5.26)': dependencies: '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.4) - postcss: 8.5.23 + postcss: 8.5.26 postcss-selector-parser: 7.1.4 - '@csstools/postcss-light-dark-function@3.0.2(postcss@8.5.23)': + '@csstools/postcss-light-dark-function@3.0.2(postcss@8.5.26)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-logical-float-and-clear@4.0.0(postcss@8.5.23)': + '@csstools/postcss-logical-float-and-clear@4.0.0(postcss@8.5.26)': dependencies: - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-logical-overflow@3.0.0(postcss@8.5.23)': + '@csstools/postcss-logical-overflow@3.0.0(postcss@8.5.26)': dependencies: - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-logical-overscroll-behavior@3.0.0(postcss@8.5.23)': + '@csstools/postcss-logical-overscroll-behavior@3.0.0(postcss@8.5.26)': dependencies: - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-logical-resize@4.0.0(postcss@8.5.23)': + '@csstools/postcss-logical-resize@4.0.0(postcss@8.5.26)': dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - '@csstools/postcss-logical-viewport-units@4.0.0(postcss@8.5.23)': + '@csstools/postcss-logical-viewport-units@4.0.0(postcss@8.5.26)': dependencies: '@csstools/css-tokenizer': 4.0.0 - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-media-minmax@3.0.4(postcss@8.5.23)': + '@csstools/postcss-media-minmax@3.0.4(postcss@8.5.26)': dependencies: '@csstools/css-calc': 3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 '@csstools/media-query-list-parser': 5.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-media-queries-aspect-ratio-number-values@4.0.0(postcss@8.5.23)': + '@csstools/postcss-media-queries-aspect-ratio-number-values@4.0.0(postcss@8.5.26)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 '@csstools/media-query-list-parser': 5.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-mixins@1.0.0(postcss@8.5.23)': + '@csstools/postcss-mixins@1.0.0(postcss@8.5.26)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-nested-calc@5.0.0(postcss@8.5.23)': + '@csstools/postcss-nested-calc@5.0.0(postcss@8.5.26)': dependencies: - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 postcss-value-parser: 4.2.0 - '@csstools/postcss-normalize-display-values@5.0.1(postcss@8.5.23)': + '@csstools/postcss-normalize-display-values@5.0.1(postcss@8.5.26)': dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - '@csstools/postcss-oklab-function@5.0.7(postcss@8.5.23)': + '@csstools/postcss-oklab-function@5.0.7(postcss@8.5.26)': dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-position-area-property@2.0.0(postcss@8.5.23)': + '@csstools/postcss-position-area-property@2.0.0(postcss@8.5.26)': dependencies: - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-progressive-custom-properties@5.1.1(postcss@8.5.23)': + '@csstools/postcss-progressive-custom-properties@5.1.1(postcss@8.5.26)': dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - '@csstools/postcss-property-rule-prelude-list@2.0.0(postcss@8.5.23)': + '@csstools/postcss-property-rule-prelude-list@2.0.0(postcss@8.5.26)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-random-function@3.0.3(postcss@8.5.23)': + '@csstools/postcss-random-function@3.0.3(postcss@8.5.26)': dependencies: '@csstools/css-calc': 3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-relative-color-syntax@4.0.7(postcss@8.5.23)': + '@csstools/postcss-relative-color-syntax@4.0.7(postcss@8.5.26)': dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - '@csstools/postcss-scope-pseudo-class@5.0.0(postcss@8.5.23)': + '@csstools/postcss-scope-pseudo-class@5.0.0(postcss@8.5.26)': dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-selector-parser: 7.1.4 - '@csstools/postcss-sign-functions@2.0.4(postcss@8.5.23)': + '@csstools/postcss-sign-functions@2.0.4(postcss@8.5.26)': dependencies: '@csstools/css-calc': 3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-stepped-value-functions@5.0.4(postcss@8.5.23)': + '@csstools/postcss-stepped-value-functions@5.0.4(postcss@8.5.26)': dependencies: '@csstools/css-calc': 3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-syntax-descriptor-syntax-production@2.0.0(postcss@8.5.23)': + '@csstools/postcss-syntax-descriptor-syntax-production@2.0.0(postcss@8.5.26)': dependencies: '@csstools/css-tokenizer': 4.0.0 - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-system-ui-font-family@2.0.0(postcss@8.5.23)': + '@csstools/postcss-system-ui-font-family@2.0.0(postcss@8.5.26)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-text-decoration-shorthand@5.0.4(postcss@8.5.23)': + '@csstools/postcss-text-decoration-shorthand@5.0.4(postcss@8.5.26)': dependencies: '@csstools/color-helpers': 6.1.0 - postcss: 8.5.23 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - '@csstools/postcss-trigonometric-functions@5.0.4(postcss@8.5.23)': + '@csstools/postcss-trigonometric-functions@5.0.4(postcss@8.5.26)': dependencies: '@csstools/css-calc': 3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - postcss: 8.5.23 + postcss: 8.5.26 - '@csstools/postcss-unset-value@5.0.0(postcss@8.5.23)': + '@csstools/postcss-unset-value@5.0.0(postcss@8.5.26)': dependencies: - postcss: 8.5.23 + postcss: 8.5.26 '@csstools/selector-resolve-nested@4.0.1(postcss-selector-parser@7.1.4)': dependencies: @@ -4174,28 +4000,12 @@ snapshots: dependencies: postcss-selector-parser: 7.1.4 - '@csstools/utilities@3.0.0(postcss@8.5.23)': + '@csstools/utilities@3.0.0(postcss@8.5.26)': dependencies: - postcss: 8.5.23 + postcss: 8.5.26 '@ebay/browserslist-config@2.15.0': {} - '@emnapi/core@1.11.1': - dependencies: - '@emnapi/wasi-threads': 1.2.2 - tslib: 2.8.1 - optional: true - - '@emnapi/runtime@1.11.1': - dependencies: - tslib: 2.8.1 - optional: true - - '@emnapi/wasi-threads@1.2.2': - dependencies: - tslib: 2.8.1 - optional: true - '@esbuild/aix-ppc64@0.27.7': optional: true @@ -4327,12 +4137,11 @@ snapshots: '@marijn/find-cluster-break@1.0.3': {} - '@marko/compiler@5.42.0': + '@marko/compiler@5.42.3': dependencies: '@luxass/strip-json-comments': 2.0.1 complain: 1.6.1 - he: 1.2.0 - htmljs-parser: 5.14.0 + htmljs-parser: 5.15.0 jsesc: 3.1.0 kleur: 4.1.5 lasso-package-root: 1.0.1 @@ -4347,49 +4156,50 @@ snapshots: '@marko/language-tools@2.6.8': dependencies: '@luxass/strip-json-comments': 1.4.0 - '@marko/compiler': 5.42.0 - htmljs-parser: 5.14.0 + '@marko/compiler': 5.42.3 + htmljs-parser: 5.15.0 relative-import-path: 1.0.1 - '@marko/run-adapter-static@2.0.8(@marko/run@0.11.8(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))(supports-color@10.2.2)': + '@marko/run-adapter-static@2.0.10(@marko/run@0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))(supports-color@10.2.2)': dependencies: - '@marko/run': 0.11.8(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + '@marko/run': 0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) compression: 1.8.1(supports-color@10.2.2) htmlparser2: 10.1.0 + kleur: 4.1.5 sirv: 1.0.19 undici: 6.28.0 transitivePeerDependencies: - supports-color - '@marko/run-explorer@2.0.4(@marko/run@0.11.8(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))': + '@marko/run-explorer@2.0.5(@marko/run@0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))': dependencies: - '@marko/run': 0.11.8(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + '@marko/run': 0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) - '@marko/run@0.11.8(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)': + '@marko/run@0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)': dependencies: - '@marko/compiler': 5.42.0 - '@marko/run-explorer': 2.0.4(@marko/run@0.11.8(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)) - '@marko/vite': 6.1.9(@marko/compiler@5.42.0)(vite@8.2.1(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)) + '@marko/compiler': 5.42.3 + '@marko/run-explorer': 2.0.5(@marko/run@0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)) + '@marko/vite': 6.1.11(@marko/compiler@5.42.3)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)) '@oxc-project/types': 0.136.0 - '@remix-run/form-data-parser': 0.17.4 + '@remix-run/form-data-parser': 0.17.5 '@standard-schema/spec': 1.1.0 - browserslist: 4.28.7 + browserslist: 4.28.8 cli-table3: 0.6.5 compression: 1.8.1(supports-color@10.2.2) debug: 4.4.3(supports-color@10.2.2) dotenv: 17.4.2 draftlog: 1.0.13 - esbuild-plugin-browserslist: 2.0.0(browserslist@4.28.7)(esbuild@0.27.7)(supports-color@10.2.2) + esbuild-plugin-browserslist: 2.0.0(browserslist@4.28.8)(esbuild@0.27.7)(supports-color@10.2.2) glob: 13.0.6 human-format: 1.2.1 kleur: 4.1.5 marko: 6.3.35 parse-node-args: 1.1.3 - rolldown: 1.2.3 + rolldown: 1.2.5 sade: 1.8.1 serve-static: 2.2.1(supports-color@10.2.2) supports-color: 10.2.2 - vite: 8.2.1(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + vite: 8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) warp10: 2.1.0 transitivePeerDependencies: - '@types/node' @@ -4408,26 +4218,26 @@ snapshots: '@marko/type-check@3.1.6': dependencies: '@luxass/strip-json-comments': 1.4.0 - '@marko/compiler': 5.42.0 + '@marko/compiler': 5.42.3 '@marko/language-tools': 2.6.8 arg: 5.0.2 kleur: 4.1.5 typescript: 6.0.3 - '@marko/vite@6.1.9(@marko/compiler@5.42.0)(vite@8.2.1(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))': + '@marko/vite@6.1.11(@marko/compiler@5.42.3)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))': dependencies: '@chialab/estransform': 0.19.1 - '@marko/compiler': 5.42.0 + '@marko/compiler': 5.42.3 anymatch: 3.1.3 domelementtype: 2.3.0 domhandler: 5.0.3 fast-glob: 3.3.3 - htmljs-parser: 5.13.0 + htmljs-parser: 5.15.0 htmlparser2: 10.1.0 relative-import-path: 1.0.1 resolve-sync: 1.2.2 resolve.exports: 2.0.3 - vite: 8.2.1(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + vite: 8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) '@napi-rs/magic-string-android-arm-eabi@0.3.4': optional: true @@ -4484,13 +4294,6 @@ snapshots: '@napi-rs/magic-string-win32-ia32-msvc': 0.3.4 '@napi-rs/magic-string-win32-x64-msvc': 0.3.4 - '@napi-rs/wasm-runtime@1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1)': - dependencies: - '@emnapi/core': 1.11.1 - '@emnapi/runtime': 1.11.1 - '@tybys/wasm-util': 0.10.3 - optional: true - '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 @@ -4529,9 +4332,7 @@ snapshots: '@oxc-project/types@0.136.0': {} - '@oxc-project/types@0.139.0': {} - - '@oxc-project/types@0.143.0': {} + '@oxc-project/types@0.146.0': {} '@parcel/source-map@2.1.1': dependencies: @@ -4600,13 +4401,13 @@ snapshots: '@polka/url@1.0.0-next.29': {} - '@remix-run/form-data-parser@0.17.4': + '@remix-run/form-data-parser@0.17.5': dependencies: - '@remix-run/multipart-parser': 0.16.3 + '@remix-run/multipart-parser': 0.16.4 '@remix-run/headers@0.21.1': {} - '@remix-run/multipart-parser@0.16.3': + '@remix-run/multipart-parser@0.16.4': dependencies: '@remix-run/headers': 0.21.1 @@ -4661,95 +4462,49 @@ snapshots: '@resvg/resvg-js-win32-ia32-msvc': 2.6.2 '@resvg/resvg-js-win32-x64-msvc': 2.6.2 - '@rolldown/binding-android-arm64@1.1.5': - optional: true - - '@rolldown/binding-android-arm64@1.2.3': - optional: true - - '@rolldown/binding-darwin-arm64@1.1.5': - optional: true - - '@rolldown/binding-darwin-arm64@1.2.3': - optional: true - - '@rolldown/binding-darwin-x64@1.1.5': - optional: true - - '@rolldown/binding-darwin-x64@1.2.3': - optional: true - - '@rolldown/binding-freebsd-x64@1.1.5': - optional: true - - '@rolldown/binding-freebsd-x64@1.2.3': - optional: true - - '@rolldown/binding-linux-arm-gnueabihf@1.1.5': - optional: true - - '@rolldown/binding-linux-arm-gnueabihf@1.2.3': - optional: true - - '@rolldown/binding-linux-arm64-gnu@1.1.5': + '@rolldown/binding-android-arm-eabi@1.2.5': optional: true - '@rolldown/binding-linux-arm64-gnu@1.2.3': + '@rolldown/binding-android-arm64@1.2.5': optional: true - '@rolldown/binding-linux-arm64-musl@1.1.5': + '@rolldown/binding-darwin-arm64@1.2.5': optional: true - '@rolldown/binding-linux-arm64-musl@1.2.3': + '@rolldown/binding-darwin-x64@1.2.5': optional: true - '@rolldown/binding-linux-ppc64-gnu@1.1.5': + '@rolldown/binding-freebsd-x64@1.2.5': optional: true - '@rolldown/binding-linux-ppc64-gnu@1.2.3': + '@rolldown/binding-linux-arm-gnueabihf@1.2.5': optional: true - '@rolldown/binding-linux-s390x-gnu@1.1.5': + '@rolldown/binding-linux-arm64-gnu@1.2.5': optional: true - '@rolldown/binding-linux-s390x-gnu@1.2.3': + '@rolldown/binding-linux-arm64-musl@1.2.5': optional: true - '@rolldown/binding-linux-x64-gnu@1.1.5': + '@rolldown/binding-linux-ppc64-gnu@1.2.5': optional: true - '@rolldown/binding-linux-x64-gnu@1.2.3': + '@rolldown/binding-linux-s390x-gnu@1.2.5': optional: true - '@rolldown/binding-linux-x64-musl@1.1.5': + '@rolldown/binding-linux-x64-gnu@1.2.5': optional: true - '@rolldown/binding-linux-x64-musl@1.2.3': + '@rolldown/binding-linux-x64-musl@1.2.5': optional: true - '@rolldown/binding-openharmony-arm64@1.1.5': + '@rolldown/binding-openharmony-arm64@1.2.5': optional: true - '@rolldown/binding-openharmony-arm64@1.2.3': + '@rolldown/binding-win32-arm64-msvc@1.2.5': optional: true - '@rolldown/binding-wasm32-wasi@1.1.5': - dependencies: - '@emnapi/core': 1.11.1 - '@emnapi/runtime': 1.11.1 - '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.1)(@emnapi/runtime@1.11.1) - optional: true - - '@rolldown/binding-win32-arm64-msvc@1.1.5': - optional: true - - '@rolldown/binding-win32-arm64-msvc@1.2.3': - optional: true - - '@rolldown/binding-win32-x64-msvc@1.1.5': - optional: true - - '@rolldown/binding-win32-x64-msvc@1.2.3': + '@rolldown/binding-win32-x64-msvc@1.2.5': optional: true '@rolldown/pluginutils@1.0.1': {} @@ -4807,11 +4562,6 @@ snapshots: '@standard-schema/spec@1.1.0': {} - '@tybys/wasm-util@0.10.3': - dependencies: - tslib: 2.8.1 - optional: true - '@types/chai@5.2.3': dependencies: '@types/deep-eql': 4.0.2 @@ -4862,13 +4612,13 @@ snapshots: chai: 6.2.2 tinyrainbow: 3.1.1 - '@vitest/mocker@4.1.10(vite@8.1.5(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))': + '@vitest/mocker@4.1.10(vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))': dependencies: '@vitest/spy': 4.1.10 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 8.1.5(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + vite: 8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) '@vitest/pretty-format@4.1.10': dependencies: @@ -4919,20 +4669,20 @@ snapshots: async@3.2.6: {} - autoprefixer@10.5.4(postcss@8.5.23): + autoprefixer@10.5.4(postcss@8.5.26): dependencies: - browserslist: 4.28.7 - caniuse-lite: 1.0.30001806 + browserslist: 4.28.8 + caniuse-lite: 1.0.30001809 fraction.js: 5.3.4 picocolors: 1.1.1 - postcss: 8.5.23 + postcss: 8.5.26 postcss-value-parser: 4.2.0 balanced-match@4.0.4: {} base64-js@0.0.8: {} - baseline-browser-mapping@2.11.5: {} + baseline-browser-mapping@2.11.17: {} brace-expansion@5.0.8: dependencies: @@ -4942,13 +4692,13 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.28.7: + browserslist@4.28.8: dependencies: - baseline-browser-mapping: 2.11.5 - caniuse-lite: 1.0.30001806 - electron-to-chromium: 1.5.396 - node-releases: 2.0.51 - update-browserslist-db: 1.2.3(browserslist@4.28.7) + baseline-browser-mapping: 2.11.17 + caniuse-lite: 1.0.30001809 + electron-to-chromium: 1.5.412 + node-releases: 2.0.53 + update-browserslist-db: 1.3.1(browserslist@4.28.8) buffer-from@1.1.2: {} @@ -4956,7 +4706,7 @@ snapshots: camelize@1.0.1: {} - caniuse-lite@1.0.30001806: {} + caniuse-lite@1.0.30001809: {} ccount@2.0.1: {} @@ -5138,9 +4888,9 @@ snapshots: css-background-parser@0.1.0: {} - css-blank-pseudo@8.0.2(postcss@8.5.23): + css-blank-pseudo@8.0.2(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-selector-parser: 7.1.4 css-box-shadow@1.0.0-3: {} @@ -5149,16 +4899,16 @@ snapshots: css-gradient-parser@0.0.17: {} - css-has-pseudo@8.0.1(postcss@8.5.23): + css-has-pseudo@8.0.1(postcss@8.5.26): dependencies: '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.4) - postcss: 8.5.23 + postcss: 8.5.26 postcss-selector-parser: 7.1.4 postcss-value-parser: 4.2.0 - css-prefers-color-scheme@11.0.1(postcss@8.5.23): + css-prefers-color-scheme@11.0.1(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 css-to-react-native@3.2.0: dependencies: @@ -5234,7 +4984,7 @@ snapshots: ee-first@1.1.1: {} - electron-to-chromium@1.5.396: {} + electron-to-chromium@1.5.412: {} email-addresses@5.0.0: {} @@ -5262,9 +5012,9 @@ snapshots: es-module-lexer@2.3.1: {} - esbuild-plugin-browserslist@2.0.0(browserslist@4.28.7)(esbuild@0.27.7)(supports-color@10.2.2): + esbuild-plugin-browserslist@2.0.0(browserslist@4.28.8)(esbuild@0.27.7)(supports-color@10.2.2): dependencies: - browserslist: 4.28.7 + browserslist: 4.28.8 debug: 4.4.3(supports-color@10.2.2) esbuild: 0.27.7 zod: 4.4.3 @@ -5461,15 +5211,11 @@ snapshots: property-information: 7.2.0 space-separated-tokens: 2.0.2 - he@1.2.0: {} - hex-rgb@4.3.0: {} html-void-elements@3.0.0: {} - htmljs-parser@5.13.0: {} - - htmljs-parser@5.14.0: {} + htmljs-parser@5.15.0: {} htmlparser2@10.1.0: dependencies: @@ -5685,7 +5431,7 @@ snapshots: marko@6.3.35: dependencies: - '@marko/compiler': 5.42.0 + '@marko/compiler': 5.42.3 csstype: 3.2.3 fastest-levenshtein: 1.0.16 magic-string: 0.30.21 @@ -5905,16 +5651,14 @@ snapshots: ms@2.1.3: {} - nanoid@3.3.16: {} - - nanoid@3.3.17: {} + nanoid@3.3.18: {} negotiator@0.6.4: {} node-addon-api@7.1.1: optional: true - node-releases@2.0.51: {} + node-releases@2.0.53: {} normalize-path@3.0.0: {} @@ -6005,235 +5749,235 @@ snapshots: dependencies: find-up: 4.1.0 - postcss-attribute-case-insensitive@8.0.0(postcss@8.5.23): + postcss-attribute-case-insensitive@8.0.0(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-selector-parser: 7.1.4 - postcss-clamp@4.1.0(postcss@8.5.23): + postcss-clamp@4.1.0(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - postcss-color-functional-notation@8.0.7(postcss@8.5.23): + postcss-color-functional-notation@8.0.7(postcss@8.5.26): dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - postcss-color-hex-alpha@11.0.0(postcss@8.5.23): + postcss-color-hex-alpha@11.0.0(postcss@8.5.26): dependencies: - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 postcss-value-parser: 4.2.0 - postcss-color-rebeccapurple@11.0.0(postcss@8.5.23): + postcss-color-rebeccapurple@11.0.0(postcss@8.5.26): dependencies: - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 postcss-value-parser: 4.2.0 - postcss-custom-media@12.0.1(postcss@8.5.23): + postcss-custom-media@12.0.1(postcss@8.5.26): dependencies: '@csstools/cascade-layer-name-parser': 3.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 '@csstools/media-query-list-parser': 5.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) - postcss: 8.5.23 + postcss: 8.5.26 - postcss-custom-properties@15.0.1(postcss@8.5.23): + postcss-custom-properties@15.0.1(postcss@8.5.26): dependencies: '@csstools/cascade-layer-name-parser': 3.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 postcss-value-parser: 4.2.0 - postcss-custom-selectors@9.0.1(postcss@8.5.23): + postcss-custom-selectors@9.0.1(postcss@8.5.26): dependencies: '@csstools/cascade-layer-name-parser': 3.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - postcss: 8.5.23 + postcss: 8.5.26 postcss-selector-parser: 7.1.4 - postcss-dir-pseudo-class@10.0.0(postcss@8.5.23): + postcss-dir-pseudo-class@10.0.0(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-selector-parser: 7.1.4 - postcss-double-position-gradients@7.0.2(postcss@8.5.23): + postcss-double-position-gradients@7.0.2(postcss@8.5.26): dependencies: - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 postcss-value-parser: 4.2.0 - postcss-focus-visible@11.0.0(postcss@8.5.23): + postcss-focus-visible@11.0.0(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-selector-parser: 7.1.4 - postcss-focus-within@10.0.1(postcss@8.5.23): + postcss-focus-within@10.0.1(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-selector-parser: 7.1.4 - postcss-font-variant@5.0.0(postcss@8.5.23): + postcss-font-variant@5.0.0(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 - postcss-gap-properties@7.0.0(postcss@8.5.23): + postcss-gap-properties@7.0.0(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 - postcss-image-set-function@8.0.0(postcss@8.5.23): + postcss-image-set-function@8.0.0(postcss@8.5.26): dependencies: - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 postcss-value-parser: 4.2.0 - postcss-import@16.1.1(postcss@8.5.23): + postcss-import@16.1.1(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.12 - postcss-lab-function@8.0.7(postcss@8.5.23): + postcss-lab-function@8.0.7(postcss@8.5.26): dependencies: '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/utilities': 3.0.0(postcss@8.5.23) - postcss: 8.5.23 + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/utilities': 3.0.0(postcss@8.5.26) + postcss: 8.5.26 - postcss-logical@9.0.0(postcss@8.5.23): + postcss-logical@9.0.0(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - postcss-nesting@14.0.1(postcss@8.5.23): + postcss-nesting@14.0.1(postcss@8.5.26): dependencies: '@csstools/selector-resolve-nested': 4.0.1(postcss-selector-parser@7.1.4) '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.4) - postcss: 8.5.23 + postcss: 8.5.26 postcss-selector-parser: 7.1.4 - postcss-opacity-percentage@3.0.0(postcss@8.5.23): + postcss-opacity-percentage@3.0.0(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 - postcss-overflow-shorthand@7.0.0(postcss@8.5.23): + postcss-overflow-shorthand@7.0.0(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - postcss-page-break@3.0.4(postcss@8.5.23): + postcss-page-break@3.0.4(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 - postcss-place@11.0.0(postcss@8.5.23): + postcss-place@11.0.0(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-value-parser: 4.2.0 - postcss-preset-env@11.3.2(postcss@8.5.23): - dependencies: - '@csstools/postcss-alpha-function': 2.0.8(postcss@8.5.23) - '@csstools/postcss-cascade-layers': 6.0.0(postcss@8.5.23) - '@csstools/postcss-color-function': 5.0.7(postcss@8.5.23) - '@csstools/postcss-color-function-display-p3-linear': 2.0.7(postcss@8.5.23) - '@csstools/postcss-color-mix-function': 4.0.7(postcss@8.5.23) - '@csstools/postcss-color-mix-variadic-function-arguments': 2.0.7(postcss@8.5.23) - '@csstools/postcss-container-rule-prelude-list': 1.0.1(postcss@8.5.23) - '@csstools/postcss-content-alt-text': 3.0.2(postcss@8.5.23) - '@csstools/postcss-contrast-color-function': 3.0.7(postcss@8.5.23) - '@csstools/postcss-exponential-functions': 3.0.4(postcss@8.5.23) - '@csstools/postcss-font-format-keywords': 5.0.0(postcss@8.5.23) - '@csstools/postcss-font-width-property': 1.0.0(postcss@8.5.23) - '@csstools/postcss-gamut-mapping': 3.0.7(postcss@8.5.23) - '@csstools/postcss-gradients-interpolation-method': 6.0.7(postcss@8.5.23) - '@csstools/postcss-hwb-function': 5.0.7(postcss@8.5.23) - '@csstools/postcss-ic-unit': 5.0.2(postcss@8.5.23) - '@csstools/postcss-image-function': 1.0.1(postcss@8.5.23) - '@csstools/postcss-initial': 3.0.0(postcss@8.5.23) - '@csstools/postcss-is-pseudo-class': 6.0.0(postcss@8.5.23) - '@csstools/postcss-light-dark-function': 3.0.2(postcss@8.5.23) - '@csstools/postcss-logical-float-and-clear': 4.0.0(postcss@8.5.23) - '@csstools/postcss-logical-overflow': 3.0.0(postcss@8.5.23) - '@csstools/postcss-logical-overscroll-behavior': 3.0.0(postcss@8.5.23) - '@csstools/postcss-logical-resize': 4.0.0(postcss@8.5.23) - '@csstools/postcss-logical-viewport-units': 4.0.0(postcss@8.5.23) - '@csstools/postcss-media-minmax': 3.0.4(postcss@8.5.23) - '@csstools/postcss-media-queries-aspect-ratio-number-values': 4.0.0(postcss@8.5.23) - '@csstools/postcss-mixins': 1.0.0(postcss@8.5.23) - '@csstools/postcss-nested-calc': 5.0.0(postcss@8.5.23) - '@csstools/postcss-normalize-display-values': 5.0.1(postcss@8.5.23) - '@csstools/postcss-oklab-function': 5.0.7(postcss@8.5.23) - '@csstools/postcss-position-area-property': 2.0.0(postcss@8.5.23) - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.23) - '@csstools/postcss-property-rule-prelude-list': 2.0.0(postcss@8.5.23) - '@csstools/postcss-random-function': 3.0.3(postcss@8.5.23) - '@csstools/postcss-relative-color-syntax': 4.0.7(postcss@8.5.23) - '@csstools/postcss-scope-pseudo-class': 5.0.0(postcss@8.5.23) - '@csstools/postcss-sign-functions': 2.0.4(postcss@8.5.23) - '@csstools/postcss-stepped-value-functions': 5.0.4(postcss@8.5.23) - '@csstools/postcss-syntax-descriptor-syntax-production': 2.0.0(postcss@8.5.23) - '@csstools/postcss-system-ui-font-family': 2.0.0(postcss@8.5.23) - '@csstools/postcss-text-decoration-shorthand': 5.0.4(postcss@8.5.23) - '@csstools/postcss-trigonometric-functions': 5.0.4(postcss@8.5.23) - '@csstools/postcss-unset-value': 5.0.0(postcss@8.5.23) - autoprefixer: 10.5.4(postcss@8.5.23) - browserslist: 4.28.7 - css-blank-pseudo: 8.0.2(postcss@8.5.23) - css-has-pseudo: 8.0.1(postcss@8.5.23) - css-prefers-color-scheme: 11.0.1(postcss@8.5.23) + postcss-preset-env@11.3.2(postcss@8.5.26): + dependencies: + '@csstools/postcss-alpha-function': 2.0.8(postcss@8.5.26) + '@csstools/postcss-cascade-layers': 6.0.0(postcss@8.5.26) + '@csstools/postcss-color-function': 5.0.7(postcss@8.5.26) + '@csstools/postcss-color-function-display-p3-linear': 2.0.7(postcss@8.5.26) + '@csstools/postcss-color-mix-function': 4.0.7(postcss@8.5.26) + '@csstools/postcss-color-mix-variadic-function-arguments': 2.0.7(postcss@8.5.26) + '@csstools/postcss-container-rule-prelude-list': 1.0.1(postcss@8.5.26) + '@csstools/postcss-content-alt-text': 3.0.2(postcss@8.5.26) + '@csstools/postcss-contrast-color-function': 3.0.7(postcss@8.5.26) + '@csstools/postcss-exponential-functions': 3.0.4(postcss@8.5.26) + '@csstools/postcss-font-format-keywords': 5.0.0(postcss@8.5.26) + '@csstools/postcss-font-width-property': 1.0.0(postcss@8.5.26) + '@csstools/postcss-gamut-mapping': 3.0.7(postcss@8.5.26) + '@csstools/postcss-gradients-interpolation-method': 6.0.7(postcss@8.5.26) + '@csstools/postcss-hwb-function': 5.0.7(postcss@8.5.26) + '@csstools/postcss-ic-unit': 5.0.2(postcss@8.5.26) + '@csstools/postcss-image-function': 1.0.1(postcss@8.5.26) + '@csstools/postcss-initial': 3.0.0(postcss@8.5.26) + '@csstools/postcss-is-pseudo-class': 6.0.0(postcss@8.5.26) + '@csstools/postcss-light-dark-function': 3.0.2(postcss@8.5.26) + '@csstools/postcss-logical-float-and-clear': 4.0.0(postcss@8.5.26) + '@csstools/postcss-logical-overflow': 3.0.0(postcss@8.5.26) + '@csstools/postcss-logical-overscroll-behavior': 3.0.0(postcss@8.5.26) + '@csstools/postcss-logical-resize': 4.0.0(postcss@8.5.26) + '@csstools/postcss-logical-viewport-units': 4.0.0(postcss@8.5.26) + '@csstools/postcss-media-minmax': 3.0.4(postcss@8.5.26) + '@csstools/postcss-media-queries-aspect-ratio-number-values': 4.0.0(postcss@8.5.26) + '@csstools/postcss-mixins': 1.0.0(postcss@8.5.26) + '@csstools/postcss-nested-calc': 5.0.0(postcss@8.5.26) + '@csstools/postcss-normalize-display-values': 5.0.1(postcss@8.5.26) + '@csstools/postcss-oklab-function': 5.0.7(postcss@8.5.26) + '@csstools/postcss-position-area-property': 2.0.0(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-property-rule-prelude-list': 2.0.0(postcss@8.5.26) + '@csstools/postcss-random-function': 3.0.3(postcss@8.5.26) + '@csstools/postcss-relative-color-syntax': 4.0.7(postcss@8.5.26) + '@csstools/postcss-scope-pseudo-class': 5.0.0(postcss@8.5.26) + '@csstools/postcss-sign-functions': 2.0.4(postcss@8.5.26) + '@csstools/postcss-stepped-value-functions': 5.0.4(postcss@8.5.26) + '@csstools/postcss-syntax-descriptor-syntax-production': 2.0.0(postcss@8.5.26) + '@csstools/postcss-system-ui-font-family': 2.0.0(postcss@8.5.26) + '@csstools/postcss-text-decoration-shorthand': 5.0.4(postcss@8.5.26) + '@csstools/postcss-trigonometric-functions': 5.0.4(postcss@8.5.26) + '@csstools/postcss-unset-value': 5.0.0(postcss@8.5.26) + autoprefixer: 10.5.4(postcss@8.5.26) + browserslist: 4.28.8 + css-blank-pseudo: 8.0.2(postcss@8.5.26) + css-has-pseudo: 8.0.1(postcss@8.5.26) + css-prefers-color-scheme: 11.0.1(postcss@8.5.26) cssdb: 8.9.0 - postcss: 8.5.23 - postcss-attribute-case-insensitive: 8.0.0(postcss@8.5.23) - postcss-clamp: 4.1.0(postcss@8.5.23) - postcss-color-functional-notation: 8.0.7(postcss@8.5.23) - postcss-color-hex-alpha: 11.0.0(postcss@8.5.23) - postcss-color-rebeccapurple: 11.0.0(postcss@8.5.23) - postcss-custom-media: 12.0.1(postcss@8.5.23) - postcss-custom-properties: 15.0.1(postcss@8.5.23) - postcss-custom-selectors: 9.0.1(postcss@8.5.23) - postcss-dir-pseudo-class: 10.0.0(postcss@8.5.23) - postcss-double-position-gradients: 7.0.2(postcss@8.5.23) - postcss-focus-visible: 11.0.0(postcss@8.5.23) - postcss-focus-within: 10.0.1(postcss@8.5.23) - postcss-font-variant: 5.0.0(postcss@8.5.23) - postcss-gap-properties: 7.0.0(postcss@8.5.23) - postcss-image-set-function: 8.0.0(postcss@8.5.23) - postcss-lab-function: 8.0.7(postcss@8.5.23) - postcss-logical: 9.0.0(postcss@8.5.23) - postcss-nesting: 14.0.1(postcss@8.5.23) - postcss-opacity-percentage: 3.0.0(postcss@8.5.23) - postcss-overflow-shorthand: 7.0.0(postcss@8.5.23) - postcss-page-break: 3.0.4(postcss@8.5.23) - postcss-place: 11.0.0(postcss@8.5.23) - postcss-pseudo-class-any-link: 11.0.0(postcss@8.5.23) - postcss-replace-overflow-wrap: 4.0.0(postcss@8.5.23) - postcss-selector-not: 9.0.0(postcss@8.5.23) - - postcss-pseudo-class-any-link@11.0.0(postcss@8.5.23): - dependencies: - postcss: 8.5.23 + postcss: 8.5.26 + postcss-attribute-case-insensitive: 8.0.0(postcss@8.5.26) + postcss-clamp: 4.1.0(postcss@8.5.26) + postcss-color-functional-notation: 8.0.7(postcss@8.5.26) + postcss-color-hex-alpha: 11.0.0(postcss@8.5.26) + postcss-color-rebeccapurple: 11.0.0(postcss@8.5.26) + postcss-custom-media: 12.0.1(postcss@8.5.26) + postcss-custom-properties: 15.0.1(postcss@8.5.26) + postcss-custom-selectors: 9.0.1(postcss@8.5.26) + postcss-dir-pseudo-class: 10.0.0(postcss@8.5.26) + postcss-double-position-gradients: 7.0.2(postcss@8.5.26) + postcss-focus-visible: 11.0.0(postcss@8.5.26) + postcss-focus-within: 10.0.1(postcss@8.5.26) + postcss-font-variant: 5.0.0(postcss@8.5.26) + postcss-gap-properties: 7.0.0(postcss@8.5.26) + postcss-image-set-function: 8.0.0(postcss@8.5.26) + postcss-lab-function: 8.0.7(postcss@8.5.26) + postcss-logical: 9.0.0(postcss@8.5.26) + postcss-nesting: 14.0.1(postcss@8.5.26) + postcss-opacity-percentage: 3.0.0(postcss@8.5.26) + postcss-overflow-shorthand: 7.0.0(postcss@8.5.26) + postcss-page-break: 3.0.4(postcss@8.5.26) + postcss-place: 11.0.0(postcss@8.5.26) + postcss-pseudo-class-any-link: 11.0.0(postcss@8.5.26) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.5.26) + postcss-selector-not: 9.0.0(postcss@8.5.26) + + postcss-pseudo-class-any-link@11.0.0(postcss@8.5.26): + dependencies: + postcss: 8.5.26 postcss-selector-parser: 7.1.4 - postcss-replace-overflow-wrap@4.0.0(postcss@8.5.23): + postcss-replace-overflow-wrap@4.0.0(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 - postcss-selector-not@9.0.0(postcss@8.5.23): + postcss-selector-not@9.0.0(postcss@8.5.26): dependencies: - postcss: 8.5.23 + postcss: 8.5.26 postcss-selector-parser: 7.1.4 postcss-selector-parser@7.1.4: @@ -6243,21 +5987,15 @@ snapshots: postcss-value-parser@4.2.0: {} - postcss@8.5.23: - dependencies: - nanoid: 3.3.16 - picocolors: 1.1.1 - source-map-js: 1.2.1 - postcss@8.5.26: dependencies: - nanoid: 3.3.17 + nanoid: 3.3.18 picocolors: 1.1.1 source-map-js: 1.2.1 prettier-plugin-marko@4.1.0: dependencies: - htmljs-parser: 5.14.0 + htmljs-parser: 5.15.0 prettier-plugin-packagejson@3.0.2(prettier@3.9.6): dependencies: @@ -6328,46 +6066,26 @@ snapshots: reusify@1.1.0: {} - rolldown@1.1.5: + rolldown@1.2.5: dependencies: - '@oxc-project/types': 0.139.0 - '@rolldown/pluginutils': 1.0.1 - optionalDependencies: - '@rolldown/binding-android-arm64': 1.1.5 - '@rolldown/binding-darwin-arm64': 1.1.5 - '@rolldown/binding-darwin-x64': 1.1.5 - '@rolldown/binding-freebsd-x64': 1.1.5 - '@rolldown/binding-linux-arm-gnueabihf': 1.1.5 - '@rolldown/binding-linux-arm64-gnu': 1.1.5 - '@rolldown/binding-linux-arm64-musl': 1.1.5 - '@rolldown/binding-linux-ppc64-gnu': 1.1.5 - '@rolldown/binding-linux-s390x-gnu': 1.1.5 - '@rolldown/binding-linux-x64-gnu': 1.1.5 - '@rolldown/binding-linux-x64-musl': 1.1.5 - '@rolldown/binding-openharmony-arm64': 1.1.5 - '@rolldown/binding-wasm32-wasi': 1.1.5 - '@rolldown/binding-win32-arm64-msvc': 1.1.5 - '@rolldown/binding-win32-x64-msvc': 1.1.5 - - rolldown@1.2.3: - dependencies: - '@oxc-project/types': 0.143.0 + '@oxc-project/types': 0.146.0 '@rolldown/pluginutils': 1.0.1 optionalDependencies: - '@rolldown/binding-android-arm64': 1.2.3 - '@rolldown/binding-darwin-arm64': 1.2.3 - '@rolldown/binding-darwin-x64': 1.2.3 - '@rolldown/binding-freebsd-x64': 1.2.3 - '@rolldown/binding-linux-arm-gnueabihf': 1.2.3 - '@rolldown/binding-linux-arm64-gnu': 1.2.3 - '@rolldown/binding-linux-arm64-musl': 1.2.3 - '@rolldown/binding-linux-ppc64-gnu': 1.2.3 - '@rolldown/binding-linux-s390x-gnu': 1.2.3 - '@rolldown/binding-linux-x64-gnu': 1.2.3 - '@rolldown/binding-linux-x64-musl': 1.2.3 - '@rolldown/binding-openharmony-arm64': 1.2.3 - '@rolldown/binding-win32-arm64-msvc': 1.2.3 - '@rolldown/binding-win32-x64-msvc': 1.2.3 + '@rolldown/binding-android-arm-eabi': 1.2.5 + '@rolldown/binding-android-arm64': 1.2.5 + '@rolldown/binding-darwin-arm64': 1.2.5 + '@rolldown/binding-darwin-x64': 1.2.5 + '@rolldown/binding-freebsd-x64': 1.2.5 + '@rolldown/binding-linux-arm-gnueabihf': 1.2.5 + '@rolldown/binding-linux-arm64-gnu': 1.2.5 + '@rolldown/binding-linux-arm64-musl': 1.2.5 + '@rolldown/binding-linux-ppc64-gnu': 1.2.5 + '@rolldown/binding-linux-s390x-gnu': 1.2.5 + '@rolldown/binding-linux-x64-gnu': 1.2.5 + '@rolldown/binding-linux-x64-musl': 1.2.5 + '@rolldown/binding-openharmony-arm64': 1.2.5 + '@rolldown/binding-win32-arm64-msvc': 1.2.5 + '@rolldown/binding-win32-x64-msvc': 1.2.5 run-con@1.3.3: dependencies: @@ -6709,9 +6427,9 @@ snapshots: universalify@2.0.1: {} - update-browserslist-db@1.2.3(browserslist@4.28.7): + update-browserslist-db@1.3.1(browserslist@4.28.8): dependencies: - browserslist: 4.28.7 + browserslist: 4.28.8 escalade: 3.2.0 picocolors: 1.1.1 @@ -6731,28 +6449,12 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.3 - vite@8.1.5(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0): - dependencies: - lightningcss: 1.33.0 - picomatch: 4.0.5 - postcss: 8.5.23 - rolldown: 1.1.5 - tinyglobby: 0.2.17 - optionalDependencies: - '@types/node': 26.1.2 - esbuild: 0.27.7 - fsevents: 2.3.3 - sass: 1.100.0 - sass-embedded: 1.100.0 - terser: 5.49.0 - yaml: 2.9.0 - - vite@8.2.1(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0): + vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0): dependencies: lightningcss: 1.33.0 picomatch: 4.0.5 postcss: 8.5.26 - rolldown: 1.2.3 + rolldown: 1.2.5 tinyglobby: 0.2.17 optionalDependencies: '@types/node': 26.1.2 @@ -6763,10 +6465,10 @@ snapshots: terser: 5.49.0 yaml: 2.9.0 - vitest@4.1.10(@types/node@26.1.2)(vite@8.1.5(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)): + vitest@4.1.10(@types/node@26.1.2)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)): dependencies: '@vitest/expect': 4.1.10 - '@vitest/mocker': 4.1.10(vite@8.1.5(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)) + '@vitest/mocker': 4.1.10(vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)) '@vitest/pretty-format': 4.1.10 '@vitest/runner': 4.1.10 '@vitest/snapshot': 4.1.10 @@ -6783,7 +6485,7 @@ snapshots: tinyexec: 1.2.4 tinyglobby: 0.2.17 tinyrainbow: 3.1.1 - vite: 8.1.5(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + vite: 8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 26.1.2 From e51b54dcb6cd3c00e4a7c999a34ada8bd5950223 Mon Sep 17 00:00:00 2001 From: Ryan Turnquist Date: Fri, 21 Aug 2026 14:34:40 -0700 Subject: [PATCH 8/8] chore: update dependencies, marko to 6.3.45 --- .marko-run/routes.d.ts | 760 +++++++++++++++++++++++++++++ package.json | 38 +- pnpm-lock.yaml | 1042 ++++++++++++++++++++-------------------- 3 files changed, 1299 insertions(+), 541 deletions(-) diff --git a/.marko-run/routes.d.ts b/.marko-run/routes.d.ts index fd3054d8a..9128394f4 100644 --- a/.marko-run/routes.d.ts +++ b/.marko-run/routes.d.ts @@ -1,6 +1,10 @@ /* WARNING: This file is automatically generated and any changes made to it will be overwritten without warning. Do NOT manually edit this file or your changes will be lost. + + AGENTS: before writing or changing route files, READ the cheat sheet shipped with @marko/run + — require.resolve("@marko/run/cheatsheet.md"), typically node_modules/@marko/run/cheatsheet.md — for the + routing, handler, middleware, and validation conventions this file's types describe. */ import { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform } from "@marko/run/namespace"; @@ -81,16 +85,28 @@ declare module "../src/routes/docs/+middleware" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs" | "/docs/newsletter" | "/docs/newsletter/april-2026" | "/docs/newsletter/february-2026" | "/docs/newsletter/january-2026" | "/docs/newsletter/july-2026" | "/docs/newsletter/june-2026" | "/docs/newsletter/march-2026" | "/docs/newsletter/may-2026" | "/docs/explanation/class-vs-tags-api" | "/docs/explanation/controllable-components" | "/docs/explanation/fine-grained-bundling" | "/docs/explanation/immutable-state" | "/docs/explanation/let-vs-const" | "/docs/explanation/nested-reactivity" | "/docs/explanation/optimizing-performance" | "/docs/explanation/separation-of-concerns" | "/docs/explanation/serializable-state" | "/docs/explanation/streaming" | "/docs/explanation/targeted-compilation" | "/docs/explanation/why-is-marko-fast" | "/docs/guide/duplicate-form-submissions" | "/docs/guide/library-integration" | "/docs/guide/low-level-apis" | "/docs/guide/marko-5-interop" | "/docs/guide/publishing-components" | "/docs/guide/styling" | "/docs/introduction/getting-started" | "/docs/introduction/installation" | "/docs/introduction/integrations" | "/docs/introduction/welcome-to-marko" | "/docs/introduction/why-marko" | "/docs/marko-run/adapters" | "/docs/marko-run/cli" | "/docs/marko-run/data-loading" | "/docs/marko-run/file-based-routing" | "/docs/marko-run/getting-started" | "/docs/marko-run/runtime" | "/docs/marko-run/typescript" | "/docs/marko-run/validation" | "/docs/marko-run/vite-plugin" | "/docs/reference/concise-syntax" | "/docs/reference/core-tag" | "/docs/reference/custom-tag" | "/docs/reference/language" | "/docs/reference/lazy-loading" | "/docs/reference/native-tag" | "/docs/reference/reactivity" | "/docs/reference/supported-environments" | "/docs/reference/template" | "/docs/reference/typescript" | "/docs/tutorial/components-and-reactivity" | "/docs/tutorial/fundamentals" | "/docs/reference-full.md" | "/docs/newsletter/feed.xml"]; + /** @deprecated use `Run.Context` instead */ export type Context = $.MultiRouteContext; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -104,16 +120,28 @@ declare module "../src/routes/sitemap%2exml+handler" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/sitemap.xml"]; + /** @deprecated use `Run.Context` instead */ export type Context = $.MultiRouteContext; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -127,16 +155,28 @@ declare module "../src/routes/docs/+handler" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs"]; + /** @deprecated use `Run.Context` instead */ export type Context = $.MultiRouteContext; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -150,16 +190,28 @@ declare module "../src/routes/docs/_llms/reference-full%2emd+handler" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/reference-full.md"]; + /** @deprecated use `Run.Context` instead */ export type Context = $.MultiRouteContext; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -173,16 +225,28 @@ declare module "../src/routes/docs/newsletter/feed%2exml+handler" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/newsletter/feed.xml"]; + /** @deprecated use `Run.Context` instead */ export type Context = $.MultiRouteContext; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -197,16 +261,28 @@ declare module "../src/routes/+layout.marko" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/" | "/brand" | "/docs/newsletter" | "/docs/newsletter/april-2026" | "/docs/newsletter/february-2026" | "/docs/newsletter/january-2026" | "/docs/newsletter/july-2026" | "/docs/newsletter/june-2026" | "/docs/newsletter/march-2026" | "/docs/newsletter/may-2026" | "/docs/explanation/class-vs-tags-api" | "/docs/explanation/controllable-components" | "/docs/explanation/fine-grained-bundling" | "/docs/explanation/immutable-state" | "/docs/explanation/let-vs-const" | "/docs/explanation/nested-reactivity" | "/docs/explanation/optimizing-performance" | "/docs/explanation/separation-of-concerns" | "/docs/explanation/serializable-state" | "/docs/explanation/streaming" | "/docs/explanation/targeted-compilation" | "/docs/explanation/why-is-marko-fast" | "/docs/guide/duplicate-form-submissions" | "/docs/guide/library-integration" | "/docs/guide/low-level-apis" | "/docs/guide/marko-5-interop" | "/docs/guide/publishing-components" | "/docs/guide/styling" | "/docs/introduction/getting-started" | "/docs/introduction/installation" | "/docs/introduction/integrations" | "/docs/introduction/welcome-to-marko" | "/docs/introduction/why-marko" | "/docs/marko-run/adapters" | "/docs/marko-run/cli" | "/docs/marko-run/data-loading" | "/docs/marko-run/file-based-routing" | "/docs/marko-run/getting-started" | "/docs/marko-run/runtime" | "/docs/marko-run/typescript" | "/docs/marko-run/validation" | "/docs/marko-run/vite-plugin" | "/docs/reference/concise-syntax" | "/docs/reference/core-tag" | "/docs/reference/custom-tag" | "/docs/reference/language" | "/docs/reference/lazy-loading" | "/docs/reference/native-tag" | "/docs/reference/reactivity" | "/docs/reference/supported-environments" | "/docs/reference/template" | "/docs/reference/typescript" | "/docs/tutorial/components-and-reactivity" | "/docs/tutorial/fundamentals" | "/playground"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -221,16 +297,28 @@ declare module "../src/routes/docs/+layout.marko" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/newsletter" | "/docs/newsletter/april-2026" | "/docs/newsletter/february-2026" | "/docs/newsletter/january-2026" | "/docs/newsletter/july-2026" | "/docs/newsletter/june-2026" | "/docs/newsletter/march-2026" | "/docs/newsletter/may-2026" | "/docs/explanation/class-vs-tags-api" | "/docs/explanation/controllable-components" | "/docs/explanation/fine-grained-bundling" | "/docs/explanation/immutable-state" | "/docs/explanation/let-vs-const" | "/docs/explanation/nested-reactivity" | "/docs/explanation/optimizing-performance" | "/docs/explanation/separation-of-concerns" | "/docs/explanation/serializable-state" | "/docs/explanation/streaming" | "/docs/explanation/targeted-compilation" | "/docs/explanation/why-is-marko-fast" | "/docs/guide/duplicate-form-submissions" | "/docs/guide/library-integration" | "/docs/guide/low-level-apis" | "/docs/guide/marko-5-interop" | "/docs/guide/publishing-components" | "/docs/guide/styling" | "/docs/introduction/getting-started" | "/docs/introduction/installation" | "/docs/introduction/integrations" | "/docs/introduction/welcome-to-marko" | "/docs/introduction/why-marko" | "/docs/marko-run/adapters" | "/docs/marko-run/cli" | "/docs/marko-run/data-loading" | "/docs/marko-run/file-based-routing" | "/docs/marko-run/getting-started" | "/docs/marko-run/runtime" | "/docs/marko-run/typescript" | "/docs/marko-run/validation" | "/docs/marko-run/vite-plugin" | "/docs/reference/concise-syntax" | "/docs/reference/core-tag" | "/docs/reference/custom-tag" | "/docs/reference/language" | "/docs/reference/lazy-loading" | "/docs/reference/native-tag" | "/docs/reference/reactivity" | "/docs/reference/supported-environments" | "/docs/reference/template" | "/docs/reference/typescript" | "/docs/tutorial/components-and-reactivity" | "/docs/tutorial/fundamentals"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -244,16 +332,28 @@ declare module "../src/routes/_home/+page.marko" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -267,16 +367,28 @@ declare module "../src/routes/brand/+page.marko" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/brand"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -290,16 +402,28 @@ declare module "../src/routes/docs/_compiled-docs/newsletter+page.marko" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/newsletter"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -313,16 +437,28 @@ declare module "../src/routes/docs/_compiled-docs/newsletter/april-2026+page.mar /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/newsletter/april-2026"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -336,16 +472,28 @@ declare module "../src/routes/docs/_compiled-docs/newsletter/february-2026+page. /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/newsletter/february-2026"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -359,16 +507,28 @@ declare module "../src/routes/docs/_compiled-docs/newsletter/january-2026+page.m /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/newsletter/january-2026"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -382,16 +542,28 @@ declare module "../src/routes/docs/_compiled-docs/newsletter/july-2026+page.mark /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/newsletter/july-2026"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -405,16 +577,28 @@ declare module "../src/routes/docs/_compiled-docs/newsletter/june-2026+page.mark /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/newsletter/june-2026"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -428,16 +612,28 @@ declare module "../src/routes/docs/_compiled-docs/newsletter/march-2026+page.mar /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/newsletter/march-2026"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -451,16 +647,28 @@ declare module "../src/routes/docs/_compiled-docs/newsletter/may-2026+page.marko /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/newsletter/may-2026"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -474,16 +682,28 @@ declare module "../src/routes/docs/_compiled-docs/explanation/class-vs-tags-api+ /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/explanation/class-vs-tags-api"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -497,16 +717,28 @@ declare module "../src/routes/docs/_compiled-docs/explanation/controllable-compo /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/explanation/controllable-components"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -520,16 +752,28 @@ declare module "../src/routes/docs/_compiled-docs/explanation/fine-grained-bundl /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/explanation/fine-grained-bundling"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -543,16 +787,28 @@ declare module "../src/routes/docs/_compiled-docs/explanation/immutable-state+pa /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/explanation/immutable-state"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -566,16 +822,28 @@ declare module "../src/routes/docs/_compiled-docs/explanation/let-vs-const+page. /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/explanation/let-vs-const"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -589,16 +857,28 @@ declare module "../src/routes/docs/_compiled-docs/explanation/nested-reactivity+ /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/explanation/nested-reactivity"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -612,16 +892,28 @@ declare module "../src/routes/docs/_compiled-docs/explanation/optimizing-perform /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/explanation/optimizing-performance"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -635,16 +927,28 @@ declare module "../src/routes/docs/_compiled-docs/explanation/separation-of-conc /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/explanation/separation-of-concerns"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -658,16 +962,28 @@ declare module "../src/routes/docs/_compiled-docs/explanation/serializable-state /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/explanation/serializable-state"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -681,16 +997,28 @@ declare module "../src/routes/docs/_compiled-docs/explanation/streaming+page.mar /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/explanation/streaming"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -704,16 +1032,28 @@ declare module "../src/routes/docs/_compiled-docs/explanation/targeted-compilati /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/explanation/targeted-compilation"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -727,16 +1067,28 @@ declare module "../src/routes/docs/_compiled-docs/explanation/why-is-marko-fast+ /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/explanation/why-is-marko-fast"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -750,16 +1102,28 @@ declare module "../src/routes/docs/_compiled-docs/guide/duplicate-form-submissio /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/guide/duplicate-form-submissions"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -773,16 +1137,28 @@ declare module "../src/routes/docs/_compiled-docs/guide/library-integration+page /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/guide/library-integration"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -796,16 +1172,28 @@ declare module "../src/routes/docs/_compiled-docs/guide/low-level-apis+page.mark /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/guide/low-level-apis"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -819,16 +1207,28 @@ declare module "../src/routes/docs/_compiled-docs/guide/marko-5-interop+page.mar /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/guide/marko-5-interop"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -842,16 +1242,28 @@ declare module "../src/routes/docs/_compiled-docs/guide/publishing-components+pa /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/guide/publishing-components"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -865,16 +1277,28 @@ declare module "../src/routes/docs/_compiled-docs/guide/styling+page.marko" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/guide/styling"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -888,16 +1312,28 @@ declare module "../src/routes/docs/_compiled-docs/introduction/getting-started+p /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/introduction/getting-started"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -911,16 +1347,28 @@ declare module "../src/routes/docs/_compiled-docs/introduction/installation+page /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/introduction/installation"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -934,16 +1382,28 @@ declare module "../src/routes/docs/_compiled-docs/introduction/integrations+page /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/introduction/integrations"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -957,16 +1417,28 @@ declare module "../src/routes/docs/_compiled-docs/introduction/welcome-to-marko+ /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/introduction/welcome-to-marko"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -980,16 +1452,28 @@ declare module "../src/routes/docs/_compiled-docs/introduction/why-marko+page.ma /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/introduction/why-marko"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1003,16 +1487,28 @@ declare module "../src/routes/docs/_compiled-docs/marko-run/adapters+page.marko" /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/marko-run/adapters"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1026,16 +1522,28 @@ declare module "../src/routes/docs/_compiled-docs/marko-run/cli+page.marko" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/marko-run/cli"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1049,16 +1557,28 @@ declare module "../src/routes/docs/_compiled-docs/marko-run/data-loading+page.ma /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/marko-run/data-loading"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1072,16 +1592,28 @@ declare module "../src/routes/docs/_compiled-docs/marko-run/file-based-routing+p /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/marko-run/file-based-routing"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1095,16 +1627,28 @@ declare module "../src/routes/docs/_compiled-docs/marko-run/getting-started+page /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/marko-run/getting-started"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1118,16 +1662,28 @@ declare module "../src/routes/docs/_compiled-docs/marko-run/runtime+page.marko" /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/marko-run/runtime"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1141,16 +1697,28 @@ declare module "../src/routes/docs/_compiled-docs/marko-run/typescript+page.mark /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/marko-run/typescript"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1164,16 +1732,28 @@ declare module "../src/routes/docs/_compiled-docs/marko-run/validation+page.mark /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/marko-run/validation"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1187,16 +1767,28 @@ declare module "../src/routes/docs/_compiled-docs/marko-run/vite-plugin+page.mar /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/marko-run/vite-plugin"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1210,16 +1802,28 @@ declare module "../src/routes/docs/_compiled-docs/reference/concise-syntax+page. /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/reference/concise-syntax"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1233,16 +1837,28 @@ declare module "../src/routes/docs/_compiled-docs/reference/core-tag+page.marko" /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/reference/core-tag"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1256,16 +1872,28 @@ declare module "../src/routes/docs/_compiled-docs/reference/custom-tag+page.mark /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/reference/custom-tag"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1279,16 +1907,28 @@ declare module "../src/routes/docs/_compiled-docs/reference/language+page.marko" /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/reference/language"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1302,16 +1942,28 @@ declare module "../src/routes/docs/_compiled-docs/reference/lazy-loading+page.ma /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/reference/lazy-loading"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1325,16 +1977,28 @@ declare module "../src/routes/docs/_compiled-docs/reference/native-tag+page.mark /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/reference/native-tag"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1348,16 +2012,28 @@ declare module "../src/routes/docs/_compiled-docs/reference/reactivity+page.mark /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/reference/reactivity"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1371,16 +2047,28 @@ declare module "../src/routes/docs/_compiled-docs/reference/supported-environmen /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/reference/supported-environments"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1394,16 +2082,28 @@ declare module "../src/routes/docs/_compiled-docs/reference/template+page.marko" /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/reference/template"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1417,16 +2117,28 @@ declare module "../src/routes/docs/_compiled-docs/reference/typescript+page.mark /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/reference/typescript"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1440,16 +2152,28 @@ declare module "../src/routes/docs/_compiled-docs/tutorial/components-and-reacti /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/tutorial/components-and-reactivity"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1463,16 +2187,28 @@ declare module "../src/routes/docs/_compiled-docs/tutorial/fundamentals+page.mar /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/docs/tutorial/fundamentals"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1486,16 +2222,28 @@ declare module "../src/routes/playground/+page.marko" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = $.Routes["/playground"]; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } @@ -1508,16 +2256,28 @@ declare module "../src/routes/+404.marko" { /** @deprecated use `Run` namespace instead */ namespace MarkoRun { export { NotHandled, NotMatched, GetPaths, PostPaths, GetablePath, GetableHref, PostablePath, PostableHref, Platform }; + /** @deprecated use the `Run` namespace instead */ export type Route = globalThis.MarkoRun.Route; + /** @deprecated use `Run.Context` instead */ export type Context = Run.Context; + /** @deprecated define handlers with `Run.GET(...)`, `Run.POST(...)`, etc. instead */ export type Handler = $.HandlerLike; + /** @deprecated define handlers with `Run.GET(...)` instead */ export type GET = $.HandlerLike; + /** @deprecated define handlers with `Run.HEAD(...)` instead */ export type HEAD = $.HandlerLike; + /** @deprecated define handlers with `Run.POST(...)` instead */ export type POST = $.HandlerLike; + /** @deprecated define handlers with `Run.PUT(...)` instead */ export type PUT = $.HandlerLike; + /** @deprecated define handlers with `Run.DELETE(...)` instead */ export type DELETE = $.HandlerLike; + /** @deprecated define handlers with `Run.PATCH(...)` instead */ export type PATCH = $.HandlerLike; + /** @deprecated define handlers with `Run.OPTIONS(...)` instead */ export type OPTIONS = $.HandlerLike; + /** @deprecated define handlers with `Run.QUERY(...)` instead */ + export type QUERY = $.HandlerLike; } } diff --git a/package.json b/package.json index 6934d6a87..2d51608d7 100644 --- a/package.json +++ b/package.json @@ -29,27 +29,27 @@ }, "devDependencies": { "@codemirror/autocomplete": "^6.20.3", - "@codemirror/commands": "^6.10.4", + "@codemirror/commands": "^6.11.0", "@codemirror/language": "^6.12.4", "@codemirror/search": "^6.7.1", "@codemirror/state": "^6.7.1", - "@codemirror/view": "^6.43.7", + "@codemirror/view": "^6.43.9", "@fontsource/ubuntu": "^5.3.0", "@fontsource/ubuntu-mono": "^5.3.0", "@fortawesome/free-brands-svg-icons": "^7.3.1", "@fortawesome/free-solid-svg-icons": "^7.3.1", "@jridgewell/source-map": "^0.3.11", - "@marko/compiler": "^5.42.0", + "@marko/compiler": "^5.42.3", "@marko/run": "^0.11.12", "@marko/run-adapter-static": "^2.0.10", - "@marko/type-check": "^3.1.6", + "@marko/type-check": "^3.2.0", "@resvg/resvg-js": "^2.6.2", - "@rollup/browser": "^4.62.3", - "@shikijs/langs": "^4.3.1", + "@rollup/browser": "^4.62.5", + "@shikijs/langs": "^4.4.3", "@types/flexsearch": "^0.7.42", "@types/hast": "^3.0.5", - "@types/node": "^26.1.2", - "@types/semver": "^7.7.1", + "@types/node": "^26.2.0", + "@types/semver": "^7.8.0", "assert": "./shim/assert", "autoprefixer": "^10.5.4", "codemirror": "^6.0.2", @@ -63,26 +63,26 @@ "lightningcss-wasm": "^1.33.0", "lz-string": "^1.5.0", "markdownlint-cli": "^0.49.1", - "marked": "^18.0.7", - "marko": "^6.3.35", + "marked": "^18.0.10", + "marko": "^6.3.45", "path": "./shim/path", "path-browserify": "^1.0.1", - "postcss": "^8.5.23", - "postcss-import": "^16.1.1", - "postcss-preset-env": "^11.3.2", + "postcss": "^8.5.26", + "postcss-import": "^16.2.0", + "postcss-preset-env": "^11.4.0", "prettier": "^3.9.6", "prettier-plugin-marko": "^4.1.0", "prettier-plugin-packagejson": "^3.0.2", "pretty-format": "^30.4.1", "resolve-sync": "^1.2.2", - "sass-embedded": "^1.100.0", - "satori": "^0.29.0", + "sass-embedded": "^1.103.1", + "satori": "^0.29.1", "semver": "^7.8.5", - "shiki": "^4.3.1", - "terser": "^5.49.0", + "shiki": "^4.4.3", + "terser": "^5.50.0", "util": "./shim/util", - "vite": "^8.1.5", - "vitest": "^4.1.10", + "vite": "^8.2.2", + "vitest": "^4.1.11", "writable-dom": "^1.0.6" }, "packageManager": "pnpm@11.15.1" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 04cdea43f..15b8d43dd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,8 +19,8 @@ importers: specifier: ^6.20.3 version: 6.20.3 '@codemirror/commands': - specifier: ^6.10.4 - version: 6.10.4 + specifier: ^6.11.0 + version: 6.11.0 '@codemirror/language': specifier: ^6.12.4 version: 6.12.4 @@ -31,8 +31,8 @@ importers: specifier: ^6.7.1 version: 6.7.1 '@codemirror/view': - specifier: ^6.43.7 - version: 6.43.7 + specifier: ^6.43.9 + version: 6.43.9 '@fontsource/ubuntu': specifier: ^5.3.0 version: 5.3.0 @@ -49,26 +49,26 @@ importers: specifier: ^0.3.11 version: 0.3.11 '@marko/compiler': - specifier: ^5.42.0 + specifier: ^5.42.3 version: 5.42.3 '@marko/run': specifier: ^0.11.12 - version: 0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + version: 0.11.12(@types/node@26.2.0)(esbuild@0.27.7)(marko@6.3.45)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0) '@marko/run-adapter-static': specifier: ^2.0.10 - version: 2.0.10(@marko/run@0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))(supports-color@10.2.2) + version: 2.0.10(@marko/run@0.11.12(@types/node@26.2.0)(esbuild@0.27.7)(marko@6.3.45)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0))(supports-color@10.2.2) '@marko/type-check': - specifier: ^3.1.6 - version: 3.1.6 + specifier: ^3.2.0 + version: 3.2.0 '@resvg/resvg-js': specifier: ^2.6.2 version: 2.6.2 '@rollup/browser': - specifier: ^4.62.3 - version: 4.62.3 + specifier: ^4.62.5 + version: 4.62.5 '@shikijs/langs': - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.4.3 + version: 4.4.3 '@types/flexsearch': specifier: ^0.7.42 version: 0.7.42 @@ -76,11 +76,11 @@ importers: specifier: ^3.0.5 version: 3.0.5 '@types/node': - specifier: ^26.1.2 - version: 26.1.2 + specifier: ^26.2.0 + version: 26.2.0 '@types/semver': - specifier: ^7.7.1 - version: 7.7.1 + specifier: ^7.8.0 + version: 7.8.0 assert: specifier: ./shim/assert version: link:shim/assert @@ -121,11 +121,11 @@ importers: specifier: ^0.49.1 version: 0.49.1(supports-color@10.2.2) marked: - specifier: ^18.0.7 - version: 18.0.7 + specifier: ^18.0.10 + version: 18.0.10 marko: - specifier: ^6.3.35 - version: 6.3.35 + specifier: ^6.3.45 + version: 6.3.45 path: specifier: ./shim/path version: link:shim/path @@ -133,14 +133,14 @@ importers: specifier: ^1.0.1 version: 1.0.1 postcss: - specifier: ^8.5.23 + specifier: ^8.5.26 version: 8.5.26 postcss-import: - specifier: ^16.1.1 - version: 16.1.1(postcss@8.5.26) + specifier: ^16.2.0 + version: 16.2.0(postcss@8.5.26) postcss-preset-env: - specifier: ^11.3.2 - version: 11.3.2(postcss@8.5.26) + specifier: ^11.4.0 + version: 11.4.0(postcss@8.5.26) prettier: specifier: ^3.9.6 version: 3.9.6 @@ -157,29 +157,29 @@ importers: specifier: ^1.2.2 version: 1.2.2 sass-embedded: - specifier: ^1.100.0 - version: 1.100.0 + specifier: ^1.103.1 + version: 1.103.1 satori: - specifier: ^0.29.0 - version: 0.29.0 + specifier: ^0.29.1 + version: 0.29.1 semver: specifier: ^7.8.5 version: 7.8.5 shiki: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.4.3 + version: 4.4.3 terser: - specifier: ^5.49.0 - version: 5.49.0 + specifier: ^5.50.0 + version: 5.50.0 util: specifier: ./shim/util version: link:shim/util vite: - specifier: ^8.1.5 - version: 8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + specifier: ^8.2.2 + version: 8.2.2(@types/node@26.2.0)(esbuild@0.27.7)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0) vitest: - specifier: ^4.1.10 - version: 4.1.10(@types/node@26.1.2)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@types/node@26.2.0)(vite@8.2.2(@types/node@26.2.0)(esbuild@0.27.7)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0)) writable-dom: specifier: ^1.0.6 version: 1.0.6 @@ -190,8 +190,8 @@ packages: resolution: {integrity: sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==} engines: {node: '>=6.9.0'} - '@bufbuild/protobuf@2.13.0': - resolution: {integrity: sha512-acq7c49vxfm1ggJ95P70TX7ABDM0vxr1SYD3BB0o0jnBLB4OAqeHyKuN+cD3w80gXEDQ2zxHpR6CUeA+O/aU9g==} + '@bufbuild/protobuf@2.14.0': + resolution: {integrity: sha512-C3UGsiCwSprE2NKIIFA3hCDlpXTMCAXRZuEVp88L1GY36Y41+rYL5fryE+nOFhp4p4JPQvdV8PQ4DWgHgeTE+w==} '@chialab/estransform@0.19.1': resolution: {integrity: sha512-Op0TvQxnzdcnBriFUIjgg3V3MpOB9Cfs4S7TvIuypPegFOSvuFAOcPl5V02NJ9dyGoOc8W6ORbSldc5PYKhOCQ==} @@ -200,8 +200,8 @@ packages: '@codemirror/autocomplete@6.20.3': resolution: {integrity: sha512-tlosUqb+3BbxCxZdu4tKeRghPFC+QM7q4X5YhKV2eCmPG+1r2F3f4AaSz5sCrFqUtX4Jh20VFTKecl16MgiV9g==} - '@codemirror/commands@6.10.4': - resolution: {integrity: sha512-Ryk9y9T0FFVF0cUGhAknveAyUOl/A1qReTFi+qPKtOh2Z9F4AUBz3XOrYD4ZEgZirdugVzHvd/2/Wcwy5OliTg==} + '@codemirror/commands@6.11.0': + resolution: {integrity: sha512-/K4Rl5BN0OtTiPWmJCdqODu38XnDMsDxKY5rgrPnCkutPTJf2wVbkoixLfealF5Kwse/s8P8M5jAiURiwSwnFA==} '@codemirror/language@6.12.4': resolution: {integrity: sha512-1q4PaT+o6PbgpkJt4Q8Fv5XJxTy4FUZ4MWETtyiDw3J0Pyr9E2vqcKL+k9wcvjNTIsauxvE7OfmWj3FRPHQ76A==} @@ -215,8 +215,8 @@ packages: '@codemirror/state@6.7.1': resolution: {integrity: sha512-9QzNDgE4EYDnAHfrTlR2lwiPciiOymLtwKK+8yHQzCc7GXhAP9xdEbEJFy2IWB1j9UGUl9BsgMmTo/ImA02T7A==} - '@codemirror/view@6.43.7': - resolution: {integrity: sha512-FZsExxkoxnAN+d9TgqXLg5g4A1oQwzX9WlkOT5i2PKkcW7xx3Bmu0vs90g6fo9Mpdsb/l96dnAraQ8932aO4/g==} + '@codemirror/view@6.43.9': + resolution: {integrity: sha512-sTuUzTpPMFebRhg6dawChoKKgndIwfjmJgKVxBefPElcU2NwQ6AFroupk0SFqEerQyZOGRfDNnSN8Dw/lMAsXw==} '@colors/colors@1.5.0': resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} @@ -269,8 +269,8 @@ packages: '@cspell/dict-companies@3.2.12': resolution: {integrity: sha512-mjiz/N3zWOCsz5VfwMUydSl7uW0OU9H2PnbCNc3RV44Vj6Q59CSp6EYGSGZQxrXU1gpsuZUrwr6QCjNjFOOg5A==} - '@cspell/dict-cpp@7.0.2': - resolution: {integrity: sha512-dfbeERiVNeqmo/npivdR6rDiBCqZi3QtjH2Z0HFcXwpdj6i97dX1xaKyK2GUsO/p4u1TOv63Dmj5Vm48haDpuA==} + '@cspell/dict-cpp@7.1.0': + resolution: {integrity: sha512-rcjycobioQUd9Jm/Y1n8U+sq6ytpZ0iV8AYIo+vyEFfutC5x7g6hL6Fh3bCdh6IporGHRqfEutGK/4sfopD2ZA==} '@cspell/dict-cryptocurrencies@5.0.5': resolution: {integrity: sha512-R68hYYF/rtlE6T/dsObStzN5QZw+0aQBinAXuWCVqwdS7YZo0X33vGMfChkHaiCo3Z2+bkegqHlqxZF4TD3rUA==} @@ -299,8 +299,8 @@ packages: '@cspell/dict-elixir@4.0.8': resolution: {integrity: sha512-CyfphrbMyl4Ms55Vzuj+mNmd693HjBFr9hvU+B2YbFEZprE5AG+EXLYTMRWrXbpds4AuZcvN3deM2XVB80BN/Q==} - '@cspell/dict-en-common-misspellings@2.1.13': - resolution: {integrity: sha512-00rpydUxKNWY2xxrSx+h46aNWLvbkJdd57SsnEFt24fbs1fROhXZ6XSQu+gQz/zNuiCvFi4Ro3ej9DLbEdWQmQ==} + '@cspell/dict-en-common-misspellings@2.2.0': + resolution: {integrity: sha512-5PmCHv+AhY0LVNo3bE1FdRKMmw1esKj83GPwLymnVPYNtlI2Jf6y27EjC0azg4zny5keWmku0GQiMf55Fi+qeA==} '@cspell/dict-en-gb-mit@3.1.25': resolution: {integrity: sha512-zGODptk24CMrXi49ieG2SUm94CKxEsVF0dYNF+1ZYH0MSsQDZ/PKDlrrbvtBqSupKdPSj0Z9sjOmMNfHHW9ZSg==} @@ -329,8 +329,8 @@ packages: '@cspell/dict-git@3.1.0': resolution: {integrity: sha512-KEt9zGkxqGy2q1nwH4CbyqTSv5nadpn8BAlDnzlRcnL0Xb3LX9xTgSGShKvzb0bw35lHoYyLWN2ZKAqbC4pgGQ==} - '@cspell/dict-golang@6.0.26': - resolution: {integrity: sha512-YKA7Xm5KeOd14v5SQ4ll6afe9VSy3a2DWM7L9uBq4u3lXToRBQ1W5PRa+/Q9udd+DTURyVVnQ+7b9cnOlNxaRg==} + '@cspell/dict-golang@6.0.27': + resolution: {integrity: sha512-rRDb2JL8EefaezHGTEclKXCs4eMOS0q/datk94Lm7KQOhlGlzS9FDVZiR1/guh0o+iJCmejQuf5NR2FQeQSWsg==} '@cspell/dict-google@1.0.9': resolution: {integrity: sha512-biL65POqialY0i4g6crj7pR6JnBkbsPovB2WDYkj3H4TuC/QXv7Pu5pdPxeUJA6TSCHI7T5twsO4VSVyRxD9CA==} @@ -341,8 +341,8 @@ packages: '@cspell/dict-html-symbol-entities@4.0.5': resolution: {integrity: sha512-429alTD4cE0FIwpMucvSN35Ld87HCyuM8mF731KU5Rm4Je2SG6hmVx7nkBsLyrmH3sQukTcr1GaiZsiEg8svPA==} - '@cspell/dict-html@4.0.15': - resolution: {integrity: sha512-GJYnYKoD9fmo2OI0aySEGZOjThnx3upSUvV7mmqUu8oG+mGgzqm82P/f7OqsuvTaInZZwZbo+PwJQd/yHcyFIw==} + '@cspell/dict-html@4.0.16': + resolution: {integrity: sha512-9B6/Cpb5YVcYgsEAlKudun1yd4ONllYS/ZibKLYea2apPR+l2vQdARnPrP9kTqa7NUNfRKl7m9Fb6k9rjimnow==} '@cspell/dict-java@5.0.12': resolution: {integrity: sha512-qPSNhTcl7LGJ5Qp6VN71H8zqvRQK04S08T67knMq9hTA8U7G1sTKzLmBaDOFhq17vNX/+rT+rbRYp+B5Nwza1A==} @@ -368,22 +368,22 @@ packages: '@cspell/dict-makefile@1.0.5': resolution: {integrity: sha512-4vrVt7bGiK8Rx98tfRbYo42Xo2IstJkAF4tLLDMNQLkQ86msDlYSKG1ZCk8Abg+EdNcFAjNhXIiNO+w4KflGAQ==} - '@cspell/dict-markdown@2.0.17': - resolution: {integrity: sha512-H8bAxih6U8NOnSPL7R8My+tqjaB4tmnJTjERuz4zYqmf+cH+5xshX3UVgKlwWFcyjsYfv/zEDuRdMctQv1q6HQ==} + '@cspell/dict-markdown@2.0.18': + resolution: {integrity: sha512-KLRSwVrwKDz4n7bl2XQjzvaBZbGgx5QKkP5Ok1b24xaO3TpXsLhAbAn1mItvFlI2tF6Rkt83iYjQcYppywuf5Q==} peerDependencies: '@cspell/dict-css': ^4.1.2 - '@cspell/dict-html': ^4.0.15 + '@cspell/dict-html': ^4.0.16 '@cspell/dict-html-symbol-entities': ^4.0.5 '@cspell/dict-typescript': ^3.2.3 - '@cspell/dict-monkeyc@1.0.12': - resolution: {integrity: sha512-MN7Vs11TdP5mbdNFQP5x2Ac8zOBm97ARg6zM5Sb53YQt/eMvXOMvrep7+/+8NJXs0jkp70bBzjqU4APcqBFNAw==} + '@cspell/dict-monkeyc@1.1.0': + resolution: {integrity: sha512-mc/hgvSy/emOIYtc8kuVEaLUlnaERunfAubfJ5plUXq6s0A69bcukJzUzSt9C0UTCwS28641ILRPv80m3L9QbA==} '@cspell/dict-node@5.0.9': resolution: {integrity: sha512-hO+ga+uYZ/WA4OtiMEyKt5rDUlUyu3nXMf8KVEeqq2msYvAPdldKBGH7lGONg6R/rPhv53Rb+0Y1SLdoK1+7wQ==} - '@cspell/dict-npm@5.2.43': - resolution: {integrity: sha512-H2gYwtu59dNO9662Uq0usfuhyNd7lZJE1C61a/UXcpRyWWSrTo2Bz+vwGYp1bXZ1LmjXadqvwJ8ArFlGdiadNQ==} + '@cspell/dict-npm@5.2.46': + resolution: {integrity: sha512-Z5GG59c17UEk6BPZ3lVD/++GvPBI+O05OTGm4sRA/0I/qszbstuYRw+j2//5f8SWzOFXKaGYI8kygwKX9EQZ9Q==} '@cspell/dict-php@4.1.1': resolution: {integrity: sha512-EXelI+4AftmdIGtA8HL8kr4WlUE11OqCSVlnIgZekmTkEGSZdYnkFdiJ5IANSALtlQ1mghKjz+OFqVs6yowgWA==} @@ -394,14 +394,14 @@ packages: '@cspell/dict-public-licenses@2.0.16': resolution: {integrity: sha512-EQRrPvEOmwhwWezV+W7LjXbIBjiy6y/shrET6Qcpnk3XANTzfvWflf9PnJ5kId/oKWvihFy0za0AV1JHd03pSQ==} - '@cspell/dict-python@4.2.29': - resolution: {integrity: sha512-OnEt1a35iuQzc2Ize1qU/43ZyF10urRKAm+mlTz++vnAgDLBHpKfWakpSK50nyL5/1WvyQ8BaMjb52MBLEpTeA==} + '@cspell/dict-python@4.4.0': + resolution: {integrity: sha512-49Eju/a97V6ExAeMJDM2Tk4jsYr0pm+kQzqQrKLAZdrRd6VrLIgseI481EQSmgoVkPPdsuwK1xj9ZlpDQIF4qg==} '@cspell/dict-r@2.1.1': resolution: {integrity: sha512-71Ka+yKfG4ZHEMEmDxc6+blFkeTTvgKbKAbwiwQAuKl3zpqs1Y0vUtwW2N4b3LgmSPhV3ODVY0y4m5ofqDuKMw==} - '@cspell/dict-ruby@5.1.1': - resolution: {integrity: sha512-LHrp84oEV6q1ZxPPyj4z+FdKyq1XAKYPtmGptrd+uwHbrF/Ns5+fy6gtSi7pS+uc0zk3JdO9w/tPK+8N1/7WUA==} + '@cspell/dict-ruby@5.1.2': + resolution: {integrity: sha512-f6Slf11N91ittf71AWlfVVG9GZPezVRBfcMPCTNTWhUsY/VEspkBRZYDhPXjV4df3jqHy5YJs8nlsFcFVF/bMA==} '@cspell/dict-rust@4.1.2': resolution: {integrity: sha512-O1FHrumYcO+HZti3dHfBPUdnDFkI+nbYK3pxYmiM1sr+G0ebOd6qchmswS0Wsc6ZdEVNiPYJY/gZQR6jfW3uOg==} @@ -412,8 +412,8 @@ packages: '@cspell/dict-shell@1.2.0': resolution: {integrity: sha512-PVctvT22lJ49niMiakO8xieY7ELCAzjSqhejWR7bAMb5AZ9F4WDEs+XdGMnoVHWeXq7K5rcepLPmEJb+37zzIw==} - '@cspell/dict-software-terms@5.2.4': - resolution: {integrity: sha512-z6y/TGH3QNf5wB4pVvN/P3GfFEW/Whf6QAekNsIn06VKl95dnamfpkPWqV8rEtCixQFaKalb5+y9hRQXH3XQ1g==} + '@cspell/dict-software-terms@5.4.1': + resolution: {integrity: sha512-tY88gnOWj2ax6h+i7BjU7dIH1f3fvY4WypS0a+TpjBgXC318AdOMmy0zK1SzxGNOjhWJfCeCZNVoLFM/DuOG4g==} '@cspell/dict-sql@2.2.1': resolution: {integrity: sha512-qDHF8MpAYCf4pWU8NKbnVGzkoxMNrFqBHyG/dgrlic5EQiKANCLELYtGlX5auIMDLmTf1inA0eNtv74tyRJ/vg==} @@ -463,8 +463,8 @@ packages: '@csstools/css-parser-algorithms': ^4.0.0 '@csstools/css-tokenizer': ^4.0.0 - '@csstools/color-helpers@6.1.0': - resolution: {integrity: sha512-064IFJdjTfUqnjpCVpMOdbr8FLQBhinbZj6yRv2An2E41O/pLEXqfFRWqGq/SxlE5PEUYTlvWsG2r8MswAVvkg==} + '@csstools/color-helpers@6.1.1': + resolution: {integrity: sha512-gLNsunvwf3mCi5u5o46/Z/JcJMnhbHSaZ69rkgPzNM3J4s8hWwpPUQB6/tt0EDFyCiWzxANlx+2LJwpYj4zS1w==} engines: {node: '>=20.19.0'} '@csstools/css-calc@3.3.0': @@ -474,8 +474,8 @@ packages: '@csstools/css-parser-algorithms': ^4.0.0 '@csstools/css-tokenizer': ^4.0.0 - '@csstools/css-color-parser@4.1.10': - resolution: {integrity: sha512-UZhQLIUyJaaMepqehrCODwCg2KW25vFvLWBmqYFaPclYvvxzj/sG8LBOhBFCp11i9uE7t1EyS+RAoV9tztPFyw==} + '@csstools/css-color-parser@4.2.0': + resolution: {integrity: sha512-5+5LEmFuY1AjXdYhmgjTJogtQnP1evJ1zrBZGUNZ0thkpwnnmKxcHdAMn/OtFjAb25zA+jKDVYVRl+5G7rjv1A==} engines: {node: '>=20.19.0'} peerDependencies: '@csstools/css-parser-algorithms': ^4.0.0 @@ -498,8 +498,8 @@ packages: '@csstools/css-parser-algorithms': ^4.0.0 '@csstools/css-tokenizer': ^4.0.0 - '@csstools/postcss-alpha-function@2.0.8': - resolution: {integrity: sha512-/MuCn6mytV678tGW1ox0eSNBoMaPuAR1+lkTy5tffr6Q0/Wv2bVLYnuXclu2kQM11t8nptwLMTaOO2LTkwt2uQ==} + '@csstools/postcss-alpha-function@2.0.9': + resolution: {integrity: sha512-/rw75/xf60Ecz7ZsU11cOJLw0tfbL+aR9g7soEWZO1mrfhZZ+ODJYqXbMEJmr2Qc2ZMPlGKn7R5aUP6yo+wWgQ==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -510,26 +510,26 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-color-function-display-p3-linear@2.0.7': - resolution: {integrity: sha512-7p8YkcbU2fSh1dCzs4fdNwWZjfatIDQjdWqGlUZg7hGvxccbfK/wnOkB8/IyL/J3mI0i9uJ7l5XrEpUNmb2cRQ==} + '@csstools/postcss-color-function-display-p3-linear@2.0.8': + resolution: {integrity: sha512-uXazBO+QoRoZ8UJqFT7MvPi4nPfh5UK5MffoXSIeRjMuHEMtz/VZqGAyskl/JolsikOCAmUlnNzpQ9VdXan2Vg==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-color-function@5.0.7': - resolution: {integrity: sha512-Q9bYimSUJKpb6vwGamtVelzcwbLR7MyqUJpVy9qf5QIIFoGxCYY3OSB9ZdUjHnQR4uI/i7V0JuL0DP38aL137A==} + '@csstools/postcss-color-function@5.0.8': + resolution: {integrity: sha512-3T4mwaiip1VqAMQn6ncLqB3tIGCRZH0xLgN1ZJvsyPQcKo3N/xaTq8zJpWHYQ/upTnxFXd3nT4u1/QxJ5cN1RQ==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-color-mix-function@4.0.7': - resolution: {integrity: sha512-oT9y3T4Qqh1A8hQNv3k/H3sXWbkVRDtL32tI7l1jGC1S//U1KZOSqmv8SEmy1v5/rzT8Rb0PvpRSD+5GqOoIYw==} + '@csstools/postcss-color-mix-function@4.0.8': + resolution: {integrity: sha512-P6OncUFcry06u2N9nLzGihysKv+13Dg1uRD6nYldOKQGAkQ1yDqUWsPahVFSuBeXzL6nrewz0RY7GLNG3MOQog==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-color-mix-variadic-function-arguments@2.0.7': - resolution: {integrity: sha512-dazz4UxGzRbO7c3Oya6jh/mSq31I0k9v5JX2yIVPuSIxptqOU9bnTIYc+8nvm4ulYbdWKRehHbKR1XcgjcV97w==} + '@csstools/postcss-color-mix-variadic-function-arguments@2.0.8': + resolution: {integrity: sha512-6DqDF2eXaxdPAWqvIE8n8O02U24UsAqSPwsxsZ4yqF3XIksTqGnsvfgjY2tdXd7NNLonO5wUtELPClz/TKmvhw==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -540,14 +540,14 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-content-alt-text@3.0.2': - resolution: {integrity: sha512-LUT1eKBzb71pmky0ke2OHJHdcqHl1vtl++qzJei5FioMVWDzxVApElTZsoFwbqV8Et+UmxzieOuhwomuyRullw==} + '@csstools/postcss-content-alt-text@3.0.3': + resolution: {integrity: sha512-60L0Xf5De+FEXSXsJ6U95LRBZlHxthsBeefNcF1mDzxZUwplxSQnIlmTyo5DTiupkPWwi4Sl9aN80eT0SyxwMw==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-contrast-color-function@3.0.7': - resolution: {integrity: sha512-xA8dHBkyd7yB+fGyC/k4lLYjLc2TVuQGsvg7lNY02XeWAodurIaVYJ+XFDOxrGJguW2r7IhyHp7CNOd2a/NK2g==} + '@csstools/postcss-contrast-color-function@3.0.8': + resolution: {integrity: sha512-a7eMC53NjU6w/tlvj7mZGrBZ0Igori24s/gS2tbvKmRRpy2E1zmWJqKcpF4aAKWxd4bg6OcQqrauVRkEI1rZUw==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -570,32 +570,32 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-gamut-mapping@3.0.7': - resolution: {integrity: sha512-Pd0EDlm90qFHPNoCb0Ehp9xSefJB0rI2AsPDKSp2/fBPk8pAuONLc5GJ85PiHYvHHD/ZhNKsRmhHpIUN2J5cKQ==} + '@csstools/postcss-gamut-mapping@3.0.8': + resolution: {integrity: sha512-9hEL++lqLOq4PImXPyzbcIMDFMs54EeK20KIHYzYrgWSZQh+nuLxVVvn5OPaNcBf1fgNq3zZeROzI4C4WtYA/A==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-gradients-interpolation-method@6.0.7': - resolution: {integrity: sha512-BGHrCUGwinirY57JiInXNvZkf/ARUiOVmBAp+3RYFnUjrYh8oIjNolxp3Ia3SaAcgTp0nlDa+s1nvLxay5RkqQ==} + '@csstools/postcss-gradients-interpolation-method@6.0.8': + resolution: {integrity: sha512-30xf5WObqKmVExI4HKJuiUJsH0pV8qIhXwwDnyezaXxlzwpwwZTiY53EMM+ZEx+gErKJdb+60ZLeVKKxhCXrAQ==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-hwb-function@5.0.7': - resolution: {integrity: sha512-UVALs3HbGSm7YlQc4B9if984wwj/j9K43qdC0772JdT4fVlKzQr7jLKVtgpBTrqcPUfQiLogV8lGJ93lwIxinQ==} + '@csstools/postcss-hwb-function@5.0.8': + resolution: {integrity: sha512-HGBlvdYj0ecvKvFB/l0hXQLKyNpEZyDZJjCOpJsd1koHo4SLaf/D/F65wNDkld7jsHMbOLkPfi/3Gm7Qv7vewQ==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-ic-unit@5.0.2': - resolution: {integrity: sha512-1Wcp0ACoGKImCL9mYm6EIdqtT2JuJoeFp/06Efa6pRT0y3elLgF3jYer+c3+qUoBhV/2uDKtfWrCwAkHJ0CB9w==} + '@csstools/postcss-ic-unit@5.0.3': + resolution: {integrity: sha512-LkyT+OUkEJPL9bBbLDwM/Jhwy8iI38wgqYe2pyAVTLDmtJlHaOsiGg8fPL6mE/o/Vxoesr44j5OknrCFPnojTw==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-image-function@1.0.1': - resolution: {integrity: sha512-6V7+8npoBxVgO3JbIdKqI6eo1NAIQtO0oNSfLSgH439WYB43/kM+GneG4elkgglRo1ppgVhjXxmNqhI+K4pEzg==} + '@csstools/postcss-image-function@1.0.2': + resolution: {integrity: sha512-P6y1oL5tBnJRitYe4FmHnW4zoDd5grCFWOnEsTkfAXhTJCy+lZ1wqUuluDIT2JYnhwKrOcyBmWEN/qFB9SlGHQ==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -612,8 +612,8 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-light-dark-function@3.0.2': - resolution: {integrity: sha512-Fu6si5QhRrT5lP7nmXxfowR8zNkYrqoolsWOZxPZBZpVTdoEKazN6v+K53vPcy1EM4Mlj6tSaEjMu4gAwC8yqw==} + '@csstools/postcss-light-dark-function@3.0.3': + resolution: {integrity: sha512-5P5Y3q0cRNSYh662IJCuzNY/25WKzMGPMpL5f7PQcoNEH6OD9J1lAAK0DakLiopwnJ3dD1Qe2vkC8Yl2GUrZOQ==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -678,8 +678,8 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-oklab-function@5.0.7': - resolution: {integrity: sha512-XiZXkEzR100dWr9keAM48y4OZGrjk3Q09katsAIB+EEx9Z57cI4GFwAfSl3krH+5yxP0PVna25CJ4XrEh+z/bQ==} + '@csstools/postcss-oklab-function@5.0.8': + resolution: {integrity: sha512-ZxdD+Z/1rZYOsmU3TB1ufUZrtKngB9zrh5/3llzwFMA5ffk95db0YaURgAA4OToJzvmYUrVv+TY+dcTkxYjlGg==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -690,8 +690,8 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-progressive-custom-properties@5.1.1': - resolution: {integrity: sha512-b9+lusgVDTHXRBgYKE9s0RKUyEn6Q/knmMDmYmSrkZjtpb0Nd71pBtgVMf9tSpOIb0K8hyzeyy6JyKFqg5rBJw==} + '@csstools/postcss-progressive-custom-properties@5.1.2': + resolution: {integrity: sha512-aGHhh/haanBUxYTqr+mXC52iCNuG/p68CSqz3aoQyqSAgwyxNQGofFYwWo7sd8iQUS8BDoQ/khkPb4ymGyt3aw==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -702,14 +702,14 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-random-function@3.0.3': - resolution: {integrity: sha512-0EScyKxscGonwpi30Hj9DEAr0X8D2eDhOqqayQXE91gIqGli9UT+deLYqoogZLOy5GT+ncqltMqztc/q+0UkhA==} + '@csstools/postcss-random-function@4.0.0': + resolution: {integrity: sha512-tuPgeglK6Fh0bKstx4sSa4V6NG69ioUtSzcy3R7z5ZbJdKVfU9TqUBfpmT4JnfXfBdbs8vKOnPN04iT4/gkSKQ==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 - '@csstools/postcss-relative-color-syntax@4.0.7': - resolution: {integrity: sha512-YzfSjBQxLkIBfLTZJVjMRGy57Od7vWdZ1yleCBQR4S+lg0lVaONbDukkF6x8Amiv7m5HUv97ZIxl3wh3kFcHGg==} + '@csstools/postcss-relative-color-syntax@4.0.8': + resolution: {integrity: sha512-PUk4ZqNMTVcKRlAD1XXVVzUPJjUtZQKvxPM1O2Z5UC7OCdzqM+FfKDx8rhuOk9lwGvOtFpia8S9rC6p7oGIpfw==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -744,8 +744,8 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-text-decoration-shorthand@5.0.4': - resolution: {integrity: sha512-LHQL1a0CW0j3oBEivwgp1Gqv+VUppWpEyedM9GBzE6yIT6tnZqY9v0ADX1jO6IptTZTdrnBwM+dveDIuUP+pTA==} + '@csstools/postcss-text-decoration-shorthand@5.0.5': + resolution: {integrity: sha512-BIpgsIO72M/ioe0LfRcqYWi/Dm+ym8RRaQMVRdEKrad4Yqql+xFdqKaUjbOHWL8jpsmiZkbi/fXQdal1HlnjAQ==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -994,15 +994,15 @@ packages: resolution: {integrity: sha512-y0rBJcC8idzWD8qnBOXuTAOG/Fudu0reZs/6INyn6aPxCyvk484x9Ib2TAnJtsol2A6IaQB4kmxBSZlR0Crf0g==} engines: {node: '>=20'} - '@marijn/find-cluster-break@1.0.3': - resolution: {integrity: sha512-FY+MKLBoTsLNJF/eLWaOsXGdz6uh3Iu1axjPf6TUq92IYumcTcXWHoS747JARLkcdlJ/Waiaxc5wQfFO8jC6NA==} + '@marijn/find-cluster-break@1.0.4': + resolution: {integrity: sha512-Wy0V7+SGUjnF9/TkiM1hKVDPj7jKXduPNboMVtHTA8dySMURWqfg/JZ9E2Sq8JgSJmkl7k7Qe9FLeMSrSraWmQ==} '@marko/compiler@5.42.3': resolution: {integrity: sha512-o2y8q0+1sMSjgFYMYKAMeZmijL4+ssVV8Edh8DixgDXsJBIsFYw1kydUqrFbbouw6IQXGHEiBOtw/h09TfuzJA==} engines: {node: '>=22'} - '@marko/language-tools@2.6.8': - resolution: {integrity: sha512-JW3s23gA163kn8IVdxyO7nnS9htbI8WIuHf4fjC9pLlbJeEJrEmpy8nLwAymdcZYg9/6UuquGSXOnNmeDzfEow==} + '@marko/language-tools@2.7.0': + resolution: {integrity: sha512-1W/9yu3lmm1Fo/67huE89h6LX6QjLkUTFxluK4AackuWU21PgiY0RpLZ9QmhrYjXqiSprlyRofKmwRtXfXfpMg==} '@marko/run-adapter-static@2.0.10': resolution: {integrity: sha512-4Tc7Bf3uXy49zQvD917knly1pn5YzXaGhJT8/JHgopdJ+nKQIJ/sgF4ssWawdANp3mNu7pUXxoDivIyIU5QIhg==} @@ -1020,8 +1020,8 @@ packages: peerDependencies: marko: 5 - 6 - '@marko/type-check@3.1.6': - resolution: {integrity: sha512-6AtWat4z8oWK2pGGH3e7+JbUkNwMB5j3gigZYSKZl+MrQk2Dmlo/0VUEC4hVV3f6c0d3dL6y46hpk4PmF9eIFw==} + '@marko/type-check@3.2.0': + resolution: {integrity: sha512-0dSlJPvoDn+ykQrg9X2db64BGKEb0PWpkwJjwfV64DOIoO3TgK+PBGlnslbJrh/DiZLklUnzMjk9aQvPYlwkcQ==} hasBin: true '@marko/vite@6.1.11': @@ -1459,35 +1459,35 @@ packages: '@rolldown/pluginutils@1.0.1': resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==} - '@rollup/browser@4.62.3': - resolution: {integrity: sha512-7AN89WKIfq54PsDvHKKhOgYMiGE4WbsWHhE/31WZXKw6UDTT0UjF2KyO9IbIVx07c36xdv7WZ5M5uwrESrQu/g==} + '@rollup/browser@4.62.5': + resolution: {integrity: sha512-vrDG0CZy6Iy6gbP6IZ4uyv8eVfOwcHCQmL9GIR835cFI+J3BGVRzAJXGbkrA+9DrmackQzZol4CSoQudAimxdA==} - '@shikijs/core@4.3.1': - resolution: {integrity: sha512-ANMDxuaPsNMdDC1m4vfvhlDmJweMwkE5XitTwrq2rWHx5jM+dlm4MmHt2PP6t0uejfR77SuhrhJ0zEijIF/uhA==} + '@shikijs/core@4.4.3': + resolution: {integrity: sha512-QCR4q2ZO/ILJEuwiBMel4wdcTDb1JGwfjKTxPDF6x8ixOaluPrVqIn06C99AcRPhmYlBR56d/Fb+GN58GzExpg==} engines: {node: '>=20'} - '@shikijs/engine-javascript@4.3.1': - resolution: {integrity: sha512-JBItcnPuYq7jVJdZo/vMj94r+szT7XEjHFX+mvFDGSEIbVAXAGyHAHzhbWzpGOwYidCZrErJLLgn2PVeiokHnQ==} + '@shikijs/engine-javascript@4.4.3': + resolution: {integrity: sha512-FbOjFJp9VLdo1Wevs10BBtVxiTWwNLqZh5Gkhjgda/ioL15YOgeSl9n+6XMa3qRlPQzfhFNe641SrynFHYG0nQ==} engines: {node: '>=20'} - '@shikijs/engine-oniguruma@4.3.1': - resolution: {integrity: sha512-OXyNMzg0pews+msMj4cHeqT4xiYKKvbnn6VbdAXxfoFl3SSx4fJTc8FadECuc5/H9p3BzhNAoAUXKwAu9rWYhg==} + '@shikijs/engine-oniguruma@4.4.3': + resolution: {integrity: sha512-EcOQkxdxGQrc1Row/cC2c96/v1dbZqGnEVu1qTuT/MJmp6+cXCvQussowVmCv5Tqr3KuY3c7IbM6HTW3LJ1k9w==} engines: {node: '>=20'} - '@shikijs/langs@4.3.1': - resolution: {integrity: sha512-m0l9nsDqgBHvbZbk7A0/kXz/impK3uB/c6rAn6Gpg/uPtdZRQ+alsN/17MU5thb68XTj/4DxkZAotrM0GGSpDQ==} + '@shikijs/langs@4.4.3': + resolution: {integrity: sha512-ePic0yfAJGOF83D5wBHK/00EjK65oahBYxFk5epgq33WRv7X9UuxLEV8PtR0szC0z8dl7INIpIodB99JRFlR+A==} engines: {node: '>=20'} - '@shikijs/primitive@4.3.1': - resolution: {integrity: sha512-CXQRQOYy1leqQ8ceTeJdmXv/bsUY++6QyLpXJ94LZAAYj5X2SKRdc5ipguv4NPyGVKItB2PPwUpRNe0Sjh5S1A==} + '@shikijs/primitive@4.4.3': + resolution: {integrity: sha512-m0wBeLDQDeIxRdUmrCPdQqfuUamDwRL5isCfYbguKD6NiaKpVbsv+3J81DyIKgNW5h4WAIIr8T4EkgQrBBxvaQ==} engines: {node: '>=20'} - '@shikijs/themes@4.3.1': - resolution: {integrity: sha512-dgpoJ4WqNi2yTmizQHBJ5zcX6j2lE6icN/0yt4l1kkf16jrY/pwPLoTb1ETsWMz0OBLf9ZNvwmxft+cH+N9qSA==} + '@shikijs/themes@4.4.3': + resolution: {integrity: sha512-w8UHjeUnIR965KMWJHUPXOc2mNJUnK3vpVLYLvw5IYU2mnTTJ89E24OrJDBNiJDQ0qzb0tc4l7mrIXx5cFeIyw==} engines: {node: '>=20'} - '@shikijs/types@4.3.1': - resolution: {integrity: sha512-CHFxE0jztBIZRHH6gxXE7DXUCFXjReEGxZ/j0rfSLGKZuwp2xBYycEP14875DSa9KLL/6700oxIq6oO6ef9K2g==} + '@shikijs/types@4.4.3': + resolution: {integrity: sha512-UEJxmRR++MAGR6hugn0vgVS2W/6lWAts84FFSrnlH9sP0LNol7E5+NQ792pH8liWUhyMyjhTgSUH3k7iD7tc5g==} engines: {node: '>=20'} '@shikijs/vscode-textmate@10.0.2': @@ -1532,11 +1532,11 @@ packages: '@types/ms@2.1.0': resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} - '@types/node@26.1.2': - resolution: {integrity: sha512-Vu4a5UFA9rIIFJ7rB/Vaafh9lrCQszopTCx6KjFboXTGQbPNasehVR5TEiithSDGyd1DEiUByggTZsg8jukeIg==} + '@types/node@26.2.0': + resolution: {integrity: sha512-5IviulTZeRNp2vAJ514cc/HUlY5nZ9fCbq9DMyC52BrhFZACo3nI0R7qBxhQmo/d27NFe96ur/b7Wwxklda+kg==} - '@types/semver@7.7.1': - resolution: {integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==} + '@types/semver@7.8.0': + resolution: {integrity: sha512-1mAINjtQCXXeLkJ9ehXkwOcBpqtLxiVtKhpUf83DdRNdQKV0iXZpaHYqRr7nj+wvxuJzoAmAwXI+sCNMv1CzLQ==} '@types/unist@2.0.11': resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} @@ -1547,11 +1547,11 @@ packages: '@ungap/structured-clone@1.3.3': resolution: {integrity: sha512-60YRaenCQcVjYEKOcG824+DRGGIQ3VKErcBoAEDJZz5bKIs2ZG+X/H9Nk+Q6EVkwJk5QNApxbrc5QtBSwtrXAg==} - '@vitest/expect@4.1.10': - resolution: {integrity: sha512-YsCn+qAk1GWjQOWFEsEcL2gNQ0zmVmQu3T03qP6UyjhtmdtwtbuI+DASn/7iQB3HGTXkdBwGddzxPlmiql5vlA==} + '@vitest/expect@4.1.11': + resolution: {integrity: sha512-VX2x5vNJXET47KAFzwERI+KRMtTTCSWTfSMKsW7JsUsXV4psq++e3DvZpuTDOpHcxytiDs6p2nhVb2tVDiiUYw==} - '@vitest/mocker@4.1.10': - resolution: {integrity: sha512-v0xaezt+DKEmKfaxg133ldzADrwLGd7Ze1MfQQTYfvs8OqZIwbxyxaYURivwV7sWy5fqn3rH5uOrSp07bp44Ow==} + '@vitest/mocker@4.1.11': + resolution: {integrity: sha512-2XJVD55d1o5AZous5CCGKS74g/riOj9odEt2bQpCVZeblHyHdnMeFl4jl0XjU21stf4mbjUkew2eXQZt65g5CQ==} peerDependencies: msw: ^2.4.9 vite: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -1561,23 +1561,23 @@ packages: vite: optional: true - '@vitest/pretty-format@4.1.10': - resolution: {integrity: sha512-W1HsjSH4MXQ9YfmmhLAoIYf1HRfekQCGngeIgcei6MP5QQGWUe0gkopdZQaVCFO+JDJMrAJGwa5pRpNpvy4P8Q==} + '@vitest/pretty-format@4.1.11': + resolution: {integrity: sha512-yiZzPbGTS9Sr/JpFl8zHrcIkAofNbFV6k21vIgQN/cY/oxZeXhJv5sc/MBJ5jFKWmWs+oJHw0UXLZjmf931+Vw==} - '@vitest/runner@4.1.10': - resolution: {integrity: sha512-IKI6kpIH+LmpROplyLwBBaCfMgOZOMsygVa6BARD6ahA04VRuJSa6OaVG7kRvSEMD870Vd91rSSw0eegtWyLGg==} + '@vitest/runner@4.1.11': + resolution: {integrity: sha512-LztvUgdwMNJMIkj3hQnnxiC2Xy1zNxq928W/xhjCLaNCzqTZOudjwbQf6v9IntZGPw132i2Lq2rgTRZHD3JHNw==} - '@vitest/snapshot@4.1.10': - resolution: {integrity: sha512-xRkfOT1qpTAi/Ti4Y1LtfRc3kEuqxGw59eN2jN9pRWMtS/XDevekhcFSqvQqjUNGksfjMJu3Y+oJ+4Ypn2OaJw==} + '@vitest/snapshot@4.1.11': + resolution: {integrity: sha512-pN7ikn1ON7h8ee4gIAp4AzyK+zBtJPzVbqOgu5LCEh4VaJVbPQcgYQYJIMGQPXVeJJq1fnfazis7a5pFNPahog==} - '@vitest/spy@4.1.10': - resolution: {integrity: sha512-PLf/Ugvoq5wO/b4rwYCR1h2PSIdXz7wnkQFMiUpLdtM7l6pqVFcQIBEHyT1+l+cj7mNwAfZHzqXqDyjvOuwbDw==} + '@vitest/spy@4.1.11': + resolution: {integrity: sha512-apNa/prQy2qCeywhnixOHPRCgGNhvg7T4Dapfl1GahLp/R+uhBm5cPyFoNVyqsNd2h1nJxL6BqqdIjiABL60YA==} - '@vitest/utils@4.1.10': - resolution: {integrity: sha512-fy9am/HWxbaGt/Sawrp90vt6Y6jQwf1RX77cz3uwoJwJVMli/e1IEwRPnMNJ7vKfPTwo0diXifkpPvwH9v7nGA==} + '@vitest/utils@4.1.11': + resolution: {integrity: sha512-zTCVGpyFsGWBhllOyKlTw/vnr6D9qxsfSDyfbyZmTyjHw5N/VuvzHpHoQjm2ZJzn4RJgx5w4r7V0er69CmLgPQ==} - acorn@8.17.0: - resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==} + acorn@8.18.0: + resolution: {integrity: sha512-lGq+9yr1/GuAWaVYIHRjvvySG5/4VfKIvC8EWxStPdcDh/Ka7FG3twP6v4d5BkravUilhIAsG4Qj83t02LWUPQ==} engines: {node: '>=0.4.0'} hasBin: true @@ -1585,8 +1585,8 @@ packages: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} - ansi-regex@6.2.2: - resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} + ansi-regex@6.3.0: + resolution: {integrity: sha512-WpDfL7NO6j7tH88IDBNVdUJxDh9nmCteAVW9dsep846XdwF4naCBK+/tGLX3KJgcpgMRXCFlTM2hKGoK9FsdrQ==} engines: {node: '>=12'} ansi-styles@5.2.0: @@ -1637,8 +1637,8 @@ packages: engines: {node: '>=6.0.0'} hasBin: true - brace-expansion@5.0.8: - resolution: {integrity: sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==} + brace-expansion@5.0.9: + resolution: {integrity: sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==} engines: {node: 20 || >=22} braces@3.0.3: @@ -1707,8 +1707,8 @@ packages: color-name@1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - colorjs.io@0.5.2: - resolution: {integrity: sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==} + colorjs.io@0.7.1: + resolution: {integrity: sha512-LY7OHnJZxHwT5UlzNa9bbhHHDbzB6yE5+3MIPwJEQKRvSCt/T4G7epsj+9j2BExUIIfXFIJGsIXUKdfrK9Q5tA==} comma-separated-tokens@2.0.3: resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} @@ -1832,8 +1832,8 @@ packages: css-to-react-native@3.2.0: resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==} - cssdb@8.9.0: - resolution: {integrity: sha512-J8jOU/hLjaXcO1LldOLraJSQpfLXRKof0I7mtbRyOy2AAXgqst0x9rlgi2qXeD6d0ou3ZLqcPAMqYVbpCbrxEw==} + cssdb@8.10.0: + resolution: {integrity: sha512-+JWEEjjoqkPY7iGHps3SaCT2w67Zpaj9zHvhCJ2iPBavKHwgtOOD2YEbZSCU8VO2uVGpKdYjVz+j6bhkNSjZ0g==} cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} @@ -1961,8 +1961,8 @@ packages: es-module-lexer@1.7.0: resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} - es-module-lexer@2.3.1: - resolution: {integrity: sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==} + es-module-lexer@2.3.2: + resolution: {integrity: sha512-poHGpORABojJJucnV9KbOavETW8lBVnphkW77ER5/BQ5Fz7oXSoCNek7IH3vR5nRjdsEz926ibFYX8KtLQmdyw==} esbuild-plugin-browserslist@2.0.0: resolution: {integrity: sha512-gm8EITyyfS3h5I+f/+6C+TFXI23PWi80vHtoccIA17GIoZDSSjHYZw+MINXrlQZ7DZ57myL0JAuDsKbUZlWQgw==} @@ -2030,8 +2030,8 @@ packages: picomatch: optional: true - fflate@0.7.5: - resolution: {integrity: sha512-QieYf//cis6ywHNi5qW1+PXPQ4bC+XVJAtS4AXIML8P76GroEiOxm/oQtn1f02UkJY1+KsXMJcC+R2v/Eg4G3g==} + fflate@0.7.3: + resolution: {integrity: sha512-0Zz1jOzJWERhyhsimS54VTqOteCNwRtIlh8isdL0AXLo0g7xNTfTL7oWrkmCnPhZGocKIkWHBistBrrpoNH3aw==} filename-reserved-regex@2.0.0: resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==} @@ -2053,8 +2053,8 @@ packages: resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} engines: {node: '>=8'} - flatted@3.4.3: - resolution: {integrity: sha512-/zipXxyO6rGvuNGDiULY9MvEGSkb2gaG4GGH4ygMi0ZZzyMHdUZBmntJmx5x1G2VuPytCwGN4xsJP6cw+sK+vQ==} + flatted@3.4.4: + resolution: {integrity: sha512-5+ybhBZANEJxaH3X5evAFatUxLfEHSr7n6kYJ+1Qd0mUqr4eu9gIf6GDbWHf8RJijHrjjO8G+la14SlL2SeS1Q==} flexsearch@0.8.212: resolution: {integrity: sha512-wSyJr1GUWoOOIISRu+X2IXiOcVfg9qqBRyCPRUdLMIGJqPzMo+jMRlvE83t14v1j0dRMEaBbER/adQjp6Du2pw==} @@ -2231,8 +2231,8 @@ packages: resolution: {integrity: sha512-4SrR7AdnY11LHfDKTZY1u6Ga3RuxZdl3YKWWShO5iyuG5h8QS4GD2tOb04peBJ5I7pXbR+CGBNEhTcwK+FzN3g==} engines: {node: '>=20'} - js-yaml@5.2.2: - resolution: {integrity: sha512-dayzUzKkJ1MkuUtZglSebU43utNXH0OWQByK9rKOOuYIO8M5TV1y+n8ALMdG0rdzBnfNkOmZEqrURepb0ejqBw==} + js-yaml@5.2.3: + resolution: {integrity: sha512-n+mUVyUX5bVv7G/G2zyIHOhdxfuU1dY2NOFzTQUWiMUbFss8b57NFlgCCaggU78wSw5KVS9cllzeLyzyR+n5nw==} hasBin: true jsesc@3.1.0: @@ -2382,13 +2382,13 @@ packages: resolution: {integrity: sha512-qHKeU2E1bdyNAT077go2FVTNXvYcktN5IHtF6XyeD1l0PClxzSp2tUApAV14ORI8DGX4H9bNKZEzelZp4qn8IA==} engines: {node: '>=22'} - marked@18.0.7: - resolution: {integrity: sha512-iDVQ5ldaiKXn6b2JroX5kgRfmwgqolW7NpaEzTl1k/2Zh1njIEN9yniyLV/mOvWwtsE8OGgkjsCYvijuPk1dtA==} + marked@18.0.10: + resolution: {integrity: sha512-FJeH4bRpYoXiggcgriCGItKCSv3xkngJc4QCZ/rkQCogU3VYaLxYJoZl8Nw/b4+x7iij/pd+09mZ6A1dXzpL0A==} engines: {node: '>= 20'} hasBin: true - marko@6.3.35: - resolution: {integrity: sha512-vrZ0DMdOCQ7YGb7fEGXrDa2SvRCIeAciViGqAmon4VJ8UXX8/3Vc1rDjp+j/BlLl6n4zRScjP4rcQSe1HpXXzQ==} + marko@6.3.45: + resolution: {integrity: sha512-2/KRbwfWH86OVVl1VeuxHq4RNhzl/wGDpdsxnj8QseYSiFk7l+2xDymXoeUkVdA5g5Fwff1QUQAxU2k6RRnMqQ==} engines: {node: '>=22'} mdast-util-to-hast@13.2.1: @@ -2614,10 +2614,6 @@ packages: resolution: {integrity: sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==} engines: {node: '>=12'} - pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} - pkg-dir@4.2.0: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} @@ -2634,8 +2630,8 @@ packages: peerDependencies: postcss: ^8.4.6 - postcss-color-functional-notation@8.0.7: - resolution: {integrity: sha512-r4yb37te8bPww9xoQoI+ADki1EyKtaafCtyooSrwCRBuSsZ8RDEBqDzqSy8g/o3CHPKjmpCwWu4LUnIiHvbrMA==} + postcss-color-functional-notation@8.0.8: + resolution: {integrity: sha512-xca5kF3C1QNRaanxiZ/CF1KMUxC3xT6BYQ2tPJTKEoKE4+iDfvLjV2DVQozHeIbnJC8Etcwrr2ycyCIuYxA30g==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -2676,8 +2672,8 @@ packages: peerDependencies: postcss: ^8.4 - postcss-double-position-gradients@7.0.2: - resolution: {integrity: sha512-X62YBNOxoCVvoUpV3uxdg5h86nbzJwF0ogLrgHUL73YsX8FJ5pGeOxRuaUcqhHxQ4wcoKY+O55lJAyCGsxZLJA==} + postcss-double-position-gradients@7.0.3: + resolution: {integrity: sha512-cOW0WTgcIyIAqCKPNt9pESfNecYGpqBI8Y5PwDhtggoMCwwbOJ5mF5WcHZSGT6Zkj76vILAjuvl5r7O5A9uqtg==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -2711,14 +2707,14 @@ packages: peerDependencies: postcss: ^8.4 - postcss-import@16.1.1: - resolution: {integrity: sha512-2xVS1NCZAfjtVdvXiyegxzJ447GyqCeEI5V7ApgQVOWnros1p5lGNovJNapwPpMombyFBfqDwt7AD3n2l0KOfQ==} + postcss-import@16.2.0: + resolution: {integrity: sha512-0mQUGlSp87Zl70K58RNwQAN1WS9plFE6KWGui9nyK6ninduMyjW/Khaoy/BpBoFTBh7ndAvAKrSKVbwy6vd/BA==} engines: {node: '>=18.0.0'} peerDependencies: postcss: ^8.0.0 - postcss-lab-function@8.0.7: - resolution: {integrity: sha512-15K/TiwaN3xdIxxaex7pqOIzvaRHcqm1DTiDVxmEJ29jpUztUYJA+O5m/GT9X9UODgqnsXHe46Ca4x+V4LFwcw==} + postcss-lab-function@8.0.8: + resolution: {integrity: sha512-szBEKkYQ58IufK2h7rKSbS3ZYjZG+Owl/o/nn/UGALqkdn1HTI5IVXIPrFGL7Vb1FXH5RzSgCbBu47pT5os5Uw==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -2758,8 +2754,8 @@ packages: peerDependencies: postcss: ^8.4 - postcss-preset-env@11.3.2: - resolution: {integrity: sha512-O7aA42UBH/89RkGy1YXgJqb+LxZ2+zvR8bHn9qyYcYc+lOo4g9TuIpb75nZT1tN77Bd6pX3DMZ+eYohS4MfKQg==} + postcss-preset-env@11.4.0: + resolution: {integrity: sha512-KFhGWarjnlul+1BHEz+Kv5H7UGNQUpQJ3C8rXW79UIREszo+xb1SU+V9tRNLeBwFOIBCn+ozC87DFpgPHpqfUQ==} engines: {node: '>=20.19.0'} peerDependencies: postcss: ^8.4 @@ -2781,8 +2777,8 @@ packages: peerDependencies: postcss: ^8.4 - postcss-selector-parser@7.1.4: - resolution: {integrity: sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==} + postcss-selector-parser@7.1.5: + resolution: {integrity: sha512-KvvtD7SrlBP7dlgkBghEE3r84CABm5SmV2aNcG4oCA+qDnJ/tvKonFVvwWAyyWUEwxuNawdfEAZKP9zM3oZ2Uw==} engines: {node: '>=4'} postcss-value-parser@4.2.0: @@ -2841,8 +2837,8 @@ packages: react-is@19.2.8: resolution: {integrity: sha512-s5un28nYxKJw5gvUHyW5PCC28CvBqLu9r3cWgzHT4Vo/5fqqkFcdRYsGcKf50WMPpjjFZS5d76fn3YCo2njKwQ==} - read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + read-cache@1.0.2: + resolution: {integrity: sha512-/peqiBB/n07gQGLsWaHho3WfvUyRscw0gYTsEFMhrIe/nWLkYaf5SbKYjGYqtRV3aPwykJgF2VEMo1ac4bnsGA==} readdirp@5.0.0: resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==} @@ -2902,130 +2898,130 @@ packages: safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - sass-embedded-all-unknown@1.100.0: - resolution: {integrity: sha512-auFtXY/kwYILmSVjtBDwyj0axcLbYYiffOKWoaXHnI5bsYwiRbBh3EneR1rpbX2ZIZCrwX93i5pxKLTZF/662Q==} + sass-embedded-all-unknown@1.103.1: + resolution: {integrity: sha512-MwX2ap06TbImAqlbnH6EndgBBejk6Eq2QB6Ae2hukCn9wmXf9cRu27um3mz3tyB4oJOOku0xfHqFH/+ckYj6YA==} cpu: ['!arm', '!arm64', '!riscv64', '!x64'] - sass-embedded-android-arm64@1.100.0: - resolution: {integrity: sha512-W+Ru9JwTnfU0UX3jSZcbqFdtKFMcYdfFwytc57h2DgnqCOIiAqI2E06mABZBZC+r3LwXCBuS5GbXAGeVgvVDkA==} + sass-embedded-android-arm64@1.103.1: + resolution: {integrity: sha512-jBXWMksyz55XeLOWvQs64BqiG5DcqflmMxcvMoA2oHtQT/7XZ02hBn502qpcF/q8Qd+qqG/hU5ccM+hGXrbQZw==} engines: {node: '>=14.0.0'} cpu: [arm64] os: [android] - sass-embedded-android-arm@1.100.0: - resolution: {integrity: sha512-70f3HgX2pFNmzpGQ86n5e6QfWn2fP4QUQGfFQK0P1XH73ZLIzLo2YqygrGKGKeeqtc5eU2Wl1/xQzhzuKnO4kw==} + sass-embedded-android-arm@1.103.1: + resolution: {integrity: sha512-p36WHpsu5HEo2+NVNbI2Nmb8VgVH0xwOQyzghvZhF7ikGCzEVYI5BP28vHUZlCcgj2TUvMEJKI2lV336a+F/sg==} engines: {node: '>=14.0.0'} cpu: [arm] os: [android] - sass-embedded-android-riscv64@1.100.0: - resolution: {integrity: sha512-icU3o0V/uCSytSpf+tX5Lf51BvyQEbLzDUJfUi9etSauYBGHpPKkdtdZH0si4v98phq11Kl8rSV1SggksxF1Hg==} + sass-embedded-android-riscv64@1.103.1: + resolution: {integrity: sha512-rzrH7RNntk0rx+zCE9xOiAIUt37D1cQKvFfcoX0xiePdGbNHBN8DWKaWN9vaCRfbgKCmxPjevzaqFNI/G/8E1A==} engines: {node: '>=14.0.0'} cpu: [riscv64] os: [android] - sass-embedded-android-x64@1.100.0: - resolution: {integrity: sha512-mevF9VQk6gEYByy8+jusaHGmd7Usb2ytX/DsEOd0JtOGCtcf1kh575xJ6OUBDIcJ15uLnbau/0iy1eP6WVBvWA==} + sass-embedded-android-x64@1.103.1: + resolution: {integrity: sha512-EQglAJXJutuIcqgZf7YOwzao2ND6ow/OgqN+cM48/Qaeb6AimYmZiUJmM9FFcmS3Q2n1k6/2OU3l3Hlin7bFpw==} engines: {node: '>=14.0.0'} cpu: [x64] os: [android] - sass-embedded-darwin-arm64@1.100.0: - resolution: {integrity: sha512-1PVlYi61POo93IT/FfrG1mc1tAHxeSTyUALF2aOFmXGWjVXr3bQzEQiBGCOvQbj/ix+5hNyXFXcEMEyKvtUJJA==} + sass-embedded-darwin-arm64@1.103.1: + resolution: {integrity: sha512-rlaBeCul8pLbDRKdBAxdDxSBwFU5fbX42ci6CxW2Vbs34jWTMQ72+nE2v2KkGGce+JnYbb7UV6xDP/4uDWWi+w==} engines: {node: '>=14.0.0'} cpu: [arm64] os: [darwin] - sass-embedded-darwin-x64@1.100.0: - resolution: {integrity: sha512-x97o3JnGyImZNCIVs9wQHJUE5QCvmVIKaH1cwrz/5dK7OT1FpeNiW+u9TUomP9hG6Ekjd8EL8NBHpxTfIhdjmg==} + sass-embedded-darwin-x64@1.103.1: + resolution: {integrity: sha512-VSKFfhI//AOct6ppFmAaSH7tlW2LOFECMGs77jIoWf0ZjvGch/3sc9lUTTdIaYIOnTS4qpZck+8OcI2D0G92QA==} engines: {node: '>=14.0.0'} cpu: [x64] os: [darwin] - sass-embedded-linux-arm64@1.100.0: - resolution: {integrity: sha512-Dwjmj8Z6VRy7rAi53JAdEwIyUjpfl7PhpSc2/LpQPQx+aO5Dp7Spaipkax0ufJl1SoDUdchCsM4y/88YaluorQ==} + sass-embedded-linux-arm64@1.103.1: + resolution: {integrity: sha512-rC+80/Xr9svo0ka2Zr/sjD+N1zEHTw2Urm/nsEjaVp5HSH2i22jwhTKTIqie2OLl6ti+qdYnbI0sSfxOYRtgrg==} engines: {node: '>=14.0.0'} cpu: [arm64] os: [linux] libc: glibc - sass-embedded-linux-arm@1.100.0: - resolution: {integrity: sha512-9Ul7O1eKrc5YlhwWjkp8tZPSe3UEwSZ1uwUZOQom1HL0pRlBA6F/IlGZYFTLwnHMIP1fc77MMNaBRfc05mKMpw==} + sass-embedded-linux-arm@1.103.1: + resolution: {integrity: sha512-tJRLPUtBwXHTnBnG7I39gQvCLreuOHLLCMyKHPR1hQ7aFNwiZjADYzKMRQPNMUqti/Os9z+6I7V13FqgQHfuzg==} engines: {node: '>=14.0.0'} cpu: [arm] os: [linux] libc: glibc - sass-embedded-linux-musl-arm64@1.100.0: - resolution: {integrity: sha512-XpACJB2KjSLjf2e9uuvGVdOURsoNrFqgRiihhXyUHK9W0t3LIHb7z5MA/7XGPIT9bWSOO2zyw+rH/FHtDV/Yrg==} + sass-embedded-linux-musl-arm64@1.103.1: + resolution: {integrity: sha512-jMgG/C/VMo7+ShMFdk0xjJmQmYkj1PbJu/yrQiaQHpuo5pE2G+vnkEgsuM5EM3lTQ4MbMfnf715qy1fkbNPiUQ==} engines: {node: '>=14.0.0'} cpu: [arm64] os: [linux] libc: musl - sass-embedded-linux-musl-arm@1.100.0: - resolution: {integrity: sha512-sl0JgbGloPyJg66XXx5UDSDScZ0oU85DpMQU4JU/sCUCFj1Z8zZ69SJWKTCNE4/jwnce7WI2zPCV5AG+RHOZJw==} + sass-embedded-linux-musl-arm@1.103.1: + resolution: {integrity: sha512-N8L/kgVzXpnH+8d6ErIzqvb0l8kHODR3OfPaf0Azw6DOLGtEjwDRUbHno+G7iogGzyPOjKsM8OdyqHJj/bpTdw==} engines: {node: '>=14.0.0'} cpu: [arm] os: [linux] libc: musl - sass-embedded-linux-musl-riscv64@1.100.0: - resolution: {integrity: sha512-ShvI0Kx04mwoCARwZ0UjiT97isQvzO80tAt91zmFyHLN9kelc/IrQi940farSm2xQVPCKdeVyeG0ekBsokSpYQ==} + sass-embedded-linux-musl-riscv64@1.103.1: + resolution: {integrity: sha512-LZm8rEvI6sKU87qPOlODsYeAs7CmWy0B4ShYkjG4OMcGCcV4Ffxn25XW4TFqmruThITQvJ8WT+WGblzdoxYgbA==} engines: {node: '>=14.0.0'} cpu: [riscv64] os: [linux] libc: musl - sass-embedded-linux-musl-x64@1.100.0: - resolution: {integrity: sha512-TDBCRWNuS4RDLQXvRc1gjZlWiWTWaWGp0Bwu/IKwJxov81lsvrCs3TihTyNXtW7V5aoN4Ky3r0QOkNb3mwmBnA==} + sass-embedded-linux-musl-x64@1.103.1: + resolution: {integrity: sha512-rmKzgk4t6RpaDhSefbbnk5yrA4pk1nHlVhJECGay8yMfzK8eglATeY9fzPgt89xCuQk6rkOiy11e+m8tLYOW5Q==} engines: {node: '>=14.0.0'} cpu: [x64] os: [linux] libc: musl - sass-embedded-linux-riscv64@1.100.0: - resolution: {integrity: sha512-j4ENJGOheO+fm3j/yorLxCjBP6/XskrZx7dTLlT+lXYwN/qqCqoA/gsNLI0McS3DFM6GBwPiffzWsdWS8t6sEQ==} + sass-embedded-linux-riscv64@1.103.1: + resolution: {integrity: sha512-xydQmtxla31uMrmN6z+mAogVGdEMDmkUElVq2+udomX/TPZDYJBkApEyJl237M2VLWVv29v1N4U4i2Z4xa7SDA==} engines: {node: '>=14.0.0'} cpu: [riscv64] os: [linux] libc: glibc - sass-embedded-linux-x64@1.100.0: - resolution: {integrity: sha512-0vUSN8j0WGtCJIOPh//EmUvYGHW0QOe5iul8qyhPk50MAcw49MA0r34AhftjDdx94ILPF6vApFs0gwHPQRlpVA==} + sass-embedded-linux-x64@1.103.1: + resolution: {integrity: sha512-Rln1oWm0MWKzzemOgQWrRFzfVBARwS9qxAidZPpCQHSohzPnWizFkmY1CUJad/YJNsA7sscueMdX63OEvxoM8w==} engines: {node: '>=14.0.0'} cpu: [x64] os: [linux] libc: glibc - sass-embedded-unknown-all@1.100.0: - resolution: {integrity: sha512-c+naBgWId4MIpToXcI0DgqetjdAkwTTAxFAuOaBz7HUXLdyG1oZRrEvSsbe41nEdQOKH0vgofVFCeSQgoXOG9A==} + sass-embedded-unknown-all@1.103.1: + resolution: {integrity: sha512-p7kI4US8+n+YguKczXh+4KcodJnk+8cwv+QFdvMaz3OfPrdHV0EnhPsaVDWD9qXb1XXCEdUhpp6vQwGk3eKc3A==} os: ['!android', '!darwin', '!linux', '!win32'] - sass-embedded-win32-arm64@1.100.0: - resolution: {integrity: sha512-iE+yxj+hUXwwbqpHkXxgAWTzeRfcWxJ7SSTQEPMk48lwq3oCrWLlz5sQuWHbuTK/i0GKQfROdP+hOmPi89yjUg==} + sass-embedded-win32-arm64@1.103.1: + resolution: {integrity: sha512-/0renOj3SpZGu4TA8CZJ6qZbTxGZk1khkPfiBTmV1uFB40ESYM5VsdXNj76P07bsAjIj9X2fCjTafLQFLSd9Nw==} engines: {node: '>=14.0.0'} cpu: [arm64] os: [win32] - sass-embedded-win32-x64@1.100.0: - resolution: {integrity: sha512-qI4F8MI7/KYoy9NdjJfhSspG42WPkADSNDvwEV7qWvCSFC83koJssRsKO2/PfY+niZz6BG65Ic/D+A11h959hw==} + sass-embedded-win32-x64@1.103.1: + resolution: {integrity: sha512-fIg60j9u5YlLUU3W8FvySMR4HHIo9R12HHFQTW7njyQ8nXqgR+t+XfCzGJloQka8g583BlAfu31Q76Ljr5o+9g==} engines: {node: '>=14.0.0'} cpu: [x64] os: [win32] - sass-embedded@1.100.0: - resolution: {integrity: sha512-Ut8wlQSk19tm7jMK6mz6cF1+e+E7tUnW2tM02zQDPnOTcVbV8qCQG8UWxZkkNlY50+hV3hqP24OOkUlMz8xBpw==} - engines: {node: '>=16.0.0'} + sass-embedded@1.103.1: + resolution: {integrity: sha512-UVIuFZPzz+4DXYbHzQ5gKaKkyP2IH3Sc/WoF63N2V7QIfnC2E9UpQAtiKlCVJTfBe43HRgHDBLnXpZkYAEBsNQ==} + engines: {node: '>=20.19.0'} hasBin: true - sass@1.100.0: - resolution: {integrity: sha512-B5j0rYMlinhhOo9tjQebMVVn0TfyXAF+wB3b2ggZUuJ/is/Y+7+JGjirAMxHZ9Z3hIP98NPfamlAkBHa1lAaXQ==} + sass@1.103.1: + resolution: {integrity: sha512-9icZURbP51S6S0QGoyaeqk9uB06GNWxsFYWfH5RgpFgqK5FA8tJcM3AdVxrZEVJ7dz+L87nG95gBKf4VuaMHGw==} engines: {node: '>=20.19.0'} hasBin: true - satori@0.29.0: - resolution: {integrity: sha512-fPAfrwNaIQ7EsJLhY382STEqpczN6ZEH9NsKXDQgRcxUXNNPB73iAjSshzFwTaaScT68pxV0pmG6TBzDQ4sEGw==} + satori@0.29.1: + resolution: {integrity: sha512-fPRFt1V0zq+qjNTWuLGdH26Qu9oI/WHcHIsDj7EdrmudDd5XIkx0TsDzD2POthxKiJ4xMPyq20YIj6WcgEbY3Q==} engines: {node: '>=16'} self-closing-tags@1.0.1: @@ -3052,8 +3048,8 @@ packages: setprototypeof@1.2.0: resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} - shiki@4.3.1: - resolution: {integrity: sha512-oR+qDVi2OjX1tmDpyv+3KviX01KzO6Af+0NNnKnsp9491UEGz2YpxTuJboS/6VhYpTdqzmuJBuiTlrAWWJAssw==} + shiki@4.4.3: + resolution: {integrity: sha512-Mb/GvXPHBAXdgGIcnfU5L3ldpn1XcxrGkPHwqgRx17/I2XRfqlFKk2vGkHWINn1kdXvzJZeuO3is6I9KLPFm0g==} engines: {node: '>=20'} siginfo@2.0.0: @@ -3067,8 +3063,12 @@ packages: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} - smol-toml@1.7.1: - resolution: {integrity: sha512-PPlsspAZ4jbMBu5DMFhfUGDQLu/vrL4SyBROVS37x8ynnVmFIs1VPBz1Co8Xks3TvpIaZXmU85y4DrQ+UyVFoQ==} + smol-toml@1.7.2: + resolution: {integrity: sha512-pXFZ9B2WinEPzxWkMmlYE/oYx2BP+qLrE95wP8tCuK901uLSMGdCb6QSr82z+wnhXkG4+cO+OMLbZB2Cn+97zw==} + engines: {node: '>= 18'} + + smol-toml@1.8.0: + resolution: {integrity: sha512-kCZr2V3ch9i00x8zXRhjUNVcjG9ijES5dDudkXvUVCT5QlJNQWElSJdZqyPemffHoLNUYwOcou0Fy+ojN0uHSQ==} engines: {node: '>= 18'} sort-object-keys@2.1.0: @@ -3159,8 +3159,8 @@ packages: resolution: {integrity: sha512-gAQ9qrUN/UCypHtGFbbe7Rc/f9bzO88IwrG8TDo/aMKAApKyD6E3W4Cm0EfhfBb6Z6SKt59tTCTfD+n1xmAvMg==} engines: {node: '>=16.0.0'} - terser@5.49.0: - resolution: {integrity: sha512-SNiDnXyHSrxVcIOtVbULzcTmniUiwcV7Nwdyj1twVubeTmbjoa8p69KKDpfkdoOavuM4/GRm1+ykI8qqnavHoA==} + terser@5.50.0: + resolution: {integrity: sha512-CN9BVxWhgS/hRxtUMjtC2uRWSTcSfQFHMDWma6sKKfIivCD91sM+FOPfvwoaRMqCSrUpe1nv3jDamd9eEQ4y+w==} engines: {node: '>=10'} hasBin: true @@ -3170,8 +3170,8 @@ packages: tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - tinyexec@1.2.4: - resolution: {integrity: sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==} + tinyexec@1.3.0: + resolution: {integrity: sha512-QKAl9m8gWWGHV8jZcPeym6j+XULi6tOf1mT83WYJ4Lk2ytW/uwAWkrP0uFsdoYMdueVJ0qs26wZ+23xeB4ibNQ==} engines: {node: '>=18'} tinyglobby@0.2.17: @@ -3306,20 +3306,20 @@ packages: yaml: optional: true - vitest@4.1.10: - resolution: {integrity: sha512-R9jUTe5S4Qb0HCd4TNqpC7oGcrMssMRGXLW80ubjWsW9VH5GF8y1Y0SFLY9AbqSk6nt0PnOx4H4WNJYZ13GUPw==} + vitest@4.1.11: + resolution: {integrity: sha512-fhACrNXUidIbGSBr5FlbuBkO7VWC1ZyLl0DO4CU2DrQoAPxX84Ysxs+HeGQpii5lZWV1Q4gBZTTu49mF+A6Edw==} engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@opentelemetry/api': ^1.9.0 '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.1.10 - '@vitest/browser-preview': 4.1.10 - '@vitest/browser-webdriverio': 4.1.10 - '@vitest/coverage-istanbul': 4.1.10 - '@vitest/coverage-v8': 4.1.10 - '@vitest/ui': 4.1.10 + '@vitest/browser-playwright': 4.1.11 + '@vitest/browser-preview': 4.1.11 + '@vitest/browser-webdriverio': 4.1.11 + '@vitest/coverage-istanbul': 4.1.11 + '@vitest/coverage-v8': 4.1.11 + '@vitest/ui': 4.1.11 happy-dom: '*' jsdom: '*' vite: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -3389,7 +3389,7 @@ snapshots: '@babel/runtime@7.29.7': {} - '@bufbuild/protobuf@2.13.0': {} + '@bufbuild/protobuf@2.14.0': {} '@chialab/estransform@0.19.1': dependencies: @@ -3403,20 +3403,20 @@ snapshots: dependencies: '@codemirror/language': 6.12.4 '@codemirror/state': 6.7.1 - '@codemirror/view': 6.43.7 + '@codemirror/view': 6.43.9 '@lezer/common': 1.5.2 - '@codemirror/commands@6.10.4': + '@codemirror/commands@6.11.0': dependencies: '@codemirror/language': 6.12.4 '@codemirror/state': 6.7.1 - '@codemirror/view': 6.43.7 + '@codemirror/view': 6.43.9 '@lezer/common': 1.5.2 '@codemirror/language@6.12.4': dependencies: '@codemirror/state': 6.7.1 - '@codemirror/view': 6.43.7 + '@codemirror/view': 6.43.9 '@lezer/common': 1.5.2 '@lezer/highlight': 1.2.3 '@lezer/lr': 1.4.10 @@ -3425,20 +3425,20 @@ snapshots: '@codemirror/lint@6.9.7': dependencies: '@codemirror/state': 6.7.1 - '@codemirror/view': 6.43.7 + '@codemirror/view': 6.43.9 crelt: 1.0.7 '@codemirror/search@6.7.1': dependencies: '@codemirror/state': 6.7.1 - '@codemirror/view': 6.43.7 + '@codemirror/view': 6.43.9 crelt: 1.0.7 '@codemirror/state@6.7.1': dependencies: - '@marijn/find-cluster-break': 1.0.3 + '@marijn/find-cluster-break': 1.0.4 - '@codemirror/view@6.43.7': + '@codemirror/view@6.43.9': dependencies: '@codemirror/state': 6.7.1 crelt: 1.0.7 @@ -3455,7 +3455,7 @@ snapshots: '@cspell/dict-aws': 4.0.17 '@cspell/dict-bash': 4.2.3 '@cspell/dict-companies': 3.2.12 - '@cspell/dict-cpp': 7.0.2 + '@cspell/dict-cpp': 7.1.0 '@cspell/dict-cryptocurrencies': 5.0.5 '@cspell/dict-csharp': 4.0.8 '@cspell/dict-css': 4.1.2 @@ -3465,7 +3465,7 @@ snapshots: '@cspell/dict-docker': 1.1.17 '@cspell/dict-dotnet': 5.0.13 '@cspell/dict-elixir': 4.0.8 - '@cspell/dict-en-common-misspellings': 2.1.13 + '@cspell/dict-en-common-misspellings': 2.2.0 '@cspell/dict-en-gb-mit': 3.1.25 '@cspell/dict-en_us': 4.4.36 '@cspell/dict-filetypes': 3.0.18 @@ -3475,10 +3475,10 @@ snapshots: '@cspell/dict-fullstack': 3.2.9 '@cspell/dict-gaming-terms': 1.1.2 '@cspell/dict-git': 3.1.0 - '@cspell/dict-golang': 6.0.26 + '@cspell/dict-golang': 6.0.27 '@cspell/dict-google': 1.0.9 '@cspell/dict-haskell': 4.0.6 - '@cspell/dict-html': 4.0.15 + '@cspell/dict-html': 4.0.16 '@cspell/dict-html-symbol-entities': 4.0.5 '@cspell/dict-java': 5.0.12 '@cspell/dict-julia': 1.1.1 @@ -3488,20 +3488,20 @@ snapshots: '@cspell/dict-lorem-ipsum': 4.0.5 '@cspell/dict-lua': 4.0.8 '@cspell/dict-makefile': 1.0.5 - '@cspell/dict-markdown': 2.0.17(@cspell/dict-css@4.1.2)(@cspell/dict-html-symbol-entities@4.0.5)(@cspell/dict-html@4.0.15)(@cspell/dict-typescript@3.2.3) - '@cspell/dict-monkeyc': 1.0.12 + '@cspell/dict-markdown': 2.0.18(@cspell/dict-css@4.1.2)(@cspell/dict-html-symbol-entities@4.0.5)(@cspell/dict-html@4.0.16)(@cspell/dict-typescript@3.2.3) + '@cspell/dict-monkeyc': 1.1.0 '@cspell/dict-node': 5.0.9 - '@cspell/dict-npm': 5.2.43 + '@cspell/dict-npm': 5.2.46 '@cspell/dict-php': 4.1.1 '@cspell/dict-powershell': 5.0.15 '@cspell/dict-public-licenses': 2.0.16 - '@cspell/dict-python': 4.2.29 + '@cspell/dict-python': 4.4.0 '@cspell/dict-r': 2.1.1 - '@cspell/dict-ruby': 5.1.1 + '@cspell/dict-ruby': 5.1.2 '@cspell/dict-rust': 4.1.2 '@cspell/dict-scala': 5.0.9 '@cspell/dict-shell': 1.2.0 - '@cspell/dict-software-terms': 5.2.4 + '@cspell/dict-software-terms': 5.4.1 '@cspell/dict-sql': 2.2.1 '@cspell/dict-svelte': 1.0.7 '@cspell/dict-swift': 2.0.6 @@ -3542,7 +3542,7 @@ snapshots: '@cspell/dict-companies@3.2.12': {} - '@cspell/dict-cpp@7.0.2': {} + '@cspell/dict-cpp@7.1.0': {} '@cspell/dict-cryptocurrencies@5.0.5': {} @@ -3562,7 +3562,7 @@ snapshots: '@cspell/dict-elixir@4.0.8': {} - '@cspell/dict-en-common-misspellings@2.1.13': {} + '@cspell/dict-en-common-misspellings@2.2.0': {} '@cspell/dict-en-gb-mit@3.1.25': {} @@ -3582,7 +3582,7 @@ snapshots: '@cspell/dict-git@3.1.0': {} - '@cspell/dict-golang@6.0.26': {} + '@cspell/dict-golang@6.0.27': {} '@cspell/dict-google@1.0.9': {} @@ -3590,7 +3590,7 @@ snapshots: '@cspell/dict-html-symbol-entities@4.0.5': {} - '@cspell/dict-html@4.0.15': {} + '@cspell/dict-html@4.0.16': {} '@cspell/dict-java@5.0.12': {} @@ -3608,18 +3608,18 @@ snapshots: '@cspell/dict-makefile@1.0.5': {} - '@cspell/dict-markdown@2.0.17(@cspell/dict-css@4.1.2)(@cspell/dict-html-symbol-entities@4.0.5)(@cspell/dict-html@4.0.15)(@cspell/dict-typescript@3.2.3)': + '@cspell/dict-markdown@2.0.18(@cspell/dict-css@4.1.2)(@cspell/dict-html-symbol-entities@4.0.5)(@cspell/dict-html@4.0.16)(@cspell/dict-typescript@3.2.3)': dependencies: '@cspell/dict-css': 4.1.2 - '@cspell/dict-html': 4.0.15 + '@cspell/dict-html': 4.0.16 '@cspell/dict-html-symbol-entities': 4.0.5 '@cspell/dict-typescript': 3.2.3 - '@cspell/dict-monkeyc@1.0.12': {} + '@cspell/dict-monkeyc@1.1.0': {} '@cspell/dict-node@5.0.9': {} - '@cspell/dict-npm@5.2.43': {} + '@cspell/dict-npm@5.2.46': {} '@cspell/dict-php@4.1.1': {} @@ -3627,13 +3627,13 @@ snapshots: '@cspell/dict-public-licenses@2.0.16': {} - '@cspell/dict-python@4.2.29': + '@cspell/dict-python@4.4.0': dependencies: '@cspell/dict-data-science': 2.0.16 '@cspell/dict-r@2.1.1': {} - '@cspell/dict-ruby@5.1.1': {} + '@cspell/dict-ruby@5.1.2': {} '@cspell/dict-rust@4.1.2': {} @@ -3641,7 +3641,7 @@ snapshots: '@cspell/dict-shell@1.2.0': {} - '@cspell/dict-software-terms@5.2.4': {} + '@cspell/dict-software-terms@5.4.1': {} '@cspell/dict-sql@2.2.1': {} @@ -3675,16 +3675,16 @@ snapshots: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/color-helpers@6.1.0': {} + '@csstools/color-helpers@6.1.1': {} '@csstools/css-calc@3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/css-color-parser@4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)': + '@csstools/css-color-parser@4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)': dependencies: - '@csstools/color-helpers': 6.1.0 + '@csstools/color-helpers': 6.1.1 '@csstools/css-calc': 3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 @@ -3700,54 +3700,54 @@ snapshots: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-alpha-function@2.0.8(postcss@8.5.26)': + '@csstools/postcss-alpha-function@2.0.9(postcss@8.5.26)': dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 '@csstools/postcss-cascade-layers@6.0.0(postcss@8.5.26)': dependencies: - '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.4) + '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.5) postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 - '@csstools/postcss-color-function-display-p3-linear@2.0.7(postcss@8.5.26)': + '@csstools/postcss-color-function-display-p3-linear@2.0.8(postcss@8.5.26)': dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 - '@csstools/postcss-color-function@5.0.7(postcss@8.5.26)': + '@csstools/postcss-color-function@5.0.8(postcss@8.5.26)': dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 - '@csstools/postcss-color-mix-function@4.0.7(postcss@8.5.26)': + '@csstools/postcss-color-mix-function@4.0.8(postcss@8.5.26)': dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 - '@csstools/postcss-color-mix-variadic-function-arguments@2.0.7(postcss@8.5.26)': + '@csstools/postcss-color-mix-variadic-function-arguments@2.0.8(postcss@8.5.26)': dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 @@ -3757,20 +3757,20 @@ snapshots: '@csstools/css-tokenizer': 4.0.0 postcss: 8.5.26 - '@csstools/postcss-content-alt-text@3.0.2(postcss@8.5.26)': + '@csstools/postcss-content-alt-text@3.0.3(postcss@8.5.26)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 - '@csstools/postcss-contrast-color-function@3.0.7(postcss@8.5.26)': + '@csstools/postcss-contrast-color-function@3.0.8(postcss@8.5.26)': dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 @@ -3792,43 +3792,43 @@ snapshots: '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 - '@csstools/postcss-gamut-mapping@3.0.7(postcss@8.5.26)': + '@csstools/postcss-gamut-mapping@3.0.8(postcss@8.5.26)': dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 postcss: 8.5.26 - '@csstools/postcss-gradients-interpolation-method@6.0.7(postcss@8.5.26)': + '@csstools/postcss-gradients-interpolation-method@6.0.8(postcss@8.5.26)': dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 - '@csstools/postcss-hwb-function@5.0.7(postcss@8.5.26)': + '@csstools/postcss-hwb-function@5.0.8(postcss@8.5.26)': dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 - '@csstools/postcss-ic-unit@5.0.2(postcss@8.5.26)': + '@csstools/postcss-ic-unit@5.0.3(postcss@8.5.26)': dependencies: - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 postcss-value-parser: 4.2.0 - '@csstools/postcss-image-function@1.0.1(postcss@8.5.26)': + '@csstools/postcss-image-function@1.0.2(postcss@8.5.26)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 @@ -3838,15 +3838,15 @@ snapshots: '@csstools/postcss-is-pseudo-class@6.0.0(postcss@8.5.26)': dependencies: - '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.4) + '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.5) postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 - '@csstools/postcss-light-dark-function@3.0.2(postcss@8.5.26)': + '@csstools/postcss-light-dark-function@3.0.3(postcss@8.5.26)': dependencies: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 @@ -3905,12 +3905,12 @@ snapshots: postcss: 8.5.26 postcss-value-parser: 4.2.0 - '@csstools/postcss-oklab-function@5.0.7(postcss@8.5.26)': + '@csstools/postcss-oklab-function@5.0.8(postcss@8.5.26)': dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 @@ -3918,7 +3918,7 @@ snapshots: dependencies: postcss: 8.5.26 - '@csstools/postcss-progressive-custom-properties@5.1.1(postcss@8.5.26)': + '@csstools/postcss-progressive-custom-properties@5.1.2(postcss@8.5.26)': dependencies: postcss: 8.5.26 postcss-value-parser: 4.2.0 @@ -3929,26 +3929,26 @@ snapshots: '@csstools/css-tokenizer': 4.0.0 postcss: 8.5.26 - '@csstools/postcss-random-function@3.0.3(postcss@8.5.26)': + '@csstools/postcss-random-function@4.0.0(postcss@8.5.26)': dependencies: '@csstools/css-calc': 3.3.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 postcss: 8.5.26 - '@csstools/postcss-relative-color-syntax@4.0.7(postcss@8.5.26)': + '@csstools/postcss-relative-color-syntax@4.0.8(postcss@8.5.26)': dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 '@csstools/postcss-scope-pseudo-class@5.0.0(postcss@8.5.26)': dependencies: postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 '@csstools/postcss-sign-functions@2.0.4(postcss@8.5.26)': dependencies: @@ -3975,9 +3975,9 @@ snapshots: '@csstools/css-tokenizer': 4.0.0 postcss: 8.5.26 - '@csstools/postcss-text-decoration-shorthand@5.0.4(postcss@8.5.26)': + '@csstools/postcss-text-decoration-shorthand@5.0.5(postcss@8.5.26)': dependencies: - '@csstools/color-helpers': 6.1.0 + '@csstools/color-helpers': 6.1.1 postcss: 8.5.26 postcss-value-parser: 4.2.0 @@ -3992,13 +3992,13 @@ snapshots: dependencies: postcss: 8.5.26 - '@csstools/selector-resolve-nested@4.0.1(postcss-selector-parser@7.1.4)': + '@csstools/selector-resolve-nested@4.0.1(postcss-selector-parser@7.1.5)': dependencies: - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 - '@csstools/selector-specificity@6.0.0(postcss-selector-parser@7.1.4)': + '@csstools/selector-specificity@6.0.0(postcss-selector-parser@7.1.5)': dependencies: - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 '@csstools/utilities@3.0.0(postcss@8.5.26)': dependencies: @@ -4135,7 +4135,7 @@ snapshots: '@luxass/strip-json-comments@2.0.1': {} - '@marijn/find-cluster-break@1.0.3': {} + '@marijn/find-cluster-break@1.0.4': {} '@marko/compiler@5.42.3': dependencies: @@ -4153,16 +4153,16 @@ snapshots: self-closing-tags: 1.0.1 source-map-support: 0.5.21 - '@marko/language-tools@2.6.8': + '@marko/language-tools@2.7.0': dependencies: '@luxass/strip-json-comments': 1.4.0 '@marko/compiler': 5.42.3 htmljs-parser: 5.15.0 relative-import-path: 1.0.1 - '@marko/run-adapter-static@2.0.10(@marko/run@0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))(supports-color@10.2.2)': + '@marko/run-adapter-static@2.0.10(@marko/run@0.11.12(@types/node@26.2.0)(esbuild@0.27.7)(marko@6.3.45)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0))(supports-color@10.2.2)': dependencies: - '@marko/run': 0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + '@marko/run': 0.11.12(@types/node@26.2.0)(esbuild@0.27.7)(marko@6.3.45)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0) compression: 1.8.1(supports-color@10.2.2) htmlparser2: 10.1.0 kleur: 4.1.5 @@ -4171,15 +4171,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@marko/run-explorer@2.0.5(@marko/run@0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))': + '@marko/run-explorer@2.0.5(@marko/run@0.11.12(@types/node@26.2.0)(esbuild@0.27.7)(marko@6.3.45)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0))': dependencies: - '@marko/run': 0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + '@marko/run': 0.11.12(@types/node@26.2.0)(esbuild@0.27.7)(marko@6.3.45)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0) - '@marko/run@0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)': + '@marko/run@0.11.12(@types/node@26.2.0)(esbuild@0.27.7)(marko@6.3.45)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0)': dependencies: '@marko/compiler': 5.42.3 - '@marko/run-explorer': 2.0.5(@marko/run@0.11.12(@types/node@26.1.2)(esbuild@0.27.7)(marko@6.3.35)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)) - '@marko/vite': 6.1.11(@marko/compiler@5.42.3)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)) + '@marko/run-explorer': 2.0.5(@marko/run@0.11.12(@types/node@26.2.0)(esbuild@0.27.7)(marko@6.3.45)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0)) + '@marko/vite': 6.1.11(@marko/compiler@5.42.3)(vite@8.2.2(@types/node@26.2.0)(esbuild@0.27.7)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0)) '@oxc-project/types': 0.136.0 '@remix-run/form-data-parser': 0.17.5 '@standard-schema/spec': 1.1.0 @@ -4193,13 +4193,13 @@ snapshots: glob: 13.0.6 human-format: 1.2.1 kleur: 4.1.5 - marko: 6.3.35 + marko: 6.3.45 parse-node-args: 1.1.3 rolldown: 1.2.5 sade: 1.8.1 serve-static: 2.2.1(supports-color@10.2.2) supports-color: 10.2.2 - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + vite: 8.2.2(@types/node@26.2.0)(esbuild@0.27.7)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0) warp10: 2.1.0 transitivePeerDependencies: - '@types/node' @@ -4215,16 +4215,16 @@ snapshots: - tsx - yaml - '@marko/type-check@3.1.6': + '@marko/type-check@3.2.0': dependencies: '@luxass/strip-json-comments': 1.4.0 '@marko/compiler': 5.42.3 - '@marko/language-tools': 2.6.8 + '@marko/language-tools': 2.7.0 arg: 5.0.2 kleur: 4.1.5 typescript: 6.0.3 - '@marko/vite@6.1.11(@marko/compiler@5.42.3)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))': + '@marko/vite@6.1.11(@marko/compiler@5.42.3)(vite@8.2.2(@types/node@26.2.0)(esbuild@0.27.7)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0))': dependencies: '@chialab/estransform': 0.19.1 '@marko/compiler': 5.42.3 @@ -4237,7 +4237,7 @@ snapshots: relative-import-path: 1.0.1 resolve-sync: 1.2.2 resolve.exports: 2.0.3 - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + vite: 8.2.2(@types/node@26.2.0)(esbuild@0.27.7)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0) '@napi-rs/magic-string-android-arm-eabi@0.3.4': optional: true @@ -4509,44 +4509,44 @@ snapshots: '@rolldown/pluginutils@1.0.1': {} - '@rollup/browser@4.62.3': + '@rollup/browser@4.62.5': dependencies: '@types/estree': 1.0.9 - '@shikijs/core@4.3.1': + '@shikijs/core@4.4.3': dependencies: - '@shikijs/primitive': 4.3.1 - '@shikijs/types': 4.3.1 + '@shikijs/primitive': 4.4.3 + '@shikijs/types': 4.4.3 '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.5 hast-util-to-html: 9.0.5 - '@shikijs/engine-javascript@4.3.1': + '@shikijs/engine-javascript@4.4.3': dependencies: - '@shikijs/types': 4.3.1 + '@shikijs/types': 4.4.3 '@shikijs/vscode-textmate': 10.0.2 oniguruma-to-es: 4.3.6 - '@shikijs/engine-oniguruma@4.3.1': + '@shikijs/engine-oniguruma@4.4.3': dependencies: - '@shikijs/types': 4.3.1 + '@shikijs/types': 4.4.3 '@shikijs/vscode-textmate': 10.0.2 - '@shikijs/langs@4.3.1': + '@shikijs/langs@4.4.3': dependencies: - '@shikijs/types': 4.3.1 + '@shikijs/types': 4.4.3 - '@shikijs/primitive@4.3.1': + '@shikijs/primitive@4.4.3': dependencies: - '@shikijs/types': 4.3.1 + '@shikijs/types': 4.4.3 '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.5 - '@shikijs/themes@4.3.1': + '@shikijs/themes@4.4.3': dependencies: - '@shikijs/types': 4.3.1 + '@shikijs/types': 4.4.3 - '@shikijs/types@4.3.1': + '@shikijs/types@4.4.3': dependencies: '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.5 @@ -4555,7 +4555,7 @@ snapshots: '@shuding/opentype.js@1.4.0-beta.0': dependencies: - fflate: 0.7.5 + fflate: 0.7.3 string.prototype.codepointat: 0.2.1 '@sinclair/typebox@0.34.52': {} @@ -4591,11 +4591,11 @@ snapshots: '@types/ms@2.1.0': {} - '@types/node@26.1.2': + '@types/node@26.2.0': dependencies: undici-types: 8.3.0 - '@types/semver@7.7.1': {} + '@types/semver@7.8.0': {} '@types/unist@2.0.11': {} @@ -4603,52 +4603,52 @@ snapshots: '@ungap/structured-clone@1.3.3': {} - '@vitest/expect@4.1.10': + '@vitest/expect@4.1.11': dependencies: '@standard-schema/spec': 1.1.0 '@types/chai': 5.2.3 - '@vitest/spy': 4.1.10 - '@vitest/utils': 4.1.10 + '@vitest/spy': 4.1.11 + '@vitest/utils': 4.1.11 chai: 6.2.2 tinyrainbow: 3.1.1 - '@vitest/mocker@4.1.10(vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0))': + '@vitest/mocker@4.1.11(vite@8.2.2(@types/node@26.2.0)(esbuild@0.27.7)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0))': dependencies: - '@vitest/spy': 4.1.10 + '@vitest/spy': 4.1.11 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + vite: 8.2.2(@types/node@26.2.0)(esbuild@0.27.7)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0) - '@vitest/pretty-format@4.1.10': + '@vitest/pretty-format@4.1.11': dependencies: tinyrainbow: 3.1.1 - '@vitest/runner@4.1.10': + '@vitest/runner@4.1.11': dependencies: - '@vitest/utils': 4.1.10 + '@vitest/utils': 4.1.11 pathe: 2.0.3 - '@vitest/snapshot@4.1.10': + '@vitest/snapshot@4.1.11': dependencies: - '@vitest/pretty-format': 4.1.10 - '@vitest/utils': 4.1.10 + '@vitest/pretty-format': 4.1.11 + '@vitest/utils': 4.1.11 magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/spy@4.1.10': {} + '@vitest/spy@4.1.11': {} - '@vitest/utils@4.1.10': + '@vitest/utils@4.1.11': dependencies: - '@vitest/pretty-format': 4.1.10 + '@vitest/pretty-format': 4.1.11 convert-source-map: 2.0.0 tinyrainbow: 3.1.1 - acorn@8.17.0: {} + acorn@8.18.0: {} ansi-regex@5.0.1: {} - ansi-regex@6.2.2: {} + ansi-regex@6.3.0: {} ansi-styles@5.2.0: {} @@ -4684,7 +4684,7 @@ snapshots: baseline-browser-mapping@2.11.17: {} - brace-expansion@5.0.8: + brace-expansion@5.0.9: dependencies: balanced-match: 4.0.4 @@ -4742,16 +4742,16 @@ snapshots: codemirror@6.0.2: dependencies: '@codemirror/autocomplete': 6.20.3 - '@codemirror/commands': 6.10.4 + '@codemirror/commands': 6.11.0 '@codemirror/language': 6.12.4 '@codemirror/lint': 6.9.7 '@codemirror/search': 6.7.1 '@codemirror/state': 6.7.1 - '@codemirror/view': 6.43.7 + '@codemirror/view': 6.43.9 color-name@1.1.4: {} - colorjs.io@0.5.2: {} + colorjs.io@0.7.1: {} comma-separated-tokens@2.0.3: {} @@ -4800,7 +4800,7 @@ snapshots: dependencies: '@cspell/cspell-types': 10.0.1 comment-json: 5.0.0 - smol-toml: 1.7.1 + smol-toml: 1.8.0 yaml: 2.9.0 cspell-dictionary@10.0.1: @@ -4871,7 +4871,7 @@ snapshots: '@cspell/cspell-worker': 10.0.1 '@cspell/dynamic-import': 10.0.1 '@cspell/url': 10.0.1 - ansi-regex: 6.2.2 + ansi-regex: 6.3.0 chalk: 5.6.2 chalk-template: 1.1.2 commander: 14.0.3 @@ -4882,7 +4882,7 @@ snapshots: cspell-io: 10.0.1 cspell-lib: 10.0.1 fast-json-stable-stringify: 2.1.0 - flatted: 3.4.3 + flatted: 3.4.4 semver: 7.8.5 tinyglobby: 0.2.17 @@ -4891,7 +4891,7 @@ snapshots: css-blank-pseudo@8.0.2(postcss@8.5.26): dependencies: postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 css-box-shadow@1.0.0-3: {} @@ -4901,9 +4901,9 @@ snapshots: css-has-pseudo@8.0.1(postcss@8.5.26): dependencies: - '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.4) + '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.5) postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 postcss-value-parser: 4.2.0 css-prefers-color-scheme@11.0.1(postcss@8.5.26): @@ -4916,7 +4916,7 @@ snapshots: css-color-keywords: 1.0.0 postcss-value-parser: 4.2.0 - cssdb@8.9.0: {} + cssdb@8.10.0: {} cssesc@3.0.0: {} @@ -5010,7 +5010,7 @@ snapshots: es-module-lexer@1.7.0: {} - es-module-lexer@2.3.1: {} + es-module-lexer@2.3.2: {} esbuild-plugin-browserslist@2.0.0(browserslist@4.28.8)(esbuild@0.27.7)(supports-color@10.2.2): dependencies: @@ -5088,7 +5088,7 @@ snapshots: optionalDependencies: picomatch: 4.0.5 - fflate@0.7.5: {} + fflate@0.7.3: {} filename-reserved-regex@2.0.0: {} @@ -5113,7 +5113,7 @@ snapshots: locate-path: 5.0.0 path-exists: 4.0.0 - flatted@3.4.3: {} + flatted@3.4.4: {} flexsearch@0.8.212: {} @@ -5281,7 +5281,7 @@ snapshots: is-safe-filename@0.1.1: {} - js-yaml@5.2.2: + js-yaml@5.2.3: dependencies: argparse: 2.0.1 @@ -5401,14 +5401,14 @@ snapshots: commander: 15.0.0 deep-extend: 0.6.0 ignore: 7.0.6 - js-yaml: 5.2.2 + js-yaml: 5.2.3 jsonc-parser: 3.3.1 jsonpointer: 5.0.1 markdown-it: 14.3.0 markdownlint: 0.41.1(supports-color@10.2.2) minimatch: 10.2.6 run-con: 1.3.3 - smol-toml: 1.7.1 + smol-toml: 1.7.2 tinyglobby: 0.2.17 transitivePeerDependencies: - supports-color @@ -5427,9 +5427,9 @@ snapshots: transitivePeerDependencies: - supports-color - marked@18.0.7: {} + marked@18.0.10: {} - marko@6.3.35: + marko@6.3.45: dependencies: '@marko/compiler': 5.42.3 csstype: 3.2.3 @@ -5637,7 +5637,7 @@ snapshots: minimatch@10.2.6: dependencies: - brace-expansion: 5.0.8 + brace-expansion: 5.0.9 minimist@1.2.8: {} @@ -5743,8 +5743,6 @@ snapshots: picomatch@4.0.5: {} - pify@2.3.0: {} - pkg-dir@4.2.0: dependencies: find-up: 4.1.0 @@ -5752,19 +5750,19 @@ snapshots: postcss-attribute-case-insensitive@8.0.0(postcss@8.5.26): dependencies: postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 postcss-clamp@4.1.0(postcss@8.5.26): dependencies: postcss: 8.5.26 postcss-value-parser: 4.2.0 - postcss-color-functional-notation@8.0.7(postcss@8.5.26): + postcss-color-functional-notation@8.0.8(postcss@8.5.26): dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 @@ -5803,16 +5801,16 @@ snapshots: '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 postcss-dir-pseudo-class@10.0.0(postcss@8.5.26): dependencies: postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 - postcss-double-position-gradients@7.0.2(postcss@8.5.26): + postcss-double-position-gradients@7.0.3(postcss@8.5.26): dependencies: - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 postcss-value-parser: 4.2.0 @@ -5820,12 +5818,12 @@ snapshots: postcss-focus-visible@11.0.0(postcss@8.5.26): dependencies: postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 postcss-focus-within@10.0.1(postcss@8.5.26): dependencies: postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 postcss-font-variant@5.0.0(postcss@8.5.26): dependencies: @@ -5841,19 +5839,19 @@ snapshots: postcss: 8.5.26 postcss-value-parser: 4.2.0 - postcss-import@16.1.1(postcss@8.5.26): + postcss-import@16.2.0(postcss@8.5.26): dependencies: postcss: 8.5.26 postcss-value-parser: 4.2.0 - read-cache: 1.0.0 + read-cache: 1.0.2 resolve: 1.22.12 - postcss-lab-function@8.0.7(postcss@8.5.26): + postcss-lab-function@8.0.8(postcss@8.5.26): dependencies: - '@csstools/css-color-parser': 4.1.10(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) + '@csstools/css-color-parser': 4.2.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0) '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0) '@csstools/css-tokenizer': 4.0.0 - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/utilities': 3.0.0(postcss@8.5.26) postcss: 8.5.26 @@ -5864,10 +5862,10 @@ snapshots: postcss-nesting@14.0.1(postcss@8.5.26): dependencies: - '@csstools/selector-resolve-nested': 4.0.1(postcss-selector-parser@7.1.4) - '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.4) + '@csstools/selector-resolve-nested': 4.0.1(postcss-selector-parser@7.1.5) + '@csstools/selector-specificity': 6.0.0(postcss-selector-parser@7.1.5) postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 postcss-opacity-percentage@3.0.0(postcss@8.5.26): dependencies: @@ -5887,28 +5885,28 @@ snapshots: postcss: 8.5.26 postcss-value-parser: 4.2.0 - postcss-preset-env@11.3.2(postcss@8.5.26): + postcss-preset-env@11.4.0(postcss@8.5.26): dependencies: - '@csstools/postcss-alpha-function': 2.0.8(postcss@8.5.26) + '@csstools/postcss-alpha-function': 2.0.9(postcss@8.5.26) '@csstools/postcss-cascade-layers': 6.0.0(postcss@8.5.26) - '@csstools/postcss-color-function': 5.0.7(postcss@8.5.26) - '@csstools/postcss-color-function-display-p3-linear': 2.0.7(postcss@8.5.26) - '@csstools/postcss-color-mix-function': 4.0.7(postcss@8.5.26) - '@csstools/postcss-color-mix-variadic-function-arguments': 2.0.7(postcss@8.5.26) + '@csstools/postcss-color-function': 5.0.8(postcss@8.5.26) + '@csstools/postcss-color-function-display-p3-linear': 2.0.8(postcss@8.5.26) + '@csstools/postcss-color-mix-function': 4.0.8(postcss@8.5.26) + '@csstools/postcss-color-mix-variadic-function-arguments': 2.0.8(postcss@8.5.26) '@csstools/postcss-container-rule-prelude-list': 1.0.1(postcss@8.5.26) - '@csstools/postcss-content-alt-text': 3.0.2(postcss@8.5.26) - '@csstools/postcss-contrast-color-function': 3.0.7(postcss@8.5.26) + '@csstools/postcss-content-alt-text': 3.0.3(postcss@8.5.26) + '@csstools/postcss-contrast-color-function': 3.0.8(postcss@8.5.26) '@csstools/postcss-exponential-functions': 3.0.4(postcss@8.5.26) '@csstools/postcss-font-format-keywords': 5.0.0(postcss@8.5.26) '@csstools/postcss-font-width-property': 1.0.0(postcss@8.5.26) - '@csstools/postcss-gamut-mapping': 3.0.7(postcss@8.5.26) - '@csstools/postcss-gradients-interpolation-method': 6.0.7(postcss@8.5.26) - '@csstools/postcss-hwb-function': 5.0.7(postcss@8.5.26) - '@csstools/postcss-ic-unit': 5.0.2(postcss@8.5.26) - '@csstools/postcss-image-function': 1.0.1(postcss@8.5.26) + '@csstools/postcss-gamut-mapping': 3.0.8(postcss@8.5.26) + '@csstools/postcss-gradients-interpolation-method': 6.0.8(postcss@8.5.26) + '@csstools/postcss-hwb-function': 5.0.8(postcss@8.5.26) + '@csstools/postcss-ic-unit': 5.0.3(postcss@8.5.26) + '@csstools/postcss-image-function': 1.0.2(postcss@8.5.26) '@csstools/postcss-initial': 3.0.0(postcss@8.5.26) '@csstools/postcss-is-pseudo-class': 6.0.0(postcss@8.5.26) - '@csstools/postcss-light-dark-function': 3.0.2(postcss@8.5.26) + '@csstools/postcss-light-dark-function': 3.0.3(postcss@8.5.26) '@csstools/postcss-logical-float-and-clear': 4.0.0(postcss@8.5.26) '@csstools/postcss-logical-overflow': 3.0.0(postcss@8.5.26) '@csstools/postcss-logical-overscroll-behavior': 3.0.0(postcss@8.5.26) @@ -5919,18 +5917,18 @@ snapshots: '@csstools/postcss-mixins': 1.0.0(postcss@8.5.26) '@csstools/postcss-nested-calc': 5.0.0(postcss@8.5.26) '@csstools/postcss-normalize-display-values': 5.0.1(postcss@8.5.26) - '@csstools/postcss-oklab-function': 5.0.7(postcss@8.5.26) + '@csstools/postcss-oklab-function': 5.0.8(postcss@8.5.26) '@csstools/postcss-position-area-property': 2.0.0(postcss@8.5.26) - '@csstools/postcss-progressive-custom-properties': 5.1.1(postcss@8.5.26) + '@csstools/postcss-progressive-custom-properties': 5.1.2(postcss@8.5.26) '@csstools/postcss-property-rule-prelude-list': 2.0.0(postcss@8.5.26) - '@csstools/postcss-random-function': 3.0.3(postcss@8.5.26) - '@csstools/postcss-relative-color-syntax': 4.0.7(postcss@8.5.26) + '@csstools/postcss-random-function': 4.0.0(postcss@8.5.26) + '@csstools/postcss-relative-color-syntax': 4.0.8(postcss@8.5.26) '@csstools/postcss-scope-pseudo-class': 5.0.0(postcss@8.5.26) '@csstools/postcss-sign-functions': 2.0.4(postcss@8.5.26) '@csstools/postcss-stepped-value-functions': 5.0.4(postcss@8.5.26) '@csstools/postcss-syntax-descriptor-syntax-production': 2.0.0(postcss@8.5.26) '@csstools/postcss-system-ui-font-family': 2.0.0(postcss@8.5.26) - '@csstools/postcss-text-decoration-shorthand': 5.0.4(postcss@8.5.26) + '@csstools/postcss-text-decoration-shorthand': 5.0.5(postcss@8.5.26) '@csstools/postcss-trigonometric-functions': 5.0.4(postcss@8.5.26) '@csstools/postcss-unset-value': 5.0.0(postcss@8.5.26) autoprefixer: 10.5.4(postcss@8.5.26) @@ -5938,24 +5936,24 @@ snapshots: css-blank-pseudo: 8.0.2(postcss@8.5.26) css-has-pseudo: 8.0.1(postcss@8.5.26) css-prefers-color-scheme: 11.0.1(postcss@8.5.26) - cssdb: 8.9.0 + cssdb: 8.10.0 postcss: 8.5.26 postcss-attribute-case-insensitive: 8.0.0(postcss@8.5.26) postcss-clamp: 4.1.0(postcss@8.5.26) - postcss-color-functional-notation: 8.0.7(postcss@8.5.26) + postcss-color-functional-notation: 8.0.8(postcss@8.5.26) postcss-color-hex-alpha: 11.0.0(postcss@8.5.26) postcss-color-rebeccapurple: 11.0.0(postcss@8.5.26) postcss-custom-media: 12.0.1(postcss@8.5.26) postcss-custom-properties: 15.0.1(postcss@8.5.26) postcss-custom-selectors: 9.0.1(postcss@8.5.26) postcss-dir-pseudo-class: 10.0.0(postcss@8.5.26) - postcss-double-position-gradients: 7.0.2(postcss@8.5.26) + postcss-double-position-gradients: 7.0.3(postcss@8.5.26) postcss-focus-visible: 11.0.0(postcss@8.5.26) postcss-focus-within: 10.0.1(postcss@8.5.26) postcss-font-variant: 5.0.0(postcss@8.5.26) postcss-gap-properties: 7.0.0(postcss@8.5.26) postcss-image-set-function: 8.0.0(postcss@8.5.26) - postcss-lab-function: 8.0.7(postcss@8.5.26) + postcss-lab-function: 8.0.8(postcss@8.5.26) postcss-logical: 9.0.0(postcss@8.5.26) postcss-nesting: 14.0.1(postcss@8.5.26) postcss-opacity-percentage: 3.0.0(postcss@8.5.26) @@ -5969,7 +5967,7 @@ snapshots: postcss-pseudo-class-any-link@11.0.0(postcss@8.5.26): dependencies: postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 postcss-replace-overflow-wrap@4.0.0(postcss@8.5.26): dependencies: @@ -5978,9 +5976,9 @@ snapshots: postcss-selector-not@9.0.0(postcss@8.5.26): dependencies: postcss: 8.5.26 - postcss-selector-parser: 7.1.4 + postcss-selector-parser: 7.1.5 - postcss-selector-parser@7.1.4: + postcss-selector-parser@7.1.5: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 @@ -6030,9 +6028,7 @@ snapshots: react-is@19.2.8: {} - read-cache@1.0.0: - dependencies: - pify: 2.3.0 + read-cache@1.0.2: {} readdirp@5.0.0: optional: true @@ -6108,94 +6104,94 @@ snapshots: safe-buffer@5.2.1: {} - sass-embedded-all-unknown@1.100.0: + sass-embedded-all-unknown@1.103.1: dependencies: - sass: 1.100.0 + sass: 1.103.1 optional: true - sass-embedded-android-arm64@1.100.0: + sass-embedded-android-arm64@1.103.1: optional: true - sass-embedded-android-arm@1.100.0: + sass-embedded-android-arm@1.103.1: optional: true - sass-embedded-android-riscv64@1.100.0: + sass-embedded-android-riscv64@1.103.1: optional: true - sass-embedded-android-x64@1.100.0: + sass-embedded-android-x64@1.103.1: optional: true - sass-embedded-darwin-arm64@1.100.0: + sass-embedded-darwin-arm64@1.103.1: optional: true - sass-embedded-darwin-x64@1.100.0: + sass-embedded-darwin-x64@1.103.1: optional: true - sass-embedded-linux-arm64@1.100.0: + sass-embedded-linux-arm64@1.103.1: optional: true - sass-embedded-linux-arm@1.100.0: + sass-embedded-linux-arm@1.103.1: optional: true - sass-embedded-linux-musl-arm64@1.100.0: + sass-embedded-linux-musl-arm64@1.103.1: optional: true - sass-embedded-linux-musl-arm@1.100.0: + sass-embedded-linux-musl-arm@1.103.1: optional: true - sass-embedded-linux-musl-riscv64@1.100.0: + sass-embedded-linux-musl-riscv64@1.103.1: optional: true - sass-embedded-linux-musl-x64@1.100.0: + sass-embedded-linux-musl-x64@1.103.1: optional: true - sass-embedded-linux-riscv64@1.100.0: + sass-embedded-linux-riscv64@1.103.1: optional: true - sass-embedded-linux-x64@1.100.0: + sass-embedded-linux-x64@1.103.1: optional: true - sass-embedded-unknown-all@1.100.0: + sass-embedded-unknown-all@1.103.1: dependencies: - sass: 1.100.0 + sass: 1.103.1 optional: true - sass-embedded-win32-arm64@1.100.0: + sass-embedded-win32-arm64@1.103.1: optional: true - sass-embedded-win32-x64@1.100.0: + sass-embedded-win32-x64@1.103.1: optional: true - sass-embedded@1.100.0: + sass-embedded@1.103.1: dependencies: - '@bufbuild/protobuf': 2.13.0 - colorjs.io: 0.5.2 + '@bufbuild/protobuf': 2.14.0 + colorjs.io: 0.7.1 immutable: 5.1.9 rxjs: 7.8.2 supports-color: 8.1.1 sync-child-process: 1.0.2 varint: 6.0.0 optionalDependencies: - sass-embedded-all-unknown: 1.100.0 - sass-embedded-android-arm: 1.100.0 - sass-embedded-android-arm64: 1.100.0 - sass-embedded-android-riscv64: 1.100.0 - sass-embedded-android-x64: 1.100.0 - sass-embedded-darwin-arm64: 1.100.0 - sass-embedded-darwin-x64: 1.100.0 - sass-embedded-linux-arm: 1.100.0 - sass-embedded-linux-arm64: 1.100.0 - sass-embedded-linux-musl-arm: 1.100.0 - sass-embedded-linux-musl-arm64: 1.100.0 - sass-embedded-linux-musl-riscv64: 1.100.0 - sass-embedded-linux-musl-x64: 1.100.0 - sass-embedded-linux-riscv64: 1.100.0 - sass-embedded-linux-x64: 1.100.0 - sass-embedded-unknown-all: 1.100.0 - sass-embedded-win32-arm64: 1.100.0 - sass-embedded-win32-x64: 1.100.0 - - sass@1.100.0: + sass-embedded-all-unknown: 1.103.1 + sass-embedded-android-arm: 1.103.1 + sass-embedded-android-arm64: 1.103.1 + sass-embedded-android-riscv64: 1.103.1 + sass-embedded-android-x64: 1.103.1 + sass-embedded-darwin-arm64: 1.103.1 + sass-embedded-darwin-x64: 1.103.1 + sass-embedded-linux-arm: 1.103.1 + sass-embedded-linux-arm64: 1.103.1 + sass-embedded-linux-musl-arm: 1.103.1 + sass-embedded-linux-musl-arm64: 1.103.1 + sass-embedded-linux-musl-riscv64: 1.103.1 + sass-embedded-linux-musl-x64: 1.103.1 + sass-embedded-linux-riscv64: 1.103.1 + sass-embedded-linux-x64: 1.103.1 + sass-embedded-unknown-all: 1.103.1 + sass-embedded-win32-arm64: 1.103.1 + sass-embedded-win32-x64: 1.103.1 + + sass@1.103.1: dependencies: chokidar: 5.0.0 immutable: 5.1.9 @@ -6204,7 +6200,7 @@ snapshots: '@parcel/watcher': 2.5.6 optional: true - satori@0.29.0: + satori@0.29.1: dependencies: '@shuding/opentype.js': 1.4.0-beta.0 css-background-parser: 0.1.0 @@ -6251,14 +6247,14 @@ snapshots: setprototypeof@1.2.0: {} - shiki@4.3.1: + shiki@4.4.3: dependencies: - '@shikijs/core': 4.3.1 - '@shikijs/engine-javascript': 4.3.1 - '@shikijs/engine-oniguruma': 4.3.1 - '@shikijs/langs': 4.3.1 - '@shikijs/themes': 4.3.1 - '@shikijs/types': 4.3.1 + '@shikijs/core': 4.4.3 + '@shikijs/engine-javascript': 4.4.3 + '@shikijs/engine-oniguruma': 4.4.3 + '@shikijs/langs': 4.4.3 + '@shikijs/themes': 4.4.3 + '@shikijs/types': 4.4.3 '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.5 @@ -6272,7 +6268,9 @@ snapshots: slash@3.0.0: {} - smol-toml@1.7.1: {} + smol-toml@1.7.2: {} + + smol-toml@1.8.0: {} sort-object-keys@2.1.0: {} @@ -6329,7 +6327,7 @@ snapshots: strip-ansi@7.2.0: dependencies: - ansi-regex: 6.2.2 + ansi-regex: 6.3.0 strip-json-comments@3.1.1: {} @@ -6353,10 +6351,10 @@ snapshots: sync-message-port@1.2.0: {} - terser@5.49.0: + terser@5.50.0: dependencies: '@jridgewell/source-map': 0.3.11 - acorn: 8.17.0 + acorn: 8.18.0 commander: 2.20.3 source-map-support: 0.5.21 @@ -6364,7 +6362,7 @@ snapshots: tinybench@2.9.0: {} - tinyexec@1.2.4: {} + tinyexec@1.3.0: {} tinyglobby@0.2.17: dependencies: @@ -6449,7 +6447,7 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.3 - vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0): + vite@8.2.2(@types/node@26.2.0)(esbuild@0.27.7)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0): dependencies: lightningcss: 1.33.0 picomatch: 4.0.5 @@ -6457,24 +6455,24 @@ snapshots: rolldown: 1.2.5 tinyglobby: 0.2.17 optionalDependencies: - '@types/node': 26.1.2 + '@types/node': 26.2.0 esbuild: 0.27.7 fsevents: 2.3.3 - sass: 1.100.0 - sass-embedded: 1.100.0 - terser: 5.49.0 + sass: 1.103.1 + sass-embedded: 1.103.1 + terser: 5.50.0 yaml: 2.9.0 - vitest@4.1.10(@types/node@26.1.2)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)): + vitest@4.1.11(@types/node@26.2.0)(vite@8.2.2(@types/node@26.2.0)(esbuild@0.27.7)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0)): dependencies: - '@vitest/expect': 4.1.10 - '@vitest/mocker': 4.1.10(vite@8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0)) - '@vitest/pretty-format': 4.1.10 - '@vitest/runner': 4.1.10 - '@vitest/snapshot': 4.1.10 - '@vitest/spy': 4.1.10 - '@vitest/utils': 4.1.10 - es-module-lexer: 2.3.1 + '@vitest/expect': 4.1.11 + '@vitest/mocker': 4.1.11(vite@8.2.2(@types/node@26.2.0)(esbuild@0.27.7)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0)) + '@vitest/pretty-format': 4.1.11 + '@vitest/runner': 4.1.11 + '@vitest/snapshot': 4.1.11 + '@vitest/spy': 4.1.11 + '@vitest/utils': 4.1.11 + es-module-lexer: 2.3.2 expect-type: 1.4.0 magic-string: 0.30.21 obug: 2.1.4 @@ -6482,13 +6480,13 @@ snapshots: picomatch: 4.0.5 std-env: 4.2.0 tinybench: 2.9.0 - tinyexec: 1.2.4 + tinyexec: 1.3.0 tinyglobby: 0.2.17 tinyrainbow: 3.1.1 - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.27.7)(sass-embedded@1.100.0)(sass@1.100.0)(terser@5.49.0)(yaml@2.9.0) + vite: 8.2.2(@types/node@26.2.0)(esbuild@0.27.7)(sass-embedded@1.103.1)(sass@1.103.1)(terser@5.50.0)(yaml@2.9.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 26.1.2 + '@types/node': 26.2.0 transitivePeerDependencies: - msw