From b4bbe5dfb5155d7de0258513e38deb841ea24348 Mon Sep 17 00:00:00 2001 From: Giovambattista Fazioli Date: Sun, 17 May 2026 13:00:03 +0200 Subject: [PATCH] chore(deps): bump dependencies to latest minor/patch versions --- .oxfmtrc.json | 31 +- .storybook/preview.tsx | 1 - docs/components/DocsTabs/DocsTabs.tsx | 6 +- docs/components/Footer/Footer.tsx | 12 +- docs/components/MdxElements/MdxElements.tsx | 6 +- docs/components/MdxInfo/MdxInfo.tsx | 2 +- docs/components/PageHeader/PageHeader.tsx | 4 +- docs/components/PropsTable/PropsTable.tsx | 2 +- .../components/PropsTable/PropsTablesList.tsx | 4 +- docs/components/Shell/Shell.tsx | 4 +- .../StylesApiTable/ModifiersTable.tsx | 2 +- .../StylesApiTable/SelectorsTable.tsx | 2 +- .../StylesApiTable/StylesApiTable.tsx | 2 +- .../StylesApiTable/StylesApiTablesList.tsx | 2 +- .../StylesApiTable/VariablesTable.tsx | 2 +- docs/components/TableError/TableError.tsx | 2 +- .../TableInlineCode/TableInlineCode.tsx | 4 +- .../TableOfContents/TableOfContents.tsx | 2 +- docs/components/styles-api.types.ts | 2 +- docs/demos/Window.demo.controlledPosition.tsx | 2 +- docs/demos/Window.demo.dynamicWindows.tsx | 2 +- docs/demos/Window.demo.groupLayout.tsx | 2 +- docs/demos/Window.demo.layoutPresets.tsx | 2 +- docs/demos/Window.demo.zIndexStrategy.tsx | 2 +- docs/package.json | 6 +- docs/pages/_app.tsx | 5 +- docs/pages/_document.tsx | 4 +- package.json | 20 +- package/src/Window.story.tsx | 2 +- package/src/Window.test.tsx | 6 +- package/src/Window.tsx | 4 +- package/src/WindowGroup.tsx | 4 +- package/src/hooks/use-mantine-window.ts | 2 +- package/src/hooks/use-window-dimensions.ts | 2 +- scripts/docgen.ts | 2 +- scripts/generate-dts.ts | 2 +- scripts/nojekyll.ts | 2 +- scripts/prepare-css.ts | 2 +- scripts/release.ts | 2 +- scripts/update-version.ts | 2 +- yarn.lock | 1474 ++++++++++------- 41 files changed, 926 insertions(+), 717 deletions(-) diff --git a/.oxfmtrc.json b/.oxfmtrc.json index b1ba4b4..e482d79 100644 --- a/.oxfmtrc.json +++ b/.oxfmtrc.json @@ -2,25 +2,18 @@ "printWidth": 100, "singleQuote": true, "trailingComma": "es5", - "importOrder": [ - ".*styles.css$", - "", - "dayjs", - "^react$", - "^next$", - "^next/.*$", - "", - "", - "^@mantine/(.*)$", - "^@mantinex/(.*)$", - "^@mantine-tests/(.*)$", - "^@docs/(.*)$", - "^@/.*$", - "^../(?!.*\\.css$).*$", - "^./(?!.*\\.css$).*$", - "\\.module\\.css$", - "(? {} diff --git a/docs/components/TableOfContents/TableOfContents.tsx b/docs/components/TableOfContents/TableOfContents.tsx index 58e5177..a8ebc9d 100644 --- a/docs/components/TableOfContents/TableOfContents.tsx +++ b/docs/components/TableOfContents/TableOfContents.tsx @@ -1,6 +1,6 @@ -import { useRouter } from 'next/router'; import { Box, ScrollArea, Space, Text } from '@mantine/core'; import { useScrollSpy } from '@mantine/hooks'; +import { useRouter } from 'next/router'; import classes from './TableOfContents.module.css'; interface TableOfContentsProps { diff --git a/docs/components/styles-api.types.ts b/docs/components/styles-api.types.ts index 7a1072c..3dcee58 100644 --- a/docs/components/styles-api.types.ts +++ b/docs/components/styles-api.types.ts @@ -1,5 +1,5 @@ -import type { EmptyObject } from 'type-fest'; import type { FactoryPayload, TransformVars } from '@mantine/core'; +import type { EmptyObject } from 'type-fest'; export interface Modifier { modifier: string; diff --git a/docs/demos/Window.demo.controlledPosition.tsx b/docs/demos/Window.demo.controlledPosition.tsx index b6f8cc9..d720edb 100644 --- a/docs/demos/Window.demo.controlledPosition.tsx +++ b/docs/demos/Window.demo.controlledPosition.tsx @@ -1,7 +1,7 @@ -import { useState } from 'react'; import { Window } from '@gfazioli/mantine-window'; import { Box, Slider, Stack, Text, Title } from '@mantine/core'; import { MantineDemo } from '@mantinex/demo'; +import { useState } from 'react'; const code = `import { useState } from 'react'; import { Window } from '@gfazioli/mantine-window'; diff --git a/docs/demos/Window.demo.dynamicWindows.tsx b/docs/demos/Window.demo.dynamicWindows.tsx index 5dabfa5..b237522 100644 --- a/docs/demos/Window.demo.dynamicWindows.tsx +++ b/docs/demos/Window.demo.dynamicWindows.tsx @@ -1,7 +1,7 @@ -import { useState } from 'react'; import { Window } from '@gfazioli/mantine-window'; import { Button, Group, Title } from '@mantine/core'; import { MantineDemo } from '@mantinex/demo'; +import { useState } from 'react'; const code = `import { useState } from 'react'; import { Window } from '@gfazioli/mantine-window'; diff --git a/docs/demos/Window.demo.groupLayout.tsx b/docs/demos/Window.demo.groupLayout.tsx index f377ac5..1b3852a 100644 --- a/docs/demos/Window.demo.groupLayout.tsx +++ b/docs/demos/Window.demo.groupLayout.tsx @@ -1,7 +1,7 @@ -import { useState } from 'react'; import { Window, type WindowLayout } from '@gfazioli/mantine-window'; import { Badge, Group, Stack, Text, Title } from '@mantine/core'; import { MantineDemo } from '@mantinex/demo'; +import { useState } from 'react'; const code = `import { useState } from 'react'; import { Window, type WindowLayout } from '@gfazioli/mantine-window'; diff --git a/docs/demos/Window.demo.layoutPresets.tsx b/docs/demos/Window.demo.layoutPresets.tsx index a20145e..13b6ca0 100644 --- a/docs/demos/Window.demo.layoutPresets.tsx +++ b/docs/demos/Window.demo.layoutPresets.tsx @@ -1,7 +1,7 @@ -import { useRef, useState } from 'react'; import { Window, type WindowGroupContextValue, type WindowLayout } from '@gfazioli/mantine-window'; import { Select, Stack, Title } from '@mantine/core'; import { MantineDemo } from '@mantinex/demo'; +import { useRef, useState } from 'react'; const code = `import { useRef, useState } from 'react'; import { Window, type WindowGroupContextValue, type WindowLayout } from '@gfazioli/mantine-window'; diff --git a/docs/demos/Window.demo.zIndexStrategy.tsx b/docs/demos/Window.demo.zIndexStrategy.tsx index f3853e4..de2a0dd 100644 --- a/docs/demos/Window.demo.zIndexStrategy.tsx +++ b/docs/demos/Window.demo.zIndexStrategy.tsx @@ -1,7 +1,7 @@ -import { useState } from 'react'; import { Window } from '@gfazioli/mantine-window'; import { SegmentedControl, Stack, Text, Title } from '@mantine/core'; import { MantineDemo } from '@mantinex/demo'; +import { useState } from 'react'; const code = `import { useState } from 'react'; import { Window } from '@gfazioli/mantine-window'; diff --git a/docs/package.json b/docs/package.json index 19055aa..23ad4ae 100644 --- a/docs/package.json +++ b/docs/package.json @@ -10,9 +10,9 @@ }, "dependencies": { "@gfazioli/mantine-window": "workspace:*", - "@mantine/code-highlight": "9.2.0", - "@mantine/core": "9.2.0", - "@mantine/hooks": "9.2.0", + "@mantine/code-highlight": "9.2.1", + "@mantine/core": "9.2.1", + "@mantine/hooks": "9.2.1", "@mantinex/demo": "^2.0.0", "@mantinex/dev-icons": "^2.0.0", "@mantinex/mantine-header": "^2.0.0", diff --git a/docs/pages/_app.tsx b/docs/pages/_app.tsx index b4fce0d..d18b643 100644 --- a/docs/pages/_app.tsx +++ b/docs/pages/_app.tsx @@ -6,11 +6,10 @@ import '@mantinex/mantine-header/styles.css'; import '@mantinex/mantine-logo/styles.css'; // Window styles import '@gfazioli/mantine-window/styles.css'; - -import { AppProps } from 'next/app'; -import Head from 'next/head'; import { CodeHighlightAdapterProvider, createShikiAdapter } from '@mantine/code-highlight'; import { MantineProvider } from '@mantine/core'; +import { AppProps } from 'next/app'; +import Head from 'next/head'; import favicon from '../assets/favicon.svg'; import { Footer } from '../components/Footer'; import { theme } from '../theme'; diff --git a/docs/pages/_document.tsx b/docs/pages/_document.tsx index ccf2716..576f094 100644 --- a/docs/pages/_document.tsx +++ b/docs/pages/_document.tsx @@ -1,6 +1,6 @@ -import React from 'react'; -import { Head, Html, Main, NextScript } from 'next/document'; import { ColorSchemeScript } from '@mantine/core'; +import { Head, Html, Main, NextScript } from 'next/document'; +import React from 'react'; export default function Document() { return ( diff --git a/package.json b/package.json index 9f78b64..dfbbaa0 100644 --- a/package.json +++ b/package.json @@ -32,13 +32,13 @@ }, "devDependencies": { "@mantine-tests/core": "^2.1.0", - "@mantine/core": "9.2.0", - "@mantine/hooks": "9.2.0", + "@mantine/core": "9.2.1", + "@mantine/hooks": "9.2.1", "@rollup/plugin-node-resolve": "^16.0.3", "@rollup/plugin-replace": "^6.0.3", - "@storybook/addon-themes": "^10.3.6", - "@storybook/react": "^10.3.6", - "@storybook/react-vite": "^10.3.6", + "@storybook/addon-themes": "^10.4.0", + "@storybook/react": "^10.4.0", + "@storybook/react-vite": "^10.4.0", "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^6.9.1", "@testing-library/react": "^16.3.2", @@ -62,25 +62,25 @@ "jest-axe": "^9.0.0", "jest-environment-jsdom": "^29.7.0", "mantine-docgen-script": "^1.6.0", - "oxfmt": "^0.49.0", - "oxlint": "^1.64.0", + "oxfmt": "^0.50.0", + "oxlint": "^1.65.0", "postcss": "^8.5.14", "postcss-preset-mantine": "1.18.0", "react": "19.2.6", "react-dom": "19.2.6", "rimraf": "^6.1.3", - "rollup": "^4.60.3", + "rollup": "^4.60.4", "rollup-plugin-banner2": "^1.3.1", "rollup-plugin-esbuild": "^6.2.1", "rollup-plugin-node-externals": "^8.1.2", "rollup-plugin-postcss": "^4.0.2", "signale": "^1.4.0", "simple-git": "^3.36.0", - "storybook": "^10.3.6", + "storybook": "^10.4.0", "stylelint": "^16.26.1", "stylelint-config-standard-scss": "^14.0.0", "syncpack": "^13.0.4", - "tsx": "^4.21.0", + "tsx": "^4.22.1", "typescript": "6.0.3", "version-next": "^1.0.2", "vite": "^6.4.2", diff --git a/package/src/Window.story.tsx b/package/src/Window.story.tsx index 5a6062c..ae53c46 100644 --- a/package/src/Window.story.tsx +++ b/package/src/Window.story.tsx @@ -1,6 +1,6 @@ -import React from 'react'; import { Button, Stack, Text, Title } from '@mantine/core'; import { useDisclosure } from '@mantine/hooks'; +import React from 'react'; import { Window } from './Window'; export default { diff --git a/package/src/Window.test.tsx b/package/src/Window.test.tsx index 319bd6f..9ca1f79 100644 --- a/package/src/Window.test.tsx +++ b/package/src/Window.test.tsx @@ -1,9 +1,9 @@ -import React, { createRef, useRef, useState } from 'react'; -import { act, fireEvent, render, screen } from '@testing-library/react'; import { MantineProvider } from '@mantine/core'; +import { act, fireEvent, render, screen } from '@testing-library/react'; +import React, { createRef, useRef, useState } from 'react'; +import { __resetStandaloneZIndexCounters } from './hooks/use-window-state'; import { Window } from './Window'; import type { WindowGroupContextValue } from './WindowGroup.context'; -import { __resetStandaloneZIndexCounters } from './hooks/use-window-state'; // Helper to render with MantineProvider function renderWithMantine(ui: React.ReactElement) { diff --git a/package/src/Window.tsx b/package/src/Window.tsx index 206891b..579b6f8 100644 --- a/package/src/Window.tsx +++ b/package/src/Window.tsx @@ -1,5 +1,3 @@ -import React from 'react'; -import { IconMinus, IconPlus, IconX } from '@tabler/icons-react'; import { ActionIcon, Box, @@ -20,6 +18,8 @@ import { type MantineRadius, type MantineShadow, } from '@mantine/core'; +import { IconMinus, IconPlus, IconX } from '@tabler/icons-react'; +import React from 'react'; import { useMantineWindow } from './hooks/use-mantine-window'; import { useResponsiveValue, type ResponsiveValue } from './hooks/use-responsive-value'; import { diff --git a/package/src/WindowGroup.tsx b/package/src/WindowGroup.tsx index df15449..e639028 100644 --- a/package/src/WindowGroup.tsx +++ b/package/src/WindowGroup.tsx @@ -1,3 +1,5 @@ +import { Box, factory, Factory, useProps, type BoxProps } from '@mantine/core'; +import { useResizeObserver } from '@mantine/hooks'; import React, { useCallback, useEffect, @@ -7,8 +9,6 @@ import React, { useRef, useState, } from 'react'; -import { Box, factory, Factory, useProps, type BoxProps } from '@mantine/core'; -import { useResizeObserver } from '@mantine/hooks'; import { WindowGroupProvider, type WindowCallbacks, diff --git a/package/src/hooks/use-mantine-window.ts b/package/src/hooks/use-mantine-window.ts index 1221357..e2e28fe 100644 --- a/package/src/hooks/use-mantine-window.ts +++ b/package/src/hooks/use-mantine-window.ts @@ -1,5 +1,5 @@ -import { useCallback, useEffect, useRef } from 'react'; import { useMergedRef } from '@mantine/hooks'; +import { useCallback, useEffect, useRef } from 'react'; import type { WindowBaseProps, WindowBounds } from '../Window'; import { useWindowGroupContext } from '../WindowGroup.context'; import { useResponsiveValue } from './use-responsive-value'; diff --git a/package/src/hooks/use-window-dimensions.ts b/package/src/hooks/use-window-dimensions.ts index b16da77..05c33d0 100644 --- a/package/src/hooks/use-window-dimensions.ts +++ b/package/src/hooks/use-window-dimensions.ts @@ -1,5 +1,5 @@ -import { useEffect, useRef, useState } from 'react'; import { useMounted, useViewportSize } from '@mantine/hooks'; +import { useEffect, useRef, useState } from 'react'; export interface UseWindowDimensionsOptions { withinPortal?: boolean; diff --git a/scripts/docgen.ts b/scripts/docgen.ts index 683c4b3..eef5af5 100644 --- a/scripts/docgen.ts +++ b/scripts/docgen.ts @@ -1,5 +1,5 @@ -import path from 'path'; import { generateDeclarations } from 'mantine-docgen-script'; +import path from 'path'; const getComponentPath = (componentPath: string) => path.join(process.cwd(), 'package/src', componentPath); diff --git a/scripts/generate-dts.ts b/scripts/generate-dts.ts index 12b091d..59fd4a2 100644 --- a/scripts/generate-dts.ts +++ b/scripts/generate-dts.ts @@ -1,7 +1,7 @@ -import path from 'node:path'; import fs from 'fs-extra'; import signale from 'signale'; import { $ } from 'zx'; +import path from 'node:path'; async function generateDts() { try { diff --git a/scripts/nojekyll.ts b/scripts/nojekyll.ts index a69e339..40bda29 100644 --- a/scripts/nojekyll.ts +++ b/scripts/nojekyll.ts @@ -1,4 +1,4 @@ -import path from 'node:path'; import fs from 'fs-extra'; +import path from 'node:path'; fs.writeFileSync(path.join(process.cwd(), 'docs/out/.nojekyll'), ''); diff --git a/scripts/prepare-css.ts b/scripts/prepare-css.ts index fe35a3d..e6908dd 100644 --- a/scripts/prepare-css.ts +++ b/scripts/prepare-css.ts @@ -1,6 +1,6 @@ -import path from 'node:path'; import fs from 'fs-extra'; import signale from 'signale'; +import path from 'node:path'; const rollupCssFilePath = path.join(process.cwd(), './package/dist/esm/index.css'); diff --git a/scripts/release.ts b/scripts/release.ts index 9d492ac..0b571f9 100644 --- a/scripts/release.ts +++ b/scripts/release.ts @@ -1,4 +1,3 @@ -import path from 'node:path'; import chalk from 'chalk'; import fs from 'fs-extra'; import signale from 'signale'; @@ -9,6 +8,7 @@ import { hideBin } from 'yargs/helpers'; import { $ } from 'zx'; import { run } from './run'; import { updateVersion } from './update-version'; +import path from 'node:path'; function extractChangelogBody(changelogPath: string): string { if (!fs.existsSync(changelogPath)) { diff --git a/scripts/update-version.ts b/scripts/update-version.ts index ef8f85c..a269316 100644 --- a/scripts/update-version.ts +++ b/scripts/update-version.ts @@ -1,5 +1,5 @@ -import path from 'node:path'; import fs from 'fs-extra'; +import path from 'node:path'; export async function updateVersion(version: string) { const packageJsonPath = path.join(process.cwd(), 'package/package.json'); diff --git a/yarn.lock b/yarn.lock index 00d2a09..52eb029 100644 --- a/yarn.lock +++ b/yarn.lock @@ -927,6 +927,25 @@ __metadata: languageName: node linkType: hard +"@emnapi/core@npm:1.9.2": + version: 1.9.2 + resolution: "@emnapi/core@npm:1.9.2" + dependencies: + "@emnapi/wasi-threads": "npm:1.2.1" + tslib: "npm:^2.4.0" + checksum: 10c0/5500393f953951bad0768fafaa9191f2d938956b20c6d6a79e5ab696a613a25ce6ad23422bc18e86e6ce8deb147619d8d0d7d413a69f84adc01a6633cc353cd9 + languageName: node + linkType: hard + +"@emnapi/runtime@npm:1.9.2": + version: 1.9.2 + resolution: "@emnapi/runtime@npm:1.9.2" + dependencies: + tslib: "npm:^2.4.0" + checksum: 10c0/61c3a59e0c36784558b8d58eb02bd04815aa5fb0dbfbaf84d1b3050a78aa0cc63ea129ae806bd1e48062bfeb7fc36eb0e5431740d62f64ea51bdf426404b8caa + languageName: node + linkType: hard + "@emnapi/runtime@npm:^1.7.0": version: 1.10.0 resolution: "@emnapi/runtime@npm:1.10.0" @@ -936,16 +955,18 @@ __metadata: languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.25.1": - version: 0.25.1 - resolution: "@esbuild/aix-ppc64@npm:0.25.1" - conditions: os=aix & cpu=ppc64 +"@emnapi/wasi-threads@npm:1.2.1": + version: 1.2.1 + resolution: "@emnapi/wasi-threads@npm:1.2.1" + dependencies: + tslib: "npm:^2.4.0" + checksum: 10c0/32fcfa81ab396533b2ec1f4082b1ff779a05d9c836bbbd3f4398405b0e6814c0d9503b7993130e37bc6941dbc1ded49f55e9700ae9ca4e803bab2b5bc5deb331 languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/aix-ppc64@npm:0.27.1" +"@esbuild/aix-ppc64@npm:0.25.1": + version: 0.25.1 + resolution: "@esbuild/aix-ppc64@npm:0.25.1" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard @@ -971,13 +992,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/android-arm64@npm:0.27.1" - conditions: os=android & cpu=arm64 - languageName: node - linkType: hard - "@esbuild/android-arm64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/android-arm64@npm:0.27.7" @@ -999,13 +1013,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-arm@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/android-arm@npm:0.27.1" - conditions: os=android & cpu=arm - languageName: node - linkType: hard - "@esbuild/android-arm@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/android-arm@npm:0.27.7" @@ -1027,13 +1034,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-x64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/android-x64@npm:0.27.1" - conditions: os=android & cpu=x64 - languageName: node - linkType: hard - "@esbuild/android-x64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/android-x64@npm:0.27.7" @@ -1055,13 +1055,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/darwin-arm64@npm:0.27.1" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - "@esbuild/darwin-arm64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/darwin-arm64@npm:0.27.7" @@ -1083,13 +1076,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/darwin-x64@npm:0.27.1" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - "@esbuild/darwin-x64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/darwin-x64@npm:0.27.7" @@ -1111,13 +1097,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/freebsd-arm64@npm:0.27.1" - conditions: os=freebsd & cpu=arm64 - languageName: node - linkType: hard - "@esbuild/freebsd-arm64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/freebsd-arm64@npm:0.27.7" @@ -1139,13 +1118,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/freebsd-x64@npm:0.27.1" - conditions: os=freebsd & cpu=x64 - languageName: node - linkType: hard - "@esbuild/freebsd-x64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/freebsd-x64@npm:0.27.7" @@ -1167,13 +1139,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/linux-arm64@npm:0.27.1" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - "@esbuild/linux-arm64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/linux-arm64@npm:0.27.7" @@ -1195,13 +1160,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/linux-arm@npm:0.27.1" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - "@esbuild/linux-arm@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/linux-arm@npm:0.27.7" @@ -1223,13 +1181,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/linux-ia32@npm:0.27.1" - conditions: os=linux & cpu=ia32 - languageName: node - linkType: hard - "@esbuild/linux-ia32@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/linux-ia32@npm:0.27.7" @@ -1251,13 +1202,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/linux-loong64@npm:0.27.1" - conditions: os=linux & cpu=loong64 - languageName: node - linkType: hard - "@esbuild/linux-loong64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/linux-loong64@npm:0.27.7" @@ -1279,13 +1223,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/linux-mips64el@npm:0.27.1" - conditions: os=linux & cpu=mips64el - languageName: node - linkType: hard - "@esbuild/linux-mips64el@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/linux-mips64el@npm:0.27.7" @@ -1307,13 +1244,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/linux-ppc64@npm:0.27.1" - conditions: os=linux & cpu=ppc64 - languageName: node - linkType: hard - "@esbuild/linux-ppc64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/linux-ppc64@npm:0.27.7" @@ -1335,13 +1265,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/linux-riscv64@npm:0.27.1" - conditions: os=linux & cpu=riscv64 - languageName: node - linkType: hard - "@esbuild/linux-riscv64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/linux-riscv64@npm:0.27.7" @@ -1363,13 +1286,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/linux-s390x@npm:0.27.1" - conditions: os=linux & cpu=s390x - languageName: node - linkType: hard - "@esbuild/linux-s390x@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/linux-s390x@npm:0.27.7" @@ -1391,13 +1307,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/linux-x64@npm:0.27.1" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - "@esbuild/linux-x64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/linux-x64@npm:0.27.7" @@ -1419,13 +1328,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/netbsd-arm64@npm:0.27.1" - conditions: os=netbsd & cpu=arm64 - languageName: node - linkType: hard - "@esbuild/netbsd-arm64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/netbsd-arm64@npm:0.27.7" @@ -1447,13 +1349,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/netbsd-x64@npm:0.27.1" - conditions: os=netbsd & cpu=x64 - languageName: node - linkType: hard - "@esbuild/netbsd-x64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/netbsd-x64@npm:0.27.7" @@ -1475,13 +1370,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/openbsd-arm64@npm:0.27.1" - conditions: os=openbsd & cpu=arm64 - languageName: node - linkType: hard - "@esbuild/openbsd-arm64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/openbsd-arm64@npm:0.27.7" @@ -1503,13 +1391,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/openbsd-x64@npm:0.27.1" - conditions: os=openbsd & cpu=x64 - languageName: node - linkType: hard - "@esbuild/openbsd-x64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/openbsd-x64@npm:0.27.7" @@ -1524,13 +1405,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/openharmony-arm64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/openharmony-arm64@npm:0.27.1" - conditions: os=openharmony & cpu=arm64 - languageName: node - linkType: hard - "@esbuild/openharmony-arm64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/openharmony-arm64@npm:0.27.7" @@ -1552,13 +1426,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/sunos-x64@npm:0.27.1" - conditions: os=sunos & cpu=x64 - languageName: node - linkType: hard - "@esbuild/sunos-x64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/sunos-x64@npm:0.27.7" @@ -1580,13 +1447,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/win32-arm64@npm:0.27.1" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - "@esbuild/win32-arm64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/win32-arm64@npm:0.27.7" @@ -1608,13 +1468,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/win32-ia32@npm:0.27.1" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - "@esbuild/win32-ia32@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/win32-ia32@npm:0.27.7" @@ -1636,13 +1489,6 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.27.1": - version: 0.27.1 - resolution: "@esbuild/win32-x64@npm:0.27.1" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - "@esbuild/win32-x64@npm:0.27.7": version: 0.27.7 resolution: "@esbuild/win32-x64@npm:0.27.7" @@ -2423,23 +2269,23 @@ __metadata: languageName: node linkType: hard -"@mantine/code-highlight@npm:9.2.0": - version: 9.2.0 - resolution: "@mantine/code-highlight@npm:9.2.0" +"@mantine/code-highlight@npm:9.2.1": + version: 9.2.1 + resolution: "@mantine/code-highlight@npm:9.2.1" dependencies: clsx: "npm:^2.1.1" peerDependencies: - "@mantine/core": 9.2.0 - "@mantine/hooks": 9.2.0 + "@mantine/core": 9.2.1 + "@mantine/hooks": 9.2.1 react: ^19.2.0 react-dom: ^19.2.0 - checksum: 10c0/7fc408ce5b85c5f4aad9f08b999feac0dc5564e68e92add977dc7a6ff3aed793c05fd8772f3495d141bfa4d253a94dfaae2f81c30c69b8604073443f5e2e8624 + checksum: 10c0/bf9dcf3fd6a4d365b3940bda2065179397a775c6e8078b2c6538a262974c6aa1e2366ed907d16dbfd179759bd25227ee09d0c80f55f2ec3dfd750044902c79d8 languageName: node linkType: hard -"@mantine/core@npm:9.2.0": - version: 9.2.0 - resolution: "@mantine/core@npm:9.2.0" +"@mantine/core@npm:9.2.1": + version: 9.2.1 + resolution: "@mantine/core@npm:9.2.1" dependencies: "@floating-ui/react": "npm:^0.27.19" clsx: "npm:^2.1.1" @@ -2447,19 +2293,19 @@ __metadata: react-remove-scroll: "npm:^2.7.2" type-fest: "npm:^5.6.0" peerDependencies: - "@mantine/hooks": 9.2.0 + "@mantine/hooks": 9.2.1 react: ^19.2.0 react-dom: ^19.2.0 - checksum: 10c0/b2e71712621683b0c6d1351ebb49cf5d26278aa837631ef80f10426fe4a9b72cde61d040e6123f01039e64415b5fa085a5092960b5bd828450423c99a4604327 + checksum: 10c0/998f9da4463119e62b8031f577e3a4da0082f56a8b516576e5f123a4bba96c1a35007419cd8ee99d7a6f695eba49842b807c8ea704bbb178300808434286ac55 languageName: node linkType: hard -"@mantine/hooks@npm:9.2.0": - version: 9.2.0 - resolution: "@mantine/hooks@npm:9.2.0" +"@mantine/hooks@npm:9.2.1": + version: 9.2.1 + resolution: "@mantine/hooks@npm:9.2.1" peerDependencies: react: ^19.2.0 - checksum: 10c0/1faa2696b4dfec081dd2f83031a502d05eda2fc7bf449bb472ff76721a61572625e510c95318451f45c2c70889ad8e7b5c99f4903ea7ba5d76d8cd8b499512ef + checksum: 10c0/39d94b17769a9688f5bce7d88b8b8c267a159d24fc5c5ae9b518382f338db5536d19b85d3895f18d868b34d7160defb1688274af0420161aa6352d29c7ec954d languageName: node linkType: hard @@ -2594,6 +2440,18 @@ __metadata: languageName: node linkType: hard +"@napi-rs/wasm-runtime@npm:^1.1.1, @napi-rs/wasm-runtime@npm:^1.1.4": + version: 1.1.4 + resolution: "@napi-rs/wasm-runtime@npm:1.1.4" + dependencies: + "@tybys/wasm-util": "npm:^0.10.1" + peerDependencies: + "@emnapi/core": ^1.7.1 + "@emnapi/runtime": ^1.7.1 + checksum: 10c0/2e88e1955258949ccf2d18c79975821ad38071b465ef126a5e14110977b97868867b016c1ad046e963cccc42c0bd9db6c8ff5fd1ebb61b87bb3487f339041658 + languageName: node + linkType: hard + "@next/env@npm:16.2.6": version: 16.2.6 resolution: "@next/env@npm:16.2.6" @@ -2723,268 +2581,561 @@ __metadata: languageName: node linkType: hard -"@oxfmt/binding-android-arm-eabi@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-android-arm-eabi@npm:0.49.0" +"@oxc-parser/binding-android-arm-eabi@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-android-arm-eabi@npm:0.127.0" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + +"@oxc-parser/binding-android-arm64@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-android-arm64@npm:0.127.0" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@oxc-parser/binding-darwin-arm64@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-darwin-arm64@npm:0.127.0" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@oxc-parser/binding-darwin-x64@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-darwin-x64@npm:0.127.0" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@oxc-parser/binding-freebsd-x64@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-freebsd-x64@npm:0.127.0" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@oxc-parser/binding-linux-arm-gnueabihf@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-linux-arm-gnueabihf@npm:0.127.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@oxc-parser/binding-linux-arm-musleabihf@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-linux-arm-musleabihf@npm:0.127.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@oxc-parser/binding-linux-arm64-gnu@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-linux-arm64-gnu@npm:0.127.0" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@oxc-parser/binding-linux-arm64-musl@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-linux-arm64-musl@npm:0.127.0" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@oxc-parser/binding-linux-ppc64-gnu@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-linux-ppc64-gnu@npm:0.127.0" + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@oxc-parser/binding-linux-riscv64-gnu@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-linux-riscv64-gnu@npm:0.127.0" + conditions: os=linux & cpu=riscv64 & libc=glibc + languageName: node + linkType: hard + +"@oxc-parser/binding-linux-riscv64-musl@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-linux-riscv64-musl@npm:0.127.0" + conditions: os=linux & cpu=riscv64 & libc=musl + languageName: node + linkType: hard + +"@oxc-parser/binding-linux-s390x-gnu@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-linux-s390x-gnu@npm:0.127.0" + conditions: os=linux & cpu=s390x & libc=glibc + languageName: node + linkType: hard + +"@oxc-parser/binding-linux-x64-gnu@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-linux-x64-gnu@npm:0.127.0" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@oxc-parser/binding-linux-x64-musl@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-linux-x64-musl@npm:0.127.0" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@oxc-parser/binding-openharmony-arm64@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-openharmony-arm64@npm:0.127.0" + conditions: os=openharmony & cpu=arm64 + languageName: node + linkType: hard + +"@oxc-parser/binding-wasm32-wasi@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-wasm32-wasi@npm:0.127.0" + dependencies: + "@emnapi/core": "npm:1.9.2" + "@emnapi/runtime": "npm:1.9.2" + "@napi-rs/wasm-runtime": "npm:^1.1.4" + conditions: cpu=wasm32 + languageName: node + linkType: hard + +"@oxc-parser/binding-win32-arm64-msvc@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-win32-arm64-msvc@npm:0.127.0" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@oxc-parser/binding-win32-ia32-msvc@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-win32-ia32-msvc@npm:0.127.0" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@oxc-parser/binding-win32-x64-msvc@npm:0.127.0": + version: 0.127.0 + resolution: "@oxc-parser/binding-win32-x64-msvc@npm:0.127.0" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@oxc-project/types@npm:^0.127.0": + version: 0.127.0 + resolution: "@oxc-project/types@npm:0.127.0" + checksum: 10c0/52c0947ac64a9ca119fe971f947e784a35ecd14a072fa3f542a58a5f6c42010b53f2bf92731e39b9899b83c990a9517bbd29d1e5a5b7b489e52616685c6a9278 + languageName: node + linkType: hard + +"@oxc-resolver/binding-android-arm-eabi@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-android-arm-eabi@npm:11.19.1" + conditions: os=android & cpu=arm + languageName: node + linkType: hard + +"@oxc-resolver/binding-android-arm64@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-android-arm64@npm:11.19.1" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@oxc-resolver/binding-darwin-arm64@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-darwin-arm64@npm:11.19.1" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@oxc-resolver/binding-darwin-x64@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-darwin-x64@npm:11.19.1" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@oxc-resolver/binding-freebsd-x64@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-freebsd-x64@npm:11.19.1" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@oxc-resolver/binding-linux-arm-gnueabihf@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-linux-arm-gnueabihf@npm:11.19.1" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@oxc-resolver/binding-linux-arm-musleabihf@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-linux-arm-musleabihf@npm:11.19.1" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@oxc-resolver/binding-linux-arm64-gnu@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-linux-arm64-gnu@npm:11.19.1" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@oxc-resolver/binding-linux-arm64-musl@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-linux-arm64-musl@npm:11.19.1" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@oxc-resolver/binding-linux-ppc64-gnu@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-linux-ppc64-gnu@npm:11.19.1" + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@oxc-resolver/binding-linux-riscv64-gnu@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-linux-riscv64-gnu@npm:11.19.1" + conditions: os=linux & cpu=riscv64 & libc=glibc + languageName: node + linkType: hard + +"@oxc-resolver/binding-linux-riscv64-musl@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-linux-riscv64-musl@npm:11.19.1" + conditions: os=linux & cpu=riscv64 & libc=musl + languageName: node + linkType: hard + +"@oxc-resolver/binding-linux-s390x-gnu@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-linux-s390x-gnu@npm:11.19.1" + conditions: os=linux & cpu=s390x & libc=glibc + languageName: node + linkType: hard + +"@oxc-resolver/binding-linux-x64-gnu@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-linux-x64-gnu@npm:11.19.1" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@oxc-resolver/binding-linux-x64-musl@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-linux-x64-musl@npm:11.19.1" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@oxc-resolver/binding-openharmony-arm64@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-openharmony-arm64@npm:11.19.1" + conditions: os=openharmony & cpu=arm64 + languageName: node + linkType: hard + +"@oxc-resolver/binding-wasm32-wasi@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-wasm32-wasi@npm:11.19.1" + dependencies: + "@napi-rs/wasm-runtime": "npm:^1.1.1" + conditions: cpu=wasm32 + languageName: node + linkType: hard + +"@oxc-resolver/binding-win32-arm64-msvc@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-win32-arm64-msvc@npm:11.19.1" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@oxc-resolver/binding-win32-ia32-msvc@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-win32-ia32-msvc@npm:11.19.1" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@oxc-resolver/binding-win32-x64-msvc@npm:11.19.1": + version: 11.19.1 + resolution: "@oxc-resolver/binding-win32-x64-msvc@npm:11.19.1" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@oxfmt/binding-android-arm-eabi@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-android-arm-eabi@npm:0.50.0" conditions: os=android & cpu=arm languageName: node linkType: hard -"@oxfmt/binding-android-arm64@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-android-arm64@npm:0.49.0" +"@oxfmt/binding-android-arm64@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-android-arm64@npm:0.50.0" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@oxfmt/binding-darwin-arm64@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-darwin-arm64@npm:0.49.0" +"@oxfmt/binding-darwin-arm64@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-darwin-arm64@npm:0.50.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@oxfmt/binding-darwin-x64@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-darwin-x64@npm:0.49.0" +"@oxfmt/binding-darwin-x64@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-darwin-x64@npm:0.50.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@oxfmt/binding-freebsd-x64@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-freebsd-x64@npm:0.49.0" +"@oxfmt/binding-freebsd-x64@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-freebsd-x64@npm:0.50.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@oxfmt/binding-linux-arm-gnueabihf@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-linux-arm-gnueabihf@npm:0.49.0" +"@oxfmt/binding-linux-arm-gnueabihf@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-linux-arm-gnueabihf@npm:0.50.0" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@oxfmt/binding-linux-arm-musleabihf@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-linux-arm-musleabihf@npm:0.49.0" +"@oxfmt/binding-linux-arm-musleabihf@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-linux-arm-musleabihf@npm:0.50.0" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@oxfmt/binding-linux-arm64-gnu@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-linux-arm64-gnu@npm:0.49.0" +"@oxfmt/binding-linux-arm64-gnu@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-linux-arm64-gnu@npm:0.50.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@oxfmt/binding-linux-arm64-musl@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-linux-arm64-musl@npm:0.49.0" +"@oxfmt/binding-linux-arm64-musl@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-linux-arm64-musl@npm:0.50.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@oxfmt/binding-linux-ppc64-gnu@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-linux-ppc64-gnu@npm:0.49.0" +"@oxfmt/binding-linux-ppc64-gnu@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-linux-ppc64-gnu@npm:0.50.0" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@oxfmt/binding-linux-riscv64-gnu@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-linux-riscv64-gnu@npm:0.49.0" +"@oxfmt/binding-linux-riscv64-gnu@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-linux-riscv64-gnu@npm:0.50.0" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@oxfmt/binding-linux-riscv64-musl@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-linux-riscv64-musl@npm:0.49.0" +"@oxfmt/binding-linux-riscv64-musl@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-linux-riscv64-musl@npm:0.50.0" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@oxfmt/binding-linux-s390x-gnu@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-linux-s390x-gnu@npm:0.49.0" +"@oxfmt/binding-linux-s390x-gnu@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-linux-s390x-gnu@npm:0.50.0" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@oxfmt/binding-linux-x64-gnu@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-linux-x64-gnu@npm:0.49.0" +"@oxfmt/binding-linux-x64-gnu@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-linux-x64-gnu@npm:0.50.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@oxfmt/binding-linux-x64-musl@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-linux-x64-musl@npm:0.49.0" +"@oxfmt/binding-linux-x64-musl@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-linux-x64-musl@npm:0.50.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@oxfmt/binding-openharmony-arm64@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-openharmony-arm64@npm:0.49.0" +"@oxfmt/binding-openharmony-arm64@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-openharmony-arm64@npm:0.50.0" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@oxfmt/binding-win32-arm64-msvc@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-win32-arm64-msvc@npm:0.49.0" +"@oxfmt/binding-win32-arm64-msvc@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-win32-arm64-msvc@npm:0.50.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@oxfmt/binding-win32-ia32-msvc@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-win32-ia32-msvc@npm:0.49.0" +"@oxfmt/binding-win32-ia32-msvc@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-win32-ia32-msvc@npm:0.50.0" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@oxfmt/binding-win32-x64-msvc@npm:0.49.0": - version: 0.49.0 - resolution: "@oxfmt/binding-win32-x64-msvc@npm:0.49.0" +"@oxfmt/binding-win32-x64-msvc@npm:0.50.0": + version: 0.50.0 + resolution: "@oxfmt/binding-win32-x64-msvc@npm:0.50.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@oxlint/binding-android-arm-eabi@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-android-arm-eabi@npm:1.64.0" +"@oxlint/binding-android-arm-eabi@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-android-arm-eabi@npm:1.65.0" conditions: os=android & cpu=arm languageName: node linkType: hard -"@oxlint/binding-android-arm64@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-android-arm64@npm:1.64.0" +"@oxlint/binding-android-arm64@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-android-arm64@npm:1.65.0" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@oxlint/binding-darwin-arm64@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-darwin-arm64@npm:1.64.0" +"@oxlint/binding-darwin-arm64@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-darwin-arm64@npm:1.65.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@oxlint/binding-darwin-x64@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-darwin-x64@npm:1.64.0" +"@oxlint/binding-darwin-x64@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-darwin-x64@npm:1.65.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@oxlint/binding-freebsd-x64@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-freebsd-x64@npm:1.64.0" +"@oxlint/binding-freebsd-x64@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-freebsd-x64@npm:1.65.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@oxlint/binding-linux-arm-gnueabihf@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-linux-arm-gnueabihf@npm:1.64.0" +"@oxlint/binding-linux-arm-gnueabihf@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-linux-arm-gnueabihf@npm:1.65.0" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@oxlint/binding-linux-arm-musleabihf@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-linux-arm-musleabihf@npm:1.64.0" +"@oxlint/binding-linux-arm-musleabihf@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-linux-arm-musleabihf@npm:1.65.0" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@oxlint/binding-linux-arm64-gnu@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-linux-arm64-gnu@npm:1.64.0" +"@oxlint/binding-linux-arm64-gnu@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-linux-arm64-gnu@npm:1.65.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@oxlint/binding-linux-arm64-musl@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-linux-arm64-musl@npm:1.64.0" +"@oxlint/binding-linux-arm64-musl@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-linux-arm64-musl@npm:1.65.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@oxlint/binding-linux-ppc64-gnu@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-linux-ppc64-gnu@npm:1.64.0" +"@oxlint/binding-linux-ppc64-gnu@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-linux-ppc64-gnu@npm:1.65.0" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@oxlint/binding-linux-riscv64-gnu@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-linux-riscv64-gnu@npm:1.64.0" +"@oxlint/binding-linux-riscv64-gnu@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-linux-riscv64-gnu@npm:1.65.0" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@oxlint/binding-linux-riscv64-musl@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-linux-riscv64-musl@npm:1.64.0" +"@oxlint/binding-linux-riscv64-musl@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-linux-riscv64-musl@npm:1.65.0" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard -"@oxlint/binding-linux-s390x-gnu@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-linux-s390x-gnu@npm:1.64.0" +"@oxlint/binding-linux-s390x-gnu@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-linux-s390x-gnu@npm:1.65.0" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@oxlint/binding-linux-x64-gnu@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-linux-x64-gnu@npm:1.64.0" +"@oxlint/binding-linux-x64-gnu@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-linux-x64-gnu@npm:1.65.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@oxlint/binding-linux-x64-musl@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-linux-x64-musl@npm:1.64.0" +"@oxlint/binding-linux-x64-musl@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-linux-x64-musl@npm:1.65.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@oxlint/binding-openharmony-arm64@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-openharmony-arm64@npm:1.64.0" +"@oxlint/binding-openharmony-arm64@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-openharmony-arm64@npm:1.65.0" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@oxlint/binding-win32-arm64-msvc@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-win32-arm64-msvc@npm:1.64.0" +"@oxlint/binding-win32-arm64-msvc@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-win32-arm64-msvc@npm:1.65.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@oxlint/binding-win32-ia32-msvc@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-win32-ia32-msvc@npm:1.64.0" +"@oxlint/binding-win32-ia32-msvc@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-win32-ia32-msvc@npm:1.65.0" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@oxlint/binding-win32-x64-msvc@npm:1.64.0": - version: 1.64.0 - resolution: "@oxlint/binding-win32-x64-msvc@npm:1.64.0" +"@oxlint/binding-win32-x64-msvc@npm:1.65.0": + version: 1.65.0 + resolution: "@oxlint/binding-win32-x64-msvc@npm:1.65.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -3059,9 +3210,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.60.3" +"@rollup/rollup-android-arm-eabi@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.60.4" conditions: os=android & cpu=arm languageName: node linkType: hard @@ -3073,9 +3224,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-android-arm64@npm:4.60.3" +"@rollup/rollup-android-arm64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-android-arm64@npm:4.60.4" conditions: os=android & cpu=arm64 languageName: node linkType: hard @@ -3087,9 +3238,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-darwin-arm64@npm:4.60.3" +"@rollup/rollup-darwin-arm64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-darwin-arm64@npm:4.60.4" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard @@ -3101,9 +3252,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-darwin-x64@npm:4.60.3" +"@rollup/rollup-darwin-x64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-darwin-x64@npm:4.60.4" conditions: os=darwin & cpu=x64 languageName: node linkType: hard @@ -3115,9 +3266,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-freebsd-arm64@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-freebsd-arm64@npm:4.60.3" +"@rollup/rollup-freebsd-arm64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-freebsd-arm64@npm:4.60.4" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard @@ -3129,9 +3280,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-freebsd-x64@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-freebsd-x64@npm:4.60.3" +"@rollup/rollup-freebsd-x64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-freebsd-x64@npm:4.60.4" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard @@ -3143,9 +3294,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.60.3" +"@rollup/rollup-linux-arm-gnueabihf@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.60.4" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard @@ -3157,9 +3308,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-arm-musleabihf@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.60.3" +"@rollup/rollup-linux-arm-musleabihf@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.60.4" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard @@ -3171,9 +3322,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.60.3" +"@rollup/rollup-linux-arm64-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.60.4" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard @@ -3185,23 +3336,23 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.60.3" +"@rollup/rollup-linux-arm64-musl@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.60.4" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-loong64-gnu@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.60.3" +"@rollup/rollup-linux-loong64-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.60.4" conditions: os=linux & cpu=loong64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-loong64-musl@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-loong64-musl@npm:4.60.3" +"@rollup/rollup-linux-loong64-musl@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-loong64-musl@npm:4.60.4" conditions: os=linux & cpu=loong64 & libc=musl languageName: node linkType: hard @@ -3220,16 +3371,16 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-ppc64-gnu@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.60.3" +"@rollup/rollup-linux-ppc64-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.60.4" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-ppc64-musl@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.60.3" +"@rollup/rollup-linux-ppc64-musl@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.60.4" conditions: os=linux & cpu=ppc64 & libc=musl languageName: node linkType: hard @@ -3241,9 +3392,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.60.3" +"@rollup/rollup-linux-riscv64-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.60.4" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard @@ -3255,9 +3406,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-musl@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.60.3" +"@rollup/rollup-linux-riscv64-musl@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.60.4" conditions: os=linux & cpu=riscv64 & libc=musl languageName: node linkType: hard @@ -3269,9 +3420,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-s390x-gnu@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.60.3" +"@rollup/rollup-linux-s390x-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.60.4" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard @@ -3283,9 +3434,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.60.3" +"@rollup/rollup-linux-x64-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.60.4" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard @@ -3297,23 +3448,23 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.60.3" +"@rollup/rollup-linux-x64-musl@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.60.4" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-openbsd-x64@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-openbsd-x64@npm:4.60.3" +"@rollup/rollup-openbsd-x64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-openbsd-x64@npm:4.60.4" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-openharmony-arm64@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-openharmony-arm64@npm:4.60.3" +"@rollup/rollup-openharmony-arm64@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-openharmony-arm64@npm:4.60.4" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard @@ -3325,9 +3476,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.60.3" +"@rollup/rollup-win32-arm64-msvc@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.60.4" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard @@ -3339,16 +3490,16 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.60.3" +"@rollup/rollup-win32-ia32-msvc@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.60.4" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-gnu@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-win32-x64-gnu@npm:4.60.3" +"@rollup/rollup-win32-x64-gnu@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-win32-x64-gnu@npm:4.60.4" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -3360,9 +3511,9 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.60.3": - version: 4.60.3 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.60.3" +"@rollup/rollup-win32-x64-msvc@npm:4.60.4": + version: 4.60.4 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.60.4" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -3490,39 +3641,39 @@ __metadata: languageName: node linkType: hard -"@storybook/addon-themes@npm:^10.3.6": - version: 10.3.6 - resolution: "@storybook/addon-themes@npm:10.3.6" +"@storybook/addon-themes@npm:^10.4.0": + version: 10.4.0 + resolution: "@storybook/addon-themes@npm:10.4.0" dependencies: ts-dedent: "npm:^2.0.0" peerDependencies: - storybook: ^10.3.6 - checksum: 10c0/494736b47b192b55472c0acf53bc448de0148aa1319af71cbc4ab6ca55c2c1b195f24024a7eaead9d0df26bc9a5f5774fcb5b0a00f9b599daca31c457a9a9776 + storybook: ^10.4.0 + checksum: 10c0/f6a6fb363b8d934355a8c39000645ecd632100567272cced373cc075933ffb5138da913153e4b9f5e11c182959840ef682ace633e08e29c35bd2f1a46c3cc519 languageName: node linkType: hard -"@storybook/builder-vite@npm:10.3.6": - version: 10.3.6 - resolution: "@storybook/builder-vite@npm:10.3.6" +"@storybook/builder-vite@npm:10.4.0": + version: 10.4.0 + resolution: "@storybook/builder-vite@npm:10.4.0" dependencies: - "@storybook/csf-plugin": "npm:10.3.6" + "@storybook/csf-plugin": "npm:10.4.0" ts-dedent: "npm:^2.0.0" peerDependencies: - storybook: ^10.3.6 + storybook: ^10.4.0 vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 10c0/f7e5c57362ba8df8dac4f71dc86d4117cd1edfaf2f61a3ecb0d6bece6b37357f1dc0bf135fd27b5552055b47e0fce5ffba67ffeb2fdedbc75fc986997062bf28 + checksum: 10c0/416240f36b7e93520a6d1168470614fce615062c3c39ea1ad9fe1defffc4f50716b2923210d4e89fa68c1162d89a6f646ef29a08759ed2430ccbf1c0c89453b6 languageName: node linkType: hard -"@storybook/csf-plugin@npm:10.3.6": - version: 10.3.6 - resolution: "@storybook/csf-plugin@npm:10.3.6" +"@storybook/csf-plugin@npm:10.4.0": + version: 10.4.0 + resolution: "@storybook/csf-plugin@npm:10.4.0" dependencies: unplugin: "npm:^2.3.5" peerDependencies: esbuild: "*" rollup: "*" - storybook: ^10.3.6 + storybook: ^10.4.0 vite: "*" webpack: "*" peerDependenciesMeta: @@ -3534,7 +3685,7 @@ __metadata: optional: true webpack: optional: true - checksum: 10c0/593fc6b9b6073c9dacd26f595ccb58f1ac28f3ab3cf63bf3d8d6913285765eb9c4fdb3e1c54356804ec8eccdde24f14cfa7af3e528731eb6d7e52266d81c4213 + checksum: 10c0/9c968636b14beb9b740b42c3e0f0b81ef2662344bb2328e1149b62e71d3e1e45d82bb08788b6a3fe7755c2884d0b5cf8e033937a07659047764dcfeb91cce80b languageName: node linkType: hard @@ -3545,35 +3696,42 @@ __metadata: languageName: node linkType: hard -"@storybook/icons@npm:^2.0.1": - version: 2.0.1 - resolution: "@storybook/icons@npm:2.0.1" +"@storybook/icons@npm:^2.0.2": + version: 2.0.2 + resolution: "@storybook/icons@npm:2.0.2" peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - checksum: 10c0/df2bbf1a5b50f12ab1bf78cae6de4dbf7c49df0e3a5f845553b51b20adbe8386a09fd172ea60342379f9284bb528cba2d0e2659cae6eb8d015cf92c8b32f1222 + checksum: 10c0/072486356fc929ba5a1a225a8636f0e50b2019083e86e4d48d55aeeae4b40f17731cd1eea9cf1785c53e5fc4409fa93aeca15dccb96675c8e7ab536b18ba864c languageName: node linkType: hard -"@storybook/react-dom-shim@npm:10.3.6": - version: 10.3.6 - resolution: "@storybook/react-dom-shim@npm:10.3.6" +"@storybook/react-dom-shim@npm:10.4.0": + version: 10.4.0 + resolution: "@storybook/react-dom-shim@npm:10.4.0" peerDependencies: + "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + "@types/react-dom": ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - storybook: ^10.3.6 - checksum: 10c0/60183fc05b0410ca174f215d3271ffbccdc2680bd0704f58dc931cf60e72f497a9f22c00afa868398ad693c7ec633ef619541d4b0611fc2a577fb09609fcc3c7 + storybook: ^10.4.0 + peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true + checksum: 10c0/d2a07900dd7d35403abb29f23f0f58a53e552003c713a004b465bfc8a781399e3a6062682fe950b79faf5b45bb1955139abe69b6d9f4c3478688b30ebd669274 languageName: node linkType: hard -"@storybook/react-vite@npm:^10.3.6": - version: 10.3.6 - resolution: "@storybook/react-vite@npm:10.3.6" +"@storybook/react-vite@npm:^10.4.0": + version: 10.4.0 + resolution: "@storybook/react-vite@npm:10.4.0" dependencies: "@joshwooding/vite-plugin-react-docgen-typescript": "npm:^0.7.0" "@rollup/pluginutils": "npm:^5.0.2" - "@storybook/builder-vite": "npm:10.3.6" - "@storybook/react": "npm:10.3.6" + "@storybook/builder-vite": "npm:10.4.0" + "@storybook/react": "npm:10.4.0" empathic: "npm:^2.0.0" magic-string: "npm:^0.30.0" react-docgen: "npm:^8.0.0" @@ -3582,29 +3740,35 @@ __metadata: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - storybook: ^10.3.6 + storybook: ^10.4.0 vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 10c0/3b939caf05985f0c6d5049c49b71fd8c7abac1f94f1559cfa135a755f3d94c0ef29bdd8d7f7f68c4676ea66852ed4b43d2e33d18434aa1c72f4aebca928b3e13 + checksum: 10c0/3674c84a59ab75df75bc56fcce9e50464bea05c0d02f6ff6733b734b57d6629b501844a4a9491f01df945eec8c65dd14d9d97552d45aaff49a9782453ee476cf languageName: node linkType: hard -"@storybook/react@npm:10.3.6, @storybook/react@npm:^10.3.6": - version: 10.3.6 - resolution: "@storybook/react@npm:10.3.6" +"@storybook/react@npm:10.4.0, @storybook/react@npm:^10.4.0": + version: 10.4.0 + resolution: "@storybook/react@npm:10.4.0" dependencies: "@storybook/global": "npm:^5.0.0" - "@storybook/react-dom-shim": "npm:10.3.6" + "@storybook/react-dom-shim": "npm:10.4.0" react-docgen: "npm:^8.0.2" react-docgen-typescript: "npm:^2.2.2" peerDependencies: + "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + "@types/react-dom": ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - storybook: ^10.3.6 + storybook: ^10.4.0 typescript: ">= 4.9.x" peerDependenciesMeta: + "@types/react": + optional: true + "@types/react-dom": + optional: true typescript: optional: true - checksum: 10c0/3d3af66105cdca98c537b4bcc3e92f87e3b56d154b24e9b167300e9d5de8a7ba6a5ef3c22203ccb6f4c2f0602a5546273b2b49728aa383ba0f98e66a286647a8 + checksum: 10c0/b23acb83cb5eccd0b37eb2a73158ed444b702f7e484277e6e65ac05d18dff2c3b1dd45c00941a86e7acd4ba3edfe14f79448c9316915426dbce2752ecceeaa5e languageName: node linkType: hard @@ -3708,6 +3872,15 @@ __metadata: languageName: node linkType: hard +"@tybys/wasm-util@npm:^0.10.1": + version: 0.10.2 + resolution: "@tybys/wasm-util@npm:0.10.2" + dependencies: + tslib: "npm:^2.4.0" + checksum: 10c0/26165bcd1fd7269f42d7fbe3de318f854a8968de8397e89fc9a423bb3e2da35a52150f382e6323b3367595beb16d9800a6f35971a5599daf76da1742ec3afc25 + languageName: node + linkType: hard + "@types/acorn@npm:^4.0.0": version: 4.0.6 resolution: "@types/acorn@npm:4.0.6" @@ -6156,7 +6329,7 @@ __metadata: languageName: node linkType: hard -"esbuild@npm:^0.28.0": +"esbuild@npm:^0.28.0, esbuild@npm:~0.28.0": version: 0.28.0 resolution: "esbuild@npm:0.28.0" dependencies: @@ -6245,95 +6418,6 @@ __metadata: languageName: node linkType: hard -"esbuild@npm:~0.27.0": - version: 0.27.1 - resolution: "esbuild@npm:0.27.1" - dependencies: - "@esbuild/aix-ppc64": "npm:0.27.1" - "@esbuild/android-arm": "npm:0.27.1" - "@esbuild/android-arm64": "npm:0.27.1" - "@esbuild/android-x64": "npm:0.27.1" - "@esbuild/darwin-arm64": "npm:0.27.1" - "@esbuild/darwin-x64": "npm:0.27.1" - "@esbuild/freebsd-arm64": "npm:0.27.1" - "@esbuild/freebsd-x64": "npm:0.27.1" - "@esbuild/linux-arm": "npm:0.27.1" - "@esbuild/linux-arm64": "npm:0.27.1" - "@esbuild/linux-ia32": "npm:0.27.1" - "@esbuild/linux-loong64": "npm:0.27.1" - "@esbuild/linux-mips64el": "npm:0.27.1" - "@esbuild/linux-ppc64": "npm:0.27.1" - "@esbuild/linux-riscv64": "npm:0.27.1" - "@esbuild/linux-s390x": "npm:0.27.1" - "@esbuild/linux-x64": "npm:0.27.1" - "@esbuild/netbsd-arm64": "npm:0.27.1" - "@esbuild/netbsd-x64": "npm:0.27.1" - "@esbuild/openbsd-arm64": "npm:0.27.1" - "@esbuild/openbsd-x64": "npm:0.27.1" - "@esbuild/openharmony-arm64": "npm:0.27.1" - "@esbuild/sunos-x64": "npm:0.27.1" - "@esbuild/win32-arm64": "npm:0.27.1" - "@esbuild/win32-ia32": "npm:0.27.1" - "@esbuild/win32-x64": "npm:0.27.1" - dependenciesMeta: - "@esbuild/aix-ppc64": - optional: true - "@esbuild/android-arm": - optional: true - "@esbuild/android-arm64": - optional: true - "@esbuild/android-x64": - optional: true - "@esbuild/darwin-arm64": - optional: true - "@esbuild/darwin-x64": - optional: true - "@esbuild/freebsd-arm64": - optional: true - "@esbuild/freebsd-x64": - optional: true - "@esbuild/linux-arm": - optional: true - "@esbuild/linux-arm64": - optional: true - "@esbuild/linux-ia32": - optional: true - "@esbuild/linux-loong64": - optional: true - "@esbuild/linux-mips64el": - optional: true - "@esbuild/linux-ppc64": - optional: true - "@esbuild/linux-riscv64": - optional: true - "@esbuild/linux-s390x": - optional: true - "@esbuild/linux-x64": - optional: true - "@esbuild/netbsd-arm64": - optional: true - "@esbuild/netbsd-x64": - optional: true - "@esbuild/openbsd-arm64": - optional: true - "@esbuild/openbsd-x64": - optional: true - "@esbuild/openharmony-arm64": - optional: true - "@esbuild/sunos-x64": - optional: true - "@esbuild/win32-arm64": - optional: true - "@esbuild/win32-ia32": - optional: true - "@esbuild/win32-x64": - optional: true - bin: - esbuild: bin/esbuild - checksum: 10c0/8bfcf13a499a9e7b7da4b68273e12b453c7d7a5e39c944c2e5a4c64a0594d6df1391fc168a5353c22bc94eeae38dd9897199ddbbc4973525b0aae18186e996bd - languageName: node - linkType: hard - "escalade@npm:^3.1.1": version: 3.1.1 resolution: "escalade@npm:3.1.1" @@ -6595,9 +6679,9 @@ __metadata: resolution: "extension-template-docs@workspace:docs" dependencies: "@gfazioli/mantine-window": "workspace:*" - "@mantine/code-highlight": "npm:9.2.0" - "@mantine/core": "npm:9.2.0" - "@mantine/hooks": "npm:9.2.0" + "@mantine/code-highlight": "npm:9.2.1" + "@mantine/core": "npm:9.2.1" + "@mantine/hooks": "npm:9.2.1" "@mantinex/demo": "npm:^2.0.0" "@mantinex/dev-icons": "npm:^2.0.0" "@mantinex/mantine-header": "npm:^2.0.0" @@ -7017,15 +7101,6 @@ __metadata: languageName: node linkType: hard -"get-tsconfig@npm:^4.7.5": - version: 4.8.1 - resolution: "get-tsconfig@npm:4.8.1" - dependencies: - resolve-pkg-maps: "npm:^1.0.0" - checksum: 10c0/536ee85d202f604f4b5fb6be81bcd6e6d9a96846811e83e9acc6de4a04fb49506edea0e1b8cf1d5ee7af33e469916ec2809d4c5445ab8ae015a7a51fbd1572f9 - languageName: node - linkType: hard - "get-value@npm:^2.0.3, get-value@npm:^2.0.6": version: 2.0.6 resolution: "get-value@npm:2.0.6" @@ -8923,13 +8998,13 @@ __metadata: resolution: "m-90d2bb8@workspace:." dependencies: "@mantine-tests/core": "npm:^2.1.0" - "@mantine/core": "npm:9.2.0" - "@mantine/hooks": "npm:9.2.0" + "@mantine/core": "npm:9.2.1" + "@mantine/hooks": "npm:9.2.1" "@rollup/plugin-node-resolve": "npm:^16.0.3" "@rollup/plugin-replace": "npm:^6.0.3" - "@storybook/addon-themes": "npm:^10.3.6" - "@storybook/react": "npm:^10.3.6" - "@storybook/react-vite": "npm:^10.3.6" + "@storybook/addon-themes": "npm:^10.4.0" + "@storybook/react": "npm:^10.4.0" + "@storybook/react-vite": "npm:^10.4.0" "@testing-library/dom": "npm:^10.4.1" "@testing-library/jest-dom": "npm:^6.9.1" "@testing-library/react": "npm:^16.3.2" @@ -8953,25 +9028,25 @@ __metadata: jest-axe: "npm:^9.0.0" jest-environment-jsdom: "npm:^29.7.0" mantine-docgen-script: "npm:^1.6.0" - oxfmt: "npm:^0.49.0" - oxlint: "npm:^1.64.0" + oxfmt: "npm:^0.50.0" + oxlint: "npm:^1.65.0" postcss: "npm:^8.5.14" postcss-preset-mantine: "npm:1.18.0" react: "npm:19.2.6" react-dom: "npm:19.2.6" rimraf: "npm:^6.1.3" - rollup: "npm:^4.60.3" + rollup: "npm:^4.60.4" rollup-plugin-banner2: "npm:^1.3.1" rollup-plugin-esbuild: "npm:^6.2.1" rollup-plugin-node-externals: "npm:^8.1.2" rollup-plugin-postcss: "npm:^4.0.2" signale: "npm:^1.4.0" simple-git: "npm:^3.36.0" - storybook: "npm:^10.3.6" + storybook: "npm:^10.4.0" stylelint: "npm:^16.26.1" stylelint-config-standard-scss: "npm:^14.0.0" syncpack: "npm:^13.0.4" - tsx: "npm:^4.21.0" + tsx: "npm:^4.22.1" typescript: "npm:6.0.3" version-next: "npm:^1.0.2" vite: "npm:^6.4.2" @@ -10223,29 +10298,168 @@ __metadata: languageName: node linkType: hard -"oxfmt@npm:^0.49.0": - version: 0.49.0 - resolution: "oxfmt@npm:0.49.0" - dependencies: - "@oxfmt/binding-android-arm-eabi": "npm:0.49.0" - "@oxfmt/binding-android-arm64": "npm:0.49.0" - "@oxfmt/binding-darwin-arm64": "npm:0.49.0" - "@oxfmt/binding-darwin-x64": "npm:0.49.0" - "@oxfmt/binding-freebsd-x64": "npm:0.49.0" - "@oxfmt/binding-linux-arm-gnueabihf": "npm:0.49.0" - "@oxfmt/binding-linux-arm-musleabihf": "npm:0.49.0" - "@oxfmt/binding-linux-arm64-gnu": "npm:0.49.0" - "@oxfmt/binding-linux-arm64-musl": "npm:0.49.0" - "@oxfmt/binding-linux-ppc64-gnu": "npm:0.49.0" - "@oxfmt/binding-linux-riscv64-gnu": "npm:0.49.0" - "@oxfmt/binding-linux-riscv64-musl": "npm:0.49.0" - "@oxfmt/binding-linux-s390x-gnu": "npm:0.49.0" - "@oxfmt/binding-linux-x64-gnu": "npm:0.49.0" - "@oxfmt/binding-linux-x64-musl": "npm:0.49.0" - "@oxfmt/binding-openharmony-arm64": "npm:0.49.0" - "@oxfmt/binding-win32-arm64-msvc": "npm:0.49.0" - "@oxfmt/binding-win32-ia32-msvc": "npm:0.49.0" - "@oxfmt/binding-win32-x64-msvc": "npm:0.49.0" +"oxc-parser@npm:^0.127.0": + version: 0.127.0 + resolution: "oxc-parser@npm:0.127.0" + dependencies: + "@oxc-parser/binding-android-arm-eabi": "npm:0.127.0" + "@oxc-parser/binding-android-arm64": "npm:0.127.0" + "@oxc-parser/binding-darwin-arm64": "npm:0.127.0" + "@oxc-parser/binding-darwin-x64": "npm:0.127.0" + "@oxc-parser/binding-freebsd-x64": "npm:0.127.0" + "@oxc-parser/binding-linux-arm-gnueabihf": "npm:0.127.0" + "@oxc-parser/binding-linux-arm-musleabihf": "npm:0.127.0" + "@oxc-parser/binding-linux-arm64-gnu": "npm:0.127.0" + "@oxc-parser/binding-linux-arm64-musl": "npm:0.127.0" + "@oxc-parser/binding-linux-ppc64-gnu": "npm:0.127.0" + "@oxc-parser/binding-linux-riscv64-gnu": "npm:0.127.0" + "@oxc-parser/binding-linux-riscv64-musl": "npm:0.127.0" + "@oxc-parser/binding-linux-s390x-gnu": "npm:0.127.0" + "@oxc-parser/binding-linux-x64-gnu": "npm:0.127.0" + "@oxc-parser/binding-linux-x64-musl": "npm:0.127.0" + "@oxc-parser/binding-openharmony-arm64": "npm:0.127.0" + "@oxc-parser/binding-wasm32-wasi": "npm:0.127.0" + "@oxc-parser/binding-win32-arm64-msvc": "npm:0.127.0" + "@oxc-parser/binding-win32-ia32-msvc": "npm:0.127.0" + "@oxc-parser/binding-win32-x64-msvc": "npm:0.127.0" + "@oxc-project/types": "npm:^0.127.0" + dependenciesMeta: + "@oxc-parser/binding-android-arm-eabi": + optional: true + "@oxc-parser/binding-android-arm64": + optional: true + "@oxc-parser/binding-darwin-arm64": + optional: true + "@oxc-parser/binding-darwin-x64": + optional: true + "@oxc-parser/binding-freebsd-x64": + optional: true + "@oxc-parser/binding-linux-arm-gnueabihf": + optional: true + "@oxc-parser/binding-linux-arm-musleabihf": + optional: true + "@oxc-parser/binding-linux-arm64-gnu": + optional: true + "@oxc-parser/binding-linux-arm64-musl": + optional: true + "@oxc-parser/binding-linux-ppc64-gnu": + optional: true + "@oxc-parser/binding-linux-riscv64-gnu": + optional: true + "@oxc-parser/binding-linux-riscv64-musl": + optional: true + "@oxc-parser/binding-linux-s390x-gnu": + optional: true + "@oxc-parser/binding-linux-x64-gnu": + optional: true + "@oxc-parser/binding-linux-x64-musl": + optional: true + "@oxc-parser/binding-openharmony-arm64": + optional: true + "@oxc-parser/binding-wasm32-wasi": + optional: true + "@oxc-parser/binding-win32-arm64-msvc": + optional: true + "@oxc-parser/binding-win32-ia32-msvc": + optional: true + "@oxc-parser/binding-win32-x64-msvc": + optional: true + checksum: 10c0/9d109fb3a79c0862a36434cc01c8c0e8f6cf5f1efe9369e02d2183fd518479b10262cf092da2e7f8328befae446afa05ccf742ce12f8346d81429c8f2cdf1651 + languageName: node + linkType: hard + +"oxc-resolver@npm:^11.19.1": + version: 11.19.1 + resolution: "oxc-resolver@npm:11.19.1" + dependencies: + "@oxc-resolver/binding-android-arm-eabi": "npm:11.19.1" + "@oxc-resolver/binding-android-arm64": "npm:11.19.1" + "@oxc-resolver/binding-darwin-arm64": "npm:11.19.1" + "@oxc-resolver/binding-darwin-x64": "npm:11.19.1" + "@oxc-resolver/binding-freebsd-x64": "npm:11.19.1" + "@oxc-resolver/binding-linux-arm-gnueabihf": "npm:11.19.1" + "@oxc-resolver/binding-linux-arm-musleabihf": "npm:11.19.1" + "@oxc-resolver/binding-linux-arm64-gnu": "npm:11.19.1" + "@oxc-resolver/binding-linux-arm64-musl": "npm:11.19.1" + "@oxc-resolver/binding-linux-ppc64-gnu": "npm:11.19.1" + "@oxc-resolver/binding-linux-riscv64-gnu": "npm:11.19.1" + "@oxc-resolver/binding-linux-riscv64-musl": "npm:11.19.1" + "@oxc-resolver/binding-linux-s390x-gnu": "npm:11.19.1" + "@oxc-resolver/binding-linux-x64-gnu": "npm:11.19.1" + "@oxc-resolver/binding-linux-x64-musl": "npm:11.19.1" + "@oxc-resolver/binding-openharmony-arm64": "npm:11.19.1" + "@oxc-resolver/binding-wasm32-wasi": "npm:11.19.1" + "@oxc-resolver/binding-win32-arm64-msvc": "npm:11.19.1" + "@oxc-resolver/binding-win32-ia32-msvc": "npm:11.19.1" + "@oxc-resolver/binding-win32-x64-msvc": "npm:11.19.1" + dependenciesMeta: + "@oxc-resolver/binding-android-arm-eabi": + optional: true + "@oxc-resolver/binding-android-arm64": + optional: true + "@oxc-resolver/binding-darwin-arm64": + optional: true + "@oxc-resolver/binding-darwin-x64": + optional: true + "@oxc-resolver/binding-freebsd-x64": + optional: true + "@oxc-resolver/binding-linux-arm-gnueabihf": + optional: true + "@oxc-resolver/binding-linux-arm-musleabihf": + optional: true + "@oxc-resolver/binding-linux-arm64-gnu": + optional: true + "@oxc-resolver/binding-linux-arm64-musl": + optional: true + "@oxc-resolver/binding-linux-ppc64-gnu": + optional: true + "@oxc-resolver/binding-linux-riscv64-gnu": + optional: true + "@oxc-resolver/binding-linux-riscv64-musl": + optional: true + "@oxc-resolver/binding-linux-s390x-gnu": + optional: true + "@oxc-resolver/binding-linux-x64-gnu": + optional: true + "@oxc-resolver/binding-linux-x64-musl": + optional: true + "@oxc-resolver/binding-openharmony-arm64": + optional: true + "@oxc-resolver/binding-wasm32-wasi": + optional: true + "@oxc-resolver/binding-win32-arm64-msvc": + optional: true + "@oxc-resolver/binding-win32-ia32-msvc": + optional: true + "@oxc-resolver/binding-win32-x64-msvc": + optional: true + checksum: 10c0/8ac4eaffa9c0bcbb9f4f4a2b43786457ec5a68684d8776cb78b5a15ce3d1a79d3e67262aa3c635f98a0c1cd6cd56a31fcb05bffb9a286100056e4ab06b928833 + languageName: node + linkType: hard + +"oxfmt@npm:^0.50.0": + version: 0.50.0 + resolution: "oxfmt@npm:0.50.0" + dependencies: + "@oxfmt/binding-android-arm-eabi": "npm:0.50.0" + "@oxfmt/binding-android-arm64": "npm:0.50.0" + "@oxfmt/binding-darwin-arm64": "npm:0.50.0" + "@oxfmt/binding-darwin-x64": "npm:0.50.0" + "@oxfmt/binding-freebsd-x64": "npm:0.50.0" + "@oxfmt/binding-linux-arm-gnueabihf": "npm:0.50.0" + "@oxfmt/binding-linux-arm-musleabihf": "npm:0.50.0" + "@oxfmt/binding-linux-arm64-gnu": "npm:0.50.0" + "@oxfmt/binding-linux-arm64-musl": "npm:0.50.0" + "@oxfmt/binding-linux-ppc64-gnu": "npm:0.50.0" + "@oxfmt/binding-linux-riscv64-gnu": "npm:0.50.0" + "@oxfmt/binding-linux-riscv64-musl": "npm:0.50.0" + "@oxfmt/binding-linux-s390x-gnu": "npm:0.50.0" + "@oxfmt/binding-linux-x64-gnu": "npm:0.50.0" + "@oxfmt/binding-linux-x64-musl": "npm:0.50.0" + "@oxfmt/binding-openharmony-arm64": "npm:0.50.0" + "@oxfmt/binding-win32-arm64-msvc": "npm:0.50.0" + "@oxfmt/binding-win32-ia32-msvc": "npm:0.50.0" + "@oxfmt/binding-win32-x64-msvc": "npm:0.50.0" tinypool: "npm:2.1.0" peerDependencies: svelte: ^5.0.0 @@ -10293,33 +10507,33 @@ __metadata: optional: true bin: oxfmt: bin/oxfmt - checksum: 10c0/2f9e15aa5285dcd7d7ec913b97ba64dbb826c622d2d16fc4c7339bbf628f0d45aace01e1168d654b3ea87b81afbd11b95d68f5fc91eb65d5839f6eceb0968375 - languageName: node - linkType: hard - -"oxlint@npm:^1.64.0": - version: 1.64.0 - resolution: "oxlint@npm:1.64.0" - dependencies: - "@oxlint/binding-android-arm-eabi": "npm:1.64.0" - "@oxlint/binding-android-arm64": "npm:1.64.0" - "@oxlint/binding-darwin-arm64": "npm:1.64.0" - "@oxlint/binding-darwin-x64": "npm:1.64.0" - "@oxlint/binding-freebsd-x64": "npm:1.64.0" - "@oxlint/binding-linux-arm-gnueabihf": "npm:1.64.0" - "@oxlint/binding-linux-arm-musleabihf": "npm:1.64.0" - "@oxlint/binding-linux-arm64-gnu": "npm:1.64.0" - "@oxlint/binding-linux-arm64-musl": "npm:1.64.0" - "@oxlint/binding-linux-ppc64-gnu": "npm:1.64.0" - "@oxlint/binding-linux-riscv64-gnu": "npm:1.64.0" - "@oxlint/binding-linux-riscv64-musl": "npm:1.64.0" - "@oxlint/binding-linux-s390x-gnu": "npm:1.64.0" - "@oxlint/binding-linux-x64-gnu": "npm:1.64.0" - "@oxlint/binding-linux-x64-musl": "npm:1.64.0" - "@oxlint/binding-openharmony-arm64": "npm:1.64.0" - "@oxlint/binding-win32-arm64-msvc": "npm:1.64.0" - "@oxlint/binding-win32-ia32-msvc": "npm:1.64.0" - "@oxlint/binding-win32-x64-msvc": "npm:1.64.0" + checksum: 10c0/75e2975ebc2943db9a6adbad6c7a8e4552af8739ce27ef379eca355421ddd4392021d8b7615eb7dd76789af40c3bed419987ef220a05ab4e872b0beeff0553c7 + languageName: node + linkType: hard + +"oxlint@npm:^1.65.0": + version: 1.65.0 + resolution: "oxlint@npm:1.65.0" + dependencies: + "@oxlint/binding-android-arm-eabi": "npm:1.65.0" + "@oxlint/binding-android-arm64": "npm:1.65.0" + "@oxlint/binding-darwin-arm64": "npm:1.65.0" + "@oxlint/binding-darwin-x64": "npm:1.65.0" + "@oxlint/binding-freebsd-x64": "npm:1.65.0" + "@oxlint/binding-linux-arm-gnueabihf": "npm:1.65.0" + "@oxlint/binding-linux-arm-musleabihf": "npm:1.65.0" + "@oxlint/binding-linux-arm64-gnu": "npm:1.65.0" + "@oxlint/binding-linux-arm64-musl": "npm:1.65.0" + "@oxlint/binding-linux-ppc64-gnu": "npm:1.65.0" + "@oxlint/binding-linux-riscv64-gnu": "npm:1.65.0" + "@oxlint/binding-linux-riscv64-musl": "npm:1.65.0" + "@oxlint/binding-linux-s390x-gnu": "npm:1.65.0" + "@oxlint/binding-linux-x64-gnu": "npm:1.65.0" + "@oxlint/binding-linux-x64-musl": "npm:1.65.0" + "@oxlint/binding-openharmony-arm64": "npm:1.65.0" + "@oxlint/binding-win32-arm64-msvc": "npm:1.65.0" + "@oxlint/binding-win32-ia32-msvc": "npm:1.65.0" + "@oxlint/binding-win32-x64-msvc": "npm:1.65.0" peerDependencies: oxlint-tsgolint: ">=0.22.1" dependenciesMeta: @@ -10366,7 +10580,7 @@ __metadata: optional: true bin: oxlint: bin/oxlint - checksum: 10c0/c2e4822f075b39e6efe8e8f87a9432359e8c2c7e6240b1951dfd4cce4517ed664a3564dc2bcb9473731415927256721ab7fd7371839d280f98ba99a8cbb66998 + checksum: 10c0/00cf5d8dd42657da87eefa15b0b72ef3c8216529ad7d171115134e0b4c90fe2061f5e46e0df6e3370c22742d760b1d50358c7eb366d58a5544c4295c2bf792b6 languageName: node linkType: hard @@ -11966,35 +12180,35 @@ __metadata: languageName: node linkType: hard -"rollup@npm:^4.60.3": - version: 4.60.3 - resolution: "rollup@npm:4.60.3" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.60.3" - "@rollup/rollup-android-arm64": "npm:4.60.3" - "@rollup/rollup-darwin-arm64": "npm:4.60.3" - "@rollup/rollup-darwin-x64": "npm:4.60.3" - "@rollup/rollup-freebsd-arm64": "npm:4.60.3" - "@rollup/rollup-freebsd-x64": "npm:4.60.3" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.60.3" - "@rollup/rollup-linux-arm-musleabihf": "npm:4.60.3" - "@rollup/rollup-linux-arm64-gnu": "npm:4.60.3" - "@rollup/rollup-linux-arm64-musl": "npm:4.60.3" - "@rollup/rollup-linux-loong64-gnu": "npm:4.60.3" - "@rollup/rollup-linux-loong64-musl": "npm:4.60.3" - "@rollup/rollup-linux-ppc64-gnu": "npm:4.60.3" - "@rollup/rollup-linux-ppc64-musl": "npm:4.60.3" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.60.3" - "@rollup/rollup-linux-riscv64-musl": "npm:4.60.3" - "@rollup/rollup-linux-s390x-gnu": "npm:4.60.3" - "@rollup/rollup-linux-x64-gnu": "npm:4.60.3" - "@rollup/rollup-linux-x64-musl": "npm:4.60.3" - "@rollup/rollup-openbsd-x64": "npm:4.60.3" - "@rollup/rollup-openharmony-arm64": "npm:4.60.3" - "@rollup/rollup-win32-arm64-msvc": "npm:4.60.3" - "@rollup/rollup-win32-ia32-msvc": "npm:4.60.3" - "@rollup/rollup-win32-x64-gnu": "npm:4.60.3" - "@rollup/rollup-win32-x64-msvc": "npm:4.60.3" +"rollup@npm:^4.60.4": + version: 4.60.4 + resolution: "rollup@npm:4.60.4" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.60.4" + "@rollup/rollup-android-arm64": "npm:4.60.4" + "@rollup/rollup-darwin-arm64": "npm:4.60.4" + "@rollup/rollup-darwin-x64": "npm:4.60.4" + "@rollup/rollup-freebsd-arm64": "npm:4.60.4" + "@rollup/rollup-freebsd-x64": "npm:4.60.4" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.60.4" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.60.4" + "@rollup/rollup-linux-arm64-gnu": "npm:4.60.4" + "@rollup/rollup-linux-arm64-musl": "npm:4.60.4" + "@rollup/rollup-linux-loong64-gnu": "npm:4.60.4" + "@rollup/rollup-linux-loong64-musl": "npm:4.60.4" + "@rollup/rollup-linux-ppc64-gnu": "npm:4.60.4" + "@rollup/rollup-linux-ppc64-musl": "npm:4.60.4" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.60.4" + "@rollup/rollup-linux-riscv64-musl": "npm:4.60.4" + "@rollup/rollup-linux-s390x-gnu": "npm:4.60.4" + "@rollup/rollup-linux-x64-gnu": "npm:4.60.4" + "@rollup/rollup-linux-x64-musl": "npm:4.60.4" + "@rollup/rollup-openbsd-x64": "npm:4.60.4" + "@rollup/rollup-openharmony-arm64": "npm:4.60.4" + "@rollup/rollup-win32-arm64-msvc": "npm:4.60.4" + "@rollup/rollup-win32-ia32-msvc": "npm:4.60.4" + "@rollup/rollup-win32-x64-gnu": "npm:4.60.4" + "@rollup/rollup-win32-x64-msvc": "npm:4.60.4" "@types/estree": "npm:1.0.8" fsevents: "npm:~2.3.2" dependenciesMeta: @@ -12052,7 +12266,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 10c0/72c9c768f3fabeaeff228b6364e6600c169d6c231a4324c47c34880fd8961aebacd974cf905ecc2db75e56c6491bdd676409a06aecf589791bf419cd41d06e76 + checksum: 10c0/2734511579da220408eefb877b51281767d790652cee25da8fcd4936c947e3db14882b5edb1d0d5d5bf60f2a71a58ae7d5f7f46c11e3fdf33182538953886243 languageName: node linkType: hard @@ -12599,12 +12813,12 @@ __metadata: languageName: node linkType: hard -"storybook@npm:^10.3.6": - version: 10.3.6 - resolution: "storybook@npm:10.3.6" +"storybook@npm:^10.4.0": + version: 10.4.0 + resolution: "storybook@npm:10.4.0" dependencies: "@storybook/global": "npm:^5.0.0" - "@storybook/icons": "npm:^2.0.1" + "@storybook/icons": "npm:^2.0.2" "@testing-library/jest-dom": "npm:^6.9.1" "@testing-library/user-event": "npm:^14.6.1" "@vitest/expect": "npm:3.2.4" @@ -12612,21 +12826,26 @@ __metadata: "@webcontainer/env": "npm:^1.1.1" esbuild: "npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0 || ^0.26.0 || ^0.27.0" open: "npm:^10.2.0" + oxc-parser: "npm:^0.127.0" + oxc-resolver: "npm:^11.19.1" recast: "npm:^0.23.5" semver: "npm:^7.7.3" use-sync-external-store: "npm:^1.5.0" ws: "npm:^8.18.0" peerDependencies: + "@types/react": ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 prettier: ^2 || ^3 vite-plus: ^0.1.15 peerDependenciesMeta: + "@types/react": + optional: true prettier: optional: true vite-plus: optional: true bin: storybook: ./dist/bin/dispatcher.js - checksum: 10c0/ee6702667459ba2d49269ddd63a7281f17816fcdd4bacd338ed47a4a8e7ad65760c90d99f6b2dfdfd0a564bcfcab3c1ea05b50bf3aafc6b5b19a039a5da77870 + checksum: 10c0/f6e493819b68dbf4a182cd31d5717db08481a25cfc8c4ab6139fbb70e039a9d4e6d54ff1f8280d3b6052a06ef32242d3753bd9cbbdf91392f4c65a92acf8cff6 languageName: node linkType: hard @@ -13298,19 +13517,18 @@ __metadata: languageName: node linkType: hard -"tsx@npm:^4.21.0": - version: 4.21.0 - resolution: "tsx@npm:4.21.0" +"tsx@npm:^4.22.1": + version: 4.22.1 + resolution: "tsx@npm:4.22.1" dependencies: - esbuild: "npm:~0.27.0" + esbuild: "npm:~0.28.0" fsevents: "npm:~2.3.3" - get-tsconfig: "npm:^4.7.5" dependenciesMeta: fsevents: optional: true bin: tsx: dist/cli.mjs - checksum: 10c0/f5072923cd8459a1f9a26df87823a2ab5754641739d69df2a20b415f61814322b751fa6be85db7c6ec73cf68ba8fac2fd1cfc76bdb0aa86ded984d84d5d2126b + checksum: 10c0/ca9f777c404d71faa827731da2097f7042d25decfc59b7cc9a6d1a33fe46eaf586bb4e1f73b271a2f80fd5aaeebf5f0f5b13bde0290f2773d9eaaa78b4dc9018 languageName: node linkType: hard