diff --git a/.codex-kit-state.json b/.codex-kit-state.json index 2d2d16f..bedf874 100644 --- a/.codex-kit-state.json +++ b/.codex-kit-state.json @@ -1,9 +1,9 @@ { "version": 1, "template": { - "availableHash": "fcb414d590e1fe1333f365a1f7fd0df4f2eaed249465c9e2c0e5849712b1cccf", - "availableVersion": "1.0.18", - "appliedHash": "fcb414d590e1fe1333f365a1f7fd0df4f2eaed249465c9e2c0e5849712b1cccf", - "appliedAt": "2026-07-26T11:14:37.996Z" + "availableHash": "f6a02cb2b17078ae108000975e2c2105b6e208e8f7cfeeb19e1765fb52d39b81", + "availableVersion": "1.1.5", + "appliedHash": "f6a02cb2b17078ae108000975e2c2105b6e208e8f7cfeeb19e1765fb52d39b81", + "appliedAt": "2026-08-14T05:46:22.901Z" } } diff --git a/AGENTS.md b/AGENTS.md index 23ba772..e915031 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -17,6 +17,13 @@ and colocate tests in `.test.ts`. - Match nearby source, JSDoc, and test patterns. Biome formatting uses two spaces, single quotes, semicolons, and an 80-column line width. +- Name domain values and helpers by intent. Keep casing consistent in code-owned + representations; preserve external names at the boundary and map them once. + Comment only non-obvious constraints, invariants, tradeoffs, or workarounds. +- Name constants for domain rules, limits, durations, units, and protocol + values; keep obvious indexes and empty-state literals inline. For repeated + closed-set runtime values, use one immutable source and derive TypeScript + types from it. - `src/index.ts` is generated by `pnpm run generate-index`; do not hand-edit it. A public utility's directory and source filename must match for the generator to include it. @@ -29,7 +36,10 @@ - Match existing structure and reuse existing types and helpers. Keep changes minimal, localized, and limited to the requested behavior. -- Add or update the smallest focused colocated Vitest tests for behavior changes. +- Add or update focused colocated Vitest tests for changed contracts, + regressions, and meaningful boundaries, using one representative case per + equivalent behavior. Preserve existing assertions unless behavior + intentionally changes; skip redundant and implementation-detail cases. - After adding, updating, moving, or removing source code, use the project `$verify-source-changes` skill to determine the next SemVer version, update `docs-md/changelog.md`, regenerate documentation and exports, then inspect diff --git a/TEMPLATE_AGENTS.md b/TEMPLATE_AGENTS.md index 44e7259..0adb230 100644 --- a/TEMPLATE_AGENTS.md +++ b/TEMPLATE_AGENTS.md @@ -92,6 +92,14 @@ conditional procedures into validated project skills. - Reuse existing constants, schemas, enums, shared types, and components before creating duplicates. Add reusable domain values at their existing source of truth instead of scattering magic strings. +- Replace numeric literals that encode domain rules, limits, durations, units, + or protocol values with descriptively named constants. Universally obvious + structural values, such as basic indexes or empty-state values, may remain + inline. +- Promote repeated closed-set domain values used in production control flow to + feature-owned immutable runtime constants. Where the language supports it, + derive static types from that runtime source; keep incidental presentation, + browser, protocol, route, environment, and test-contract strings inline. ## Project Discovery @@ -100,18 +108,53 @@ conditional procedures into validated project skills. Do not assume tools from other projects. - Keep discovered stack-specific guidance in the project's `# Project-Specific Instructions`, not in this shared template. +- For user-facing work, perform a UI/style preflight before editing: inspect the + closest same-purpose shipped features (especially tables, filters, search, + forms, dialogs, and page layouts) and identify their design-system primitives, + tokens, spacing, typography, responsive behavior, interactions, states, and + accessibility conventions. Reuse applicable components and patterns. +- For new or materially changed user-facing interfaces, preserve accessibility + as a baseline: prefer semantic elements and native controls; provide accessible + names, labels, instructions, errors, and state; support keyboard operation, + logical focus order, visible focus, and appropriate focus management; provide + meaningful text alternatives; maintain readable typography and sufficient + contrast; and never rely on color alone to communicate meaning. Use ARIA only + when native semantics are insufficient, and keep ARIA roles, properties, and + states valid and synchronized with behavior. +- When practical, verify changed interaction paths with the repository's + accessibility tooling and a manual keyboard/focus check. Report any unavailable + checks or known limitations. +- If no written standard exists but trustworthy repeated precedent does, derive + concise durable guidance in the project: always-on conventions belong in + `AGENTS.md`; feature-specific decisions and approved exceptions belong in + `PLANS.md`. During development, keep new UI aligned with that standard. +- Pause and ask the user whether to keep, update, or override the standard + before deliberate visual divergence, changing an established guideline, + resolving conflicting precedents, or proceeding without a trustworthy + analogue. Include the evidence and affected pattern in the question. +- If browser or screenshot tooling exists, compare the rendered feature with + the analogue across relevant responsive sizes and states. Otherwise, report + that rendered comparison was unavailable. ## Commands And Verification - Avoid broad commands. After changes, run the smallest targeted verification that meaningfully validates them when practical, then report the command and result. Use the repository's documented package manager and scripts. -- For behavior changes and bug fixes, add or update the smallest focused - automated tests that meaningfully prevent regression when the repository has - an established test setup. -- Do not introduce a test framework or create low-value tests solely to satisfy - this rule. If automated coverage is impractical, explain why and perform the - strongest targeted verification available. +- Select tests for regression value rather than exhaustive coverage. When the + repository has an established test setup, cover changed observable contracts, + reported regressions, meaningful boundaries, and plausible costly failures, + especially security, trust-boundary, or data-loss risks. +- Use one representative case per equivalent behavior class. Skip redundant + permutations, implementation-detail assertions, and contrived or unreachable + states unless a requirement or past defect justifies them. +- Treat existing tests as regression contracts. Preserve their assertions unless + the requested behavior intentionally changes. When behavior changes, update + only the affected tests and add coverage for the new contract; never weaken or + delete tests merely to make the suite pass. +- Do not introduce a test framework solely to satisfy this rule. If automated + coverage is impractical, explain why and perform the strongest targeted + verification available. - Run the relevant focused tests after changing tested behavior. - When adding or updating dependencies, pin exact versions rather than ranges. With pnpm, use `pnpm add -E` (`--save-exact`). @@ -121,20 +164,63 @@ conditional procedures into validated project skills. ## Structure -- Follow the repository's organization and naming. Prefer focused files and - split mixed responsibilities when readability improves. -- Keep route and page files focused on page-level composition, data loading, and - orchestration. Extract substantial self-contained UI sections and complex - page-specific logic into colocated feature components or modules. Keep small - one-use markup inline; do not create components solely to reduce line count. +- Follow the repository's organization and naming. Organize feature-specific + code under the feature's existing directory; when a feature contains multiple + substantial UI pieces, place them in a `/components` subdirectory. + Keep broadly reused code in the repository's established shared locations. +- Complete every new or materially changed feature through a semantic pass: + implement and stabilize it, map each responsibility to its final file, extract + independently understandable concerns, validate the decomposed implementation, + then hand it off to `code-reviewer`. Pages, routes, controllers, commands, and + entrypoints contain composition and orchestration only. Web page files may keep + framework exports, metadata, loading, guards, page-level state, minimal layout + wrappers, and imported child composition, but not child components, substantial + UI sections, or domain logic. Independently changeable UI concerns (tables, + filters, forms, dialogs, and sections) belong in descriptive feature-local + component files. Hooks, schemas, data access, transformations, and domain logic + move out of presentation files when independently testable or when they obscure + the component's primary responsibility. Avoid generic `utils`, `helpers`, or + `components` dumping grounds; filenames must identify owned behavior. Keep + components feature-local by default; promote them to shared/design-system + locations only when reused across features or explicitly global primitives. + Tiny private helpers or markup may remain inline only when inseparable from the + file's single responsibility. Do not broaden an unrelated small fix, but leave + any new or materially changed feature decomposed. Every completed feature gets + an automatic `code-reviewer` structure review; exceptions require a concrete + framework or tooling constraint identified in the handoff. - Use intent-revealing domain names. A reader should understand what a variable contains or what a helper guarantees at the call site without opening its implementation. Avoid vague transformation names such as `normalized`, `processed`, `result`, or `data` when a value- or behavior-specific name is - available. + available. Prefer clear structure, and simplify or extract complex logic before + relying on comments. Use comments to explain non-obvious purpose, constraints, + invariants, tradeoffs, or workarounds, not to narrate statements. +- Keep naming conventions consistent within each code-owned object, schema, + type, and module. Do not mix identifier casing styles in the same + representation unless required by an external contract or framework. + Preserve externally defined names at the boundary, then map them once to the + project's internal convention. - Do not reorganize feature directories, shared modules, routes, server boundaries, schemas, or state patterns unless requested and approved. +## React And React Native TypeScript Naming + +- In React, React Native, and Expo projects using TypeScript, use `kebab-case` + for code-owned file and directory names. Preserve framework-mandated and + contract-derived names, including Expo Router notation and React Native + platform suffixes such as `.ios.tsx`, `.android.tsx`, and `.native.tsx`. +- Use `PascalCase` for components, context providers and consumers, type aliases, + interfaces, and enums. +- Use `camelCase` for functions, variables, props, state, and code-owned object + properties. +- Name custom hooks as `useThing`, higher-order components as `withThing`, and + local event-handler functions as `handleThing`. Name callback props with `on`, + such as `onSubmit`. +- Prefix boolean props, state, and variables with `is`, `has`, or `should` + when the prefix accurately describes their meaning. +- Use `UPPER_SNAKE_CASE` for module-level constants and enum members. Keep + ordinary local `const` bindings in `camelCase`. + ## Data And Validation - Update schemas first, then generate migrations or derived types. Never edit diff --git a/docs-md/changelog.md b/docs-md/changelog.md index 032f28c..f8ac0eb 100644 --- a/docs-md/changelog.md +++ b/docs-md/changelog.md @@ -5,6 +5,9 @@ id: changelog # Changelog +##### 4.4.1 + +- Fix vulnerability issues ##### 4.4.0 @@ -15,6 +18,7 @@ id: changelog - Fix API documentation generation for utilities with TypeScript imports ##### 4.3.4 + - Trying to fix some publish workflow issue - Some changes to bundling - Replace eslint and prettier with biome diff --git a/package.json b/package.json index b724366..5a23e72 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "common-utils-pkg", - "version": "4.4.0", + "version": "4.4.1", "description": "A package of commonly used JavaScript utilities.", "keywords": ["utilities", "npm", "module", "javascript", "es6", "functions"], "homepage": "https://common-utils-pkg.js.org/", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 687ba60..6e66c78 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,6 +16,12 @@ overrides: '@babel/core': 7.29.7 documentation@13.2.5>vue-template-compiler: '-' webpackbar: 7.0.0 + brace-expansion: 1.1.18 + postcss: 8.5.23 + fast-uri: 3.1.5 + js-yaml: 4.3.1 + documentation@13.2.5>js-yaml: 3.15.1 + nanoid: 3.3.18 importers: @@ -30,13 +36,13 @@ importers: version: 2.5.0 '@docusaurus/core': specifier: 3.10.2 - version: 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + version: 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) '@docusaurus/preset-classic': specifier: 3.10.2 - version: 3.10.2(@algolia/client-search@5.56.0)(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(@types/react@19.2.17)(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(search-insights@2.17.3)(typescript@7.0.1-rc) + version: 3.10.2(@algolia/client-search@5.56.0)(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(@types/react@19.2.17)(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(search-insights@2.17.3)(typescript@7.0.1-rc) '@docusaurus/types': specifier: 3.10.2 - version: 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + version: 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@mdx-js/react': specifier: 3.1.1 version: 3.1.1(@types/react@19.2.17)(react@19.2.5) @@ -854,241 +860,241 @@ packages: resolution: {integrity: sha512-isfLLwksH3yHkFXfCI2Gcaqg7wGGHZZwunoJzEZk0yKYIokgre6hYVFibKL3SYAoR1kBXova8LB+JoO5vZzi9w==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-cascade-layers@5.0.2': resolution: {integrity: sha512-nWBE08nhO8uWl6kSAeCx4im7QfVko3zLrtgWZY4/bP87zrSPpSyN/3W3TDqz1jJuH+kbKOHXg5rJnK+ZVYcFFg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-color-function-display-p3-linear@1.0.1': resolution: {integrity: sha512-E5qusdzhlmO1TztYzDIi8XPdPoYOjoTY6HBYBCYSj+Gn4gQRBlvjgPQXzfzuPQqt8EhkC/SzPKObg4Mbn8/xMg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-color-function@4.0.12': resolution: {integrity: sha512-yx3cljQKRaSBc2hfh8rMZFZzChaFgwmO2JfFgFr1vMcF3C/uyy5I4RFIBOIWGq1D+XbKCG789CGkG6zzkLpagA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-color-mix-function@3.0.12': resolution: {integrity: sha512-4STERZfCP5Jcs13P1U5pTvI9SkgLgfMUMhdXW8IlJWkzOOOqhZIjcNhWtNJZes2nkBDsIKJ0CJtFtuaZ00moag==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-color-mix-variadic-function-arguments@1.0.2': resolution: {integrity: sha512-rM67Gp9lRAkTo+X31DUqMEq+iK+EFqsidfecmhrteErxJZb6tUoJBVQca1Vn1GpDql1s1rD1pKcuYzMsg7Z1KQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-content-alt-text@2.0.8': resolution: {integrity: sha512-9SfEW9QCxEpTlNMnpSqFaHyzsiRpZ5J5+KqCu1u5/eEJAWsMhzT40qf0FIbeeglEvrGRMdDzAxMIz3wqoGSb+Q==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-contrast-color-function@2.0.12': resolution: {integrity: sha512-YbwWckjK3qwKjeYz/CijgcS7WDUCtKTd8ShLztm3/i5dhh4NaqzsbYnhm4bjrpFpnLZ31jVcbK8YL77z3GBPzA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-exponential-functions@2.0.9': resolution: {integrity: sha512-abg2W/PI3HXwS/CZshSa79kNWNZHdJPMBXeZNyPQFbbj8sKO3jXxOt/wF7juJVjyDTc6JrvaUZYFcSBZBhaxjw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-font-format-keywords@4.0.0': resolution: {integrity: sha512-usBzw9aCRDvchpok6C+4TXC57btc4bJtmKQWOHQxOVKen1ZfVqBUuCZ/wuqdX5GHsD0NRSr9XTP+5ID1ZZQBXw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-gamut-mapping@2.0.11': resolution: {integrity: sha512-fCpCUgZNE2piVJKC76zFsgVW1apF6dpYsqGyH8SIeCcM4pTEsRTWTLCaJIMKFEundsCKwY1rwfhtrio04RJ4Dw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-gradients-interpolation-method@5.0.12': resolution: {integrity: sha512-jugzjwkUY0wtNrZlFeyXzimUL3hN4xMvoPnIXxoZqxDvjZRiSh+itgHcVUWzJ2VwD/VAMEgCLvtaJHX+4Vj3Ow==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-hwb-function@4.0.12': resolution: {integrity: sha512-mL/+88Z53KrE4JdePYFJAQWFrcADEqsLprExCM04GDNgHIztwFzj0Mbhd/yxMBngq0NIlz58VVxjt5abNs1VhA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-ic-unit@4.0.4': resolution: {integrity: sha512-yQ4VmossuOAql65sCPppVO1yfb7hDscf4GseF0VCA/DTDaBc0Wtf8MTqVPfjGYlT5+2buokG0Gp7y0atYZpwjg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-initial@2.0.1': resolution: {integrity: sha512-L1wLVMSAZ4wovznquK0xmC7QSctzO4D0Is590bxpGqhqjboLXYA16dWZpfwImkdOgACdQ9PqXsuRroW6qPlEsg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-is-pseudo-class@5.0.3': resolution: {integrity: sha512-jS/TY4SpG4gszAtIg7Qnf3AS2pjcUM5SzxpApOrlndMeGhIbaTzWBzzP/IApXoNWEW7OhcjkRT48jnAUIFXhAQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-light-dark-function@2.0.11': resolution: {integrity: sha512-fNJcKXJdPM3Lyrbmgw2OBbaioU7yuKZtiXClf4sGdQttitijYlZMD5K7HrC/eF83VRWRrYq6OZ0Lx92leV2LFA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-logical-float-and-clear@3.0.0': resolution: {integrity: sha512-SEmaHMszwakI2rqKRJgE+8rpotFfne1ZS6bZqBoQIicFyV+xT1UF42eORPxJkVJVrH9C0ctUgwMSn3BLOIZldQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-logical-overflow@2.0.0': resolution: {integrity: sha512-spzR1MInxPuXKEX2csMamshR4LRaSZ3UXVaRGjeQxl70ySxOhMpP2252RAFsg8QyyBXBzuVOOdx1+bVO5bPIzA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-logical-overscroll-behavior@2.0.0': resolution: {integrity: sha512-e/webMjoGOSYfqLunyzByZj5KKe5oyVg/YSbie99VEaSDE2kimFm0q1f6t/6Jo+VVCQ/jbe2Xy+uX+C4xzWs4w==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-logical-resize@3.0.0': resolution: {integrity: sha512-DFbHQOFW/+I+MY4Ycd/QN6Dg4Hcbb50elIJCfnwkRTCX05G11SwViI5BbBlg9iHRl4ytB7pmY5ieAFk3ws7yyg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-logical-viewport-units@3.0.4': resolution: {integrity: sha512-q+eHV1haXA4w9xBwZLKjVKAWn3W2CMqmpNpZUk5kRprvSiBEGMgrNH3/sJZ8UA3JgyHaOt3jwT9uFa4wLX4EqQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-media-minmax@2.0.9': resolution: {integrity: sha512-af9Qw3uS3JhYLnCbqtZ9crTvvkR+0Se+bBqSr7ykAnl9yKhk6895z9rf+2F4dClIDJWxgn0iZZ1PSdkhrbs2ig==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.5': resolution: {integrity: sha512-zhAe31xaaXOY2Px8IYfoVTB3wglbJUVigGphFLj6exb7cjZRH9A6adyE22XfFK3P2PzwRk0VDeTJmaxpluyrDg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-nested-calc@4.0.0': resolution: {integrity: sha512-jMYDdqrQQxE7k9+KjstC3NbsmC063n1FTPLCgCRS2/qHUbHM0mNy9pIn4QIiQGs9I/Bg98vMqw7mJXBxa0N88A==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-normalize-display-values@4.0.1': resolution: {integrity: sha512-TQUGBuRvxdc7TgNSTevYqrL8oItxiwPDixk20qCB5me/W8uF7BPbhRrAvFuhEoywQp/woRsUZ6SJ+sU5idZAIA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-oklab-function@4.0.12': resolution: {integrity: sha512-HhlSmnE1NKBhXsTnNGjxvhryKtO7tJd1w42DKOGFD6jSHtYOrsJTQDKPMwvOfrzUAk8t7GcpIfRyM7ssqHpFjg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-position-area-property@1.0.0': resolution: {integrity: sha512-fUP6KR8qV2NuUZV3Cw8itx0Ep90aRjAZxAEzC3vrl6yjFv+pFsQbR18UuQctEKmA72K9O27CoYiKEgXxkqjg8Q==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-progressive-custom-properties@4.2.1': resolution: {integrity: sha512-uPiiXf7IEKtUQXsxu6uWtOlRMXd2QWWy5fhxHDnPdXKCQckPP3E34ZgDoZ62r2iT+UOgWsSbM4NvHE5m3mAEdw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-property-rule-prelude-list@1.0.0': resolution: {integrity: sha512-IxuQjUXq19fobgmSSvUDO7fVwijDJaZMvWQugxfEUxmjBeDCVaDuMpsZ31MsTm5xbnhA+ElDi0+rQ7sQQGisFA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-random-function@2.0.1': resolution: {integrity: sha512-q+FQaNiRBhnoSNo+GzqGOIBKoHQ43lYz0ICrV+UudfWnEF6ksS6DsBIJSISKQT2Bvu3g4k6r7t0zYrk5pDlo8w==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-relative-color-syntax@3.0.12': resolution: {integrity: sha512-0RLIeONxu/mtxRtf3o41Lq2ghLimw0w9ByLWnnEVuy89exmEEq8bynveBxNW3nyHqLAFEeNtVEmC1QK9MZ8Huw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-scope-pseudo-class@4.0.1': resolution: {integrity: sha512-IMi9FwtH6LMNuLea1bjVMQAsUhFxJnyLSgOp/cpv5hrzWmrUYU5fm0EguNDIIOHUqzXode8F/1qkC/tEo/qN8Q==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-sign-functions@1.1.4': resolution: {integrity: sha512-P97h1XqRPcfcJndFdG95Gv/6ZzxUBBISem0IDqPZ7WMvc/wlO+yU0c5D/OCpZ5TJoTt63Ok3knGk64N+o6L2Pg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-stepped-value-functions@4.0.9': resolution: {integrity: sha512-h9btycWrsex4dNLeQfyU3y3w40LMQooJWFMm/SK9lrKguHDcFl4VMkncKKoXi2z5rM9YGWbUQABI8BT2UydIcA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-syntax-descriptor-syntax-production@1.0.1': resolution: {integrity: sha512-GneqQWefjM//f4hJ/Kbox0C6f2T7+pi4/fqTqOFGTL3EjnvOReTqO1qUQ30CaUjkwjYq9qZ41hzarrAxCc4gow==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-system-ui-font-family@1.0.0': resolution: {integrity: sha512-s3xdBvfWYfoPSBsikDXbuorcMG1nN1M6GdU0qBsGfcmNR0A/qhloQZpTxjA3Xsyrk1VJvwb2pOfiOT3at/DuIQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-text-decoration-shorthand@4.0.3': resolution: {integrity: sha512-KSkGgZfx0kQjRIYnpsD7X2Om9BUXX/Kii77VBifQW9Ih929hK0KNjVngHDH0bFB9GmfWcR9vJYJJRvw/NQjkrA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-trigonometric-functions@4.0.9': resolution: {integrity: sha512-Hnh5zJUdpNrJqK9v1/E3BbrQhaDTj5YiX7P61TOvUhoDHnUmsNNxcDAgkQ32RrcWx9GVUvfUNPcUkn8R3vIX6A==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/postcss-unset-value@4.0.0': resolution: {integrity: sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@csstools/selector-resolve-nested@3.1.0': resolution: {integrity: sha512-mf1LEW0tJLKfWyvn5KdDrhpxHyuxpbNwTIwOYLIvsTffeyOf85j5oIzfG0yosxDgx/sswlqBnESYUcQH0vgZ0g==} @@ -1106,7 +1112,7 @@ packages: resolution: {integrity: sha512-5VdOr0Z71u+Yp3ozOx8T11N703wIFGVRgOWbOZMKgglPJsWA54MRIoMNVMa7shUToIhx5J8vX4sOZgD2XiihiQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 '@discoveryjs/json-ext@0.5.7': resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} @@ -2475,7 +2481,7 @@ packages: engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.23 babel-loader@9.2.1: resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==} @@ -2558,8 +2564,8 @@ packages: resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} engines: {node: '>=14.16'} - brace-expansion@1.1.16: - resolution: {integrity: sha512-IDw48K2/2kRkg9LdJxurvq3lV3aBgq0REY89duEqFRthjlPdXHKMj7EnQOXVckxzgisinf3nHfrcE2FufFLXMw==} + brace-expansion@1.1.18: + resolution: {integrity: sha512-Edep/X9fGqVNmzKBVsDYIOtD+z1tuezV70LBjdCst9Tqu76lsnvRiZ6oTic1n+/BIwX6QDGAO94PN4N2SADvtw==} braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} @@ -3020,19 +3026,19 @@ packages: resolution: {integrity: sha512-jf+twWGDf6LDoXDUode+nc7ZlrqfaNphrBIBrcmeP3D8yw1uPaix1gCC8LUQUGQ6CycuK2opkbFFWFuq/a94ag==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 css-declaration-sorter@7.4.0: resolution: {integrity: sha512-LTuzjPoyA2vMGKKcaOqKSp7Ub2eGrNfKiZH4LpezxpNrsICGCSFvsQOI29psISxNZtaXibkC2CXzrQ5enMeGGw==} engines: {node: ^14 || ^16 || >=18} peerDependencies: - postcss: ^8.0.9 + postcss: 8.5.23 css-has-pseudo@7.0.3: resolution: {integrity: sha512-oG+vKuGyqe/xvEMoxAQrhi7uY16deJR3i7wwhBerVrGQKSqUC5GiOVxTpM9F9B9hw0J+eKeOWLH7E9gZ1Dr5rA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 css-loader@6.11.0: resolution: {integrity: sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==} @@ -3075,7 +3081,7 @@ packages: resolution: {integrity: sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 css-select@4.3.0: resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} @@ -3107,25 +3113,25 @@ packages: resolution: {integrity: sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 cssnano-preset-default@6.1.2: resolution: {integrity: sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 cssnano-utils@4.0.2: resolution: {integrity: sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 cssnano@6.1.2: resolution: {integrity: sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 csso@5.0.5: resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} @@ -3564,8 +3570,8 @@ packages: fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} - fast-uri@3.1.4: - resolution: {integrity: sha512-8JnbkQ4juDyvYs4mgFGQqg4yCYtFDtUtmp2QIQq11ZZe5CFQ5wcqm1rqDgAh/QdMySuBnPzMUiJUNZG5N/AiQw==} + fast-uri@3.1.5: + resolution: {integrity: sha512-gHwA1O9LDIcKunMKhObS/HimwtehO1nPUECKAu5TpKgaO19fcWEl4bliWe1jWxVFvIXztJjjQ4L8XQ1EU9f7Jw==} fastq@1.20.1: resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==} @@ -4008,7 +4014,7 @@ packages: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.23 ignore@5.3.2: resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} @@ -4292,12 +4298,12 @@ packages: js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - js-yaml@3.15.0: - resolution: {integrity: sha512-ttBQIIQPDeLjpPOohtUdXuXUVoA2uIB6fEH9HyJ7234s5mBJ5wTx20njxplLZQgLaOfpmPQA7X2t5AX6tIPbog==} + js-yaml@3.15.1: + resolution: {integrity: sha512-S99WuO3HlhO3XN41EtYUNl9zzXjoJx7QvmipxsJVxtCBT0YHEFy+iOJhjSvrmV12nYhWpZaM8lPHkJm0yUMbag==} hasBin: true - js-yaml@4.3.0: - resolution: {integrity: sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==} + js-yaml@4.3.1: + resolution: {integrity: sha512-CY6crGq313MX8GkwvB7tzgp99vjQxY1++5y10/BKN/GUfHqWaOGQMNZkBvqSzsZKWk/ijwHlWzzkLulsGHhjWQ==} hasBin: true jsesc@2.5.2: @@ -5002,8 +5008,8 @@ packages: resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} hasBin: true - nanoid@3.3.16: - resolution: {integrity: sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==} + 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 @@ -5336,353 +5342,353 @@ packages: resolution: {integrity: sha512-Uai+SupNSqzlschRyNx3kbCTWgY/2hcwtHEI/ej2LJWc9JJ77qKgGptd8DHwY1mXtZ7Aoh4z4yxfwMBue9eNgw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-calc@9.0.1: resolution: {integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.2.2 + postcss: 8.5.23 postcss-clamp@4.1.0: resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} engines: {node: '>=7.6.0'} peerDependencies: - postcss: ^8.4.6 + postcss: 8.5.23 postcss-color-functional-notation@7.0.12: resolution: {integrity: sha512-TLCW9fN5kvO/u38/uesdpbx3e8AkTYhMvDZYa9JpmImWuTE99bDQ7GU7hdOADIZsiI9/zuxfAJxny/khknp1Zw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-color-hex-alpha@10.0.0: resolution: {integrity: sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-color-rebeccapurple@10.0.0: resolution: {integrity: sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-colormin@6.1.0: resolution: {integrity: sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-convert-values@6.1.0: resolution: {integrity: sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-custom-media@11.0.6: resolution: {integrity: sha512-C4lD4b7mUIw+RZhtY7qUbf4eADmb7Ey8BFA2px9jUbwg7pjTZDl4KY4bvlUV+/vXQvzQRfiGEVJyAbtOsCMInw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-custom-properties@14.0.6: resolution: {integrity: sha512-fTYSp3xuk4BUeVhxCSJdIPhDLpJfNakZKoiTDx7yRGCdlZrSJR7mWKVOBS4sBF+5poPQFMj2YdXx1VHItBGihQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-custom-selectors@8.0.5: resolution: {integrity: sha512-9PGmckHQswiB2usSO6XMSswO2yFWVoCAuih1yl9FVcwkscLjRKjwsjM3t+NIWpSU2Jx3eOiK2+t4vVTQaoCHHg==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-dir-pseudo-class@9.0.1: resolution: {integrity: sha512-tRBEK0MHYvcMUrAuYMEOa0zg9APqirBcgzi6P21OhxtJyJADo/SWBwY1CAwEohQ/6HDaa9jCjLRG7K3PVQYHEA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-discard-comments@6.0.2: resolution: {integrity: sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-discard-duplicates@6.0.3: resolution: {integrity: sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-discard-empty@6.0.3: resolution: {integrity: sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-discard-overridden@6.0.2: resolution: {integrity: sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-discard-unused@6.0.5: resolution: {integrity: sha512-wHalBlRHkaNnNwfC8z+ppX57VhvS+HWgjW508esjdaEYr3Mx7Gnn2xA4R/CKf5+Z9S5qsqC+Uzh4ueENWwCVUA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-double-position-gradients@6.0.4: resolution: {integrity: sha512-m6IKmxo7FxSP5nF2l63QbCC3r+bWpFUWmZXZf096WxG0m7Vl1Q1+ruFOhpdDRmKrRS+S3Jtk+TVk/7z0+BVK6g==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-focus-visible@10.0.1: resolution: {integrity: sha512-U58wyjS/I1GZgjRok33aE8juW9qQgQUNwTSdxQGuShHzwuYdcklnvK/+qOWX1Q9kr7ysbraQ6ht6r+udansalA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-focus-within@9.0.1: resolution: {integrity: sha512-fzNUyS1yOYa7mOjpci/bR+u+ESvdar6hk8XNK/TRR0fiGTp2QT5N+ducP0n3rfH/m9I7H/EQU6lsa2BrgxkEjw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-font-variant@5.0.0: resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.23 postcss-gap-properties@6.0.0: resolution: {integrity: sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-image-set-function@7.0.0: resolution: {integrity: sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-lab-function@7.0.12: resolution: {integrity: sha512-tUcyRk1ZTPec3OuKFsqtRzW2Go5lehW29XA21lZ65XmzQkz43VY2tyWEC202F7W3mILOjw0voOiuxRGTsN+J9w==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-loader@7.3.4: resolution: {integrity: sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==} engines: {node: '>= 14.15.0'} peerDependencies: - postcss: ^7.0.0 || ^8.0.1 + postcss: 8.5.23 webpack: ^5.0.0 postcss-logical@8.1.0: resolution: {integrity: sha512-pL1hXFQ2fEXNKiNiAgtfA005T9FBxky5zkX6s4GZM2D8RkVgRqz3f4g1JUoq925zXv495qk8UNldDwh8uGEDoA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-merge-idents@6.0.3: resolution: {integrity: sha512-1oIoAsODUs6IHQZkLQGO15uGEbK3EAl5wi9SS8hs45VgsxQfMnxvt+L+zIr7ifZFIH14cfAeVe2uCTa+SPRa3g==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-merge-longhand@6.0.5: resolution: {integrity: sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-merge-rules@6.1.1: resolution: {integrity: sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-minify-font-values@6.1.0: resolution: {integrity: sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-minify-gradients@6.0.3: resolution: {integrity: sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-minify-params@6.1.0: resolution: {integrity: sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-minify-selectors@6.0.4: resolution: {integrity: sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-modules-extract-imports@3.1.0: resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.23 postcss-modules-local-by-default@4.2.0: resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.23 postcss-modules-scope@3.2.1: resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.23 postcss-modules-values@4.0.0: resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: - postcss: ^8.1.0 + postcss: 8.5.23 postcss-nesting@13.0.2: resolution: {integrity: sha512-1YCI290TX+VP0U/K/aFxzHzQWHWURL+CtHMSbex1lCdpXD1SoR2sYuxDu5aNI9lPoXpKTCggFZiDJbwylU0LEQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-normalize-charset@6.0.2: resolution: {integrity: sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-normalize-display-values@6.0.2: resolution: {integrity: sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-normalize-positions@6.0.2: resolution: {integrity: sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-normalize-repeat-style@6.0.2: resolution: {integrity: sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-normalize-string@6.0.2: resolution: {integrity: sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-normalize-timing-functions@6.0.2: resolution: {integrity: sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-normalize-unicode@6.1.0: resolution: {integrity: sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-normalize-url@6.0.2: resolution: {integrity: sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-normalize-whitespace@6.0.2: resolution: {integrity: sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-opacity-percentage@3.0.0: resolution: {integrity: sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-ordered-values@6.0.2: resolution: {integrity: sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-overflow-shorthand@6.0.0: resolution: {integrity: sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-page-break@3.0.4: resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} peerDependencies: - postcss: ^8 + postcss: 8.5.23 postcss-place@10.0.0: resolution: {integrity: sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-preset-env@10.6.1: resolution: {integrity: sha512-yrk74d9EvY+W7+lO9Aj1QmjWY9q5NsKjK2V9drkOPZB/X6KZ0B3igKsHUYakb7oYVhnioWypQX3xGuePf89f3g==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-pseudo-class-any-link@10.0.1: resolution: {integrity: sha512-3el9rXlBOqTFaMFkWDOkHUTQekFIYnaQY55Rsp8As8QQkpiSgIYEcF/6Ond93oHiDsGb4kad8zjt+NPlOC1H0Q==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-reduce-idents@6.0.3: resolution: {integrity: sha512-G3yCqZDpsNPoQgbDUy3T0E6hqOQ5xigUtBQyrmq3tn2GxlyiL0yyl7H+T8ulQR6kOcHJ9t7/9H4/R2tv8tJbMA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-reduce-initial@6.1.0: resolution: {integrity: sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-reduce-transforms@6.0.2: resolution: {integrity: sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-replace-overflow-wrap@4.0.0: resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} peerDependencies: - postcss: ^8.0.3 + postcss: 8.5.23 postcss-selector-not@8.0.1: resolution: {integrity: sha512-kmVy/5PYVb2UOhy0+LqUYAhKj7DUGDpSWa5LZqlkWJaaAV+dxxsOG3+St0yNLu6vsKD7Dmqx+nWQt0iil89+WA==} engines: {node: '>=18'} peerDependencies: - postcss: ^8.4 + postcss: 8.5.23 postcss-selector-parser@6.1.4: resolution: {integrity: sha512-bIoJLOmjCO1S9XdY/DcnR5hJxvrDir1PbGChrzXG3vw0/FOliy/fA3dmdhQ441kah4gKv+TwckGzex6wNS5cnQ==} @@ -5696,19 +5702,19 @@ packages: resolution: {integrity: sha512-AZ5fDMLD8SldlAYlvi8NIqo0+Z8xnXU2ia0jxmuhxAU+Lqt9K+AlmLNJ/zWEnE9x+Zx3qL3+1K20ATgNOr3fAA==} engines: {node: '>=14.0.0'} peerDependencies: - postcss: ^8.4.23 + postcss: 8.5.23 postcss-svgo@6.0.3: resolution: {integrity: sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==} engines: {node: ^14 || ^16 || >= 18} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-unique-selectors@6.0.4: resolution: {integrity: sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} @@ -5717,10 +5723,10 @@ packages: resolution: {integrity: sha512-5BxW9l1evPB/4ZIc+2GobEBoKC+h8gPGCMi+jxsYvd2x0mjq7wazk6DrP71pStqxE9Foxh5TVnonbWpFZzXaYg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 - postcss@8.5.20: - resolution: {integrity: sha512-lW616l85ucIQL+FocMmL7pQFPqBmwejrCMg+iPxyImlrANNJG9NHq/RkyCZopDhd8C3LA03PHRJDjkbGu8vvug==} + postcss@8.5.23: + resolution: {integrity: sha512-g50586zr4bZmwFiTlflMu8E0bDTb5I5gertgwAKmsdUlTQIhZtunzUlD1WSzwcVWPoAVpsrA6vlfCD7oXvRwgg==} engines: {node: ^10 || ^12 || >=14} pretty-error@4.0.0: @@ -6476,7 +6482,7 @@ packages: resolution: {integrity: sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==} engines: {node: ^14 || ^16 || >=18.0} peerDependencies: - postcss: ^8.4.31 + postcss: 8.5.23 subarg@1.0.0: resolution: {integrity: sha512-RIrIdRY0X1xojthNcVtgT9sjpOGagEUKpZdgBUi054OEPFo282yg+zE+t1Rj3+RqKq2xStL7uUHhY+AjbC4BXg==} @@ -7184,7 +7190,7 @@ snapshots: '@11ty/gray-matter@1.0.0': dependencies: - js-yaml: 4.3.0 + js-yaml: 4.3.1 kind-of: 6.0.3 section-matter: 1.0.0 strip-bom-string: 1.0.0 @@ -8155,272 +8161,272 @@ snapshots: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-alpha-function@1.0.1(postcss@8.5.20)': + '@csstools/postcss-alpha-function@1.0.1(postcss@8.5.23)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-cascade-layers@5.0.2(postcss@8.5.20)': + '@csstools/postcss-cascade-layers@5.0.2(postcss@8.5.23)': dependencies: '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.4) - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 - '@csstools/postcss-color-function-display-p3-linear@1.0.1(postcss@8.5.20)': + '@csstools/postcss-color-function-display-p3-linear@1.0.1(postcss@8.5.23)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-color-function@4.0.12(postcss@8.5.20)': + '@csstools/postcss-color-function@4.0.12(postcss@8.5.23)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-color-mix-function@3.0.12(postcss@8.5.20)': + '@csstools/postcss-color-mix-function@3.0.12(postcss@8.5.23)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-color-mix-variadic-function-arguments@1.0.2(postcss@8.5.20)': + '@csstools/postcss-color-mix-variadic-function-arguments@1.0.2(postcss@8.5.23)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-content-alt-text@2.0.8(postcss@8.5.20)': + '@csstools/postcss-content-alt-text@2.0.8(postcss@8.5.23)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-contrast-color-function@2.0.12(postcss@8.5.20)': + '@csstools/postcss-contrast-color-function@2.0.12(postcss@8.5.23)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-exponential-functions@2.0.9(postcss@8.5.20)': + '@csstools/postcss-exponential-functions@2.0.9(postcss@8.5.23)': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-font-format-keywords@4.0.0(postcss@8.5.20)': + '@csstools/postcss-font-format-keywords@4.0.0(postcss@8.5.23)': dependencies: - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 postcss-value-parser: 4.2.0 - '@csstools/postcss-gamut-mapping@2.0.11(postcss@8.5.20)': + '@csstools/postcss-gamut-mapping@2.0.11(postcss@8.5.23)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-gradients-interpolation-method@5.0.12(postcss@8.5.20)': + '@csstools/postcss-gradients-interpolation-method@5.0.12(postcss@8.5.23)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-hwb-function@4.0.12(postcss@8.5.20)': + '@csstools/postcss-hwb-function@4.0.12(postcss@8.5.23)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-ic-unit@4.0.4(postcss@8.5.20)': + '@csstools/postcss-ic-unit@4.0.4(postcss@8.5.23)': dependencies: - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 postcss-value-parser: 4.2.0 - '@csstools/postcss-initial@2.0.1(postcss@8.5.20)': + '@csstools/postcss-initial@2.0.1(postcss@8.5.23)': dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-is-pseudo-class@5.0.3(postcss@8.5.20)': + '@csstools/postcss-is-pseudo-class@5.0.3(postcss@8.5.23)': dependencies: '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.4) - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 - '@csstools/postcss-light-dark-function@2.0.11(postcss@8.5.20)': + '@csstools/postcss-light-dark-function@2.0.11(postcss@8.5.23)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.5.20)': + '@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.5.23)': dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-logical-overflow@2.0.0(postcss@8.5.20)': + '@csstools/postcss-logical-overflow@2.0.0(postcss@8.5.23)': dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.5.20)': + '@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.5.23)': dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-logical-resize@3.0.0(postcss@8.5.20)': + '@csstools/postcss-logical-resize@3.0.0(postcss@8.5.23)': dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - '@csstools/postcss-logical-viewport-units@3.0.4(postcss@8.5.20)': + '@csstools/postcss-logical-viewport-units@3.0.4(postcss@8.5.23)': dependencies: '@csstools/css-tokenizer': 3.0.4 - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-media-minmax@2.0.9(postcss@8.5.20)': + '@csstools/postcss-media-minmax@2.0.9(postcss@8.5.23)': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.5(postcss@8.5.20)': + '@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.5(postcss@8.5.23)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-nested-calc@4.0.0(postcss@8.5.20)': + '@csstools/postcss-nested-calc@4.0.0(postcss@8.5.23)': dependencies: - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 postcss-value-parser: 4.2.0 - '@csstools/postcss-normalize-display-values@4.0.1(postcss@8.5.20)': + '@csstools/postcss-normalize-display-values@4.0.1(postcss@8.5.23)': dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - '@csstools/postcss-oklab-function@4.0.12(postcss@8.5.20)': + '@csstools/postcss-oklab-function@4.0.12(postcss@8.5.23)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-position-area-property@1.0.0(postcss@8.5.20)': + '@csstools/postcss-position-area-property@1.0.0(postcss@8.5.23)': dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-progressive-custom-properties@4.2.1(postcss@8.5.20)': + '@csstools/postcss-progressive-custom-properties@4.2.1(postcss@8.5.23)': dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - '@csstools/postcss-property-rule-prelude-list@1.0.0(postcss@8.5.20)': + '@csstools/postcss-property-rule-prelude-list@1.0.0(postcss@8.5.23)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-random-function@2.0.1(postcss@8.5.20)': + '@csstools/postcss-random-function@2.0.1(postcss@8.5.23)': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-relative-color-syntax@3.0.12(postcss@8.5.20)': + '@csstools/postcss-relative-color-syntax@3.0.12(postcss@8.5.23)': dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - '@csstools/postcss-scope-pseudo-class@4.0.1(postcss@8.5.20)': + '@csstools/postcss-scope-pseudo-class@4.0.1(postcss@8.5.23)': dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 - '@csstools/postcss-sign-functions@1.1.4(postcss@8.5.20)': + '@csstools/postcss-sign-functions@1.1.4(postcss@8.5.23)': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-stepped-value-functions@4.0.9(postcss@8.5.20)': + '@csstools/postcss-stepped-value-functions@4.0.9(postcss@8.5.23)': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-syntax-descriptor-syntax-production@1.0.1(postcss@8.5.20)': + '@csstools/postcss-syntax-descriptor-syntax-production@1.0.1(postcss@8.5.23)': dependencies: '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-system-ui-font-family@1.0.0(postcss@8.5.20)': + '@csstools/postcss-system-ui-font-family@1.0.0(postcss@8.5.23)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-text-decoration-shorthand@4.0.3(postcss@8.5.20)': + '@csstools/postcss-text-decoration-shorthand@4.0.3(postcss@8.5.23)': dependencies: '@csstools/color-helpers': 5.1.0 - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - '@csstools/postcss-trigonometric-functions@4.0.9(postcss@8.5.20)': + '@csstools/postcss-trigonometric-functions@4.0.9(postcss@8.5.23)': dependencies: '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.20 + postcss: 8.5.23 - '@csstools/postcss-unset-value@4.0.0(postcss@8.5.20)': + '@csstools/postcss-unset-value@4.0.0(postcss@8.5.23)': dependencies: - postcss: 8.5.20 + postcss: 8.5.23 '@csstools/selector-resolve-nested@3.1.0(postcss-selector-parser@7.1.4)': dependencies: @@ -8430,9 +8436,9 @@ snapshots: dependencies: postcss-selector-parser: 7.1.4 - '@csstools/utilities@2.0.0(postcss@8.5.20)': + '@csstools/utilities@2.0.0(postcss@8.5.23)': dependencies: - postcss: 8.5.20 + postcss: 8.5.23 '@discoveryjs/json-ext@0.5.7': {} @@ -8458,7 +8464,7 @@ snapshots: - '@algolia/client-search' - algoliasearch - '@docusaurus/babel@3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': + '@docusaurus/babel@3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@babel/core': 7.29.7 '@babel/generator': 7.29.7 @@ -8470,7 +8476,7 @@ snapshots: '@babel/runtime': 7.29.7 '@babel/traverse': 7.29.7 '@docusaurus/logger': 3.10.2 - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) babel-plugin-dynamic-import-node: 2.3.3 fs-extra: 11.3.6 tslib: 2.8.1 @@ -8495,29 +8501,29 @@ snapshots: '@docusaurus/bundler@3.10.2(esbuild@0.25.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: '@babel/core': 7.29.7 - '@docusaurus/babel': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/babel': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@docusaurus/cssnano-preset': 3.10.2 '@docusaurus/logger': 3.10.2 - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - babel-loader: 9.2.1(@babel/core@7.29.7)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + babel-loader: 9.2.1(@babel/core@7.29.7)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) clean-css: 5.3.3 - copy-webpack-plugin: 11.0.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) - css-loader: 6.11.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) - css-minimizer-webpack-plugin: 5.0.1(clean-css@5.3.3)(esbuild@0.25.0)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) - cssnano: 6.1.2(postcss@8.5.20) - file-loader: 6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + copy-webpack-plugin: 11.0.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) + css-loader: 6.11.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) + css-minimizer-webpack-plugin: 5.0.1(clean-css@5.3.3)(esbuild@0.25.0)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) + cssnano: 6.1.2(postcss@8.5.23) + file-loader: 6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) html-minifier-terser: 7.2.0 - mini-css-extract-plugin: 2.10.2(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) - null-loader: 4.0.1(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) - postcss: 8.5.20 - postcss-loader: 7.3.4(postcss@8.5.20)(typescript@7.0.1-rc)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) - postcss-preset-env: 10.6.1(postcss@8.5.20) - terser-webpack-plugin: 5.6.1(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + mini-css-extract-plugin: 2.10.2(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) + null-loader: 4.0.1(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) + postcss: 8.5.23 + postcss-loader: 7.3.4(postcss@8.5.23)(typescript@7.0.1-rc)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) + postcss-preset-env: 10.6.1(postcss@8.5.23) + terser-webpack-plugin: 5.6.1(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) tslib: 2.8.1 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)))(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) - webpackbar: 7.0.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)))(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) + webpackbar: 7.0.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) transitivePeerDependencies: - '@minify-html/node' - '@parcel/css' @@ -8535,15 +8541,15 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/core@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': + '@docusaurus/core@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: - '@docusaurus/babel': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/babel': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@docusaurus/bundler': 3.10.2(esbuild@0.25.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) '@docusaurus/logger': 3.10.2 - '@docusaurus/mdx-loader': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/mdx-loader': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@mdx-js/react': 3.1.1(@types/react@19.2.17)(react@19.2.5) boxen: 6.2.1 chalk: 4.1.2 @@ -8559,7 +8565,7 @@ snapshots: execa: 5.1.1 fs-extra: 11.3.6 html-tags: 3.3.1 - html-webpack-plugin: 5.6.7(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + html-webpack-plugin: 5.6.7(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) leven: 3.1.0 lodash: 4.18.1 open: 8.4.2 @@ -8569,7 +8575,7 @@ snapshots: react-dom: 19.2.5(react@19.2.5) react-helmet-async: '@slorber/react-helmet-async@1.3.0(react-dom@19.2.5(react@19.2.5))(react@19.2.5)' react-loadable: '@docusaurus/react-loadable@6.0.0(react@19.2.5)' - react-loadable-ssr-addon-v5-slorber: 1.0.3(@docusaurus/react-loadable@6.0.0(react@19.2.5))(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + react-loadable-ssr-addon-v5-slorber: 1.0.3(@docusaurus/react-loadable@6.0.0(react@19.2.5))(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) react-router: 5.3.4(react@19.2.5) react-router-config: 5.1.1(react-router@5.3.4(react@19.2.5))(react@19.2.5) react-router-dom: 5.3.4(react@19.2.5) @@ -8578,9 +8584,9 @@ snapshots: tinypool: 1.1.1 tslib: 2.8.1 update-notifier: 6.0.2 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) webpack-bundle-analyzer: 4.10.2 - webpack-dev-server: 5.2.6(tslib@2.8.1)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + webpack-dev-server: 5.2.6(tslib@2.8.1)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) webpack-merge: 6.0.1 transitivePeerDependencies: - '@minify-html/node' @@ -8606,9 +8612,9 @@ snapshots: '@docusaurus/cssnano-preset@3.10.2': dependencies: - cssnano-preset-advanced: 6.1.2(postcss@8.5.20) - postcss: 8.5.20 - postcss-sort-media-queries: 5.2.0(postcss@8.5.20) + cssnano-preset-advanced: 6.1.2(postcss@8.5.23) + postcss: 8.5.23 + postcss-sort-media-queries: 5.2.0(postcss@8.5.23) tslib: 2.8.1 '@docusaurus/logger@3.10.2': @@ -8616,16 +8622,16 @@ snapshots: chalk: 4.1.2 tslib: 2.8.1 - '@docusaurus/mdx-loader@3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': + '@docusaurus/mdx-loader@3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@docusaurus/logger': 3.10.2 - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@mdx-js/mdx': 3.1.1 '@slorber/remark-comment': 1.0.0 escape-html: 1.0.3 estree-util-value-to-estree: 3.5.0 - file-loader: 6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + file-loader: 6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) fs-extra: 11.3.6 image-size: 2.0.2 mdast-util-mdx: 3.0.0 @@ -8641,9 +8647,9 @@ snapshots: tslib: 2.8.1 unified: 11.0.5 unist-util-visit: 5.1.0 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)))(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)))(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) vfile: 6.0.3 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) transitivePeerDependencies: - '@minify-html/node' - '@swc/core' @@ -8660,9 +8666,9 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/module-type-aliases@3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': + '@docusaurus/module-type-aliases@3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@types/history': 4.7.11 '@types/react': 19.2.17 '@types/react-router-config': 5.0.11 @@ -8687,17 +8693,17 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/plugin-content-blog@3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': + '@docusaurus/plugin-content-blog@3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) '@docusaurus/logger': 3.10.2 - '@docusaurus/mdx-loader': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/plugin-content-docs': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/theme-common': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/mdx-loader': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/plugin-content-docs': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/theme-common': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) cheerio: 1.0.0-rc.12 combine-promises: 1.2.0 feed: 4.2.2 @@ -8710,7 +8716,7 @@ snapshots: tslib: 2.8.1 unist-util-visit: 5.1.0 utility-types: 3.11.0 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) transitivePeerDependencies: - '@docusaurus/faster' - '@mdx-js/react' @@ -8735,28 +8741,28 @@ snapshots: - utf-8-validate - webpack-cli - '@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': + '@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) '@docusaurus/logger': 3.10.2 - '@docusaurus/mdx-loader': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/module-type-aliases': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/theme-common': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/mdx-loader': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/module-type-aliases': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/theme-common': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@types/react-router-config': 5.0.11 combine-promises: 1.2.0 fs-extra: 11.3.6 - js-yaml: 4.3.0 + js-yaml: 4.3.1 lodash: 4.18.1 react: 19.2.5 react-dom: 19.2.5(react@19.2.5) schema-dts: 1.1.5 tslib: 2.8.1 utility-types: 3.11.0 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) transitivePeerDependencies: - '@docusaurus/faster' - '@mdx-js/react' @@ -8781,18 +8787,18 @@ snapshots: - utf-8-validate - webpack-cli - '@docusaurus/plugin-content-pages@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': + '@docusaurus/plugin-content-pages@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/mdx-loader': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/mdx-loader': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) fs-extra: 11.3.6 react: 19.2.5 react-dom: 19.2.5(react@19.2.5) tslib: 2.8.1 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) transitivePeerDependencies: - '@docusaurus/faster' - '@mdx-js/react' @@ -8817,12 +8823,12 @@ snapshots: - utf-8-validate - webpack-cli - '@docusaurus/plugin-css-cascade-layers@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': + '@docusaurus/plugin-css-cascade-layers@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) tslib: 2.8.1 transitivePeerDependencies: - '@docusaurus/faster' @@ -8850,11 +8856,11 @@ snapshots: - utf-8-validate - webpack-cli - '@docusaurus/plugin-debug@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': + '@docusaurus/plugin-debug@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) fs-extra: 11.3.6 react: 19.2.5 react-dom: 19.2.5(react@19.2.5) @@ -8884,11 +8890,11 @@ snapshots: - utf-8-validate - webpack-cli - '@docusaurus/plugin-google-analytics@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': + '@docusaurus/plugin-google-analytics@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) react: 19.2.5 react-dom: 19.2.5(react@19.2.5) tslib: 2.8.1 @@ -8916,11 +8922,11 @@ snapshots: - utf-8-validate - webpack-cli - '@docusaurus/plugin-google-gtag@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': + '@docusaurus/plugin-google-gtag@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) react: 19.2.5 react-dom: 19.2.5(react@19.2.5) tslib: 2.8.1 @@ -8948,11 +8954,11 @@ snapshots: - utf-8-validate - webpack-cli - '@docusaurus/plugin-google-tag-manager@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': + '@docusaurus/plugin-google-tag-manager@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) react: 19.2.5 react-dom: 19.2.5(react@19.2.5) tslib: 2.8.1 @@ -8980,14 +8986,14 @@ snapshots: - utf-8-validate - webpack-cli - '@docusaurus/plugin-sitemap@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': + '@docusaurus/plugin-sitemap@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) '@docusaurus/logger': 3.10.2 - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) fs-extra: 11.3.6 react: 19.2.5 react-dom: 19.2.5(react@19.2.5) @@ -9017,18 +9023,18 @@ snapshots: - utf-8-validate - webpack-cli - '@docusaurus/plugin-svgr@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': + '@docusaurus/plugin-svgr@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@svgr/core': 8.1.0(typescript@7.0.1-rc) '@svgr/webpack': 8.1.0(typescript@7.0.1-rc) react: 19.2.5 react-dom: 19.2.5(react@19.2.5) tslib: 2.8.1 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) transitivePeerDependencies: - '@docusaurus/faster' - '@mdx-js/react' @@ -9053,23 +9059,23 @@ snapshots: - utf-8-validate - webpack-cli - '@docusaurus/preset-classic@3.10.2(@algolia/client-search@5.56.0)(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(@types/react@19.2.17)(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(search-insights@2.17.3)(typescript@7.0.1-rc)': - dependencies: - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/plugin-content-blog': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/plugin-content-docs': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/plugin-content-pages': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/plugin-css-cascade-layers': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/plugin-debug': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/plugin-google-analytics': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/plugin-google-gtag': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/plugin-google-tag-manager': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/plugin-sitemap': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/plugin-svgr': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/preset-classic@3.10.2(@algolia/client-search@5.56.0)(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(@types/react@19.2.17)(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(search-insights@2.17.3)(typescript@7.0.1-rc)': + dependencies: + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/plugin-content-blog': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/plugin-content-docs': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/plugin-content-pages': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/plugin-css-cascade-layers': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/plugin-debug': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/plugin-google-analytics': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/plugin-google-gtag': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/plugin-google-tag-manager': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/plugin-sitemap': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/plugin-svgr': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) '@docusaurus/theme-classic': 3.10.2(@types/react@19.2.17)(esbuild@0.25.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/theme-common': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/theme-search-algolia': 3.10.2(@algolia/client-search@5.56.0)(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(@types/react@19.2.17)(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(search-insights@2.17.3)(typescript@7.0.1-rc) - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/theme-common': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/theme-search-algolia': 3.10.2(@algolia/client-search@5.56.0)(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(@types/react@19.2.17)(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(search-insights@2.17.3)(typescript@7.0.1-rc) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) react: 19.2.5 react-dom: 19.2.5(react@19.2.5) transitivePeerDependencies: @@ -9106,26 +9112,26 @@ snapshots: '@docusaurus/theme-classic@3.10.2(@types/react@19.2.17)(esbuild@0.25.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc)': dependencies: - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) '@docusaurus/logger': 3.10.2 - '@docusaurus/mdx-loader': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/module-type-aliases': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/plugin-content-blog': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/plugin-content-docs': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/plugin-content-pages': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/theme-common': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/mdx-loader': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/module-type-aliases': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/plugin-content-blog': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/plugin-content-docs': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/plugin-content-pages': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/theme-common': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@docusaurus/theme-translations': 3.10.2 - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@mdx-js/react': 3.1.1(@types/react@19.2.17)(react@19.2.5) clsx: 2.1.1 copy-text-to-clipboard: 3.2.2 infima: 0.2.0-alpha.45 lodash: 4.18.1 nprogress: 0.2.0 - postcss: 8.5.20 + postcss: 8.5.23 prism-react-renderer: 2.4.1(react@19.2.5) prismjs: 1.30.0 react: 19.2.5 @@ -9157,13 +9163,13 @@ snapshots: - utf-8-validate - webpack-cli - '@docusaurus/theme-common@3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': + '@docusaurus/theme-common@3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@docusaurus/mdx-loader': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/module-type-aliases': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/plugin-content-docs': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/mdx-loader': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/module-type-aliases': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/plugin-content-docs': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@types/history': 4.7.11 '@types/react': 19.2.17 '@types/react-router-config': 5.0.11 @@ -9190,17 +9196,17 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/theme-search-algolia@3.10.2(@algolia/client-search@5.56.0)(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(@types/react@19.2.17)(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(search-insights@2.17.3)(typescript@7.0.1-rc)': + '@docusaurus/theme-search-algolia@3.10.2(@algolia/client-search@5.56.0)(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(@types/react@19.2.17)(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(search-insights@2.17.3)(typescript@7.0.1-rc)': dependencies: '@algolia/autocomplete-core': 1.19.9(@algolia/client-search@5.56.0)(algoliasearch@5.56.0)(search-insights@2.17.3) '@docsearch/react': 4.6.3(@algolia/client-search@5.56.0)(@types/react@19.2.17)(algoliasearch@5.56.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(search-insights@2.17.3) - '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/core': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) '@docusaurus/logger': 3.10.2 - '@docusaurus/plugin-content-docs': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) - '@docusaurus/theme-common': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/plugin-content-docs': 3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc) + '@docusaurus/theme-common': 3.10.2(@docusaurus/plugin-content-docs@3.10.2(@mdx-js/react@3.1.1(@types/react@19.2.17)(react@19.2.5))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)(typescript@7.0.1-rc))(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) '@docusaurus/theme-translations': 3.10.2 - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-validation': 3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) algoliasearch: 5.56.0 algoliasearch-helper: 3.29.2(algoliasearch@5.56.0) clsx: 2.1.1 @@ -9243,7 +9249,7 @@ snapshots: fs-extra: 11.3.6 tslib: 2.8.1 - '@docusaurus/types@3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': + '@docusaurus/types@3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@mdx-js/mdx': 3.1.1 '@types/history': 4.7.11 @@ -9255,7 +9261,7 @@ snapshots: react-dom: 19.2.5(react@19.2.5) react-helmet-async: '@slorber/react-helmet-async@1.3.0(react-dom@19.2.5(react@19.2.5))(react@19.2.5)' utility-types: 3.11.0 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) webpack-merge: 5.10.0 transitivePeerDependencies: - '@minify-html/node' @@ -9273,9 +9279,9 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/utils-common@3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': + '@docusaurus/utils-common@3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) tslib: 2.8.1 transitivePeerDependencies: - '@minify-html/node' @@ -9295,14 +9301,14 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/utils-validation@3.10.2(esbuild@0.25.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': + '@docusaurus/utils-validation@3.10.2(esbuild@0.25.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@docusaurus/logger': 3.10.2 - '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) fs-extra: 11.3.6 joi: 17.13.4 - js-yaml: 4.3.0 + js-yaml: 4.3.1 lodash: 4.18.1 tslib: 2.8.1 transitivePeerDependencies: @@ -9323,29 +9329,29 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/utils@3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': + '@docusaurus/utils@3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)': dependencies: '@11ty/gray-matter': 1.0.0 '@docusaurus/logger': 3.10.2 - '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) - '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/types': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) + '@docusaurus/utils-common': 3.10.2(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(react-dom@19.2.5(react@19.2.5))(react@19.2.5) escape-string-regexp: 4.0.0 execa: 5.1.1 - file-loader: 6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + file-loader: 6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) fs-extra: 11.3.6 github-slugger: 1.5.0 globby: 11.1.0 jiti: 1.21.7 - js-yaml: 4.3.0 + js-yaml: 4.3.1 lodash: 4.18.1 micromatch: 4.0.8 p-queue: 6.6.2 prompts: 2.4.2 resolve-pathname: 3.0.0 tslib: 2.8.1 - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)))(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)))(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) utility-types: 3.11.0 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) transitivePeerDependencies: - '@minify-html/node' - '@swc/core' @@ -10280,7 +10286,7 @@ snapshots: '@vue/shared': 3.5.40 estree-walker: 2.0.2 magic-string: 0.30.21 - postcss: 8.5.20 + postcss: 8.5.23 source-map-js: 1.2.1 optional: true @@ -10439,7 +10445,7 @@ snapshots: ajv@8.20.0: dependencies: fast-deep-equal: 3.1.3 - fast-uri: 3.1.4 + fast-uri: 3.1.5 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 @@ -10528,21 +10534,21 @@ snapshots: astring@1.9.0: {} - autoprefixer@10.5.4(postcss@8.5.20): + autoprefixer@10.5.4(postcss@8.5.23): dependencies: browserslist: 4.28.6 caniuse-lite: 1.0.30001806 fraction.js: 5.3.4 picocolors: 1.1.1 - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - babel-loader@9.2.1(@babel/core@7.29.7)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + babel-loader@9.2.1(@babel/core@7.29.7)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: '@babel/core': 7.29.7 find-cache-dir: 4.0.0 schema-utils: 4.3.3 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) babel-plugin-dynamic-import-node@2.3.3: dependencies: @@ -10651,7 +10657,7 @@ snapshots: widest-line: 4.0.1 wrap-ansi: 8.1.0 - brace-expansion@1.1.16: + brace-expansion@1.1.18: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 @@ -11106,7 +11112,7 @@ snapshots: copy-text-to-clipboard@3.2.2: {} - copy-webpack-plugin@11.0.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + copy-webpack-plugin@11.0.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: fast-glob: 3.3.3 glob-parent: 6.0.2 @@ -11114,7 +11120,7 @@ snapshots: normalize-path: 3.0.0 schema-utils: 4.3.3 serialize-javascript: 7.0.5 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) core-js-compat@3.49.0: dependencies: @@ -11127,7 +11133,7 @@ snapshots: cosmiconfig@8.3.6(typescript@7.0.1-rc): dependencies: import-fresh: 3.3.1 - js-yaml: 4.3.0 + js-yaml: 4.3.1 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: @@ -11143,51 +11149,51 @@ snapshots: dependencies: type-fest: 1.4.0 - css-blank-pseudo@7.0.1(postcss@8.5.20): + css-blank-pseudo@7.0.1(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 - css-declaration-sorter@7.4.0(postcss@8.5.20): + css-declaration-sorter@7.4.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - css-has-pseudo@7.0.3(postcss@8.5.20): + css-has-pseudo@7.0.3(postcss@8.5.23): dependencies: '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.4) - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 postcss-value-parser: 4.2.0 - css-loader@6.11.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + css-loader@6.11.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: - icss-utils: 5.1.0(postcss@8.5.20) - postcss: 8.5.20 - postcss-modules-extract-imports: 3.1.0(postcss@8.5.20) - postcss-modules-local-by-default: 4.2.0(postcss@8.5.20) - postcss-modules-scope: 3.2.1(postcss@8.5.20) - postcss-modules-values: 4.0.0(postcss@8.5.20) + icss-utils: 5.1.0(postcss@8.5.23) + postcss: 8.5.23 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.23) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.23) + postcss-modules-scope: 3.2.1(postcss@8.5.23) + postcss-modules-values: 4.0.0(postcss@8.5.23) postcss-value-parser: 4.2.0 semver: 7.8.5 optionalDependencies: - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) - css-minimizer-webpack-plugin@5.0.1(clean-css@5.3.3)(esbuild@0.25.0)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + css-minimizer-webpack-plugin@5.0.1(clean-css@5.3.3)(esbuild@0.25.0)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: '@jridgewell/trace-mapping': 0.3.31 - cssnano: 6.1.2(postcss@8.5.20) + cssnano: 6.1.2(postcss@8.5.23) jest-worker: 29.7.0 - postcss: 8.5.20 + postcss: 8.5.23 schema-utils: 4.3.3 serialize-javascript: 7.0.5 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) optionalDependencies: clean-css: 5.3.3 esbuild: 0.25.0 - css-prefers-color-scheme@10.0.0(postcss@8.5.20): + css-prefers-color-scheme@10.0.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 css-select@4.3.0: dependencies: @@ -11221,60 +11227,60 @@ snapshots: cssesc@3.0.0: {} - cssnano-preset-advanced@6.1.2(postcss@8.5.20): + cssnano-preset-advanced@6.1.2(postcss@8.5.23): dependencies: - autoprefixer: 10.5.4(postcss@8.5.20) + autoprefixer: 10.5.4(postcss@8.5.23) browserslist: 4.28.6 - cssnano-preset-default: 6.1.2(postcss@8.5.20) - postcss: 8.5.20 - postcss-discard-unused: 6.0.5(postcss@8.5.20) - postcss-merge-idents: 6.0.3(postcss@8.5.20) - postcss-reduce-idents: 6.0.3(postcss@8.5.20) - postcss-zindex: 6.0.2(postcss@8.5.20) + cssnano-preset-default: 6.1.2(postcss@8.5.23) + postcss: 8.5.23 + postcss-discard-unused: 6.0.5(postcss@8.5.23) + postcss-merge-idents: 6.0.3(postcss@8.5.23) + postcss-reduce-idents: 6.0.3(postcss@8.5.23) + postcss-zindex: 6.0.2(postcss@8.5.23) - cssnano-preset-default@6.1.2(postcss@8.5.20): + cssnano-preset-default@6.1.2(postcss@8.5.23): dependencies: browserslist: 4.28.6 - css-declaration-sorter: 7.4.0(postcss@8.5.20) - cssnano-utils: 4.0.2(postcss@8.5.20) - postcss: 8.5.20 - postcss-calc: 9.0.1(postcss@8.5.20) - postcss-colormin: 6.1.0(postcss@8.5.20) - postcss-convert-values: 6.1.0(postcss@8.5.20) - postcss-discard-comments: 6.0.2(postcss@8.5.20) - postcss-discard-duplicates: 6.0.3(postcss@8.5.20) - postcss-discard-empty: 6.0.3(postcss@8.5.20) - postcss-discard-overridden: 6.0.2(postcss@8.5.20) - postcss-merge-longhand: 6.0.5(postcss@8.5.20) - postcss-merge-rules: 6.1.1(postcss@8.5.20) - postcss-minify-font-values: 6.1.0(postcss@8.5.20) - postcss-minify-gradients: 6.0.3(postcss@8.5.20) - postcss-minify-params: 6.1.0(postcss@8.5.20) - postcss-minify-selectors: 6.0.4(postcss@8.5.20) - postcss-normalize-charset: 6.0.2(postcss@8.5.20) - postcss-normalize-display-values: 6.0.2(postcss@8.5.20) - postcss-normalize-positions: 6.0.2(postcss@8.5.20) - postcss-normalize-repeat-style: 6.0.2(postcss@8.5.20) - postcss-normalize-string: 6.0.2(postcss@8.5.20) - postcss-normalize-timing-functions: 6.0.2(postcss@8.5.20) - postcss-normalize-unicode: 6.1.0(postcss@8.5.20) - postcss-normalize-url: 6.0.2(postcss@8.5.20) - postcss-normalize-whitespace: 6.0.2(postcss@8.5.20) - postcss-ordered-values: 6.0.2(postcss@8.5.20) - postcss-reduce-initial: 6.1.0(postcss@8.5.20) - postcss-reduce-transforms: 6.0.2(postcss@8.5.20) - postcss-svgo: 6.0.3(postcss@8.5.20) - postcss-unique-selectors: 6.0.4(postcss@8.5.20) - - cssnano-utils@4.0.2(postcss@8.5.20): - dependencies: - postcss: 8.5.20 - - cssnano@6.1.2(postcss@8.5.20): - dependencies: - cssnano-preset-default: 6.1.2(postcss@8.5.20) + css-declaration-sorter: 7.4.0(postcss@8.5.23) + cssnano-utils: 4.0.2(postcss@8.5.23) + postcss: 8.5.23 + postcss-calc: 9.0.1(postcss@8.5.23) + postcss-colormin: 6.1.0(postcss@8.5.23) + postcss-convert-values: 6.1.0(postcss@8.5.23) + postcss-discard-comments: 6.0.2(postcss@8.5.23) + postcss-discard-duplicates: 6.0.3(postcss@8.5.23) + postcss-discard-empty: 6.0.3(postcss@8.5.23) + postcss-discard-overridden: 6.0.2(postcss@8.5.23) + postcss-merge-longhand: 6.0.5(postcss@8.5.23) + postcss-merge-rules: 6.1.1(postcss@8.5.23) + postcss-minify-font-values: 6.1.0(postcss@8.5.23) + postcss-minify-gradients: 6.0.3(postcss@8.5.23) + postcss-minify-params: 6.1.0(postcss@8.5.23) + postcss-minify-selectors: 6.0.4(postcss@8.5.23) + postcss-normalize-charset: 6.0.2(postcss@8.5.23) + postcss-normalize-display-values: 6.0.2(postcss@8.5.23) + postcss-normalize-positions: 6.0.2(postcss@8.5.23) + postcss-normalize-repeat-style: 6.0.2(postcss@8.5.23) + postcss-normalize-string: 6.0.2(postcss@8.5.23) + postcss-normalize-timing-functions: 6.0.2(postcss@8.5.23) + postcss-normalize-unicode: 6.1.0(postcss@8.5.23) + postcss-normalize-url: 6.0.2(postcss@8.5.23) + postcss-normalize-whitespace: 6.0.2(postcss@8.5.23) + postcss-ordered-values: 6.0.2(postcss@8.5.23) + postcss-reduce-initial: 6.1.0(postcss@8.5.23) + postcss-reduce-transforms: 6.0.2(postcss@8.5.23) + postcss-svgo: 6.0.3(postcss@8.5.23) + postcss-unique-selectors: 6.0.4(postcss@8.5.23) + + cssnano-utils@4.0.2(postcss@8.5.23): + dependencies: + postcss: 8.5.23 + + cssnano@6.1.2(postcss@8.5.23): + dependencies: + cssnano-preset-default: 6.1.2(postcss@8.5.23) lilconfig: 3.1.3 - postcss: 8.5.20 + postcss: 8.5.23 csso@5.0.5: dependencies: @@ -11411,7 +11417,7 @@ snapshots: globals-docs: 2.4.1 highlight.js: 10.7.3 ini: 1.3.8 - js-yaml: 3.15.0 + js-yaml: 3.15.1 lodash: 4.18.1 mdast-util-find-and-replace: 1.1.1 mdast-util-inject: 1.1.0 @@ -11774,7 +11780,7 @@ snapshots: fast-json-stable-stringify@2.1.0: {} - fast-uri@3.1.4: {} + fast-uri@3.1.5: {} fastq@1.20.1: dependencies: @@ -11804,11 +11810,11 @@ snapshots: dependencies: escape-string-regexp: 1.0.5 - file-loader@6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + file-loader@6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) fill-range@7.1.1: dependencies: @@ -12258,7 +12264,7 @@ snapshots: html-void-elements@3.0.0: {} - html-webpack-plugin@5.6.7(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + html-webpack-plugin@5.6.7(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -12266,7 +12272,7 @@ snapshots: pretty-error: 4.0.0 tapable: 2.3.3 optionalDependencies: - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) htmlparser2@6.1.0: dependencies: @@ -12339,9 +12345,9 @@ snapshots: dependencies: safer-buffer: 2.1.2 - icss-utils@5.1.0(postcss@8.5.20): + icss-utils@5.1.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 ignore@5.3.2: {} @@ -12563,12 +12569,12 @@ snapshots: js-tokens@4.0.0: {} - js-yaml@3.15.0: + js-yaml@3.15.1: dependencies: argparse: 1.0.10 esprima: 4.0.1 - js-yaml@4.3.0: + js-yaml@4.3.1: dependencies: argparse: 2.0.1 @@ -13510,17 +13516,17 @@ snapshots: min-indent@1.0.1: {} - mini-css-extract-plugin@2.10.2(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + mini-css-extract-plugin@2.10.2(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: schema-utils: 4.3.3 tapable: 2.3.3 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) minimalistic-assert@1.0.1: {} minimatch@3.1.5: dependencies: - brace-expansion: 1.1.16 + brace-expansion: 1.1.18 minimist-options@4.1.0: dependencies: @@ -13530,19 +13536,19 @@ snapshots: minimist@1.2.8: {} - minimizer-webpack-plugin@5.6.1(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + minimizer-webpack-plugin@5.6.1(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.49.0 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) optionalDependencies: clean-css: 5.3.3 - cssnano: 6.1.2(postcss@8.5.20) + cssnano: 6.1.2(postcss@8.5.23) esbuild: 0.25.0 html-minifier-terser: 7.2.0 - postcss: 8.5.20 + postcss: 8.5.23 mock-local-storage@1.1.24: dependencies: @@ -13583,7 +13589,7 @@ snapshots: dns-packet: 5.6.1 thunky: 1.1.0 - nanoid@3.3.16: {} + nanoid@3.3.18: {} negotiator@0.6.3: {} @@ -13641,11 +13647,11 @@ snapshots: dependencies: boolbase: 1.0.0 - null-loader@4.0.1(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + null-loader@4.0.1(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) object-assign@4.1.1: {} @@ -13908,407 +13914,407 @@ snapshots: pvutils: 1.1.5 tslib: 2.8.1 - postcss-attribute-case-insensitive@7.0.1(postcss@8.5.20): + postcss-attribute-case-insensitive@7.0.1(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 - postcss-calc@9.0.1(postcss@8.5.20): + postcss-calc@9.0.1(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 6.1.4 postcss-value-parser: 4.2.0 - postcss-clamp@4.1.0(postcss@8.5.20): + postcss-clamp@4.1.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-color-functional-notation@7.0.12(postcss@8.5.20): + postcss-color-functional-notation@7.0.12(postcss@8.5.23): dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - postcss-color-hex-alpha@10.0.0(postcss@8.5.20): + postcss-color-hex-alpha@10.0.0(postcss@8.5.23): dependencies: - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-color-rebeccapurple@10.0.0(postcss@8.5.20): + postcss-color-rebeccapurple@10.0.0(postcss@8.5.23): dependencies: - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-colormin@6.1.0(postcss@8.5.20): + postcss-colormin@6.1.0(postcss@8.5.23): dependencies: browserslist: 4.28.6 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-convert-values@6.1.0(postcss@8.5.20): + postcss-convert-values@6.1.0(postcss@8.5.23): dependencies: browserslist: 4.28.6 - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-custom-media@11.0.6(postcss@8.5.20): + postcss-custom-media@11.0.6(postcss@8.5.23): dependencies: '@csstools/cascade-layer-name-parser': 2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 '@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) - postcss: 8.5.20 + postcss: 8.5.23 - postcss-custom-properties@14.0.6(postcss@8.5.20): + postcss-custom-properties@14.0.6(postcss@8.5.23): dependencies: '@csstools/cascade-layer-name-parser': 2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-custom-selectors@8.0.5(postcss@8.5.20): + postcss-custom-selectors@8.0.5(postcss@8.5.23): dependencies: '@csstools/cascade-layer-name-parser': 2.0.5(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 - postcss-dir-pseudo-class@9.0.1(postcss@8.5.20): + postcss-dir-pseudo-class@9.0.1(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 - postcss-discard-comments@6.0.2(postcss@8.5.20): + postcss-discard-comments@6.0.2(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - postcss-discard-duplicates@6.0.3(postcss@8.5.20): + postcss-discard-duplicates@6.0.3(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - postcss-discard-empty@6.0.3(postcss@8.5.20): + postcss-discard-empty@6.0.3(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - postcss-discard-overridden@6.0.2(postcss@8.5.20): + postcss-discard-overridden@6.0.2(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - postcss-discard-unused@6.0.5(postcss@8.5.20): + postcss-discard-unused@6.0.5(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 6.1.4 - postcss-double-position-gradients@6.0.4(postcss@8.5.20): + postcss-double-position-gradients@6.0.4(postcss@8.5.23): dependencies: - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-focus-visible@10.0.1(postcss@8.5.20): + postcss-focus-visible@10.0.1(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 - postcss-focus-within@9.0.1(postcss@8.5.20): + postcss-focus-within@9.0.1(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 - postcss-font-variant@5.0.0(postcss@8.5.20): + postcss-font-variant@5.0.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - postcss-gap-properties@6.0.0(postcss@8.5.20): + postcss-gap-properties@6.0.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - postcss-image-set-function@7.0.0(postcss@8.5.20): + postcss-image-set-function@7.0.0(postcss@8.5.23): dependencies: - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-lab-function@7.0.12(postcss@8.5.20): + postcss-lab-function@7.0.12(postcss@8.5.23): dependencies: '@csstools/css-color-parser': 3.1.0(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/utilities': 2.0.0(postcss@8.5.20) - postcss: 8.5.20 + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/utilities': 2.0.0(postcss@8.5.23) + postcss: 8.5.23 - postcss-loader@7.3.4(postcss@8.5.20)(typescript@7.0.1-rc)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + postcss-loader@7.3.4(postcss@8.5.23)(typescript@7.0.1-rc)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: cosmiconfig: 8.3.6(typescript@7.0.1-rc) jiti: 1.21.7 - postcss: 8.5.20 + postcss: 8.5.23 semver: 7.8.5 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) transitivePeerDependencies: - typescript - postcss-logical@8.1.0(postcss@8.5.20): + postcss-logical@8.1.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-merge-idents@6.0.3(postcss@8.5.20): + postcss-merge-idents@6.0.3(postcss@8.5.23): dependencies: - cssnano-utils: 4.0.2(postcss@8.5.20) - postcss: 8.5.20 + cssnano-utils: 4.0.2(postcss@8.5.23) + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-merge-longhand@6.0.5(postcss@8.5.20): + postcss-merge-longhand@6.0.5(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - stylehacks: 6.1.1(postcss@8.5.20) + stylehacks: 6.1.1(postcss@8.5.23) - postcss-merge-rules@6.1.1(postcss@8.5.20): + postcss-merge-rules@6.1.1(postcss@8.5.23): dependencies: browserslist: 4.28.6 caniuse-api: 3.0.0 - cssnano-utils: 4.0.2(postcss@8.5.20) - postcss: 8.5.20 + cssnano-utils: 4.0.2(postcss@8.5.23) + postcss: 8.5.23 postcss-selector-parser: 6.1.4 - postcss-minify-font-values@6.1.0(postcss@8.5.20): + postcss-minify-font-values@6.1.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-minify-gradients@6.0.3(postcss@8.5.20): + postcss-minify-gradients@6.0.3(postcss@8.5.23): dependencies: colord: 2.9.3 - cssnano-utils: 4.0.2(postcss@8.5.20) - postcss: 8.5.20 + cssnano-utils: 4.0.2(postcss@8.5.23) + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-minify-params@6.1.0(postcss@8.5.20): + postcss-minify-params@6.1.0(postcss@8.5.23): dependencies: browserslist: 4.28.6 - cssnano-utils: 4.0.2(postcss@8.5.20) - postcss: 8.5.20 + cssnano-utils: 4.0.2(postcss@8.5.23) + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-minify-selectors@6.0.4(postcss@8.5.20): + postcss-minify-selectors@6.0.4(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 6.1.4 - postcss-modules-extract-imports@3.1.0(postcss@8.5.20): + postcss-modules-extract-imports@3.1.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - postcss-modules-local-by-default@4.2.0(postcss@8.5.20): + postcss-modules-local-by-default@4.2.0(postcss@8.5.23): dependencies: - icss-utils: 5.1.0(postcss@8.5.20) - postcss: 8.5.20 + icss-utils: 5.1.0(postcss@8.5.23) + postcss: 8.5.23 postcss-selector-parser: 7.1.4 postcss-value-parser: 4.2.0 - postcss-modules-scope@3.2.1(postcss@8.5.20): + postcss-modules-scope@3.2.1(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 - postcss-modules-values@4.0.0(postcss@8.5.20): + postcss-modules-values@4.0.0(postcss@8.5.23): dependencies: - icss-utils: 5.1.0(postcss@8.5.20) - postcss: 8.5.20 + icss-utils: 5.1.0(postcss@8.5.23) + postcss: 8.5.23 - postcss-nesting@13.0.2(postcss@8.5.20): + postcss-nesting@13.0.2(postcss@8.5.23): dependencies: '@csstools/selector-resolve-nested': 3.1.0(postcss-selector-parser@7.1.4) '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.4) - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 - postcss-normalize-charset@6.0.2(postcss@8.5.20): + postcss-normalize-charset@6.0.2(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - postcss-normalize-display-values@6.0.2(postcss@8.5.20): + postcss-normalize-display-values@6.0.2(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-normalize-positions@6.0.2(postcss@8.5.20): + postcss-normalize-positions@6.0.2(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@6.0.2(postcss@8.5.20): + postcss-normalize-repeat-style@6.0.2(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-normalize-string@6.0.2(postcss@8.5.20): + postcss-normalize-string@6.0.2(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@6.0.2(postcss@8.5.20): + postcss-normalize-timing-functions@6.0.2(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@6.1.0(postcss@8.5.20): + postcss-normalize-unicode@6.1.0(postcss@8.5.23): dependencies: browserslist: 4.28.6 - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-normalize-url@6.0.2(postcss@8.5.20): + postcss-normalize-url@6.0.2(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@6.0.2(postcss@8.5.20): + postcss-normalize-whitespace@6.0.2(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-opacity-percentage@3.0.0(postcss@8.5.20): + postcss-opacity-percentage@3.0.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - postcss-ordered-values@6.0.2(postcss@8.5.20): + postcss-ordered-values@6.0.2(postcss@8.5.23): dependencies: - cssnano-utils: 4.0.2(postcss@8.5.20) - postcss: 8.5.20 + cssnano-utils: 4.0.2(postcss@8.5.23) + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-overflow-shorthand@6.0.0(postcss@8.5.20): + postcss-overflow-shorthand@6.0.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-page-break@3.0.4(postcss@8.5.20): + postcss-page-break@3.0.4(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - postcss-place@10.0.0(postcss@8.5.20): + postcss-place@10.0.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-preset-env@10.6.1(postcss@8.5.20): - dependencies: - '@csstools/postcss-alpha-function': 1.0.1(postcss@8.5.20) - '@csstools/postcss-cascade-layers': 5.0.2(postcss@8.5.20) - '@csstools/postcss-color-function': 4.0.12(postcss@8.5.20) - '@csstools/postcss-color-function-display-p3-linear': 1.0.1(postcss@8.5.20) - '@csstools/postcss-color-mix-function': 3.0.12(postcss@8.5.20) - '@csstools/postcss-color-mix-variadic-function-arguments': 1.0.2(postcss@8.5.20) - '@csstools/postcss-content-alt-text': 2.0.8(postcss@8.5.20) - '@csstools/postcss-contrast-color-function': 2.0.12(postcss@8.5.20) - '@csstools/postcss-exponential-functions': 2.0.9(postcss@8.5.20) - '@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.5.20) - '@csstools/postcss-gamut-mapping': 2.0.11(postcss@8.5.20) - '@csstools/postcss-gradients-interpolation-method': 5.0.12(postcss@8.5.20) - '@csstools/postcss-hwb-function': 4.0.12(postcss@8.5.20) - '@csstools/postcss-ic-unit': 4.0.4(postcss@8.5.20) - '@csstools/postcss-initial': 2.0.1(postcss@8.5.20) - '@csstools/postcss-is-pseudo-class': 5.0.3(postcss@8.5.20) - '@csstools/postcss-light-dark-function': 2.0.11(postcss@8.5.20) - '@csstools/postcss-logical-float-and-clear': 3.0.0(postcss@8.5.20) - '@csstools/postcss-logical-overflow': 2.0.0(postcss@8.5.20) - '@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.5.20) - '@csstools/postcss-logical-resize': 3.0.0(postcss@8.5.20) - '@csstools/postcss-logical-viewport-units': 3.0.4(postcss@8.5.20) - '@csstools/postcss-media-minmax': 2.0.9(postcss@8.5.20) - '@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.5(postcss@8.5.20) - '@csstools/postcss-nested-calc': 4.0.0(postcss@8.5.20) - '@csstools/postcss-normalize-display-values': 4.0.1(postcss@8.5.20) - '@csstools/postcss-oklab-function': 4.0.12(postcss@8.5.20) - '@csstools/postcss-position-area-property': 1.0.0(postcss@8.5.20) - '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.20) - '@csstools/postcss-property-rule-prelude-list': 1.0.0(postcss@8.5.20) - '@csstools/postcss-random-function': 2.0.1(postcss@8.5.20) - '@csstools/postcss-relative-color-syntax': 3.0.12(postcss@8.5.20) - '@csstools/postcss-scope-pseudo-class': 4.0.1(postcss@8.5.20) - '@csstools/postcss-sign-functions': 1.1.4(postcss@8.5.20) - '@csstools/postcss-stepped-value-functions': 4.0.9(postcss@8.5.20) - '@csstools/postcss-syntax-descriptor-syntax-production': 1.0.1(postcss@8.5.20) - '@csstools/postcss-system-ui-font-family': 1.0.0(postcss@8.5.20) - '@csstools/postcss-text-decoration-shorthand': 4.0.3(postcss@8.5.20) - '@csstools/postcss-trigonometric-functions': 4.0.9(postcss@8.5.20) - '@csstools/postcss-unset-value': 4.0.0(postcss@8.5.20) - autoprefixer: 10.5.4(postcss@8.5.20) + postcss-preset-env@10.6.1(postcss@8.5.23): + dependencies: + '@csstools/postcss-alpha-function': 1.0.1(postcss@8.5.23) + '@csstools/postcss-cascade-layers': 5.0.2(postcss@8.5.23) + '@csstools/postcss-color-function': 4.0.12(postcss@8.5.23) + '@csstools/postcss-color-function-display-p3-linear': 1.0.1(postcss@8.5.23) + '@csstools/postcss-color-mix-function': 3.0.12(postcss@8.5.23) + '@csstools/postcss-color-mix-variadic-function-arguments': 1.0.2(postcss@8.5.23) + '@csstools/postcss-content-alt-text': 2.0.8(postcss@8.5.23) + '@csstools/postcss-contrast-color-function': 2.0.12(postcss@8.5.23) + '@csstools/postcss-exponential-functions': 2.0.9(postcss@8.5.23) + '@csstools/postcss-font-format-keywords': 4.0.0(postcss@8.5.23) + '@csstools/postcss-gamut-mapping': 2.0.11(postcss@8.5.23) + '@csstools/postcss-gradients-interpolation-method': 5.0.12(postcss@8.5.23) + '@csstools/postcss-hwb-function': 4.0.12(postcss@8.5.23) + '@csstools/postcss-ic-unit': 4.0.4(postcss@8.5.23) + '@csstools/postcss-initial': 2.0.1(postcss@8.5.23) + '@csstools/postcss-is-pseudo-class': 5.0.3(postcss@8.5.23) + '@csstools/postcss-light-dark-function': 2.0.11(postcss@8.5.23) + '@csstools/postcss-logical-float-and-clear': 3.0.0(postcss@8.5.23) + '@csstools/postcss-logical-overflow': 2.0.0(postcss@8.5.23) + '@csstools/postcss-logical-overscroll-behavior': 2.0.0(postcss@8.5.23) + '@csstools/postcss-logical-resize': 3.0.0(postcss@8.5.23) + '@csstools/postcss-logical-viewport-units': 3.0.4(postcss@8.5.23) + '@csstools/postcss-media-minmax': 2.0.9(postcss@8.5.23) + '@csstools/postcss-media-queries-aspect-ratio-number-values': 3.0.5(postcss@8.5.23) + '@csstools/postcss-nested-calc': 4.0.0(postcss@8.5.23) + '@csstools/postcss-normalize-display-values': 4.0.1(postcss@8.5.23) + '@csstools/postcss-oklab-function': 4.0.12(postcss@8.5.23) + '@csstools/postcss-position-area-property': 1.0.0(postcss@8.5.23) + '@csstools/postcss-progressive-custom-properties': 4.2.1(postcss@8.5.23) + '@csstools/postcss-property-rule-prelude-list': 1.0.0(postcss@8.5.23) + '@csstools/postcss-random-function': 2.0.1(postcss@8.5.23) + '@csstools/postcss-relative-color-syntax': 3.0.12(postcss@8.5.23) + '@csstools/postcss-scope-pseudo-class': 4.0.1(postcss@8.5.23) + '@csstools/postcss-sign-functions': 1.1.4(postcss@8.5.23) + '@csstools/postcss-stepped-value-functions': 4.0.9(postcss@8.5.23) + '@csstools/postcss-syntax-descriptor-syntax-production': 1.0.1(postcss@8.5.23) + '@csstools/postcss-system-ui-font-family': 1.0.0(postcss@8.5.23) + '@csstools/postcss-text-decoration-shorthand': 4.0.3(postcss@8.5.23) + '@csstools/postcss-trigonometric-functions': 4.0.9(postcss@8.5.23) + '@csstools/postcss-unset-value': 4.0.0(postcss@8.5.23) + autoprefixer: 10.5.4(postcss@8.5.23) browserslist: 4.28.6 - css-blank-pseudo: 7.0.1(postcss@8.5.20) - css-has-pseudo: 7.0.3(postcss@8.5.20) - css-prefers-color-scheme: 10.0.0(postcss@8.5.20) + css-blank-pseudo: 7.0.1(postcss@8.5.23) + css-has-pseudo: 7.0.3(postcss@8.5.23) + css-prefers-color-scheme: 10.0.0(postcss@8.5.23) cssdb: 8.9.0 - postcss: 8.5.20 - postcss-attribute-case-insensitive: 7.0.1(postcss@8.5.20) - postcss-clamp: 4.1.0(postcss@8.5.20) - postcss-color-functional-notation: 7.0.12(postcss@8.5.20) - postcss-color-hex-alpha: 10.0.0(postcss@8.5.20) - postcss-color-rebeccapurple: 10.0.0(postcss@8.5.20) - postcss-custom-media: 11.0.6(postcss@8.5.20) - postcss-custom-properties: 14.0.6(postcss@8.5.20) - postcss-custom-selectors: 8.0.5(postcss@8.5.20) - postcss-dir-pseudo-class: 9.0.1(postcss@8.5.20) - postcss-double-position-gradients: 6.0.4(postcss@8.5.20) - postcss-focus-visible: 10.0.1(postcss@8.5.20) - postcss-focus-within: 9.0.1(postcss@8.5.20) - postcss-font-variant: 5.0.0(postcss@8.5.20) - postcss-gap-properties: 6.0.0(postcss@8.5.20) - postcss-image-set-function: 7.0.0(postcss@8.5.20) - postcss-lab-function: 7.0.12(postcss@8.5.20) - postcss-logical: 8.1.0(postcss@8.5.20) - postcss-nesting: 13.0.2(postcss@8.5.20) - postcss-opacity-percentage: 3.0.0(postcss@8.5.20) - postcss-overflow-shorthand: 6.0.0(postcss@8.5.20) - postcss-page-break: 3.0.4(postcss@8.5.20) - postcss-place: 10.0.0(postcss@8.5.20) - postcss-pseudo-class-any-link: 10.0.1(postcss@8.5.20) - postcss-replace-overflow-wrap: 4.0.0(postcss@8.5.20) - postcss-selector-not: 8.0.1(postcss@8.5.20) - - postcss-pseudo-class-any-link@10.0.1(postcss@8.5.20): - dependencies: - postcss: 8.5.20 + postcss: 8.5.23 + postcss-attribute-case-insensitive: 7.0.1(postcss@8.5.23) + postcss-clamp: 4.1.0(postcss@8.5.23) + postcss-color-functional-notation: 7.0.12(postcss@8.5.23) + postcss-color-hex-alpha: 10.0.0(postcss@8.5.23) + postcss-color-rebeccapurple: 10.0.0(postcss@8.5.23) + postcss-custom-media: 11.0.6(postcss@8.5.23) + postcss-custom-properties: 14.0.6(postcss@8.5.23) + postcss-custom-selectors: 8.0.5(postcss@8.5.23) + postcss-dir-pseudo-class: 9.0.1(postcss@8.5.23) + postcss-double-position-gradients: 6.0.4(postcss@8.5.23) + postcss-focus-visible: 10.0.1(postcss@8.5.23) + postcss-focus-within: 9.0.1(postcss@8.5.23) + postcss-font-variant: 5.0.0(postcss@8.5.23) + postcss-gap-properties: 6.0.0(postcss@8.5.23) + postcss-image-set-function: 7.0.0(postcss@8.5.23) + postcss-lab-function: 7.0.12(postcss@8.5.23) + postcss-logical: 8.1.0(postcss@8.5.23) + postcss-nesting: 13.0.2(postcss@8.5.23) + postcss-opacity-percentage: 3.0.0(postcss@8.5.23) + postcss-overflow-shorthand: 6.0.0(postcss@8.5.23) + postcss-page-break: 3.0.4(postcss@8.5.23) + postcss-place: 10.0.0(postcss@8.5.23) + postcss-pseudo-class-any-link: 10.0.1(postcss@8.5.23) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.5.23) + postcss-selector-not: 8.0.1(postcss@8.5.23) + + postcss-pseudo-class-any-link@10.0.1(postcss@8.5.23): + dependencies: + postcss: 8.5.23 postcss-selector-parser: 7.1.4 - postcss-reduce-idents@6.0.3(postcss@8.5.20): + postcss-reduce-idents@6.0.3(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-reduce-initial@6.1.0(postcss@8.5.20): + postcss-reduce-initial@6.1.0(postcss@8.5.23): dependencies: browserslist: 4.28.6 caniuse-api: 3.0.0 - postcss: 8.5.20 + postcss: 8.5.23 - postcss-reduce-transforms@6.0.2(postcss@8.5.20): + postcss-reduce-transforms@6.0.2(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 - postcss-replace-overflow-wrap@4.0.0(postcss@8.5.20): + postcss-replace-overflow-wrap@4.0.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - postcss-selector-not@8.0.1(postcss@8.5.20): + postcss-selector-not@8.0.1(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 7.1.4 postcss-selector-parser@6.1.4: @@ -14321,31 +14327,31 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-sort-media-queries@5.2.0(postcss@8.5.20): + postcss-sort-media-queries@5.2.0(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 sort-css-media-queries: 2.2.0 - postcss-svgo@6.0.3(postcss@8.5.20): + postcss-svgo@6.0.3(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-value-parser: 4.2.0 svgo: 3.3.4 - postcss-unique-selectors@6.0.4(postcss@8.5.20): + postcss-unique-selectors@6.0.4(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 6.1.4 postcss-value-parser@4.2.0: {} - postcss-zindex@6.0.2(postcss@8.5.20): + postcss-zindex@6.0.2(postcss@8.5.23): dependencies: - postcss: 8.5.20 + postcss: 8.5.23 - postcss@8.5.20: + postcss@8.5.23: dependencies: - nanoid: 3.3.16 + nanoid: 3.3.18 picocolors: 1.1.1 source-map-js: 1.2.1 @@ -14470,11 +14476,11 @@ snapshots: dependencies: react: 19.2.5 - react-loadable-ssr-addon-v5-slorber@1.0.3(@docusaurus/react-loadable@6.0.0(react@19.2.5))(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + react-loadable-ssr-addon-v5-slorber@1.0.3(@docusaurus/react-loadable@6.0.0(react@19.2.5))(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: '@babel/runtime': 7.29.7 react-loadable: '@docusaurus/react-loadable@6.0.0(react@19.2.5)' - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) react-router-config@5.1.1(react-router@5.3.4(react@19.2.5))(react@19.2.5): dependencies: @@ -14858,7 +14864,7 @@ snapshots: dependencies: escalade: 3.2.0 picocolors: 1.1.1 - postcss: 8.5.20 + postcss: 8.5.23 strip-json-comments: 3.1.1 run-applescript@7.1.0: {} @@ -15264,10 +15270,10 @@ snapshots: dependencies: inline-style-parser: 0.2.7 - stylehacks@6.1.1(postcss@8.5.20): + stylehacks@6.1.1(postcss@8.5.23): dependencies: browserslist: 4.28.6 - postcss: 8.5.20 + postcss: 8.5.23 postcss-selector-parser: 6.1.4 subarg@1.0.0: @@ -15306,19 +15312,19 @@ snapshots: tapable@2.3.3: {} - terser-webpack-plugin@5.6.1(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + terser-webpack-plugin@5.6.1(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.49.0 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) optionalDependencies: clean-css: 5.3.3 - cssnano: 6.1.2(postcss@8.5.20) + cssnano: 6.1.2(postcss@8.5.23) esbuild: 0.25.0 html-minifier-terser: 7.2.0 - postcss: 8.5.20 + postcss: 8.5.23 terser@5.49.0: dependencies: @@ -15592,14 +15598,14 @@ snapshots: dependencies: punycode: 2.3.1 - url-loader@4.1.1(file-loader@6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)))(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + url-loader@4.1.1(file-loader@6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)))(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.3.0 - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) optionalDependencies: - file-loader: 6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + file-loader: 6.2.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) util-deprecate@1.0.2: {} @@ -15705,7 +15711,7 @@ snapshots: dependencies: lightningcss: 1.32.0 picomatch: 4.0.5 - postcss: 8.5.20 + postcss: 8.5.23 rolldown: 1.1.5 tinyglobby: 0.2.17 optionalDependencies: @@ -15771,7 +15777,7 @@ snapshots: - bufferutil - utf-8-validate - webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: colorette: 2.0.20 memfs: 4.64.0(tslib@2.8.1) @@ -15780,11 +15786,11 @@ snapshots: range-parser: 1.3.0 schema-utils: 4.3.3 optionalDependencies: - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) transitivePeerDependencies: - tslib - webpack-dev-server@5.2.6(tslib@2.8.1)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + webpack-dev-server@5.2.6(tslib@2.8.1)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -15812,10 +15818,10 @@ snapshots: serve-index: 1.9.2 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) ws: 8.21.1 optionalDependencies: - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) transitivePeerDependencies: - bufferutil - debug @@ -15837,7 +15843,7 @@ snapshots: webpack-sources@3.5.1: {} - webpack@5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20): + webpack@5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23): dependencies: '@types/estree': 1.0.9 '@types/json-schema': 7.0.15 @@ -15855,7 +15861,7 @@ snapshots: graceful-fs: 4.2.11 loader-runner: 4.3.2 mime-db: 1.54.0 - minimizer-webpack-plugin: 5.6.1(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)) + minimizer-webpack-plugin: 5.6.1(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23)(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)) neo-async: 2.6.2 schema-utils: 4.3.3 tapable: 2.3.3 @@ -15875,14 +15881,14 @@ snapshots: - postcss - uglify-js - webpackbar@7.0.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.20)): + webpackbar@7.0.0(webpack@5.108.4(esbuild@0.25.0)(postcss@8.5.23)): dependencies: ansis: 3.17.0 consola: 3.4.2 pretty-time: 1.1.0 std-env: 3.10.0 optionalDependencies: - webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.20))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.20) + webpack: 5.108.4(clean-css@5.3.3)(cssnano@6.1.2(postcss@8.5.23))(esbuild@0.25.0)(html-minifier-terser@7.2.0)(postcss@8.5.23) websocket-driver@0.7.5: dependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index fdb8e02..348740f 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -12,6 +12,7 @@ minimumReleaseAgeExclude: - vue-template-compiler@3.0.0 - serialize-javascript@7.0.3 - serialize-javascript@7.0.5 + - nanoid@3.3.18 overrides: esbuild: "0.25.0" serialize-javascript: "7.0.5" @@ -24,3 +25,9 @@ overrides: "@babel/core": "7.29.7" "documentation@13.2.5>vue-template-compiler": "-" webpackbar: "7.0.0" + brace-expansion: "1.1.18" + postcss: "8.5.23" + fast-uri: "3.1.5" + js-yaml: "4.3.1" + "documentation@13.2.5>js-yaml": "3.15.1" + nanoid: "3.3.18"