diff --git a/web/.gitignore b/web/.gitignore
new file mode 100644
index 0000000..1968fc8
--- /dev/null
+++ b/web/.gitignore
@@ -0,0 +1,27 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Environment variables
+.env.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/web/BUILDING_WILD_APP.md b/web/BUILDING_WILD_APP.md
new file mode 100644
index 0000000..df60f50
--- /dev/null
+++ b/web/BUILDING_WILD_APP.md
@@ -0,0 +1,380 @@
+# Building Wild App
+
+This document describes the architecture and tooling used to build the Wild App, the web-based interface for managing Wild Cloud instances, hosted on Wild Central.
+
+## Principles
+
+- Stick with well known standards.
+- Keep it simple.
+- Use popular, well-maintained libraries.
+- Use components wherever possible to avoid reinventing the wheel.
+- Use TypeScript for type safety.
+
+### Tooling
+## Dev Environment Requirements
+
+- Node.js 20+
+- pnpm for package management
+- vite for build tooling
+- React + TypeScript
+- Tailwind CSS for styling
+- shadcn/ui for ready-made components
+- radix-ui for accessible components
+- eslint for linting
+- tsc for type checking
+- vitest for unit tests
+
+#### Makefile commands
+
+- Build application: `make app-build`
+- Run locally: `make app-run`
+- Format code: `make app-fmt`
+- Lint and typecheck: `make app-check`
+- Test installation: `make app-test`
+
+### Scaffolding apps
+
+It is important to start an app with a good base structure to avoid difficult to debug config issues.
+
+This is a recommended setup.
+
+#### Install pnpm if necessary:
+
+```bash
+curl -fsSL https://get.pnpm.io/install.sh | sh -
+```
+
+#### Install a React + Speedy Web Compiler (SWC) + TypeScript + TailwindCSS app with vite:
+
+```
+pnpm create vite@latest my-app -- --template react-swc-ts
+```
+
+#### Reconfigure to use shadcn/ui (radix + tailwind components) (see https://ui.shadcn.com/docs/installation/vite)
+
+##### Add tailwind.
+
+```bash
+pnpm add tailwindcss @tailwindcss/vite
+```
+
+##### Replace everything in src/index.css with a tailwind import:
+
+```bash
+echo "@import \"tailwindcss\";" > src/index.css
+```
+
+##### Edit tsconfig files
+
+The current version of Vite splits TypeScript configuration into three files, two of which need to be edited. Add the baseUrl and paths properties to the compilerOptions section of the tsconfig.json and tsconfig.app.json files:
+
+tsconfig.json
+
+```json
+{
+ "files": [],
+ "references": [
+ {
+ "path": "./tsconfig.app.json"
+ },
+ {
+ "path": "./tsconfig.node.json"
+ }
+ ],
+ "compilerOptions": {
+ "baseUrl": ".",
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ }
+}
+```
+
+tsconfig.app.json
+
+```json
+{
+ "compilerOptions": {
+ // ...
+ "baseUrl": ".",
+ "paths": {
+ "@/*": [
+ "./src/*"
+ ]
+ }
+ // ...
+ }
+}
+```
+
+##### Update vite.config.ts
+
+```bash
+pnpm add -D @types/node
+```
+Then edit vite.config.ts to include the node types:
+
+```ts
+import path from "path"
+import tailwindcss from "@tailwindcss/vite"
+import react from "@vitejs/plugin-react"
+import { defineConfig } from "vite"
+
+// https://vite.dev/config/
+export default defineConfig({
+ plugins: [react(), tailwindcss()],
+ resolve: {
+ alias: {
+ "@": path.resolve(__dirname, "./src"),
+ },
+ },
+})
+```
+
+##### Run the cli
+
+```bash
+pnpm dlx shadcn@latest init
+```
+
+##### Add components
+
+```bash
+pnpm dlx shadcn@latest add button
+pnpm dlx shadcn@latest add alert-dialog
+```
+
+You can then use components with `import { Button } from "@/components/ui/button"`
+
+### UX Principles
+
+These principles ensure consistent, intuitive interfaces that align with Wild Cloud's philosophy of simplicity and clarity. Use them as quality control when building new components.
+
+#### Navigation & Structure
+
+- **Use shadcn AppSideBar** as the main navigation: https://ui.shadcn.com/docs/components/sidebar
+- **Card-Based Layout**: Group related content in Card components
+ - Primary cards: `p-6` padding
+ - Nested cards: `p-4` padding with subtle shadows
+ - Use cards to create visual hierarchy through nesting
+- **Spacing Rhythm**: Maintain consistent vertical spacing
+ - Major sections: `space-y-6`
+ - Related items: `space-y-4`
+ - Form fields: `space-y-3`
+ - Inline elements: `gap-2`, `gap-3`, or `gap-4`
+
+#### Visual Design
+
+- **Dark Mode**: Support both light and dark modes using Tailwind's `dark:` prefix
+ - Test all components in both modes for contrast and readability
+ - Use semantic color tokens that adapt to theme
+- **Status Color System**: Use semantic left border colors to categorize content
+ - Blue (`border-l-blue-500`): Configuration sections
+ - Green (`border-l-green-500`): Network/infrastructure
+ - Red (`border-l-red-500`): Errors and warnings
+ - Cyan: Educational content
+- **Icon-Text Pairing**: Pair important text with Lucide icons
+ - Place icons in colored containers: `p-2 bg-primary/10 rounded-lg`
+ - Provides visual anchors and improves scannability
+- **Technical Data Display**: Show technical information clearly
+ - Use `font-mono` class for IPs, domains, configuration values
+ - Display in `bg-muted rounded-md p-2` containers
+
+#### Component Patterns
+
+- **Edit/View Mode Toggle**: For configuration sections
+ - Read-only: Display in `bg-muted rounded-md font-mono` containers with Edit button
+ - Edit mode: Replace with form inputs in-place
+ - Provides lightweight editing without context switching
+- **Drawers for Complex Forms**: Use side panels for detailed input
+ - Maintains context with main content
+ - Better than modals for forms that benefit from seeing related data
+- **Educational Content**: Use gradient cards for helpful information
+ - Background: `from-cyan-50 to-blue-50 dark:from-cyan-900/20 dark:to-blue-900/20`
+ - Include book icon and clear, concise guidance
+ - Makes learning feel integrated, not intrusive
+- **Empty States**: Center content with clear next actions
+ - Large icon: `h-12 w-12 text-muted-foreground`
+ - Descriptive title and explanation
+ - Suggest action to resolve empty state
+
+#### Section Headers
+
+Structure all major section headers consistently:
+
+```tsx
+
+
+
+
+
+
Section Title
+
+ Brief description of section purpose
+
+
+
+```
+
+#### Status & Feedback
+
+- **Status Badges**: Use colored badges with icons for state indication
+ - Keep compact but descriptive
+ - Include hover/expansion for additional detail
+- **Alert Positioning**: Place alerts near related content
+ - Use semantic colors and icons (CheckCircle, AlertCircle, XCircle)
+ - Include dismissible X button for manual dismissal
+- **Success Messages**: Auto-dismiss after 5 seconds
+ - Green color with CheckCircle icon
+ - Clear, affirmative message
+- **Error Messages**: Structured and actionable
+ - Title in bold, detailed message below
+ - Red color with AlertCircle icon
+ - Suggest resolution when possible
+- **Loading States**: Context-appropriate indicators
+ - Inline: Use `Loader2` spinner in buttons/actions
+ - Full section: Card with centered spinner and descriptive text
+
+#### Form Components
+
+Use react-hook-form for all forms. Never duplicate component styling.
+
+**Standard Form Pattern**:
+```tsx
+import { useForm, Controller } from 'react-hook-form';
+import { Input, Label, Button } from '@/components/ui';
+import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from '@/components/ui/select';
+
+const { register, handleSubmit, control, formState: { errors } } = useForm({
+ defaultValues: { /* ... */ }
+});
+
+
+```
+
+**Rules**:
+- **Text inputs**: Use `Input` with `register()`
+- **Select dropdowns**: Use `Select` components with `Controller` (never native ``)
+- **All labels**: Use `Label` with `htmlFor` attribute
+- **Never copy classes**: Components provide default styling, only add spacing like `mt-1`
+- **Form spacing**: `space-y-3` on form containers
+- **Error messages**: `text-sm text-red-600 mt-1`
+- **Multi-action forms**: Place buttons side-by-side with `flex gap-2`
+
+#### Accessibility
+
+- **Focus Indicators**: All interactive elements must have visible focus states
+ - Use consistent `focus-visible:ring-*` styles
+ - Test keyboard navigation on all new components
+- **Screen Reader Support**: Proper semantic HTML and ARIA labels
+ - Use Label components for form inputs
+ - Provide descriptive text for icon-only buttons
+ - Test with screen readers when adding complex interactions
+
+#### Progressive Disclosure
+
+- **Just-in-Time Information**: Start simple, reveal details on demand
+ - Summary view by default
+ - Details through drawers, accordions, or inline expansion
+ - Reduces initial cognitive load
+- **Educational Context**: Provide help without interrupting flow
+ - Use gradient educational cards in logical places
+ - Include "Learn more" links to external documentation
+ - Keep content concise and actionable
+
+### App Layout
+
+- The sidebar let's you select which cloud instance you are curently managing from a dropdown.
+- The sidebar is divided into Central, Cluster, and Apps.
+ - Central: Utilities for managing Wild Central itself.
+ - Cluster: Utilities for managing the current Wild Cloud instance.
+ - Managing nodes.
+ - Managing services.
+ - Apps: Managing the apps deployed on the current Wild Cloud instance.
+ - List of apps.
+ - App details.
+ - App logs.
+ - App metrics.
+
+## Real-Time Updates with SSE
+
+The web app uses Server-Sent Events for real-time updates instead of polling. This reduces server load and provides instant updates.
+
+### Using the SSE Hooks
+
+```typescript
+import { useFilteredSSE } from '@/hooks/useGlobalSSE';
+
+// Listen to specific events for an instance
+const { isConnected } = useFilteredSSE(
+ instanceName, // Filter by instance
+ ['pod:modified', 'pod:deleted'], // Event types to listen for
+ { enabled: !!instanceName } // Only connect when instance is selected
+);
+```
+
+### How It Works
+
+1. **Global Connection**: A single SSE connection is established to `/api/v1/events` and shared across all components
+2. **Client-Side Filtering**: Events are filtered on the client based on instance and event type
+3. **Automatic Query Invalidation**: When events arrive, relevant React Query caches are automatically invalidated
+4. **No Polling**: Remove `refetchInterval` from useQuery hooks - SSE handles all updates
+
+### Event-Driven Patterns
+
+```typescript
+// Hook automatically subscribes to relevant events
+export function useDeployedApps(instanceName: string | null | undefined) {
+ // SSE handles real-time updates for these event types
+ useFilteredSSE(
+ instanceName,
+ ['pod:added', 'pod:modified', 'pod:deleted', 'deployment:modified'],
+ { enabled: !!instanceName }
+ );
+
+ // Query has no refetchInterval - SSE triggers invalidation
+ return useQuery({
+ queryKey: ['instances', instanceName, 'apps'],
+ queryFn: () => appsApi.listDeployed(instanceName!),
+ enabled: !!instanceName,
+ refetchInterval: false, // No polling!
+ staleTime: 120000, // Keep data fresh longer
+ });
+}
+```
+
+### Key Principles
+
+- **Single Connection**: One SSE connection serves the entire app
+- **Remove Polling**: Set `refetchInterval: false` on all queries
+- **Increase staleTime**: Set longer stale times (e.g., 120000ms) since SSE provides updates
+- **Filter Events**: Use `useFilteredSSE` to subscribe only to relevant events
+- **Automatic Cleanup**: Hooks handle connection lifecycle automatically
+
diff --git a/web/CLAUDE.md b/web/CLAUDE.md
new file mode 100644
index 0000000..d362851
--- /dev/null
+++ b/web/CLAUDE.md
@@ -0,0 +1,2 @@
+- @README.md
+- @BUILDING_WILD_APP.md
diff --git a/web/LICENSE b/web/LICENSE
new file mode 100644
index 0000000..0ad25db
--- /dev/null
+++ b/web/LICENSE
@@ -0,0 +1,661 @@
+ GNU AFFERO GENERAL PUBLIC LICENSE
+ Version 3, 19 November 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU Affero General Public License is a free, copyleft license for
+software and other kinds of works, specifically designed to ensure
+cooperation with the community in the case of network server software.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+our General Public Licenses are intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ Developers that use our General Public Licenses protect your rights
+with two steps: (1) assert copyright on the software, and (2) offer
+you this License which gives you legal permission to copy, distribute
+and/or modify the software.
+
+ A secondary benefit of defending all users' freedom is that
+improvements made in alternate versions of the program, if they
+receive widespread use, become available for other developers to
+incorporate. Many developers of free software are heartened and
+encouraged by the resulting cooperation. However, in the case of
+software used on network servers, this result may fail to come about.
+The GNU General Public License permits making a modified version and
+letting the public access it on a server without ever releasing its
+source code to the public.
+
+ The GNU Affero General Public License is designed specifically to
+ensure that, in such cases, the modified source code becomes available
+to the community. It requires the operator of a network server to
+provide the source code of the modified version running there to the
+users of that server. Therefore, public use of a modified version, on
+a publicly accessible server, gives the public access to the source
+code of the modified version.
+
+ An older license, called the Affero General Public License and
+published by Affero, was designed to accomplish similar goals. This is
+a different license, not a version of the Affero GPL, but Affero has
+released a new version of the Affero GPL which permits relicensing under
+this license.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU Affero General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Remote Network Interaction; Use with the GNU General Public License.
+
+ Notwithstanding any other provision of this License, if you modify the
+Program, your modified version must prominently offer all users
+interacting with it remotely through a computer network (if your version
+supports such interaction) an opportunity to receive the Corresponding
+Source of your version by providing access to the Corresponding Source
+from a network server at no charge, through some standard or customary
+means of facilitating copying of software. This Corresponding Source
+shall include the Corresponding Source for any work covered by version 3
+of the GNU General Public License that is incorporated pursuant to the
+following paragraph.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the work with which it is combined will remain governed by version
+3 of the GNU General Public License.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU Affero General Public License from time to time. Such new versions
+will be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU Affero General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU Affero General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU Affero General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+ If your software can interact with users remotely through a computer
+network, you should also make sure that it provides a way for users to
+get its source. For example, if your program is a web application, its
+interface could display a "Source" link that leads users to an archive
+of the code. There are many ways you could offer source, and different
+solutions will be better for different programs; see section 13 for the
+specific requirements.
+
+ You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU AGPL, see
+ .
diff --git a/web/README.md b/web/README.md
new file mode 100644
index 0000000..2ff4f92
--- /dev/null
+++ b/web/README.md
@@ -0,0 +1,67 @@
+# Wild Cloud Web App
+
+The Wild Cloud Web App is a web-based interface for managing Wild Cloud instances. It allows users to view and control their Wild Cloud environments, including deploying applications, monitoring resources, and configuring settings.
+
+## Prerequisites
+
+Before starting the web app, ensure the Wild Central API is running:
+
+```bash
+cd ../api
+make dev
+```
+
+The API should be accessible at `http://localhost:5055`.
+
+## Development
+
+### Initial Setup
+
+1. Copy the example environment file:
+```bash
+cp .env.example .env
+```
+
+2. Update `.env` if your API is running on a different host/port:
+```bash
+VITE_API_BASE_URL=http://localhost:5055
+```
+
+3. Install dependencies:
+```bash
+pnpm install
+```
+
+4. Start the development server:
+```bash
+pnpm run dev
+```
+
+The web app will be available at `http://localhost:5173` (or the next available port).
+
+## Other Scripts
+
+```bash
+pnpm run build # Build the project
+pnpm run lint # Lint the codebase
+pnpm run preview # Preview the production build
+pnpm run type-check # Type check the codebase
+pnpm run test # Run tests
+pnpm run test:ui # Run tests with UI
+pnpm run test:coverage # Run tests with coverage report
+pnpm run build:css # Build the CSS using Tailwind
+pnpm run check # Run lint, type-check, and tests
+```
+
+## Environment Variables
+
+### `VITE_API_BASE_URL`
+
+The base URL of the Wild Central API server.
+
+- **Default:** `http://localhost:5055`
+- **Example:** `http://192.168.1.100:5055`
+- **Usage:** Set in `.env` file (see `.env.example` for template)
+
+This variable is used by the API client to connect to the Wild Central API. If not set, it defaults to `http://localhost:5055`.
+
diff --git a/web/components.json b/web/components.json
new file mode 100644
index 0000000..73afbdb
--- /dev/null
+++ b/web/components.json
@@ -0,0 +1,21 @@
+{
+ "$schema": "https://ui.shadcn.com/schema.json",
+ "style": "new-york",
+ "rsc": false,
+ "tsx": true,
+ "tailwind": {
+ "config": "",
+ "css": "src/index.css",
+ "baseColor": "neutral",
+ "cssVariables": true,
+ "prefix": ""
+ },
+ "aliases": {
+ "components": "@/components",
+ "utils": "@/lib/utils",
+ "ui": "@/components/ui",
+ "lib": "@/lib",
+ "hooks": "@/hooks"
+ },
+ "iconLibrary": "lucide"
+}
\ No newline at end of file
diff --git a/web/docs/specs/routing-contract.md b/web/docs/specs/routing-contract.md
new file mode 100644
index 0000000..c1a65bc
--- /dev/null
+++ b/web/docs/specs/routing-contract.md
@@ -0,0 +1,470 @@
+# Wild Cloud Web App Routing Contract
+
+## Front Matter
+
+**Module Name**: `routing`
+**Module Type**: Infrastructure
+**Version**: 1.0.0
+**Status**: Draft
+**Last Updated**: 2025-10-12
+**Owner**: Wild Cloud Development Team
+
+### Dependencies
+
+- `react`: ^19.1.0
+- `react-router`: ^7.0.0 (to be added)
+
+### Consumers
+
+- All page components within Wild Cloud Web App
+- Navigation components (AppSidebar)
+- Instance context management
+- External navigation links
+
+## Purpose
+
+This module defines the routing system for the Wild Cloud web application, providing declarative navigation between pages, URL-based state management, and integration with the existing instance context system.
+
+## Public API
+
+### Router Configuration
+
+The routing system provides a centralized router configuration that manages all application routes.
+
+#### Primary Routes
+
+```typescript
+interface RouteDefinition {
+ path: string;
+ element: React.ComponentType;
+ loader?: () => Promise;
+ errorElement?: React.ComponentType;
+}
+```
+
+**Root Route**:
+- **Path**: `/`
+- **Purpose**: Landing page and instance selector
+- **Authentication**: None required
+- **Data Loading**: None
+
+**Instance Routes**:
+- **Path Pattern**: `/instances/:instanceId/*`
+- **Purpose**: All instance-specific pages
+- **Authentication**: Instance must exist
+- **Data Loading**: Instance configuration loaded at this level
+
+#### Instance-Scoped Routes
+
+All routes under `/instances/:instanceId/`:
+
+| Path | Purpose | Data Dependencies |
+|------|---------|-------------------|
+| `dashboard` | Overview and quick status | Instance config, cluster status |
+| `operations` | Operation monitoring and logs | Active operations list |
+| `cluster/health` | Cluster health metrics | Node status, etcd health |
+| `cluster/access` | Kubeconfig/Talosconfig download | Instance credentials |
+| `secrets` | Secrets management interface | Instance secrets (redacted) |
+| `services` | Base services management | Installed services list |
+| `utilities` | Utilities panel | Available utilities |
+| `cloud` | Cloud configuration | Cloud settings |
+| `dns` | DNS management | DNS configuration |
+| `dhcp` | DHCP management | DHCP configuration |
+| `pxe` | PXE boot configuration | PXE assets and config |
+| `infrastructure` | Cluster nodes | Node list and status |
+| `cluster` | Cluster services | Kubernetes services |
+| `apps` | Application management | Installed apps |
+| `advanced` | Advanced settings | System configuration |
+
+### Navigation Hooks
+
+#### useNavigate
+
+```typescript
+function useNavigate(): NavigateFunction;
+
+interface NavigateFunction {
+ (to: string | number, options?: NavigateOptions): void;
+}
+
+interface NavigateOptions {
+ replace?: boolean;
+ state?: unknown;
+}
+```
+
+**Purpose**: Programmatic navigation within the application.
+
+**Examples**:
+```typescript
+// Navigate to a specific instance dashboard
+navigate('/instances/prod-cluster/dashboard');
+
+// Navigate back
+navigate(-1);
+
+// Replace current history entry
+navigate('/instances/prod-cluster/operations', { replace: true });
+```
+
+**Error Conditions**:
+- Invalid paths are handled by error boundary
+- Missing instance IDs redirect to root
+
+#### useParams
+
+```typescript
+function useParams>(): T;
+```
+
+**Purpose**: Access URL parameters, primarily for extracting instance ID.
+
+**Example**:
+```typescript
+const { instanceId } = useParams<{ instanceId: string }>();
+```
+
+**Error Conditions**:
+- Returns undefined for missing parameters
+- Type safety through TypeScript generics
+
+#### useLocation
+
+```typescript
+interface Location {
+ pathname: string;
+ search: string;
+ hash: string;
+ state: unknown;
+ key: string;
+}
+
+function useLocation(): Location;
+```
+
+**Purpose**: Access current location information for conditional rendering or analytics.
+
+#### useSearchParams
+
+```typescript
+function useSearchParams(): [
+ URLSearchParams,
+ (nextInit: URLSearchParams | ((prev: URLSearchParams) => URLSearchParams)) => void
+];
+```
+
+**Purpose**: Read and write URL query parameters for filters, sorting, and view state.
+
+**Example**:
+```typescript
+const [searchParams, setSearchParams] = useSearchParams();
+const view = searchParams.get('view') || 'grid';
+setSearchParams({ view: 'list' });
+```
+
+### Link Component
+
+```typescript
+interface LinkProps {
+ to: string;
+ replace?: boolean;
+ state?: unknown;
+ children: React.ReactNode;
+ className?: string;
+}
+
+function Link(props: LinkProps): JSX.Element;
+```
+
+**Purpose**: Declarative navigation component for user-triggered navigation.
+
+**Example**:
+```typescript
+
+ Go to Dashboard
+
+```
+
+**Behavior**:
+- Prevents default browser navigation
+- Supports keyboard navigation (Enter)
+- Maintains browser history
+- Supports Ctrl/Cmd+Click to open in new tab
+
+### NavLink Component
+
+```typescript
+interface NavLinkProps extends LinkProps {
+ caseSensitive?: boolean;
+ end?: boolean;
+ className?: string | ((props: { isActive: boolean; isPending: boolean }) => string);
+ style?: React.CSSProperties | ((props: { isActive: boolean; isPending: boolean }) => React.CSSProperties);
+}
+
+function NavLink(props: NavLinkProps): JSX.Element;
+```
+
+**Purpose**: Navigation links that are aware of their active state.
+
+**Example**:
+```typescript
+ isActive ? 'active-nav-link' : 'nav-link'}
+>
+ Dashboard
+
+```
+
+## Data Models
+
+### Route Parameters
+
+```typescript
+interface InstanceRouteParams {
+ instanceId: string;
+}
+```
+
+**Field Specifications**:
+- `instanceId`: String identifier for the instance
+ - **Required**: Yes
+ - **Format**: Alphanumeric with hyphens, 1-64 characters
+ - **Validation**: Must correspond to an existing instance
+ - **Example**: `"prod-cluster"`, `"staging-env"`
+
+### Navigation State
+
+```typescript
+interface NavigationState {
+ from?: string;
+ returnTo?: string;
+ [key: string]: unknown;
+}
+```
+
+**Purpose**: Preserve state across navigation, such as return URLs or form data.
+
+**Example**:
+```typescript
+navigate('/instances/prod-cluster/secrets', {
+ state: { returnTo: '/instances/prod-cluster/dashboard' }
+});
+```
+
+## Error Model
+
+### Route Errors
+
+| Error Code | Condition | User Impact | Recovery Action |
+|------------|-----------|-------------|-----------------|
+| `ROUTE_NOT_FOUND` | Path does not match any route | 404 page displayed | Redirect to root or show available routes |
+| `INSTANCE_NOT_FOUND` | Instance ID in URL does not exist | Error boundary with message | Redirect to instance selector at `/` |
+| `INVALID_INSTANCE_ID` | Instance ID format invalid | Validation error displayed | Show error message, redirect to `/` |
+| `NAVIGATION_CANCELLED` | User cancelled pending navigation | No visible change | Continue at current route |
+| `LOADER_ERROR` | Route data loader failed | Error boundary with retry option | Show error, allow retry or navigate away |
+
+### Error Response Format
+
+```typescript
+interface RouteError {
+ code: string;
+ message: string;
+ status?: number;
+ cause?: Error;
+}
+```
+
+**Example**:
+```typescript
+{
+ code: "INSTANCE_NOT_FOUND",
+ message: "Instance 'unknown-instance' does not exist",
+ status: 404
+}
+```
+
+## Performance Characteristics
+
+### Route Transition Times
+
+- **Static Routes**: < 50ms (no data loading)
+- **Instance Routes**: < 200ms (with instance config loading)
+- **Heavy Data Routes**: < 500ms (with large data sets)
+
+### Bundle Size
+
+- **Router Core**: ~45KB (minified)
+- **Navigation Components**: ~5KB
+- **Per-Route Code Splitting**: Enabled by default
+
+### Memory Usage
+
+- **History Stack**: O(n) where n is number of navigation entries
+- **Route Cache**: Configurable, default 10 entries
+- **Cleanup**: Automatic on unmount
+
+## Configuration Requirements
+
+### Environment Variables
+
+None required. All routing is handled client-side.
+
+### Route Configuration
+
+```typescript
+interface RouterConfig {
+ basename?: string;
+ future?: {
+ v7_startTransition?: boolean;
+ v7_relativeSplatPath?: boolean;
+ };
+}
+```
+
+**basename**: Optional base path for deployment in subdirectories
+- **Default**: `"/"`
+- **Example**: `"/app"` if deployed to `example.com/app/`
+
+## Conformance Criteria
+
+### Functional Requirements
+
+1. **F-ROUTE-01**: Router SHALL render correct component for each defined route
+2. **F-ROUTE-02**: Router SHALL extract instance ID from URL parameters
+3. **F-ROUTE-03**: Navigation hooks SHALL update browser history
+4. **F-ROUTE-04**: Back/forward browser buttons SHALL work correctly
+5. **F-ROUTE-05**: Invalid routes SHALL display error boundary
+6. **F-ROUTE-06**: Instance routes SHALL validate instance existence
+7. **F-ROUTE-07**: Link components SHALL support keyboard navigation
+8. **F-ROUTE-08**: Routes SHALL support lazy loading of components
+
+### Non-Functional Requirements
+
+1. **NF-ROUTE-01**: Route transitions SHALL complete in < 200ms for cached routes
+2. **NF-ROUTE-02**: Router SHALL support browser back/forward without page reload
+3. **NF-ROUTE-03**: Navigation SHALL preserve scroll position when appropriate
+4. **NF-ROUTE-04**: Router SHALL be compatible with React 19.1+
+5. **NF-ROUTE-05**: Routes SHALL be defined declaratively in configuration
+6. **NF-ROUTE-06**: Router SHALL integrate with existing ErrorBoundary
+7. **NF-ROUTE-07**: Navigation SHALL work with InstanceContext
+
+### Integration Requirements
+
+1. **I-ROUTE-01**: Router SHALL integrate with InstanceContext
+2. **I-ROUTE-02**: AppSidebar SHALL use routing for navigation
+3. **I-ROUTE-03**: All page components SHALL be routed
+4. **I-ROUTE-04**: Router SHALL integrate with React Query for data loading
+5. **I-ROUTE-05**: Router SHALL support Vite code splitting
+
+## API Stability
+
+**Versioning Scheme**: Semantic Versioning (SemVer)
+
+**Stability Level**: Stable (1.0.0+)
+
+**Breaking Changes**:
+- Route path changes require major version bump
+- Hook signature changes require major version bump
+- Added routes or optional parameters are minor version bumps
+
+**Deprecation Policy**:
+- Deprecated routes supported for 2 minor versions
+- Console warnings for deprecated route usage
+- Migration guide provided for breaking changes
+
+## Security Considerations
+
+### Route Protection
+
+Instance routes SHALL verify:
+1. Instance ID exists in available instances
+2. User has permission to access instance (future)
+
+### XSS Prevention
+
+- All route parameters SHALL be sanitized
+- User-provided navigation state SHALL be validated
+- No executable code in route parameters
+
+### CSRF Protection
+
+Not applicable - all navigation is client-side without authentication tokens.
+
+## Browser Compatibility
+
+**Supported Browsers**:
+- Chrome/Edge: Last 2 versions
+- Firefox: Last 2 versions
+- Safari: Last 2 versions
+
+**Required Browser APIs**:
+- History API
+- URL API
+- ES6+ JavaScript features
+
+## Examples
+
+### Basic Navigation
+
+```typescript
+// In a component
+import { useNavigate } from 'react-router';
+
+function InstanceCard({ instance }) {
+ const navigate = useNavigate();
+
+ const handleClick = () => {
+ navigate(`/instances/${instance.id}/dashboard`);
+ };
+
+ return Open {instance.name} ;
+}
+```
+
+### Using Route Parameters
+
+```typescript
+// In an instance page
+import { useParams } from 'react-router';
+import { useInstanceContext } from '../hooks';
+
+function DashboardPage() {
+ const { instanceId } = useParams<{ instanceId: string }>();
+ const { setCurrentInstance } = useInstanceContext();
+
+ useEffect(() => {
+ setCurrentInstance(instanceId);
+ }, [instanceId, setCurrentInstance]);
+
+ return Dashboard for {instanceId}
;
+}
+```
+
+### Sidebar Integration
+
+```typescript
+// AppSidebar using NavLink
+import { NavLink } from 'react-router';
+
+function AppSidebar() {
+ const { instanceId } = useParams();
+
+ return (
+
+ isActive ? 'active' : ''}
+ >
+ Dashboard
+
+
+ );
+}
+```
+
+## Version History
+
+| Version | Date | Changes |
+|---------|------|---------|
+| 1.0.0 | 2025-10-12 | Initial contract definition |
diff --git a/web/eslint.config.js b/web/eslint.config.js
new file mode 100644
index 0000000..092408a
--- /dev/null
+++ b/web/eslint.config.js
@@ -0,0 +1,28 @@
+import js from '@eslint/js'
+import globals from 'globals'
+import reactHooks from 'eslint-plugin-react-hooks'
+import reactRefresh from 'eslint-plugin-react-refresh'
+import tseslint from 'typescript-eslint'
+
+export default tseslint.config(
+ { ignores: ['dist'] },
+ {
+ extends: [js.configs.recommended, ...tseslint.configs.recommended],
+ files: ['**/*.{ts,tsx}'],
+ languageOptions: {
+ ecmaVersion: 2020,
+ globals: globals.browser,
+ },
+ plugins: {
+ 'react-hooks': reactHooks,
+ 'react-refresh': reactRefresh,
+ },
+ rules: {
+ ...reactHooks.configs.recommended.rules,
+ 'react-refresh/only-export-components': [
+ 'warn',
+ { allowConstantExport: true },
+ ],
+ },
+ },
+)
diff --git a/web/index.html b/web/index.html
new file mode 100644
index 0000000..0aee50c
--- /dev/null
+++ b/web/index.html
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+ Wild Cloud Central
+
+
+ You need to enable JavaScript to run this app.
+
+
+
+
\ No newline at end of file
diff --git a/web/package.json b/web/package.json
new file mode 100644
index 0000000..0e375bf
--- /dev/null
+++ b/web/package.json
@@ -0,0 +1,75 @@
+{
+ "name": "wild-cloud-central",
+ "private": true,
+ "version": "1.0.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "tsc -b && vite build",
+ "lint": "eslint .",
+ "preview": "vite preview",
+ "type-check": "tsc -p tsconfig.app.json --noEmit",
+ "test": "vitest --run",
+ "test:ui": "vitest --ui",
+ "test:coverage": "vitest --coverage",
+ "build:css": "tailwindcss -i src/index.css -o ./output.css --config ./tailwind.config.js",
+ "check": "pnpm run lint && pnpm run type-check && pnpm run test"
+ },
+ "dependencies": {
+ "@hookform/resolvers": "^5.2.2",
+ "@radix-ui/react-checkbox": "^1.3.3",
+ "@radix-ui/react-collapsible": "^1.1.12",
+ "@radix-ui/react-dialog": "^1.1.15",
+ "@radix-ui/react-label": "^2.1.8",
+ "@radix-ui/react-select": "^2.2.6",
+ "@radix-ui/react-separator": "^1.1.8",
+ "@radix-ui/react-slot": "^1.2.4",
+ "@radix-ui/react-switch": "^1.2.6",
+ "@radix-ui/react-tabs": "^1.1.13",
+ "@radix-ui/react-tooltip": "^1.2.8",
+ "@tailwindcss/vite": "^4.1.18",
+ "@tanstack/react-query": "^5.90.20",
+ "@xterm/addon-fit": "^0.11.0",
+ "@xterm/addon-serialize": "^0.14.0",
+ "@xterm/xterm": "^6.0.0",
+ "class-variance-authority": "^0.7.1",
+ "clsx": "^2.1.1",
+ "date-fns": "^4.1.0",
+ "lucide-react": "^0.516.0",
+ "qrcode.react": "^4.2.0",
+ "radix-ui": "^1.4.3",
+ "react": "^19.2.4",
+ "react-dom": "^19.2.4",
+ "react-hook-form": "^7.71.1",
+ "react-markdown": "^10.1.0",
+ "react-router": "^7.13.0",
+ "react-router-dom": "^7.13.0",
+ "recharts": "^3.9.2",
+ "sonner": "^2.0.7",
+ "tailwind-merge": "^3.4.0",
+ "tailwindcss": "^4.1.18",
+ "zod": "^3.25.76"
+ },
+ "devDependencies": {
+ "@eslint/js": "^9.39.2",
+ "@tailwindcss/typography": "^0.5.19",
+ "@testing-library/jest-dom": "^6.9.1",
+ "@testing-library/react": "^16.3.2",
+ "@testing-library/user-event": "^14.6.1",
+ "@types/node": "^24.10.11",
+ "@types/react": "^19.2.13",
+ "@types/react-dom": "^19.2.3",
+ "@vitejs/plugin-react": "^4.7.0",
+ "eslint": "^9.39.2",
+ "eslint-plugin-react-hooks": "^5.2.0",
+ "eslint-plugin-react-refresh": "^0.4.26",
+ "globals": "^16.5.0",
+ "jsdom": "^27.4.0",
+ "tw-animate-css": "^1.4.0",
+ "typescript": "~5.8.3",
+ "typescript-eslint": "^8.54.0",
+ "vite": "^6.4.1",
+ "vitest": "^3.2.4"
+ },
+ "packageManager": "pnpm@10.9.0+sha512.0486e394640d3c1fb3c9d43d49cf92879ff74f8516959c235308f5a8f62e2e19528a65cdc2a3058f587cde71eba3d5b56327c8c33a97e4c4051ca48a10ca2d5f"
+}
diff --git a/web/pnpm-lock.yaml b/web/pnpm-lock.yaml
new file mode 100644
index 0000000..d148b52
--- /dev/null
+++ b/web/pnpm-lock.yaml
@@ -0,0 +1,6194 @@
+lockfileVersion: '9.0'
+
+settings:
+ autoInstallPeers: true
+ excludeLinksFromLockfile: false
+
+importers:
+
+ .:
+ dependencies:
+ '@hookform/resolvers':
+ specifier: ^5.2.2
+ version: 5.2.2(react-hook-form@7.71.1(react@19.2.4))
+ '@radix-ui/react-checkbox':
+ specifier: ^1.3.3
+ version: 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-collapsible':
+ specifier: ^1.1.12
+ version: 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-dialog':
+ specifier: ^1.1.15
+ version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-label':
+ specifier: ^2.1.8
+ version: 2.1.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-select':
+ specifier: ^2.2.6
+ version: 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-separator':
+ specifier: ^1.1.8
+ version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-slot':
+ specifier: ^1.2.4
+ version: 1.2.4(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-switch':
+ specifier: ^1.2.6
+ version: 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-tabs':
+ specifier: ^1.1.13
+ version: 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-tooltip':
+ specifier: ^1.2.8
+ version: 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@tailwindcss/vite':
+ specifier: ^4.1.18
+ version: 4.1.18(vite@6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2))
+ '@tanstack/react-query':
+ specifier: ^5.90.20
+ version: 5.90.20(react@19.2.4)
+ '@xterm/addon-fit':
+ specifier: ^0.11.0
+ version: 0.11.0
+ '@xterm/addon-serialize':
+ specifier: ^0.14.0
+ version: 0.14.0
+ '@xterm/xterm':
+ specifier: ^6.0.0
+ version: 6.0.0
+ class-variance-authority:
+ specifier: ^0.7.1
+ version: 0.7.1
+ clsx:
+ specifier: ^2.1.1
+ version: 2.1.1
+ date-fns:
+ specifier: ^4.1.0
+ version: 4.1.0
+ lucide-react:
+ specifier: ^0.516.0
+ version: 0.516.0(react@19.2.4)
+ qrcode.react:
+ specifier: ^4.2.0
+ version: 4.2.0(react@19.2.4)
+ radix-ui:
+ specifier: ^1.4.3
+ version: 1.4.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react:
+ specifier: ^19.2.4
+ version: 19.2.4
+ react-dom:
+ specifier: ^19.2.4
+ version: 19.2.4(react@19.2.4)
+ react-hook-form:
+ specifier: ^7.71.1
+ version: 7.71.1(react@19.2.4)
+ react-markdown:
+ specifier: ^10.1.0
+ version: 10.1.0(@types/react@19.2.13)(react@19.2.4)
+ react-router:
+ specifier: ^7.13.0
+ version: 7.13.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react-router-dom:
+ specifier: ^7.13.0
+ version: 7.13.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ recharts:
+ specifier: ^3.9.2
+ version: 3.9.2(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react-is@17.0.2)(react@19.2.4)(redux@5.0.1)
+ sonner:
+ specifier: ^2.0.7
+ version: 2.0.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ tailwind-merge:
+ specifier: ^3.4.0
+ version: 3.4.0
+ tailwindcss:
+ specifier: ^4.1.18
+ version: 4.1.18
+ zod:
+ specifier: ^3.25.76
+ version: 3.25.76
+ devDependencies:
+ '@eslint/js':
+ specifier: ^9.39.2
+ version: 9.39.2
+ '@tailwindcss/typography':
+ specifier: ^0.5.19
+ version: 0.5.19(tailwindcss@4.1.18)
+ '@testing-library/jest-dom':
+ specifier: ^6.9.1
+ version: 6.9.1
+ '@testing-library/react':
+ specifier: ^16.3.2
+ version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@testing-library/user-event':
+ specifier: ^14.6.1
+ version: 14.6.1(@testing-library/dom@10.4.1)
+ '@types/node':
+ specifier: ^24.10.11
+ version: 24.10.11
+ '@types/react':
+ specifier: ^19.2.13
+ version: 19.2.13
+ '@types/react-dom':
+ specifier: ^19.2.3
+ version: 19.2.3(@types/react@19.2.13)
+ '@vitejs/plugin-react':
+ specifier: ^4.7.0
+ version: 4.7.0(vite@6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2))
+ eslint:
+ specifier: ^9.39.2
+ version: 9.39.2(jiti@2.6.1)
+ eslint-plugin-react-hooks:
+ specifier: ^5.2.0
+ version: 5.2.0(eslint@9.39.2(jiti@2.6.1))
+ eslint-plugin-react-refresh:
+ specifier: ^0.4.26
+ version: 0.4.26(eslint@9.39.2(jiti@2.6.1))
+ globals:
+ specifier: ^16.5.0
+ version: 16.5.0
+ jsdom:
+ specifier: ^27.4.0
+ version: 27.4.0
+ tw-animate-css:
+ specifier: ^1.4.0
+ version: 1.4.0
+ typescript:
+ specifier: ~5.8.3
+ version: 5.8.3
+ typescript-eslint:
+ specifier: ^8.54.0
+ version: 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)
+ vite:
+ specifier: ^6.4.1
+ version: 6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2)
+ vitest:
+ specifier: ^3.2.4
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.11)(jiti@2.6.1)(jsdom@27.4.0)(lightningcss@1.30.2)(yaml@2.8.2)
+
+packages:
+
+ '@acemir/cssom@0.9.31':
+ resolution: {integrity: sha512-ZnR3GSaH+/vJ0YlHau21FjfLYjMpYVIzTD8M8vIEQvIGxeOXyXdzCI140rrCY862p/C/BbzWsjc1dgnM9mkoTA==}
+
+ '@adobe/css-tools@4.4.4':
+ resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==}
+
+ '@asamuzakjp/css-color@4.1.2':
+ resolution: {integrity: sha512-NfBUvBaYgKIuq6E/RBLY1m0IohzNHAYyaJGuTK79Z23uNwmz2jl1mPsC5ZxCCxylinKhT1Amn5oNTlx1wN8cQg==}
+
+ '@asamuzakjp/dom-selector@6.7.8':
+ resolution: {integrity: sha512-stisC1nULNc9oH5lakAj8MH88ZxeGxzyWNDfbdCxvJSJIvDsHNZqYvscGTgy/ysgXWLJPt6K/4t0/GjvtKcFJQ==}
+
+ '@asamuzakjp/nwsapi@2.3.9':
+ resolution: {integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==}
+
+ '@babel/code-frame@7.29.0':
+ resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/compat-data@7.29.0':
+ resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/core@7.29.0':
+ resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/generator@7.29.1':
+ resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-compilation-targets@7.28.6':
+ resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-globals@7.28.0':
+ resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-imports@7.28.6':
+ resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-transforms@7.28.6':
+ resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-plugin-utils@7.28.6':
+ resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-string-parser@7.27.1':
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-identifier@7.28.5':
+ resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-validator-option@7.27.1':
+ resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helpers@7.28.6':
+ resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/parser@7.29.0':
+ resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ '@babel/plugin-transform-react-jsx-self@7.27.1':
+ resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx-source@7.27.1':
+ resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/runtime@7.28.6':
+ resolution: {integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/template@7.28.6':
+ resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/traverse@7.29.0':
+ resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/types@7.29.0':
+ resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
+ engines: {node: '>=6.9.0'}
+
+ '@csstools/color-helpers@6.0.1':
+ resolution: {integrity: sha512-NmXRccUJMk2AWA5A7e5a//3bCIMyOu2hAtdRYrhPPHjDxINuCwX1w6rnIZ4xjLcp0ayv6h8Pc3X0eJUGiAAXHQ==}
+ engines: {node: '>=20.19.0'}
+
+ '@csstools/css-calc@3.0.0':
+ resolution: {integrity: sha512-q4d82GTl8BIlh/dTnVsWmxnbWJeb3kiU8eUH71UxlxnS+WIaALmtzTL8gR15PkYOexMQYVk0CO4qIG93C1IvPA==}
+ engines: {node: '>=20.19.0'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^4.0.0
+ '@csstools/css-tokenizer': ^4.0.0
+
+ '@csstools/css-color-parser@4.0.1':
+ resolution: {integrity: sha512-vYwO15eRBEkeF6xjAno/KQ61HacNhfQuuU/eGwH67DplL0zD5ZixUa563phQvUelA07yDczIXdtmYojCphKJcw==}
+ engines: {node: '>=20.19.0'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^4.0.0
+ '@csstools/css-tokenizer': ^4.0.0
+
+ '@csstools/css-parser-algorithms@4.0.0':
+ resolution: {integrity: sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==}
+ engines: {node: '>=20.19.0'}
+ peerDependencies:
+ '@csstools/css-tokenizer': ^4.0.0
+
+ '@csstools/css-syntax-patches-for-csstree@1.0.26':
+ resolution: {integrity: sha512-6boXK0KkzT5u5xOgF6TKB+CLq9SOpEGmkZw0g5n9/7yg85wab3UzSxB8TxhLJ31L4SGJ6BCFRw/iftTha1CJXA==}
+
+ '@csstools/css-tokenizer@4.0.0':
+ resolution: {integrity: sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==}
+ engines: {node: '>=20.19.0'}
+
+ '@esbuild/aix-ppc64@0.25.12':
+ resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
+ '@esbuild/android-arm64@0.25.12':
+ resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
+ '@esbuild/android-arm@0.25.12':
+ resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
+ '@esbuild/android-x64@0.25.12':
+ resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
+ '@esbuild/darwin-arm64@0.25.12':
+ resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@esbuild/darwin-x64@0.25.12':
+ resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@esbuild/freebsd-arm64@0.25.12':
+ resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-x64@0.25.12':
+ resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@esbuild/linux-arm64@0.25.12':
+ resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@esbuild/linux-arm@0.25.12':
+ resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
+ '@esbuild/linux-ia32@0.25.12':
+ resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
+ '@esbuild/linux-loong64@0.25.12':
+ resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@esbuild/linux-mips64el@0.25.12':
+ resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.25.12':
+ resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@esbuild/linux-riscv64@0.25.12':
+ resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@esbuild/linux-s390x@0.25.12':
+ resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@esbuild/linux-x64@0.25.12':
+ resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
+ '@esbuild/netbsd-arm64@0.25.12':
+ resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-x64@0.25.12':
+ resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-arm64@0.25.12':
+ resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-x64@0.25.12':
+ resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/openharmony-arm64@0.25.12':
+ resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@esbuild/sunos-x64@0.25.12':
+ resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@esbuild/win32-arm64@0.25.12':
+ resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@esbuild/win32-ia32@0.25.12':
+ resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@esbuild/win32-x64@0.25.12':
+ resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
+ '@eslint-community/eslint-utils@4.9.1':
+ resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+
+ '@eslint-community/regexpp@4.12.2':
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+
+ '@eslint/config-array@0.21.1':
+ resolution: {integrity: sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/config-helpers@0.4.2':
+ resolution: {integrity: sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/core@0.17.0':
+ resolution: {integrity: sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/eslintrc@3.3.3':
+ resolution: {integrity: sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/js@9.39.2':
+ resolution: {integrity: sha512-q1mjIoW1VX4IvSocvM/vbTiveKC4k9eLrajNEuSsmjymSDEbpGddtpfOoN7YGAqBK3NG+uqo8ia4PDTt8buCYA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/object-schema@2.1.7':
+ resolution: {integrity: sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/plugin-kit@0.4.1':
+ resolution: {integrity: sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@exodus/bytes@1.11.0':
+ resolution: {integrity: sha512-wO3vd8nsEHdumsXrjGO/v4p6irbg7hy9kvIeR6i2AwylZSk4HJdWgL0FNaVquW1+AweJcdvU1IEpuIWk/WaPnA==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ peerDependencies:
+ '@noble/hashes': ^1.8.0 || ^2.0.0
+ peerDependenciesMeta:
+ '@noble/hashes':
+ optional: true
+
+ '@floating-ui/core@1.7.4':
+ resolution: {integrity: sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==}
+
+ '@floating-ui/dom@1.7.5':
+ resolution: {integrity: sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==}
+
+ '@floating-ui/react-dom@2.1.7':
+ resolution: {integrity: sha512-0tLRojf/1Go2JgEVm+3Frg9A3IW8bJgKgdO0BN5RkF//ufuz2joZM63Npau2ff3J6lUVYgDSNzNkR+aH3IVfjg==}
+ peerDependencies:
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
+
+ '@floating-ui/utils@0.2.10':
+ resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
+
+ '@hookform/resolvers@5.2.2':
+ resolution: {integrity: sha512-A/IxlMLShx3KjV/HeTcTfaMxdwy690+L/ZADoeaTltLx+CVuzkeVIPuybK3jrRfw7YZnmdKsVVHAlEPIAEUNlA==}
+ peerDependencies:
+ react-hook-form: ^7.55.0
+
+ '@humanfs/core@0.19.1':
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanfs/node@0.16.7':
+ resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanwhocodes/module-importer@1.0.1':
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
+ engines: {node: '>=12.22'}
+
+ '@humanwhocodes/retry@0.4.3':
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
+ engines: {node: '>=18.18'}
+
+ '@jridgewell/gen-mapping@0.3.13':
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
+
+ '@jridgewell/remapping@2.3.5':
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
+
+ '@jridgewell/resolve-uri@3.1.2':
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
+ engines: {node: '>=6.0.0'}
+
+ '@jridgewell/sourcemap-codec@1.5.5':
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
+
+ '@jridgewell/trace-mapping@0.3.31':
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
+
+ '@radix-ui/number@1.1.1':
+ resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
+
+ '@radix-ui/primitive@1.1.3':
+ resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
+
+ '@radix-ui/react-accessible-icon@1.1.7':
+ resolution: {integrity: sha512-XM+E4WXl0OqUJFovy6GjmxxFyx9opfCAIUku4dlKRd5YEPqt4kALOkQOp0Of6reHuUkJuiPBEc5k0o4z4lTC8A==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-accordion@1.2.12':
+ resolution: {integrity: sha512-T4nygeh9YE9dLRPhAHSeOZi7HBXo+0kYIPJXayZfvWOWA0+n3dESrZbjfDPUABkUNym6Hd+f2IR113To8D2GPA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-alert-dialog@1.1.15':
+ resolution: {integrity: sha512-oTVLkEw5GpdRe29BqJ0LSDFWI3qu0vR1M0mUkOQWDIUnY/QIkLpgDMWuKxP94c2NAC2LGcgVhG1ImF3jkZ5wXw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-arrow@1.1.7':
+ resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-aspect-ratio@1.1.7':
+ resolution: {integrity: sha512-Yq6lvO9HQyPwev1onK1daHCHqXVLzPhSVjmsNjCa2Zcxy2f7uJD2itDtxknv6FzAKCwD1qQkeVDmX/cev13n/g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-avatar@1.1.10':
+ resolution: {integrity: sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-checkbox@1.3.3':
+ resolution: {integrity: sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-collapsible@1.1.12':
+ resolution: {integrity: sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-collection@1.1.7':
+ resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-compose-refs@1.1.2':
+ resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-context-menu@2.2.16':
+ resolution: {integrity: sha512-O8morBEW+HsVG28gYDZPTrT9UUovQUlJue5YO836tiTJhuIWBm/zQHc7j388sHWtdH/xUZurK9olD2+pcqx5ww==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-context@1.1.2':
+ resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-dialog@1.1.15':
+ resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-direction@1.1.1':
+ resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-dismissable-layer@1.1.11':
+ resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-dropdown-menu@2.1.16':
+ resolution: {integrity: sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-focus-guards@1.1.3':
+ resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-focus-scope@1.1.7':
+ resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-form@0.1.8':
+ resolution: {integrity: sha512-QM70k4Zwjttifr5a4sZFts9fn8FzHYvQ5PiB19O2HsYibaHSVt9fH9rzB0XZo/YcM+b7t/p7lYCT/F5eOeF5yQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-hover-card@1.1.15':
+ resolution: {integrity: sha512-qgTkjNT1CfKMoP0rcasmlH2r1DAiYicWsDsufxl940sT2wHNEWWv6FMWIQXWhVdmC1d/HYfbhQx60KYyAtKxjg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-id@1.1.1':
+ resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-label@2.1.7':
+ resolution: {integrity: sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-label@2.1.8':
+ resolution: {integrity: sha512-FmXs37I6hSBVDlO4y764TNz1rLgKwjJMQ0EGte6F3Cb3f4bIuHB/iLa/8I9VKkmOy+gNHq8rql3j686ACVV21A==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-menu@2.1.16':
+ resolution: {integrity: sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-menubar@1.1.16':
+ resolution: {integrity: sha512-EB1FktTz5xRRi2Er974AUQZWg2yVBb1yjip38/lgwtCVRd3a+maUoGHN/xs9Yv8SY8QwbSEb+YrxGadVWbEutA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-navigation-menu@1.2.14':
+ resolution: {integrity: sha512-YB9mTFQvCOAQMHU+C/jVl96WmuWeltyUEpRJJky51huhds5W2FQr1J8D/16sQlf0ozxkPK8uF3niQMdUwZPv5w==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-one-time-password-field@0.1.8':
+ resolution: {integrity: sha512-ycS4rbwURavDPVjCb5iS3aG4lURFDILi6sKI/WITUMZ13gMmn/xGjpLoqBAalhJaDk8I3UbCM5GzKHrnzwHbvg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-password-toggle-field@0.1.3':
+ resolution: {integrity: sha512-/UuCrDBWravcaMix4TdT+qlNdVwOM1Nck9kWx/vafXsdfj1ChfhOdfi3cy9SGBpWgTXwYCuboT/oYpJy3clqfw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-popover@1.1.15':
+ resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-popper@1.2.8':
+ resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-portal@1.1.9':
+ resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-presence@1.1.5':
+ resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-primitive@2.1.3':
+ resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-primitive@2.1.4':
+ resolution: {integrity: sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-progress@1.1.7':
+ resolution: {integrity: sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-radio-group@1.3.8':
+ resolution: {integrity: sha512-VBKYIYImA5zsxACdisNQ3BjCBfmbGH3kQlnFVqlWU4tXwjy7cGX8ta80BcrO+WJXIn5iBylEH3K6ZTlee//lgQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-roving-focus@1.1.11':
+ resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-scroll-area@1.2.10':
+ resolution: {integrity: sha512-tAXIa1g3sM5CGpVT0uIbUx/U3Gs5N8T52IICuCtObaos1S8fzsrPXG5WObkQN3S6NVl6wKgPhAIiBGbWnvc97A==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-select@2.2.6':
+ resolution: {integrity: sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-separator@1.1.7':
+ resolution: {integrity: sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-separator@1.1.8':
+ resolution: {integrity: sha512-sDvqVY4itsKwwSMEe0jtKgfTh+72Sy3gPmQpjqcQneqQ4PFmr/1I0YA+2/puilhggCe2gJcx5EBAYFkWkdpa5g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-slider@1.3.6':
+ resolution: {integrity: sha512-JPYb1GuM1bxfjMRlNLE+BcmBC8onfCi60Blk7OBqi2MLTFdS+8401U4uFjnwkOr49BLmXxLC6JHkvAsx5OJvHw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-slot@1.2.3':
+ resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-slot@1.2.4':
+ resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-switch@1.2.6':
+ resolution: {integrity: sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-tabs@1.1.13':
+ resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-toast@1.2.15':
+ resolution: {integrity: sha512-3OSz3TacUWy4WtOXV38DggwxoqJK4+eDkNMl5Z/MJZaoUPaP4/9lf81xXMe1I2ReTAptverZUpbPY4wWwWyL5g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-toggle-group@1.1.11':
+ resolution: {integrity: sha512-5umnS0T8JQzQT6HbPyO7Hh9dgd82NmS36DQr+X/YJ9ctFNCiiQd6IJAYYZ33LUwm8M+taCz5t2ui29fHZc4Y6Q==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-toggle@1.1.10':
+ resolution: {integrity: sha512-lS1odchhFTeZv3xwHH31YPObmJn8gOg7Lq12inrr0+BH/l3Tsq32VfjqH1oh80ARM3mlkfMic15n0kg4sD1poQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-toolbar@1.1.11':
+ resolution: {integrity: sha512-4ol06/1bLoFu1nwUqzdD4Y5RZ9oDdKeiHIsntug54Hcr1pgaHiPqHFEaXI1IFP/EsOfROQZ8Mig9VTIRza6Tjg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-tooltip@1.2.8':
+ resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-use-callback-ref@1.1.1':
+ resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-controllable-state@1.2.2':
+ resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-effect-event@0.0.2':
+ resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-escape-keydown@1.1.1':
+ resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-is-hydrated@0.1.0':
+ resolution: {integrity: sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-layout-effect@1.1.1':
+ resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-previous@1.1.1':
+ resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-rect@1.1.1':
+ resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-size@1.1.1':
+ resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-visually-hidden@1.2.3':
+ resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/rect@1.1.1':
+ resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
+
+ '@reduxjs/toolkit@2.12.0':
+ resolution: {integrity: sha512-KiT+RzZbp6mQET+Mg+h2c97+9j1sNflUxQkIHI7Yuzf6Peu+OYpmkn6nbHWmLLWj+1ZODUJFwGZ7gx3L9R9EOw==}
+ peerDependencies:
+ react: ^16.9.0 || ^17.0.0 || ^18 || ^19
+ react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-redux:
+ optional: true
+
+ '@rolldown/pluginutils@1.0.0-beta.27':
+ resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
+
+ '@rollup/rollup-android-arm-eabi@4.57.1':
+ resolution: {integrity: sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==}
+ cpu: [arm]
+ os: [android]
+
+ '@rollup/rollup-android-arm64@4.57.1':
+ resolution: {integrity: sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==}
+ cpu: [arm64]
+ os: [android]
+
+ '@rollup/rollup-darwin-arm64@4.57.1':
+ resolution: {integrity: sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-x64@4.57.1':
+ resolution: {integrity: sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rollup/rollup-freebsd-arm64@4.57.1':
+ resolution: {integrity: sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.57.1':
+ resolution: {integrity: sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.57.1':
+ resolution: {integrity: sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm-musleabihf@4.57.1':
+ resolution: {integrity: sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-gnu@4.57.1':
+ resolution: {integrity: sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-musl@4.57.1':
+ resolution: {integrity: sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-loong64-gnu@4.57.1':
+ resolution: {integrity: sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==}
+ cpu: [loong64]
+ os: [linux]
+
+ '@rollup/rollup-linux-loong64-musl@4.57.1':
+ resolution: {integrity: sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==}
+ cpu: [loong64]
+ os: [linux]
+
+ '@rollup/rollup-linux-ppc64-gnu@4.57.1':
+ resolution: {integrity: sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@rollup/rollup-linux-ppc64-musl@4.57.1':
+ resolution: {integrity: sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-gnu@4.57.1':
+ resolution: {integrity: sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-musl@4.57.1':
+ resolution: {integrity: sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@rollup/rollup-linux-s390x-gnu@4.57.1':
+ resolution: {integrity: sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-gnu@4.57.1':
+ resolution: {integrity: sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-musl@4.57.1':
+ resolution: {integrity: sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-openbsd-x64@4.57.1':
+ resolution: {integrity: sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@rollup/rollup-openharmony-arm64@4.57.1':
+ resolution: {integrity: sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rollup/rollup-win32-arm64-msvc@4.57.1':
+ resolution: {integrity: sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rollup/rollup-win32-ia32-msvc@4.57.1':
+ resolution: {integrity: sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-gnu@4.57.1':
+ resolution: {integrity: sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==}
+ cpu: [x64]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-msvc@4.57.1':
+ resolution: {integrity: sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==}
+ cpu: [x64]
+ os: [win32]
+
+ '@standard-schema/spec@1.1.0':
+ resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
+
+ '@standard-schema/utils@0.3.0':
+ resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
+
+ '@tailwindcss/node@4.1.18':
+ resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
+
+ '@tailwindcss/oxide-android-arm64@4.1.18':
+ resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [android]
+
+ '@tailwindcss/oxide-darwin-arm64@4.1.18':
+ resolution: {integrity: sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-darwin-x64@4.1.18':
+ resolution: {integrity: sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-freebsd-x64@4.1.18':
+ resolution: {integrity: sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18':
+ resolution: {integrity: sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.18':
+ resolution: {integrity: sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.18':
+ resolution: {integrity: sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.18':
+ resolution: {integrity: sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-x64-musl@4.1.18':
+ resolution: {integrity: sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@tailwindcss/oxide-wasm32-wasi@4.1.18':
+ resolution: {integrity: sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+ bundledDependencies:
+ - '@napi-rs/wasm-runtime'
+ - '@emnapi/core'
+ - '@emnapi/runtime'
+ - '@tybys/wasm-util'
+ - '@emnapi/wasi-threads'
+ - tslib
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.18':
+ resolution: {integrity: sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.18':
+ resolution: {integrity: sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@tailwindcss/oxide@4.1.18':
+ resolution: {integrity: sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==}
+ engines: {node: '>= 10'}
+
+ '@tailwindcss/typography@0.5.19':
+ resolution: {integrity: sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==}
+ peerDependencies:
+ tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1'
+
+ '@tailwindcss/vite@4.1.18':
+ resolution: {integrity: sha512-jVA+/UpKL1vRLg6Hkao5jldawNmRo7mQYrZtNHMIVpLfLhDml5nMRUo/8MwoX2vNXvnaXNNMedrMfMugAVX1nA==}
+ peerDependencies:
+ vite: ^5.2.0 || ^6 || ^7
+
+ '@tanstack/query-core@5.90.20':
+ resolution: {integrity: sha512-OMD2HLpNouXEfZJWcKeVKUgQ5n+n3A2JFmBaScpNDUqSrQSjiveC7dKMe53uJUg1nDG16ttFPz2xfilz6i2uVg==}
+
+ '@tanstack/react-query@5.90.20':
+ resolution: {integrity: sha512-vXBxa+qeyveVO7OA0jX1z+DeyCA4JKnThKv411jd5SORpBKgkcVnYKCiBgECvADvniBX7tobwBmg01qq9JmMJw==}
+ peerDependencies:
+ react: ^18 || ^19
+
+ '@testing-library/dom@10.4.1':
+ resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==}
+ engines: {node: '>=18'}
+
+ '@testing-library/jest-dom@6.9.1':
+ resolution: {integrity: sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==}
+ engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
+
+ '@testing-library/react@16.3.2':
+ resolution: {integrity: sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@testing-library/dom': ^10.0.0
+ '@types/react': ^18.0.0 || ^19.0.0
+ '@types/react-dom': ^18.0.0 || ^19.0.0
+ react: ^18.0.0 || ^19.0.0
+ react-dom: ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@testing-library/user-event@14.6.1':
+ resolution: {integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==}
+ engines: {node: '>=12', npm: '>=6'}
+ peerDependencies:
+ '@testing-library/dom': '>=7.21.4'
+
+ '@types/aria-query@5.0.4':
+ resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
+
+ '@types/babel__core@7.20.5':
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+
+ '@types/babel__generator@7.27.0':
+ resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
+
+ '@types/babel__template@7.4.4':
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
+
+ '@types/babel__traverse@7.28.0':
+ resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
+
+ '@types/chai@5.2.3':
+ resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
+
+ '@types/d3-array@3.2.2':
+ resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
+
+ '@types/d3-color@3.1.3':
+ resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
+
+ '@types/d3-ease@3.0.2':
+ resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
+
+ '@types/d3-interpolate@3.0.4':
+ resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
+
+ '@types/d3-path@3.1.1':
+ resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
+
+ '@types/d3-scale@4.0.9':
+ resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
+
+ '@types/d3-shape@3.1.8':
+ resolution: {integrity: sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==}
+
+ '@types/d3-time@3.0.4':
+ resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
+
+ '@types/d3-timer@3.0.2':
+ resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
+
+ '@types/debug@4.1.12':
+ resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
+
+ '@types/deep-eql@4.0.2':
+ resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
+
+ '@types/estree-jsx@1.0.5':
+ resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
+
+ '@types/estree@1.0.8':
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
+
+ '@types/hast@3.0.4':
+ resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
+
+ '@types/json-schema@7.0.15':
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
+
+ '@types/mdast@4.0.4':
+ resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
+
+ '@types/ms@2.1.0':
+ resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
+
+ '@types/node@24.10.11':
+ resolution: {integrity: sha512-/Af7O8r1frCVgOz0I62jWUtMohJ0/ZQU/ZoketltOJPZpnb17yoNc9BSoVuV9qlaIXJiPNOpsfq4ByFajSArNQ==}
+
+ '@types/react-dom@19.2.3':
+ resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
+ peerDependencies:
+ '@types/react': ^19.2.0
+
+ '@types/react@19.2.13':
+ resolution: {integrity: sha512-KkiJeU6VbYbUOp5ITMIc7kBfqlYkKA5KhEHVrGMmUUMt7NeaZg65ojdPk+FtNrBAOXNVM5QM72jnADjM+XVRAQ==}
+
+ '@types/unist@2.0.11':
+ resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
+
+ '@types/unist@3.0.3':
+ resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
+
+ '@types/use-sync-external-store@0.0.6':
+ resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==}
+
+ '@typescript-eslint/eslint-plugin@8.54.0':
+ resolution: {integrity: sha512-hAAP5io/7csFStuOmR782YmTthKBJ9ND3WVL60hcOjvtGFb+HJxH4O5huAcmcZ9v9G8P+JETiZ/G1B8MALnWZQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^8.54.0
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/parser@8.54.0':
+ resolution: {integrity: sha512-BtE0k6cjwjLZoZixN0t5AKP0kSzlGu7FctRXYuPAm//aaiZhmfq1JwdYpYr1brzEspYyFeF+8XF5j2VK6oalrA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/project-service@8.54.0':
+ resolution: {integrity: sha512-YPf+rvJ1s7MyiWM4uTRhE4DvBXrEV+d8oC3P9Y2eT7S+HBS0clybdMIPnhiATi9vZOYDc7OQ1L/i6ga6NFYK/g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/scope-manager@8.54.0':
+ resolution: {integrity: sha512-27rYVQku26j/PbHYcVfRPonmOlVI6gihHtXFbTdB5sb6qA0wdAQAbyXFVarQ5t4HRojIz64IV90YtsjQSSGlQg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/tsconfig-utils@8.54.0':
+ resolution: {integrity: sha512-dRgOyT2hPk/JwxNMZDsIXDgyl9axdJI3ogZ2XWhBPsnZUv+hPesa5iuhdYt2gzwA9t8RE5ytOJ6xB0moV0Ujvw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/type-utils@8.54.0':
+ resolution: {integrity: sha512-hiLguxJWHjjwL6xMBwD903ciAwd7DmK30Y9Axs/etOkftC3ZNN9K44IuRD/EB08amu+Zw6W37x9RecLkOo3pMA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/types@8.54.0':
+ resolution: {integrity: sha512-PDUI9R1BVjqu7AUDsRBbKMtwmjWcn4J3le+5LpcFgWULN3LvHC5rkc9gCVxbrsrGmO1jfPybN5s6h4Jy+OnkAA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/typescript-estree@8.54.0':
+ resolution: {integrity: sha512-BUwcskRaPvTk6fzVWgDPdUndLjB87KYDrN5EYGetnktoeAvPtO4ONHlAZDnj5VFnUANg0Sjm7j4usBlnoVMHwA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/utils@8.54.0':
+ resolution: {integrity: sha512-9Cnda8GS57AQakvRyG0PTejJNlA2xhvyNtEVIMlDWOOeEyBkYWhGPnfrIAnqxLMTSTo6q8g12XVjjev5l1NvMA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <6.0.0'
+
+ '@typescript-eslint/visitor-keys@8.54.0':
+ resolution: {integrity: sha512-VFlhGSl4opC0bprJiItPQ1RfUhGDIBokcPwaFH4yiBCaNPeld/9VeXbiPO1cLyorQi1G1vL+ecBk1x8o1axORA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@ungap/structured-clone@1.3.0':
+ resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
+
+ '@vitejs/plugin-react@4.7.0':
+ resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
+
+ '@vitest/expect@3.2.4':
+ resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==}
+
+ '@vitest/mocker@3.2.4':
+ resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==}
+ peerDependencies:
+ msw: ^2.4.9
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0
+ peerDependenciesMeta:
+ msw:
+ optional: true
+ vite:
+ optional: true
+
+ '@vitest/pretty-format@3.2.4':
+ resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==}
+
+ '@vitest/runner@3.2.4':
+ resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==}
+
+ '@vitest/snapshot@3.2.4':
+ resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==}
+
+ '@vitest/spy@3.2.4':
+ resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==}
+
+ '@vitest/utils@3.2.4':
+ resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==}
+
+ '@xterm/addon-fit@0.11.0':
+ resolution: {integrity: sha512-jYcgT6xtVYhnhgxh3QgYDnnNMYTcf8ElbxxFzX0IZo+vabQqSPAjC3c1wJrKB5E19VwQei89QCiZZP86DCPF7g==}
+
+ '@xterm/addon-serialize@0.14.0':
+ resolution: {integrity: sha512-uteyTU1EkrQa2Ux6P/uFl2fzmXI46jy5uoQMKEOM0fKTyiW7cSn0WrFenHm5vO5uEXX/GpwW/FgILvv3r0WbkA==}
+
+ '@xterm/xterm@6.0.0':
+ resolution: {integrity: sha512-TQwDdQGtwwDt+2cgKDLn0IRaSxYu1tSUjgKarSDkUM0ZNiSRXFpjxEsvc/Zgc5kq5omJ+V0a8/kIM2WD3sMOYg==}
+
+ acorn-jsx@5.3.2:
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+
+ acorn@8.15.0:
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
+ agent-base@7.1.4:
+ resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
+ engines: {node: '>= 14'}
+
+ ajv@6.12.6:
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+
+ ansi-regex@5.0.1:
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+ engines: {node: '>=8'}
+
+ ansi-styles@4.3.0:
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
+ engines: {node: '>=8'}
+
+ ansi-styles@5.2.0:
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
+ engines: {node: '>=10'}
+
+ argparse@2.0.1:
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
+
+ aria-hidden@1.2.6:
+ resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
+ engines: {node: '>=10'}
+
+ aria-query@5.3.0:
+ resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+
+ aria-query@5.3.2:
+ resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
+ engines: {node: '>= 0.4'}
+
+ assertion-error@2.0.1:
+ resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
+ engines: {node: '>=12'}
+
+ bail@2.0.2:
+ resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
+
+ balanced-match@1.0.2:
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+
+ baseline-browser-mapping@2.9.19:
+ resolution: {integrity: sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==}
+ hasBin: true
+
+ bidi-js@1.0.3:
+ resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==}
+
+ brace-expansion@1.1.12:
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
+
+ brace-expansion@2.0.2:
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
+
+ browserslist@4.28.1:
+ resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
+ cac@6.7.14:
+ resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
+ engines: {node: '>=8'}
+
+ callsites@3.1.0:
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+ engines: {node: '>=6'}
+
+ caniuse-lite@1.0.30001769:
+ resolution: {integrity: sha512-BCfFL1sHijQlBGWBMuJyhZUhzo7wer5sVj9hqekB/7xn0Ypy+pER/edCYQm4exbXj4WiySGp40P8UuTh6w1srg==}
+
+ ccount@2.0.1:
+ resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
+
+ chai@5.3.3:
+ resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==}
+ engines: {node: '>=18'}
+
+ chalk@4.1.2:
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
+ engines: {node: '>=10'}
+
+ character-entities-html4@2.1.0:
+ resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
+
+ character-entities-legacy@3.0.0:
+ resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
+
+ character-entities@2.0.2:
+ resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
+
+ character-reference-invalid@2.0.1:
+ resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
+
+ check-error@2.1.3:
+ resolution: {integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==}
+ engines: {node: '>= 16'}
+
+ class-variance-authority@0.7.1:
+ resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
+
+ clsx@2.1.1:
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
+ engines: {node: '>=6'}
+
+ color-convert@2.0.1:
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
+ engines: {node: '>=7.0.0'}
+
+ color-name@1.1.4:
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+
+ comma-separated-tokens@2.0.3:
+ resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
+
+ concat-map@0.0.1:
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
+
+ convert-source-map@2.0.0:
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+
+ cookie@1.1.1:
+ resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
+ engines: {node: '>=18'}
+
+ cross-spawn@7.0.6:
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
+ engines: {node: '>= 8'}
+
+ css-tree@3.1.0:
+ resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+
+ css.escape@1.5.1:
+ resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==}
+
+ cssesc@3.0.0:
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ cssstyle@5.3.7:
+ resolution: {integrity: sha512-7D2EPVltRrsTkhpQmksIu+LxeWAIEk6wRDMJ1qljlv+CKHJM+cJLlfhWIzNA44eAsHXSNe3+vO6DW1yCYx8SuQ==}
+ engines: {node: '>=20'}
+
+ csstype@3.2.3:
+ resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
+
+ d3-array@3.2.4:
+ resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
+ engines: {node: '>=12'}
+
+ d3-color@3.1.0:
+ resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
+ engines: {node: '>=12'}
+
+ d3-ease@3.0.1:
+ resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
+ engines: {node: '>=12'}
+
+ d3-format@3.1.2:
+ resolution: {integrity: sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==}
+ engines: {node: '>=12'}
+
+ d3-interpolate@3.0.1:
+ resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
+ engines: {node: '>=12'}
+
+ d3-path@3.1.0:
+ resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
+ engines: {node: '>=12'}
+
+ d3-scale@4.0.2:
+ resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
+ engines: {node: '>=12'}
+
+ d3-shape@3.2.0:
+ resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
+ engines: {node: '>=12'}
+
+ d3-time-format@4.1.0:
+ resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
+ engines: {node: '>=12'}
+
+ d3-time@3.1.0:
+ resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
+ engines: {node: '>=12'}
+
+ d3-timer@3.0.1:
+ resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
+ engines: {node: '>=12'}
+
+ data-urls@6.0.1:
+ resolution: {integrity: sha512-euIQENZg6x8mj3fO6o9+fOW8MimUI4PpD/fZBhJfeioZVy9TUpM4UY7KjQNVZFlqwJ0UdzRDzkycB997HEq1BQ==}
+ engines: {node: '>=20'}
+
+ date-fns@4.1.0:
+ resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
+
+ debug@4.4.3:
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
+ decimal.js-light@2.5.1:
+ resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
+
+ decimal.js@10.6.0:
+ resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
+
+ decode-named-character-reference@1.3.0:
+ resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==}
+
+ deep-eql@5.0.2:
+ resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
+ engines: {node: '>=6'}
+
+ deep-is@0.1.4:
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+
+ dequal@2.0.3:
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
+ engines: {node: '>=6'}
+
+ detect-libc@2.1.2:
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
+ engines: {node: '>=8'}
+
+ detect-node-es@1.1.0:
+ resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
+
+ devlop@1.1.0:
+ resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
+
+ dom-accessibility-api@0.5.16:
+ resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==}
+
+ dom-accessibility-api@0.6.3:
+ resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==}
+
+ electron-to-chromium@1.5.286:
+ resolution: {integrity: sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==}
+
+ enhanced-resolve@5.19.0:
+ resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==}
+ engines: {node: '>=10.13.0'}
+
+ entities@6.0.1:
+ resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
+ engines: {node: '>=0.12'}
+
+ es-module-lexer@1.7.0:
+ resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==}
+
+ es-toolkit@1.49.0:
+ resolution: {integrity: sha512-G5iZ6Pc/FNRY/soKZHC+TxGDD83rHUDXxzaWhGCX44vAv/tMs56WMusnm/KMNK+luUPsgA9U28cGr4RDlSzL2g==}
+
+ esbuild@0.25.12:
+ resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
+ engines: {node: '>=6'}
+
+ escape-string-regexp@4.0.0:
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
+
+ eslint-plugin-react-hooks@5.2.0:
+ resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
+
+ eslint-plugin-react-refresh@0.4.26:
+ resolution: {integrity: sha512-1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==}
+ peerDependencies:
+ eslint: '>=8.40'
+
+ eslint-scope@8.4.0:
+ resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ eslint-visitor-keys@3.4.3:
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ eslint-visitor-keys@4.2.1:
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ eslint@9.39.2:
+ resolution: {integrity: sha512-LEyamqS7W5HB3ujJyvi0HQK/dtVINZvd5mAAp9eT5S/ujByGjiZLCzPcHVzuXbpJDJF/cxwHlfceVUDZ2lnSTw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ hasBin: true
+ peerDependencies:
+ jiti: '*'
+ peerDependenciesMeta:
+ jiti:
+ optional: true
+
+ espree@10.4.0:
+ resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ esquery@1.7.0:
+ resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
+ engines: {node: '>=0.10'}
+
+ esrecurse@4.3.0:
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
+ engines: {node: '>=4.0'}
+
+ estraverse@5.3.0:
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+ engines: {node: '>=4.0'}
+
+ estree-util-is-identifier-name@3.0.0:
+ resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
+
+ estree-walker@3.0.3:
+ resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
+
+ esutils@2.0.3:
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
+ engines: {node: '>=0.10.0'}
+
+ eventemitter3@5.0.4:
+ resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
+
+ expect-type@1.3.0:
+ resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==}
+ engines: {node: '>=12.0.0'}
+
+ extend@3.0.2:
+ resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
+
+ fast-deep-equal@3.1.3:
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
+
+ fast-json-stable-stringify@2.1.0:
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
+
+ fast-levenshtein@2.0.6:
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+
+ fdir@6.5.0:
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
+ file-entry-cache@8.0.0:
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
+ engines: {node: '>=16.0.0'}
+
+ find-up@5.0.0:
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
+ engines: {node: '>=10'}
+
+ flat-cache@4.0.1:
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
+ engines: {node: '>=16'}
+
+ flatted@3.3.3:
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
+
+ fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+
+ gensync@1.0.0-beta.2:
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
+ engines: {node: '>=6.9.0'}
+
+ get-nonce@1.0.1:
+ resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
+ engines: {node: '>=6'}
+
+ glob-parent@6.0.2:
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
+ engines: {node: '>=10.13.0'}
+
+ globals@14.0.0:
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
+ engines: {node: '>=18'}
+
+ globals@16.5.0:
+ resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==}
+ engines: {node: '>=18'}
+
+ graceful-fs@4.2.11:
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
+
+ has-flag@4.0.0:
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
+ engines: {node: '>=8'}
+
+ hast-util-to-jsx-runtime@2.3.6:
+ resolution: {integrity: sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==}
+
+ hast-util-whitespace@3.0.0:
+ resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
+
+ html-encoding-sniffer@6.0.0:
+ resolution: {integrity: sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+
+ html-url-attributes@3.0.1:
+ resolution: {integrity: sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==}
+
+ http-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
+ engines: {node: '>= 14'}
+
+ https-proxy-agent@7.0.6:
+ resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
+ engines: {node: '>= 14'}
+
+ ignore@5.3.2:
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
+ engines: {node: '>= 4'}
+
+ ignore@7.0.5:
+ resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
+ engines: {node: '>= 4'}
+
+ immer@11.1.11:
+ resolution: {integrity: sha512-qzXuyXAkPySAGYkfsAwodDPWT8Zm7/Uo5BNt4BjhMhG5WlWyZZ4wQqnWwdS8kjlQ1Cwu6gjw3A6+0gTQwlyYtw==}
+
+ import-fresh@3.3.1:
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
+ engines: {node: '>=6'}
+
+ imurmurhash@0.1.4:
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+ engines: {node: '>=0.8.19'}
+
+ indent-string@4.0.0:
+ resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
+ engines: {node: '>=8'}
+
+ inline-style-parser@0.2.7:
+ resolution: {integrity: sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==}
+
+ internmap@2.0.3:
+ resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
+ engines: {node: '>=12'}
+
+ is-alphabetical@2.0.1:
+ resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
+
+ is-alphanumerical@2.0.1:
+ resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
+
+ is-decimal@2.0.1:
+ resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
+
+ is-extglob@2.1.1:
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+ engines: {node: '>=0.10.0'}
+
+ is-glob@4.0.3:
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
+ engines: {node: '>=0.10.0'}
+
+ is-hexadecimal@2.0.1:
+ resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
+
+ is-plain-obj@4.1.0:
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
+ engines: {node: '>=12'}
+
+ is-potential-custom-element-name@1.0.1:
+ resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
+
+ isexe@2.0.0:
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+
+ jiti@2.6.1:
+ resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
+ hasBin: true
+
+ js-tokens@4.0.0:
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+
+ js-tokens@9.0.1:
+ resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
+
+ js-yaml@4.1.1:
+ resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
+ hasBin: true
+
+ jsdom@27.4.0:
+ resolution: {integrity: sha512-mjzqwWRD9Y1J1KUi7W97Gja1bwOOM5Ug0EZ6UDK3xS7j7mndrkwozHtSblfomlzyB4NepioNt+B2sOSzczVgtQ==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
+ peerDependencies:
+ canvas: ^3.0.0
+ peerDependenciesMeta:
+ canvas:
+ optional: true
+
+ jsesc@3.1.0:
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ engines: {node: '>=6'}
+ hasBin: true
+
+ json-buffer@3.0.1:
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
+
+ json-schema-traverse@0.4.1:
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+
+ json-stable-stringify-without-jsonify@1.0.1:
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+
+ json5@2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
+ hasBin: true
+
+ keyv@4.5.4:
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+
+ levn@0.4.1:
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
+ engines: {node: '>= 0.8.0'}
+
+ lightningcss-android-arm64@1.30.2:
+ resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ lightningcss-darwin-arm64@1.30.2:
+ resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ lightningcss-darwin-x64@1.30.2:
+ resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ lightningcss-freebsd-x64@1.30.2:
+ resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ lightningcss-linux-arm-gnueabihf@1.30.2:
+ resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ lightningcss-linux-arm64-gnu@1.30.2:
+ resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ lightningcss-linux-arm64-musl@1.30.2:
+ resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ lightningcss-linux-x64-gnu@1.30.2:
+ resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ lightningcss-linux-x64-musl@1.30.2:
+ resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ lightningcss-win32-arm64-msvc@1.30.2:
+ resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ lightningcss-win32-x64-msvc@1.30.2:
+ resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ lightningcss@1.30.2:
+ resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
+ engines: {node: '>= 12.0.0'}
+
+ locate-path@6.0.0:
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
+ engines: {node: '>=10'}
+
+ lodash.merge@4.6.2:
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+
+ longest-streak@3.1.0:
+ resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
+
+ loupe@3.2.1:
+ resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==}
+
+ lru-cache@11.2.5:
+ resolution: {integrity: sha512-vFrFJkWtJvJnD5hg+hJvVE8Lh/TcMzKnTgCWmtBipwI5yLX/iX+5UB2tfuyODF5E7k9xEzMdYgGqaSb1c0c5Yw==}
+ engines: {node: 20 || >=22}
+
+ lru-cache@5.1.1:
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
+
+ lucide-react@0.516.0:
+ resolution: {integrity: sha512-aybBJzLHcw1CIn3rUcRkztB37dsJATtpffLNX+0/w+ws2p21nYIlOwX/B5fqxq8F/BjqVemnJX8chKwRidvROg==}
+ peerDependencies:
+ react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ lz-string@1.5.0:
+ resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
+ hasBin: true
+
+ magic-string@0.30.21:
+ resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
+
+ mdast-util-from-markdown@2.0.2:
+ resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
+
+ mdast-util-mdx-expression@2.0.1:
+ resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==}
+
+ mdast-util-mdx-jsx@3.2.0:
+ resolution: {integrity: sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==}
+
+ mdast-util-mdxjs-esm@2.0.1:
+ resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==}
+
+ mdast-util-phrasing@4.1.0:
+ resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
+
+ mdast-util-to-hast@13.2.1:
+ resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==}
+
+ mdast-util-to-markdown@2.1.2:
+ resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
+
+ mdast-util-to-string@4.0.0:
+ resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
+
+ mdn-data@2.12.2:
+ resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
+
+ micromark-core-commonmark@2.0.3:
+ resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==}
+
+ micromark-factory-destination@2.0.1:
+ resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
+
+ micromark-factory-label@2.0.1:
+ resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
+
+ micromark-factory-space@2.0.1:
+ resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
+
+ micromark-factory-title@2.0.1:
+ resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
+
+ micromark-factory-whitespace@2.0.1:
+ resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
+
+ micromark-util-character@2.1.1:
+ resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
+
+ micromark-util-chunked@2.0.1:
+ resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
+
+ micromark-util-classify-character@2.0.1:
+ resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
+
+ micromark-util-combine-extensions@2.0.1:
+ resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
+
+ micromark-util-decode-numeric-character-reference@2.0.2:
+ resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
+
+ micromark-util-decode-string@2.0.1:
+ resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
+
+ micromark-util-encode@2.0.1:
+ resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
+
+ micromark-util-html-tag-name@2.0.1:
+ resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
+
+ micromark-util-normalize-identifier@2.0.1:
+ resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
+
+ micromark-util-resolve-all@2.0.1:
+ resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
+
+ micromark-util-sanitize-uri@2.0.1:
+ resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
+
+ micromark-util-subtokenize@2.1.0:
+ resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==}
+
+ micromark-util-symbol@2.0.1:
+ resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
+
+ micromark-util-types@2.0.2:
+ resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==}
+
+ micromark@4.0.2:
+ resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==}
+
+ min-indent@1.0.1:
+ resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
+ engines: {node: '>=4'}
+
+ minimatch@3.1.2:
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+
+ minimatch@9.0.5:
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
+ ms@2.1.3:
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+
+ nanoid@3.3.11:
+ resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+
+ natural-compare@1.4.0:
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+
+ node-releases@2.0.27:
+ resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
+
+ optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
+ engines: {node: '>= 0.8.0'}
+
+ p-limit@3.1.0:
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+ engines: {node: '>=10'}
+
+ p-locate@5.0.0:
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+ engines: {node: '>=10'}
+
+ parent-module@1.0.1:
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
+ engines: {node: '>=6'}
+
+ parse-entities@4.0.2:
+ resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==}
+
+ parse5@8.0.0:
+ resolution: {integrity: sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==}
+
+ path-exists@4.0.0:
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
+
+ path-key@3.1.1:
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
+ engines: {node: '>=8'}
+
+ pathe@2.0.3:
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
+
+ pathval@2.0.1:
+ resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
+ engines: {node: '>= 14.16'}
+
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
+
+ picomatch@4.0.3:
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
+ engines: {node: '>=12'}
+
+ postcss-selector-parser@6.0.10:
+ resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
+ engines: {node: '>=4'}
+
+ postcss@8.5.6:
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
+ engines: {node: ^10 || ^12 || >=14}
+
+ prelude-ls@1.2.1:
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
+ engines: {node: '>= 0.8.0'}
+
+ pretty-format@27.5.1:
+ resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+
+ property-information@7.1.0:
+ resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==}
+
+ punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
+
+ qrcode.react@4.2.0:
+ resolution: {integrity: sha512-QpgqWi8rD9DsS9EP3z7BT+5lY5SFhsqGjpgW5DY/i3mK4M9DTBNz3ErMi8BWYEfI3L0d8GIbGmcdFAS1uIRGjA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ radix-ui@1.4.3:
+ resolution: {integrity: sha512-aWizCQiyeAenIdUbqEpXgRA1ya65P13NKn/W8rWkcN0OPkRDxdBVLWnIEDsS2RpwCK2nobI7oMUSmexzTDyAmA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ react-dom@19.2.4:
+ resolution: {integrity: sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==}
+ peerDependencies:
+ react: ^19.2.4
+
+ react-hook-form@7.71.1:
+ resolution: {integrity: sha512-9SUJKCGKo8HUSsCO+y0CtqkqI5nNuaDqTxyqPsZPqIwudpj4rCrAz/jZV+jn57bx5gtZKOh3neQu94DXMc+w5w==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ react: ^16.8.0 || ^17 || ^18 || ^19
+
+ react-is@17.0.2:
+ resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
+
+ react-markdown@10.1.0:
+ resolution: {integrity: sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==}
+ peerDependencies:
+ '@types/react': '>=18'
+ react: '>=18'
+
+ react-redux@9.3.0:
+ resolution: {integrity: sha512-KQopgqFo/p/fgmAs5qz6p5RWaNAzq40WAu7fJIXnQpYxFPbJYtsJPWvGeF2rOBaY/kEuV77AVsX8TsQzKm+A/g==}
+ peerDependencies:
+ '@types/react': ^18.2.25 || ^19
+ react: ^18.0 || ^19
+ redux: ^5.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ redux:
+ optional: true
+
+ react-refresh@0.17.0:
+ resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
+ engines: {node: '>=0.10.0'}
+
+ react-remove-scroll-bar@2.3.8:
+ resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ react-remove-scroll@2.7.2:
+ resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ react-router-dom@7.13.0:
+ resolution: {integrity: sha512-5CO/l5Yahi2SKC6rGZ+HDEjpjkGaG/ncEP7eWFTvFxbHP8yeeI0PxTDjimtpXYlR3b3i9/WIL4VJttPrESIf2g==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ react: '>=18'
+ react-dom: '>=18'
+
+ react-router@7.13.0:
+ resolution: {integrity: sha512-PZgus8ETambRT17BUm/LL8lX3Of+oiLaPuVTRH3l1eLvSPpKO3AvhAEb5N7ihAFZQrYDqkvvWfFh9p0z9VsjLw==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ react: '>=18'
+ react-dom: '>=18'
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
+
+ react-style-singleton@2.2.3:
+ resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ react@19.2.4:
+ resolution: {integrity: sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==}
+ engines: {node: '>=0.10.0'}
+
+ recharts@3.9.2:
+ resolution: {integrity: sha512-G4fy+Pk46RaXgwWMh+Nzhyo/lbFAVqXo9gtetlyehe6Ehge9CsgDuOTwQDD+i1+llaLktNBiNq4bhnGlDRXFtw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-is: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ redent@3.0.0:
+ resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
+ engines: {node: '>=8'}
+
+ redux-thunk@3.1.0:
+ resolution: {integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==}
+ peerDependencies:
+ redux: ^5.0.0
+
+ redux@5.0.1:
+ resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==}
+
+ remark-parse@11.0.0:
+ resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
+
+ remark-rehype@11.1.2:
+ resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==}
+
+ require-from-string@2.0.2:
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
+ engines: {node: '>=0.10.0'}
+
+ reselect@5.2.0:
+ resolution: {integrity: sha512-AgZ3UOZm3YndfrJ4OYjgrT7bmCm/1iqkjvEfH/oYjzh6PD2qw4QuT3jjnXIrpdt4MTpMXclMT3lXbmRY+XRakw==}
+
+ resolve-from@4.0.0:
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
+ engines: {node: '>=4'}
+
+ rollup@4.57.1:
+ resolution: {integrity: sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
+ saxes@6.0.0:
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
+
+ scheduler@0.27.0:
+ resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
+
+ semver@6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
+ hasBin: true
+
+ semver@7.7.4:
+ resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ set-cookie-parser@2.7.2:
+ resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==}
+
+ shebang-command@2.0.0:
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
+ engines: {node: '>=8'}
+
+ shebang-regex@3.0.0:
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
+ engines: {node: '>=8'}
+
+ siginfo@2.0.0:
+ resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
+
+ sonner@2.0.7:
+ resolution: {integrity: sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==}
+ peerDependencies:
+ react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
+ engines: {node: '>=0.10.0'}
+
+ space-separated-tokens@2.0.2:
+ resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
+
+ stackback@0.0.2:
+ resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
+
+ std-env@3.10.0:
+ resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
+
+ stringify-entities@4.0.4:
+ resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
+
+ strip-indent@3.0.0:
+ resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
+ engines: {node: '>=8'}
+
+ strip-json-comments@3.1.1:
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+ engines: {node: '>=8'}
+
+ strip-literal@3.1.0:
+ resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
+
+ style-to-js@1.1.21:
+ resolution: {integrity: sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==}
+
+ style-to-object@1.0.14:
+ resolution: {integrity: sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==}
+
+ supports-color@7.2.0:
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
+ engines: {node: '>=8'}
+
+ symbol-tree@3.2.4:
+ resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
+
+ tailwind-merge@3.4.0:
+ resolution: {integrity: sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==}
+
+ tailwindcss@4.1.18:
+ resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==}
+
+ tapable@2.3.0:
+ resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
+ engines: {node: '>=6'}
+
+ tiny-invariant@1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
+
+ tinybench@2.9.0:
+ resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
+
+ tinyexec@0.3.2:
+ resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
+
+ tinyglobby@0.2.15:
+ resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
+ engines: {node: '>=12.0.0'}
+
+ tinypool@1.1.1:
+ resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+
+ tinyrainbow@2.0.0:
+ resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
+ engines: {node: '>=14.0.0'}
+
+ tinyspy@4.0.4:
+ resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==}
+ engines: {node: '>=14.0.0'}
+
+ tldts-core@7.0.22:
+ resolution: {integrity: sha512-KgbTDC5wzlL6j/x6np6wCnDSMUq4kucHNm00KXPbfNzmllCmtmvtykJHfmgdHntwIeupW04y8s1N/43S1PkQDw==}
+
+ tldts@7.0.22:
+ resolution: {integrity: sha512-nqpKFC53CgopKPjT6Wfb6tpIcZXHcI6G37hesvikhx0EmUGPkZrujRyAjgnmp1SHNgpQfKVanZ+KfpANFt2Hxw==}
+ hasBin: true
+
+ tough-cookie@6.0.0:
+ resolution: {integrity: sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==}
+ engines: {node: '>=16'}
+
+ tr46@6.0.0:
+ resolution: {integrity: sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==}
+ engines: {node: '>=20'}
+
+ trim-lines@3.0.1:
+ resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
+
+ trough@2.2.0:
+ resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
+
+ ts-api-utils@2.4.0:
+ resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
+ engines: {node: '>=18.12'}
+ peerDependencies:
+ typescript: '>=4.8.4'
+
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
+
+ tw-animate-css@1.4.0:
+ resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
+
+ type-check@0.4.0:
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
+ engines: {node: '>= 0.8.0'}
+
+ typescript-eslint@8.54.0:
+ resolution: {integrity: sha512-CKsJ+g53QpsNPqbzUsfKVgd3Lny4yKZ1pP4qN3jdMOg/sisIDLGyDMezycquXLE5JsEU0wp3dGNdzig0/fmSVQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <6.0.0'
+
+ typescript@5.8.3:
+ resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ undici-types@7.16.0:
+ resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
+
+ unified@11.0.5:
+ resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
+
+ unist-util-is@6.0.1:
+ resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==}
+
+ unist-util-position@5.0.0:
+ resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
+
+ unist-util-stringify-position@4.0.0:
+ resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
+
+ unist-util-visit-parents@6.0.2:
+ resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==}
+
+ unist-util-visit@5.1.0:
+ resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==}
+
+ update-browserslist-db@1.2.3:
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
+ uri-js@4.4.1:
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+
+ use-callback-ref@1.3.3:
+ resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ use-sidecar@1.1.3:
+ resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ use-sync-external-store@1.6.0:
+ resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
+ util-deprecate@1.0.2:
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+
+ vfile-message@4.0.3:
+ resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
+
+ vfile@6.0.3:
+ resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
+
+ victory-vendor@37.3.6:
+ resolution: {integrity: sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==}
+
+ vite-node@3.2.4:
+ resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+
+ vite@6.4.1:
+ resolution: {integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
+ vitest@3.2.4:
+ resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@edge-runtime/vm': '*'
+ '@types/debug': ^4.1.12
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ '@vitest/browser': 3.2.4
+ '@vitest/ui': 3.2.4
+ happy-dom: '*'
+ jsdom: '*'
+ peerDependenciesMeta:
+ '@edge-runtime/vm':
+ optional: true
+ '@types/debug':
+ optional: true
+ '@types/node':
+ optional: true
+ '@vitest/browser':
+ optional: true
+ '@vitest/ui':
+ optional: true
+ happy-dom:
+ optional: true
+ jsdom:
+ optional: true
+
+ w3c-xmlserializer@5.0.0:
+ resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
+ engines: {node: '>=18'}
+
+ webidl-conversions@8.0.1:
+ resolution: {integrity: sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ==}
+ engines: {node: '>=20'}
+
+ whatwg-mimetype@4.0.0:
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
+
+ whatwg-mimetype@5.0.0:
+ resolution: {integrity: sha512-sXcNcHOC51uPGF0P/D4NVtrkjSU2fNsm9iog4ZvZJsL3rjoDAzXZhkm2MWt1y+PUdggKAYVoMAIYcs78wJ51Cw==}
+ engines: {node: '>=20'}
+
+ whatwg-url@15.1.0:
+ resolution: {integrity: sha512-2ytDk0kiEj/yu90JOAp44PVPUkO9+jVhyf+SybKlRHSDlvOOZhdPIrr7xTH64l4WixO2cP+wQIcgujkGBPPz6g==}
+ engines: {node: '>=20'}
+
+ which@2.0.2:
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+ engines: {node: '>= 8'}
+ hasBin: true
+
+ why-is-node-running@2.3.0:
+ resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==}
+ engines: {node: '>=8'}
+ hasBin: true
+
+ word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+
+ ws@8.19.0:
+ resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
+ xml-name-validator@5.0.0:
+ resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
+ engines: {node: '>=18'}
+
+ xmlchars@2.2.0:
+ resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
+
+ yallist@3.1.1:
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
+
+ yaml@2.8.2:
+ resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
+ engines: {node: '>= 14.6'}
+ hasBin: true
+
+ yocto-queue@0.1.0:
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+ engines: {node: '>=10'}
+
+ zod@3.25.76:
+ resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
+
+ zwitch@2.0.4:
+ resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
+
+snapshots:
+
+ '@acemir/cssom@0.9.31': {}
+
+ '@adobe/css-tools@4.4.4': {}
+
+ '@asamuzakjp/css-color@4.1.2':
+ dependencies:
+ '@csstools/css-calc': 3.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-color-parser': 4.0.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-tokenizer': 4.0.0
+ lru-cache: 11.2.5
+
+ '@asamuzakjp/dom-selector@6.7.8':
+ dependencies:
+ '@asamuzakjp/nwsapi': 2.3.9
+ bidi-js: 1.0.3
+ css-tree: 3.1.0
+ is-potential-custom-element-name: 1.0.1
+ lru-cache: 11.2.5
+
+ '@asamuzakjp/nwsapi@2.3.9': {}
+
+ '@babel/code-frame@7.29.0':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.28.5
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
+ '@babel/compat-data@7.29.0': {}
+
+ '@babel/core@7.29.0':
+ dependencies:
+ '@babel/code-frame': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
+ '@babel/helpers': 7.28.6
+ '@babel/parser': 7.29.0
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
+ '@jridgewell/remapping': 2.3.5
+ convert-source-map: 2.0.0
+ debug: 4.4.3
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/generator@7.29.1':
+ dependencies:
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+ jsesc: 3.1.0
+
+ '@babel/helper-compilation-targets@7.28.6':
+ dependencies:
+ '@babel/compat-data': 7.29.0
+ '@babel/helper-validator-option': 7.27.1
+ browserslist: 4.28.1
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
+ '@babel/helper-globals@7.28.0': {}
+
+ '@babel/helper-module-imports@7.28.6':
+ dependencies:
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.29.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-plugin-utils@7.28.6': {}
+
+ '@babel/helper-string-parser@7.27.1': {}
+
+ '@babel/helper-validator-identifier@7.28.5': {}
+
+ '@babel/helper-validator-option@7.27.1': {}
+
+ '@babel/helpers@7.28.6':
+ dependencies:
+ '@babel/template': 7.28.6
+ '@babel/types': 7.29.0
+
+ '@babel/parser@7.29.0':
+ dependencies:
+ '@babel/types': 7.29.0
+
+ '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+
+ '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+
+ '@babel/runtime@7.28.6': {}
+
+ '@babel/template@7.28.6':
+ dependencies:
+ '@babel/code-frame': 7.29.0
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
+
+ '@babel/traverse@7.29.0':
+ dependencies:
+ '@babel/code-frame': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/helper-globals': 7.28.0
+ '@babel/parser': 7.29.0
+ '@babel/template': 7.28.6
+ '@babel/types': 7.29.0
+ debug: 4.4.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/types@7.29.0':
+ dependencies:
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
+
+ '@csstools/color-helpers@6.0.1': {}
+
+ '@csstools/css-calc@3.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-tokenizer': 4.0.0
+
+ '@csstools/css-color-parser@4.0.1(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)':
+ dependencies:
+ '@csstools/color-helpers': 6.0.1
+ '@csstools/css-calc': 3.0.0(@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0))(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-parser-algorithms': 4.0.0(@csstools/css-tokenizer@4.0.0)
+ '@csstools/css-tokenizer': 4.0.0
+
+ '@csstools/css-parser-algorithms@4.0.0(@csstools/css-tokenizer@4.0.0)':
+ dependencies:
+ '@csstools/css-tokenizer': 4.0.0
+
+ '@csstools/css-syntax-patches-for-csstree@1.0.26': {}
+
+ '@csstools/css-tokenizer@4.0.0': {}
+
+ '@esbuild/aix-ppc64@0.25.12':
+ optional: true
+
+ '@esbuild/android-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/android-arm@0.25.12':
+ optional: true
+
+ '@esbuild/android-x64@0.25.12':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/darwin-x64@0.25.12':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-arm@0.25.12':
+ optional: true
+
+ '@esbuild/linux-ia32@0.25.12':
+ optional: true
+
+ '@esbuild/linux-loong64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.25.12':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-s390x@0.25.12':
+ optional: true
+
+ '@esbuild/linux-x64@0.25.12':
+ optional: true
+
+ '@esbuild/netbsd-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/netbsd-x64@0.25.12':
+ optional: true
+
+ '@esbuild/openbsd-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/openbsd-x64@0.25.12':
+ optional: true
+
+ '@esbuild/openharmony-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/sunos-x64@0.25.12':
+ optional: true
+
+ '@esbuild/win32-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/win32-ia32@0.25.12':
+ optional: true
+
+ '@esbuild/win32-x64@0.25.12':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.9.1(eslint@9.39.2(jiti@2.6.1))':
+ dependencies:
+ eslint: 9.39.2(jiti@2.6.1)
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/regexpp@4.12.2': {}
+
+ '@eslint/config-array@0.21.1':
+ dependencies:
+ '@eslint/object-schema': 2.1.7
+ debug: 4.4.3
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@eslint/config-helpers@0.4.2':
+ dependencies:
+ '@eslint/core': 0.17.0
+
+ '@eslint/core@0.17.0':
+ dependencies:
+ '@types/json-schema': 7.0.15
+
+ '@eslint/eslintrc@3.3.3':
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.4.3
+ espree: 10.4.0
+ globals: 14.0.0
+ ignore: 5.3.2
+ import-fresh: 3.3.1
+ js-yaml: 4.1.1
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@eslint/js@9.39.2': {}
+
+ '@eslint/object-schema@2.1.7': {}
+
+ '@eslint/plugin-kit@0.4.1':
+ dependencies:
+ '@eslint/core': 0.17.0
+ levn: 0.4.1
+
+ '@exodus/bytes@1.11.0': {}
+
+ '@floating-ui/core@1.7.4':
+ dependencies:
+ '@floating-ui/utils': 0.2.10
+
+ '@floating-ui/dom@1.7.5':
+ dependencies:
+ '@floating-ui/core': 1.7.4
+ '@floating-ui/utils': 0.2.10
+
+ '@floating-ui/react-dom@2.1.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@floating-ui/dom': 1.7.5
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+
+ '@floating-ui/utils@0.2.10': {}
+
+ '@hookform/resolvers@5.2.2(react-hook-form@7.71.1(react@19.2.4))':
+ dependencies:
+ '@standard-schema/utils': 0.3.0
+ react-hook-form: 7.71.1(react@19.2.4)
+
+ '@humanfs/core@0.19.1': {}
+
+ '@humanfs/node@0.16.7':
+ dependencies:
+ '@humanfs/core': 0.19.1
+ '@humanwhocodes/retry': 0.4.3
+
+ '@humanwhocodes/module-importer@1.0.1': {}
+
+ '@humanwhocodes/retry@0.4.3': {}
+
+ '@jridgewell/gen-mapping@0.3.13':
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+ '@jridgewell/trace-mapping': 0.3.31
+
+ '@jridgewell/remapping@2.3.5':
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+
+ '@jridgewell/resolve-uri@3.1.2': {}
+
+ '@jridgewell/sourcemap-codec@1.5.5': {}
+
+ '@jridgewell/trace-mapping@0.3.31':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.5
+
+ '@radix-ui/number@1.1.1': {}
+
+ '@radix-ui/primitive@1.1.3': {}
+
+ '@radix-ui/react-accessible-icon@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-accordion@1.2.12(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collapsible': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-alert-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-aspect-ratio@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-avatar@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-checkbox@1.3.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-collapsible@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-context-menu@2.2.16(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-context@1.1.2(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ aria-hidden: 1.2.6
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ react-remove-scroll: 2.7.2(@types/react@19.2.13)(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-direction@1.1.1(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-form@0.1.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-label': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-hover-card@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-id@1.1.1(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-label@2.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-label@2.1.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ aria-hidden: 1.2.6
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ react-remove-scroll: 2.7.2(@types/react@19.2.13)(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-menubar@1.1.16(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-navigation-menu@1.2.14(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-one-time-password-field@0.1.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-password-toggle-field@0.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-popover@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ aria-hidden: 1.2.6
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ react-remove-scroll: 2.7.2(@types/react@19.2.13)(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-popper@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/rect': 1.1.1
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-slot': 1.2.4(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-progress@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-radio-group@1.3.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-scroll-area@1.2.10(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-select@2.2.6(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ aria-hidden: 1.2.6
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ react-remove-scroll: 2.7.2(@types/react@19.2.13)(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-separator@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-separator@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-slider@1.3.6(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-slot@1.2.3(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-slot@1.2.4(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-switch@1.2.6(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-tabs@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-toast@1.2.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-toggle-group@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-toggle@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-toolbar@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-separator': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-toggle-group': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ react: 19.2.4
+ use-sync-external-store: 1.6.0(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-use-previous@1.1.1(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-use-rect@1.1.1(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ '@radix-ui/rect': 1.1.1
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-use-size@1.1.1(@types/react@19.2.13)(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ react: 19.2.4
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@radix-ui/rect@1.1.1': {}
+
+ '@reduxjs/toolkit@2.12.0(react-redux@9.3.0(@types/react@19.2.13)(react@19.2.4)(redux@5.0.1))(react@19.2.4)':
+ dependencies:
+ '@standard-schema/spec': 1.1.0
+ '@standard-schema/utils': 0.3.0
+ immer: 11.1.11
+ redux: 5.0.1
+ redux-thunk: 3.1.0(redux@5.0.1)
+ reselect: 5.2.0
+ optionalDependencies:
+ react: 19.2.4
+ react-redux: 9.3.0(@types/react@19.2.13)(react@19.2.4)(redux@5.0.1)
+
+ '@rolldown/pluginutils@1.0.0-beta.27': {}
+
+ '@rollup/rollup-android-arm-eabi@4.57.1':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.57.1':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.57.1':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.57.1':
+ optional: true
+
+ '@rollup/rollup-freebsd-arm64@4.57.1':
+ optional: true
+
+ '@rollup/rollup-freebsd-x64@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm-musleabihf@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-gnu@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-musl@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-loong64-gnu@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-loong64-musl@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-ppc64-gnu@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-ppc64-musl@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-gnu@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-musl@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-s390x-gnu@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-x64-gnu@4.57.1':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.57.1':
+ optional: true
+
+ '@rollup/rollup-openbsd-x64@4.57.1':
+ optional: true
+
+ '@rollup/rollup-openharmony-arm64@4.57.1':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.57.1':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.57.1':
+ optional: true
+
+ '@rollup/rollup-win32-x64-gnu@4.57.1':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.57.1':
+ optional: true
+
+ '@standard-schema/spec@1.1.0': {}
+
+ '@standard-schema/utils@0.3.0': {}
+
+ '@tailwindcss/node@4.1.18':
+ dependencies:
+ '@jridgewell/remapping': 2.3.5
+ enhanced-resolve: 5.19.0
+ jiti: 2.6.1
+ lightningcss: 1.30.2
+ magic-string: 0.30.21
+ source-map-js: 1.2.1
+ tailwindcss: 4.1.18
+
+ '@tailwindcss/oxide-android-arm64@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-arm64@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-x64@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-freebsd-x64@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-musl@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-wasm32-wasi@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide@4.1.18':
+ optionalDependencies:
+ '@tailwindcss/oxide-android-arm64': 4.1.18
+ '@tailwindcss/oxide-darwin-arm64': 4.1.18
+ '@tailwindcss/oxide-darwin-x64': 4.1.18
+ '@tailwindcss/oxide-freebsd-x64': 4.1.18
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.18
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.1.18
+ '@tailwindcss/oxide-linux-arm64-musl': 4.1.18
+ '@tailwindcss/oxide-linux-x64-gnu': 4.1.18
+ '@tailwindcss/oxide-linux-x64-musl': 4.1.18
+ '@tailwindcss/oxide-wasm32-wasi': 4.1.18
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.1.18
+ '@tailwindcss/oxide-win32-x64-msvc': 4.1.18
+
+ '@tailwindcss/typography@0.5.19(tailwindcss@4.1.18)':
+ dependencies:
+ postcss-selector-parser: 6.0.10
+ tailwindcss: 4.1.18
+
+ '@tailwindcss/vite@4.1.18(vite@6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2))':
+ dependencies:
+ '@tailwindcss/node': 4.1.18
+ '@tailwindcss/oxide': 4.1.18
+ tailwindcss: 4.1.18
+ vite: 6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2)
+
+ '@tanstack/query-core@5.90.20': {}
+
+ '@tanstack/react-query@5.90.20(react@19.2.4)':
+ dependencies:
+ '@tanstack/query-core': 5.90.20
+ react: 19.2.4
+
+ '@testing-library/dom@10.4.1':
+ dependencies:
+ '@babel/code-frame': 7.29.0
+ '@babel/runtime': 7.28.6
+ '@types/aria-query': 5.0.4
+ aria-query: 5.3.0
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
+ picocolors: 1.1.1
+ pretty-format: 27.5.1
+
+ '@testing-library/jest-dom@6.9.1':
+ dependencies:
+ '@adobe/css-tools': 4.4.4
+ aria-query: 5.3.2
+ css.escape: 1.5.1
+ dom-accessibility-api: 0.6.3
+ picocolors: 1.1.1
+ redent: 3.0.0
+
+ '@testing-library/react@16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ dependencies:
+ '@babel/runtime': 7.28.6
+ '@testing-library/dom': 10.4.1
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.1)':
+ dependencies:
+ '@testing-library/dom': 10.4.1
+
+ '@types/aria-query@5.0.4': {}
+
+ '@types/babel__core@7.20.5':
+ dependencies:
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
+ '@types/babel__generator': 7.27.0
+ '@types/babel__template': 7.4.4
+ '@types/babel__traverse': 7.28.0
+
+ '@types/babel__generator@7.27.0':
+ dependencies:
+ '@babel/types': 7.29.0
+
+ '@types/babel__template@7.4.4':
+ dependencies:
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
+
+ '@types/babel__traverse@7.28.0':
+ dependencies:
+ '@babel/types': 7.29.0
+
+ '@types/chai@5.2.3':
+ dependencies:
+ '@types/deep-eql': 4.0.2
+ assertion-error: 2.0.1
+
+ '@types/d3-array@3.2.2': {}
+
+ '@types/d3-color@3.1.3': {}
+
+ '@types/d3-ease@3.0.2': {}
+
+ '@types/d3-interpolate@3.0.4':
+ dependencies:
+ '@types/d3-color': 3.1.3
+
+ '@types/d3-path@3.1.1': {}
+
+ '@types/d3-scale@4.0.9':
+ dependencies:
+ '@types/d3-time': 3.0.4
+
+ '@types/d3-shape@3.1.8':
+ dependencies:
+ '@types/d3-path': 3.1.1
+
+ '@types/d3-time@3.0.4': {}
+
+ '@types/d3-timer@3.0.2': {}
+
+ '@types/debug@4.1.12':
+ dependencies:
+ '@types/ms': 2.1.0
+
+ '@types/deep-eql@4.0.2': {}
+
+ '@types/estree-jsx@1.0.5':
+ dependencies:
+ '@types/estree': 1.0.8
+
+ '@types/estree@1.0.8': {}
+
+ '@types/hast@3.0.4':
+ dependencies:
+ '@types/unist': 3.0.3
+
+ '@types/json-schema@7.0.15': {}
+
+ '@types/mdast@4.0.4':
+ dependencies:
+ '@types/unist': 3.0.3
+
+ '@types/ms@2.1.0': {}
+
+ '@types/node@24.10.11':
+ dependencies:
+ undici-types: 7.16.0
+
+ '@types/react-dom@19.2.3(@types/react@19.2.13)':
+ dependencies:
+ '@types/react': 19.2.13
+
+ '@types/react@19.2.13':
+ dependencies:
+ csstype: 3.2.3
+
+ '@types/unist@2.0.11': {}
+
+ '@types/unist@3.0.3': {}
+
+ '@types/use-sync-external-store@0.0.6': {}
+
+ '@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.54.0
+ '@typescript-eslint/type-utils': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.54.0
+ eslint: 9.39.2(jiti@2.6.1)
+ ignore: 7.0.5
+ natural-compare: 1.4.0
+ ts-api-utils: 2.4.0(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.54.0
+ '@typescript-eslint/types': 8.54.0
+ '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.54.0
+ debug: 4.4.3
+ eslint: 9.39.2(jiti@2.6.1)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/project-service@8.54.0(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/tsconfig-utils': 8.54.0(typescript@5.8.3)
+ '@typescript-eslint/types': 8.54.0
+ debug: 4.4.3
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/scope-manager@8.54.0':
+ dependencies:
+ '@typescript-eslint/types': 8.54.0
+ '@typescript-eslint/visitor-keys': 8.54.0
+
+ '@typescript-eslint/tsconfig-utils@8.54.0(typescript@5.8.3)':
+ dependencies:
+ typescript: 5.8.3
+
+ '@typescript-eslint/type-utils@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/types': 8.54.0
+ '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)
+ debug: 4.4.3
+ eslint: 9.39.2(jiti@2.6.1)
+ ts-api-utils: 2.4.0(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/types@8.54.0': {}
+
+ '@typescript-eslint/typescript-estree@8.54.0(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/project-service': 8.54.0(typescript@5.8.3)
+ '@typescript-eslint/tsconfig-utils': 8.54.0(typescript@5.8.3)
+ '@typescript-eslint/types': 8.54.0
+ '@typescript-eslint/visitor-keys': 8.54.0
+ debug: 4.4.3
+ minimatch: 9.0.5
+ semver: 7.7.4
+ tinyglobby: 0.2.15
+ ts-api-utils: 2.4.0(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/utils@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
+ '@typescript-eslint/scope-manager': 8.54.0
+ '@typescript-eslint/types': 8.54.0
+ '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.8.3)
+ eslint: 9.39.2(jiti@2.6.1)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/visitor-keys@8.54.0':
+ dependencies:
+ '@typescript-eslint/types': 8.54.0
+ eslint-visitor-keys: 4.2.1
+
+ '@ungap/structured-clone@1.3.0': {}
+
+ '@vitejs/plugin-react@4.7.0(vite@6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2))':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.29.0)
+ '@rolldown/pluginutils': 1.0.0-beta.27
+ '@types/babel__core': 7.20.5
+ react-refresh: 0.17.0
+ vite: 6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@vitest/expect@3.2.4':
+ dependencies:
+ '@types/chai': 5.2.3
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
+ chai: 5.3.3
+ tinyrainbow: 2.0.0
+
+ '@vitest/mocker@3.2.4(vite@6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2))':
+ dependencies:
+ '@vitest/spy': 3.2.4
+ estree-walker: 3.0.3
+ magic-string: 0.30.21
+ optionalDependencies:
+ vite: 6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2)
+
+ '@vitest/pretty-format@3.2.4':
+ dependencies:
+ tinyrainbow: 2.0.0
+
+ '@vitest/runner@3.2.4':
+ dependencies:
+ '@vitest/utils': 3.2.4
+ pathe: 2.0.3
+ strip-literal: 3.1.0
+
+ '@vitest/snapshot@3.2.4':
+ dependencies:
+ '@vitest/pretty-format': 3.2.4
+ magic-string: 0.30.21
+ pathe: 2.0.3
+
+ '@vitest/spy@3.2.4':
+ dependencies:
+ tinyspy: 4.0.4
+
+ '@vitest/utils@3.2.4':
+ dependencies:
+ '@vitest/pretty-format': 3.2.4
+ loupe: 3.2.1
+ tinyrainbow: 2.0.0
+
+ '@xterm/addon-fit@0.11.0': {}
+
+ '@xterm/addon-serialize@0.14.0': {}
+
+ '@xterm/xterm@6.0.0': {}
+
+ acorn-jsx@5.3.2(acorn@8.15.0):
+ dependencies:
+ acorn: 8.15.0
+
+ acorn@8.15.0: {}
+
+ agent-base@7.1.4: {}
+
+ ajv@6.12.6:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.4.1
+
+ ansi-regex@5.0.1: {}
+
+ ansi-styles@4.3.0:
+ dependencies:
+ color-convert: 2.0.1
+
+ ansi-styles@5.2.0: {}
+
+ argparse@2.0.1: {}
+
+ aria-hidden@1.2.6:
+ dependencies:
+ tslib: 2.8.1
+
+ aria-query@5.3.0:
+ dependencies:
+ dequal: 2.0.3
+
+ aria-query@5.3.2: {}
+
+ assertion-error@2.0.1: {}
+
+ bail@2.0.2: {}
+
+ balanced-match@1.0.2: {}
+
+ baseline-browser-mapping@2.9.19: {}
+
+ bidi-js@1.0.3:
+ dependencies:
+ require-from-string: 2.0.2
+
+ brace-expansion@1.1.12:
+ dependencies:
+ balanced-match: 1.0.2
+ concat-map: 0.0.1
+
+ brace-expansion@2.0.2:
+ dependencies:
+ balanced-match: 1.0.2
+
+ browserslist@4.28.1:
+ dependencies:
+ baseline-browser-mapping: 2.9.19
+ caniuse-lite: 1.0.30001769
+ electron-to-chromium: 1.5.286
+ node-releases: 2.0.27
+ update-browserslist-db: 1.2.3(browserslist@4.28.1)
+
+ cac@6.7.14: {}
+
+ callsites@3.1.0: {}
+
+ caniuse-lite@1.0.30001769: {}
+
+ ccount@2.0.1: {}
+
+ chai@5.3.3:
+ dependencies:
+ assertion-error: 2.0.1
+ check-error: 2.1.3
+ deep-eql: 5.0.2
+ loupe: 3.2.1
+ pathval: 2.0.1
+
+ chalk@4.1.2:
+ dependencies:
+ ansi-styles: 4.3.0
+ supports-color: 7.2.0
+
+ character-entities-html4@2.1.0: {}
+
+ character-entities-legacy@3.0.0: {}
+
+ character-entities@2.0.2: {}
+
+ character-reference-invalid@2.0.1: {}
+
+ check-error@2.1.3: {}
+
+ class-variance-authority@0.7.1:
+ dependencies:
+ clsx: 2.1.1
+
+ clsx@2.1.1: {}
+
+ color-convert@2.0.1:
+ dependencies:
+ color-name: 1.1.4
+
+ color-name@1.1.4: {}
+
+ comma-separated-tokens@2.0.3: {}
+
+ concat-map@0.0.1: {}
+
+ convert-source-map@2.0.0: {}
+
+ cookie@1.1.1: {}
+
+ cross-spawn@7.0.6:
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+
+ css-tree@3.1.0:
+ dependencies:
+ mdn-data: 2.12.2
+ source-map-js: 1.2.1
+
+ css.escape@1.5.1: {}
+
+ cssesc@3.0.0: {}
+
+ cssstyle@5.3.7:
+ dependencies:
+ '@asamuzakjp/css-color': 4.1.2
+ '@csstools/css-syntax-patches-for-csstree': 1.0.26
+ css-tree: 3.1.0
+ lru-cache: 11.2.5
+
+ csstype@3.2.3: {}
+
+ d3-array@3.2.4:
+ dependencies:
+ internmap: 2.0.3
+
+ d3-color@3.1.0: {}
+
+ d3-ease@3.0.1: {}
+
+ d3-format@3.1.2: {}
+
+ d3-interpolate@3.0.1:
+ dependencies:
+ d3-color: 3.1.0
+
+ d3-path@3.1.0: {}
+
+ d3-scale@4.0.2:
+ dependencies:
+ d3-array: 3.2.4
+ d3-format: 3.1.2
+ d3-interpolate: 3.0.1
+ d3-time: 3.1.0
+ d3-time-format: 4.1.0
+
+ d3-shape@3.2.0:
+ dependencies:
+ d3-path: 3.1.0
+
+ d3-time-format@4.1.0:
+ dependencies:
+ d3-time: 3.1.0
+
+ d3-time@3.1.0:
+ dependencies:
+ d3-array: 3.2.4
+
+ d3-timer@3.0.1: {}
+
+ data-urls@6.0.1:
+ dependencies:
+ whatwg-mimetype: 5.0.0
+ whatwg-url: 15.1.0
+
+ date-fns@4.1.0: {}
+
+ debug@4.4.3:
+ dependencies:
+ ms: 2.1.3
+
+ decimal.js-light@2.5.1: {}
+
+ decimal.js@10.6.0: {}
+
+ decode-named-character-reference@1.3.0:
+ dependencies:
+ character-entities: 2.0.2
+
+ deep-eql@5.0.2: {}
+
+ deep-is@0.1.4: {}
+
+ dequal@2.0.3: {}
+
+ detect-libc@2.1.2: {}
+
+ detect-node-es@1.1.0: {}
+
+ devlop@1.1.0:
+ dependencies:
+ dequal: 2.0.3
+
+ dom-accessibility-api@0.5.16: {}
+
+ dom-accessibility-api@0.6.3: {}
+
+ electron-to-chromium@1.5.286: {}
+
+ enhanced-resolve@5.19.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ tapable: 2.3.0
+
+ entities@6.0.1: {}
+
+ es-module-lexer@1.7.0: {}
+
+ es-toolkit@1.49.0: {}
+
+ esbuild@0.25.12:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.25.12
+ '@esbuild/android-arm': 0.25.12
+ '@esbuild/android-arm64': 0.25.12
+ '@esbuild/android-x64': 0.25.12
+ '@esbuild/darwin-arm64': 0.25.12
+ '@esbuild/darwin-x64': 0.25.12
+ '@esbuild/freebsd-arm64': 0.25.12
+ '@esbuild/freebsd-x64': 0.25.12
+ '@esbuild/linux-arm': 0.25.12
+ '@esbuild/linux-arm64': 0.25.12
+ '@esbuild/linux-ia32': 0.25.12
+ '@esbuild/linux-loong64': 0.25.12
+ '@esbuild/linux-mips64el': 0.25.12
+ '@esbuild/linux-ppc64': 0.25.12
+ '@esbuild/linux-riscv64': 0.25.12
+ '@esbuild/linux-s390x': 0.25.12
+ '@esbuild/linux-x64': 0.25.12
+ '@esbuild/netbsd-arm64': 0.25.12
+ '@esbuild/netbsd-x64': 0.25.12
+ '@esbuild/openbsd-arm64': 0.25.12
+ '@esbuild/openbsd-x64': 0.25.12
+ '@esbuild/openharmony-arm64': 0.25.12
+ '@esbuild/sunos-x64': 0.25.12
+ '@esbuild/win32-arm64': 0.25.12
+ '@esbuild/win32-ia32': 0.25.12
+ '@esbuild/win32-x64': 0.25.12
+
+ escalade@3.2.0: {}
+
+ escape-string-regexp@4.0.0: {}
+
+ eslint-plugin-react-hooks@5.2.0(eslint@9.39.2(jiti@2.6.1)):
+ dependencies:
+ eslint: 9.39.2(jiti@2.6.1)
+
+ eslint-plugin-react-refresh@0.4.26(eslint@9.39.2(jiti@2.6.1)):
+ dependencies:
+ eslint: 9.39.2(jiti@2.6.1)
+
+ eslint-scope@8.4.0:
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+
+ eslint-visitor-keys@3.4.3: {}
+
+ eslint-visitor-keys@4.2.1: {}
+
+ eslint@9.39.2(jiti@2.6.1):
+ dependencies:
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.2(jiti@2.6.1))
+ '@eslint-community/regexpp': 4.12.2
+ '@eslint/config-array': 0.21.1
+ '@eslint/config-helpers': 0.4.2
+ '@eslint/core': 0.17.0
+ '@eslint/eslintrc': 3.3.3
+ '@eslint/js': 9.39.2
+ '@eslint/plugin-kit': 0.4.1
+ '@humanfs/node': 0.16.7
+ '@humanwhocodes/module-importer': 1.0.1
+ '@humanwhocodes/retry': 0.4.3
+ '@types/estree': 1.0.8
+ ajv: 6.12.6
+ chalk: 4.1.2
+ cross-spawn: 7.0.6
+ debug: 4.4.3
+ escape-string-regexp: 4.0.0
+ eslint-scope: 8.4.0
+ eslint-visitor-keys: 4.2.1
+ espree: 10.4.0
+ esquery: 1.7.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 8.0.0
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ ignore: 5.3.2
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ json-stable-stringify-without-jsonify: 1.0.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.4
+ optionalDependencies:
+ jiti: 2.6.1
+ transitivePeerDependencies:
+ - supports-color
+
+ espree@10.4.0:
+ dependencies:
+ acorn: 8.15.0
+ acorn-jsx: 5.3.2(acorn@8.15.0)
+ eslint-visitor-keys: 4.2.1
+
+ esquery@1.7.0:
+ dependencies:
+ estraverse: 5.3.0
+
+ esrecurse@4.3.0:
+ dependencies:
+ estraverse: 5.3.0
+
+ estraverse@5.3.0: {}
+
+ estree-util-is-identifier-name@3.0.0: {}
+
+ estree-walker@3.0.3:
+ dependencies:
+ '@types/estree': 1.0.8
+
+ esutils@2.0.3: {}
+
+ eventemitter3@5.0.4: {}
+
+ expect-type@1.3.0: {}
+
+ extend@3.0.2: {}
+
+ fast-deep-equal@3.1.3: {}
+
+ fast-json-stable-stringify@2.1.0: {}
+
+ fast-levenshtein@2.0.6: {}
+
+ fdir@6.5.0(picomatch@4.0.3):
+ optionalDependencies:
+ picomatch: 4.0.3
+
+ file-entry-cache@8.0.0:
+ dependencies:
+ flat-cache: 4.0.1
+
+ find-up@5.0.0:
+ dependencies:
+ locate-path: 6.0.0
+ path-exists: 4.0.0
+
+ flat-cache@4.0.1:
+ dependencies:
+ flatted: 3.3.3
+ keyv: 4.5.4
+
+ flatted@3.3.3: {}
+
+ fsevents@2.3.3:
+ optional: true
+
+ gensync@1.0.0-beta.2: {}
+
+ get-nonce@1.0.1: {}
+
+ glob-parent@6.0.2:
+ dependencies:
+ is-glob: 4.0.3
+
+ globals@14.0.0: {}
+
+ globals@16.5.0: {}
+
+ graceful-fs@4.2.11: {}
+
+ has-flag@4.0.0: {}
+
+ hast-util-to-jsx-runtime@2.3.6:
+ dependencies:
+ '@types/estree': 1.0.8
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.3
+ comma-separated-tokens: 2.0.3
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
+ hast-util-whitespace: 3.0.0
+ mdast-util-mdx-expression: 2.0.1
+ mdast-util-mdx-jsx: 3.2.0
+ mdast-util-mdxjs-esm: 2.0.1
+ property-information: 7.1.0
+ space-separated-tokens: 2.0.2
+ style-to-js: 1.1.21
+ unist-util-position: 5.0.0
+ vfile-message: 4.0.3
+ transitivePeerDependencies:
+ - supports-color
+
+ hast-util-whitespace@3.0.0:
+ dependencies:
+ '@types/hast': 3.0.4
+
+ html-encoding-sniffer@6.0.0:
+ dependencies:
+ '@exodus/bytes': 1.11.0
+ transitivePeerDependencies:
+ - '@noble/hashes'
+
+ html-url-attributes@3.0.1: {}
+
+ http-proxy-agent@7.0.2:
+ dependencies:
+ agent-base: 7.1.4
+ debug: 4.4.3
+ transitivePeerDependencies:
+ - supports-color
+
+ https-proxy-agent@7.0.6:
+ dependencies:
+ agent-base: 7.1.4
+ debug: 4.4.3
+ transitivePeerDependencies:
+ - supports-color
+
+ ignore@5.3.2: {}
+
+ ignore@7.0.5: {}
+
+ immer@11.1.11: {}
+
+ import-fresh@3.3.1:
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+
+ imurmurhash@0.1.4: {}
+
+ indent-string@4.0.0: {}
+
+ inline-style-parser@0.2.7: {}
+
+ internmap@2.0.3: {}
+
+ is-alphabetical@2.0.1: {}
+
+ is-alphanumerical@2.0.1:
+ dependencies:
+ is-alphabetical: 2.0.1
+ is-decimal: 2.0.1
+
+ is-decimal@2.0.1: {}
+
+ is-extglob@2.1.1: {}
+
+ is-glob@4.0.3:
+ dependencies:
+ is-extglob: 2.1.1
+
+ is-hexadecimal@2.0.1: {}
+
+ is-plain-obj@4.1.0: {}
+
+ is-potential-custom-element-name@1.0.1: {}
+
+ isexe@2.0.0: {}
+
+ jiti@2.6.1: {}
+
+ js-tokens@4.0.0: {}
+
+ js-tokens@9.0.1: {}
+
+ js-yaml@4.1.1:
+ dependencies:
+ argparse: 2.0.1
+
+ jsdom@27.4.0:
+ dependencies:
+ '@acemir/cssom': 0.9.31
+ '@asamuzakjp/dom-selector': 6.7.8
+ '@exodus/bytes': 1.11.0
+ cssstyle: 5.3.7
+ data-urls: 6.0.1
+ decimal.js: 10.6.0
+ html-encoding-sniffer: 6.0.0
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.6
+ is-potential-custom-element-name: 1.0.1
+ parse5: 8.0.0
+ saxes: 6.0.0
+ symbol-tree: 3.2.4
+ tough-cookie: 6.0.0
+ w3c-xmlserializer: 5.0.0
+ webidl-conversions: 8.0.1
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 15.1.0
+ ws: 8.19.0
+ xml-name-validator: 5.0.0
+ transitivePeerDependencies:
+ - '@noble/hashes'
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
+ jsesc@3.1.0: {}
+
+ json-buffer@3.0.1: {}
+
+ json-schema-traverse@0.4.1: {}
+
+ json-stable-stringify-without-jsonify@1.0.1: {}
+
+ json5@2.2.3: {}
+
+ keyv@4.5.4:
+ dependencies:
+ json-buffer: 3.0.1
+
+ levn@0.4.1:
+ dependencies:
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+
+ lightningcss-android-arm64@1.30.2:
+ optional: true
+
+ lightningcss-darwin-arm64@1.30.2:
+ optional: true
+
+ lightningcss-darwin-x64@1.30.2:
+ optional: true
+
+ lightningcss-freebsd-x64@1.30.2:
+ optional: true
+
+ lightningcss-linux-arm-gnueabihf@1.30.2:
+ optional: true
+
+ lightningcss-linux-arm64-gnu@1.30.2:
+ optional: true
+
+ lightningcss-linux-arm64-musl@1.30.2:
+ optional: true
+
+ lightningcss-linux-x64-gnu@1.30.2:
+ optional: true
+
+ lightningcss-linux-x64-musl@1.30.2:
+ optional: true
+
+ lightningcss-win32-arm64-msvc@1.30.2:
+ optional: true
+
+ lightningcss-win32-x64-msvc@1.30.2:
+ optional: true
+
+ lightningcss@1.30.2:
+ dependencies:
+ detect-libc: 2.1.2
+ optionalDependencies:
+ lightningcss-android-arm64: 1.30.2
+ lightningcss-darwin-arm64: 1.30.2
+ lightningcss-darwin-x64: 1.30.2
+ lightningcss-freebsd-x64: 1.30.2
+ lightningcss-linux-arm-gnueabihf: 1.30.2
+ lightningcss-linux-arm64-gnu: 1.30.2
+ lightningcss-linux-arm64-musl: 1.30.2
+ lightningcss-linux-x64-gnu: 1.30.2
+ lightningcss-linux-x64-musl: 1.30.2
+ lightningcss-win32-arm64-msvc: 1.30.2
+ lightningcss-win32-x64-msvc: 1.30.2
+
+ locate-path@6.0.0:
+ dependencies:
+ p-locate: 5.0.0
+
+ lodash.merge@4.6.2: {}
+
+ longest-streak@3.1.0: {}
+
+ loupe@3.2.1: {}
+
+ lru-cache@11.2.5: {}
+
+ lru-cache@5.1.1:
+ dependencies:
+ yallist: 3.1.1
+
+ lucide-react@0.516.0(react@19.2.4):
+ dependencies:
+ react: 19.2.4
+
+ lz-string@1.5.0: {}
+
+ magic-string@0.30.21:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+
+ mdast-util-from-markdown@2.0.2:
+ dependencies:
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ decode-named-character-reference: 1.3.0
+ devlop: 1.1.0
+ mdast-util-to-string: 4.0.0
+ micromark: 4.0.2
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-decode-string: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+ unist-util-stringify-position: 4.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ mdast-util-mdx-expression@2.0.1:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ mdast-util-mdx-jsx@3.2.0:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ ccount: 2.0.1
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ parse-entities: 4.0.2
+ stringify-entities: 4.0.4
+ unist-util-stringify-position: 4.0.0
+ vfile-message: 4.0.3
+ transitivePeerDependencies:
+ - supports-color
+
+ mdast-util-mdxjs-esm@2.0.1:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ mdast-util-phrasing@4.1.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ unist-util-is: 6.0.1
+
+ mdast-util-to-hast@13.2.1:
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ '@ungap/structured-clone': 1.3.0
+ devlop: 1.1.0
+ micromark-util-sanitize-uri: 2.0.1
+ trim-lines: 3.0.1
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.1.0
+ vfile: 6.0.3
+
+ mdast-util-to-markdown@2.1.2:
+ dependencies:
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ longest-streak: 3.1.0
+ mdast-util-phrasing: 4.1.0
+ mdast-util-to-string: 4.0.0
+ micromark-util-classify-character: 2.0.1
+ micromark-util-decode-string: 2.0.1
+ unist-util-visit: 5.1.0
+ zwitch: 2.0.4
+
+ mdast-util-to-string@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+
+ mdn-data@2.12.2: {}
+
+ micromark-core-commonmark@2.0.3:
+ dependencies:
+ decode-named-character-reference: 1.3.0
+ devlop: 1.1.0
+ micromark-factory-destination: 2.0.1
+ micromark-factory-label: 2.0.1
+ micromark-factory-space: 2.0.1
+ micromark-factory-title: 2.0.1
+ micromark-factory-whitespace: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-chunked: 2.0.1
+ micromark-util-classify-character: 2.0.1
+ micromark-util-html-tag-name: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-resolve-all: 2.0.1
+ micromark-util-subtokenize: 2.1.0
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
+ micromark-factory-destination@2.0.1:
+ dependencies:
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
+ micromark-factory-label@2.0.1:
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
+ micromark-factory-space@2.0.1:
+ dependencies:
+ micromark-util-character: 2.1.1
+ micromark-util-types: 2.0.2
+
+ micromark-factory-title@2.0.1:
+ dependencies:
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
+ micromark-factory-whitespace@2.0.1:
+ dependencies:
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
+ micromark-util-character@2.1.1:
+ dependencies:
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
+ micromark-util-chunked@2.0.1:
+ dependencies:
+ micromark-util-symbol: 2.0.1
+
+ micromark-util-classify-character@2.0.1:
+ dependencies:
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
+ micromark-util-combine-extensions@2.0.1:
+ dependencies:
+ micromark-util-chunked: 2.0.1
+ micromark-util-types: 2.0.2
+
+ micromark-util-decode-numeric-character-reference@2.0.2:
+ dependencies:
+ micromark-util-symbol: 2.0.1
+
+ micromark-util-decode-string@2.0.1:
+ dependencies:
+ decode-named-character-reference: 1.3.0
+ micromark-util-character: 2.1.1
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-symbol: 2.0.1
+
+ micromark-util-encode@2.0.1: {}
+
+ micromark-util-html-tag-name@2.0.1: {}
+
+ micromark-util-normalize-identifier@2.0.1:
+ dependencies:
+ micromark-util-symbol: 2.0.1
+
+ micromark-util-resolve-all@2.0.1:
+ dependencies:
+ micromark-util-types: 2.0.2
+
+ micromark-util-sanitize-uri@2.0.1:
+ dependencies:
+ micromark-util-character: 2.1.1
+ micromark-util-encode: 2.0.1
+ micromark-util-symbol: 2.0.1
+
+ micromark-util-subtokenize@2.1.0:
+ dependencies:
+ devlop: 1.1.0
+ micromark-util-chunked: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+
+ micromark-util-symbol@2.0.1: {}
+
+ micromark-util-types@2.0.2: {}
+
+ micromark@4.0.2:
+ dependencies:
+ '@types/debug': 4.1.12
+ debug: 4.4.3
+ decode-named-character-reference: 1.3.0
+ devlop: 1.1.0
+ micromark-core-commonmark: 2.0.3
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-chunked: 2.0.1
+ micromark-util-combine-extensions: 2.0.1
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-encode: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-resolve-all: 2.0.1
+ micromark-util-sanitize-uri: 2.0.1
+ micromark-util-subtokenize: 2.1.0
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+ transitivePeerDependencies:
+ - supports-color
+
+ min-indent@1.0.1: {}
+
+ minimatch@3.1.2:
+ dependencies:
+ brace-expansion: 1.1.12
+
+ minimatch@9.0.5:
+ dependencies:
+ brace-expansion: 2.0.2
+
+ ms@2.1.3: {}
+
+ nanoid@3.3.11: {}
+
+ natural-compare@1.4.0: {}
+
+ node-releases@2.0.27: {}
+
+ optionator@0.9.4:
+ dependencies:
+ deep-is: 0.1.4
+ fast-levenshtein: 2.0.6
+ levn: 0.4.1
+ prelude-ls: 1.2.1
+ type-check: 0.4.0
+ word-wrap: 1.2.5
+
+ p-limit@3.1.0:
+ dependencies:
+ yocto-queue: 0.1.0
+
+ p-locate@5.0.0:
+ dependencies:
+ p-limit: 3.1.0
+
+ parent-module@1.0.1:
+ dependencies:
+ callsites: 3.1.0
+
+ parse-entities@4.0.2:
+ dependencies:
+ '@types/unist': 2.0.11
+ character-entities-legacy: 3.0.0
+ character-reference-invalid: 2.0.1
+ decode-named-character-reference: 1.3.0
+ is-alphanumerical: 2.0.1
+ is-decimal: 2.0.1
+ is-hexadecimal: 2.0.1
+
+ parse5@8.0.0:
+ dependencies:
+ entities: 6.0.1
+
+ path-exists@4.0.0: {}
+
+ path-key@3.1.1: {}
+
+ pathe@2.0.3: {}
+
+ pathval@2.0.1: {}
+
+ picocolors@1.1.1: {}
+
+ picomatch@4.0.3: {}
+
+ postcss-selector-parser@6.0.10:
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+
+ postcss@8.5.6:
+ dependencies:
+ nanoid: 3.3.11
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
+ prelude-ls@1.2.1: {}
+
+ pretty-format@27.5.1:
+ dependencies:
+ ansi-regex: 5.0.1
+ ansi-styles: 5.2.0
+ react-is: 17.0.2
+
+ property-information@7.1.0: {}
+
+ punycode@2.3.1: {}
+
+ qrcode.react@4.2.0(react@19.2.4):
+ dependencies:
+ react: 19.2.4
+
+ radix-ui@1.4.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-accessible-icon': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-accordion': 1.2.12(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-alert-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-aspect-ratio': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-avatar': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-checkbox': 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-collapsible': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-context-menu': 2.2.16(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-dropdown-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-form': 0.1.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-hover-card': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-label': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-menubar': 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-navigation-menu': 1.2.14(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-one-time-password-field': 0.1.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-password-toggle-field': 0.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-popover': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-progress': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-radio-group': 1.3.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-scroll-area': 1.2.10(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-select': 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-separator': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-slider': 1.3.6(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-switch': 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-tabs': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-toast': 1.2.15(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-toggle-group': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-toolbar': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-tooltip': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.13)(react@19.2.4)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.13))(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ '@types/react-dom': 19.2.3(@types/react@19.2.13)
+
+ react-dom@19.2.4(react@19.2.4):
+ dependencies:
+ react: 19.2.4
+ scheduler: 0.27.0
+
+ react-hook-form@7.71.1(react@19.2.4):
+ dependencies:
+ react: 19.2.4
+
+ react-is@17.0.2: {}
+
+ react-markdown@10.1.0(@types/react@19.2.13)(react@19.2.4):
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ '@types/react': 19.2.13
+ devlop: 1.1.0
+ hast-util-to-jsx-runtime: 2.3.6
+ html-url-attributes: 3.0.1
+ mdast-util-to-hast: 13.2.1
+ react: 19.2.4
+ remark-parse: 11.0.0
+ remark-rehype: 11.1.2
+ unified: 11.0.5
+ unist-util-visit: 5.1.0
+ vfile: 6.0.3
+ transitivePeerDependencies:
+ - supports-color
+
+ react-redux@9.3.0(@types/react@19.2.13)(react@19.2.4)(redux@5.0.1):
+ dependencies:
+ '@types/use-sync-external-store': 0.0.6
+ react: 19.2.4
+ use-sync-external-store: 1.6.0(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+ redux: 5.0.1
+
+ react-refresh@0.17.0: {}
+
+ react-remove-scroll-bar@2.3.8(@types/react@19.2.13)(react@19.2.4):
+ dependencies:
+ react: 19.2.4
+ react-style-singleton: 2.2.3(@types/react@19.2.13)(react@19.2.4)
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ react-remove-scroll@2.7.2(@types/react@19.2.13)(react@19.2.4):
+ dependencies:
+ react: 19.2.4
+ react-remove-scroll-bar: 2.3.8(@types/react@19.2.13)(react@19.2.4)
+ react-style-singleton: 2.2.3(@types/react@19.2.13)(react@19.2.4)
+ tslib: 2.8.1
+ use-callback-ref: 1.3.3(@types/react@19.2.13)(react@19.2.4)
+ use-sidecar: 1.1.3(@types/react@19.2.13)(react@19.2.4)
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ react-router-dom@7.13.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
+ dependencies:
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ react-router: 7.13.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+
+ react-router@7.13.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
+ dependencies:
+ cookie: 1.1.1
+ react: 19.2.4
+ set-cookie-parser: 2.7.2
+ optionalDependencies:
+ react-dom: 19.2.4(react@19.2.4)
+
+ react-style-singleton@2.2.3(@types/react@19.2.13)(react@19.2.4):
+ dependencies:
+ get-nonce: 1.0.1
+ react: 19.2.4
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ react@19.2.4: {}
+
+ recharts@3.9.2(@types/react@19.2.13)(react-dom@19.2.4(react@19.2.4))(react-is@17.0.2)(react@19.2.4)(redux@5.0.1):
+ dependencies:
+ '@reduxjs/toolkit': 2.12.0(react-redux@9.3.0(@types/react@19.2.13)(react@19.2.4)(redux@5.0.1))(react@19.2.4)
+ clsx: 2.1.1
+ decimal.js-light: 2.5.1
+ es-toolkit: 1.49.0
+ eventemitter3: 5.0.4
+ immer: 11.1.11
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+ react-is: 17.0.2
+ react-redux: 9.3.0(@types/react@19.2.13)(react@19.2.4)(redux@5.0.1)
+ reselect: 5.2.0
+ tiny-invariant: 1.3.3
+ use-sync-external-store: 1.6.0(react@19.2.4)
+ victory-vendor: 37.3.6
+ transitivePeerDependencies:
+ - '@types/react'
+ - redux
+
+ redent@3.0.0:
+ dependencies:
+ indent-string: 4.0.0
+ strip-indent: 3.0.0
+
+ redux-thunk@3.1.0(redux@5.0.1):
+ dependencies:
+ redux: 5.0.1
+
+ redux@5.0.1: {}
+
+ remark-parse@11.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-from-markdown: 2.0.2
+ micromark-util-types: 2.0.2
+ unified: 11.0.5
+ transitivePeerDependencies:
+ - supports-color
+
+ remark-rehype@11.1.2:
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ mdast-util-to-hast: 13.2.1
+ unified: 11.0.5
+ vfile: 6.0.3
+
+ require-from-string@2.0.2: {}
+
+ reselect@5.2.0: {}
+
+ resolve-from@4.0.0: {}
+
+ rollup@4.57.1:
+ dependencies:
+ '@types/estree': 1.0.8
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.57.1
+ '@rollup/rollup-android-arm64': 4.57.1
+ '@rollup/rollup-darwin-arm64': 4.57.1
+ '@rollup/rollup-darwin-x64': 4.57.1
+ '@rollup/rollup-freebsd-arm64': 4.57.1
+ '@rollup/rollup-freebsd-x64': 4.57.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.57.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.57.1
+ '@rollup/rollup-linux-arm64-gnu': 4.57.1
+ '@rollup/rollup-linux-arm64-musl': 4.57.1
+ '@rollup/rollup-linux-loong64-gnu': 4.57.1
+ '@rollup/rollup-linux-loong64-musl': 4.57.1
+ '@rollup/rollup-linux-ppc64-gnu': 4.57.1
+ '@rollup/rollup-linux-ppc64-musl': 4.57.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.57.1
+ '@rollup/rollup-linux-riscv64-musl': 4.57.1
+ '@rollup/rollup-linux-s390x-gnu': 4.57.1
+ '@rollup/rollup-linux-x64-gnu': 4.57.1
+ '@rollup/rollup-linux-x64-musl': 4.57.1
+ '@rollup/rollup-openbsd-x64': 4.57.1
+ '@rollup/rollup-openharmony-arm64': 4.57.1
+ '@rollup/rollup-win32-arm64-msvc': 4.57.1
+ '@rollup/rollup-win32-ia32-msvc': 4.57.1
+ '@rollup/rollup-win32-x64-gnu': 4.57.1
+ '@rollup/rollup-win32-x64-msvc': 4.57.1
+ fsevents: 2.3.3
+
+ saxes@6.0.0:
+ dependencies:
+ xmlchars: 2.2.0
+
+ scheduler@0.27.0: {}
+
+ semver@6.3.1: {}
+
+ semver@7.7.4: {}
+
+ set-cookie-parser@2.7.2: {}
+
+ shebang-command@2.0.0:
+ dependencies:
+ shebang-regex: 3.0.0
+
+ shebang-regex@3.0.0: {}
+
+ siginfo@2.0.0: {}
+
+ sonner@2.0.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
+ dependencies:
+ react: 19.2.4
+ react-dom: 19.2.4(react@19.2.4)
+
+ source-map-js@1.2.1: {}
+
+ space-separated-tokens@2.0.2: {}
+
+ stackback@0.0.2: {}
+
+ std-env@3.10.0: {}
+
+ stringify-entities@4.0.4:
+ dependencies:
+ character-entities-html4: 2.1.0
+ character-entities-legacy: 3.0.0
+
+ strip-indent@3.0.0:
+ dependencies:
+ min-indent: 1.0.1
+
+ strip-json-comments@3.1.1: {}
+
+ strip-literal@3.1.0:
+ dependencies:
+ js-tokens: 9.0.1
+
+ style-to-js@1.1.21:
+ dependencies:
+ style-to-object: 1.0.14
+
+ style-to-object@1.0.14:
+ dependencies:
+ inline-style-parser: 0.2.7
+
+ supports-color@7.2.0:
+ dependencies:
+ has-flag: 4.0.0
+
+ symbol-tree@3.2.4: {}
+
+ tailwind-merge@3.4.0: {}
+
+ tailwindcss@4.1.18: {}
+
+ tapable@2.3.0: {}
+
+ tiny-invariant@1.3.3: {}
+
+ tinybench@2.9.0: {}
+
+ tinyexec@0.3.2: {}
+
+ tinyglobby@0.2.15:
+ dependencies:
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
+
+ tinypool@1.1.1: {}
+
+ tinyrainbow@2.0.0: {}
+
+ tinyspy@4.0.4: {}
+
+ tldts-core@7.0.22: {}
+
+ tldts@7.0.22:
+ dependencies:
+ tldts-core: 7.0.22
+
+ tough-cookie@6.0.0:
+ dependencies:
+ tldts: 7.0.22
+
+ tr46@6.0.0:
+ dependencies:
+ punycode: 2.3.1
+
+ trim-lines@3.0.1: {}
+
+ trough@2.2.0: {}
+
+ ts-api-utils@2.4.0(typescript@5.8.3):
+ dependencies:
+ typescript: 5.8.3
+
+ tslib@2.8.1: {}
+
+ tw-animate-css@1.4.0: {}
+
+ type-check@0.4.0:
+ dependencies:
+ prelude-ls: 1.2.1
+
+ typescript-eslint@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3):
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)
+ '@typescript-eslint/typescript-estree': 8.54.0(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.8.3)
+ eslint: 9.39.2(jiti@2.6.1)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ typescript@5.8.3: {}
+
+ undici-types@7.16.0: {}
+
+ unified@11.0.5:
+ dependencies:
+ '@types/unist': 3.0.3
+ bail: 2.0.2
+ devlop: 1.1.0
+ extend: 3.0.2
+ is-plain-obj: 4.1.0
+ trough: 2.2.0
+ vfile: 6.0.3
+
+ unist-util-is@6.0.1:
+ dependencies:
+ '@types/unist': 3.0.3
+
+ unist-util-position@5.0.0:
+ dependencies:
+ '@types/unist': 3.0.3
+
+ unist-util-stringify-position@4.0.0:
+ dependencies:
+ '@types/unist': 3.0.3
+
+ unist-util-visit-parents@6.0.2:
+ dependencies:
+ '@types/unist': 3.0.3
+ unist-util-is: 6.0.1
+
+ unist-util-visit@5.1.0:
+ dependencies:
+ '@types/unist': 3.0.3
+ unist-util-is: 6.0.1
+ unist-util-visit-parents: 6.0.2
+
+ update-browserslist-db@1.2.3(browserslist@4.28.1):
+ dependencies:
+ browserslist: 4.28.1
+ escalade: 3.2.0
+ picocolors: 1.1.1
+
+ uri-js@4.4.1:
+ dependencies:
+ punycode: 2.3.1
+
+ use-callback-ref@1.3.3(@types/react@19.2.13)(react@19.2.4):
+ dependencies:
+ react: 19.2.4
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ use-sidecar@1.1.3(@types/react@19.2.13)(react@19.2.4):
+ dependencies:
+ detect-node-es: 1.1.0
+ react: 19.2.4
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.2.13
+
+ use-sync-external-store@1.6.0(react@19.2.4):
+ dependencies:
+ react: 19.2.4
+
+ util-deprecate@1.0.2: {}
+
+ vfile-message@4.0.3:
+ dependencies:
+ '@types/unist': 3.0.3
+ unist-util-stringify-position: 4.0.0
+
+ vfile@6.0.3:
+ dependencies:
+ '@types/unist': 3.0.3
+ vfile-message: 4.0.3
+
+ victory-vendor@37.3.6:
+ dependencies:
+ '@types/d3-array': 3.2.2
+ '@types/d3-ease': 3.0.2
+ '@types/d3-interpolate': 3.0.4
+ '@types/d3-scale': 4.0.9
+ '@types/d3-shape': 3.1.8
+ '@types/d3-time': 3.0.4
+ '@types/d3-timer': 3.0.2
+ d3-array: 3.2.4
+ d3-ease: 3.0.1
+ d3-interpolate: 3.0.1
+ d3-scale: 4.0.2
+ d3-shape: 3.2.0
+ d3-time: 3.1.0
+ d3-timer: 3.0.1
+
+ vite-node@3.2.4(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2):
+ dependencies:
+ cac: 6.7.14
+ debug: 4.4.3
+ es-module-lexer: 1.7.0
+ pathe: 2.0.3
+ vite: 6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2)
+ transitivePeerDependencies:
+ - '@types/node'
+ - jiti
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
+
+ vite@6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2):
+ dependencies:
+ esbuild: 0.25.12
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
+ rollup: 4.57.1
+ tinyglobby: 0.2.15
+ optionalDependencies:
+ '@types/node': 24.10.11
+ fsevents: 2.3.3
+ jiti: 2.6.1
+ lightningcss: 1.30.2
+ yaml: 2.8.2
+
+ vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.11)(jiti@2.6.1)(jsdom@27.4.0)(lightningcss@1.30.2)(yaml@2.8.2):
+ dependencies:
+ '@types/chai': 5.2.3
+ '@vitest/expect': 3.2.4
+ '@vitest/mocker': 3.2.4(vite@6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2))
+ '@vitest/pretty-format': 3.2.4
+ '@vitest/runner': 3.2.4
+ '@vitest/snapshot': 3.2.4
+ '@vitest/spy': 3.2.4
+ '@vitest/utils': 3.2.4
+ chai: 5.3.3
+ debug: 4.4.3
+ expect-type: 1.3.0
+ magic-string: 0.30.21
+ pathe: 2.0.3
+ picomatch: 4.0.3
+ std-env: 3.10.0
+ tinybench: 2.9.0
+ tinyexec: 0.3.2
+ tinyglobby: 0.2.15
+ tinypool: 1.1.1
+ tinyrainbow: 2.0.0
+ vite: 6.4.1(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2)
+ vite-node: 3.2.4(@types/node@24.10.11)(jiti@2.6.1)(lightningcss@1.30.2)(yaml@2.8.2)
+ why-is-node-running: 2.3.0
+ optionalDependencies:
+ '@types/debug': 4.1.12
+ '@types/node': 24.10.11
+ jsdom: 27.4.0
+ transitivePeerDependencies:
+ - jiti
+ - less
+ - lightningcss
+ - msw
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
+
+ w3c-xmlserializer@5.0.0:
+ dependencies:
+ xml-name-validator: 5.0.0
+
+ webidl-conversions@8.0.1: {}
+
+ whatwg-mimetype@4.0.0: {}
+
+ whatwg-mimetype@5.0.0: {}
+
+ whatwg-url@15.1.0:
+ dependencies:
+ tr46: 6.0.0
+ webidl-conversions: 8.0.1
+
+ which@2.0.2:
+ dependencies:
+ isexe: 2.0.0
+
+ why-is-node-running@2.3.0:
+ dependencies:
+ siginfo: 2.0.0
+ stackback: 0.0.2
+
+ word-wrap@1.2.5: {}
+
+ ws@8.19.0: {}
+
+ xml-name-validator@5.0.0: {}
+
+ xmlchars@2.2.0: {}
+
+ yallist@3.1.1: {}
+
+ yaml@2.8.2:
+ optional: true
+
+ yocto-queue@0.1.0: {}
+
+ zod@3.25.76: {}
+
+ zwitch@2.0.4: {}
diff --git a/web/public/favicon.svg b/web/public/favicon.svg
new file mode 100644
index 0000000..4555219
--- /dev/null
+++ b/web/public/favicon.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/web/public/manifest.json b/web/public/manifest.json
new file mode 100644
index 0000000..364df8d
--- /dev/null
+++ b/web/public/manifest.json
@@ -0,0 +1,15 @@
+{
+ "short_name": "Wild Cloud",
+ "name": "Wild Cloud Central",
+ "icons": [
+ {
+ "src": "favicon.svg",
+ "sizes": "any",
+ "type": "image/svg+xml"
+ }
+ ],
+ "start_url": ".",
+ "display": "standalone",
+ "theme_color": "#0ea5e9",
+ "background_color": "#ffffff"
+}
\ No newline at end of file
diff --git a/web/public/vite.svg b/web/public/vite.svg
new file mode 100644
index 0000000..e7b8dfb
--- /dev/null
+++ b/web/public/vite.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/web/src/App.css b/web/src/App.css
new file mode 100644
index 0000000..b9d355d
--- /dev/null
+++ b/web/src/App.css
@@ -0,0 +1,42 @@
+#root {
+ max-width: 1280px;
+ margin: 0 auto;
+ padding: 2rem;
+ text-align: center;
+}
+
+.logo {
+ height: 6em;
+ padding: 1.5em;
+ will-change: filter;
+ transition: filter 300ms;
+}
+.logo:hover {
+ filter: drop-shadow(0 0 2em #646cffaa);
+}
+.logo.react:hover {
+ filter: drop-shadow(0 0 2em #61dafbaa);
+}
+
+@keyframes logo-spin {
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(360deg);
+ }
+}
+
+@media (prefers-reduced-motion: no-preference) {
+ a:nth-of-type(2) .logo {
+ animation: logo-spin infinite 20s linear;
+ }
+}
+
+.card {
+ padding: 2em;
+}
+
+.read-the-docs {
+ color: #888;
+}
diff --git a/web/src/App.tsx b/web/src/App.tsx
new file mode 100644
index 0000000..7175a76
--- /dev/null
+++ b/web/src/App.tsx
@@ -0,0 +1,14 @@
+import { RouterProvider } from 'react-router';
+import { router } from './router';
+import { Toaster } from 'sonner';
+
+function App() {
+ return (
+ <>
+
+
+ >
+ );
+}
+
+export default App;
diff --git a/web/src/assets/react.svg b/web/src/assets/react.svg
new file mode 100644
index 0000000..6c87de9
--- /dev/null
+++ b/web/src/assets/react.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/web/src/components/AppSidebar.tsx b/web/src/components/AppSidebar.tsx
new file mode 100644
index 0000000..72aa4fb
--- /dev/null
+++ b/web/src/components/AppSidebar.tsx
@@ -0,0 +1,134 @@
+import { NavLink } from 'react-router';
+import { Sun, Moon, Monitor, Shield, Lock, Network, ShieldAlert, Router, Cloud, Wifi, Server } from 'lucide-react';
+import {
+ Sidebar,
+ SidebarContent,
+ SidebarFooter,
+ SidebarGroup,
+ SidebarGroupContent,
+ SidebarGroupLabel,
+ SidebarHeader,
+ SidebarMenu,
+ SidebarMenuButton,
+ SidebarMenuItem,
+ SidebarRail,
+ useSidebar,
+} from './ui/sidebar';
+import { useTheme } from '../contexts/ThemeContext';
+
+export function AppSidebar() {
+ const { theme, setTheme } = useTheme();
+ const { state } = useSidebar();
+
+ const cycleTheme = () => {
+ if (theme === 'light') {
+ setTheme('dark');
+ } else if (theme === 'dark') {
+ setTheme('system');
+ } else {
+ setTheme('light');
+ }
+ };
+
+ const getThemeIcon = () => {
+ switch (theme) {
+ case 'light':
+ return ;
+ case 'dark':
+ return ;
+ default:
+ return ;
+ }
+ };
+
+ const getThemeLabel = () => {
+ switch (theme) {
+ case 'light':
+ return 'Light mode';
+ case 'dark':
+ return 'Dark mode';
+ default:
+ return 'System theme';
+ }
+ };
+
+ const centralItems = [
+ { to: '/central', icon: Server, label: 'Overview', end: true },
+ { to: '/central/cloudflare', icon: Cloud, label: 'Cloudflare' },
+ { to: '/central/dns', icon: Router, label: 'DNS' },
+ { to: '/central/ingress', icon: Network, label: 'Ingress Proxy' },
+ { to: '/central/firewall', icon: Shield, label: 'Firewall' },
+ { to: '/central/vpn', icon: Lock, label: 'VPN' },
+ { to: '/central/crowdsec', icon: ShieldAlert, label: 'CrowdSec' },
+ { to: '/central/dhcp', icon: Wifi, label: 'DHCP' },
+ ];
+
+ return (
+
+
+
+
+
+
+
+
Wild Central
+
+
+
+
+
+ {state === 'collapsed' ? (
+
+ {centralItems.map(({ to, icon: Icon, label, end }) => (
+
+
+ {({ isActive }) => (
+
+
+ {label}
+
+ )}
+
+
+ ))}
+
+ ) : (
+
+ Central
+
+
+ {centralItems.map(({ to, icon: Icon, label, end }) => (
+
+
+ {({ isActive }) => (
+
+
+ {label}
+
+ )}
+
+
+ ))}
+
+
+
+ )}
+
+
+
+
+
+
+ {getThemeIcon()}
+ {getThemeLabel()}
+
+
+
+
+
+
+ );
+}
diff --git a/web/src/components/CentralComponent.tsx b/web/src/components/CentralComponent.tsx
new file mode 100644
index 0000000..360ed28
--- /dev/null
+++ b/web/src/components/CentralComponent.tsx
@@ -0,0 +1,219 @@
+import { useState, useEffect } from 'react';
+import { Card } from './ui/card';
+import { Button } from './ui/button';
+import { Input, Label } from './ui';
+import { Alert, AlertDescription } from './ui/alert';
+import { HardDrive, Settings, CheckCircle, BookOpen, ExternalLink, Loader2, AlertCircle, Mail, Edit2, Check, X, RotateCw } from 'lucide-react';
+import { Badge } from './ui/badge';
+import { useCentralStatus } from '../hooks/useCentralStatus';
+import { useConfig } from '../hooks';
+import { usePageHelp } from '../hooks/usePageHelp';
+
+export function CentralComponent() {
+ const { data: centralStatus, isLoading: statusLoading, error: statusError, restart: restartDaemon, isRestarting: isDaemonRestarting } = useCentralStatus();
+ const { config: globalConfig, updateConfig: updateGlobalConfig, isUpdating } = useConfig();
+
+ const [editingOperator, setEditingOperator] = useState(false);
+ const [operatorEmail, setOperatorEmail] = useState('');
+ const [successMessage, setSuccessMessage] = useState(null);
+ const [errorMessage, setErrorMessage] = useState(null);
+
+ const showSuccess = (msg: string) => {
+ setSuccessMessage(msg);
+ setErrorMessage(null);
+ setTimeout(() => setSuccessMessage(null), 5000);
+ };
+
+ const showError = (msg: string) => {
+ setErrorMessage(msg);
+ setSuccessMessage(null);
+ setTimeout(() => setErrorMessage(null), 8000);
+ };
+
+ useEffect(() => {
+ if (globalConfig?.operator?.email) {
+ setOperatorEmail(globalConfig.operator.email);
+ }
+ }, [globalConfig]);
+
+ const handleOperatorSave = async () => {
+ if (!globalConfig || !operatorEmail) return;
+ try {
+ await updateGlobalConfig({
+ ...globalConfig,
+ operator: { ...globalConfig.operator, email: operatorEmail },
+ });
+ setEditingOperator(false);
+ showSuccess('Operator email saved');
+ } catch (err) {
+ showError(`Failed to save operator: ${err instanceof Error ? err.message : String(err)}`);
+ }
+ };
+
+ const handleOperatorCancel = () => {
+ setOperatorEmail(globalConfig?.operator?.email || '');
+ setEditingOperator(false);
+ };
+
+ usePageHelp({
+ title: 'What is the Central Service?',
+ description: (
+ <>
+
+ The Central Service is the "brain" of your personal cloud. It acts as the main coordinator that manages
+ all the different services running on your network. Think of it like the control tower at an airport -
+ it keeps track of what's happening, routes traffic between services, and ensures everything works together smoothly.
+
+
+ This service handles configuration management, service discovery, and provides the web interface you're using right now.
+
+ >
+ ),
+ icon: ,
+ color: 'bg-gradient-to-r from-blue-50 to-indigo-50 dark:from-blue-950/20 dark:to-indigo-950/20',
+ actions: (
+
+
+ Learn more about service orchestration
+
+ ),
+ });
+
+ if (statusError) {
+ return (
+
+
+ Error Loading Central Status
+
+ {(statusError as Error)?.message || 'An error occurred'}
+
+ window.location.reload()}>Reload Page
+
+ );
+ }
+
+ return (
+
+
+
+
Wild Central
+
Manage your Wild Central server
+
+ {centralStatus && (
+
+
+ {centralStatus.status === 'running' ? 'Running' : centralStatus.status}
+
+ )}
+
+
+ {centralStatus?.pendingRestart && (
+
+
+
+
Configuration changed — restart Wild Central for changes to take effect.
+
+
+ {isDaemonRestarting ? : }
+ {isDaemonRestarting ? 'Restarting...' : 'Restart Now'}
+
+
+ )}
+
+ {successMessage && (
+
+
+ {successMessage}
+
+ )}
+ {errorMessage && (
+
+
+ {errorMessage}
+
+ )}
+
+ {statusLoading ? (
+
+
+
+
+
+ ) : (
+
+
+
+
+
Version
+
{centralStatus?.version || 'Unknown'}
+
+
+
+
+
+
Data Directory
+
+ {centralStatus?.dataDir || '/var/lib/wild-central'}
+
+
+
+
+ )}
+
+
+
+
+ {!editingOperator && (
+
setEditingOperator(true)} disabled={isUpdating}>
+
+
+ )}
+
+ {editingOperator ? (
+
+
+ Email
+ setOperatorEmail(e.target.value)}
+ placeholder="email@example.com"
+ className="mt-1"
+ />
+
+
+
+ Cancel
+
+
+ {isUpdating ? : }
+ Save
+
+
+
+ ) : (
+
+ {globalConfig?.operator?.email || (
+ Not configured
+ )}
+
+ )}
+
+
+
+ );
+}
diff --git a/web/src/components/CloudflareComponent.tsx b/web/src/components/CloudflareComponent.tsx
new file mode 100644
index 0000000..c05638a
--- /dev/null
+++ b/web/src/components/CloudflareComponent.tsx
@@ -0,0 +1,426 @@
+import { useState } from 'react';
+import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
+import { Card, CardContent } from './ui/card';
+import { Button } from './ui/button';
+import { Input, Label } from './ui';
+import { Alert, AlertDescription } from './ui/alert';
+import {
+ Cloud, CheckCircle, XCircle, AlertCircle, Loader2, Edit2,
+ RefreshCw, ExternalLink, BookOpen, Globe, Key, Shield, Check, X, KeyRound,
+} from 'lucide-react';
+import { Badge } from './ui/badge';
+import { useCloudflare } from '../hooks/useCloudflare';
+import { useConfig } from '../hooks';
+import { useDdns } from '../hooks/useDdns';
+import { useCert } from '../hooks/useCert';
+import { secretsApi } from '../services/api';
+import { usePageHelp } from '../hooks/usePageHelp';
+
+export function CloudflareComponent() {
+ const { verification, isLoading: isVerifying, refetch: reverify } = useCloudflare();
+ const { config: globalConfig, updateConfig: updateGlobalConfig, isUpdating } = useConfig();
+ const { status: ddnsStatus } = useDdns();
+ const { status: certStatus, isLoading: certLoading, provision: provisionCert, isProvisioning, provisionError } = useCert();
+
+ const queryClient = useQueryClient();
+ const { data: globalSecrets } = useQuery({
+ queryKey: ['globalSecrets'],
+ queryFn: () => secretsApi.get(),
+ });
+ const updateSecretsMutation = useMutation({
+ mutationFn: (values: Record) => secretsApi.update(values),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['globalSecrets'] });
+ queryClient.invalidateQueries({ queryKey: ['cloudflare', 'verify'] });
+ setEditingToken(false);
+ setTokenValue('');
+ showSuccess('Cloudflare API token saved');
+ },
+ onError: (err) => {
+ showError(String(err));
+ },
+ });
+
+ const cfTokenIsSet = !!(globalSecrets as Record | undefined)
+ && !!(globalSecrets as { cloudflare?: { apiToken?: string } })?.cloudflare?.apiToken;
+
+ const [editingToken, setEditingToken] = useState(false);
+ const [tokenValue, setTokenValue] = useState('');
+ const [editingDomain, setEditingDomain] = useState(false);
+ const [domainInput, setDomainInput] = useState('');
+ const [successMessage, setSuccessMessage] = useState(null);
+ const [errorMessage, setErrorMessage] = useState(null);
+
+ const showSuccess = (msg: string) => {
+ setSuccessMessage(msg);
+ setErrorMessage(null);
+ setTimeout(() => setSuccessMessage(null), 5000);
+ };
+
+ const showError = (msg: string) => {
+ setErrorMessage(msg);
+ setSuccessMessage(null);
+ setTimeout(() => setErrorMessage(null), 8000);
+ };
+
+ usePageHelp({
+ title: 'Why Cloudflare?',
+ description: (
+ <>
+
+ Wild Cloud uses Cloudflare to manage DNS records and provision TLS certificates for your domains.
+ A Cloudflare API token enables three key features: Dynamic DNS keeps your domain
+ pointed at your changing public IP, TLS certificates are provisioned via
+ Let's Encrypt DNS-01 challenges, and ExternalDNS automatically creates DNS records
+ when you deploy apps.
+
+
+ Create an API token in your Cloudflare dashboard with Zone:DNS:Edit and{' '}
+ Zone:Zone:Read permissions, scoped to your domain's zone.
+
+ >
+ ),
+ icon: ,
+ color: 'bg-gradient-to-r from-orange-50 to-amber-50 dark:from-orange-950/20 dark:to-amber-950/20',
+ actions: (
+
+
+
+ Create a Cloudflare API token
+
+
+ ),
+ });
+
+ return (
+
+ {/* Page Header */}
+
+
+
Cloudflare
+
Manage your Cloudflare integration for DNS and TLS
+
+ {verification?.tokenValid && (
+
+
+ Connected
+
+ )}
+
+
+ {/* Alerts */}
+ {successMessage && (
+
+
+ {successMessage}
+
+ )}
+ {errorMessage && (
+
+
+ {errorMessage}
+
+ )}
+
+ {/* API Token Card */}
+
+
+
+ {!editingToken && (
+
setEditingToken(true)} className="gap-1">
+
+ {cfTokenIsSet ? 'Update' : 'Set'}
+
+ )}
+
+ {!editingToken && (
+ cfTokenIsSet
+ ? Configured
+ : Not set — required for DNS and TLS features
+ )}
+ {editingToken && (
+
+
setTokenValue(e.target.value)}
+ />
+
+ updateSecretsMutation.mutate({ cloudflare: { apiToken: tokenValue } })}
+ disabled={updateSecretsMutation.isPending || !tokenValue}
+ >
+ {updateSecretsMutation.isPending ? : null}
+ Save
+
+ { setEditingToken(false); setTokenValue(''); }}>
+ Cancel
+
+
+
+ )}
+
+
+ {/* Central Domain & TLS Card */}
+
+
+
+
+ {certStatus?.cert?.exists && (
+
+
+ TLS
+
+ )}
+ {!editingDomain && (
+ {
+ setDomainInput(globalConfig?.cloud?.central?.domain || '');
+ setEditingDomain(true);
+ }} disabled={isUpdating}>
+
+
+ )}
+
+
+
+ {editingDomain ? (
+
+
+
Domain
+
setDomainInput(e.target.value)}
+ placeholder="central.example.com"
+ className="mt-1 font-mono"
+ />
+
+ Must resolve to this server (via internal DNS or VPN).
+
+
+
+ setEditingDomain(false)} disabled={isUpdating}>
+ Cancel
+
+ {
+ if (!globalConfig) return;
+ try {
+ await updateGlobalConfig({
+ ...globalConfig,
+ cloud: {
+ ...globalConfig.cloud,
+ central: { domain: domainInput },
+ },
+ });
+ setEditingDomain(false);
+ showSuccess('Central domain saved');
+ } catch (err) {
+ showError(`Failed to save domain: ${err instanceof Error ? err.message : String(err)}`);
+ }
+ }} disabled={isUpdating}>
+ {isUpdating ? : }
+ Save
+
+
+
+ ) : (
+
+
+
+ {globalConfig?.cloud?.central?.domain && (
+
+ {certLoading ? (
+
+ ) : certStatus?.cert?.exists ? (
+
+
+
+ Valid TLS certificate
+
+
+ Expires in {certStatus.cert.daysLeft} days
+ {certStatus.cert.issuerCN && <> · {certStatus.cert.issuerCN}>}
+
+
+ ) : (
+
+
+
+ No TLS certificate
+
+
{
+ try { await provisionCert(); } catch { /* error shown below */ }
+ }}
+ disabled={isProvisioning}
+ className="gap-1"
+ >
+ {isProvisioning ? : }
+ {isProvisioning ? 'Provisioning...' : 'Provision TLS Certificate'}
+
+ {provisionError && (
+
+
+ {(provisionError as Error).message}
+
+ )}
+
+ )}
+
+ )}
+
+ )}
+
+
+ {/* Verification Checklist Card */}
+
+
+
+
reverify()}
+ disabled={isVerifying}
+ className="gap-1"
+ >
+ {isVerifying ? : }
+ Verify
+
+
+
+ {isVerifying && !verification ? (
+
+
+ Verifying token...
+
+ ) : (
+
+ {/* Token configured */}
+
+ {verification?.tokenConfigured
+ ?
+ : }
+ Token configured
+
+
+ {/* Token valid */}
+ {verification?.tokenConfigured && (
+
+ {verification?.tokenValid
+ ?
+ : }
+ Token valid{verification?.tokenStatus ? ` (${verification.tokenStatus})` : ''}
+
+ )}
+
+ {/* Accessible zones */}
+ {verification?.tokenValid && verification.zones && verification.zones.length > 0 && (
+
+
+
+ Accessible zones:
+
+ {verification.zones.map((zone) => (
+
+ {zone.name}
+
+ ))}
+
+
+
+ )}
+
+ {/* Error */}
+ {verification?.error && (
+
+
+
{verification.error}
+
+ )}
+
+ )}
+
+
+ {/* Feature Status Card */}
+
+
+
+
+
Features Using This Token
+
+
+
+
+ {/* DDNS */}
+
+
+
+ Dynamic DNS
+
+ {ddnsStatus?.enabled
+ ?
Active
+ :
Disabled }
+
+
+ {/* TLS Certificates */}
+
+
+
+ TLS Certificate
+
+ {certStatus?.cert?.exists
+ ?
+ Valid ({certStatus.cert.daysLeft}d left)
+
+ : certStatus?.configured
+ ?
Not provisioned
+ :
Not configured }
+
+
+ {/* ExternalDNS note */}
+
+
+
+ ExternalDNS
+
+
Per-instance
+
+
+
+
+
+ );
+}
diff --git a/web/src/components/CopyButton.tsx b/web/src/components/CopyButton.tsx
new file mode 100644
index 0000000..bb22d48
--- /dev/null
+++ b/web/src/components/CopyButton.tsx
@@ -0,0 +1,49 @@
+import { useState } from 'react';
+import { Copy, Check } from 'lucide-react';
+import { Button } from './ui/button';
+
+interface CopyButtonProps {
+ content: string;
+ label?: string;
+ variant?: 'default' | 'outline' | 'secondary' | 'ghost';
+ disabled?: boolean;
+}
+
+export function CopyButton({
+ content,
+ label = 'Copy',
+ variant = 'outline',
+ disabled = false,
+}: CopyButtonProps) {
+ const [copied, setCopied] = useState(false);
+
+ const handleCopy = async () => {
+ try {
+ await navigator.clipboard.writeText(content);
+ setCopied(true);
+ setTimeout(() => setCopied(false), 2000);
+ } catch (error) {
+ console.error('Failed to copy:', error);
+ }
+ };
+
+ return (
+
+ {copied ? (
+ <>
+
+ Copied
+ >
+ ) : (
+ <>
+
+ {label}
+ >
+ )}
+
+ );
+}
diff --git a/web/src/components/CrowdSecComponent.tsx b/web/src/components/CrowdSecComponent.tsx
new file mode 100644
index 0000000..9175d25
--- /dev/null
+++ b/web/src/components/CrowdSecComponent.tsx
@@ -0,0 +1,760 @@
+import { useState } from 'react';
+import { useForm } from 'react-hook-form';
+import { BarChart, Bar, XAxis, YAxis, Tooltip, ResponsiveContainer, CartesianGrid } from 'recharts';
+import { Card, CardHeader, CardTitle, CardContent } from './ui/card';
+import { Button } from './ui/button';
+import { Input } from './ui/input';
+import { Label } from './ui/label';
+import { Alert, AlertDescription } from './ui/alert';
+import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from './ui/select';
+import {
+ ShieldAlert, Loader2, AlertCircle, CheckCircle, Ban, X, Trash2,
+ BookOpen, Shield, Activity, Zap, RefreshCw, Globe,
+} from 'lucide-react';
+import { Badge } from './ui/badge';
+// Instance provisioning removed — Central-only mode
+import { useCrowdSec } from '../hooks/useCrowdSec';
+import type { AddDecisionRequest, CrowdSecAlert } from '../services/api/networking';
+
+type Timescale = '1h' | '6h' | '24h' | '7d';
+
+const TIMESCALES: { key: Timescale; label: string; ms: number; bucketMs: number }[] = [
+ { key: '1h', label: '1h', ms: 60 * 60 * 1000, bucketMs: 5 * 60 * 1000 },
+ { key: '6h', label: '6h', ms: 6 * 60 * 60 * 1000, bucketMs: 30 * 60 * 1000 },
+ { key: '24h', label: '24h', ms: 24 * 60 * 60 * 1000, bucketMs: 2 * 60 * 60 * 1000 },
+ { key: '7d', label: '7d', ms: 7 * 24 * 60 * 60 * 1000, bucketMs: 24 * 60 * 60 * 1000 },
+];
+
+const tz = Intl.DateTimeFormat().resolvedOptions().timeZone;
+
+function formatBucketLabel(ts: number, scale: Timescale): string {
+ const d = new Date(ts);
+ if (scale === '7d') return d.toLocaleDateString(undefined, { timeZone: tz, weekday: 'short', month: 'short', day: 'numeric' });
+ return d.toLocaleTimeString(undefined, { timeZone: tz, hour: '2-digit', minute: '2-digit', hour12: false });
+}
+
+function binAlerts(alerts: CrowdSecAlert[], scale: Timescale) {
+ const cfg = TIMESCALES.find(t => t.key === scale)!;
+ const now = Date.now();
+ // Align start to a clean bucket boundary so labels fall on round times
+ const rawStart = now - cfg.ms;
+ const alignedStart = Math.floor(rawStart / cfg.bucketMs) * cfg.bucketMs;
+ const numBuckets = Math.ceil((now - alignedStart) / cfg.bucketMs);
+ const buckets = Array.from({ length: numBuckets }, (_, i) => ({
+ label: formatBucketLabel(alignedStart + i * cfg.bucketMs, scale),
+ detections: 0,
+ }));
+ for (const a of alerts) {
+ const t = new Date(a.createdAt).getTime();
+ if (t < alignedStart) continue;
+ const idx = Math.floor((t - alignedStart) / cfg.bucketMs);
+ if (idx >= 0 && idx < numBuckets) buckets[idx].detections++;
+ }
+ return buckets;
+}
+
+function formatRelativeTime(isoString?: string): string {
+ if (!isoString) return 'unknown';
+ const diff = Date.now() - new Date(isoString).getTime();
+ const minutes = Math.floor(diff / 60000);
+ if (minutes < 1) return 'just now';
+ if (minutes < 60) return `${minutes}m ago`;
+ const hours = Math.floor(minutes / 60);
+ if (hours < 24) return `${hours}h ago`;
+ return `${Math.floor(hours / 24)}d ago`;
+}
+
+function scenarioHubUrl(scenario: string): string | null {
+ if (!scenario) return null;
+ const parts = scenario.split('/');
+ // Only link hub scenarios in author/name format (e.g. crowdsecurity/http-probing-classb)
+ // CAPI category labels (http:scan, ssh:bruteforce) have no individual hub pages
+ if (parts.length === 2 && parts[0] !== 'custom') {
+ return `https://app.crowdsec.net/hub/author/${parts[0]}/configurations/name/${parts[1]}`;
+ }
+ return null;
+}
+
+const KNOWN_ABBREV = new Set(['ssh', 'http', 'https', 'tcp', 'udp', 'ftp', 'ip', 'dns', 'tls', 'dos', 'ddos', 'bf']);
+
+function titleCaseScenario(s: string): string {
+ return s.replace(/[:\-_]/g, ' ').split(' ').filter(Boolean).map(w =>
+ KNOWN_ABBREV.has(w.toLowerCase()) ? w.toUpperCase() : w.charAt(0).toUpperCase() + w.slice(1).toLowerCase()
+ ).join(' ');
+}
+
+function friendlyReason(reason: string): string {
+ if (!reason) return 'Community blocklist';
+ const map: Record = {
+ 'crowdsecurity/http-scan-classb': 'HTTP Scanner',
+ 'crowdsecurity/ssh-slow-bruteforce': 'SSH Brute Force (slow)',
+ 'crowdsecurity/ssh-bf': 'SSH Brute Force',
+ 'crowdsecurity/ssh-bruteforce': 'SSH Brute Force',
+ 'crowdsecurity/http-dos': 'HTTP DoS',
+ 'crowdsecurity/http-bruteforce': 'HTTP Brute Force',
+ 'crowdsecurity/http-exploit': 'HTTP Exploit',
+ 'crowdsecurity/http-crawl': 'HTTP Crawler',
+ 'crowdsecurity/http-bad-user-agent': 'Bad User Agent',
+ 'crowdsecurity/iptables-scan-multi_ports': 'Port Scanner',
+ };
+ if (map[reason]) return map[reason];
+ const short = reason.includes('/') ? reason.split('/').slice(1).join(' ') : reason;
+ return titleCaseScenario(short);
+}
+
+function parseDuration(dur?: string): string {
+ if (!dur) return '';
+ // Go duration: "164h1m31s" → "6d 20h"
+ const h = dur.match(/(\d+)h/);
+ const m = dur.match(/(\d+)m/);
+ const hours = h ? parseInt(h[1]) : 0;
+ const mins = m ? parseInt(m[1]) : 0;
+ if (hours >= 24) {
+ const days = Math.floor(hours / 24);
+ const rem = hours % 24;
+ return rem > 0 ? `${days}d ${rem}h` : `${days}d`;
+ }
+ if (hours > 0) return mins > 0 ? `${hours}h ${mins}m` : `${hours}h`;
+ return `${mins}m`;
+}
+
+interface BlockFormValues {
+ ip: string;
+ type: 'ban' | 'allow';
+ duration: string;
+ reason: string;
+}
+
+export function CrowdSecComponent() {
+ const instances: string[] = [];
+ const {
+ status,
+ isLoadingStatus,
+ summary,
+ isLoadingSummary,
+ alerts,
+ isLoadingAlerts,
+ refetchAlerts,
+ graphAlerts,
+ isLoadingGraphAlerts,
+ decisions,
+ addDecision,
+ isAddingDecision,
+ addDecisionError,
+ deleteDecision,
+ deleteBouncer,
+ deleteMachine,
+ provision,
+ isProvisioning,
+ } = useCrowdSec();
+
+ const [provisionResults, setProvisionResults] = useState>({});
+ const [provisioningInstance, setProvisioningInstance] = useState(null);
+ const [blockSuccess, setBlockSuccess] = useState(null);
+ const [timescale, setTimescale] = useState('24h');
+
+ const { register, handleSubmit, reset, setValue, watch, formState: { errors } } = useForm({
+ defaultValues: { ip: '', type: 'ban', duration: '24h', reason: 'manual' },
+ });
+ const selectedType = watch('type');
+
+ function handleProvision(instanceName: string) {
+ setProvisioningInstance(instanceName);
+ provision(instanceName, {
+ onSuccess: (data) => {
+ setProvisionResults((prev) => ({ ...prev, [instanceName]: { ok: true, message: data.message } }));
+ setProvisioningInstance(null);
+ },
+ onError: (err) => {
+ setProvisionResults((prev) => ({ ...prev, [instanceName]: { ok: false, message: (err as Error).message } }));
+ setProvisioningInstance(null);
+ },
+ });
+ }
+
+ function onBlockSubmit(values: BlockFormValues) {
+ setBlockSuccess(null);
+ const req: AddDecisionRequest = { ip: values.ip, type: values.type, reason: values.reason, duration: values.duration };
+ addDecision(req, {
+ onSuccess: (data) => {
+ setBlockSuccess(data.message);
+ reset();
+ },
+ });
+ }
+
+ const sortedReasons = summary
+ ? Object.entries(summary.byReason).sort(([, a], [, b]) => b - a)
+ : [];
+
+ return (
+
+
+
+
+
+
+
CrowdSec
+
Collaborative intrusion detection — protecting your infrastructure with community threat intelligence
+
+
+
+ {/* Educational card */}
+
+
+
+
+
+
+ CrowdSec analyzes logs from your k8s clusters, detects attacks, and shares threat
+ intelligence with the community. Wild Central runs the LAPI — the hub that agents
+ report to and that bouncers query for the live blocklist. Your cluster contributes to and benefits
+ from a shared blocklist of millions of known malicious IPs.
+
+
+
+
+
+
+ {/* LAPI Status */}
+
+
+
+
+
+ LAPI Status
+
+ {isLoadingStatus ? (
+
+ ) : (
+
+ {status?.active && }
+ {status?.active ? 'Running' : 'Stopped'}
+
+ )}
+
+
+
+ {!status?.active && !isLoadingStatus && (
+
+ CrowdSec is not running on Wild Central. Install it with{' '}
+ apt install crowdsec crowdsec-firewall-bouncer
+ {' '}or reinstall wild-cloud-central.
+
+ )}
+ {status?.active && (
+ <>
+
+
+
+ Perimeter firewall enforcement
+ (nftables on Wild Central)
+
+
+ {status.firewallBouncer && }
+ {status.firewallBouncer ? 'Active' : 'Stopped'}
+
+
+ {!status.firewallBouncer && (
+
+ Install the firewall bouncer to block threats at the perimeter:{' '}
+ apt install crowdsec-firewall-bouncer
+
+ )}
+
+ {status.machines.length > 0 && `${status.machines.length} k8s agent${status.machines.length !== 1 ? 's' : ''} reporting. `}
+ {status.bouncers.length > 0 && `${status.bouncers.length} enforcement point${status.bouncers.length !== 1 ? 's' : ''} active.`}
+
+ >
+ )}
+
+
+
+ {status?.active && (
+ <>
+ {/* Active Protection Summary */}
+
+
+
+
+
+
+ IPs currently blocked by the community blocklist (CAPI) and local decisions, enforced by your bouncers.
+
+ {isLoadingSummary ? (
+
+ Loading ban statistics…
+
+ ) : summary ? (
+
+
+
+
+ {summary.total.toLocaleString()}
+
+
IPs blocked right now
+
+ {sortedReasons.length > 0 && (
+
+
By threat type
+ {sortedReasons.slice(0, 8).map(([reason, count]) => {
+ const pct = Math.round((count / summary.total) * 100);
+ return (
+
+
+
{count.toLocaleString()}
+
{pct}%
+
+ );
+ })}
+ {sortedReasons.length > 8 && (
+
+{sortedReasons.length - 8} more categories
+ )}
+
+ )}
+
+ ) : null}
+
+
+
+ {/* Detections Over Time */}
+
+
+
+
+
+
Detections Over Time
+
+
+ {TIMESCALES.map(t => (
+ setTimescale(t.key)}
+ >
+ {t.label}
+
+ ))}
+
+
+
+
+ {isLoadingGraphAlerts ? (
+
+ Loading…
+
+ ) : (
+
+
+
+
+
+ [v, 'detections']}
+ />
+
+
+
+ )}
+
+
+
+ {/* Recent Alert Feed */}
+
+
+
+
+
refetchAlerts()} className="h-7 gap-1.5 text-xs">
+ Refresh
+
+
+
+
+
+ Attack events detected by your k8s agents and reported to this LAPI. Each event results in a ban
+ that is shared with the CrowdSec community.
+
+ {isLoadingAlerts ? (
+
+ Loading…
+
+ ) : alerts.length === 0 ? (
+
+
+
No detections yet.
+
+ Events appear here when k8s agents detect and report attacks. The community blocklist
+ (CAPI) is already protecting you even before local detections.
+
+
+ ) : (
+
+
+ Source IP
+ Threat
+ Agent
+ When
+
+ {alerts.map((alert) => (
+
+
+ {alert.sourceIP || '—'}
+ {alert.country && (
+
+ {alert.country}
+
+ )}
+
+ {scenarioHubUrl(alert.scenario) ? (
+
+ {friendlyReason(alert.scenario)}
+
+ ) : (
+
{friendlyReason(alert.scenario)}
+ )}
+
{alert.machineId?.replace(/^wc-/, '') ?? '—'}
+
{formatRelativeTime(alert.createdAt)}
+
+ ))}
+
+ )}
+
+
+
+ {/* Manual Decisions: Block / Allow */}
+
+
+
+
+ Block or Allow an IP
+
+
+
+
+ Manually ban an IP (e.g. an attacker you've identified) or add a local allowlist entry
+ to prevent a legitimate IP from being blocked by the community list.
+
+
+
+
+ {/* Local decisions list */}
+ {decisions.length > 0 && (
+
+
Active local decisions
+
+ {decisions.map((d) => (
+
+
+ {d.type === 'allow'
+ ?
+ :
+ }
+ {d.value}
+ {d.type}
+ {friendlyReason(d.reason)}
+
+
+ {d.duration && (
+ {parseDuration(d.duration)}
+ )}
+ deleteDecision(d.id)}
+ >
+
+
+
+
+ ))}
+
+
+ )}
+
+
+
+ {/* Registered Agents */}
+
+
+
+
+ Registered Agents
+
+
+
+
+ Agents are CrowdSec engines running inside your k8s clusters. They analyze
+ logs, detect threats, and report to this LAPI. Each provisioned Wild Cloud instance registers
+ one agent here.
+
+ {status.machines.length === 0 ? (
+ No agents registered. Provision an instance below.
+ ) : (
+
+ {status.machines.map((m) => (
+
+
+
+ {m.machineId}
+
+ {m.isValidated ? 'validated' : 'pending'}
+
+
+
+ {m.last_heartbeat && heartbeat {formatRelativeTime(m.last_heartbeat)} }
+ {m.version && {m.version} }
+ {m.ipAddress && {m.ipAddress} }
+
+
+
deleteMachine(m.machineId)}
+ >
+
+
+
+ ))}
+
+ )}
+
+
+
+ {/* Registered Bouncers */}
+
+
+
+
+ Registered Bouncers
+
+
+
+
+ Bouncers enforce the blocklist. Wild Central's nftables bouncer blocks at
+ the network perimeter. Each k8s cluster also runs a Traefik bouncer as a second layer.
+
+ {status.bouncers.length === 0 ? (
+ No bouncers registered. Provision an instance to add them.
+ ) : (
+
+ {status.bouncers.map((b) => {
+ const isFirewallBouncer = b.type === 'crowdsec-firewall-bouncer';
+ return (
+
+
+
+ {b.name}
+
+ {b.revoked ? 'revoked' : 'active'}
+
+ {isFirewallBouncer && (
+
+ perimeter
+
+ )}
+
+
+ {isFirewallBouncer ? 'Crowdsec Firewall Bouncer' : b.type?.replace(/-/g, ' ') || ''}
+
+
+ {!isFirewallBouncer && (
+
deleteBouncer(b.name)}
+ >
+
+
+ )}
+
+ );
+ })}
+
+ )}
+
+
+
+ {/* Provision Instances */}
+
+
+
+
+ Provision Instances
+
+
+
+
+ Provisioning connects a Wild Cloud instance's CrowdSec agent to this LAPI —
+ generating credentials, registering agent and bouncer, and writing the LAPI URL into the
+ instance's app config. After provisioning, redeploy the CrowdSec app on the instance.
+ Safe to re-run.
+
+
+ {instances.length === 0 ? (
+
No instances found.
+ ) : (
+ instances.map((instanceName) => {
+ const agentName = `wc-${instanceName}`;
+ const bouncerName = `wc-bouncer-${instanceName}`;
+ const agent = status.machines.find((m) => m.machineId === agentName);
+ const bouncer = status.bouncers.find((b) => b.name === bouncerName);
+ const isActive = provisioningInstance === instanceName;
+ const result = provisionResults[instanceName];
+
+ return (
+
+
+ {instanceName}
+ handleProvision(instanceName)}
+ disabled={isProvisioning || isActive}
+ className="gap-2 h-7"
+ >
+ {isActive
+ ? <> Provisioning…>
+ : agent
+ ? <> Re-provision>
+ : <> Provision>
+ }
+
+
+
+
+ Agent:
+ {agent ? (
+
+ {agent.isValidated ? 'validated' : 'pending'}
+ {agent.last_heartbeat && ` · ${formatRelativeTime(agent.last_heartbeat)}`}
+
+ ) : (
+ not provisioned
+ )}
+
+
+ Bouncer:
+ {bouncer ? (
+
+ {bouncer.revoked ? 'revoked' : 'active'}
+
+ ) : (
+ not provisioned
+ )}
+
+
+ {result && (
+
+ {result.ok ? : }
+ {result.message}
+
+ )}
+
+ );
+ })
+ )}
+
+
+
+ >
+ )}
+
+ );
+}
diff --git a/web/src/components/DdnsComponent.tsx b/web/src/components/DdnsComponent.tsx
new file mode 100644
index 0000000..52e75e3
--- /dev/null
+++ b/web/src/components/DdnsComponent.tsx
@@ -0,0 +1,280 @@
+import { useState } from 'react';
+import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
+import { Card, CardHeader, CardTitle, CardContent } from './ui/card';
+import { Button } from './ui/button';
+import { Input, Label } from './ui';
+import { Textarea } from './ui/textarea';
+import { Alert, AlertDescription } from './ui/alert';
+import { Globe, Loader2, AlertCircle, CheckCircle, XCircle, RefreshCw, Edit2 } from 'lucide-react';
+import { Badge } from './ui/badge';
+import { useConfig } from '../hooks';
+import { useDdns } from '../hooks/useDdns';
+import { secretsApi } from '../services/api';
+import type { DdnsRecordStatus } from '../services/api/networking';
+
+export function DdnsComponent() {
+ const { config: globalConfig, updateConfig, isUpdating } = useConfig();
+ const { status: ddnsStatus, isLoadingStatus: isDdnsLoading, trigger: triggerDdns, isTriggering: isDdnsTriggering } = useDdns();
+
+ const queryClient = useQueryClient();
+ const { data: globalSecrets } = useQuery({
+ queryKey: ['globalSecrets'],
+ queryFn: () => secretsApi.get(),
+ });
+ const updateSecretsMutation = useMutation({
+ mutationFn: (values: Record) => secretsApi.update(values),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['globalSecrets'] });
+ setEditingToken(false);
+ setTokenValue('');
+ },
+ });
+ const cfTokenIsSet = !!(globalSecrets as Record | undefined)
+ && !!(globalSecrets as { ddns?: { cloudflare?: { apiToken?: string } } })?.ddns?.cloudflare?.apiToken;
+
+ const [editingDdnsConfig, setEditingDdnsConfig] = useState(false);
+ const [ddnsConfigForm, setDdnsConfigForm] = useState({ enabled: false, records: '', intervalMinutes: 5 });
+ const [editingToken, setEditingToken] = useState(false);
+ const [tokenValue, setTokenValue] = useState('');
+
+ const handleDdnsConfigEdit = () => {
+ setDdnsConfigForm({
+ enabled: globalConfig?.cloud?.ddns?.enabled ?? false,
+ records: (globalConfig?.cloud?.ddns?.records ?? []).join('\n'),
+ intervalMinutes: globalConfig?.cloud?.ddns?.intervalMinutes ?? 5,
+ });
+ setEditingDdnsConfig(true);
+ };
+
+ const handleDdnsConfigSave = async () => {
+ if (!globalConfig) return;
+ const records = ddnsConfigForm.records.split('\n').map(r => r.trim()).filter(Boolean);
+ await updateConfig({
+ ...globalConfig,
+ cloud: {
+ ...globalConfig.cloud,
+ ddns: {
+ enabled: ddnsConfigForm.enabled,
+ provider: 'cloudflare',
+ records,
+ intervalMinutes: ddnsConfigForm.intervalMinutes,
+ },
+ },
+ });
+ setEditingDdnsConfig(false);
+ };
+
+ return (
+
+
+
+
+
+
+
Dynamic DNS
+
Keeps your Cloudflare A records pointed at your current public IP
+
+
+
+
+
+
+ Status
+ {isDdnsLoading ? (
+
+ ) : ddnsStatus?.enabled ? (
+
+
+ Active
+
+ ) : (
+ Disabled
+ )}
+
+
+
+ {ddnsStatus?.enabled && (
+
+
+
+
Public IP
+
{ddnsStatus.currentIP || '—'}
+
+
+
Last checked
+
+ {ddnsStatus.lastChecked ? new Date(ddnsStatus.lastChecked).toLocaleTimeString() : '—'}
+
+
+
+ {ddnsStatus.lastError && (
+
+
+ {ddnsStatus.lastError}
+
+ )}
+
triggerDdns()}
+ disabled={isDdnsTriggering}
+ className="gap-2"
+ >
+ {isDdnsTriggering ? : }
+ Check Now
+
+
+ )}
+
+
+
+
+
+
+ Configuration
+ {!editingDdnsConfig && (
+
+
+ Edit
+
+ )}
+
+
+
+ {editingDdnsConfig ? (
+
+
+ setDdnsConfigForm(prev => ({ ...prev, enabled: e.target.checked }))}
+ />
+ Enabled
+
+
+ A Records (one per line)
+
+
+ Check interval (minutes)
+ setDdnsConfigForm(prev => ({ ...prev, intervalMinutes: parseInt(e.target.value) || 5 }))}
+ className="h-9 mt-1 w-24"
+ min={1}
+ />
+
+
+
+ {isUpdating ? : null}
+ Save
+
+ setEditingDdnsConfig(false)}>
+ Cancel
+
+
+
+ ) : (
+
+
+ Status:
+ {globalConfig?.cloud?.ddns?.enabled ? 'Enabled' : 'Disabled'}
+
+ {globalConfig?.cloud?.ddns?.records?.length ? (
+
+
Records:
+
+ {globalConfig.cloud.ddns.records.map(r => {
+ const rs: DdnsRecordStatus | undefined = ddnsStatus?.records?.find(s => s.name === r);
+ return (
+
+ {rs?.ok ? (
+
+ ) : rs && !rs.ok ? (
+
+ ) : null}
+ {r}
+ {rs?.ok && rs.ip && (
+ {rs.ip}
+ )}
+ {rs && !rs.ok && rs.error && (
+ {rs.error}
+ )}
+
+ );
+ })}
+
+
+ ) : (
+
No A records configured
+ )}
+ {(globalConfig?.cloud?.ddns?.intervalMinutes ?? 0) > 0 && (
+
+ Checks every {globalConfig!.cloud!.ddns!.intervalMinutes} min
+
+ )}
+
+ )}
+
+
+
+
+
+
+ Cloudflare API Token
+ {!editingToken && (
+ setEditingToken(true)} className="gap-1">
+
+ {cfTokenIsSet ? 'Update' : 'Set'}
+
+ )}
+
+
+
+ {cfTokenIsSet ? (
+ Configured
+ ) : (
+ Not set — required for DDNS to work
+ )}
+ {editingToken && (
+
+
setTokenValue(e.target.value)}
+ />
+
+ updateSecretsMutation.mutate({ ddns: { cloudflare: { apiToken: tokenValue } } })}
+ disabled={updateSecretsMutation.isPending || !tokenValue}
+ >
+ {updateSecretsMutation.isPending ? : null}
+ Save
+
+ { setEditingToken(false); setTokenValue(''); }}
+ >
+ Cancel
+
+
+ {updateSecretsMutation.isError && (
+
{String(updateSecretsMutation.error)}
+ )}
+
+ )}
+
+
+
+ );
+}
diff --git a/web/src/components/DhcpComponent.tsx b/web/src/components/DhcpComponent.tsx
new file mode 100644
index 0000000..3bc81cd
--- /dev/null
+++ b/web/src/components/DhcpComponent.tsx
@@ -0,0 +1,350 @@
+import { useState } from 'react';
+import { Card, CardHeader, CardTitle, CardContent } from './ui/card';
+import { Button } from './ui/button';
+import { Input, Label } from './ui';
+import { Alert, AlertDescription } from './ui/alert';
+import { Wifi, Loader2, Edit2, Check, X, Trash2, Plus, RotateCw, CheckCircle, AlertCircle } from 'lucide-react';
+import { Badge } from './ui/badge';
+import { useConfig } from '../hooks';
+import { useDhcp } from '../hooks/useDhcp';
+import { useDnsmasq } from '../hooks/useDnsmasq';
+import type { DhcpStaticLease } from '../services/api/networking';
+
+export function DhcpComponent() {
+ const { config: globalConfig, updateConfig, isUpdating } = useConfig();
+ const { leases, isLoadingLeases, refetchLeases, addStatic, isAddingStatic, deleteStatic } = useDhcp();
+ const { generateConfig: generateDnsConfig } = useDnsmasq();
+
+ const [editingDhcpConfig, setEditingDhcpConfig] = useState(false);
+ const [dhcpConfigForm, setDhcpConfigForm] = useState({ enabled: false, rangeStart: '', rangeEnd: '', leaseTime: '24h', gateway: '' });
+ const [showAddLease, setShowAddLease] = useState(false);
+ const [newLease, setNewLease] = useState({ mac: '', ip: '', hostname: '' });
+ const [successMessage, setSuccessMessage] = useState(null);
+ const [errorMessage, setErrorMessage] = useState(null);
+
+ const showSuccess = (msg: string) => {
+ setSuccessMessage(msg);
+ setErrorMessage(null);
+ setTimeout(() => setSuccessMessage(null), 5000);
+ };
+
+ const showError = (msg: string) => {
+ setErrorMessage(msg);
+ setSuccessMessage(null);
+ setTimeout(() => setErrorMessage(null), 8000);
+ };
+
+ const handleDhcpConfigEdit = () => {
+ setDhcpConfigForm({
+ enabled: globalConfig?.cloud?.dnsmasq?.dhcp?.enabled ?? false,
+ rangeStart: globalConfig?.cloud?.dnsmasq?.dhcp?.rangeStart ?? '',
+ rangeEnd: globalConfig?.cloud?.dnsmasq?.dhcp?.rangeEnd ?? '',
+ leaseTime: globalConfig?.cloud?.dnsmasq?.dhcp?.leaseTime ?? '24h',
+ gateway: globalConfig?.cloud?.dnsmasq?.dhcp?.gateway ?? '',
+ });
+ setEditingDhcpConfig(true);
+ };
+
+ const handleDhcpConfigSave = async () => {
+ if (!globalConfig) return;
+ try {
+ await updateConfig({
+ ...globalConfig,
+ cloud: {
+ ...globalConfig.cloud,
+ dnsmasq: {
+ ...globalConfig.cloud?.dnsmasq,
+ dhcp: {
+ enabled: dhcpConfigForm.enabled,
+ rangeStart: dhcpConfigForm.rangeStart,
+ rangeEnd: dhcpConfigForm.rangeEnd,
+ leaseTime: dhcpConfigForm.leaseTime,
+ gateway: dhcpConfigForm.gateway || undefined,
+ },
+ },
+ },
+ });
+ setEditingDhcpConfig(false);
+ if (dhcpConfigForm.enabled) {
+ generateDnsConfig(true);
+ }
+ showSuccess(dhcpConfigForm.enabled ? 'DHCP configuration saved and applied' : 'DHCP disabled');
+ } catch (e) {
+ showError(`Failed to save DHCP config: ${e instanceof Error ? e.message : String(e)}`);
+ }
+ };
+
+ return (
+
+
+
+
+
+
+
DHCP
+
Assigns IP addresses to devices on your local network
+
+
+
+ {successMessage && (
+
+
+ {successMessage}
+
+ )}
+ {errorMessage && (
+
+
+ {errorMessage}
+
+ )}
+
+
+
+
+
Configuration
+
+
+ {globalConfig?.cloud?.dnsmasq?.dhcp?.enabled && }
+ {globalConfig?.cloud?.dnsmasq?.dhcp?.enabled ? 'Enabled' : 'Disabled'}
+
+ {!editingDhcpConfig && (
+
+
+ Configure
+
+ )}
+
+
+
+
+ {editingDhcpConfig ? (
+
+
+ setDhcpConfigForm(prev => ({ ...prev, enabled: e.target.checked }))}
+ />
+ Enable DHCP server
+
+ {dhcpConfigForm.enabled && (
+ <>
+
+
+ >
+ )}
+
+
+ {isUpdating ? : null}
+ Save
+
+ setEditingDhcpConfig(false)}>
+ Cancel
+
+
+
+ ) : (
+
+ {globalConfig?.cloud?.dnsmasq?.dhcp?.enabled ? (
+ <>
+
+
+ Range:
+
+ {globalConfig.cloud.dnsmasq.dhcp.rangeStart} – {globalConfig.cloud.dnsmasq.dhcp.rangeEnd}
+
+
+
+ Lease:
+ {globalConfig.cloud.dnsmasq.dhcp.leaseTime || '24h'}
+
+
+ {globalConfig.cloud.dnsmasq.dhcp.gateway && (
+
+ Gateway:
+ {globalConfig.cloud.dnsmasq.dhcp.gateway}
+
+ )}
+ >
+ ) : (
+
DHCP is disabled. Enable it to assign IPs to LAN devices.
+ )}
+
+ )}
+
+
+
+
+
+
+
Leases
+
+
refetchLeases()} className="gap-1">
+
+ Refresh
+
+
setShowAddLease(!showAddLease)} className="gap-1">
+
+ Static
+
+
+
+
+
+ {showAddLease && (
+
+
+
+ setShowAddLease(false)}>
+ Cancel
+
+ {
+ addStatic(newLease, {
+ onSuccess: () => {
+ showSuccess(`Static lease added for ${newLease.ip}`);
+ setShowAddLease(false);
+ setNewLease({ mac: '', ip: '', hostname: '' });
+ },
+ onError: (e: Error) => {
+ showError(`Failed to add lease: ${e.message}`);
+ },
+ });
+ }}
+ >
+ {isAddingStatic ? : }
+ Add
+
+
+
+ )}
+ {isLoadingLeases ? (
+
+
+
+ ) : leases.length === 0 ? (
+
+ No active leases. DHCP must be enabled in config.
+
+ ) : (
+
+
+
+
+ MAC
+ IP
+ Hostname
+ Expires
+
+
+
+
+ {leases.map((lease) => (
+
+ {lease.mac}
+ {lease.ip}
+ {lease.hostname || '—'}
+
+ {lease.expiry ? new Date(lease.expiry).toLocaleString() : '—'}
+
+
+ deleteStatic(lease.mac, {
+ onSuccess: () => showSuccess(`Lease for ${lease.mac} deleted`),
+ onError: (e: Error) => showError(`Failed to delete lease: ${e.message}`),
+ })}
+ >
+
+
+
+
+ ))}
+
+
+
+ )}
+
+
+
+ );
+}
diff --git a/web/src/components/DnsComponent.tsx b/web/src/components/DnsComponent.tsx
new file mode 100644
index 0000000..ec82dc5
--- /dev/null
+++ b/web/src/components/DnsComponent.tsx
@@ -0,0 +1,484 @@
+import { useState } from 'react';
+import { NavLink } from 'react-router';
+import { Card, CardHeader, CardTitle, CardContent } from './ui/card';
+import { Button } from './ui/button';
+import { Input, Label } from './ui';
+import { Textarea } from './ui/textarea';
+import { Alert, AlertDescription } from './ui/alert';
+import {
+ Router, Globe, Loader2, AlertCircle, CheckCircle, XCircle,
+ Play, RotateCw, Copy, ChevronDown, ChevronUp, Edit2,
+ RefreshCw, ExternalLink, TestTube2,
+} from 'lucide-react';
+import { Badge } from './ui/badge';
+import { useConfig } from '../hooks';
+import { useCloudflare } from '../hooks/useCloudflare';
+import { useDnsmasq } from '../hooks/useDnsmasq';
+import { useDdns } from '../hooks/useDdns';
+import { apiService } from '../services/api-legacy';
+import type { DdnsRecordStatus } from '../services/api/networking';
+
+export function DnsComponent() {
+ const { config: globalConfig, updateConfig, isUpdating } = useConfig();
+
+ // ── LAN DNS (dnsmasq) ──
+ const {
+ status: dnsStatus,
+ isLoadingStatus: isDnsStatusLoading,
+ config: dnsConfig,
+ fetchConfig: fetchDnsConfig,
+ generateConfig: generateDnsConfig,
+ isGenerating: isDnsGenerating,
+ generateData: dnsGenerateData,
+ restart: restartDns,
+ isRestarting: isDnsRestarting,
+ restartData: dnsRestartData,
+ generateError: dnsGenerateError,
+ restartError: dnsRestartError,
+ } = useDnsmasq();
+
+ const [showDnsAdvanced, setShowDnsAdvanced] = useState(false);
+ const [editedDnsConfig, setEditedDnsConfig] = useState('');
+ const [originalDnsConfig, setOriginalDnsConfig] = useState('');
+ const [copiedDnsIp, setCopiedDnsIp] = useState(false);
+
+ const isDnsRunning = dnsStatus?.status === 'active';
+ const dnsIp = dnsStatus?.ip;
+
+ const handleCopyDnsIp = () => {
+ if (dnsIp) {
+ navigator.clipboard.writeText(dnsIp);
+ setCopiedDnsIp(true);
+ setTimeout(() => setCopiedDnsIp(false), 2000);
+ }
+ };
+
+ const handleShowDnsAdvanced = async () => {
+ if (!showDnsAdvanced) {
+ const result = await fetchDnsConfig();
+ const content = result.data?.content || dnsConfig?.content || '';
+ setEditedDnsConfig(content);
+ setOriginalDnsConfig(content);
+ }
+ setShowDnsAdvanced(!showDnsAdvanced);
+ };
+
+ const handleSaveDnsConfig = async () => {
+ try {
+ await apiService.writeDnsmasqConfig(editedDnsConfig);
+ fetchDnsConfig();
+ } catch (error) {
+ console.error('Failed to save config:', error);
+ }
+ };
+
+ const handleSaveAndRestartDns = async () => {
+ try {
+ await apiService.writeDnsmasqConfig(editedDnsConfig);
+ await apiService.restartDnsmasq();
+ fetchDnsConfig();
+ } catch (error) {
+ console.error('Failed to save config and restart:', error);
+ }
+ };
+
+ // ── Dynamic DNS ──
+ const { status: ddnsStatus, isLoadingStatus: isDdnsLoading, trigger: triggerDdns, isTriggering: isDdnsTriggering } = useDdns();
+ const { verification: cfVerification } = useCloudflare();
+
+ const [editingDdnsConfig, setEditingDdnsConfig] = useState(false);
+ const [ddnsConfigForm, setDdnsConfigForm] = useState({ enabled: false, records: '', intervalMinutes: 5 });
+
+ const handleDdnsConfigEdit = () => {
+ setDdnsConfigForm({
+ enabled: globalConfig?.cloud?.ddns?.enabled ?? false,
+ records: (globalConfig?.cloud?.ddns?.records ?? []).join('\n'),
+ intervalMinutes: globalConfig?.cloud?.ddns?.intervalMinutes ?? 5,
+ });
+ setEditingDdnsConfig(true);
+ };
+
+ const handleDdnsConfigSave = async () => {
+ if (!globalConfig) return;
+ const records = ddnsConfigForm.records.split('\n').map(r => r.trim()).filter(Boolean);
+ await updateConfig({
+ ...globalConfig,
+ cloud: {
+ ...globalConfig.cloud,
+ ddns: {
+ enabled: ddnsConfigForm.enabled,
+ provider: 'cloudflare',
+ records,
+ intervalMinutes: ddnsConfigForm.intervalMinutes,
+ },
+ },
+ });
+ setEditingDdnsConfig(false);
+ };
+
+ // ── DNS Lookup ──
+ const [lookupDomain, setLookupDomain] = useState('');
+ const [lookupTesting, setLookupTesting] = useState<'external' | 'internal' | null>(null);
+ const [lookupResult, setLookupResult] = useState<{ type: string; success: boolean; message: string } | null>(null);
+
+ const handleLookup = async (type: 'external' | 'internal') => {
+ const domain = lookupDomain.trim();
+ if (!domain) return;
+ setLookupTesting(type);
+ setLookupResult(null);
+ try {
+ if (type === 'external') {
+ const response = await fetch(`https://cloudflare-dns.com/dns-query?name=${domain}&type=A`, {
+ headers: { accept: 'application/dns-json' },
+ });
+ const data = await response.json();
+ if (data.Status === 0 && data.Answer?.length > 0) {
+ const aRecord = data.Answer.find((a: { type: number; data: string }) => a.type === 1);
+ const ip = aRecord ? aRecord.data : data.Answer[data.Answer.length - 1].data;
+ setLookupResult({ type: 'External', success: true, message: `Resolves to ${ip}` });
+ } else {
+ setLookupResult({ type: 'External', success: false, message: 'No public DNS record found' });
+ }
+ } else {
+ const response = await fetch(`/api/v1/network/resolve?domain=${domain}`);
+ const data = await response.json();
+ if (data.success && data.ip) {
+ setLookupResult({ type: 'LAN', success: true, message: `Resolves to ${data.ip}` });
+ } else {
+ setLookupResult({ type: 'LAN', success: false, message: data.error || 'Not resolved on LAN' });
+ }
+ }
+ } catch {
+ setLookupResult({ type: type === 'external' ? 'External' : 'LAN', success: false, message: 'Lookup failed' });
+ } finally {
+ setLookupTesting(null);
+ }
+ };
+
+ return (
+
+
+
+
+
+
+
DNS
+
LAN name resolution and public DNS record management
+
+
+
+ {/* ── LAN DNS ── */}
+
+
+
+
+
+ LAN DNS
+
+
+ {isDnsStatusLoading ? (
+
+ ) : isDnsRunning ? (
+
+ ) : null}
+ {isDnsStatusLoading ? 'Checking...' : isDnsRunning ? 'Running' : 'Stopped'}
+
+
+
+
+
+
+
Set as primary DNS in your router
+
{dnsIp || 'Auto-detecting...'}
+
+
+
+ {copiedDnsIp ? 'Copied!' : 'Copy'}
+
+
+
+ {globalConfig?.cloud?.router?.ip && (
+
+
+ Router: {globalConfig.cloud.router.ip}
+
+ window.open(`http://${globalConfig?.cloud?.router?.ip}`, '_blank')}
+ className="gap-1 text-xs"
+ >
+
+ Open Admin
+
+
+ )}
+
+
+ {!isDnsRunning ? (
+
generateDnsConfig(true)} disabled={isDnsGenerating} className="gap-2">
+ {isDnsGenerating ? : }
+ Start DNS
+
+ ) : (
+
restartDns()} disabled={isDnsRestarting} variant="outline" className="gap-2">
+ {isDnsRestarting ? : }
+ Restart
+
+ )}
+
+ {showDnsAdvanced ? : }
+ Advanced
+
+
+
+ {(dnsGenerateData || dnsRestartData) && (
+
+
+ {dnsGenerateData?.message || dnsRestartData?.message}
+
+ )}
+ {(dnsGenerateError || dnsRestartError) && (
+
+
+ {(dnsGenerateError || dnsRestartError)?.toString()}
+
+ )}
+
+ {showDnsAdvanced && (
+
+ )}
+
+
+
+ {/* ── Dynamic DNS ── */}
+
+
+
+
+
+ Dynamic DNS
+
+ {isDdnsLoading ? (
+
+ ) : ddnsStatus?.enabled ? (
+
+
+ Active
+
+ ) : (
+
Disabled
+ )}
+
+
+
+ {ddnsStatus?.enabled && (
+
+
+
+
Public IP
+
{ddnsStatus.currentIP || '—'}
+
+
+
Last checked
+
+ {ddnsStatus.lastChecked ? new Date(ddnsStatus.lastChecked).toLocaleTimeString() : '—'}
+
+
+
+ {ddnsStatus.lastError && (
+
+
+ {ddnsStatus.lastError}
+
+ )}
+
triggerDdns()}
+ disabled={isDdnsTriggering}
+ className="gap-2"
+ >
+ {isDdnsTriggering ? : }
+ Check Now
+
+
+ )}
+
+
+
+ A Records
+ {!editingDdnsConfig && (
+
+
+ Edit
+
+ )}
+
+ {editingDdnsConfig ? (
+
+
+ setDdnsConfigForm(prev => ({ ...prev, enabled: e.target.checked }))}
+ />
+ Enabled
+
+
+ Domains (one per line)
+
+
+ Check interval (minutes)
+ setDdnsConfigForm(prev => ({ ...prev, intervalMinutes: parseInt(e.target.value) || 5 }))}
+ className="h-9 mt-1 w-24"
+ min={1}
+ />
+
+
+
+ {isUpdating ? : null}
+ Save
+
+ setEditingDdnsConfig(false)}>Cancel
+
+
+ ) : (
+
+ {(globalConfig?.cloud?.ddns?.records ?? []).length > 0 ? (
+ <>
+ {(globalConfig?.cloud?.ddns?.records ?? []).map(r => {
+ const rs: DdnsRecordStatus | undefined = ddnsStatus?.records?.find(s => s.name === r);
+ return (
+
+ {rs?.ok ? (
+
+ ) : rs && !rs.ok ? (
+
+ ) : (
+
+ )}
+
{r}
+ {rs?.ok && rs.ip &&
{rs.ip} }
+ {rs && !rs.ok && rs.error && (
+
{rs.error}
+ )}
+
+ );
+ })}
+ {(globalConfig?.cloud?.ddns?.intervalMinutes ?? 0) > 0 && (
+
+ Checks every {globalConfig!.cloud!.ddns!.intervalMinutes} min
+
+ )}
+ >
+ ) : (
+
No records configured
+ )}
+
+ )}
+
+
+ {cfVerification && !cfVerification.tokenConfigured && (
+
+
+
+ Cloudflare API token not configured. DDNS requires a valid token.{' '}
+ Configure token
+
+
+ )}
+
+
+
+ {/* ── DNS Lookup ── */}
+
+
+
+
+ DNS Lookup
+
+
+
+
+ { setLookupDomain(e.target.value); setLookupResult(null); }}
+ onKeyDown={e => e.key === 'Enter' && handleLookup('external')}
+ className="font-mono text-sm"
+ />
+ handleLookup('external')}
+ disabled={!lookupDomain.trim() || !!lookupTesting}
+ className="gap-1 shrink-0"
+ >
+ {lookupTesting === 'external' ? : }
+ External
+
+ handleLookup('internal')}
+ disabled={!lookupDomain.trim() || !!lookupTesting}
+ className="gap-1 shrink-0"
+ >
+ {lookupTesting === 'internal' ? : }
+ LAN
+
+
+ {lookupResult && (
+
+ {lookupResult.success
+ ?
+ :
+ }
+
+ {lookupResult.type}:
+ {lookupResult.message}
+
+
+ )}
+
+
+
+
+ );
+}
diff --git a/web/src/components/DnsmasqSection.tsx b/web/src/components/DnsmasqSection.tsx
new file mode 100644
index 0000000..037993d
--- /dev/null
+++ b/web/src/components/DnsmasqSection.tsx
@@ -0,0 +1,86 @@
+import { Settings, RotateCcw, AlertCircle } from 'lucide-react';
+import { useDnsmasq, useMessages } from '../hooks';
+import { Message } from './Message';
+import { Card, CardHeader, CardTitle, CardContent, Button } from './ui';
+
+export const DnsmasqSection = () => {
+ const {
+ config: dnsmasqConfig,
+ generateConfig,
+ isGenerating,
+ generateError,
+ restart,
+ isRestarting,
+ restartError,
+ restartData
+ } = useDnsmasq();
+ const { messages, setMessage } = useMessages();
+
+ // Handle success/error messaging
+ if (generateError) {
+ setMessage('dnsmasq', `Failed to generate dnsmasq config: ${generateError.message}`, 'error');
+ } else if (dnsmasqConfig) {
+ setMessage('dnsmasq', 'Dnsmasq config generated successfully', 'success');
+ }
+
+ if (restartError) {
+ setMessage('dnsmasq', `Failed to restart dnsmasq: ${restartError.message}`, 'error');
+ } else if (restartData) {
+ setMessage('dnsmasq', `Dnsmasq restart: ${restartData.status}`, 'success');
+ }
+ return (
+
+
+ DNS/DHCP Management
+
+
+
+ generateConfig(false)} disabled={isGenerating} variant="outline">
+
+ {isGenerating ? 'Generating...' : 'Generate Dnsmasq Config'}
+
+ restart()} disabled={isRestarting} variant="outline">
+
+ {isRestarting ? 'Restarting...' : 'Restart Dnsmasq'}
+
+
+
+ {generateError && (
+
+
+
+
Generation Error
+
{generateError.message}
+
+
+ )}
+
+ {restartError && (
+
+
+
+
Restart Error
+
{restartError.message}
+
+
+ )}
+
+ {restartData && (
+
+
+ ✓ Dnsmasq restart: {restartData.status}
+
+
+ )}
+
+
+
+ {dnsmasqConfig && (
+
+ {dnsmasqConfig.content || JSON.stringify(dnsmasqConfig, null, 2)}
+
+ )}
+
+
+ );
+};
\ No newline at end of file
diff --git a/web/src/components/DownloadButton.tsx b/web/src/components/DownloadButton.tsx
new file mode 100644
index 0000000..1f3798c
--- /dev/null
+++ b/web/src/components/DownloadButton.tsx
@@ -0,0 +1,41 @@
+import { Download } from 'lucide-react';
+import { Button } from './ui/button';
+
+interface DownloadButtonProps {
+ content: string;
+ filename: string;
+ label?: string;
+ variant?: 'default' | 'outline' | 'secondary' | 'ghost';
+ disabled?: boolean;
+}
+
+export function DownloadButton({
+ content,
+ filename,
+ label = 'Download',
+ variant = 'default',
+ disabled = false,
+}: DownloadButtonProps) {
+ const handleDownload = () => {
+ const blob = new Blob([content], { type: 'text/plain' });
+ const url = URL.createObjectURL(blob);
+ const link = document.createElement('a');
+ link.href = url;
+ link.download = filename;
+ document.body.appendChild(link);
+ link.click();
+ document.body.removeChild(link);
+ URL.revokeObjectURL(url);
+ };
+
+ return (
+
+
+ {label}
+
+ );
+}
diff --git a/web/src/components/ErrorBoundary.tsx b/web/src/components/ErrorBoundary.tsx
new file mode 100644
index 0000000..8b821ce
--- /dev/null
+++ b/web/src/components/ErrorBoundary.tsx
@@ -0,0 +1,167 @@
+import React, { Component as ReactComponent } from 'react';
+import type { ErrorInfo, ReactNode } from 'react';
+import { AlertTriangle, RefreshCw, Home } from 'lucide-react';
+import { Button } from './ui/button';
+import { Card, CardHeader, CardTitle, CardContent } from './ui/card';
+
+interface Props {
+ children?: ReactNode;
+ fallback?: ReactNode;
+ onError?: (error: Error, errorInfo: ErrorInfo) => void;
+}
+
+interface State {
+ hasError: boolean;
+ error?: Error;
+ errorInfo?: ErrorInfo;
+}
+
+export class ErrorBoundary extends ReactComponent {
+ public state: State = {
+ hasError: false,
+ };
+
+ public static getDerivedStateFromError(error: Error): State {
+ // Update state so the next render will show the fallback UI
+ return { hasError: true, error };
+ }
+
+ public componentDidCatch(error: Error, errorInfo: ErrorInfo) {
+ console.error('ErrorBoundary caught an error:', error, errorInfo);
+
+ this.setState({
+ error,
+ errorInfo,
+ });
+
+ // Call optional error handler
+ if (this.props.onError) {
+ this.props.onError(error, errorInfo);
+ }
+ }
+
+ private handleReset = () => {
+ this.setState({ hasError: false, error: undefined, errorInfo: undefined });
+ };
+
+ private handleReload = () => {
+ window.location.reload();
+ };
+
+ public render() {
+ if (this.state.hasError) {
+ // If a custom fallback is provided, use it
+ if (this.props.fallback) {
+ return this.props.fallback;
+ }
+
+ // Default error UI
+ return ;
+ }
+
+ return this.props.children;
+ }
+}
+
+interface ErrorFallbackProps {
+ error?: Error;
+ errorInfo?: ErrorInfo;
+ onReset: () => void;
+ onReload: () => void;
+}
+
+export const ErrorFallback: React.FC = ({
+ error,
+ errorInfo,
+ onReset,
+ onReload
+}) => {
+ const isDev = process.env.NODE_ENV === 'development';
+
+ return (
+
+
+
+
+
+
+
+ Something went wrong
+
+
+ The application encountered an unexpected error
+
+
+
+
+
+
+
+ Don't worry, your data is safe. You can try the following options:
+
+
+
+
+ Try Again
+
+
+
+ Reload Page
+
+
+
+
+ {isDev && error && (
+
+
+ Error Details (Development Mode)
+
+
+
+
+
Error Message:
+
+ {error.message}
+
+
+
+ {error.stack && (
+
+
Stack Trace:
+
+ {error.stack}
+
+
+ )}
+
+ {errorInfo?.componentStack && (
+
+
Component Stack:
+
+ {errorInfo.componentStack}
+
+
+ )}
+
+
+ )}
+
+ {!isDev && (
+
+
+ If this problem persists, please contact support with details about what you were doing when the error occurred.
+
+
+ )}
+
+
+
+ );
+};
\ No newline at end of file
diff --git a/web/src/components/FirewallComponent.tsx b/web/src/components/FirewallComponent.tsx
new file mode 100644
index 0000000..f6ed36f
--- /dev/null
+++ b/web/src/components/FirewallComponent.tsx
@@ -0,0 +1,530 @@
+import { useState } from 'react';
+import { Card, CardHeader, CardTitle, CardContent } from './ui/card';
+import { Button } from './ui/button';
+import { Input } from './ui/input';
+import { Label } from './ui/label';
+import { Alert, AlertDescription } from './ui/alert';
+import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from './ui/select';
+import { Shield, Loader2, AlertCircle, CheckCircle, Check, X, Plus, Trash2, BookOpen, ChevronDown, ChevronUp, Lock } from 'lucide-react';
+import { Badge } from './ui/badge';
+import { useConfig } from '../hooks';
+import { useNftables } from '../hooks/useNftables';
+import { useVpn } from '../hooks/useVpn';
+
+type ExtraPort = { port: number; protocol?: string; label?: string };
+
+const WELL_KNOWN_PORTS: Record = {
+ 22: 'SSH',
+ 53: 'DNS',
+ 67: 'DHCP Server',
+ 68: 'DHCP Client',
+ 80: 'HTTP',
+ 443: 'HTTPS',
+ 3389: 'RDP',
+ 5353: 'mDNS',
+ 5900: 'VNC',
+ 8404: 'HAProxy Stats',
+};
+
+// Ports that are always included automatically
+const AUTO_TCP_PORTS = [80, 443, 8404];
+const AUTO_UDP_PORTS = [53, 67, 68];
+
+interface PortEntry {
+ port: number;
+ protocol: string;
+ label: string;
+ source: 'auto' | 'haproxy-custom' | 'user';
+}
+
+export function FirewallComponent() {
+ const { config: globalConfig, updateConfig } = useConfig();
+ const { status: nftablesStatus, isLoadingStatus: isNftablesLoading, interfaces, refetchStatus } = useNftables();
+ const { config: vpnConfig } = useVpn();
+
+ const nftCfg = globalConfig?.cloud?.nftables;
+ const isEnabled = nftCfg?.enabled !== false;
+ const currentWan = nftCfg?.wanInterface ?? '';
+ const currentExtraPorts: ExtraPort[] = nftCfg?.extraPorts ?? [];
+ const customRoutes = globalConfig?.cloud?.haproxy?.customRoutes ?? [];
+
+ const [editingWan, setEditingWan] = useState(false);
+ const [wanValue, setWanValue] = useState('');
+ const [savingWan, setSavingWan] = useState(false);
+ const [togglingFirewall, setTogglingFirewall] = useState(false);
+ const [showAdvanced, setShowAdvanced] = useState(false);
+
+ const [successMessage, setSuccessMessage] = useState(null);
+ const [errorMessage, setErrorMessage] = useState(null);
+
+ const [newPort, setNewPort] = useState('');
+ const [newProtocol, setNewProtocol] = useState('tcp');
+ const [newLabel, setNewLabel] = useState('');
+ const [portError, setPortError] = useState('');
+ const [savingPorts, setSavingPorts] = useState(false);
+
+ const showSuccess = (msg: string) => {
+ setSuccessMessage(msg);
+ setErrorMessage(null);
+ setTimeout(() => setSuccessMessage(null), 5000);
+ };
+
+ const showError = (msg: string) => {
+ setErrorMessage(msg);
+ setSuccessMessage(null);
+ setTimeout(() => setErrorMessage(null), 8000);
+ };
+
+ // Build unified port list from all sources
+ function buildPortList(): PortEntry[] {
+ const entries: PortEntry[] = [];
+ const seen = new Set();
+
+ const addEntry = (port: number, protocol: string, label: string, source: PortEntry['source']) => {
+ const key = `${port}/${protocol}`;
+ if (!seen.has(key)) {
+ seen.add(key);
+ entries.push({ port, protocol, label, source });
+ }
+ };
+
+ // Auto TCP ports (HAProxy base)
+ for (const port of AUTO_TCP_PORTS) {
+ addEntry(port, 'tcp', WELL_KNOWN_PORTS[port] || '', 'auto');
+ }
+
+ // HAProxy custom route ports
+ for (const route of customRoutes) {
+ addEntry(route.port, 'tcp', `HAProxy: ${route.name}`, 'haproxy-custom');
+ }
+
+ // Auto UDP ports (DNS/DHCP)
+ for (const port of AUTO_UDP_PORTS) {
+ addEntry(port, 'udp', WELL_KNOWN_PORTS[port] || '', 'auto');
+ }
+
+ // VPN listen port (when enabled)
+ if (vpnConfig?.enabled && vpnConfig.listenPort) {
+ addEntry(vpnConfig.listenPort, 'udp', 'WireGuard VPN', 'auto');
+ }
+
+ // User extra ports
+ for (const ep of currentExtraPorts) {
+ const proto = ep.protocol || 'tcp';
+ addEntry(ep.port, proto, ep.label || WELL_KNOWN_PORTS[ep.port] || '', 'user');
+ }
+
+ return entries;
+ }
+
+ const allPorts = buildPortList();
+ const tcpPorts = allPorts.filter(p => p.protocol === 'tcp');
+ const udpPorts = allPorts.filter(p => p.protocol === 'udp');
+
+ async function saveNftConfig(patch: NonNullable['cloud']>['nftables']) {
+ if (!globalConfig) return;
+ await updateConfig({
+ ...globalConfig,
+ cloud: {
+ ...globalConfig.cloud,
+ nftables: { ...nftCfg, ...patch },
+ },
+ });
+ refetchStatus();
+ }
+
+ async function toggleFirewall() {
+ setTogglingFirewall(true);
+ try {
+ await saveNftConfig({ enabled: !isEnabled });
+ showSuccess(`Firewall ${isEnabled ? 'disabled' : 'enabled'}`);
+ } catch (e) {
+ showError(`Failed to toggle firewall: ${e instanceof Error ? e.message : String(e)}`);
+ }
+ setTogglingFirewall(false);
+ }
+
+ async function saveWan(value: string) {
+ setSavingWan(true);
+ try {
+ await saveNftConfig({ wanInterface: value || undefined });
+ showSuccess(value ? `WAN interface set to ${value}` : 'Strict mode disabled');
+ } catch (e) {
+ showError(`Failed to save WAN interface: ${e instanceof Error ? e.message : String(e)}`);
+ }
+ setSavingWan(false);
+ setEditingWan(false);
+ }
+
+ async function addPort() {
+ const port = parseInt(newPort, 10);
+ if (isNaN(port) || port < 1 || port > 65535) {
+ setPortError('Enter a valid port (1–65535)');
+ return;
+ }
+ if (currentExtraPorts.some((p) => p.port === port && (p.protocol || 'tcp') === newProtocol)) {
+ setPortError('Port/protocol already in list');
+ return;
+ }
+ setPortError('');
+ setSavingPorts(true);
+ try {
+ const entry: ExtraPort = { port, protocol: newProtocol };
+ if (newLabel.trim()) entry.label = newLabel.trim();
+ await saveNftConfig({ extraPorts: [...currentExtraPorts, entry] });
+ showSuccess(`Port ${port}/${newProtocol} added`);
+ setNewPort('');
+ setNewLabel('');
+ } catch (e) {
+ showError(`Failed to add port: ${e instanceof Error ? e.message : String(e)}`);
+ }
+ setSavingPorts(false);
+ }
+
+ async function removePort(port: number, protocol: string) {
+ try {
+ await saveNftConfig({
+ extraPorts: currentExtraPorts.filter(
+ (ep) => !(ep.port === port && (ep.protocol || 'tcp') === protocol)
+ ),
+ });
+ showSuccess(`Port ${port}/${protocol} removed`);
+ } catch (e) {
+ showError(`Failed to remove port: ${e instanceof Error ? e.message : String(e)}`);
+ }
+ }
+
+ function renderPortRow(entry: PortEntry) {
+ const isAuto = entry.source !== 'user';
+ return (
+
+ {entry.port}
+ {entry.protocol}
+
+ {entry.label}
+
+ {isAuto ? (
+
+ ) : (
+ removePort(entry.port, entry.protocol)}
+ className="text-muted-foreground hover:text-red-500 shrink-0"
+ title="Remove port"
+ >
+
+
+ )}
+
+ );
+ }
+
+ return (
+
+ {/* Header with enable/disable toggle */}
+
+
+
+
+
+
+
Firewall
+
nftables rules protecting Wild Central itself
+
+
+
+
+ {isEnabled && }
+ {isEnabled ? 'Enabled' : 'Disabled'}
+
+
+ {togglingFirewall ? : null}
+ {isEnabled ? 'Disable' : 'Enable'}
+
+
+
+
+ {/* Educational card */}
+
+
+
+
+
+
+ Wild Central uses nftables to protect itself. Rules are generated
+ automatically from your HAProxy ingress configuration — the ports HAProxy listens
+ on are always allowed. The firewall is permissive by default; set a{' '}
+ WAN interface to enable strict filtering that drops anything not
+ explicitly listed. Make sure to add extra ports for any services
+ you need to reach directly (like SSH) before enabling strict mode.
+
+
+
+
+
+
+ {successMessage && (
+
+
+ {successMessage}
+
+ )}
+ {errorMessage && (
+
+
+ {errorMessage}
+
+ )}
+
+ {/* Allowed Ports */}
+
+
+ Allowed Ports
+
+
+
+ All ports the firewall allows through. Ports managed by HAProxy and system services are
+ locked — add your own with the form below.
+
+
+ {/* TCP ports */}
+
+
TCP
+
+ {tcpPorts.map(renderPortRow)}
+
+
+
+ {/* UDP ports */}
+
+
UDP
+
+ {udpPorts.map(renderPortRow)}
+
+
+
+ {/* Add port form */}
+
+
Add Port
+
+
+ Port
+ { setNewPort(e.target.value); setPortError(''); }}
+ onKeyDown={(e) => e.key === 'Enter' && addPort()}
+ placeholder="e.g. 22"
+ className="font-mono h-8 text-sm w-24 mt-1"
+ />
+
+
+ Protocol
+
+
+
+
+
+ TCP
+ UDP
+
+
+
+
+ Label (optional)
+ setNewLabel(e.target.value)}
+ onKeyDown={(e) => e.key === 'Enter' && addPort()}
+ placeholder="e.g. SSH"
+ className="h-8 text-sm w-32 mt-1"
+ />
+
+
+ {savingPorts ? : }
+ Add
+
+ {!currentExtraPorts.some((p) => p.port === 22) && (
+
{ setNewPort('22'); setNewProtocol('tcp'); setNewLabel('SSH'); }}
+ >
+
+ Add SSH (22)
+
+ )}
+
+ {portError &&
{portError}
}
+
+
+
+
+ {/* WAN Interface */}
+
+
+ WAN Interface
+
+
+
+ Your WAN interface is the network port that faces the internet — the
+ one your router sends traffic to. When set, the firewall drops all inbound connections
+ on that interface except for the ports listed above. Leave unset to keep the firewall
+ permissive (safe default while you're getting started).
+
+
+ {!editingWan ? (
+
+ {currentWan ? (
+ {currentWan}
+ ) : (
+
+ Not set — permissive mode (all inbound allowed)
+
+ )}
+ { setWanValue(currentWan); setEditingWan(true); }}
+ >
+ {currentWan ? 'Change' : 'Enable strict mode'}
+
+ {currentWan && (
+ saveWan('')}
+ >
+
+ Disable
+
+ )}
+
+ ) : (
+
+ {currentWan === '' && !currentExtraPorts.some((p) => p.port === 22) && (
+
+
+
+ SSH (port 22) is not in your extra ports list. Enabling strict mode will
+ block SSH access to Wild Central.
+
+
+ )}
+
+
Select interface
+ {interfaces.length > 0 ? (
+
+
+
+
+
+ {interfaces.map((iface) => (
+
+ {iface.name}
+ {iface.addresses.length > 0 && (
+
+ {iface.addresses[0].split('/')[0]}
+
+ )}
+
+ ))}
+
+
+ ) : (
+
setWanValue(e.target.value)}
+ placeholder="e.g. eth0"
+ className="font-mono h-8 text-sm w-32"
+ />
+ )}
+
+ Pick the interface that faces your router/internet. Typically the one with your
+ external IP address.
+
+
+
+ saveWan(wanValue)}
+ disabled={savingWan || !wanValue}
+ >
+ {savingWan ? : }
+ Save
+
+ setEditingWan(false)}
+ >
+ Cancel
+
+
+
+ )}
+
+
+
+ {/* Advanced: raw rules */}
+
+
+
+
Active Ruleset
+
+ {isNftablesLoading ? (
+
+ ) : (
+
+ {nftablesStatus?.rules && }
+ {nftablesStatus?.rules ? 'Active' : 'Not loaded'}
+
+ )}
+ setShowAdvanced(!showAdvanced)}
+ >
+ {showAdvanced ? : }
+ Advanced
+
+
+
+
+ {showAdvanced && (
+
+ {nftablesStatus?.rules ? (
+
+ {nftablesStatus.rules}
+
+ ) : (
+
+ No rules loaded yet. Rules are generated when you apply an HAProxy configuration.
+
+ )}
+
+ )}
+
+
+ );
+}
diff --git a/web/src/components/HelpPanel.tsx b/web/src/components/HelpPanel.tsx
new file mode 100644
index 0000000..27f463b
--- /dev/null
+++ b/web/src/components/HelpPanel.tsx
@@ -0,0 +1,41 @@
+import { useHelp } from '../contexts/HelpContext';
+import { Sheet, SheetContent, SheetHeader, SheetTitle, SheetDescription } from './ui/sheet';
+import { Card } from './ui/card';
+
+export function HelpPanel() {
+ const { helpContent, isHelpOpen, setIsHelpOpen } = useHelp();
+
+ if (!helpContent) return null;
+
+ return (
+
+
+
+
+ {helpContent.icon && (
+
+ {helpContent.icon}
+
+ )}
+ {helpContent.title}
+
+
+ Help information for {helpContent.title}
+
+
+
+
+
+ {helpContent.description}
+
+
+ {helpContent.actions && (
+
+ {helpContent.actions}
+
+ )}
+
+
+
+ );
+}
diff --git a/web/src/components/IngressProxyComponent.tsx b/web/src/components/IngressProxyComponent.tsx
new file mode 100644
index 0000000..b299674
--- /dev/null
+++ b/web/src/components/IngressProxyComponent.tsx
@@ -0,0 +1,342 @@
+import { useState } from 'react';
+import { Card, CardHeader, CardTitle, CardContent } from './ui/card';
+import { Button } from './ui/button';
+import { Input, Label } from './ui';
+import { Alert, AlertDescription } from './ui/alert';
+import { Textarea } from './ui/textarea';
+import { Network, Loader2, AlertCircle, CheckCircle, Play, RotateCw, Plus, Trash2, X, Check, Activity, ChevronDown, ChevronUp } from 'lucide-react';
+import { Badge } from './ui/badge';
+import { useConfig } from '../hooks';
+import { useHaproxy } from '../hooks/useHaproxy';
+import type { HAProxyCustomRoute } from '../types';
+import type { HaproxyInstanceRoute } from '../services/api/networking';
+import { haproxyApi } from '../services/api/networking';
+
+export function IngressProxyComponent() {
+ const { config: globalConfig, updateConfig, isUpdating } = useConfig();
+ const {
+ status: haproxyStatus,
+ isLoadingStatus: isHaproxyLoading,
+ stats: haproxyStats,
+ isLoadingStats: isHaproxyStatsLoading,
+ generate: generateHaproxy,
+ isGenerating: isHaproxyGenerating,
+ generateData: haproxyGenerateData,
+ generateError: haproxyGenerateError,
+ restart: restartHaproxy,
+ isRestarting: isHaproxyRestarting,
+ } = useHaproxy();
+
+ const [showAddCustomRoute, setShowAddCustomRoute] = useState(false);
+ const [newCustomRoute, setNewCustomRoute] = useState({ name: '', port: 0, backend: '' });
+ const [successMessage, setSuccessMessage] = useState(null);
+ const [errorMessage, setErrorMessage] = useState(null);
+ const [showAdvanced, setShowAdvanced] = useState(false);
+ const [advancedConfig, setAdvancedConfig] = useState('');
+ const [loadingAdvanced, setLoadingAdvanced] = useState(false);
+
+ const showSuccess = (msg: string) => {
+ setSuccessMessage(msg);
+ setErrorMessage(null);
+ setTimeout(() => setSuccessMessage(null), 5000);
+ };
+
+ const showError = (msg: string) => {
+ setErrorMessage(msg);
+ setSuccessMessage(null);
+ setTimeout(() => setErrorMessage(null), 8000);
+ };
+
+ const handleShowAdvanced = async () => {
+ if (!showAdvanced) {
+ setLoadingAdvanced(true);
+ try {
+ const result = await haproxyApi.getConfig();
+ setAdvancedConfig(result.content || '');
+ } catch {
+ setAdvancedConfig('# Could not load HAProxy config');
+ }
+ setLoadingAdvanced(false);
+ }
+ setShowAdvanced(!showAdvanced);
+ };
+
+ const handleAddCustomRoute = async () => {
+ if (!globalConfig || !newCustomRoute.name || !newCustomRoute.port || !newCustomRoute.backend) return;
+ try {
+ const existing = globalConfig.cloud?.haproxy?.customRoutes ?? [];
+ await updateConfig({
+ ...globalConfig,
+ cloud: {
+ ...globalConfig.cloud,
+ haproxy: {
+ ...globalConfig.cloud?.haproxy,
+ customRoutes: [...existing, newCustomRoute],
+ },
+ },
+ });
+ setNewCustomRoute({ name: '', port: 0, backend: '' });
+ setShowAddCustomRoute(false);
+ generateHaproxy();
+ showSuccess(`Custom route "${newCustomRoute.name}" added`);
+ } catch (e) {
+ showError(`Failed to add route: ${e instanceof Error ? e.message : String(e)}`);
+ }
+ };
+
+ const handleDeleteCustomRoute = async (name: string) => {
+ if (!globalConfig) return;
+ try {
+ const updated = (globalConfig.cloud?.haproxy?.customRoutes ?? []).filter(r => r.name !== name);
+ await updateConfig({
+ ...globalConfig,
+ cloud: {
+ ...globalConfig.cloud,
+ haproxy: {
+ ...globalConfig.cloud?.haproxy,
+ customRoutes: updated,
+ },
+ },
+ });
+ generateHaproxy();
+ showSuccess(`Custom route "${name}" removed`);
+ } catch (e) {
+ showError(`Failed to delete route: ${e instanceof Error ? e.message : String(e)}`);
+ }
+ };
+
+ return (
+
+
+
+
+
+
+
Ingress Proxy
+
Routes external traffic to your Wild Cloud instances by domain name (HAProxy)
+
+
+
+ {successMessage && (
+
+
+ {successMessage}
+
+ )}
+ {errorMessage && (
+
+
+ {errorMessage}
+
+ )}
+
+
+
+
+ Instance Routes
+ {isHaproxyLoading ? (
+
+ ) : (
+
+ {haproxyStatus?.status === 'active' && }
+ {haproxyStatus?.status === 'active' ? 'Active' : haproxyStatus?.status ?? 'Stopped'}
+
+ )}
+
+
+
+ {(() => {
+ const routes: HaproxyInstanceRoute[] = haproxyStatus?.routes ?? [];
+ return routes.length > 0 ? (
+
+ {routes.map(r => (
+
+
+
+
+ *.{r.domain}
+
+
{r.backendIP}
+
+ {r.extraDomains && r.extraDomains.length > 0 && (
+
+ {r.extraDomains.map(d => (
+
+ {d}
+
+ ))}
+
+ )}
+
+ ))}
+
+ ) : (
+
+ No instances registered — click Generate & Apply to configure.
+
+ );
+ })()}
+
+ {haproxyGenerateData && (
+
+
+
+ {haproxyGenerateData.message}
+
+
+ )}
+ {haproxyGenerateError && (
+
+
+ {(haproxyGenerateError as Error).message}
+
+ )}
+
+
generateHaproxy()} disabled={isHaproxyGenerating} className="gap-2">
+ {isHaproxyGenerating ? : }
+ Generate & Apply
+
+
restartHaproxy()} disabled={isHaproxyRestarting} className="gap-2">
+ {isHaproxyRestarting ? : }
+ Restart
+
+
+ {loadingAdvanced ? : showAdvanced ? : }
+ Advanced
+
+
+
+ {showAdvanced && (
+
+ Generated config file
+
+
+ )}
+
+
+
+ {(haproxyStats.length > 0 || isHaproxyStatsLoading) && (
+
+
+
+
+
+ {isHaproxyStatsLoading ? (
+
+ Loading…
+
+ ) : (
+
+ {haproxyStats.map(s => (
+
+
+
+ {s.status}
+
+ {s.name.replace(/^be_https?_/, '')}
+
+
+ {s.activeConns} active
+ {s.rate} /s (peak {s.peakRate})
+
+
+ ))}
+
+ )}
+
+
+ )}
+
+
+
+
+
Custom TCP Routes
+
setShowAddCustomRoute(!showAddCustomRoute)} className="gap-1">
+
+ Add
+
+
+
+
+ {showAddCustomRoute && (
+
+
+
+ setShowAddCustomRoute(false)}>
+ Cancel
+
+
+ {isUpdating ? : }
+ Add
+
+
+
+ )}
+ {(globalConfig?.cloud?.haproxy?.customRoutes ?? []).length === 0 ? (
+ No custom routes configured.
+ ) : (
+
+ {(globalConfig?.cloud?.haproxy?.customRoutes ?? []).map(r => (
+
+
+ {r.name}
+ :{r.port} → {r.backend}
+
+
handleDeleteCustomRoute(r.name)}
+ >
+
+
+
+ ))}
+
+ )}
+
+
+
+ );
+}
diff --git a/web/src/components/LanDnsComponent.tsx b/web/src/components/LanDnsComponent.tsx
new file mode 100644
index 0000000..522f6e1
--- /dev/null
+++ b/web/src/components/LanDnsComponent.tsx
@@ -0,0 +1,259 @@
+import { useState } from 'react';
+import { Card, CardHeader, CardTitle, CardContent } from './ui/card';
+import { Button } from './ui/button';
+import { Textarea } from './ui/textarea';
+import { Alert, AlertDescription } from './ui/alert';
+import {
+ Dialog,
+ DialogContent,
+ DialogDescription,
+ DialogFooter,
+ DialogHeader,
+ DialogTitle,
+} from './ui/dialog';
+import { Router, CheckCircle, ExternalLink, Loader2, AlertCircle, Play, RotateCw, Copy, ChevronDown, ChevronUp, Edit } from 'lucide-react';
+import { Badge } from './ui/badge';
+import { useConfig } from '../hooks';
+import { useDnsmasq } from '../hooks/useDnsmasq';
+import { apiService } from '../services/api-legacy';
+
+export function LanDnsComponent() {
+ const { config: globalConfig } = useConfig();
+ const {
+ status: dnsStatus,
+ isLoadingStatus: isDnsStatusLoading,
+ config: dnsConfig,
+ fetchConfig: fetchDnsConfig,
+ generateConfig: generateDnsConfig,
+ isGenerating: isDnsGenerating,
+ generateData: dnsGenerateData,
+ restart: restartDns,
+ isRestarting: isDnsRestarting,
+ restartData: dnsRestartData,
+ generateError: dnsGenerateError,
+ restartError: dnsRestartError,
+ } = useDnsmasq();
+
+ const [showDnsAdvanced, setShowDnsAdvanced] = useState(false);
+ const [showDnsEditDialog, setShowDnsEditDialog] = useState(false);
+ const [editedDnsConfig, setEditedDnsConfig] = useState('');
+ const [copiedDnsIp, setCopiedDnsIp] = useState(false);
+
+ const isDnsRunning = dnsStatus?.status === 'active';
+ const dnsIp = dnsStatus?.ip;
+
+ const handleCopyDnsIp = () => {
+ if (dnsIp) {
+ navigator.clipboard.writeText(dnsIp);
+ setCopiedDnsIp(true);
+ setTimeout(() => setCopiedDnsIp(false), 2000);
+ }
+ };
+
+ const handleShowDnsAdvanced = () => {
+ if (!showDnsAdvanced && !dnsConfig) {
+ fetchDnsConfig();
+ }
+ setShowDnsAdvanced(!showDnsAdvanced);
+ };
+
+ const handleEditDnsConfig = () => {
+ if (dnsConfig?.content) {
+ setEditedDnsConfig(dnsConfig.content);
+ } else if (dnsGenerateData?.config || dnsGenerateData?.content) {
+ setEditedDnsConfig(dnsGenerateData.config || dnsGenerateData.content || '');
+ } else {
+ setEditedDnsConfig('');
+ }
+ setShowDnsEditDialog(true);
+ };
+
+ const handleSaveDnsConfig = async () => {
+ try {
+ await apiService.writeDnsmasqConfig(editedDnsConfig);
+ setShowDnsEditDialog(false);
+ fetchDnsConfig();
+ } catch (error) {
+ console.error('Failed to save config:', error);
+ }
+ };
+
+ const handleSaveAndRestartDns = async () => {
+ try {
+ await apiService.writeDnsmasqConfig(editedDnsConfig);
+ await apiService.restartDnsmasq();
+ setShowDnsEditDialog(false);
+ fetchDnsConfig();
+ } catch (error) {
+ console.error('Failed to save config and restart:', error);
+ }
+ };
+
+ return (
+
+
+
+
+
+
+
LAN DNS
+
Resolves Wild Cloud domains on your local network via dnsmasq
+
+
+
+
+
+
+ DNS Service
+
+ {isDnsStatusLoading ? (
+
+ ) : isDnsRunning ? (
+
+ ) : null}
+ {isDnsStatusLoading ? 'Checking...' : isDnsRunning ? 'Running' : 'Stopped'}
+
+
+
+
+
+
+
+ Set this as the primary DNS server in your router
+
+
+ {dnsIp || 'Auto-detecting...'}
+
+
+
+
+ {copiedDnsIp ? 'Copied!' : 'Copy'}
+
+
+
+ {globalConfig?.cloud?.router?.ip && (
+
+
+ Router: {globalConfig.cloud.router.ip}
+
+ window.open(`http://${globalConfig?.cloud?.router?.ip}`, '_blank')}
+ className="gap-1 text-xs"
+ >
+
+ Open Admin
+
+
+ )}
+
+
+ {!isDnsRunning ? (
+
generateDnsConfig(true)} disabled={isDnsGenerating} className="gap-2">
+ {isDnsGenerating ? : }
+ Start DNS
+
+ ) : (
+
restartDns()} disabled={isDnsRestarting} variant="outline" className="gap-2">
+ {isDnsRestarting ? : }
+ Restart
+
+ )}
+
+ {showDnsAdvanced ? : }
+ Advanced
+
+
+
+ {(dnsGenerateData || dnsRestartData) && (
+
+
+
+ {dnsGenerateData?.message || dnsRestartData?.message}
+
+
+ )}
+ {(dnsGenerateError || dnsRestartError) && (
+
+
+
+ {(dnsGenerateError || dnsRestartError)?.toString()}
+
+
+ )}
+
+
+
+ {showDnsAdvanced && (
+
+
+
+ Advanced DNS Configuration
+
+
+ Edit Config
+
+
+
+
+
+ {isDnsGenerating && !dnsConfig && !dnsGenerateData && (
+
+
+
+ )}
+ {(dnsConfig?.content || dnsGenerateData?.config || dnsGenerateData?.content) && (
+ dnsConfig?.content || dnsGenerateData?.config || dnsGenerateData?.content
+ )}
+ {!isDnsGenerating && !dnsGenerateData && !dnsConfig && (
+
+
Configuration preview will appear here
+
+ )}
+
+
+
+ )}
+
+
+
+
+ Edit DNS Configuration
+
+ Modify the dnsmasq configuration. Changes will take effect after saving and restarting.
+
+
+
+
+
+ setShowDnsEditDialog(false)}>
+ Cancel
+
+
+ Save
+
+
+ Save & Restart
+
+
+
+ Save: Write config without restarting | Save & Restart: Write config and restart service
+
+
+
+
+ );
+}
diff --git a/web/src/components/Message.tsx b/web/src/components/Message.tsx
new file mode 100644
index 0000000..90adf53
--- /dev/null
+++ b/web/src/components/Message.tsx
@@ -0,0 +1,43 @@
+import { AlertCircle, CheckCircle, Info } from 'lucide-react';
+import type { Message as MessageType } from '../types';
+import { cn } from '@/lib/utils';
+
+interface MessageProps {
+ message?: MessageType;
+}
+
+export const Message = ({ message }: MessageProps) => {
+ if (!message) return null;
+
+ const getIcon = () => {
+ switch (message.type) {
+ case 'error':
+ return ;
+ case 'success':
+ return ;
+ default:
+ return ;
+ }
+ };
+
+ const getVariantStyles = () => {
+ switch (message.type) {
+ case 'error':
+ return 'border-destructive/50 text-destructive bg-destructive/10';
+ case 'success':
+ return 'border-green-500/50 text-green-700 bg-green-50 dark:bg-green-950 dark:text-green-400';
+ default:
+ return 'border-blue-500/50 text-blue-700 bg-blue-50 dark:bg-blue-950 dark:text-blue-400';
+ }
+ };
+
+ return (
+
+ {getIcon()}
+ {message.message}
+
+ );
+};
\ No newline at end of file
diff --git a/web/src/components/ThemeToggle.tsx b/web/src/components/ThemeToggle.tsx
new file mode 100644
index 0000000..054d7cc
--- /dev/null
+++ b/web/src/components/ThemeToggle.tsx
@@ -0,0 +1,52 @@
+import { Moon, Sun, Monitor } from 'lucide-react';
+import { Button } from './ui/button';
+import { useTheme } from '../contexts/ThemeContext';
+
+export function ThemeToggle() {
+ const { theme, setTheme } = useTheme();
+
+ const cycleTheme = () => {
+ if (theme === 'light') {
+ setTheme('dark');
+ } else if (theme === 'dark') {
+ setTheme('system');
+ } else {
+ setTheme('light');
+ }
+ };
+
+ const getIcon = () => {
+ switch (theme) {
+ case 'light':
+ return ;
+ case 'dark':
+ return ;
+ default:
+ return ;
+ }
+ };
+
+ const getLabel = () => {
+ switch (theme) {
+ case 'light':
+ return 'Light mode';
+ case 'dark':
+ return 'Dark mode';
+ default:
+ return 'System theme';
+ }
+ };
+
+ return (
+
+ {getIcon()}
+ {getLabel()}
+
+ );
+}
\ No newline at end of file
diff --git a/web/src/components/VpnComponent.tsx b/web/src/components/VpnComponent.tsx
new file mode 100644
index 0000000..c2f4f69
--- /dev/null
+++ b/web/src/components/VpnComponent.tsx
@@ -0,0 +1,583 @@
+import { useState } from 'react';
+import { useForm } from 'react-hook-form';
+import { Shield, Loader2, Edit2, Plus, Trash2, Copy, Check, CheckCircle, RefreshCw, KeyRound, Play, ChevronDown, ChevronUp } from 'lucide-react';
+import { QRCodeSVG } from 'qrcode.react';
+import { Card, CardHeader, CardTitle, CardContent } from './ui/card';
+import { Button } from './ui/button';
+import { Input } from './ui/input';
+import { Label } from './ui/label';
+import { Badge } from './ui/badge';
+import { Alert, AlertDescription } from './ui/alert';
+import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from './ui/dialog';
+import { Sheet, SheetContent, SheetHeader, SheetTitle, SheetFooter } from './ui/sheet';
+import {
+ AlertDialog,
+ AlertDialogAction,
+ AlertDialogCancel,
+ AlertDialogContent,
+ AlertDialogDescription,
+ AlertDialogFooter,
+ AlertDialogHeader,
+ AlertDialogTitle,
+} from './ui/alert-dialog';
+import { useVpn } from '../hooks/useVpn';
+import { vpnApi, type VpnPeer, type VpnPeerConfig } from '../services/api/vpn';
+
+interface ConfigFormValues {
+ enabled: boolean;
+ listenPort: number;
+ address: string;
+ endpoint: string;
+ dns: string;
+ lanCIDR: string;
+}
+
+function CopyButton({ text }: { text: string }) {
+ const [copied, setCopied] = useState(false);
+ const handleCopy = async () => {
+ await navigator.clipboard.writeText(text);
+ setCopied(true);
+ setTimeout(() => setCopied(false), 2000);
+ };
+ return (
+
+ {copied ? : }
+
+ );
+}
+
+export function VpnComponent() {
+ const {
+ status, isLoadingStatus,
+ config, isLoadingConfig,
+ peers, isLoadingPeers,
+ updateConfig, isUpdatingConfig,
+ generateKeypair, isGeneratingKeypair,
+ apply, isApplying, applyError,
+ addPeer, isAddingPeer, addPeerError,
+ deletePeer,
+ } = useVpn();
+
+ const [editingConfig, setEditingConfig] = useState(false);
+ const [confirmKeygen, setConfirmKeygen] = useState(false);
+ const [addPeerOpen, setAddPeerOpen] = useState(false);
+ const [newPeerName, setNewPeerName] = useState('');
+ const [peerConfigModal, setPeerConfigModal] = useState(null);
+ const [loadingPeerConfig, setLoadingPeerConfig] = useState(null);
+ const [deleteConfirmPeer, setDeleteConfirmPeer] = useState(null);
+ const [showAdvanced, setShowAdvanced] = useState(false);
+ const [successMessage, setSuccessMessage] = useState(null);
+ const [errorMessage, setErrorMessage] = useState(null);
+
+ const { register, handleSubmit, reset, formState: { errors } } = useForm();
+
+ const showSuccess = (msg: string) => {
+ setSuccessMessage(msg);
+ setTimeout(() => setSuccessMessage(null), 5000);
+ };
+
+ const showError = (msg: string) => {
+ setErrorMessage(msg);
+ setTimeout(() => setErrorMessage(null), 8000);
+ };
+
+ const handleEditConfig = () => {
+ reset({
+ enabled: config?.enabled ?? false,
+ listenPort: config?.listenPort ?? 51820,
+ address: config?.address ?? '10.8.0.1/24',
+ endpoint: config?.endpoint ?? '',
+ dns: config?.dns ?? '',
+ lanCIDR: config?.lanCIDR ?? '',
+ });
+ setEditingConfig(true);
+ };
+
+ const handleSaveConfig = async (values: ConfigFormValues) => {
+ try {
+ await updateConfig({ ...values, listenPort: Number(values.listenPort) });
+ setEditingConfig(false);
+ if (values.enabled) {
+ await apply();
+ showSuccess('Configuration saved and applied');
+ } else {
+ showSuccess('Configuration saved');
+ }
+ } catch (e) {
+ showError(`Save failed: ${e instanceof Error ? e.message : String(e)}`);
+ }
+ };
+
+ const handleGenerateKeypair = async () => {
+ setConfirmKeygen(false);
+ try {
+ await generateKeypair();
+ showSuccess('Server keypair generated — re-add all peers to update their configs');
+ } catch (e) {
+ showError(`Keygen failed: ${e instanceof Error ? e.message : String(e)}`);
+ }
+ };
+
+ const handleApply = async () => {
+ try {
+ await apply();
+ showSuccess('WireGuard interface applied');
+ } catch (e) {
+ showError(`Apply failed: ${e instanceof Error ? e.message : String(e)}`);
+ }
+ };
+
+ const handleAddPeer = async () => {
+ if (!newPeerName.trim()) return;
+ try {
+ await addPeer(newPeerName.trim());
+ setNewPeerName('');
+ setAddPeerOpen(false);
+ showSuccess(`Peer "${newPeerName.trim()}" added`);
+ } catch (e) {
+ showError(`Add peer failed: ${e instanceof Error ? e.message : String(e)}`);
+ }
+ };
+
+ const handleShowPeerConfig = async (peer: VpnPeer) => {
+ setLoadingPeerConfig(peer.id);
+ try {
+ const cfg = await vpnApi.getPeerConfig(peer.id);
+ setPeerConfigModal(cfg);
+ } catch (e) {
+ showError(`Failed to get peer config: ${e instanceof Error ? e.message : String(e)}`);
+ } finally {
+ setLoadingPeerConfig(null);
+ }
+ };
+
+ const handleDeletePeer = async () => {
+ if (!deleteConfirmPeer) return;
+ try {
+ await deletePeer(deleteConfirmPeer.id);
+ setDeleteConfirmPeer(null);
+ showSuccess(`Peer "${deleteConfirmPeer.name}" deleted`);
+ } catch (e) {
+ showError(`Delete failed: ${e instanceof Error ? e.message : String(e)}`);
+ }
+ };
+
+ if (isLoadingStatus && isLoadingConfig) {
+ return (
+
+
+
+ );
+ }
+
+ return (
+
+ {/* Page header */}
+
+
+
+
+
+
VPN
+
WireGuard remote access to your Wild Cloud network
+
+
+
+ {/* Alerts */}
+ {successMessage && (
+
+
+ {successMessage}
+
+ )}
+ {(errorMessage || applyError || addPeerError) && (
+
+ {errorMessage ?? String(applyError ?? addPeerError)}
+
+ )}
+
+ {/* Status card */}
+
+
+
+
Status
+
+
+ {status?.running && }
+ {status?.running ? 'Running' : 'Stopped'}
+
+
+ {isApplying ? : }
+ Apply
+
+
+
+
+
+
+
+
Interface
+
{status?.interface ?? 'wg0'}
+
+
+
Connected peers
+
{status?.peerCount ?? 0}
+
+
+
Listen port
+
{status?.listenPort ?? config?.listenPort ?? 51820}
+
+
+
+ setShowAdvanced(!showAdvanced)}
+ >
+ {showAdvanced ? : }
+ Advanced
+
+
+ {showAdvanced && status?.rawOutput && (
+
+
WireGuard interface status
+
+ {status.rawOutput}
+
+
+ )}
+
+
+
+ {/* Server configuration card */}
+
+
+
+
Server Configuration
+ {!editingConfig && (
+
+ setConfirmKeygen(true)}
+ disabled={isGeneratingKeypair}
+ className="gap-1 h-7 text-xs"
+ >
+ {isGeneratingKeypair ? : }
+ Generate Keys
+
+
+
+ Configure
+
+
+ )}
+
+
+
+ {isLoadingConfig ? (
+
+ ) : editingConfig ? (
+
+ ) : (
+
+
+
+
Status
+
+ {config?.enabled && }
+ {config?.enabled ? 'Enabled' : 'Disabled'}
+
+
+
+
Public Endpoint
+
+ {config?.endpoint || not set }
+
+
+
+
Listen Port
+
{config?.listenPort ?? 51820}
+
+
+
VPN Subnet
+
{config?.address || '—'}
+
+
+
DNS for Clients
+
{config?.dns || '—'}
+
+
+
LAN CIDR
+
{config?.lanCIDR || '—'}
+
+
+
Public Key
+
+
+ {config?.publicKey || not generated }
+
+ {config?.publicKey &&
}
+
+
+
+ {!config?.publicKey && (
+
+
+
+ No server keypair yet. Click Generate Keys before adding peers.
+
+
+ )}
+
+ )}
+
+
+
+ {/* Peers card */}
+
+
+
+
Peers
+
setAddPeerOpen(true)}
+ disabled={!config?.publicKey}
+ className="gap-1 h-7 text-xs"
+ >
+
+ Add Peer
+
+
+
+
+ {isLoadingPeers ? (
+
+ ) : peers.length === 0 ? (
+
+
+
No peers yet. Add a peer to get started.
+
+ ) : (
+
+ {peers.map((peer) => (
+
+
+
{peer.name}
+
{peer.allowedIPs}
+
+
+ handleShowPeerConfig(peer)}
+ >
+ {loadingPeerConfig === peer.id
+ ?
+ : }
+ Config
+
+ setDeleteConfirmPeer(peer)}
+ >
+
+
+
+
+ ))}
+
+ )}
+
+
+
+ {/* Add peer drawer */}
+
+
+
+ Add Peer
+
+
+
+
Peer Name
+
setNewPeerName(e.target.value)}
+ placeholder="e.g. my-phone, laptop"
+ className="mt-1"
+ onKeyDown={(e) => e.key === 'Enter' && handleAddPeer()}
+ />
+
+ A VPN IP will be assigned automatically from the server subnet.
+
+
+ {addPeerError && (
+
+ {String(addPeerError)}
+
+ )}
+
+
+
+ {isAddingPeer && }
+ Add Peer
+
+ setAddPeerOpen(false)}>Cancel
+
+
+
+
+ {/* Peer config modal */}
+
!open && setPeerConfigModal(null)}>
+
+
+ {peerConfigModal?.name} — Client Config
+
+ {peerConfigModal && (
+
+
+
+
+
+ Scan with the WireGuard mobile app
+
+
+
+ {peerConfigModal.config}
+
+
+
+
+
+
+ )}
+
+ setPeerConfigModal(null)}>Close
+
+
+
+
+ {/* Generate keypair confirmation */}
+
+
+
+ Regenerate Server Keypair?
+
+ This will generate a new server private and public key. All existing peer configs
+ will become invalid — you'll need to regenerate and redistribute them.
+
+
+
+ Cancel
+ Generate
+
+
+
+
+ {/* Delete peer confirmation */}
+
!open && setDeleteConfirmPeer(null)}>
+
+
+ Delete peer "{deleteConfirmPeer?.name}"?
+
+ This will remove the peer configuration. The peer will no longer be able to connect
+ after you apply the VPN config.
+
+
+
+ Cancel
+ Delete
+
+
+
+
+ );
+}
diff --git a/web/src/components/index.ts b/web/src/components/index.ts
new file mode 100644
index 0000000..7d4897d
--- /dev/null
+++ b/web/src/components/index.ts
@@ -0,0 +1,11 @@
+export { Message } from './Message';
+export { DnsmasqSection } from './DnsmasqSection';
+export { AppSidebar } from './AppSidebar';
+export { ErrorBoundary, ErrorFallback } from './ErrorBoundary';
+export { CentralComponent } from './CentralComponent';
+export { CloudflareComponent } from './CloudflareComponent';
+export { DnsComponent } from './DnsComponent';
+export { DhcpComponent } from './DhcpComponent';
+export { DownloadButton } from './DownloadButton';
+export { CopyButton } from './CopyButton';
+export { HelpPanel } from './HelpPanel';
diff --git a/web/src/components/ui/alert-dialog.tsx b/web/src/components/ui/alert-dialog.tsx
new file mode 100644
index 0000000..7e6c036
--- /dev/null
+++ b/web/src/components/ui/alert-dialog.tsx
@@ -0,0 +1,194 @@
+import * as React from "react"
+import { AlertDialog as AlertDialogPrimitive } from "radix-ui"
+
+import { cn } from "@/lib/utils"
+import { Button } from "@/components/ui/button"
+
+function AlertDialog({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function AlertDialogTrigger({
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogPortal({
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogOverlay({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogContent({
+ className,
+ size = "default",
+ ...props
+}: React.ComponentProps & {
+ size?: "default" | "sm"
+}) {
+ return (
+
+
+
+
+ )
+}
+
+function AlertDialogHeader({
+ className,
+ ...props
+}: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function AlertDialogFooter({
+ className,
+ ...props
+}: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function AlertDialogTitle({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogDescription({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogMedia({
+ className,
+ ...props
+}: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function AlertDialogAction({
+ className,
+ variant = "default",
+ size = "default",
+ ...props
+}: React.ComponentProps &
+ Pick, "variant" | "size">) {
+ return (
+
+
+
+ )
+}
+
+function AlertDialogCancel({
+ className,
+ variant = "outline",
+ size = "default",
+ ...props
+}: React.ComponentProps &
+ Pick, "variant" | "size">) {
+ return (
+
+
+
+ )
+}
+
+export {
+ AlertDialog,
+ AlertDialogAction,
+ AlertDialogCancel,
+ AlertDialogContent,
+ AlertDialogDescription,
+ AlertDialogFooter,
+ AlertDialogHeader,
+ AlertDialogMedia,
+ AlertDialogOverlay,
+ AlertDialogPortal,
+ AlertDialogTitle,
+ AlertDialogTrigger,
+}
diff --git a/web/src/components/ui/alert.tsx b/web/src/components/ui/alert.tsx
new file mode 100644
index 0000000..c401f8f
--- /dev/null
+++ b/web/src/components/ui/alert.tsx
@@ -0,0 +1,76 @@
+import * as React from 'react';
+import { cva, type VariantProps } from 'class-variance-authority';
+import { X } from 'lucide-react';
+
+const alertVariants = cva(
+ 'relative w-full rounded-lg border p-4 [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg+div]:translate-y-[-3px] [&:has(svg)]:pl-11',
+ {
+ variants: {
+ variant: {
+ default: 'bg-background text-foreground border-border',
+ success: 'bg-green-50 text-green-900 border-green-200 dark:bg-green-950/20 dark:text-green-100 dark:border-green-800',
+ error: 'bg-red-50 text-red-900 border-red-200 dark:bg-red-950/20 dark:text-red-100 dark:border-red-800',
+ warning: 'bg-yellow-50 text-yellow-900 border-yellow-200 dark:bg-yellow-950/20 dark:text-yellow-100 dark:border-yellow-800',
+ info: 'bg-blue-50 text-blue-900 border-blue-200 dark:bg-blue-950/20 dark:text-blue-100 dark:border-blue-800',
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ },
+ }
+);
+
+export interface AlertProps
+ extends React.HTMLAttributes,
+ VariantProps {
+ onClose?: () => void;
+}
+
+const Alert = React.forwardRef(
+ ({ className, variant, onClose, children, ...props }, ref) => (
+
+ {children}
+ {onClose && (
+
+
+
+ )}
+
+ )
+);
+Alert.displayName = 'Alert';
+
+const AlertTitle = React.forwardRef<
+ HTMLParagraphElement,
+ React.HTMLAttributes
+>(({ className, ...props }, ref) => (
+
+));
+AlertTitle.displayName = 'AlertTitle';
+
+const AlertDescription = React.forwardRef<
+ HTMLParagraphElement,
+ React.HTMLAttributes
+>(({ className, ...props }, ref) => (
+
+));
+AlertDescription.displayName = 'AlertDescription';
+
+export { Alert, AlertTitle, AlertDescription };
diff --git a/web/src/components/ui/badge.tsx b/web/src/components/ui/badge.tsx
new file mode 100644
index 0000000..3604cb1
--- /dev/null
+++ b/web/src/components/ui/badge.tsx
@@ -0,0 +1,50 @@
+import * as React from "react"
+import { Slot } from "@radix-ui/react-slot"
+import { cva, type VariantProps } from "class-variance-authority"
+
+import { cn } from "@/lib/utils"
+
+const badgeVariants = cva(
+ "inline-flex items-center justify-center rounded-md border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden",
+ {
+ variants: {
+ variant: {
+ default:
+ "border-transparent bg-primary text-primary-foreground [a&]:hover:bg-primary/90",
+ secondary:
+ "border-transparent bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90",
+ destructive:
+ "border-transparent bg-destructive text-white [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
+ outline:
+ "text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
+ success:
+ "border-transparent bg-green-500 text-white [a&]:hover:bg-green-600 dark:bg-green-600 dark:[a&]:hover:bg-green-700",
+ warning:
+ "border-transparent bg-yellow-500 text-white [a&]:hover:bg-yellow-600 dark:bg-yellow-600 dark:[a&]:hover:bg-yellow-700",
+ },
+ },
+ defaultVariants: {
+ variant: "default",
+ },
+ }
+)
+
+function Badge({
+ className,
+ variant,
+ asChild = false,
+ ...props
+}: React.ComponentProps<"span"> &
+ VariantProps & { asChild?: boolean }) {
+ const Comp = asChild ? Slot : "span"
+
+ return (
+
+ )
+}
+
+export { Badge, badgeVariants }
diff --git a/web/src/components/ui/button.tsx b/web/src/components/ui/button.tsx
new file mode 100644
index 0000000..a2df8dc
--- /dev/null
+++ b/web/src/components/ui/button.tsx
@@ -0,0 +1,59 @@
+import * as React from "react"
+import { Slot } from "@radix-ui/react-slot"
+import { cva, type VariantProps } from "class-variance-authority"
+
+import { cn } from "@/lib/utils"
+
+const buttonVariants = cva(
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
+ {
+ variants: {
+ variant: {
+ default:
+ "bg-primary text-primary-foreground shadow-xs hover:bg-primary/90",
+ destructive:
+ "bg-destructive text-white shadow-xs hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
+ outline:
+ "border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50",
+ secondary:
+ "bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80",
+ ghost:
+ "hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50",
+ link: "text-primary underline-offset-4 hover:underline",
+ },
+ size: {
+ default: "h-9 px-4 py-2 has-[>svg]:px-3",
+ sm: "h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",
+ lg: "h-10 rounded-md px-6 has-[>svg]:px-4",
+ icon: "size-9",
+ },
+ },
+ defaultVariants: {
+ variant: "default",
+ size: "default",
+ },
+ }
+)
+
+function Button({
+ className,
+ variant,
+ size,
+ asChild = false,
+ ...props
+}: React.ComponentProps<"button"> &
+ VariantProps & {
+ asChild?: boolean
+ }) {
+ const Comp = asChild ? Slot : "button"
+
+ return (
+
+ )
+}
+
+export { Button, buttonVariants }
diff --git a/web/src/components/ui/card.tsx b/web/src/components/ui/card.tsx
new file mode 100644
index 0000000..d05bbc6
--- /dev/null
+++ b/web/src/components/ui/card.tsx
@@ -0,0 +1,92 @@
+import * as React from "react"
+
+import { cn } from "@/lib/utils"
+
+function Card({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function CardHeader({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function CardTitle({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function CardDescription({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function CardAction({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function CardContent({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function CardFooter({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+export {
+ Card,
+ CardHeader,
+ CardFooter,
+ CardTitle,
+ CardAction,
+ CardDescription,
+ CardContent,
+}
diff --git a/web/src/components/ui/checkbox.tsx b/web/src/components/ui/checkbox.tsx
new file mode 100644
index 0000000..0e2a6cd
--- /dev/null
+++ b/web/src/components/ui/checkbox.tsx
@@ -0,0 +1,30 @@
+import * as React from "react"
+import * as CheckboxPrimitive from "@radix-ui/react-checkbox"
+import { CheckIcon } from "lucide-react"
+
+import { cn } from "@/lib/utils"
+
+function Checkbox({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+
+
+
+ )
+}
+
+export { Checkbox }
diff --git a/web/src/components/ui/collapsible.tsx b/web/src/components/ui/collapsible.tsx
new file mode 100644
index 0000000..77f86be
--- /dev/null
+++ b/web/src/components/ui/collapsible.tsx
@@ -0,0 +1,31 @@
+import * as CollapsiblePrimitive from "@radix-ui/react-collapsible"
+
+function Collapsible({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function CollapsibleTrigger({
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function CollapsibleContent({
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export { Collapsible, CollapsibleTrigger, CollapsibleContent }
diff --git a/web/src/components/ui/dialog.tsx b/web/src/components/ui/dialog.tsx
new file mode 100644
index 0000000..6cb123b
--- /dev/null
+++ b/web/src/components/ui/dialog.tsx
@@ -0,0 +1,141 @@
+import * as React from "react"
+import * as DialogPrimitive from "@radix-ui/react-dialog"
+import { XIcon } from "lucide-react"
+
+import { cn } from "@/lib/utils"
+
+function Dialog({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function DialogTrigger({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function DialogPortal({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function DialogClose({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function DialogOverlay({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function DialogContent({
+ className,
+ children,
+ showCloseButton = true,
+ ...props
+}: React.ComponentProps & {
+ showCloseButton?: boolean
+}) {
+ return (
+
+
+
+ {children}
+ {showCloseButton && (
+
+
+ Close
+
+ )}
+
+
+ )
+}
+
+function DialogHeader({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function DialogFooter({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function DialogTitle({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function DialogDescription({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export {
+ Dialog,
+ DialogClose,
+ DialogContent,
+ DialogDescription,
+ DialogFooter,
+ DialogHeader,
+ DialogOverlay,
+ DialogPortal,
+ DialogTitle,
+ DialogTrigger,
+}
diff --git a/web/src/components/ui/drawer.tsx b/web/src/components/ui/drawer.tsx
new file mode 100644
index 0000000..da35e4c
--- /dev/null
+++ b/web/src/components/ui/drawer.tsx
@@ -0,0 +1,95 @@
+import { useEffect, type ReactNode } from 'react';
+
+interface DrawerProps {
+ open: boolean;
+ onClose: () => void;
+ title: string;
+ children: ReactNode;
+ footer?: ReactNode;
+}
+
+export function Drawer({ open, onClose, title, children, footer }: DrawerProps) {
+ useEffect(() => {
+ const handleEscape = (e: KeyboardEvent) => {
+ if (e.key === 'Escape' && open) {
+ onClose();
+ }
+ };
+
+ document.addEventListener('keydown', handleEscape);
+ return () => document.removeEventListener('keydown', handleEscape);
+ }, [open, onClose]);
+
+ useEffect(() => {
+ if (open) {
+ document.body.style.overflow = 'hidden';
+ } else {
+ document.body.style.overflow = '';
+ }
+ return () => {
+ document.body.style.overflow = '';
+ };
+ }, [open]);
+
+ return (
+ <>
+ {/* Overlay with fade transition */}
+
+
+ {/* Drawer panel with slide transition */}
+
+
+ {/* Header */}
+
+
+ {/* Content */}
+
+ {children}
+
+
+ {/* Footer */}
+ {footer && (
+
+ {footer}
+
+ )}
+
+
+ >
+ );
+}
\ No newline at end of file
diff --git a/web/src/components/ui/entity-tile.tsx b/web/src/components/ui/entity-tile.tsx
new file mode 100644
index 0000000..fa5a961
--- /dev/null
+++ b/web/src/components/ui/entity-tile.tsx
@@ -0,0 +1,97 @@
+import * as React from "react"
+
+import { cn } from "@/lib/utils"
+import { Badge } from "@/components/ui/badge"
+
+interface EntityTileProps extends React.ComponentProps<"div"> {
+ icon?: React.ReactNode
+ title: string
+ version?: string
+ description?: React.ReactNode
+ statusIndicator?: React.ReactNode
+ onClick?: () => void
+ disabled?: boolean
+ loading?: boolean
+ tint?: string
+}
+
+function EntityTile({
+ icon,
+ title,
+ version,
+ description,
+ statusIndicator,
+ onClick,
+ disabled = false,
+ loading = false,
+ tint,
+ className,
+ children,
+ ...props
+}: EntityTileProps) {
+ const handleKeyDown = (e: React.KeyboardEvent) => {
+ if (disabled || !onClick) return
+ if (e.key === "Enter" || e.key === " ") {
+ e.preventDefault()
+ onClick()
+ }
+ }
+
+ return (
+
+
+ {loading && (
+
+ )}
+
+
+ {icon && (
+
+ {icon}
+
+ )}
+
+
{title}
+ {version && (
+
+ {version}
+
+ )}
+
+
+ {description && (
+
{description}
+ )}
+
+ {children}
+
+
+ {statusIndicator}
+
+
+ )
+}
+
+export { EntityTile }
+export type { EntityTileProps }
diff --git a/web/src/components/ui/form.tsx b/web/src/components/ui/form.tsx
new file mode 100644
index 0000000..524b986
--- /dev/null
+++ b/web/src/components/ui/form.tsx
@@ -0,0 +1,167 @@
+"use client"
+
+import * as React from "react"
+import * as LabelPrimitive from "@radix-ui/react-label"
+import { Slot } from "@radix-ui/react-slot"
+import {
+ Controller,
+ FormProvider,
+ useFormContext,
+ useFormState,
+ type ControllerProps,
+ type FieldPath,
+ type FieldValues,
+} from "react-hook-form"
+
+import { cn } from "@/lib/utils"
+import { Label } from "@/components/ui/label"
+
+const Form = FormProvider
+
+type FormFieldContextValue<
+ TFieldValues extends FieldValues = FieldValues,
+ TName extends FieldPath = FieldPath,
+> = {
+ name: TName
+}
+
+const FormFieldContext = React.createContext(
+ {} as FormFieldContextValue
+)
+
+const FormField = <
+ TFieldValues extends FieldValues = FieldValues,
+ TName extends FieldPath = FieldPath,
+>({
+ ...props
+}: ControllerProps) => {
+ return (
+
+
+
+ )
+}
+
+const useFormField = () => {
+ const fieldContext = React.useContext(FormFieldContext)
+ const itemContext = React.useContext(FormItemContext)
+ const { getFieldState } = useFormContext()
+ const formState = useFormState({ name: fieldContext.name })
+ const fieldState = getFieldState(fieldContext.name, formState)
+
+ if (!fieldContext) {
+ throw new Error("useFormField should be used within ")
+ }
+
+ const { id } = itemContext
+
+ return {
+ id,
+ name: fieldContext.name,
+ formItemId: `${id}-form-item`,
+ formDescriptionId: `${id}-form-item-description`,
+ formMessageId: `${id}-form-item-message`,
+ ...fieldState,
+ }
+}
+
+type FormItemContextValue = {
+ id: string
+}
+
+const FormItemContext = React.createContext(
+ {} as FormItemContextValue
+)
+
+function FormItem({ className, ...props }: React.ComponentProps<"div">) {
+ const id = React.useId()
+
+ return (
+
+
+
+ )
+}
+
+function FormLabel({
+ className,
+ ...props
+}: React.ComponentProps) {
+ const { error, formItemId } = useFormField()
+
+ return (
+
+ )
+}
+
+function FormControl({ ...props }: React.ComponentProps) {
+ const { error, formItemId, formDescriptionId, formMessageId } = useFormField()
+
+ return (
+
+ )
+}
+
+function FormDescription({ className, ...props }: React.ComponentProps<"p">) {
+ const { formDescriptionId } = useFormField()
+
+ return (
+
+ )
+}
+
+function FormMessage({ className, ...props }: React.ComponentProps<"p">) {
+ const { error, formMessageId } = useFormField()
+ const body = error ? String(error?.message ?? "") : props.children
+
+ if (!body) {
+ return null
+ }
+
+ return (
+
+ {body}
+
+ )
+}
+
+export {
+ useFormField,
+ Form,
+ FormItem,
+ FormLabel,
+ FormControl,
+ FormDescription,
+ FormMessage,
+ FormField,
+}
diff --git a/web/src/components/ui/index.ts b/web/src/components/ui/index.ts
new file mode 100644
index 0000000..8926647
--- /dev/null
+++ b/web/src/components/ui/index.ts
@@ -0,0 +1,28 @@
+export { Button, buttonVariants } from './button';
+export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent } from './card';
+export { Badge, badgeVariants } from './badge';
+export { Alert, AlertTitle, AlertDescription } from './alert';
+export { Input } from './input';
+export { Label } from './label';
+export { Textarea } from './textarea';
+export {
+ Dialog,
+ DialogPortal,
+ DialogOverlay,
+ DialogClose,
+ DialogTrigger,
+ DialogContent,
+ DialogHeader,
+ DialogFooter,
+ DialogTitle,
+ DialogDescription,
+} from './dialog';
+export {
+ Form,
+ FormItem,
+ FormLabel,
+ FormControl,
+ FormDescription,
+ FormMessage,
+ FormField,
+} from './form';
\ No newline at end of file
diff --git a/web/src/components/ui/input.tsx b/web/src/components/ui/input.tsx
new file mode 100644
index 0000000..5b09628
--- /dev/null
+++ b/web/src/components/ui/input.tsx
@@ -0,0 +1,26 @@
+import * as React from "react"
+
+import { cn } from "@/lib/utils"
+
+const Input = React.forwardRef>(
+ ({ className, type, ...props }, ref) => {
+ return (
+
+ )
+ }
+)
+
+Input.displayName = 'Input'
+
+export { Input }
diff --git a/web/src/components/ui/label.tsx b/web/src/components/ui/label.tsx
new file mode 100644
index 0000000..ef7133a
--- /dev/null
+++ b/web/src/components/ui/label.tsx
@@ -0,0 +1,22 @@
+import * as React from "react"
+import * as LabelPrimitive from "@radix-ui/react-label"
+
+import { cn } from "@/lib/utils"
+
+function Label({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export { Label }
diff --git a/web/src/components/ui/select.tsx b/web/src/components/ui/select.tsx
new file mode 100644
index 0000000..fe56d4d
--- /dev/null
+++ b/web/src/components/ui/select.tsx
@@ -0,0 +1,158 @@
+import * as React from "react"
+import * as SelectPrimitive from "@radix-ui/react-select"
+import { Check, ChevronDown, ChevronUp } from "lucide-react"
+
+import { cn } from "@/lib/utils"
+
+const Select = SelectPrimitive.Root
+
+const SelectGroup = SelectPrimitive.Group
+
+const SelectValue = SelectPrimitive.Value
+
+const SelectTrigger = React.forwardRef<
+ React.ElementRef,
+ React.ComponentPropsWithoutRef
+>(({ className, children, ...props }, ref) => (
+ span]:line-clamp-1",
+ className
+ )}
+ {...props}
+ >
+ {children}
+
+
+
+
+))
+SelectTrigger.displayName = SelectPrimitive.Trigger.displayName
+
+const SelectScrollUpButton = React.forwardRef<
+ React.ElementRef,
+ React.ComponentPropsWithoutRef
+>(({ className, ...props }, ref) => (
+
+
+
+))
+SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName
+
+const SelectScrollDownButton = React.forwardRef<
+ React.ElementRef,
+ React.ComponentPropsWithoutRef
+>(({ className, ...props }, ref) => (
+
+
+
+))
+SelectScrollDownButton.displayName =
+ SelectPrimitive.ScrollDownButton.displayName
+
+const SelectContent = React.forwardRef<
+ React.ElementRef,
+ React.ComponentPropsWithoutRef
+>(({ className, children, position = "popper", ...props }, ref) => (
+
+
+
+
+ {children}
+
+
+
+
+))
+SelectContent.displayName = SelectPrimitive.Content.displayName
+
+const SelectLabel = React.forwardRef<
+ React.ElementRef,
+ React.ComponentPropsWithoutRef
+>(({ className, ...props }, ref) => (
+
+))
+SelectLabel.displayName = SelectPrimitive.Label.displayName
+
+const SelectItem = React.forwardRef<
+ React.ElementRef,
+ React.ComponentPropsWithoutRef
+>(({ className, children, ...props }, ref) => (
+
+
+
+
+
+
+
+ {children}
+
+))
+SelectItem.displayName = SelectPrimitive.Item.displayName
+
+const SelectSeparator = React.forwardRef<
+ React.ElementRef,
+ React.ComponentPropsWithoutRef
+>(({ className, ...props }, ref) => (
+
+))
+SelectSeparator.displayName = SelectPrimitive.Separator.displayName
+
+export {
+ Select,
+ SelectGroup,
+ SelectValue,
+ SelectTrigger,
+ SelectContent,
+ SelectLabel,
+ SelectItem,
+ SelectSeparator,
+ SelectScrollUpButton,
+ SelectScrollDownButton,
+}
diff --git a/web/src/components/ui/separator.tsx b/web/src/components/ui/separator.tsx
new file mode 100644
index 0000000..275381c
--- /dev/null
+++ b/web/src/components/ui/separator.tsx
@@ -0,0 +1,28 @@
+"use client"
+
+import * as React from "react"
+import * as SeparatorPrimitive from "@radix-ui/react-separator"
+
+import { cn } from "@/lib/utils"
+
+function Separator({
+ className,
+ orientation = "horizontal",
+ decorative = true,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export { Separator }
diff --git a/web/src/components/ui/sheet.tsx b/web/src/components/ui/sheet.tsx
new file mode 100644
index 0000000..6906f5b
--- /dev/null
+++ b/web/src/components/ui/sheet.tsx
@@ -0,0 +1,137 @@
+import * as React from "react"
+import * as SheetPrimitive from "@radix-ui/react-dialog"
+import { XIcon } from "lucide-react"
+
+import { cn } from "@/lib/utils"
+
+function Sheet({ ...props }: React.ComponentProps) {
+ return
+}
+
+function SheetTrigger({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function SheetClose({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function SheetPortal({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function SheetOverlay({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function SheetContent({
+ className,
+ children,
+ side = "right",
+ ...props
+}: React.ComponentProps & {
+ side?: "top" | "right" | "bottom" | "left"
+}) {
+ return (
+
+
+
+ {children}
+
+
+ Close
+
+
+
+ )
+}
+
+function SheetHeader({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function SheetFooter({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function SheetTitle({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function SheetDescription({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export {
+ Sheet,
+ SheetTrigger,
+ SheetClose,
+ SheetContent,
+ SheetHeader,
+ SheetFooter,
+ SheetTitle,
+ SheetDescription,
+}
diff --git a/web/src/components/ui/sidebar.tsx b/web/src/components/ui/sidebar.tsx
new file mode 100644
index 0000000..52fb131
--- /dev/null
+++ b/web/src/components/ui/sidebar.tsx
@@ -0,0 +1,727 @@
+"use client"
+
+import * as React from "react"
+import { Slot } from "@radix-ui/react-slot"
+import { cva } from "class-variance-authority"
+import type { VariantProps } from "class-variance-authority"
+import { PanelLeftIcon } from "lucide-react"
+
+import { useIsMobile } from "@/hooks/use-mobile"
+import { cn } from "@/lib/utils"
+import { Button } from "@/components/ui/button"
+import { Input } from "@/components/ui/input"
+import { Separator } from "@/components/ui/separator"
+import {
+ Sheet,
+ SheetContent,
+ SheetDescription,
+ SheetHeader,
+ SheetTitle,
+} from "@/components/ui/sheet"
+import { Skeleton } from "@/components/ui/skeleton"
+import {
+ Tooltip,
+ TooltipContent,
+ TooltipProvider,
+ TooltipTrigger,
+} from "@/components/ui/tooltip"
+
+const SIDEBAR_COOKIE_NAME = "sidebar_state"
+const SIDEBAR_COOKIE_MAX_AGE = 60 * 60 * 24 * 7
+const SIDEBAR_WIDTH = "16rem"
+const SIDEBAR_WIDTH_MOBILE = "18rem"
+const SIDEBAR_WIDTH_ICON = "3rem"
+const SIDEBAR_KEYBOARD_SHORTCUT = "b"
+
+type SidebarContextProps = {
+ state: "expanded" | "collapsed"
+ open: boolean
+ setOpen: (open: boolean) => void
+ openMobile: boolean
+ setOpenMobile: (open: boolean) => void
+ isMobile: boolean
+ toggleSidebar: () => void
+}
+
+const SidebarContext = React.createContext(null)
+
+function useSidebar() {
+ const context = React.useContext(SidebarContext)
+ if (!context) {
+ throw new Error("useSidebar must be used within a SidebarProvider.")
+ }
+
+ return context
+}
+
+function SidebarProvider({
+ defaultOpen = true,
+ open: openProp,
+ onOpenChange: setOpenProp,
+ className,
+ style,
+ children,
+ ...props
+}: React.ComponentProps<"div"> & {
+ defaultOpen?: boolean
+ open?: boolean
+ onOpenChange?: (open: boolean) => void
+}) {
+ const isMobile = useIsMobile()
+ const [openMobile, setOpenMobile] = React.useState(false)
+
+ // This is the internal state of the sidebar.
+ // We use openProp and setOpenProp for control from outside the component.
+ const [_open, _setOpen] = React.useState(defaultOpen)
+ const open = openProp ?? _open
+ const setOpen = React.useCallback(
+ (value: boolean | ((value: boolean) => boolean)) => {
+ const openState = typeof value === "function" ? value(open) : value
+ if (setOpenProp) {
+ setOpenProp(openState)
+ } else {
+ _setOpen(openState)
+ }
+
+ // This sets the cookie to keep the sidebar state.
+ document.cookie = `${SIDEBAR_COOKIE_NAME}=${openState}; path=/; max-age=${SIDEBAR_COOKIE_MAX_AGE}`
+ },
+ [setOpenProp, open]
+ )
+
+ // Helper to toggle the sidebar.
+ const toggleSidebar = React.useCallback(() => {
+ return isMobile ? setOpenMobile((open) => !open) : setOpen((open) => !open)
+ }, [isMobile, setOpen, setOpenMobile])
+
+ // Adds a keyboard shortcut to toggle the sidebar.
+ React.useEffect(() => {
+ const handleKeyDown = (event: KeyboardEvent) => {
+ if (
+ event.key === SIDEBAR_KEYBOARD_SHORTCUT &&
+ (event.metaKey || event.ctrlKey)
+ ) {
+ event.preventDefault()
+ toggleSidebar()
+ }
+ }
+
+ window.addEventListener("keydown", handleKeyDown)
+ return () => window.removeEventListener("keydown", handleKeyDown)
+ }, [toggleSidebar])
+
+ // We add a state so that we can do data-state="expanded" or "collapsed".
+ // This makes it easier to style the sidebar with Tailwind classes.
+ const state = open ? "expanded" : "collapsed"
+
+ const contextValue = React.useMemo(
+ () => ({
+ state,
+ open,
+ setOpen,
+ isMobile,
+ openMobile,
+ setOpenMobile,
+ toggleSidebar,
+ }),
+ [state, open, setOpen, isMobile, openMobile, setOpenMobile, toggleSidebar]
+ )
+
+ return (
+
+
+
+ {children}
+
+
+
+ )
+}
+
+function Sidebar({
+ side = "left",
+ variant = "sidebar",
+ collapsible = "offcanvas",
+ className,
+ children,
+ ...props
+}: React.ComponentProps<"div"> & {
+ side?: "left" | "right"
+ variant?: "sidebar" | "floating" | "inset"
+ collapsible?: "offcanvas" | "icon" | "none"
+}) {
+ const { isMobile, state, openMobile, setOpenMobile } = useSidebar()
+
+ if (collapsible === "none") {
+ return (
+
+ {children}
+
+ )
+ }
+
+ if (isMobile) {
+ return (
+
+
+
+ Sidebar
+ Displays the mobile sidebar.
+
+ {children}
+
+
+ )
+ }
+
+ return (
+
+ {/* This is what handles the sidebar gap on desktop */}
+
+
+
+ )
+}
+
+function SidebarTrigger({
+ className,
+ onClick,
+ ...props
+}: React.ComponentProps) {
+ const { toggleSidebar } = useSidebar()
+
+ return (
+ {
+ onClick?.(event)
+ toggleSidebar()
+ }}
+ {...props}
+ >
+
+ Toggle Sidebar
+
+ )
+}
+
+function SidebarRail({ className, ...props }: React.ComponentProps<"button">) {
+ const { toggleSidebar } = useSidebar()
+
+ return (
+
+ )
+}
+
+function SidebarInset({ className, ...props }: React.ComponentProps<"main">) {
+ return (
+
+ )
+}
+
+function SidebarInput({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function SidebarHeader({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function SidebarFooter({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function SidebarSeparator({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function SidebarContent({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function SidebarGroup({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function SidebarGroupLabel({
+ className,
+ asChild = false,
+ ...props
+}: React.ComponentProps<"div"> & { asChild?: boolean }) {
+ const Comp = asChild ? Slot : "div"
+
+ return (
+ svg]:size-4 [&>svg]:shrink-0",
+ "group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0",
+ className
+ )}
+ {...props}
+ />
+ )
+}
+
+function SidebarGroupAction({
+ className,
+ asChild = false,
+ ...props
+}: React.ComponentProps<"button"> & { asChild?: boolean }) {
+ const Comp = asChild ? Slot : "button"
+
+ return (
+ svg]:size-4 [&>svg]:shrink-0",
+ // Increases the hit area of the button on mobile.
+ "after:absolute after:-inset-2 md:after:hidden",
+ "group-data-[collapsible=icon]:hidden",
+ className
+ )}
+ {...props}
+ />
+ )
+}
+
+function SidebarGroupContent({
+ className,
+ ...props
+}: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function SidebarMenu({ className, ...props }: React.ComponentProps<"ul">) {
+ return (
+
+ )
+}
+
+function SidebarMenuItem({ className, ...props }: React.ComponentProps<"li">) {
+ return (
+
+ )
+}
+
+const sidebarMenuButtonVariants = cva(
+ "peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-hidden ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-data-[sidebar=menu-action]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:size-8! group-data-[collapsible=icon]:p-2! [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0",
+ {
+ variants: {
+ variant: {
+ default: "hover:bg-sidebar-accent hover:text-sidebar-accent-foreground",
+ outline:
+ "bg-background shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]",
+ },
+ size: {
+ default: "h-8 text-sm",
+ sm: "h-7 text-xs",
+ lg: "h-12 text-sm group-data-[collapsible=icon]:p-0!",
+ },
+ },
+ defaultVariants: {
+ variant: "default",
+ size: "default",
+ },
+ }
+)
+
+function SidebarMenuButton({
+ asChild = false,
+ isActive = false,
+ variant = "default",
+ size = "default",
+ tooltip,
+ className,
+ ...props
+}: React.ComponentProps<"button"> & {
+ asChild?: boolean
+ isActive?: boolean
+ tooltip?: string | React.ComponentProps
+} & VariantProps) {
+ const Comp = asChild ? Slot : "button"
+ const { isMobile, state } = useSidebar()
+
+ const button = (
+
+ )
+
+ if (!tooltip) {
+ return button
+ }
+
+ if (typeof tooltip === "string") {
+ tooltip = {
+ children: tooltip,
+ }
+ }
+
+ return (
+
+ {button}
+
+
+ )
+}
+
+function SidebarMenuAction({
+ className,
+ asChild = false,
+ showOnHover = false,
+ ...props
+}: React.ComponentProps<"button"> & {
+ asChild?: boolean
+ showOnHover?: boolean
+}) {
+ const Comp = asChild ? Slot : "button"
+
+ return (
+ svg]:size-4 [&>svg]:shrink-0",
+ // Increases the hit area of the button on mobile.
+ "after:absolute after:-inset-2 md:after:hidden",
+ "peer-data-[size=sm]/menu-button:top-1",
+ "peer-data-[size=default]/menu-button:top-1.5",
+ "peer-data-[size=lg]/menu-button:top-2.5",
+ "group-data-[collapsible=icon]:hidden",
+ showOnHover &&
+ "peer-data-[active=true]/menu-button:text-sidebar-accent-foreground group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 md:opacity-0",
+ className
+ )}
+ {...props}
+ />
+ )
+}
+
+function SidebarMenuBadge({
+ className,
+ ...props
+}: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+function SidebarMenuSkeleton({
+ className,
+ showIcon = false,
+ ...props
+}: React.ComponentProps<"div"> & {
+ showIcon?: boolean
+}) {
+ // Random width between 50 to 90%.
+ const width = React.useMemo(() => {
+ return `${Math.floor(Math.random() * 40) + 50}%`
+ }, [])
+
+ return (
+
+ {showIcon && (
+
+ )}
+
+
+ )
+}
+
+function SidebarMenuSub({ className, ...props }: React.ComponentProps<"ul">) {
+ return (
+
+ )
+}
+
+function SidebarMenuSubItem({
+ className,
+ ...props
+}: React.ComponentProps<"li">) {
+ return (
+
+ )
+}
+
+function SidebarMenuSubButton({
+ asChild = false,
+ size = "md",
+ isActive = false,
+ className,
+ ...props
+}: React.ComponentProps<"a"> & {
+ asChild?: boolean
+ size?: "sm" | "md"
+ isActive?: boolean
+}) {
+ const Comp = asChild ? Slot : "a"
+
+ return (
+ svg]:text-sidebar-accent-foreground flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md px-2 outline-hidden focus-visible:ring-2 disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0",
+ "data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground",
+ size === "sm" && "text-xs",
+ size === "md" && "text-sm",
+ "group-data-[collapsible=icon]:hidden",
+ className
+ )}
+ {...props}
+ />
+ )
+}
+
+export {
+ Sidebar,
+ SidebarContent,
+ SidebarFooter,
+ SidebarGroup,
+ SidebarGroupAction,
+ SidebarGroupContent,
+ SidebarGroupLabel,
+ SidebarHeader,
+ SidebarInput,
+ SidebarInset,
+ SidebarMenu,
+ SidebarMenuAction,
+ SidebarMenuBadge,
+ SidebarMenuButton,
+ SidebarMenuItem,
+ SidebarMenuSkeleton,
+ SidebarMenuSub,
+ SidebarMenuSubButton,
+ SidebarMenuSubItem,
+ SidebarProvider,
+ SidebarRail,
+ SidebarSeparator,
+ SidebarTrigger,
+ useSidebar,
+}
diff --git a/web/src/components/ui/skeleton.tsx b/web/src/components/ui/skeleton.tsx
new file mode 100644
index 0000000..32ea0ef
--- /dev/null
+++ b/web/src/components/ui/skeleton.tsx
@@ -0,0 +1,13 @@
+import { cn } from "@/lib/utils"
+
+function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
+ return (
+
+ )
+}
+
+export { Skeleton }
diff --git a/web/src/components/ui/switch.tsx b/web/src/components/ui/switch.tsx
new file mode 100644
index 0000000..b0363e3
--- /dev/null
+++ b/web/src/components/ui/switch.tsx
@@ -0,0 +1,29 @@
+import * as React from "react"
+import * as SwitchPrimitive from "@radix-ui/react-switch"
+
+import { cn } from "@/lib/utils"
+
+function Switch({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+
+ )
+}
+
+export { Switch }
diff --git a/web/src/components/ui/tabs.tsx b/web/src/components/ui/tabs.tsx
new file mode 100644
index 0000000..3d6f3ac
--- /dev/null
+++ b/web/src/components/ui/tabs.tsx
@@ -0,0 +1,64 @@
+import * as React from "react"
+import * as TabsPrimitive from "@radix-ui/react-tabs"
+
+import { cn } from "@/lib/utils"
+
+function Tabs({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function TabsList({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function TabsTrigger({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function TabsContent({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export { Tabs, TabsList, TabsTrigger, TabsContent }
diff --git a/web/src/components/ui/textarea.tsx b/web/src/components/ui/textarea.tsx
new file mode 100644
index 0000000..7f21b5e
--- /dev/null
+++ b/web/src/components/ui/textarea.tsx
@@ -0,0 +1,18 @@
+import * as React from "react"
+
+import { cn } from "@/lib/utils"
+
+function Textarea({ className, ...props }: React.ComponentProps<"textarea">) {
+ return (
+
+ )
+}
+
+export { Textarea }
diff --git a/web/src/components/ui/tooltip.tsx b/web/src/components/ui/tooltip.tsx
new file mode 100644
index 0000000..71ee0fe
--- /dev/null
+++ b/web/src/components/ui/tooltip.tsx
@@ -0,0 +1,59 @@
+import * as React from "react"
+import * as TooltipPrimitive from "@radix-ui/react-tooltip"
+
+import { cn } from "@/lib/utils"
+
+function TooltipProvider({
+ delayDuration = 0,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function Tooltip({
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+
+ )
+}
+
+function TooltipTrigger({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function TooltipContent({
+ className,
+ sideOffset = 0,
+ children,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+ {children}
+
+
+
+ )
+}
+
+export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider }
diff --git a/web/src/contexts/HelpContext.tsx b/web/src/contexts/HelpContext.tsx
new file mode 100644
index 0000000..2dd8a4f
--- /dev/null
+++ b/web/src/contexts/HelpContext.tsx
@@ -0,0 +1,38 @@
+import { createContext, useContext, useState } from 'react';
+import type { ReactNode } from 'react';
+
+interface HelpContent {
+ title: string;
+ description: ReactNode;
+ icon?: ReactNode;
+ color?: string;
+ actions?: ReactNode;
+}
+
+interface HelpContextType {
+ helpContent: HelpContent | null;
+ setHelpContent: (content: HelpContent | null) => void;
+ isHelpOpen: boolean;
+ setIsHelpOpen: (open: boolean) => void;
+}
+
+const HelpContext = createContext(undefined);
+
+export function HelpProvider({ children }: { children: ReactNode }) {
+ const [helpContent, setHelpContent] = useState(null);
+ const [isHelpOpen, setIsHelpOpen] = useState(false);
+
+ return (
+
+ {children}
+
+ );
+}
+
+export function useHelp() {
+ const context = useContext(HelpContext);
+ if (context === undefined) {
+ throw new Error('useHelp must be used within a HelpProvider');
+ }
+ return context;
+}
diff --git a/web/src/contexts/ThemeContext.tsx b/web/src/contexts/ThemeContext.tsx
new file mode 100644
index 0000000..be42357
--- /dev/null
+++ b/web/src/contexts/ThemeContext.tsx
@@ -0,0 +1,73 @@
+import { createContext, useContext, useEffect, useState } from 'react';
+
+type Theme = 'dark' | 'light' | 'system';
+
+type ThemeProviderProps = {
+ children: React.ReactNode;
+ defaultTheme?: Theme;
+ storageKey?: string;
+};
+
+type ThemeProviderState = {
+ theme: Theme;
+ setTheme: (theme: Theme) => void;
+};
+
+const initialState: ThemeProviderState = {
+ theme: 'system',
+ setTheme: () => null,
+};
+
+const ThemeProviderContext = createContext(initialState);
+
+export function ThemeProvider({
+ children,
+ defaultTheme = 'system',
+ storageKey = 'wild-central-theme',
+ ...props
+}: ThemeProviderProps) {
+ const [theme, setTheme] = useState(
+ () => (localStorage.getItem(storageKey) as Theme) || defaultTheme
+ );
+
+ useEffect(() => {
+ const root = window.document.documentElement;
+
+ root.classList.remove('light', 'dark');
+
+ if (theme === 'system') {
+ const systemTheme = window.matchMedia('(prefers-color-scheme: dark)')
+ .matches
+ ? 'dark'
+ : 'light';
+
+ root.classList.add(systemTheme);
+ return;
+ }
+
+ root.classList.add(theme);
+ }, [theme]);
+
+ const value = {
+ theme,
+ setTheme: (theme: Theme) => {
+ localStorage.setItem(storageKey, theme);
+ setTheme(theme);
+ },
+ };
+
+ return (
+
+ {children}
+
+ );
+}
+
+export const useTheme = () => {
+ const context = useContext(ThemeProviderContext);
+
+ if (context === undefined)
+ throw new Error('useTheme must be used within a ThemeProvider');
+
+ return context;
+};
\ No newline at end of file
diff --git a/web/src/hooks/__tests__/useMessages.test.ts b/web/src/hooks/__tests__/useMessages.test.ts
new file mode 100644
index 0000000..8c39c82
--- /dev/null
+++ b/web/src/hooks/__tests__/useMessages.test.ts
@@ -0,0 +1,127 @@
+import { describe, it, expect } from 'vitest';
+import { renderHook, act } from '@testing-library/react';
+import { useMessages } from '../useMessages';
+
+describe('useMessages', () => {
+ it('should initialize with empty messages', () => {
+ const { result } = renderHook(() => useMessages());
+
+ expect(result.current.messages).toEqual({});
+ });
+
+ it('should set a message', () => {
+ const { result } = renderHook(() => useMessages());
+
+ act(() => {
+ result.current.setMessage('test', 'Test message', 'success');
+ });
+
+ expect(result.current.messages).toEqual({
+ test: { message: 'Test message', type: 'success' }
+ });
+ });
+
+ it('should set multiple messages', () => {
+ const { result } = renderHook(() => useMessages());
+
+ act(() => {
+ result.current.setMessage('success', 'Success message', 'success');
+ result.current.setMessage('error', 'Error message', 'error');
+ result.current.setMessage('info', 'Info message', 'info');
+ });
+
+ expect(result.current.messages).toEqual({
+ success: { message: 'Success message', type: 'success' },
+ error: { message: 'Error message', type: 'error' },
+ info: { message: 'Info message', type: 'info' },
+ });
+ });
+
+ it('should update existing message', () => {
+ const { result } = renderHook(() => useMessages());
+
+ act(() => {
+ result.current.setMessage('test', 'First message', 'info');
+ });
+
+ expect(result.current.messages.test).toEqual({
+ message: 'First message',
+ type: 'info'
+ });
+
+ act(() => {
+ result.current.setMessage('test', 'Updated message', 'error');
+ });
+
+ expect(result.current.messages.test).toEqual({
+ message: 'Updated message',
+ type: 'error'
+ });
+ });
+
+ it('should clear a specific message', () => {
+ const { result } = renderHook(() => useMessages());
+
+ act(() => {
+ result.current.setMessage('test1', 'Message 1', 'info');
+ result.current.setMessage('test2', 'Message 2', 'success');
+ });
+
+ expect(Object.keys(result.current.messages)).toHaveLength(2);
+
+ act(() => {
+ result.current.clearMessage('test1');
+ });
+
+ expect(result.current.messages).toEqual({
+ test2: { message: 'Message 2', type: 'success' }
+ });
+ });
+
+ it('should clear message by setting to null', () => {
+ const { result } = renderHook(() => useMessages());
+
+ act(() => {
+ result.current.setMessage('test', 'Test message', 'info');
+ });
+
+ expect(result.current.messages.test).toBeDefined();
+
+ act(() => {
+ result.current.setMessage('test', null);
+ });
+
+ expect(result.current.messages.test).toBeUndefined();
+ });
+
+ it('should clear all messages', () => {
+ const { result } = renderHook(() => useMessages());
+
+ act(() => {
+ result.current.setMessage('test1', 'Message 1', 'info');
+ result.current.setMessage('test2', 'Message 2', 'success');
+ result.current.setMessage('test3', 'Message 3', 'error');
+ });
+
+ expect(Object.keys(result.current.messages)).toHaveLength(3);
+
+ act(() => {
+ result.current.clearAllMessages();
+ });
+
+ expect(result.current.messages).toEqual({});
+ });
+
+ it('should default to info type when type not specified', () => {
+ const { result } = renderHook(() => useMessages());
+
+ act(() => {
+ result.current.setMessage('test', 'Test message');
+ });
+
+ expect(result.current.messages.test).toEqual({
+ message: 'Test message',
+ type: 'info'
+ });
+ });
+});
\ No newline at end of file
diff --git a/web/src/hooks/__tests__/useStatus.test.ts b/web/src/hooks/__tests__/useStatus.test.ts
new file mode 100644
index 0000000..d8b2432
--- /dev/null
+++ b/web/src/hooks/__tests__/useStatus.test.ts
@@ -0,0 +1,104 @@
+import { describe, it, expect, vi, beforeEach } from 'vitest';
+import { renderHook, waitFor } from '@testing-library/react';
+import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
+import React from 'react';
+import { useStatus } from '../useStatus';
+import { apiService } from '../../services/api-legacy';
+
+// Mock the API service
+vi.mock('../../services/api-legacy', () => ({
+ apiService: {
+ getStatus: vi.fn(),
+ },
+}));
+
+const createWrapper = () => {
+ const queryClient = new QueryClient({
+ defaultOptions: {
+ queries: {
+ retry: false,
+ gcTime: 0,
+ },
+ },
+ });
+
+ return ({ children }: { children: React.ReactNode }) => (
+ React.createElement(QueryClientProvider, { client: queryClient }, children)
+ );
+};
+
+describe('useStatus', () => {
+ beforeEach(() => {
+ vi.clearAllMocks();
+ });
+
+ it('should fetch status successfully', async () => {
+ const mockStatus = {
+ status: 'running',
+ version: '1.0.0',
+ uptime: '2 hours',
+ timestamp: '2024-01-01T00:00:00Z',
+ };
+
+ (apiService.getStatus as ReturnType).mockResolvedValue(mockStatus);
+
+ const { result } = renderHook(() => useStatus(), {
+ wrapper: createWrapper(),
+ });
+
+ expect(result.current.isLoading).toBe(true);
+ expect(result.current.data).toBeUndefined();
+
+ await waitFor(() => {
+ expect(result.current.isLoading).toBe(false);
+ });
+
+ expect(result.current.data).toEqual(mockStatus);
+ expect(result.current.error).toBeNull();
+ expect(apiService.getStatus).toHaveBeenCalledTimes(1);
+ });
+
+ it('should handle error when fetching status fails', async () => {
+ const mockError = new Error('Network error');
+ (apiService.getStatus as ReturnType).mockRejectedValue(mockError);
+
+ const { result } = renderHook(() => useStatus(), {
+ wrapper: createWrapper(),
+ });
+
+ await waitFor(() => {
+ expect(result.current.isLoading).toBe(false);
+ });
+
+ expect(result.current.data).toBeUndefined();
+ expect(result.current.error).toEqual(mockError);
+ });
+
+ it('should refetch data when refetch is called', async () => {
+ const mockStatus = {
+ status: 'running',
+ version: '1.0.0',
+ uptime: '2 hours',
+ timestamp: '2024-01-01T00:00:00Z',
+ };
+
+ (apiService.getStatus as ReturnType).mockResolvedValue(mockStatus);
+
+ const { result } = renderHook(() => useStatus(), {
+ wrapper: createWrapper(),
+ });
+
+ await waitFor(() => {
+ expect(result.current.isLoading).toBe(false);
+ });
+
+ expect(apiService.getStatus).toHaveBeenCalledTimes(1);
+
+ // Trigger refetch
+ result.current.refetch();
+
+ await waitFor(() => {
+ expect(apiService.getStatus).toHaveBeenCalledTimes(2);
+ });
+ });
+});
\ No newline at end of file
diff --git a/web/src/hooks/index.ts b/web/src/hooks/index.ts
new file mode 100644
index 0000000..0adc34c
--- /dev/null
+++ b/web/src/hooks/index.ts
@@ -0,0 +1,7 @@
+export { useMessages } from './useMessages';
+export { useStatus } from './useStatus';
+export { useHealth } from './useHealth';
+export { useConfig } from './useConfig';
+export { useDnsmasq } from './useDnsmasq';
+export { useCentralStatus } from './useCentralStatus';
+export { useCloudflare } from './useCloudflare';
diff --git a/web/src/hooks/use-mobile.ts b/web/src/hooks/use-mobile.ts
new file mode 100644
index 0000000..2b0fe1d
--- /dev/null
+++ b/web/src/hooks/use-mobile.ts
@@ -0,0 +1,19 @@
+import * as React from "react"
+
+const MOBILE_BREAKPOINT = 768
+
+export function useIsMobile() {
+ const [isMobile, setIsMobile] = React.useState(undefined)
+
+ React.useEffect(() => {
+ const mql = window.matchMedia(`(max-width: ${MOBILE_BREAKPOINT - 1}px)`)
+ const onChange = () => {
+ setIsMobile(window.innerWidth < MOBILE_BREAKPOINT)
+ }
+ mql.addEventListener("change", onChange)
+ setIsMobile(window.innerWidth < MOBILE_BREAKPOINT)
+ return () => mql.removeEventListener("change", onChange)
+ }, [])
+
+ return !!isMobile
+}
diff --git a/web/src/hooks/useCentralStatus.ts b/web/src/hooks/useCentralStatus.ts
new file mode 100644
index 0000000..7a9a722
--- /dev/null
+++ b/web/src/hooks/useCentralStatus.ts
@@ -0,0 +1,53 @@
+import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
+import { apiClient } from '../services/api/client';
+
+interface CentralStatus {
+ status: string;
+ version: string;
+ uptime: string;
+ uptimeSeconds: number;
+ dataDir: string;
+ appsDir: string;
+ setupFiles: string;
+ pendingRestart: boolean;
+}
+
+/**
+ * Hook to fetch Wild Central server status and trigger restarts
+ */
+export function useCentralStatus() {
+ const queryClient = useQueryClient();
+
+ const statusQuery = useQuery({
+ queryKey: ['central', 'status'],
+ queryFn: async (): Promise => {
+ return apiClient.get('/api/v1/status');
+ },
+ refetchInterval: 30000,
+ staleTime: 10000,
+ });
+
+ const restartMutation = useMutation({
+ mutationFn: () => apiClient.post('/api/v1/daemon/restart'),
+ onSuccess: () => {
+ // Poll until the daemon comes back up
+ const poll = setInterval(async () => {
+ try {
+ await apiClient.get('/api/v1/health');
+ clearInterval(poll);
+ queryClient.invalidateQueries({ queryKey: ['central', 'status'] });
+ } catch {
+ // still restarting
+ }
+ }, 1000);
+ // Give up after 30s
+ setTimeout(() => clearInterval(poll), 30000);
+ },
+ });
+
+ return {
+ ...statusQuery,
+ restart: () => restartMutation.mutate(),
+ isRestarting: restartMutation.isPending,
+ };
+}
diff --git a/web/src/hooks/useCert.ts b/web/src/hooks/useCert.ts
new file mode 100644
index 0000000..fb1ff4d
--- /dev/null
+++ b/web/src/hooks/useCert.ts
@@ -0,0 +1,39 @@
+import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
+import { certApi } from '../services/api/cert';
+
+export function useCert() {
+ const queryClient = useQueryClient();
+
+ const statusQuery = useQuery({
+ queryKey: ['cert', 'status'],
+ queryFn: () => certApi.getStatus(),
+ refetchInterval: false,
+ staleTime: 60000,
+ });
+
+ const provisionMutation = useMutation({
+ mutationFn: () => certApi.provision(),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['cert', 'status'] });
+ },
+ });
+
+ const renewMutation = useMutation({
+ mutationFn: () => certApi.renew(),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['cert', 'status'] });
+ },
+ });
+
+ return {
+ status: statusQuery.data,
+ isLoading: statusQuery.isLoading,
+
+ provision: provisionMutation.mutateAsync,
+ isProvisioning: provisionMutation.isPending,
+ provisionError: provisionMutation.error,
+
+ renew: renewMutation.mutateAsync,
+ isRenewing: renewMutation.isPending,
+ };
+}
diff --git a/web/src/hooks/useCloudflare.ts b/web/src/hooks/useCloudflare.ts
new file mode 100644
index 0000000..9f0a704
--- /dev/null
+++ b/web/src/hooks/useCloudflare.ts
@@ -0,0 +1,18 @@
+import { useQuery } from '@tanstack/react-query';
+import { cloudflareApi } from '../services/api/cloudflare';
+
+export const useCloudflare = () => {
+ const verifyQuery = useQuery({
+ queryKey: ['cloudflare', 'verify'],
+ queryFn: () => cloudflareApi.verify(),
+ refetchInterval: false,
+ staleTime: 60000,
+ });
+
+ return {
+ verification: verifyQuery.data,
+ isLoading: verifyQuery.isLoading,
+ error: verifyQuery.error,
+ refetch: verifyQuery.refetch,
+ };
+};
diff --git a/web/src/hooks/useConfig.ts b/web/src/hooks/useConfig.ts
new file mode 100644
index 0000000..9a654a5
--- /dev/null
+++ b/web/src/hooks/useConfig.ts
@@ -0,0 +1,62 @@
+import { useState, useEffect } from 'react';
+import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
+import { apiService } from '../services/api-legacy';
+import type { GlobalConfig, GlobalConfigResponse } from '../types';
+
+interface CreateConfigResponse {
+ status: string;
+}
+
+/**
+ * Hook for managing Wild Central global configuration
+ * Endpoint: /api/v1/config
+ * File: {dataDir}/config.yaml
+ */
+export const useConfig = () => {
+ const queryClient = useQueryClient();
+ const [showConfigSetup, setShowConfigSetup] = useState(false);
+
+ const configQuery = useQuery({
+ queryKey: ['globalConfig'],
+ queryFn: () => apiService.getConfig(),
+ });
+
+ // Update showConfigSetup based on query data
+ useEffect(() => {
+ if (configQuery.data) {
+ setShowConfigSetup(configQuery.data.configured === false);
+ }
+ }, [configQuery.data]);
+
+ const createConfigMutation = useMutation({
+ mutationFn: (config) => apiService.createConfig(config),
+ onSuccess: () => {
+ // Invalidate and refetch config after successful creation
+ queryClient.invalidateQueries({ queryKey: ['globalConfig'] });
+ setShowConfigSetup(false);
+ },
+ });
+
+ const updateConfigMutation = useMutation({
+ mutationFn: (config) => apiService.updateConfig(config),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['globalConfig'] });
+ // Immediately re-check daemon status so the pending-restart banner appears
+ queryClient.invalidateQueries({ queryKey: ['central', 'status'] });
+ },
+ });
+
+ return {
+ config: configQuery.data?.config || null,
+ isConfigured: configQuery.data?.configured || false,
+ showConfigSetup,
+ setShowConfigSetup,
+ isLoading: configQuery.isLoading,
+ isCreating: createConfigMutation.isPending,
+ isUpdating: updateConfigMutation.isPending,
+ error: configQuery.error || createConfigMutation.error || updateConfigMutation.error,
+ createConfig: createConfigMutation.mutate,
+ updateConfig: updateConfigMutation.mutateAsync,
+ refetch: configQuery.refetch,
+ };
+};
\ No newline at end of file
diff --git a/web/src/hooks/useCrowdSec.ts b/web/src/hooks/useCrowdSec.ts
new file mode 100644
index 0000000..00f2262
--- /dev/null
+++ b/web/src/hooks/useCrowdSec.ts
@@ -0,0 +1,128 @@
+import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
+import { crowdSecApi, type AddDecisionRequest } from '../services/api/networking';
+
+export const useCrowdSec = () => {
+ const queryClient = useQueryClient();
+
+ const statusQuery = useQuery({
+ queryKey: ['crowdsec', 'status'],
+ queryFn: () => crowdSecApi.getStatus(),
+ refetchInterval: false,
+ staleTime: 30000,
+ });
+
+ const summaryQuery = useQuery({
+ queryKey: ['crowdsec', 'summary'],
+ queryFn: () => crowdSecApi.getSummary(),
+ refetchInterval: false,
+ staleTime: 300000, // 5 minutes — CAPI bans change slowly
+ enabled: statusQuery.data?.active ?? false,
+ });
+
+ const alertsQuery = useQuery({
+ queryKey: ['crowdsec', 'alerts'],
+ queryFn: () => crowdSecApi.getAlerts(50),
+ refetchInterval: false,
+ staleTime: 60000,
+ enabled: statusQuery.data?.active ?? false,
+ });
+
+ const alertsGraphQuery = useQuery({
+ queryKey: ['crowdsec', 'alerts-graph'],
+ queryFn: () => crowdSecApi.getAlerts(500),
+ refetchInterval: false,
+ staleTime: 120000,
+ enabled: statusQuery.data?.active ?? false,
+ });
+
+ const decisionsQuery = useQuery({
+ queryKey: ['crowdsec', 'decisions'],
+ queryFn: () => crowdSecApi.getDecisions(),
+ refetchInterval: false,
+ staleTime: 30000,
+ enabled: statusQuery.data?.active ?? false,
+ });
+
+ const addDecisionMutation = useMutation({
+ mutationFn: (req: AddDecisionRequest) => crowdSecApi.addDecision(req),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['crowdsec', 'decisions'] });
+ queryClient.invalidateQueries({ queryKey: ['crowdsec', 'summary'] });
+ },
+ });
+
+ const deleteDecisionMutation = useMutation({
+ mutationFn: (id: number) => crowdSecApi.deleteDecision(id),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['crowdsec', 'decisions'] });
+ queryClient.invalidateQueries({ queryKey: ['crowdsec', 'summary'] });
+ },
+ });
+
+ const deleteDecisionByIPMutation = useMutation({
+ mutationFn: (ip: string) => crowdSecApi.deleteDecisionByIP(ip),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['crowdsec', 'decisions'] });
+ queryClient.invalidateQueries({ queryKey: ['crowdsec', 'summary'] });
+ },
+ });
+
+ const deleteBouncerMutation = useMutation({
+ mutationFn: (name: string) => crowdSecApi.deleteBouncer(name),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['crowdsec', 'status'] });
+ },
+ });
+
+ const deleteMachineMutation = useMutation({
+ mutationFn: (name: string) => crowdSecApi.deleteMachine(name),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['crowdsec', 'status'] });
+ },
+ });
+
+ const provisionMutation = useMutation({
+ mutationFn: (instanceName: string) => crowdSecApi.provision(instanceName),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['crowdsec', 'status'] });
+ },
+ });
+
+ return {
+ status: statusQuery.data,
+ isLoadingStatus: statusQuery.isLoading,
+ statusError: statusQuery.error,
+
+ summary: summaryQuery.data,
+ isLoadingSummary: summaryQuery.isLoading,
+
+ alerts: alertsQuery.data?.alerts ?? [],
+ isLoadingAlerts: alertsQuery.isLoading,
+ refetchAlerts: alertsQuery.refetch,
+
+ graphAlerts: alertsGraphQuery.data?.alerts ?? [],
+ isLoadingGraphAlerts: alertsGraphQuery.isLoading,
+
+ decisions: decisionsQuery.data?.decisions ?? [],
+ isLoadingDecisions: decisionsQuery.isLoading,
+
+ addDecision: addDecisionMutation.mutate,
+ isAddingDecision: addDecisionMutation.isPending,
+ addDecisionError: addDecisionMutation.error,
+
+ deleteDecision: deleteDecisionMutation.mutate,
+ isDeletingDecision: deleteDecisionMutation.isPending,
+
+ deleteDecisionByIP: deleteDecisionByIPMutation.mutate,
+ isDeletingByIP: deleteDecisionByIPMutation.isPending,
+
+ deleteBouncer: deleteBouncerMutation.mutate,
+ isDeletingBouncer: deleteBouncerMutation.isPending,
+
+ deleteMachine: deleteMachineMutation.mutate,
+ isDeletingMachine: deleteMachineMutation.isPending,
+
+ provision: provisionMutation.mutate,
+ isProvisioning: provisionMutation.isPending,
+ };
+};
diff --git a/web/src/hooks/useDdns.ts b/web/src/hooks/useDdns.ts
new file mode 100644
index 0000000..7f857d9
--- /dev/null
+++ b/web/src/hooks/useDdns.ts
@@ -0,0 +1,33 @@
+import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
+import { ddnsApi } from '../services/api/networking';
+
+export const useDdns = () => {
+ const queryClient = useQueryClient();
+
+ const statusQuery = useQuery({
+ queryKey: ['ddns', 'status'],
+ queryFn: () => ddnsApi.getStatus(),
+ refetchInterval: false,
+ staleTime: 30000,
+ });
+
+ const triggerMutation = useMutation({
+ mutationFn: () => ddnsApi.trigger(),
+ onSuccess: () => {
+ // Refresh status shortly after trigger
+ setTimeout(() => {
+ queryClient.invalidateQueries({ queryKey: ['ddns', 'status'] });
+ }, 2000);
+ },
+ });
+
+ return {
+ status: statusQuery.data,
+ isLoadingStatus: statusQuery.isLoading,
+
+ trigger: triggerMutation.mutate,
+ isTriggering: triggerMutation.isPending,
+ triggerData: triggerMutation.data,
+ triggerError: triggerMutation.error,
+ };
+};
diff --git a/web/src/hooks/useDhcp.ts b/web/src/hooks/useDhcp.ts
new file mode 100644
index 0000000..210d093
--- /dev/null
+++ b/web/src/hooks/useDhcp.ts
@@ -0,0 +1,42 @@
+import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
+import { dhcpApi } from '../services/api/networking';
+import type { DhcpStaticLease } from '../services/api/networking';
+
+export const useDhcp = () => {
+ const queryClient = useQueryClient();
+
+ const leasesQuery = useQuery({
+ queryKey: ['dhcp', 'leases'],
+ queryFn: () => dhcpApi.getLeases(),
+ refetchInterval: 30000,
+ staleTime: 20000,
+ });
+
+ const addStaticMutation = useMutation({
+ mutationFn: (lease: DhcpStaticLease) => dhcpApi.addStatic(lease),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['dhcp', 'leases'] });
+ },
+ });
+
+ const deleteStaticMutation = useMutation({
+ mutationFn: (mac: string) => dhcpApi.deleteStatic(mac),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['dhcp', 'leases'] });
+ },
+ });
+
+ return {
+ leases: leasesQuery.data?.leases ?? [],
+ isLoadingLeases: leasesQuery.isLoading,
+ leasesError: leasesQuery.error,
+ refetchLeases: leasesQuery.refetch,
+
+ addStatic: addStaticMutation.mutate,
+ isAddingStatic: addStaticMutation.isPending,
+ addStaticError: addStaticMutation.error,
+
+ deleteStatic: deleteStaticMutation.mutate,
+ isDeletingStatic: deleteStaticMutation.isPending,
+ };
+};
diff --git a/web/src/hooks/useDnsmasq.ts b/web/src/hooks/useDnsmasq.ts
new file mode 100644
index 0000000..e15d1af
--- /dev/null
+++ b/web/src/hooks/useDnsmasq.ts
@@ -0,0 +1,63 @@
+import { useMutation, useQuery } from '@tanstack/react-query';
+import { apiService } from '../services/api-legacy';
+import type { DnsmasqStatus, DnsmasqConfigResponse, StatusResponse } from '../types';
+
+export const useDnsmasq = () => {
+ // Query for status
+ const statusQuery = useQuery({
+ queryKey: ['dnsmasq', 'status'],
+ queryFn: () => apiService.getDnsmasqStatus(),
+ refetchInterval: 30000,
+ staleTime: 10000,
+ });
+
+ // Query for config
+ const configQuery = useQuery({
+ queryKey: ['dnsmasq', 'config'],
+ queryFn: () => apiService.getDnsmasqConfig(),
+ enabled: false, // Only fetch when explicitly called
+ });
+
+ // Mutation for generating config (with optional overwrite)
+ const generateMutation = useMutation({
+ mutationFn: (overwrite = false) => apiService.generateDnsmasqConfig(overwrite),
+ onSuccess: () => {
+ statusQuery.refetch();
+ configQuery.refetch();
+ },
+ });
+
+ // Mutation for restarting service
+ const restartMutation = useMutation({
+ mutationFn: () => apiService.restartDnsmasq(),
+ onSuccess: () => {
+ statusQuery.refetch();
+ },
+ });
+
+ return {
+ // Status
+ status: statusQuery.data,
+ isLoadingStatus: statusQuery.isLoading,
+ statusError: statusQuery.error,
+ refetchStatus: statusQuery.refetch,
+
+ // Config
+ config: configQuery.data,
+ isLoadingConfig: configQuery.isLoading,
+ configError: configQuery.error,
+ fetchConfig: configQuery.refetch,
+
+ // Generate
+ generateConfig: generateMutation.mutate,
+ generateData: generateMutation.data,
+ isGenerating: generateMutation.isPending,
+ generateError: generateMutation.error,
+
+ // Restart
+ restart: restartMutation.mutate,
+ restartData: restartMutation.data,
+ isRestarting: restartMutation.isPending,
+ restartError: restartMutation.error,
+ };
+};
\ No newline at end of file
diff --git a/web/src/hooks/useHaproxy.ts b/web/src/hooks/useHaproxy.ts
new file mode 100644
index 0000000..ac13a96
--- /dev/null
+++ b/web/src/hooks/useHaproxy.ts
@@ -0,0 +1,52 @@
+import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
+import { haproxyApi } from '../services/api/networking';
+
+export const useHaproxy = () => {
+ const queryClient = useQueryClient();
+
+ const statusQuery = useQuery({
+ queryKey: ['haproxy', 'status'],
+ queryFn: () => haproxyApi.getStatus(),
+ refetchInterval: 30000,
+ staleTime: 10000,
+ });
+
+ const statsQuery = useQuery({
+ queryKey: ['haproxy', 'stats'],
+ queryFn: () => haproxyApi.getStats(),
+ refetchInterval: 30000,
+ staleTime: 10000,
+ });
+
+ const generateMutation = useMutation({
+ mutationFn: () => haproxyApi.generate(),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['haproxy', 'status'] });
+ },
+ });
+
+ const restartMutation = useMutation({
+ mutationFn: () => haproxyApi.restart(),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['haproxy', 'status'] });
+ },
+ });
+
+ return {
+ status: statusQuery.data,
+ isLoadingStatus: statusQuery.isLoading,
+ statusError: statusQuery.error,
+
+ stats: statsQuery.data?.backends ?? [],
+ isLoadingStats: statsQuery.isLoading,
+
+ generate: generateMutation.mutate,
+ isGenerating: generateMutation.isPending,
+ generateData: generateMutation.data,
+ generateError: generateMutation.error,
+
+ restart: restartMutation.mutate,
+ isRestarting: restartMutation.isPending,
+ restartError: restartMutation.error,
+ };
+};
diff --git a/web/src/hooks/useHealth.ts b/web/src/hooks/useHealth.ts
new file mode 100644
index 0000000..23cb66f
--- /dev/null
+++ b/web/src/hooks/useHealth.ts
@@ -0,0 +1,13 @@
+import { useMutation } from '@tanstack/react-query';
+import { apiService } from '../services/api-legacy';
+
+interface HealthResponse {
+ service: string;
+ status: string;
+}
+
+export const useHealth = () => {
+ return useMutation({
+ mutationFn: apiService.getHealth,
+ });
+};
\ No newline at end of file
diff --git a/web/src/hooks/useMessages.ts b/web/src/hooks/useMessages.ts
new file mode 100644
index 0000000..a7bef13
--- /dev/null
+++ b/web/src/hooks/useMessages.ts
@@ -0,0 +1,33 @@
+import { useState } from 'react';
+import type { Messages } from '../types';
+
+export const useMessages = () => {
+ const [messages, setMessages] = useState({});
+
+ const setMessage = (key: string, message: string | null, type: 'info' | 'success' | 'error' = 'info') => {
+ if (message === null) {
+ setMessages(prev => {
+ const newMessages = { ...prev };
+ delete newMessages[key];
+ return newMessages;
+ });
+ } else {
+ setMessages(prev => ({ ...prev, [key]: { message, type } }));
+ }
+ };
+
+ const clearMessage = (key: string) => {
+ setMessage(key, null);
+ };
+
+ const clearAllMessages = () => {
+ setMessages({});
+ };
+
+ return {
+ messages,
+ setMessage,
+ clearMessage,
+ clearAllMessages,
+ };
+};
\ No newline at end of file
diff --git a/web/src/hooks/useNftables.ts b/web/src/hooks/useNftables.ts
new file mode 100644
index 0000000..22b86cb
--- /dev/null
+++ b/web/src/hooks/useNftables.ts
@@ -0,0 +1,39 @@
+import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
+import { nftablesApi } from '../services/api/networking';
+
+export const useNftables = () => {
+ const queryClient = useQueryClient();
+
+ const statusQuery = useQuery({
+ queryKey: ['nftables', 'status'],
+ queryFn: () => nftablesApi.getStatus(),
+ refetchInterval: false,
+ staleTime: 30000,
+ });
+
+ const interfacesQuery = useQuery({
+ queryKey: ['nftables', 'interfaces'],
+ queryFn: () => nftablesApi.getInterfaces(),
+ refetchInterval: false,
+ staleTime: 60000,
+ });
+
+ const applyMutation = useMutation({
+ mutationFn: () => nftablesApi.apply(),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['nftables', 'status'] });
+ },
+ });
+
+ return {
+ status: statusQuery.data,
+ isLoadingStatus: statusQuery.isLoading,
+ refetchStatus: statusQuery.refetch,
+
+ interfaces: interfacesQuery.data?.interfaces ?? [],
+
+ apply: applyMutation.mutate,
+ isApplying: applyMutation.isPending,
+ applyError: applyMutation.error,
+ };
+};
diff --git a/web/src/hooks/usePageHelp.tsx b/web/src/hooks/usePageHelp.tsx
new file mode 100644
index 0000000..46d4206
--- /dev/null
+++ b/web/src/hooks/usePageHelp.tsx
@@ -0,0 +1,25 @@
+import { useEffect } from 'react';
+import { useHelp } from '../contexts/HelpContext';
+import type { ReactNode } from 'react';
+
+interface PageHelpOptions {
+ title: string;
+ description: ReactNode;
+ icon?: ReactNode;
+ color?: string;
+ actions?: ReactNode;
+}
+
+export function usePageHelp(options: PageHelpOptions | null) {
+ const { setHelpContent } = useHelp();
+
+ useEffect(() => {
+ setHelpContent(options);
+
+ // Clear help content when component unmounts
+ return () => {
+ setHelpContent(null);
+ };
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ }, []); // Only run on mount/unmount
+}
diff --git a/web/src/hooks/useStatus.ts b/web/src/hooks/useStatus.ts
new file mode 100644
index 0000000..f91ed91
--- /dev/null
+++ b/web/src/hooks/useStatus.ts
@@ -0,0 +1,11 @@
+import { useQuery } from '@tanstack/react-query';
+import { apiService } from '../services/api-legacy';
+import type { Status } from '../types';
+
+export const useStatus = () => {
+ return useQuery({
+ queryKey: ['status'],
+ queryFn: apiService.getStatus,
+ refetchInterval: 30000, // Refetch every 30 seconds
+ });
+};
\ No newline at end of file
diff --git a/web/src/hooks/useVpn.ts b/web/src/hooks/useVpn.ts
new file mode 100644
index 0000000..815e238
--- /dev/null
+++ b/web/src/hooks/useVpn.ts
@@ -0,0 +1,93 @@
+import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
+import { vpnApi, type VpnConfig } from '../services/api/vpn';
+
+export function useVpn() {
+ const queryClient = useQueryClient();
+
+ const statusQuery = useQuery({
+ queryKey: ['vpn', 'status'],
+ queryFn: () => vpnApi.getStatus(),
+ refetchInterval: 10000,
+ staleTime: 5000,
+ });
+
+ const configQuery = useQuery({
+ queryKey: ['vpn', 'config'],
+ queryFn: () => vpnApi.getConfig(),
+ refetchInterval: false,
+ staleTime: 60000,
+ });
+
+ const peersQuery = useQuery({
+ queryKey: ['vpn', 'peers'],
+ queryFn: () => vpnApi.listPeers(),
+ refetchInterval: false,
+ staleTime: 30000,
+ });
+
+ const updateConfigMutation = useMutation({
+ mutationFn: (cfg: Omit) => vpnApi.updateConfig(cfg),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['vpn', 'config'] });
+ },
+ });
+
+ const generateKeypairMutation = useMutation({
+ mutationFn: () => vpnApi.generateKeypair(),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['vpn', 'config'] });
+ },
+ });
+
+ const applyMutation = useMutation({
+ mutationFn: () => vpnApi.apply(),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['vpn', 'status'] });
+ },
+ });
+
+ const addPeerMutation = useMutation({
+ mutationFn: (name: string) => vpnApi.addPeer(name),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['vpn', 'peers'] });
+ },
+ });
+
+ const deletePeerMutation = useMutation({
+ mutationFn: (id: string) => vpnApi.deletePeer(id),
+ onSuccess: () => {
+ queryClient.invalidateQueries({ queryKey: ['vpn', 'peers'] });
+ },
+ });
+
+ return {
+ status: statusQuery.data,
+ isLoadingStatus: statusQuery.isLoading,
+ statusError: statusQuery.error,
+
+ config: configQuery.data,
+ isLoadingConfig: configQuery.isLoading,
+ configError: configQuery.error,
+
+ peers: peersQuery.data?.peers ?? [],
+ isLoadingPeers: peersQuery.isLoading,
+
+ updateConfig: updateConfigMutation.mutateAsync,
+ isUpdatingConfig: updateConfigMutation.isPending,
+ updateConfigError: updateConfigMutation.error,
+
+ generateKeypair: generateKeypairMutation.mutateAsync,
+ isGeneratingKeypair: generateKeypairMutation.isPending,
+
+ apply: applyMutation.mutateAsync,
+ isApplying: applyMutation.isPending,
+ applyError: applyMutation.error,
+
+ addPeer: addPeerMutation.mutateAsync,
+ isAddingPeer: addPeerMutation.isPending,
+ addPeerError: addPeerMutation.error,
+
+ deletePeer: deletePeerMutation.mutateAsync,
+ isDeletingPeer: deletePeerMutation.isPending,
+ };
+}
diff --git a/web/src/index.css b/web/src/index.css
new file mode 100644
index 0000000..ede10ed
--- /dev/null
+++ b/web/src/index.css
@@ -0,0 +1,160 @@
+@import "tailwindcss";
+@import "tw-animate-css";
+@plugin "@tailwindcss/typography";
+
+@custom-variant dark (&:is(.dark *));
+
+@theme inline {
+ --radius-sm: calc(var(--radius) - 4px);
+ --radius-md: calc(var(--radius) - 2px);
+ --radius-lg: var(--radius);
+ --radius-xl: calc(var(--radius) + 4px);
+ --color-background: var(--background);
+ --color-foreground: var(--foreground);
+ --color-card: var(--card);
+ --color-card-foreground: var(--card-foreground);
+ --color-popover: var(--popover);
+ --color-popover-foreground: var(--popover-foreground);
+ --color-primary: var(--primary);
+ --color-primary-foreground: var(--primary-foreground);
+ --color-secondary: var(--secondary);
+ --color-secondary-foreground: var(--secondary-foreground);
+ --color-muted: var(--muted);
+ --color-muted-foreground: var(--muted-foreground);
+ --color-accent: var(--accent);
+ --color-accent-foreground: var(--accent-foreground);
+ --color-destructive: var(--destructive);
+ --color-border: var(--border);
+ --color-input: var(--input);
+ --color-ring: var(--ring);
+ --color-chart-1: var(--chart-1);
+ --color-chart-2: var(--chart-2);
+ --color-chart-3: var(--chart-3);
+ --color-chart-4: var(--chart-4);
+ --color-chart-5: var(--chart-5);
+ --color-sidebar: var(--sidebar);
+ --color-sidebar-foreground: var(--sidebar-foreground);
+ --color-sidebar-primary: var(--sidebar-primary);
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
+ --color-sidebar-accent: var(--sidebar-accent);
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
+ --color-sidebar-border: var(--sidebar-border);
+ --color-sidebar-ring: var(--sidebar-ring);
+}
+
+:root {
+ --radius: 0.625rem;
+ --background: oklch(1 0 0);
+ --foreground: oklch(0.145 0 0);
+ --card: oklch(1 0 0);
+ --card-foreground: oklch(0.145 0 0);
+ --popover: oklch(1 0 0);
+ --popover-foreground: oklch(0.145 0 0);
+ --primary: oklch(50.59% 0.12582 244.557);
+ --primary-foreground: oklch(0.985 0 0);
+ --secondary: oklch(0.97 0 0);
+ --secondary-foreground: oklch(0.205 0 0);
+ --muted: oklch(0.97 0 0);
+ --muted-foreground: oklch(0.556 0 0);
+ --accent: oklch(0.97 0 0);
+ --accent-foreground: oklch(0.205 0 0);
+ --destructive: oklch(0.577 0.245 27.325);
+ --border: oklch(0.922 0 0);
+ --input: oklch(0.922 0 0);
+ --ring: oklch(0.708 0 0);
+ --chart-1: oklch(0.646 0.222 41.116);
+ --chart-2: oklch(0.6 0.118 184.704);
+ --chart-3: oklch(0.398 0.07 227.392);
+ --chart-4: oklch(0.828 0.189 84.429);
+ --chart-5: oklch(0.769 0.188 70.08);
+ --sidebar: oklch(0.985 0 0);
+ --sidebar-foreground: oklch(0.145 0 0);
+ --sidebar-primary: oklch(0.205 0 0);
+ --sidebar-primary-foreground: oklch(0.985 0 0);
+ --sidebar-accent: oklch(0.97 0 0);
+ --sidebar-accent-foreground: oklch(0.205 0 0);
+ --sidebar-border: oklch(0.922 0 0);
+ --sidebar-ring: oklch(0.708 0 0);
+}
+
+.dark {
+ --background: oklch(0.145 0 0);
+ --foreground: oklch(0.985 0 0);
+ --card: oklch(0.205 0 0);
+ --card-foreground: oklch(0.985 0 0);
+ --popover: oklch(0.205 0 0);
+ --popover-foreground: oklch(0.985 0 0);
+ --primary: oklch(0.922 0 0);
+ --primary-foreground: oklch(0.205 0 0);
+ --secondary: oklch(0.269 0 0);
+ --secondary-foreground: oklch(0.985 0 0);
+ --muted: oklch(0.269 0 0);
+ --muted-foreground: oklch(0.708 0 0);
+ --accent: oklch(0.269 0 0);
+ --accent-foreground: oklch(0.985 0 0);
+ --destructive: oklch(0.704 0.191 22.216);
+ --border: oklch(1 0 0 / 10%);
+ --input: oklch(1 0 0 / 15%);
+ --ring: oklch(0.556 0 0);
+ --chart-1: oklch(0.488 0.243 264.376);
+ --chart-2: oklch(0.696 0.17 162.48);
+ --chart-3: oklch(0.769 0.188 70.08);
+ --chart-4: oklch(0.627 0.265 303.9);
+ --chart-5: oklch(0.645 0.246 16.439);
+ --sidebar: oklch(0.205 0 0);
+ --sidebar-foreground: oklch(0.985 0 0);
+ --sidebar-primary: oklch(0.488 0.243 264.376);
+ --sidebar-primary-foreground: oklch(0.985 0 0);
+ --sidebar-accent: oklch(0.269 0 0);
+ --sidebar-accent-foreground: oklch(0.985 0 0);
+ --sidebar-border: oklch(1 0 0 / 10%);
+ --sidebar-ring: oklch(0.556 0 0);
+}
+
+@layer base {
+ * {
+ @apply border-border outline-ring/50;
+ }
+ body {
+ @apply bg-background text-foreground;
+ }
+}
+
+/* Page transitions via View Transitions API (React Router v7) */
+::view-transition-old(root) {
+ animation: fade-and-slide-out 200ms ease-in forwards;
+}
+
+::view-transition-new(root) {
+ animation: fade-and-slide-in 200ms ease-out forwards;
+}
+
+@keyframes fade-and-slide-out {
+ from {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ to {
+ opacity: 0;
+ transform: translateY(-8px);
+ }
+}
+
+@keyframes fade-and-slide-in {
+ from {
+ opacity: 0;
+ transform: translateY(8px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+}
+
+/* Respect reduced motion preferences */
+@media (prefers-reduced-motion: reduce) {
+ ::view-transition-old(root),
+ ::view-transition-new(root) {
+ animation: none;
+ }
+}
diff --git a/web/src/lib/queryClient.ts b/web/src/lib/queryClient.ts
new file mode 100644
index 0000000..ee1fcd8
--- /dev/null
+++ b/web/src/lib/queryClient.ts
@@ -0,0 +1,15 @@
+import { QueryClient } from '@tanstack/react-query';
+
+export const queryClient = new QueryClient({
+ defaultOptions: {
+ queries: {
+ retry: 1,
+ staleTime: 5 * 60 * 1000, // 5 minutes
+ gcTime: 10 * 60 * 1000, // 10 minutes
+ refetchOnWindowFocus: false,
+ },
+ mutations: {
+ retry: 1,
+ },
+ },
+});
\ No newline at end of file
diff --git a/web/src/lib/utils.ts b/web/src/lib/utils.ts
new file mode 100644
index 0000000..bd0c391
--- /dev/null
+++ b/web/src/lib/utils.ts
@@ -0,0 +1,6 @@
+import { clsx, type ClassValue } from "clsx"
+import { twMerge } from "tailwind-merge"
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs))
+}
diff --git a/web/src/main.tsx b/web/src/main.tsx
new file mode 100644
index 0000000..7ba9fd1
--- /dev/null
+++ b/web/src/main.tsx
@@ -0,0 +1,24 @@
+import { StrictMode } from 'react';
+import ReactDOM from 'react-dom/client';
+import { QueryClientProvider } from '@tanstack/react-query';
+import './index.css';
+import App from './App';
+import { ThemeProvider } from './contexts/ThemeContext';
+import { queryClient } from './lib/queryClient';
+import { ErrorBoundary } from './components/ErrorBoundary';
+
+const root = ReactDOM.createRoot(
+ document.getElementById('root') as HTMLElement
+);
+
+root.render(
+
+
+
+
+
+
+
+
+
+);
\ No newline at end of file
diff --git a/web/src/router/CentralLayout.tsx b/web/src/router/CentralLayout.tsx
new file mode 100644
index 0000000..b256b01
--- /dev/null
+++ b/web/src/router/CentralLayout.tsx
@@ -0,0 +1,61 @@
+import { useState } from 'react';
+import { Outlet } from 'react-router';
+import { AppSidebar } from '../components/AppSidebar';
+import { SidebarProvider, SidebarInset, SidebarTrigger } from '../components/ui/sidebar';
+import { HelpProvider, useHelp } from '../contexts/HelpContext';
+import { HelpPanel } from '../components/HelpPanel';
+import { Button } from '../components/ui/button';
+import { HelpCircle } from 'lucide-react';
+
+function CentralLayoutContent() {
+ const { helpContent, setIsHelpOpen } = useHelp();
+
+ return (
+ <>
+
+
+
+
+
+
Wild Central
+
+ {helpContent && (
+ setIsHelpOpen(true)}
+ className="ml-auto"
+ >
+
+ Help
+
+ )}
+
+
+
+
+
+
+ >
+ );
+}
+
+export function CentralLayout() {
+ const [sidebarOpen, setSidebarOpen] = useState(
+ () => localStorage.getItem('sidebar_state') !== 'false'
+ );
+
+ return (
+
+ {
+ setSidebarOpen(open);
+ localStorage.setItem('sidebar_state', String(open));
+ }}
+ >
+
+
+
+ );
+}
diff --git a/web/src/router/index.tsx b/web/src/router/index.tsx
new file mode 100644
index 0000000..7448d6a
--- /dev/null
+++ b/web/src/router/index.tsx
@@ -0,0 +1,12 @@
+import { createBrowserRouter } from 'react-router';
+import { routes } from './routes';
+
+export const router = createBrowserRouter(routes, {
+ future: {
+ v7_startTransition: true,
+ v7_relativeSplatPath: true,
+ },
+});
+
+export { routes };
+export * from './pages/NotFoundPage';
diff --git a/web/src/router/pages/CentralPage.tsx b/web/src/router/pages/CentralPage.tsx
new file mode 100644
index 0000000..de909a5
--- /dev/null
+++ b/web/src/router/pages/CentralPage.tsx
@@ -0,0 +1,10 @@
+import { ErrorBoundary } from '../../components';
+import { CentralComponent } from '../../components/CentralComponent';
+
+export function CentralPage() {
+ return (
+
+
+
+ );
+}
diff --git a/web/src/router/pages/CloudflarePage.tsx b/web/src/router/pages/CloudflarePage.tsx
new file mode 100644
index 0000000..f2c1376
--- /dev/null
+++ b/web/src/router/pages/CloudflarePage.tsx
@@ -0,0 +1,10 @@
+import { ErrorBoundary } from '../../components';
+import { CloudflareComponent } from '../../components/CloudflareComponent';
+
+export function CloudflarePage() {
+ return (
+
+
+
+ );
+}
diff --git a/web/src/router/pages/CrowdSecPage.tsx b/web/src/router/pages/CrowdSecPage.tsx
new file mode 100644
index 0000000..dead5d2
--- /dev/null
+++ b/web/src/router/pages/CrowdSecPage.tsx
@@ -0,0 +1,10 @@
+import { ErrorBoundary } from '../../components';
+import { CrowdSecComponent } from '../../components/CrowdSecComponent';
+
+export function CrowdSecPage() {
+ return (
+
+
+
+ );
+}
diff --git a/web/src/router/pages/DdnsPage.tsx b/web/src/router/pages/DdnsPage.tsx
new file mode 100644
index 0000000..6a09e05
--- /dev/null
+++ b/web/src/router/pages/DdnsPage.tsx
@@ -0,0 +1,10 @@
+import { ErrorBoundary } from '../../components';
+import { DdnsComponent } from '../../components/DdnsComponent';
+
+export function DdnsPage() {
+ return (
+
+
+
+ );
+}
diff --git a/web/src/router/pages/DhcpPage.tsx b/web/src/router/pages/DhcpPage.tsx
new file mode 100644
index 0000000..851c422
--- /dev/null
+++ b/web/src/router/pages/DhcpPage.tsx
@@ -0,0 +1,10 @@
+import { ErrorBoundary } from '../../components';
+import { DhcpComponent } from '../../components/DhcpComponent';
+
+export function DhcpPage() {
+ return (
+
+
+
+ );
+}
diff --git a/web/src/router/pages/DnsPage.tsx b/web/src/router/pages/DnsPage.tsx
new file mode 100644
index 0000000..8633090
--- /dev/null
+++ b/web/src/router/pages/DnsPage.tsx
@@ -0,0 +1,10 @@
+import { ErrorBoundary } from '../../components';
+import { DnsComponent } from '../../components/DnsComponent';
+
+export function DnsPage() {
+ return (
+
+
+
+ );
+}
diff --git a/web/src/router/pages/FirewallPage.tsx b/web/src/router/pages/FirewallPage.tsx
new file mode 100644
index 0000000..f91e1c7
--- /dev/null
+++ b/web/src/router/pages/FirewallPage.tsx
@@ -0,0 +1,10 @@
+import { ErrorBoundary } from '../../components';
+import { FirewallComponent } from '../../components/FirewallComponent';
+
+export function FirewallPage() {
+ return (
+
+
+
+ );
+}
diff --git a/web/src/router/pages/IngressProxyPage.tsx b/web/src/router/pages/IngressProxyPage.tsx
new file mode 100644
index 0000000..e18582c
--- /dev/null
+++ b/web/src/router/pages/IngressProxyPage.tsx
@@ -0,0 +1,10 @@
+import { ErrorBoundary } from '../../components';
+import { IngressProxyComponent } from '../../components/IngressProxyComponent';
+
+export function IngressProxyPage() {
+ return (
+
+
+
+ );
+}
diff --git a/web/src/router/pages/LanDnsPage.tsx b/web/src/router/pages/LanDnsPage.tsx
new file mode 100644
index 0000000..7039107
--- /dev/null
+++ b/web/src/router/pages/LanDnsPage.tsx
@@ -0,0 +1,10 @@
+import { ErrorBoundary } from '../../components/ErrorBoundary';
+import { LanDnsComponent } from '../../components/LanDnsComponent';
+
+export function LanDnsPage() {
+ return (
+
+
+
+ );
+}
diff --git a/web/src/router/pages/NotFoundPage.tsx b/web/src/router/pages/NotFoundPage.tsx
new file mode 100644
index 0000000..4ef4fba
--- /dev/null
+++ b/web/src/router/pages/NotFoundPage.tsx
@@ -0,0 +1,30 @@
+import { Link } from 'react-router';
+import { AlertCircle, Home } from 'lucide-react';
+import { Card, CardHeader, CardTitle, CardDescription, CardContent } from '../../components/ui/card';
+import { Button } from '../../components/ui/button';
+
+export function NotFoundPage() {
+ return (
+
+
+
+
+ Page Not Found
+
+ The page you're looking for doesn't exist or has been moved.
+
+
+
+
+
+
+ Go to Home
+
+
+
+
+
+ );
+}
diff --git a/web/src/router/pages/VpnPage.tsx b/web/src/router/pages/VpnPage.tsx
new file mode 100644
index 0000000..f809b8e
--- /dev/null
+++ b/web/src/router/pages/VpnPage.tsx
@@ -0,0 +1,10 @@
+import { ErrorBoundary } from '../../components';
+import { VpnComponent } from '../../components/VpnComponent';
+
+export function VpnPage() {
+ return (
+
+
+
+ );
+}
diff --git a/web/src/router/routes.tsx b/web/src/router/routes.tsx
new file mode 100644
index 0000000..07c546c
--- /dev/null
+++ b/web/src/router/routes.tsx
@@ -0,0 +1,41 @@
+import { Navigate } from 'react-router';
+import type { RouteObject } from 'react-router';
+import { CentralLayout } from './CentralLayout';
+import { NotFoundPage } from './pages/NotFoundPage';
+import { CentralPage } from './pages/CentralPage';
+import { DhcpPage } from './pages/DhcpPage';
+import { FirewallPage } from './pages/FirewallPage';
+import { IngressProxyPage } from './pages/IngressProxyPage';
+import { DnsPage } from './pages/DnsPage';
+import { CrowdSecPage } from './pages/CrowdSecPage';
+import { VpnPage } from './pages/VpnPage';
+import { CloudflarePage } from './pages/CloudflarePage';
+import { DdnsPage } from './pages/DdnsPage';
+import { LanDnsPage } from './pages/LanDnsPage';
+
+export const routes: RouteObject[] = [
+ {
+ path: '/',
+ element: ,
+ },
+ {
+ path: '/central',
+ element: ,
+ children: [
+ { index: true, element: },
+ { path: 'cloudflare', element: },
+ { path: 'firewall', element: },
+ { path: 'dhcp', element: },
+ { path: 'crowdsec', element: },
+ { path: 'ingress', element: },
+ { path: 'dns', element: },
+ { path: 'ddns', element: },
+ { path: 'lan-dns', element: },
+ { path: 'vpn', element: },
+ ],
+ },
+ {
+ path: '*',
+ element: ,
+ },
+];
diff --git a/web/src/schemas/__tests__/config.test.ts b/web/src/schemas/__tests__/config.test.ts
new file mode 100644
index 0000000..1b49c6e
--- /dev/null
+++ b/web/src/schemas/__tests__/config.test.ts
@@ -0,0 +1,330 @@
+import { describe, it, expect } from 'vitest';
+import { configFormSchema, defaultConfigValues } from '../config';
+
+describe('config schema validation', () => {
+ describe('valid configurations', () => {
+ it('should validate default configuration', () => {
+ const result = configFormSchema.safeParse(defaultConfigValues);
+ expect(result.success).toBe(true);
+ });
+
+ it('should validate complete configuration', () => {
+ const validConfig = {
+ server: {
+ host: '0.0.0.0',
+ port: 5055,
+ },
+ cloud: {
+ domain: 'wildcloud.local',
+ internalDomain: 'cluster.local',
+ dhcpRange: '192.168.8.100,192.168.8.200',
+ dns: { ip: '192.168.8.50' },
+ router: { ip: '192.168.8.1' },
+ dnsmasq: { interface: 'eth0' },
+ },
+ cluster: {
+ endpointIp: '192.168.8.60',
+ nodes: { talos: { version: 'v1.8.0' } },
+ },
+ };
+
+ const result = configFormSchema.safeParse(validConfig);
+ expect(result.success).toBe(true);
+ });
+ });
+
+ describe('server validation', () => {
+ it('should reject empty host', () => {
+ const config = {
+ ...defaultConfigValues,
+ server: { ...defaultConfigValues.server, host: '' },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success).toBe(false);
+ if (!result.success) {
+ expect(result.error.errors[0].path).toEqual(['server', 'host']);
+ expect(result.error.errors[0].message).toBe('Host is required');
+ }
+ });
+
+ it('should reject invalid port ranges', () => {
+ const invalidPorts = [0, -1, 65536, 99999];
+
+ invalidPorts.forEach(port => {
+ const config = {
+ ...defaultConfigValues,
+ server: { ...defaultConfigValues.server, port },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success).toBe(false);
+ });
+ });
+
+ it('should accept valid port ranges', () => {
+ const validPorts = [1, 80, 443, 5055, 65535];
+
+ validPorts.forEach(port => {
+ const config = {
+ ...defaultConfigValues,
+ server: { ...defaultConfigValues.server, port },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success).toBe(true);
+ });
+ });
+ });
+
+ describe('IP address validation', () => {
+ it('should reject invalid IP addresses', () => {
+ const invalidIPs = [
+ '256.1.1.1',
+ '192.168.1',
+ '192.168.1.256',
+ 'not-an-ip',
+ '192.168.1.1.1',
+ '',
+ ];
+
+ invalidIPs.forEach(ip => {
+ const config = {
+ ...defaultConfigValues,
+ cloud: {
+ ...defaultConfigValues.cloud,
+ dns: { ip },
+ },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success).toBe(false);
+ });
+ });
+
+ it('should accept valid IP addresses', () => {
+ const validIPs = [
+ '192.168.1.1',
+ '10.0.0.1',
+ '172.16.0.1',
+ '127.0.0.1',
+ '0.0.0.0',
+ '255.255.255.255',
+ ];
+
+ validIPs.forEach(ip => {
+ const config = {
+ ...defaultConfigValues,
+ cloud: {
+ ...defaultConfigValues.cloud,
+ dns: { ip },
+ },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success).toBe(true);
+ });
+ });
+ });
+
+ describe('domain validation', () => {
+ it('should reject invalid domains', () => {
+ const invalidDomains = [
+ '',
+ '.com',
+ 'domain.',
+ 'domain..com',
+ 'domain-.com',
+ '-domain.com',
+ 'domain.c',
+ 'very-long-domain-name-that-exceeds-the-maximum-allowed-length-for-a-domain-label.com',
+ ];
+
+ invalidDomains.forEach(domain => {
+ const config = {
+ ...defaultConfigValues,
+ cloud: {
+ ...defaultConfigValues.cloud,
+ domain,
+ },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success, `Domain "${domain}" should be invalid but passed validation`).toBe(false);
+ });
+ });
+
+ it('should accept valid domains', () => {
+ const validDomains = [
+ 'wildcloud.local',
+ 'example.com',
+ 'sub.domain.com',
+ 'localhost',
+ 'test123.example.org',
+ 'my-domain.net',
+ ];
+
+ validDomains.forEach(domain => {
+ const config = {
+ ...defaultConfigValues,
+ cloud: {
+ ...defaultConfigValues.cloud,
+ domain,
+ },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success).toBe(true);
+ });
+ });
+ });
+
+ describe('DHCP range validation', () => {
+ it('should reject invalid DHCP ranges', () => {
+ const invalidRanges = [
+ '',
+ '192.168.1.1',
+ '192.168.1.1,',
+ ',192.168.1.200',
+ '192.168.1.1-192.168.1.200',
+ '192.168.1.1,192.168.1.256',
+ 'start,end',
+ ];
+
+ invalidRanges.forEach(dhcpRange => {
+ const config = {
+ ...defaultConfigValues,
+ cloud: {
+ ...defaultConfigValues.cloud,
+ dhcpRange,
+ },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success).toBe(false);
+ });
+ });
+
+ it('should accept valid DHCP ranges', () => {
+ const validRanges = [
+ '192.168.1.100,192.168.1.200',
+ '10.0.0.10,10.0.0.100',
+ '172.16.1.1,172.16.1.254',
+ ];
+
+ validRanges.forEach(dhcpRange => {
+ const config = {
+ ...defaultConfigValues,
+ cloud: {
+ ...defaultConfigValues.cloud,
+ dhcpRange,
+ },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success).toBe(true);
+ });
+ });
+ });
+
+ describe('version validation', () => {
+ it('should reject invalid versions', () => {
+ const invalidVersions = [
+ '',
+ '1.8.0',
+ 'v1.8',
+ 'v1.8.0.1',
+ 'version1.8.0',
+ 'v1.8.0-beta',
+ ];
+
+ invalidVersions.forEach(version => {
+ const config = {
+ ...defaultConfigValues,
+ cluster: {
+ ...defaultConfigValues.cluster,
+ nodes: {
+ talos: { version },
+ },
+ },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success).toBe(false);
+ });
+ });
+
+ it('should accept valid versions', () => {
+ const validVersions = [
+ 'v1.8.0',
+ 'v1.0.0',
+ 'v10.20.30',
+ 'v0.0.1',
+ ];
+
+ validVersions.forEach(version => {
+ const config = {
+ ...defaultConfigValues,
+ cluster: {
+ ...defaultConfigValues.cluster,
+ nodes: {
+ talos: { version },
+ },
+ },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success).toBe(true);
+ });
+ });
+ });
+
+ describe('network interface validation', () => {
+ it('should reject invalid interfaces', () => {
+ const invalidInterfaces = [
+ '',
+ 'eth-0',
+ 'eth.0',
+ 'eth 0',
+ 'eth/0',
+ ];
+
+ invalidInterfaces.forEach(interfaceName => {
+ const config = {
+ ...defaultConfigValues,
+ cloud: {
+ ...defaultConfigValues.cloud,
+ dnsmasq: { interface: interfaceName },
+ },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success).toBe(false);
+ });
+ });
+
+ it('should accept valid interfaces', () => {
+ const validInterfaces = [
+ 'eth0',
+ 'eth1',
+ 'enp0s3',
+ 'wlan0',
+ 'lo',
+ 'br0',
+ ];
+
+ validInterfaces.forEach(interfaceName => {
+ const config = {
+ ...defaultConfigValues,
+ cloud: {
+ ...defaultConfigValues.cloud,
+ dnsmasq: { interface: interfaceName },
+ },
+ };
+
+ const result = configFormSchema.safeParse(config);
+ expect(result.success).toBe(true);
+ });
+ });
+ });
+});
\ No newline at end of file
diff --git a/web/src/schemas/config.ts b/web/src/schemas/config.ts
new file mode 100644
index 0000000..e8a67d2
--- /dev/null
+++ b/web/src/schemas/config.ts
@@ -0,0 +1,187 @@
+import { z } from 'zod';
+
+// Network validation helpers
+const ipAddressSchema = z.string().regex(
+ /^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,
+ 'Must be a valid IP address'
+);
+
+const domainSchema = z.string().regex(
+ /^[a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(\.[a-zA-Z]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9]))*$/,
+ 'Must be a valid domain name'
+);
+
+const dhcpRangeSchema = z.string().regex(
+ /^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?),(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/,
+ 'Must be in format: start_ip,end_ip (e.g., 192.168.1.100,192.168.1.200)'
+);
+
+const interfaceSchema = z.string().regex(
+ /^[a-zA-Z0-9]+$/,
+ 'Must be a valid network interface name (e.g., eth0, enp0s3)'
+);
+
+const versionSchema = z.string().regex(
+ /^v\d+\.\d+\.\d+$/,
+ 'Must be a valid version format (e.g., v1.8.0)'
+);
+
+// Server configuration schema
+const serverConfigSchema = z.object({
+ host: z.string().min(1, 'Host is required').default('0.0.0.0'),
+ port: z.number()
+ .int('Port must be an integer')
+ .min(1, 'Port must be at least 1')
+ .max(65535, 'Port must be at most 65535')
+ .default(5055),
+});
+
+// Cloud DNS configuration schema
+const cloudDnsSchema = z.object({
+ ip: ipAddressSchema,
+});
+
+// Cloud router configuration schema
+const cloudRouterSchema = z.object({
+ ip: ipAddressSchema,
+});
+
+// Cloud dnsmasq configuration schema
+const cloudDnsmasqSchema = z.object({
+ interface: interfaceSchema,
+});
+
+// Cloud configuration schema
+const cloudConfigSchema = z.object({
+ domain: domainSchema,
+ internalDomain: domainSchema,
+ dhcpRange: dhcpRangeSchema,
+ dns: cloudDnsSchema,
+ router: cloudRouterSchema,
+ dnsmasq: cloudDnsmasqSchema,
+});
+
+// Talos configuration schema
+const talosConfigSchema = z.object({
+ version: versionSchema,
+});
+
+// Nodes configuration schema
+const nodesConfigSchema = z.object({
+ talos: talosConfigSchema,
+});
+
+// Cluster configuration schema
+const clusterConfigSchema = z.object({
+ endpointIp: ipAddressSchema,
+ hostnamePrefix: z.string().optional(),
+ nodes: nodesConfigSchema,
+});
+
+// Wildcloud configuration schema (optional)
+const wildcloudConfigSchema = z.object({
+ repository: z.string().min(1, 'Repository is required'),
+ currentPhase: z.enum(['setup', 'infrastructure', 'cluster', 'apps']).optional(),
+ completedPhases: z.array(z.enum(['setup', 'infrastructure', 'cluster', 'apps'])).optional(),
+}).optional();
+
+// Main configuration schema
+export const configSchema = z.object({
+ server: serverConfigSchema,
+ cloud: cloudConfigSchema,
+ cluster: clusterConfigSchema,
+ wildcloud: wildcloudConfigSchema,
+});
+
+// Form schema for creating new configurations (some fields can be optional for partial updates)
+export const configFormSchema = z.object({
+ server: z.object({
+ host: z.string().min(1, 'Host is required'),
+ port: z.coerce.number()
+ .int('Port must be an integer')
+ .min(1, 'Port must be at least 1')
+ .max(65535, 'Port must be at most 65535'),
+ }),
+ cloud: z.object({
+ domain: z.string().min(1, 'Domain is required').refine(
+ (val) => domainSchema.safeParse(val).success,
+ 'Must be a valid domain name'
+ ),
+ internalDomain: z.string().min(1, 'Internal domain is required').refine(
+ (val) => domainSchema.safeParse(val).success,
+ 'Must be a valid domain name'
+ ),
+ dhcpRange: z.string().min(1, 'DHCP range is required').refine(
+ (val) => dhcpRangeSchema.safeParse(val).success,
+ 'Must be in format: start_ip,end_ip'
+ ),
+ dns: z.object({
+ ip: z.string().min(1, 'DNS IP is required').refine(
+ (val) => ipAddressSchema.safeParse(val).success,
+ 'Must be a valid IP address'
+ ),
+ }),
+ router: z.object({
+ ip: z.string().min(1, 'Router IP is required').refine(
+ (val) => ipAddressSchema.safeParse(val).success,
+ 'Must be a valid IP address'
+ ),
+ }),
+ dnsmasq: z.object({
+ interface: z.string().min(1, 'Interface is required').refine(
+ (val) => interfaceSchema.safeParse(val).success,
+ 'Must be a valid network interface name'
+ ),
+ }),
+ }),
+ cluster: z.object({
+ endpointIp: z.string().min(1, 'Endpoint IP is required').refine(
+ (val) => ipAddressSchema.safeParse(val).success,
+ 'Must be a valid IP address'
+ ),
+ hostnamePrefix: z.string().optional(),
+ nodes: z.object({
+ talos: z.object({
+ version: z.string().min(1, 'Talos version is required').refine(
+ (val) => versionSchema.safeParse(val).success,
+ 'Must be a valid version format (e.g., v1.8.0)'
+ ),
+ }),
+ }),
+ }),
+});
+
+// Type exports
+export type Config = z.infer;
+export type ConfigFormData = z.infer;
+
+// Default values for the form
+export const defaultConfigValues: ConfigFormData = {
+ server: {
+ host: '0.0.0.0',
+ port: 5055,
+ },
+ cloud: {
+ domain: 'wildcloud.local',
+ internalDomain: 'cluster.local',
+ dhcpRange: '192.168.8.100,192.168.8.200',
+ dns: {
+ ip: '192.168.8.50',
+ },
+ router: {
+ ip: '192.168.8.1',
+ },
+ dnsmasq: {
+ interface: 'eth0',
+ },
+ },
+ cluster: {
+ endpointIp: '192.168.8.60',
+ hostnamePrefix: '',
+ nodes: {
+ talos: {
+ version: 'v1.8.0',
+ },
+ },
+ },
+};
\ No newline at end of file
diff --git a/web/src/services/api-legacy.ts b/web/src/services/api-legacy.ts
new file mode 100644
index 0000000..3aede58
--- /dev/null
+++ b/web/src/services/api-legacy.ts
@@ -0,0 +1,132 @@
+import type {
+ Status,
+ GlobalConfig,
+ GlobalConfigResponse,
+ HealthResponse,
+ StatusResponse,
+ NetworkInfo,
+ DnsmasqStatus,
+ DnsmasqConfigResponse
+} from '../types';
+import { getApiBaseUrl } from './api/config';
+
+const API_BASE = getApiBaseUrl();
+
+class ApiService {
+ private baseUrl: string;
+
+ constructor(baseUrl: string = API_BASE) {
+ this.baseUrl = baseUrl;
+ }
+
+ private async request(endpoint: string, options?: RequestInit): Promise {
+ const url = `${this.baseUrl}${endpoint}`;
+ const response = await fetch(url, options);
+
+ if (!response.ok) {
+ throw new Error(`HTTP error! status: ${response.status}`);
+ }
+
+ return response.json();
+ }
+
+ private async requestText(endpoint: string, options?: RequestInit): Promise {
+ const url = `${this.baseUrl}${endpoint}`;
+ const response = await fetch(url, options);
+
+ if (!response.ok) {
+ throw new Error(`HTTP error! status: ${response.status}`);
+ }
+
+ return response.text();
+ }
+
+ async getStatus(): Promise {
+ return this.request('/api/status');
+ }
+
+ async getHealth(): Promise {
+ return this.request('/api/v1/health');
+ }
+
+ // ========================================
+ // Global Config APIs (Wild Central level)
+ // Endpoint: /api/v1/config
+ // ========================================
+
+ async getConfig(): Promise {
+ return this.request('/api/v1/config');
+ }
+
+ async getConfigYaml(): Promise {
+ return this.requestText('/api/v1/config/yaml');
+ }
+
+ async updateConfigYaml(yamlContent: string): Promise {
+ return this.request('/api/v1/config/yaml', {
+ method: 'PUT',
+ headers: { 'Content-Type': 'text/plain' },
+ body: yamlContent
+ });
+ }
+
+ async createConfig(config: GlobalConfig): Promise {
+ return this.request('/api/v1/config', {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify(config)
+ });
+ }
+
+ async updateConfig(config: GlobalConfig): Promise {
+ return this.request('/api/v1/config', {
+ method: 'PUT',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify(config)
+ });
+ }
+
+ async getDnsmasqStatus(): Promise {
+ return this.request('/api/v1/dnsmasq/status');
+ }
+
+ async getDnsmasqConfig(): Promise {
+ return this.request('/api/v1/dnsmasq/config');
+ }
+
+ async writeDnsmasqConfig(content: string): Promise {
+ return this.request('/api/v1/dnsmasq/config', {
+ method: 'PUT',
+ headers: {
+ 'Content-Type': 'application/json',
+ },
+ body: JSON.stringify({ content }),
+ });
+ }
+
+ async generateDnsmasqConfig(overwrite: boolean = false): Promise {
+ const url = overwrite ? '/api/v1/dnsmasq/generate?overwrite=true' : '/api/v1/dnsmasq/generate';
+ return this.request(url, {
+ method: 'POST'
+ });
+ }
+
+ async restartDnsmasq(): Promise {
+ return this.request('/api/v1/dnsmasq/restart', {
+ method: 'POST'
+ });
+ }
+
+ async getNetworkInfo(): Promise {
+ return this.request('/api/v1/network/info');
+ }
+
+ async downloadPXEAssets(): Promise {
+ return this.request('/api/v1/assets', {
+ method: 'POST'
+ });
+ }
+}
+
+export const apiService = new ApiService();
+export default ApiService;
\ No newline at end of file
diff --git a/web/src/services/api.ts b/web/src/services/api.ts
new file mode 100644
index 0000000..9d598a1
--- /dev/null
+++ b/web/src/services/api.ts
@@ -0,0 +1,3 @@
+// Re-export everything from the modular API structure
+// This file maintains backward compatibility for imports from '../services/api'
+export * from './api/index';
diff --git a/web/src/services/api/cert.ts b/web/src/services/api/cert.ts
new file mode 100644
index 0000000..db5597d
--- /dev/null
+++ b/web/src/services/api/cert.ts
@@ -0,0 +1,37 @@
+import { apiClient } from './client';
+
+export interface CertInfo {
+ exists: boolean;
+ domain: string;
+ expiry?: string;
+ certPath?: string;
+ keyPath?: string;
+ daysLeft?: number;
+ issuerCN?: string;
+}
+
+export interface CertStatusResponse {
+ configured: boolean;
+ domain?: string;
+ message?: string;
+ cert?: CertInfo;
+}
+
+export interface CertProvisionResponse {
+ message: string;
+ cert: CertInfo;
+}
+
+export const certApi = {
+ async getStatus(): Promise {
+ return apiClient.get('/api/v1/cert/status');
+ },
+
+ async provision(): Promise {
+ return apiClient.post('/api/v1/cert/provision', {});
+ },
+
+ async renew(): Promise<{ message: string }> {
+ return apiClient.post('/api/v1/cert/renew', {});
+ },
+};
diff --git a/web/src/services/api/client.ts b/web/src/services/api/client.ts
new file mode 100644
index 0000000..41affc0
--- /dev/null
+++ b/web/src/services/api/client.ts
@@ -0,0 +1,142 @@
+export class ApiError extends Error {
+ statusCode: number;
+ details?: unknown;
+
+ constructor(
+ message: string,
+ statusCode: number,
+ details?: unknown
+ ) {
+ super(message);
+ this.name = 'ApiError';
+ this.statusCode = statusCode;
+ this.details = details;
+ }
+}
+
+interface ErrorResponseBody {
+ error?: string;
+ details?: unknown;
+}
+
+import { getApiBaseUrl } from './config';
+
+export class ApiClient {
+ private baseUrl: string;
+
+ constructor(baseUrl: string = getApiBaseUrl()) {
+ this.baseUrl = baseUrl;
+ }
+
+ getBaseURL(): string {
+ return this.baseUrl;
+ }
+
+ private async request(
+ endpoint: string,
+ options?: RequestInit
+ ): Promise {
+ const url = `${this.baseUrl}${endpoint}`;
+
+ try {
+ const response = await fetch(url, {
+ ...options,
+ headers: {
+ 'Content-Type': 'application/json',
+ ...options?.headers,
+ },
+ });
+
+ if (!response.ok) {
+ const errorData: ErrorResponseBody = await response.json().catch(() => ({}));
+ throw new ApiError(
+ errorData.error || `HTTP ${response.status}: ${response.statusText}`,
+ response.status,
+ errorData
+ );
+ }
+
+ // Handle 204 No Content — intentional no-data for void operations
+ if (response.status === 204) {
+ return undefined as unknown as T;
+ }
+
+ return response.json();
+ } catch (error) {
+ if (error instanceof ApiError) {
+ throw error;
+ }
+ throw new ApiError(
+ error instanceof Error ? error.message : 'Network error',
+ 0
+ );
+ }
+ }
+
+ async get(endpoint: string): Promise {
+ return this.request(endpoint, { method: 'GET' });
+ }
+
+ async post(endpoint: string, data?: unknown): Promise {
+ return this.request(endpoint, {
+ method: 'POST',
+ body: data ? JSON.stringify(data) : undefined,
+ });
+ }
+
+ async put(endpoint: string, data?: unknown): Promise {
+ return this.request(endpoint, {
+ method: 'PUT',
+ body: data ? JSON.stringify(data) : undefined,
+ });
+ }
+
+ async patch(endpoint: string, data?: unknown): Promise {
+ return this.request(endpoint, {
+ method: 'PATCH',
+ body: data ? JSON.stringify(data) : undefined,
+ });
+ }
+
+ async delete(endpoint: string): Promise {
+ return this.request(endpoint, { method: 'DELETE' });
+ }
+
+ async getText(endpoint: string): Promise {
+ const url = `${this.baseUrl}${endpoint}`;
+ const response = await fetch(url);
+
+ if (!response.ok) {
+ const errorData = await response.json().catch(() => ({}));
+ throw new ApiError(
+ errorData.error || `HTTP ${response.status}: ${response.statusText}`,
+ response.status,
+ errorData
+ );
+ }
+
+ return response.text();
+ }
+
+ async putText(endpoint: string, text: string): Promise<{ message?: string; [key: string]: unknown }> {
+ const url = `${this.baseUrl}${endpoint}`;
+ const response = await fetch(url, {
+ method: 'PUT',
+ headers: { 'Content-Type': 'text/plain' },
+ body: text,
+ });
+
+ if (!response.ok) {
+ const errorData = await response.json().catch(() => ({}));
+ throw new ApiError(
+ errorData.error || `HTTP ${response.status}: ${response.statusText}`,
+ response.status,
+ errorData
+ );
+ }
+
+ return response.json();
+ }
+}
+
+export const apiClient = new ApiClient();
diff --git a/web/src/services/api/cloudflare.ts b/web/src/services/api/cloudflare.ts
new file mode 100644
index 0000000..0e3589d
--- /dev/null
+++ b/web/src/services/api/cloudflare.ts
@@ -0,0 +1,20 @@
+import { apiClient } from './client';
+
+export interface CloudflareZone {
+ id: string;
+ name: string;
+}
+
+export interface CloudflareVerifyResponse {
+ tokenConfigured: boolean;
+ tokenValid: boolean;
+ tokenStatus: string;
+ zones: CloudflareZone[] | null;
+ error?: string;
+}
+
+export const cloudflareApi = {
+ async verify(): Promise {
+ return apiClient.get('/api/v1/cloudflare/verify');
+ },
+};
diff --git a/web/src/services/api/config.ts b/web/src/services/api/config.ts
new file mode 100644
index 0000000..89e9d44
--- /dev/null
+++ b/web/src/services/api/config.ts
@@ -0,0 +1,12 @@
+/**
+ * Centralized API configuration
+ * All API clients should use this to get the base URL
+ */
+
+/**
+ * Get the API base URL from environment or default to empty string (for proxy)
+ * Empty string means use relative URLs that go through Vite's proxy in development
+ */
+export function getApiBaseUrl(): string {
+ return import.meta.env.VITE_API_BASE_URL || '';
+}
diff --git a/web/src/services/api/dnsmasq.ts b/web/src/services/api/dnsmasq.ts
new file mode 100644
index 0000000..2863756
--- /dev/null
+++ b/web/src/services/api/dnsmasq.ts
@@ -0,0 +1,28 @@
+import { apiClient } from './client';
+
+export interface DnsmasqStatus {
+ running: boolean;
+ status?: string;
+}
+
+export const dnsmasqApi = {
+ async getStatus(): Promise {
+ return apiClient.get('/api/v1/dnsmasq/status');
+ },
+
+ async getConfig(): Promise {
+ return apiClient.getText('/api/v1/dnsmasq/config');
+ },
+
+ async restart(): Promise<{ message: string }> {
+ return apiClient.post('/api/v1/dnsmasq/restart');
+ },
+
+ async generate(): Promise<{ message: string }> {
+ return apiClient.post('/api/v1/dnsmasq/generate');
+ },
+
+ async update(): Promise<{ message: string }> {
+ return apiClient.post('/api/v1/dnsmasq/update');
+ },
+};
diff --git a/web/src/services/api/index.ts b/web/src/services/api/index.ts
new file mode 100644
index 0000000..1118cca
--- /dev/null
+++ b/web/src/services/api/index.ts
@@ -0,0 +1,11 @@
+export { apiClient, ApiError } from './client';
+export * from './types';
+export { dnsmasqApi } from './dnsmasq';
+export { haproxyApi, ddnsApi, dhcpApi, secretsApi, crowdSecApi } from './networking';
+export type { HaproxyStatus, HaproxyGenerateResult, DdnsStatus, DhcpLease, DhcpStaticLease, BackendStat, CrowdSecStatus, CrowdSecMachine, CrowdSecBouncer, CrowdSecDecision, CrowdSecProvisionResult } from './networking';
+export { vpnApi } from './vpn';
+export type { VpnStatus, VpnConfig, VpnPeer, VpnPeerConfig } from './vpn';
+export { certApi } from './cert';
+export type { CertStatusResponse, CertInfo } from './cert';
+export { cloudflareApi } from './cloudflare';
+export type { CloudflareVerifyResponse, CloudflareZone } from './cloudflare';
diff --git a/web/src/services/api/networking.ts b/web/src/services/api/networking.ts
new file mode 100644
index 0000000..d1badb2
--- /dev/null
+++ b/web/src/services/api/networking.ts
@@ -0,0 +1,270 @@
+import { apiClient } from './client';
+
+// HAProxy
+
+export interface HaproxyInstanceRoute {
+ name: string;
+ domain: string;
+ backendIP: string;
+ extraDomains?: string[];
+}
+
+export interface HaproxyStatus {
+ status: string;
+ pid?: number;
+ configFile?: string;
+ lastRestart?: string;
+ routes?: HaproxyInstanceRoute[];
+}
+
+export interface HaproxyGenerateResult {
+ message: string;
+ config?: string;
+ routes?: HaproxyInstanceRoute[];
+ customRoutes?: number;
+}
+
+export const haproxyApi = {
+ async getStatus(): Promise {
+ return apiClient.get('/api/v1/haproxy/status');
+ },
+
+ async getConfig(): Promise<{ content: string; config_file: string }> {
+ return apiClient.get('/api/v1/haproxy/config');
+ },
+
+ async generate(): Promise {
+ return apiClient.post('/api/v1/haproxy/generate');
+ },
+
+ async restart(): Promise<{ message: string }> {
+ return apiClient.post('/api/v1/haproxy/restart');
+ },
+
+ async getStats(): Promise<{ backends: BackendStat[] }> {
+ return apiClient.get('/api/v1/haproxy/stats');
+ },
+};
+
+export interface BackendStat {
+ name: string;
+ status: string;
+ activeConns: number;
+ rate: number;
+ peakRate: number;
+ totalConns: number;
+ errors: number;
+}
+
+// DDNS
+
+export interface DdnsRecordStatus {
+ name: string;
+ ip?: string;
+ ok: boolean;
+ error?: string;
+}
+
+export interface DdnsStatus {
+ enabled: boolean;
+ currentIP?: string;
+ lastChecked?: string;
+ lastUpdated?: string;
+ lastError?: string;
+ records?: DdnsRecordStatus[];
+ message?: string;
+}
+
+export const ddnsApi = {
+ async getStatus(): Promise {
+ return apiClient.get('/api/v1/ddns/status');
+ },
+
+ async trigger(): Promise<{ message: string }> {
+ return apiClient.post('/api/v1/ddns/trigger');
+ },
+};
+
+// DHCP
+
+export interface DhcpLease {
+ expiry: string;
+ mac: string;
+ ip: string;
+ hostname?: string;
+}
+
+export interface DhcpStaticLease {
+ mac: string;
+ ip: string;
+ hostname?: string;
+}
+
+export const dhcpApi = {
+ async getLeases(): Promise<{ leases: DhcpLease[] }> {
+ return apiClient.get('/api/v1/dnsmasq/dhcp/leases');
+ },
+
+ async addStatic(lease: DhcpStaticLease): Promise<{ message: string }> {
+ return apiClient.post('/api/v1/dnsmasq/dhcp/static', lease);
+ },
+
+ async deleteStatic(mac: string): Promise<{ message: string }> {
+ return apiClient.delete(`/api/v1/dnsmasq/dhcp/static/${encodeURIComponent(mac)}`);
+ },
+};
+
+// nftables
+
+export interface NftablesStatus {
+ rulesFile: string;
+ rules: string;
+}
+
+export interface NetworkInterface {
+ name: string;
+ addresses: string[];
+}
+
+export const nftablesApi = {
+ async getStatus(): Promise {
+ return apiClient.get('/api/v1/nftables/status');
+ },
+
+ async apply(): Promise<{ message: string }> {
+ return apiClient.post('/api/v1/nftables/apply');
+ },
+
+ async getInterfaces(): Promise<{ interfaces: NetworkInterface[] }> {
+ return apiClient.get('/api/v1/nftables/interfaces');
+ },
+};
+
+// CrowdSec LAPI
+
+export interface CrowdSecMachine {
+ machineId: string;
+ isValidated: boolean;
+ last_push?: string;
+ last_heartbeat?: string;
+ ipAddress?: string;
+ version?: string;
+}
+
+export interface CrowdSecBanSummary {
+ total: number;
+ byReason: Record;
+}
+
+export interface CrowdSecBouncer {
+ name: string;
+ revoked: boolean;
+ ipAddress?: string;
+ type?: string;
+ version?: string;
+ lastPull?: string;
+}
+
+export interface CrowdSecDecision {
+ id: number;
+ value: string;
+ type: string;
+ scope: string;
+ reason: string;
+ origin: string;
+ duration?: string;
+}
+
+export interface CrowdSecAlert {
+ id: number;
+ scenario: string;
+ message: string;
+ createdAt: string;
+ machineId?: string;
+ sourceIP?: string;
+ country?: string;
+ asName?: string;
+}
+
+export interface AddDecisionRequest {
+ ip: string;
+ type: 'ban' | 'allow';
+ reason?: string;
+ duration?: string;
+}
+
+export interface CrowdSecStatus {
+ active: boolean;
+ firewallBouncer: boolean;
+ machines: CrowdSecMachine[];
+ bouncers: CrowdSecBouncer[];
+}
+
+export interface CrowdSecProvisionResult {
+ message: string;
+ centralLapiUrl: string;
+ agentUsername: string;
+}
+
+export const crowdSecApi = {
+ async getStatus(): Promise {
+ return apiClient.get('/api/v1/crowdsec/status');
+ },
+
+ async getDecisions(): Promise<{ decisions: CrowdSecDecision[] }> {
+ return apiClient.get('/api/v1/crowdsec/decisions');
+ },
+
+ async deleteDecision(id: number): Promise<{ message: string }> {
+ return apiClient.delete(`/api/v1/crowdsec/decisions/${id}`);
+ },
+
+ async getMachines(): Promise<{ machines: CrowdSecMachine[] }> {
+ return apiClient.get('/api/v1/crowdsec/machines');
+ },
+
+ async deleteMachine(name: string): Promise<{ message: string }> {
+ return apiClient.delete(`/api/v1/crowdsec/machines/${encodeURIComponent(name)}`);
+ },
+
+ async getBouncers(): Promise<{ bouncers: CrowdSecBouncer[] }> {
+ return apiClient.get('/api/v1/crowdsec/bouncers');
+ },
+
+ async deleteBouncer(name: string): Promise<{ message: string }> {
+ return apiClient.delete(`/api/v1/crowdsec/bouncers/${encodeURIComponent(name)}`);
+ },
+
+ async getSummary(): Promise {
+ return apiClient.get('/api/v1/crowdsec/summary');
+ },
+
+ async getAlerts(limit = 50): Promise<{ alerts: CrowdSecAlert[] }> {
+ return apiClient.get(`/api/v1/crowdsec/alerts?limit=${limit}`);
+ },
+
+ async addDecision(req: AddDecisionRequest): Promise<{ message: string }> {
+ return apiClient.post('/api/v1/crowdsec/decisions', req);
+ },
+
+ async deleteDecisionByIP(ip: string): Promise<{ message: string }> {
+ return apiClient.delete(`/api/v1/crowdsec/decisions/ip/${encodeURIComponent(ip)}`);
+ },
+
+ async provision(instanceName: string): Promise {
+ return apiClient.post(`/api/v1/crowdsec/provision/${encodeURIComponent(instanceName)}`);
+ },
+};
+
+// Global Secrets
+
+export const secretsApi = {
+ async get(raw?: boolean): Promise> {
+ const path = raw ? '/api/v1/secrets?raw=true' : '/api/v1/secrets';
+ return apiClient.get(path);
+ },
+
+ async update(values: Record): Promise<{ message: string }> {
+ return apiClient.put('/api/v1/secrets', values);
+ },
+};
diff --git a/web/src/services/api/types/index.ts b/web/src/services/api/types/index.ts
new file mode 100644
index 0000000..852a0bb
--- /dev/null
+++ b/web/src/services/api/types/index.ts
@@ -0,0 +1 @@
+// Central-specific types can be added here
diff --git a/web/src/services/api/vpn.ts b/web/src/services/api/vpn.ts
new file mode 100644
index 0000000..9e26784
--- /dev/null
+++ b/web/src/services/api/vpn.ts
@@ -0,0 +1,71 @@
+import { apiClient } from './client';
+
+export interface VpnStatus {
+ running: boolean;
+ interface: string;
+ publicKey: string;
+ listenPort: number;
+ peerCount: number;
+ rawOutput: string;
+}
+
+export interface VpnConfig {
+ enabled: boolean;
+ listenPort: number;
+ address: string;
+ endpoint: string;
+ dns: string;
+ lanCIDR: string;
+ publicKey: string;
+}
+
+export interface VpnPeer {
+ id: string;
+ name: string;
+ publicKey: string;
+ allowedIPs: string;
+ createdAt: string;
+}
+
+export interface VpnPeerConfig {
+ name: string;
+ config: string;
+}
+
+export const vpnApi = {
+ async getStatus(): Promise {
+ return apiClient.get('/api/v1/vpn/status');
+ },
+
+ async getConfig(): Promise {
+ return apiClient.get('/api/v1/vpn/config');
+ },
+
+ async updateConfig(cfg: Omit): Promise<{ message: string }> {
+ return apiClient.put('/api/v1/vpn/config', cfg);
+ },
+
+ async generateKeypair(): Promise<{ message: string; publicKey: string }> {
+ return apiClient.post('/api/v1/vpn/keygen', {});
+ },
+
+ async apply(): Promise<{ message: string }> {
+ return apiClient.post('/api/v1/vpn/apply', {});
+ },
+
+ async listPeers(): Promise<{ peers: VpnPeer[] }> {
+ return apiClient.get('/api/v1/vpn/peers');
+ },
+
+ async addPeer(name: string): Promise {
+ return apiClient.post('/api/v1/vpn/peers', { name });
+ },
+
+ async getPeerConfig(id: string): Promise {
+ return apiClient.get(`/api/v1/vpn/peers/${encodeURIComponent(id)}/config`);
+ },
+
+ async deletePeer(id: string): Promise<{ message: string }> {
+ return apiClient.delete(`/api/v1/vpn/peers/${encodeURIComponent(id)}`);
+ },
+};
diff --git a/web/src/test/setup.ts b/web/src/test/setup.ts
new file mode 100644
index 0000000..eccd9d7
--- /dev/null
+++ b/web/src/test/setup.ts
@@ -0,0 +1,23 @@
+import '@testing-library/jest-dom/vitest';
+
+// Mock window.matchMedia
+Object.defineProperty(window, 'matchMedia', {
+ writable: true,
+ value: vi.fn().mockImplementation((query: string) => ({
+ matches: false,
+ media: query,
+ onchange: null,
+ addListener: vi.fn(), // deprecated
+ removeListener: vi.fn(), // deprecated
+ addEventListener: vi.fn(),
+ removeEventListener: vi.fn(),
+ dispatchEvent: vi.fn(),
+ })),
+});
+
+// Mock ResizeObserver
+global.ResizeObserver = vi.fn().mockImplementation(() => ({
+ observe: vi.fn(),
+ unobserve: vi.fn(),
+ disconnect: vi.fn(),
+}));
\ No newline at end of file
diff --git a/web/src/test/test-utils.tsx b/web/src/test/test-utils.tsx
new file mode 100644
index 0000000..ad898c5
--- /dev/null
+++ b/web/src/test/test-utils.tsx
@@ -0,0 +1,37 @@
+import React from 'react';
+import type { ReactElement } from 'react';
+import { render } from '@testing-library/react';
+import type { RenderOptions } from '@testing-library/react';
+import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
+import { ThemeProvider } from '../contexts/ThemeContext';
+
+// Custom render function that includes providers
+const AllTheProviders = ({ children }: { children: React.ReactNode }) => {
+ const queryClient = new QueryClient({
+ defaultOptions: {
+ queries: {
+ retry: false,
+ gcTime: 0,
+ },
+ mutations: {
+ retry: false,
+ },
+ },
+ });
+
+ return (
+
+
+ {children}
+
+
+ );
+};
+
+const customRender = (
+ ui: ReactElement,
+ options?: Omit,
+) => render(ui, { wrapper: AllTheProviders, ...options });
+
+export * from '@testing-library/react';
+export { customRender as render };
\ No newline at end of file
diff --git a/web/src/types/index.ts b/web/src/types/index.ts
new file mode 100644
index 0000000..17e546f
--- /dev/null
+++ b/web/src/types/index.ts
@@ -0,0 +1,176 @@
+export interface Status {
+ status: string;
+ version: string;
+ uptime: string;
+ timestamp: string;
+}
+
+// ========================================
+// Global Config Types (Wild Central level)
+// Endpoint: /api/v1/config
+// File: {dataDir}/config.yaml
+// ========================================
+
+export interface HAProxyCustomRoute {
+ name: string;
+ port: number;
+ backend: string;
+}
+
+export interface GlobalConfig {
+ operator?: {
+ email?: string;
+ };
+ cloud?: {
+ central?: {
+ domain?: string;
+ };
+ router?: {
+ ip?: string;
+ dynamicDns?: string;
+ };
+ dnsmasq?: {
+ ip?: string;
+ interface?: string;
+ dhcp?: {
+ enabled?: boolean;
+ rangeStart?: string;
+ rangeEnd?: string;
+ leaseTime?: string;
+ gateway?: string;
+ };
+ };
+ haproxy?: {
+ defaultInstance?: string;
+ customRoutes?: HAProxyCustomRoute[];
+ };
+ nftables?: {
+ enabled?: boolean;
+ wanInterface?: string;
+ extraPorts?: Array<{ port: number; protocol?: string; label?: string }>;
+ };
+ ddns?: {
+ enabled?: boolean;
+ provider?: string;
+ records?: string[];
+ intervalMinutes?: number;
+ };
+ };
+}
+
+export interface GlobalConfigResponse {
+ configured: boolean;
+ config?: GlobalConfig;
+ message?: string;
+}
+
+// ========================================
+// Instance Config Types (Wild Cloud instance level)
+// Endpoint: /api/v1/instances/{name}/config
+// File: {dataDir}/instances/{name}/config.yaml
+// ========================================
+
+export interface NodeConfig {
+ role: string;
+ interface: string;
+ disk: string;
+ currentIp: string;
+}
+
+export interface InstanceConfig {
+ operator?: {
+ email?: string;
+ };
+ cloud?: {
+ baseDomain?: string;
+ domain?: string;
+ internalDomain?: string;
+ dhcpRange?: string;
+ nfs?: {
+ host?: string;
+ mediaPath?: string;
+ storageCapacity?: string;
+ };
+ dockerRegistryHost?: string;
+ };
+ cluster?: {
+ name?: string;
+ loadBalancerIp?: string;
+ ipAddressPool?: string;
+ hostnamePrefix?: string;
+ certManager?: {
+ cloudflare?: {
+ domain?: string;
+ };
+ };
+ externalDns?: {
+ ownerId?: string;
+ };
+ internalDns?: {
+ externalResolver?: string;
+ };
+ dockerRegistry?: {
+ storage?: string;
+ };
+ nodes?: {
+ talos?: {
+ version?: string;
+ schematicId?: string;
+ };
+ control?: {
+ vip?: string;
+ };
+ active?: Record;
+ };
+ };
+ apps?: Record>; // Each app has its own dynamic config
+}
+
+export interface InstanceConfigResponse {
+ config?: InstanceConfig;
+ message?: string;
+}
+
+export interface Message {
+ message: string;
+ type: 'info' | 'success' | 'error';
+}
+
+export interface LoadingState {
+ [key: string]: boolean;
+}
+
+export interface Messages {
+ [key: string]: Message;
+}
+
+export interface HealthResponse {
+ service: string;
+ status: string;
+}
+
+export interface StatusResponse {
+ status: string;
+ message?: string;
+}
+
+export interface DnsmasqStatus {
+ status: string;
+ pid: number;
+ ip: string;
+ config_file: string;
+ instances_configured: number;
+ last_restart: string;
+}
+
+export interface DnsmasqConfigResponse {
+ config_file: string;
+ content: string;
+ message?: string;
+ config?: string;
+}
+
+export interface NetworkInfo {
+ primary_ip: string;
+ primary_interface: string;
+}
\ No newline at end of file
diff --git a/web/src/utils/formatters.ts b/web/src/utils/formatters.ts
new file mode 100644
index 0000000..6028b36
--- /dev/null
+++ b/web/src/utils/formatters.ts
@@ -0,0 +1,3 @@
+export const formatTimestamp = (timestamp: string): string => {
+ return new Date(timestamp).toLocaleString();
+};
\ No newline at end of file
diff --git a/web/src/vite-env.d.ts b/web/src/vite-env.d.ts
new file mode 100644
index 0000000..11f02fe
--- /dev/null
+++ b/web/src/vite-env.d.ts
@@ -0,0 +1 @@
+///
diff --git a/web/tsconfig.app.json b/web/tsconfig.app.json
new file mode 100644
index 0000000..5ba83a7
--- /dev/null
+++ b/web/tsconfig.app.json
@@ -0,0 +1,37 @@
+{
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
+ "target": "ES2020",
+ "useDefineForClassFields": true,
+ "lib": [
+ "ES2020",
+ "DOM",
+ "DOM.Iterable"
+ ],
+ "types": ["vitest/globals"],
+ "module": "ESNext",
+ "skipLibCheck": true,
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "verbatimModuleSyntax": true,
+ "moduleDetection": "force",
+ "noEmit": true,
+ "jsx": "react-jsx",
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "erasableSyntaxOnly": true,
+ "noFallthroughCasesInSwitch": true,
+ "noUncheckedSideEffectImports": true,
+ "paths": {
+ "@/*": [
+ "./src/*"
+ ]
+ }
+ },
+ "include": [
+ "src"
+ ]
+}
\ No newline at end of file
diff --git a/web/tsconfig.json b/web/tsconfig.json
new file mode 100644
index 0000000..20ff94b
--- /dev/null
+++ b/web/tsconfig.json
@@ -0,0 +1,19 @@
+{
+ "files": [],
+ "references": [
+ {
+ "path": "./tsconfig.app.json"
+ },
+ {
+ "path": "./tsconfig.node.json"
+ }
+ ],
+ "compilerOptions": {
+ "baseUrl": ".",
+ "paths": {
+ "@/*": [
+ "./src/*"
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/web/tsconfig.node.json b/web/tsconfig.node.json
new file mode 100644
index 0000000..9728af2
--- /dev/null
+++ b/web/tsconfig.node.json
@@ -0,0 +1,25 @@
+{
+ "compilerOptions": {
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
+ "target": "ES2022",
+ "lib": ["ES2023"],
+ "module": "ESNext",
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "verbatimModuleSyntax": true,
+ "moduleDetection": "force",
+ "noEmit": true,
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "erasableSyntaxOnly": true,
+ "noFallthroughCasesInSwitch": true,
+ "noUncheckedSideEffectImports": true
+ },
+ "include": ["vite.config.ts"]
+}
diff --git a/web/vite.config.ts b/web/vite.config.ts
new file mode 100644
index 0000000..bf04427
--- /dev/null
+++ b/web/vite.config.ts
@@ -0,0 +1,18 @@
+import path from "path"
+import tailwindcss from "@tailwindcss/vite"
+import { defineConfig } from 'vite'
+import react from '@vitejs/plugin-react'
+
+// https://vite.dev/config/
+export default defineConfig({
+ plugins: [react(), tailwindcss()],
+ resolve: {
+ alias: {
+ "@": path.resolve(__dirname, "./src"),
+ },
+ },
+ server: {
+ host: '0.0.0.0',
+ allowedHosts: true, // Go API is the front door, allow any host
+ }
+})
diff --git a/web/vitest.config.ts b/web/vitest.config.ts
new file mode 100644
index 0000000..7e4c58b
--- /dev/null
+++ b/web/vitest.config.ts
@@ -0,0 +1,20 @@
+///
+import { defineConfig } from 'vite';
+import react from '@vitejs/plugin-react';
+import { fileURLToPath, URL } from 'node:url';
+
+export default defineConfig({
+ plugins: [react()],
+ resolve: {
+ alias: {
+ "@": fileURLToPath(new URL('./src', import.meta.url)),
+ },
+ },
+ test: {
+ globals: true,
+ environment: 'jsdom',
+ setupFiles: ['./src/test/setup.ts'],
+ css: true,
+ include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
+ },
+});
\ No newline at end of file