diff --git a/packages/react-router-v7-example/.dockerignore b/packages/react-router-v7-example/.dockerignore
new file mode 100644
index 000000000..9b8d51471
--- /dev/null
+++ b/packages/react-router-v7-example/.dockerignore
@@ -0,0 +1,4 @@
+.react-router
+build
+node_modules
+README.md
\ No newline at end of file
diff --git a/packages/react-router-v7-example/.gitignore b/packages/react-router-v7-example/.gitignore
new file mode 100644
index 000000000..9b7c041f9
--- /dev/null
+++ b/packages/react-router-v7-example/.gitignore
@@ -0,0 +1,6 @@
+.DS_Store
+/node_modules/
+
+# React Router
+/.react-router/
+/build/
diff --git a/packages/react-router-v7-example/Dockerfile b/packages/react-router-v7-example/Dockerfile
new file mode 100644
index 000000000..207bf937e
--- /dev/null
+++ b/packages/react-router-v7-example/Dockerfile
@@ -0,0 +1,22 @@
+FROM node:20-alpine AS development-dependencies-env
+COPY . /app
+WORKDIR /app
+RUN npm ci
+
+FROM node:20-alpine AS production-dependencies-env
+COPY ./package.json package-lock.json /app/
+WORKDIR /app
+RUN npm ci --omit=dev
+
+FROM node:20-alpine AS build-env
+COPY . /app/
+COPY --from=development-dependencies-env /app/node_modules /app/node_modules
+WORKDIR /app
+RUN npm run build
+
+FROM node:20-alpine
+COPY ./package.json package-lock.json /app/
+COPY --from=production-dependencies-env /app/node_modules /app/node_modules
+COPY --from=build-env /app/build /app/build
+WORKDIR /app
+CMD ["npm", "run", "start"]
\ No newline at end of file
diff --git a/packages/react-router-v7-example/README.md b/packages/react-router-v7-example/README.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/packages/react-router-v7-example/app/app.css b/packages/react-router-v7-example/app/app.css
new file mode 100644
index 000000000..ea0b872ee
--- /dev/null
+++ b/packages/react-router-v7-example/app/app.css
@@ -0,0 +1,138 @@
+@import 'tailwindcss';
+@import 'tw-animate-css';
+
+@custom-variant dark (&:is(.dark *));
+
+@theme {
+ --font-sans:
+ 'Inter', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
+ 'Noto Color Emoji';
+}
+
+html,
+body {
+ @apply bg-white dark:bg-gray-950;
+
+ @media (prefers-color-scheme: dark) {
+ color-scheme: 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.141 0.005 285.823);
+ --card: oklch(1 0 0);
+ --card-foreground: oklch(0.141 0.005 285.823);
+ --popover: oklch(1 0 0);
+ --popover-foreground: oklch(0.141 0.005 285.823);
+ --primary: oklch(0.21 0.006 285.885);
+ --primary-foreground: oklch(0.985 0 0);
+ --secondary: oklch(0.967 0.001 286.375);
+ --secondary-foreground: oklch(0.21 0.006 285.885);
+ --muted: oklch(0.967 0.001 286.375);
+ --muted-foreground: oklch(0.552 0.016 285.938);
+ --accent: oklch(0.967 0.001 286.375);
+ --accent-foreground: oklch(0.21 0.006 285.885);
+ --destructive: oklch(0.577 0.245 27.325);
+ --border: oklch(0.92 0.004 286.32);
+ --input: oklch(0.92 0.004 286.32);
+ --ring: oklch(0.705 0.015 286.067);
+ --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.141 0.005 285.823);
+ --sidebar-primary: oklch(0.21 0.006 285.885);
+ --sidebar-primary-foreground: oklch(0.985 0 0);
+ --sidebar-accent: oklch(0.967 0.001 286.375);
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
+ --sidebar-border: oklch(0.92 0.004 286.32);
+ --sidebar-ring: oklch(0.705 0.015 286.067);
+}
+
+.dark {
+ --background: oklch(0.141 0.005 285.823);
+ --foreground: oklch(0.985 0 0);
+ --card: oklch(0.21 0.006 285.885);
+ --card-foreground: oklch(0.985 0 0);
+ --popover: oklch(0.21 0.006 285.885);
+ --popover-foreground: oklch(0.985 0 0);
+ --primary: oklch(0.92 0.004 286.32);
+ --primary-foreground: oklch(0.21 0.006 285.885);
+ --secondary: oklch(0.274 0.006 286.033);
+ --secondary-foreground: oklch(0.985 0 0);
+ --muted: oklch(0.274 0.006 286.033);
+ --muted-foreground: oklch(0.705 0.015 286.067);
+ --accent: oklch(0.274 0.006 286.033);
+ --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.552 0.016 285.938);
+ --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.21 0.006 285.885);
+ --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.274 0.006 286.033);
+ --sidebar-accent-foreground: oklch(0.985 0 0);
+ --sidebar-border: oklch(1 0 0 / 10%);
+ --sidebar-ring: oklch(0.552 0.016 285.938);
+}
+
+@layer base {
+ * {
+ @apply border-border outline-ring/50;
+ }
+ body {
+ @apply bg-background text-foreground;
+ }
+ table {
+ @apply border-separate;
+ }
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/index.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/index.tsx
new file mode 100644
index 000000000..5c5f0340b
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/index.tsx
@@ -0,0 +1,75 @@
+import { Sheet, SheetContent, SheetDescription, SheetTitle } from '~/components/ui/sheet';
+import {
+ setSidebarTab,
+ toggleInspectorSidebarOpen,
+ useInspectorSidebarOpen,
+ useSelectedSidebarTab,
+} from '~/context/editor';
+import { useIsMobile } from '~/hooks/use-mobile';
+import { InspectPanel } from './inspectPanel';
+import { StylesPanel } from './stylesPanel';
+
+const tabs = [
+ { id: 'styles', label: 'Styles' },
+ { id: 'block-configuration', label: 'Inspect' },
+] as const;
+
+export function InspectorSidebar() {
+ const sidebarTab = useSelectedSidebarTab();
+ const isMobile = useIsMobile();
+ const isOpen = useInspectorSidebarOpen();
+
+ const renderCurrentSidebarPanel = () => {
+ switch (sidebarTab) {
+ case 'block-configuration':
+ return ;
+ case 'styles':
+ return ;
+ }
+ };
+
+ const sidebarContent = (
+ <>
+
+
+ {tabs.map((tab) => (
+
+ ))}
+
+
+ {renderCurrentSidebarPanel()}
+ >
+ );
+
+ if (isMobile) {
+ return (
+
+
+
+
+ {sidebarContent}
+
+
+ );
+ }
+
+ return (
+
+ {sidebarContent}
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/index.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/index.tsx
new file mode 100644
index 000000000..514472cbc
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/index.tsx
@@ -0,0 +1,68 @@
+import { setDocument, useDocument, useSelectedBlockId } from '~/context/editor';
+import type { TEditorBlock } from '~/documents/editor/core';
+import AvatarSidebarPanel from './panels/AvatarSidebarPanel';
+import ButtonSidebarPanel from './panels/ButtonSidebarPanel';
+import ColumnsContainerSidebarPanel from './panels/ColumnsContainerSidebarPanel';
+import ContainerSidebarPanel from './panels/ContainerSidebarPanel';
+import DividerSidebarPanel from './panels/DividerSidebarPanel';
+import HeadingSidebarPanel from './panels/HeadingSidebarPanel';
+import HtmlSidebarPanel from './panels/HtmlSidebarPanel';
+import ImageSidebarPanel from './panels/ImageSidebarPanel';
+import SpacerSidebarPanel from './panels/SpacerSidebarPanel';
+import TextSidebarPanel from './panels/TextSidebarPanel';
+
+export function InspectPanel() {
+ const document = useDocument();
+ const selectedBlockId = useSelectedBlockId();
+
+ if (!selectedBlockId) {
+ return Click on a block to inspect.
;
+ }
+ const block = document[selectedBlockId];
+ if (!block) {
+ return (
+
+ Block with id ${selectedBlockId} was not found. Click on a block to reset.
+
+ );
+ }
+
+ const { data, type } = block;
+
+ // TypePanel will pass out new data, and setBlock will update the selected block
+ const setBlock = (conf: TEditorBlock) => setDocument({ [selectedBlockId]: conf });
+
+ switch (type) {
+ case 'Avatar':
+ return setBlock({ type, data })} />;
+ case 'Button':
+ return setBlock({ type, data })} />;
+ case 'ColumnsContainer':
+ return (
+ setBlock({ type, data })} />
+ );
+ case 'Container':
+ return setBlock({ type, data })} />;
+ case 'Divider':
+ return setBlock({ type, data })} />;
+ case 'Heading':
+ return setBlock({ type, data })} />;
+ case 'Html':
+ return setBlock({ type, data })} />;
+ case 'Image':
+ return setBlock({ type, data })} />;
+ case 'Spacer':
+ return setBlock({ type, data })} />;
+ case 'Text':
+ return setBlock({ type, data })} />;
+ default:
+ return (
+
+
+ block type {type} is not supported yet.
+
+
{JSON.stringify(block, null, ' ')};
+
+ );
+ }
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/AvatarSidebarPanel.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/AvatarSidebarPanel.tsx
new file mode 100644
index 000000000..38912cf4e
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/AvatarSidebarPanel.tsx
@@ -0,0 +1,87 @@
+import { useState } from 'react';
+
+import { type AvatarProps, AvatarPropsDefaults, AvatarPropsSchema } from '@usewaypoint/block-avatar';
+import { PanelWrapper } from './helpers/panelWrapper';
+import { ToggleGroupInput } from './helpers/toggleGroupInput';
+import { SliderInput } from './helpers/sliderInput';
+import { StyleInput } from './helpers/styleInput';
+import { TextInput } from './helpers/textInput';
+
+type AvatarSidebarPanelProps = {
+ data: AvatarProps;
+ setData: (v: AvatarProps) => void;
+};
+export default function AvatarSidebarPanel({ data, setData }: AvatarSidebarPanelProps) {
+ const [, setErrors] = useState(null);
+
+ const updateData = (d: unknown) => {
+ const res = AvatarPropsSchema.safeParse(d);
+ if (res.success) {
+ setData(res.data);
+ setErrors(null);
+ } else {
+ setErrors(res.error);
+ }
+ };
+
+ const size = data.props?.size ?? AvatarPropsDefaults.size;
+ const imageUrl = data.props?.imageUrl ?? AvatarPropsDefaults.imageUrl;
+ const alt = data.props?.alt ?? AvatarPropsDefaults.alt;
+ const shape = data.props?.shape ?? AvatarPropsDefaults.shape;
+
+ return (
+
+ {
+ updateData({ ...data, props: { ...data.props, size } });
+ }}
+ />
+
+ {
+ updateData({ ...data, props: { ...data.props, shape } });
+ }}
+ />
+
+ {
+ updateData({ ...data, props: { ...data.props, imageUrl: e.target.value } });
+ }}
+ />
+
+ {
+ updateData({ ...data, props: { ...data.props, alt: e.target.value } });
+ }}
+ />
+
+ updateData({ ...data, style })}
+ />
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/ButtonSidebarPanel.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/ButtonSidebarPanel.tsx
new file mode 100644
index 000000000..e12fcb784
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/ButtonSidebarPanel.tsx
@@ -0,0 +1,127 @@
+import { useState } from 'react';
+
+import { type ButtonProps, ButtonPropsDefaults, ButtonPropsSchema } from '@usewaypoint/block-button';
+
+import { PanelWrapper } from './helpers/panelWrapper';
+import { TextInput } from './helpers/textInput';
+import { ToggleGroupInput } from './helpers/toggleGroupInput';
+import { ColorInput } from './helpers/colorInput';
+import { StyleInput } from './helpers/styleInput';
+
+type ButtonSidebarPanelProps = {
+ data: ButtonProps;
+ setData: (v: ButtonProps) => void;
+};
+export default function ButtonSidebarPanel({ data, setData }: ButtonSidebarPanelProps) {
+ const [, setErrors] = useState(null);
+
+ const updateData = (d: unknown) => {
+ const res = ButtonPropsSchema.safeParse(d);
+ if (res.success) {
+ setData(res.data);
+ setErrors(null);
+ } else {
+ setErrors(res.error);
+ }
+ };
+
+ const text = data.props?.text ?? ButtonPropsDefaults.text;
+ const url = data.props?.url ?? ButtonPropsDefaults.url;
+ const fullWidth = data.props?.fullWidth ?? ButtonPropsDefaults.fullWidth;
+ const size = data.props?.size ?? ButtonPropsDefaults.size;
+ const buttonStyle = data.props?.buttonStyle ?? ButtonPropsDefaults.buttonStyle;
+ const buttonTextColor = data.props?.buttonTextColor ?? ButtonPropsDefaults.buttonTextColor;
+ const buttonBackgroundColor = data.props?.buttonBackgroundColor ?? ButtonPropsDefaults.buttonBackgroundColor;
+
+ return (
+
+ {
+ updateData({ ...data, props: { ...data.props, text: e.target.value } });
+ }}
+ />
+
+ {
+ updateData({ ...data, props: { ...data.props, url: e.target.value } });
+ }}
+ />
+
+ {
+ updateData({ ...data, props: { ...data.props, fullWidth: v === 'FULL_WIDTH' } });
+ }}
+ />
+
+ {
+ updateData({ ...data, props: { ...data.props, size } });
+ }}
+ />
+
+ {
+ updateData({ ...data, props: { ...data.props, buttonStyle } });
+ }}
+ />
+
+ updateData({ ...data, props: { ...data.props, buttonTextColor } })}
+ />
+
+ updateData({ ...data, props: { ...data.props, buttonBackgroundColor } })}
+ />
+
+ updateData({ ...data, style })}
+ />
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/ColumnsContainerSidebarPanel.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/ColumnsContainerSidebarPanel.tsx
new file mode 100644
index 000000000..b79b77012
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/ColumnsContainerSidebarPanel.tsx
@@ -0,0 +1,133 @@
+import { useState } from 'react';
+
+import { AlignBottomIcon, AlignCenterVerticallyIcon, AlignTopIcon } from '@radix-ui/react-icons';
+
+import { Input } from '~/components/ui/input';
+import { Label } from '~/components/ui/label';
+import ColumnsContainerPropsSchema, {
+ type ColumnsContainerProps,
+} from '../../../../documents/blocks/ColumnsContainer/ColumnsContainerPropsSchema';
+import { PanelWrapper } from './helpers/panelWrapper';
+import { SliderInput } from './helpers/sliderInput';
+import { StyleInput } from './helpers/styleInput';
+import { ToggleGroupInput } from './helpers/toggleGroupInput';
+
+type ColumnsContainerPanelProps = {
+ data: ColumnsContainerProps;
+ setData: (v: ColumnsContainerProps) => void;
+};
+export default function ColumnsContainerPanel({ data, setData }: ColumnsContainerPanelProps) {
+ const [, setErrors] = useState(null);
+ const updateData = (d: unknown) => {
+ const res = ColumnsContainerPropsSchema.safeParse(d);
+ if (res.success) {
+ setData(res.data);
+ setErrors(null);
+ } else {
+ setErrors(res.error);
+ }
+ };
+
+ return (
+
+ {
+ updateData({ ...data, props: { ...data.props, columnsCount: Number(v) } });
+ }}
+ />
+
+ {
+ updateData({ ...data, props: { ...data.props, fixedWidths } });
+ }}
+ />
+
+ updateData({ ...data, props: { ...data.props, columnsGap } })}
+ />
+
+ , value: 'top' },
+ { label: , value: 'middle' },
+ { label: , value: 'bottom' },
+ ]}
+ label={'Alignment'}
+ value={data.props?.contentAlignment ?? 'middle'}
+ onValueChange={(contentAlignment) => {
+ updateData({ ...data, props: { ...data.props, contentAlignment } });
+ }}
+ />
+
+ updateData({ ...data, style })}
+ />
+
+ );
+}
+
+type TWidthValue = number | null | undefined;
+type FixedWidths = [TWidthValue, TWidthValue, TWidthValue];
+
+type ColumnsLayoutInputProps = {
+ value: FixedWidths | null | undefined;
+ onChange: (v: FixedWidths | null | undefined) => void;
+};
+
+function ColumnWidthsInput(props: ColumnsLayoutInputProps) {
+ const { value } = props;
+ let widths: FixedWidths = [null, null, null];
+ if (!value) {
+ widths = [null, null, null];
+ } else {
+ widths = value;
+ }
+
+ return (
+
+ {widths.map((v, i) => {
+ return (
+
+
+ {
+ const value = parseInt(e.target.value);
+
+ const newWidths = [...widths];
+ newWidths[i] = isNaN(value) ? null : value;
+ props.onChange(newWidths as FixedWidths);
+ }}
+ />
+
+ );
+ })}
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/ContainerSidebarPanel.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/ContainerSidebarPanel.tsx
new file mode 100644
index 000000000..d48d4872f
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/ContainerSidebarPanel.tsx
@@ -0,0 +1,40 @@
+import { useState } from 'react';
+
+import ContainerPropsSchema, { type ContainerProps } from '../../../../documents/blocks/Container/ContainerPropsSchema';
+
+import { PanelWrapper } from './helpers/panelWrapper';
+import { StyleInput } from './helpers/styleInput';
+
+type ContainerSidebarPanelProps = {
+ data: ContainerProps;
+ setData: (v: ContainerProps) => void;
+};
+
+export default function ContainerSidebarPanel({ data, setData }: ContainerSidebarPanelProps) {
+ const [, setErrors] = useState(null);
+
+ const updateData = (d: unknown) => {
+ const res = ContainerPropsSchema.safeParse(d);
+ if (res.success) {
+ setData(res.data);
+ setErrors(null);
+ } else {
+ setErrors(res.error);
+ }
+ };
+
+ return (
+
+ updateData({ ...data, style })}
+ />
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/DividerSidebarPanel.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/DividerSidebarPanel.tsx
new file mode 100644
index 000000000..f71650980
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/DividerSidebarPanel.tsx
@@ -0,0 +1,60 @@
+import { useState } from 'react';
+
+import { type DividerProps, DividerPropsDefaults, DividerPropsSchema } from '@usewaypoint/block-divider';
+
+import { ColorInput } from './helpers/colorInput';
+import { PanelWrapper } from './helpers/panelWrapper';
+import { SliderInput } from './helpers/sliderInput';
+import { StyleInput } from './helpers/styleInput';
+
+type DividerSidebarPanelProps = {
+ data: DividerProps;
+ setData: (v: DividerProps) => void;
+};
+export default function DividerSidebarPanel({ data, setData }: DividerSidebarPanelProps) {
+ const [, setErrors] = useState(null);
+ const updateData = (d: unknown) => {
+ const res = DividerPropsSchema.safeParse(d);
+ if (res.success) {
+ setData(res.data);
+ setErrors(null);
+ } else {
+ setErrors(res.error);
+ }
+ };
+
+ const lineColor = data.props?.lineColor ?? DividerPropsDefaults.lineColor;
+ const lineHeight = data.props?.lineHeight ?? DividerPropsDefaults.lineHeight;
+
+ return (
+
+ updateData({ ...data, props: { ...data.props, lineColor } })}
+ />
+
+ updateData({ ...data, props: { ...data.props, lineHeight } })}
+ />
+
+ updateData({ ...data, style })}
+ />
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/HeadingSidebarPanel.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/HeadingSidebarPanel.tsx
new file mode 100644
index 000000000..dc602c00c
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/HeadingSidebarPanel.tsx
@@ -0,0 +1,75 @@
+import { useState } from 'react';
+
+import { type HeadingProps, HeadingPropsDefaults, HeadingPropsSchema } from '@usewaypoint/block-heading';
+
+import { PanelWrapper } from './helpers/panelWrapper';
+import { StyleInput } from './helpers/styleInput';
+import { TextareaInput } from './helpers/textInput';
+import { ToggleGroupInput } from './helpers/toggleGroupInput';
+
+type HeadingSidebarPanelProps = {
+ data: HeadingProps;
+ setData: (v: HeadingProps) => void;
+};
+export default function HeadingSidebarPanel({ data, setData }: HeadingSidebarPanelProps) {
+ const [, setErrors] = useState(null);
+
+ const updateData = (d: unknown) => {
+ const res = HeadingPropsSchema.safeParse(d);
+ if (res.success) {
+ setData(res.data);
+ setErrors(null);
+ } else {
+ setErrors(res.error);
+ }
+ };
+
+ return (
+
+ {
+ updateData({ ...data, props: { ...data.props, text } });
+ }}
+ />
+
+ {
+ updateData({ ...data, props: { ...data.props, level } });
+ }}
+ />
+
+ updateData({ ...data, style })}
+ />
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/HtmlSidebarPanel.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/HtmlSidebarPanel.tsx
new file mode 100644
index 000000000..ec52dfbb1
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/HtmlSidebarPanel.tsx
@@ -0,0 +1,49 @@
+import { useState } from 'react';
+
+import { type HtmlProps, HtmlPropsSchema } from '@usewaypoint/block-html';
+
+import { PanelWrapper } from './helpers/panelWrapper';
+import { StyleInput } from './helpers/styleInput';
+import { TextareaInput } from './helpers/textInput';
+
+type HtmlSidebarPanelProps = {
+ data: HtmlProps;
+ setData: (v: HtmlProps) => void;
+};
+export default function HtmlSidebarPanel({ data, setData }: HtmlSidebarPanelProps) {
+ const [, setErrors] = useState(null);
+
+ const updateData = (d: unknown) => {
+ const res = HtmlPropsSchema.safeParse(d);
+ if (res.success) {
+ setData(res.data);
+ setErrors(null);
+ } else {
+ setErrors(res.error);
+ }
+ };
+
+ return (
+
+ updateData({ ...data, props: { ...data.props, contents } })}
+ />
+
+ updateData({ ...data, style })}
+ />
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/ImageSidebarPanel.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/ImageSidebarPanel.tsx
new file mode 100644
index 000000000..17aafc213
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/ImageSidebarPanel.tsx
@@ -0,0 +1,115 @@
+import { useState } from 'react';
+
+import { type ImageProps, ImagePropsSchema } from '@usewaypoint/block-image';
+
+import { AlignBottomIcon, AlignCenterVerticallyIcon, AlignTopIcon } from '@radix-ui/react-icons';
+import { PanelWrapper } from './helpers/panelWrapper';
+import { StyleInput } from './helpers/styleInput';
+import { TextInput } from './helpers/textInput';
+import { ToggleGroupInput } from './helpers/toggleGroupInput';
+import { Label } from '~/components/ui/label';
+import { Input } from '~/components/ui/input';
+
+type ImageSidebarPanelProps = {
+ data: ImageProps;
+ setData: (v: ImageProps) => void;
+};
+export default function ImageSidebarPanel({ data, setData }: ImageSidebarPanelProps) {
+ const [, setErrors] = useState(null);
+
+ const updateData = (d: unknown) => {
+ const res = ImagePropsSchema.safeParse(d);
+ if (res.success) {
+ setData(res.data);
+ setErrors(null);
+ } else {
+ setErrors(res.error);
+ }
+ };
+
+ return (
+
+ {
+ const v = e.target.value;
+ const url = v.trim().length === 0 ? null : v.trim();
+ updateData({ ...data, props: { ...data.props, url } });
+ }}
+ />
+
+ updateData({ ...data, props: { ...data.props, alt: e.target.value } })}
+ />
+
+ {
+ const v = e.target.value;
+ const linkHref = v.trim().length === 0 ? null : v.trim();
+ updateData({ ...data, props: { ...data.props, linkHref } });
+ }}
+ />
+
+
+
+ , value: 'top' },
+ { label: , value: 'middle' },
+ { label: , value: 'bottom' },
+ ]}
+ label={'Alignment'}
+ value={data.props?.contentAlignment ?? 'middle'}
+ onValueChange={(contentAlignment) => {
+ updateData({ ...data, props: { ...data.props, contentAlignment } });
+ }}
+ />
+
+ updateData({ ...data, style })}
+ />
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/SpacerSidebarPanel.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/SpacerSidebarPanel.tsx
new file mode 100644
index 000000000..762b0eff3
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/SpacerSidebarPanel.tsx
@@ -0,0 +1,38 @@
+import { useState } from 'react';
+
+import { type SpacerProps, SpacerPropsDefaults, SpacerPropsSchema } from '@usewaypoint/block-spacer';
+
+import { PanelWrapper } from './helpers/panelWrapper';
+import { SliderInput } from './helpers/sliderInput';
+
+type SpacerSidebarPanelProps = {
+ data: SpacerProps;
+ setData: (v: SpacerProps) => void;
+};
+export default function SpacerSidebarPanel({ data, setData }: SpacerSidebarPanelProps) {
+ const [, setErrors] = useState(null);
+
+ const updateData = (d: unknown) => {
+ const res = SpacerPropsSchema.safeParse(d);
+ if (res.success) {
+ setData(res.data);
+ setErrors(null);
+ } else {
+ setErrors(res.error);
+ }
+ };
+
+ return (
+
+ updateData({ ...data, props: { ...data.props, height } })}
+ />
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/TextSidebarPanel.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/TextSidebarPanel.tsx
new file mode 100644
index 000000000..6d8579db9
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/TextSidebarPanel.tsx
@@ -0,0 +1,61 @@
+import { useState } from 'react';
+
+import { type TextProps, TextPropsSchema } from '@usewaypoint/block-text';
+
+import { Label } from '~/components/ui/label';
+import { Switch } from '~/components/ui/switch';
+import { PanelWrapper } from './helpers/panelWrapper';
+import { StyleInput } from './helpers/styleInput';
+import { TextareaInput } from './helpers/textInput';
+import { BooleanInput } from './helpers/booleanInput';
+
+type TextSidebarPanelProps = {
+ data: TextProps;
+ setData: (v: TextProps) => void;
+};
+export default function TextSidebarPanel({ data, setData }: TextSidebarPanelProps) {
+ const [, setErrors] = useState(null);
+
+ const updateData = (d: unknown) => {
+ const res = TextPropsSchema.safeParse(d);
+ if (res.success) {
+ setData(res.data);
+ setErrors(null);
+ } else {
+ setErrors(res.error);
+ }
+ };
+
+ return (
+
+ updateData({ ...data, props: { ...data.props, text } })}
+ />
+
+ {
+ updateData({ ...data, props: { ...data.props, markdown } });
+ }}
+ />
+
+ updateData({ ...data, style })}
+ />
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/booleanInput.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/booleanInput.tsx
new file mode 100644
index 000000000..2f8fb2a38
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/booleanInput.tsx
@@ -0,0 +1,37 @@
+import { Label } from '~/components/ui/label';
+import { Switch } from '~/components/ui/switch';
+import { generateSlug } from '~/lib/utils';
+
+type BooleanInputProps = {
+ label?: string;
+ value?: boolean | null;
+ onChange?: (value: boolean | null) => void;
+};
+
+/**
+ * @example
+ * ```tsx
+ * updateData({ ...data, props: { ...data.props, markdown } })}
+ * />
+ * ```
+ */
+export function BooleanInput(props: BooleanInputProps) {
+ const { label = 'Checked', value } = props;
+ const id = `boolean-input-${generateSlug(label)}`;
+
+ return (
+
+ {
+ props.onChange?.(boolean);
+ }}
+ />
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/colorInput.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/colorInput.tsx
new file mode 100644
index 000000000..1215c0816
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/colorInput.tsx
@@ -0,0 +1,82 @@
+import { Plus, X } from 'lucide-react';
+import { Input } from '~/components/ui/input';
+import { Label } from '~/components/ui/label';
+import { generateSlug } from '~/lib/utils';
+
+// Discriminated Union
+type ColorInputProps =
+ // nullable
+ | {
+ label?: string;
+ nullable: true;
+ value?: string | null;
+ onChange?: (value: string | null) => void;
+ }
+ // not nullable
+ | {
+ label?: string;
+ nullable?: false;
+ value?: string;
+ onChange?: (value: string) => void;
+ };
+
+/**
+ * @example
+ * ```tsx
+ * updateData({ ...data, borderColor })}
+ * />
+ * ```
+ */
+export function ColorInput(props: ColorInputProps) {
+ const { label = 'Color', nullable, value } = props;
+ const id = `color-input-${generateSlug(label)}`;
+
+ return (
+
+
+
+
{
+ if (props.nullable && !value) {
+ props.onChange?.('#000000');
+ }
+ }}
+ >
+
{
+ if (!props.nullable) {
+ props.onChange?.(e.target.value);
+ } else {
+ props.onChange?.(e.target.value);
+ }
+ }}
+ />
+
+ {nullable && !value && (
+
+ )}
+
+
+ {nullable && value && (
+
{
+ // Type has been narrowed by nullable
+ props.onChange?.(null);
+ }}
+ />
+ )}
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/fontFamilyInput.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/fontFamilyInput.tsx
new file mode 100644
index 000000000..29dab3ada
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/fontFamilyInput.tsx
@@ -0,0 +1,82 @@
+import { Check, ChevronsUpDown } from 'lucide-react';
+import { useState } from 'react';
+import { Button } from '~/components/ui/button';
+import { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList } from '~/components/ui/command';
+import { Label } from '~/components/ui/label';
+import { Popover, PopoverContent, PopoverTrigger } from '~/components/ui/popover';
+import { FONT_FAMILIES } from '~/documents/blocks/helpers/fontFamily';
+import { cn } from '~/lib/utils';
+
+/**
+ * @example
+ * ```tsx
+ *
+ * updateData({
+ * ...data,
+ * fontFamily: v,
+ * })
+ * }
+ * />
+ * ```
+ */
+export function FontFamilyInput({ label = 'Font family', value = 'inherit', onChange = (value: string) => {} }) {
+ const [open, setOpen] = useState(false);
+ const [key, setKey] = useState(value);
+
+ const fontFamiliesWithInherit = [
+ {
+ label: 'Match email settings',
+ key: 'inherit',
+ value: 'inherit',
+ },
+ ...FONT_FAMILIES,
+ ];
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ No font found.
+
+ {fontFamiliesWithInherit.map((font) => (
+ {
+ setKey(currentKey === key ? '' : currentKey);
+ onChange(currentKey);
+ setOpen(false);
+ }}
+ >
+
+ {font.label}
+
+
+
+ ))}
+
+
+
+
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/panelWrapper.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/panelWrapper.tsx
new file mode 100644
index 000000000..e9e9b7ce2
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/panelWrapper.tsx
@@ -0,0 +1,18 @@
+import { cn } from '~/lib/utils';
+
+export function PanelWrapper({
+ title = 'Panel',
+ className = '',
+ children,
+}: {
+ title?: string;
+ className?: string;
+ children?: React.ReactNode;
+}) {
+ return (
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/sliderInput.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/sliderInput.tsx
new file mode 100644
index 000000000..dc5a1cb6c
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/sliderInput.tsx
@@ -0,0 +1,66 @@
+import { Input } from '~/components/ui/input';
+import { Label } from '~/components/ui/label';
+import { Slider } from '~/components/ui/slider';
+import { generateSlug } from '~/lib/utils';
+
+/**
+ * @example
+ * ```tsx
+ * {
+ * updateData({ ...data, props: { ...data.props, size } });
+ * }}
+ * />
+ * ```
+ */
+export function SliderInput({
+ value = 0,
+ onChange = (v: number) => {},
+ label = 'Slider',
+ min = 0,
+ max = 100,
+ step = 1,
+ unit = 'px',
+ labelHidden = false,
+ icon = null,
+}: {
+ value?: number;
+ onChange?: (value: number) => void;
+ label?: string;
+ min?: number;
+ max?: number;
+ step?: number;
+ unit?: string;
+ labelHidden?: boolean;
+ icon?: React.ReactNode;
+}) {
+ return (
+
+ {!labelHidden && (
+
+ )}
+
+ {icon && {icon}}
+ onChange(value[0])} />
+ onChange(Number(e.target.value))}
+ />
+ {unit}
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/styleInput.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/styleInput.tsx
new file mode 100644
index 000000000..ce469fe3d
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/styleInput.tsx
@@ -0,0 +1,202 @@
+import { AlignCenter, AlignLeft, AlignRight, AlignStartHorizontal } from 'lucide-react';
+import { Label } from '~/components/ui/label';
+import type { TStyle } from '~/documents/blocks/helpers/TStyle';
+import { cn } from '~/lib/utils';
+import { ColorInput } from './colorInput';
+import { ToggleGroupInput } from './toggleGroupInput';
+import { SliderInput } from './sliderInput';
+import { FontFamilyInput } from './fontFamilyInput';
+
+type StyleInputProps = {
+ select: { style: keyof TStyle; label: string }[];
+ className?: string;
+ value?: Partial | null;
+ onChange?(value: Partial): void;
+};
+
+/**
+ * @example
+ * ```tsx
+ * updateData({ ...data, style })}
+ * />
+ */
+export function StyleInput(props: StyleInputProps) {
+ function handleStyleChange(key: keyof TStyle, value: T) {
+ const newStyle = { ...props.value, [key]: value };
+ if (props.onChange) {
+ props.onChange(newStyle);
+ }
+ }
+
+ return (
+
+ {props.select.map((item) => {
+ switch (item.style) {
+ case 'backgroundColor':
+ return (
+
{
+ handleStyleChange('backgroundColor', backgroundColor);
+ }}
+ />
+ );
+
+ case 'borderColor':
+ return (
+ {
+ handleStyleChange('borderColor', borderColor);
+ }}
+ />
+ );
+
+ case 'borderRadius':
+ return (
+ {
+ handleStyleChange('borderRadius', borderRadius);
+ }}
+ />
+ );
+
+ case 'color':
+ return (
+ {
+ handleStyleChange('color', color);
+ }}
+ />
+ );
+
+ case 'fontFamily':
+ return (
+ {
+ handleStyleChange('fontFamily', v);
+ }}
+ />
+ );
+
+ case 'fontSize':
+ return (
+ {
+ handleStyleChange('fontSize', fontSize);
+ }}
+ />
+ );
+
+ case 'fontWeight':
+ return (
+ {
+ handleStyleChange('fontWeight', fontWeight);
+ }}
+ />
+ );
+
+ case 'padding': {
+ const paddingValue = props.value?.padding || { top: 0, bottom: 0, left: 0, right: 0 };
+ const icons = {
+ top: ,
+ bottom: ,
+ left: ,
+ right: ,
+ };
+
+ return (
+
+
+
+
+ {Object.entries(paddingValue).map(([k, v]) => {
+ return (
+ {
+ handleStyleChange('padding', {
+ ...props.value?.padding,
+ [k]: value,
+ });
+ }}
+ labelHidden
+ icon={icons[k as keyof typeof icons]}
+ />
+ );
+ })}
+
+
+
+ );
+ }
+
+ case 'textAlign':
+ return (
+ , value: 'left' },
+ { label: , value: 'center' },
+ { label: , value: 'right' },
+ ]}
+ label={item.label}
+ value={props.value?.textAlign ?? 'left'}
+ onValueChange={(textAlign) => {
+ handleStyleChange('textAlign', textAlign);
+ }}
+ />
+ );
+ }
+ })}
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/textInput.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/textInput.tsx
new file mode 100644
index 000000000..9f515cf33
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/textInput.tsx
@@ -0,0 +1,55 @@
+import { Input } from '~/components/ui/input';
+import { Label } from '~/components/ui/label';
+import { Textarea } from '~/components/ui/textarea';
+import { cn } from '~/lib/utils';
+
+type TextInputProps = React.ComponentProps & {
+ label?: string;
+};
+
+/**
+ * @example
+ * ```tsx
+ * {
+ * updateData({ ...data, props: { ...data.props, text: e.target.value } });
+ * }}
+ * />
+ * ```
+ */
+export function TextInput({ label, className, ...props }: TextInputProps) {
+ return (
+
+
+
+
+ );
+}
+
+type TextareaInputProps = React.ComponentProps & {
+ label?: string;
+ onChange?: (v: string) => void;
+};
+
+/**
+ * @example
+ * ```tsx
+ * {
+ * updateData({ ...data, props: { ...data.props, text: e.target.value } });
+ * }}
+ * />
+ * ```
+ */
+export function TextareaInput({ label, onChange, className, ...props }: TextareaInputProps) {
+ return (
+
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/toggleGroupInput.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/toggleGroupInput.tsx
new file mode 100644
index 000000000..efeaf9fd0
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/inspectPanel/panels/helpers/toggleGroupInput.tsx
@@ -0,0 +1,42 @@
+import { Label } from '~/components/ui/label';
+import { ToggleGroup, ToggleGroupItem } from '~/components/ui/toggle-group';
+import { cn } from '~/lib/utils';
+
+type ToggleGroupInputProps = React.ComponentProps & {
+ label?: string;
+ options?: { label: React.ReactNode; value: string }[];
+};
+
+/**
+ * @example
+ * ```tsx
+ * {
+ * updateData({ ...data, props: { ...data.props, shape } });
+ * }}
+ * />
+ * ```
+ */
+export function ToggleGroupInput({ ...props }: ToggleGroupInputProps) {
+ return (
+
+
+
+ {props.options?.map((option) => (
+
+ {option.label}
+
+ ))}
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/inspector-sidebar/stylesPanel.tsx b/packages/react-router-v7-example/app/components/inspector-sidebar/stylesPanel.tsx
new file mode 100644
index 000000000..805db4cd2
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/inspector-sidebar/stylesPanel.tsx
@@ -0,0 +1,86 @@
+import { setDocument, useDocument } from '~/context/editor';
+import EmailLayoutPropsSchema, { type EmailLayoutProps } from '~/documents/blocks/EmailLayout/EmailLayoutPropsSchema';
+import { ColorInput } from './inspectPanel/panels/helpers/colorInput';
+import { FontFamilyInput } from './inspectPanel/panels/helpers/fontFamilyInput';
+import { SliderInput } from './inspectPanel/panels/helpers/sliderInput';
+
+/**
+ * StylesPanel is a React component that provides a user interface for editing the styles of an EmailLayout block.
+ *
+ * @see {@link EmailLayoutPropsSchema} - Schema definition for all available properties
+ * @see {@link EmailLayoutProps} - TypeScript interface for EmailLayout properties
+ *
+ * Supported properties:
+ * - `backdropColor` {@link EmailLayoutProps.backdropColor} - Background color of the email
+ * - `borderColor` {@link EmailLayoutProps.borderColor} - Border color of the canvas (optional)
+ * - `borderRadius` {@link EmailLayoutProps.borderRadius} - Border radius of the canvas in pixels
+ * - `canvasColor` {@link EmailLayoutProps.canvasColor} - Background color of the canvas
+ * - `textColor` {@link EmailLayoutProps.textColor} - Default text color (TODO)
+ * - `fontFamily` {@link EmailLayoutProps.fontFamily} - Default font family (TODO)
+ *
+ * @returns React component for editing EmailLayout styles
+ */
+export function StylesPanel() {
+ const block = useDocument().root;
+ if (!block) {
+ return Block not found
;
+ }
+
+ const { data, type } = block;
+ if (type !== 'EmailLayout') {
+ throw new Error('Expected "root" element to be of type EmailLayout');
+ }
+
+ const updateData = (d: unknown) => {
+ const res = EmailLayoutPropsSchema.safeParse(d);
+ if (res.success) {
+ setDocument({ root: { type, data: res.data } });
+ } else {
+ console.error('Validation error:', res.error);
+ }
+ };
+
+ return (
+
+ updateData({ ...data, backdropColor })}
+ />
+
+ updateData({ ...data, canvasColor })}
+ />
+
+ updateData({ ...data, borderColor })}
+ />
+
+ updateData({ ...data, borderRadius })}
+ />
+
+
+ updateData({
+ ...data,
+ fontFamily: v,
+ })
+ }
+ />
+
+ updateData({ ...data, textColor })}
+ />
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/template-sidebar.tsx b/packages/react-router-v7-example/app/components/template-sidebar.tsx
new file mode 100644
index 000000000..3c3c9ea62
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/template-sidebar.tsx
@@ -0,0 +1,85 @@
+import { Separator } from '~/components/ui/separator';
+import { Sheet, SheetContent, SheetDescription, SheetTitle } from '~/components/ui/sheet';
+import { resetDocument, toggleTemplatesSidebarOpen, useTemplatesSidebarOpen } from '~/context/editor';
+import { useIsMobile } from '~/hooks/use-mobile';
+import { getTemplate, templateOptions } from '~/lib/utils/get-template';
+
+export function TemplateSidebar() {
+ const isMobile = useIsMobile();
+ const isOpen = useTemplatesSidebarOpen();
+
+ const handleTemplateSelect = (templateString: (typeof templateOptions)[number]['value']) => {
+ const template = getTemplate(templateString);
+ resetDocument(template);
+ };
+
+ const sidebarContent = (
+ <>
+ {!isMobile && (
+
+
EmailBuilder.js
+
+ )}
+
+
+
+ {templateOptions.map((op) => (
+
+ ))}
+
+
+
+
+
+
+
+ >
+ );
+
+ if (isMobile) {
+ return (
+
+
+
+ EmailBuilder.js
+
+
+ {sidebarContent}
+
+
+ );
+ }
+
+ return (
+
+ {sidebarContent}
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/components/templates/empty-email-message.ts b/packages/react-router-v7-example/app/components/templates/empty-email-message.ts
new file mode 100644
index 000000000..edf5b4aa3
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/templates/empty-email-message.ts
@@ -0,0 +1,16 @@
+import { type TEditorConfiguration } from '../../documents/editor/core';
+
+const EMPTY_EMAIL_MESSAGE: TEditorConfiguration = {
+ root: {
+ type: 'EmailLayout',
+ data: {
+ backdropColor: '#F5F5F5',
+ canvasColor: '#FFFFFF',
+ textColor: '#262626',
+ fontFamily: 'MODERN_SANS',
+ childrenIds: [],
+ },
+ },
+};
+
+export default EMPTY_EMAIL_MESSAGE;
diff --git a/packages/react-router-v7-example/app/components/templates/one-time-passcode.ts b/packages/react-router-v7-example/app/components/templates/one-time-passcode.ts
new file mode 100644
index 000000000..30f503228
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/templates/one-time-passcode.ts
@@ -0,0 +1,130 @@
+import { type TEditorConfiguration } from '../../documents/editor/core';
+
+const ONE_TIME_PASSCODE: TEditorConfiguration = {
+ root: {
+ type: 'EmailLayout',
+ data: {
+ backdropColor: '#000000',
+ canvasColor: '#000000',
+ textColor: '#FFFFFF',
+ fontFamily: 'BOOK_SERIF',
+ childrenIds: [
+ 'block_ChPX66qUhF46uynDE8AY11',
+ 'block_CkNrtQgkqPt2YWLv1hr5eJ',
+ 'block_BFLBa3q5y8kax9KngyXP65',
+ 'block_4T7sDFb4rqbSyWjLGJKmov',
+ 'block_Rvc8ZfTjfhXjpphHquJKvP',
+ ],
+ },
+ },
+ block_ChPX66qUhF46uynDE8AY11: {
+ type: 'Image',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 24,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ textAlign: 'center',
+ },
+ props: {
+ height: 24,
+ url: 'https://d1iiu589g39o6c.cloudfront.net/live/platforms/platform_A9wwKSL6EV6orh6f/images/wptemplateimage_jc7ZfPvdHJ6rtH1W/&.png',
+ contentAlignment: 'middle',
+ },
+ },
+ },
+ block_CkNrtQgkqPt2YWLv1hr5eJ: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#ffffff',
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'center',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Here is your one-time passcode:',
+ },
+ },
+ },
+ block_BFLBa3q5y8kax9KngyXP65: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: 'MONOSPACE',
+ fontWeight: 'bold',
+ textAlign: 'center',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ level: 'h1',
+ text: '0123456',
+ },
+ },
+ },
+ block_4T7sDFb4rqbSyWjLGJKmov: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#868686',
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'center',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'This code will expire in 30 minutes.',
+ },
+ },
+ },
+ block_Rvc8ZfTjfhXjpphHquJKvP: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#868686',
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'center',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Problems? Just reply to this email.',
+ },
+ },
+ },
+};
+
+export default ONE_TIME_PASSCODE;
diff --git a/packages/react-router-v7-example/app/components/templates/order-ecommerce.ts b/packages/react-router-v7-example/app/components/templates/order-ecommerce.ts
new file mode 100644
index 000000000..deb7c60d6
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/templates/order-ecommerce.ts
@@ -0,0 +1,1445 @@
+import { type TEditorConfiguration } from '../../documents/editor/core';
+
+const ORDER_ECOMMERCE: TEditorConfiguration = {
+ root: {
+ type: 'EmailLayout',
+ data: {
+ backdropColor: '#FFFFFF',
+ canvasColor: '#FFFFFF',
+ textColor: '#333333',
+ fontFamily: 'MODERN_SANS',
+ childrenIds: [
+ 'block_Ei34o65X5XnD5dexNQgXh8',
+ 'block_SLut2hpFsy7U6SmhtLtWNU',
+ 'block_RrwLc5YMpHJGE5Xe9fAZVW',
+ 'block_FHCeHrN3XNaH7bu6HhjVNT',
+ 'block_3vynUg15EevMA6DiLsWJk2',
+ 'block_5eQPGdKJ6JQYXCD1MEaHbv',
+ 'block_WK3b19BzGE8VNKDwiSZ8s8',
+ 'block_Pe2Dm5Cbqq5CcjL5wEdMg4',
+ 'block_SizNWJDCcqw9tGH2ComdDX',
+ 'block_4Qxv32WQo8pDzPu1d3vixz',
+ 'block_LKiZYDTPeJGkRWHForFSDQ',
+ 'block_P6XtJj721vPfrhXKzS8uR5',
+ 'block_AKTwpjBmtevcfj82z52i8p',
+ ],
+ },
+ },
+ block_PHe2XSbV4RvD76p21F3VdN: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ level: 'h2',
+ text: 'Unbranded Supply',
+ },
+ },
+ },
+ block_DeTzPQDerYjBEMkt6TuD41: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_PHe2XSbV4RvD76p21F3VdN'],
+ },
+ },
+ },
+ block_TPxZn2Fjxc7MwgXAEybxkV: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#808080',
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '#103571871',
+ },
+ },
+ },
+ block_5fuNN9F4uZRTGa4Hy5F4Nd: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_TPxZn2Fjxc7MwgXAEybxkV'],
+ },
+ },
+ },
+ block_Ei34o65X5XnD5dexNQgXh8: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_DeTzPQDerYjBEMkt6TuD41'],
+ },
+ {
+ childrenIds: ['block_5fuNN9F4uZRTGa4Hy5F4Nd'],
+ },
+ {
+ childrenIds: [],
+ },
+ ],
+ },
+ },
+ },
+ block_SLut2hpFsy7U6SmhtLtWNU: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 0,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Thank you for your purchase!',
+ },
+ },
+ },
+ block_RrwLc5YMpHJGE5Xe9fAZVW: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#404040',
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Hi Jordan,\n\nWe are preparing your package. Your tracking number will be generated once the package is ready to ship.',
+ },
+ },
+ },
+ block_FHCeHrN3XNaH7bu6HhjVNT: {
+ type: 'Button',
+ data: {
+ style: {
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 40,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ buttonBackgroundColor: '#5696E5',
+ buttonStyle: 'rounded',
+ buttonTextColor: '#FFFFFF',
+ fullWidth: false,
+ size: 'large',
+ text: 'View your order',
+ url: 'https://example.usewaypoint.com/orders/103571871',
+ },
+ },
+ },
+ block_3vynUg15EevMA6DiLsWJk2: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 0,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Order summary',
+ },
+ },
+ },
+ block_Dvs2GYcF6SzfCYYNwfv1oM: {
+ type: 'Image',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ textAlign: 'left',
+ },
+ props: {
+ url: 'https://d1iiu589g39o6c.cloudfront.net/live/platforms/platform_A9wwKSL6EV6orh6f/images/wptemplateimage_FBfTeYhbdXtqYpCA/kiran-ck-6rXpQzfCYlw-unsplash.jpg',
+ alt: '',
+ linkHref: null,
+ contentAlignment: 'middle',
+ },
+ },
+ },
+ block_KnMb2mQSf7nz8HXx6jyDUV: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_Dvs2GYcF6SzfCYYNwfv1oM'],
+ },
+ },
+ },
+ block_4sAeV4cLVKV8y4QFGV3Gf7: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 4,
+ bottom: 4,
+ left: 4,
+ right: 4,
+ },
+ },
+ props: {
+ childrenIds: ['block_KnMb2mQSf7nz8HXx6jyDUV'],
+ },
+ },
+ },
+ block_TBZZDHvoKHcW3j2nwQgmhC: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 4,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Unbranded Pen x 5',
+ },
+ },
+ },
+ block_KqpmZUcZajsnFMbTMhizZs: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#808080',
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Black / Black ink',
+ },
+ },
+ },
+ block_92JgagxxVxzyfnbvj5iUUJ: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_9bNBgfiJJyh65pfsy1fu7e: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#808080',
+ backgroundColor: null,
+ fontSize: 12,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '($5.00)',
+ },
+ },
+ },
+ block_7JwR5SHM2Bfjihamh45tRL: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_GQ77o7MDMwj48B5nocEJNq: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_TBZZDHvoKHcW3j2nwQgmhC', 'block_KqpmZUcZajsnFMbTMhizZs'],
+ },
+ },
+ },
+ block_6VvTYskm3BULZZEfYCkjwN: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$25.00',
+ },
+ },
+ },
+ block_V34TMZ9yg6t4xKMYfyD2Rk: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_6VvTYskm3BULZZEfYCkjwN'],
+ },
+ },
+ },
+ block_YBtUndjQaRuLFpEkgvjagk: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ right: 0,
+ left: 0,
+ },
+ },
+ props: {
+ fixedWidths: [64, null, 80],
+ columnsCount: 3,
+ columnsGap: 16,
+ columns: [
+ {
+ childrenIds: ['block_4sAeV4cLVKV8y4QFGV3Gf7'],
+ },
+ {
+ childrenIds: ['block_GQ77o7MDMwj48B5nocEJNq'],
+ },
+ {
+ childrenIds: ['block_V34TMZ9yg6t4xKMYfyD2Rk'],
+ },
+ ],
+ },
+ },
+ },
+ block_XykBAUxf8awiR2CxBfNLZN: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_YBtUndjQaRuLFpEkgvjagk'],
+ },
+ },
+ },
+ block_9AvGGkcg4Rq93DmxXjXwEP: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_5eQPGdKJ6JQYXCD1MEaHbv: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: ['block_XykBAUxf8awiR2CxBfNLZN', 'block_9AvGGkcg4Rq93DmxXjXwEP'],
+ },
+ },
+ },
+ block_Wnt477QxYNynetWGwkLg89: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_FnzMxssTraByh9FbbnJvRw: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#808080',
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Discount (BLKFRI)',
+ },
+ },
+ },
+ block_NyMsczQB7L3BKUa1RpUauu: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_FnzMxssTraByh9FbbnJvRw'],
+ },
+ },
+ },
+ block_AcbYK2jnr4sqG1GAbUHqNL: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$5.00',
+ },
+ },
+ },
+ block_BgHgpkAxq2qJUttN8pimnE: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_AcbYK2jnr4sqG1GAbUHqNL'],
+ },
+ },
+ },
+ block_2QEX1chf5uWU5ZZebf4gmu: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 4,
+ bottom: 4,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_NyMsczQB7L3BKUa1RpUauu'],
+ },
+ {
+ childrenIds: ['block_BgHgpkAxq2qJUttN8pimnE'],
+ },
+ {
+ childrenIds: [],
+ },
+ ],
+ },
+ },
+ },
+ block_Q87SYRrWCwfRa56q3qLBDG: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#808080',
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Subtotal',
+ },
+ },
+ },
+ block_QUNbV1p7f9qaSEvyLmnxmD: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_Q87SYRrWCwfRa56q3qLBDG'],
+ },
+ },
+ },
+ block_cF6MdfmbKisXytmfPU4QY: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$25.00',
+ },
+ },
+ },
+ block_4WkcuRqzqvTFvHGSBLGAAG: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_cF6MdfmbKisXytmfPU4QY'],
+ },
+ },
+ },
+ block_Lu666sTP6hqLkHiBThmm4G: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 4,
+ bottom: 4,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_QUNbV1p7f9qaSEvyLmnxmD'],
+ },
+ {
+ childrenIds: ['block_4WkcuRqzqvTFvHGSBLGAAG'],
+ },
+ {
+ childrenIds: [],
+ },
+ ],
+ },
+ },
+ },
+ block_GgUZQtnTQbiBFhMdJE5YYB: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#808080',
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Shipping',
+ },
+ },
+ },
+ block_XzjZ3cnqJrKrwubFwD4VSr: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_GgUZQtnTQbiBFhMdJE5YYB'],
+ },
+ },
+ },
+ block_ViKMzYtjFGRksFuzRn5rny: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$5.00',
+ },
+ },
+ },
+ block_AcDrP2ZMVByFU269wvMgtw: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_ViKMzYtjFGRksFuzRn5rny'],
+ },
+ },
+ },
+ block_Gn2h8bajFuW8zDBsiVVitV: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 4,
+ bottom: 4,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_XzjZ3cnqJrKrwubFwD4VSr'],
+ },
+ {
+ childrenIds: ['block_AcDrP2ZMVByFU269wvMgtw'],
+ },
+ {
+ childrenIds: [],
+ },
+ ],
+ },
+ },
+ },
+ block_64aQbVaGVuFmvjPfr9hend: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#808080',
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Taxes',
+ },
+ },
+ },
+ block_QTKa4AdGxtSbJmRY7ytjD8: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_64aQbVaGVuFmvjPfr9hend'],
+ },
+ },
+ },
+ block_H1MgkbcNH4sz8pMC2h4dVh: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$0.00',
+ },
+ },
+ },
+ block_Mi7A4sXfSXaEcjFV17WgSg: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_H1MgkbcNH4sz8pMC2h4dVh'],
+ },
+ },
+ },
+ block_2xkeWLDtTXj5jFg57KhfYR: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 4,
+ bottom: 4,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_QTKa4AdGxtSbJmRY7ytjD8'],
+ },
+ {
+ childrenIds: ['block_Mi7A4sXfSXaEcjFV17WgSg'],
+ },
+ {
+ childrenIds: [],
+ },
+ ],
+ },
+ },
+ },
+ block_QgSNshqbsUkk4FrRywjoRd: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_B5teSFiXFfpLmiB29c1WYF: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#808080',
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Total',
+ },
+ },
+ },
+ block_DPodDUHaaLcYuAG3CQi1F7: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_B5teSFiXFfpLmiB29c1WYF'],
+ },
+ },
+ },
+ block_Wo7gkfj5QDqEiXywi6e2dq: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 21,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$30.00',
+ },
+ },
+ },
+ block_YABuGb9jY34Rywk4H2wmhu: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_Wo7gkfj5QDqEiXywi6e2dq'],
+ },
+ },
+ },
+ block_VvK99ZhLLgmycHQXKVFV7E: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 4,
+ bottom: 4,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_DPodDUHaaLcYuAG3CQi1F7'],
+ },
+ {
+ childrenIds: ['block_YABuGb9jY34Rywk4H2wmhu'],
+ },
+ {
+ childrenIds: [],
+ },
+ ],
+ },
+ },
+ },
+ block_VhteQbJa7bCSmykN4AcHkp: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [
+ 'block_2QEX1chf5uWU5ZZebf4gmu',
+ 'block_Lu666sTP6hqLkHiBThmm4G',
+ 'block_Gn2h8bajFuW8zDBsiVVitV',
+ 'block_2xkeWLDtTXj5jFg57KhfYR',
+ 'block_QgSNshqbsUkk4FrRywjoRd',
+ 'block_VvK99ZhLLgmycHQXKVFV7E',
+ ],
+ },
+ },
+ },
+
+ block_WK3b19BzGE8VNKDwiSZ8s8: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columnsGap: 16,
+ columns: [
+ {
+ childrenIds: ['block_Wnt477QxYNynetWGwkLg89'],
+ },
+ {
+ childrenIds: ['block_VhteQbJa7bCSmykN4AcHkp'],
+ },
+ {
+ childrenIds: [],
+ },
+ ],
+ },
+ },
+ },
+ block_Pe2Dm5Cbqq5CcjL5wEdMg4: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 40,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Customer information',
+ },
+ },
+ },
+ block_2c68kHKvfEzD1DRVKqh4Pg: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Shipping address',
+ },
+ },
+ },
+ block_SY5nL8mzSPgeEyeDgkDUEa: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '123 Main St New York, NY 10002',
+ },
+ },
+ },
+ block_ThQEcRPtSMqKiThzU9EGwV: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_2c68kHKvfEzD1DRVKqh4Pg', 'block_SY5nL8mzSPgeEyeDgkDUEa'],
+ },
+ },
+ },
+ block_NkMSrWFvqewuenMYqLNcRa: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Billing address',
+ },
+ },
+ },
+ block_7RTvDRNCQpM5xV6oXsCx6s: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '123 Main St New York, NY 10002',
+ },
+ },
+ },
+ block_KaHi1FBV64emMA3kb7x4vE: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_NkMSrWFvqewuenMYqLNcRa', 'block_7RTvDRNCQpM5xV6oXsCx6s'],
+ },
+ },
+ },
+ block_SizNWJDCcqw9tGH2ComdDX: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_ThQEcRPtSMqKiThzU9EGwV'],
+ },
+ {
+ childrenIds: ['block_KaHi1FBV64emMA3kb7x4vE'],
+ },
+ {
+ childrenIds: [],
+ },
+ ],
+ },
+ },
+ },
+ block_4Qxv32WQo8pDzPu1d3vixz: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 24,
+ bottom: 8,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Shipping method',
+ },
+ },
+ },
+ block_LKiZYDTPeJGkRWHForFSDQ: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 48,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Ground – Standard',
+ },
+ },
+ },
+ block_P6XtJj721vPfrhXKzS8uR5: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_AKTwpjBmtevcfj82z52i8p: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'If you have any questions, just reply to this email.',
+ },
+ },
+ },
+};
+
+export default ORDER_ECOMMERCE;
diff --git a/packages/react-router-v7-example/app/components/templates/post-metrics-report.ts b/packages/react-router-v7-example/app/components/templates/post-metrics-report.ts
new file mode 100644
index 000000000..1ef5f40ab
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/templates/post-metrics-report.ts
@@ -0,0 +1,394 @@
+import { type TEditorConfiguration } from '../../documents/editor/core';
+
+const POST_METRICS_REPORT: TEditorConfiguration = {
+ root: {
+ type: 'EmailLayout',
+ data: {
+ backdropColor: '#EEEEEE',
+ canvasColor: '#FFFFFF',
+ textColor: '#242424',
+ fontFamily: 'MODERN_SANS',
+ childrenIds: [
+ 'block_6B5Ke1N2KdM4STQjw7eEHT',
+ 'block_VE1bKDbSqiYD9VtmmaYX7w',
+ 'block_QQqjnauXAixe2LnJXVmHwQ',
+ 'block_9yEYNZmmmFauyuSKi9iJA9',
+ 'block_AC6eRbFVSbXHVCg2zutkLu',
+ 'block_CYXkzjxrj6e4Sb74Kt8quM',
+ 'block_AUAxG2BgwA6XC8rF5xAaaP',
+ 'block_C1YvcFvMvzB1Fhxn3uV8zV',
+ 'block_FsiiokCgr9bZitHn7sx7TB',
+ 'block_DomD4MLJ58VcMo49vmeTH8',
+ ],
+ },
+ },
+ block_6sP1Pi9AimAoti2ZPdNXUf: {
+ type: 'Image',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ textAlign: 'left',
+ },
+ props: {
+ height: 16,
+ url: 'https://d1iiu589g39o6c.cloudfront.net/live/platforms/platform_A9wwKSL6EV6orh6f/images/wptemplateimage_n3eLjsf37dcjFaj5/Narrative.png',
+ contentAlignment: 'middle',
+ },
+ },
+ },
+ block_9G37m6eNPw2MpUj6SYGoq1: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_6sP1Pi9AimAoti2ZPdNXUf'],
+ },
+ },
+ },
+ block_A8GU16mV1RdP85jaszN7oj: {
+ type: 'Avatar',
+ data: {
+ style: {
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ size: 32,
+ shape: 'circle',
+ imageUrl: 'https://ui-avatars.com/api/?name=John+Doe',
+ alt: 'Jordan',
+ },
+ },
+ },
+ block_4WmdbYU15yfdpYcYjsVDBA: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_A8GU16mV1RdP85jaszN7oj'],
+ },
+ },
+ },
+ block_JQAdLSAtvmfsRih13srJ8m: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_6B5Ke1N2KdM4STQjw7eEHT: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 24,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_9G37m6eNPw2MpUj6SYGoq1'],
+ },
+ {
+ childrenIds: ['block_4WmdbYU15yfdpYcYjsVDBA'],
+ },
+ {
+ childrenIds: ['block_JQAdLSAtvmfsRih13srJ8m'],
+ },
+ ],
+ },
+ },
+ },
+ block_VE1bKDbSqiYD9VtmmaYX7w: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'center',
+ padding: {
+ top: 24,
+ bottom: 0,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Last week, your posts received',
+ },
+ },
+ },
+ block_QQqjnauXAixe2LnJXVmHwQ: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 48,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'center',
+ padding: {
+ top: 16,
+ bottom: 0,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: '1,511',
+ },
+ },
+ },
+ block_9yEYNZmmmFauyuSKi9iJA9: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'center',
+ padding: {
+ top: 0,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Post impressions',
+ },
+ },
+ },
+ block_AC6eRbFVSbXHVCg2zutkLu: {
+ type: 'Button',
+ data: {
+ style: {
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'center',
+ padding: {
+ top: 16,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ buttonBackgroundColor: '#24AF7F',
+ buttonStyle: 'rounded',
+ buttonTextColor: '#FFFFFF',
+ fullWidth: false,
+ size: 'medium',
+ text: 'View your analytics →',
+ url: 'https://example.usewaypoint.com/post/1234/analytics',
+ },
+ },
+ },
+ block_CYXkzjxrj6e4Sb74Kt8quM: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'center',
+ padding: {
+ top: 24,
+ bottom: 8,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Top performing post last week',
+ },
+ },
+ },
+ block_FpDmSnPwiVzBXUvTc4yWFh: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'So excited to now have drag and drop on Waypoint. This builds on top of our new Navigator feature that we shipped earlier this week 🚢.',
+ },
+ },
+ },
+ block_LjuDF6uu4qWL3Ju3ng63ky: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: '#FAFAFA',
+ borderColor: null,
+ borderRadius: 8,
+ padding: {
+ top: 24,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: ['block_FpDmSnPwiVzBXUvTc4yWFh'],
+ },
+ },
+ },
+ block_AUAxG2BgwA6XC8rF5xAaaP: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: ['block_LjuDF6uu4qWL3Ju3ng63ky'],
+ },
+ },
+ },
+ block_C1YvcFvMvzB1Fhxn3uV8zV: {
+ type: 'Button',
+ data: {
+ style: {
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'center',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ buttonBackgroundColor: '#EEEEEE',
+ buttonStyle: 'rounded',
+ buttonTextColor: '#474849',
+ fullWidth: false,
+ size: 'medium',
+ text: 'Show more',
+ url: 'https://example.usewaypoint.com/jordanisip/posts',
+ },
+ },
+ },
+ block_FsiiokCgr9bZitHn7sx7TB: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 40,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_DomD4MLJ58VcMo49vmeTH8: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#474849',
+ backgroundColor: null,
+ fontSize: 12,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'center',
+ padding: {
+ top: 24,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Questions? Just reply to this email.',
+ },
+ },
+ },
+};
+
+export default POST_METRICS_REPORT;
diff --git a/packages/react-router-v7-example/app/components/templates/reservation-reminder.ts b/packages/react-router-v7-example/app/components/templates/reservation-reminder.ts
new file mode 100644
index 000000000..c599e7f65
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/templates/reservation-reminder.ts
@@ -0,0 +1,2197 @@
+import { type TEditorConfiguration } from '../../documents/editor/core';
+
+const RESERVATION_REMINDER: TEditorConfiguration = {
+ root: {
+ type: 'EmailLayout',
+ data: {
+ backdropColor: '#FFFFFF',
+ canvasColor: '#FFFFFF',
+ textColor: '#03124A',
+ fontFamily: 'GEOMETRIC_SANS',
+ childrenIds: [
+ 'block_DDiR1Jz1iXY5aR1PMCzRAC',
+ 'block_J98nQiyYeX1vJTu44ZSuua',
+ 'block_M7imqmjHsmhd61LcdHJz5m',
+ 'block_Fec2JmwhjNYJS7xWDyUqWu',
+ 'block_E8jr6ieqZ4fwaHxj9C1uBF',
+ 'block_H1hMtvKJ9b1eQ2aiEDjbTL',
+ 'block_JJtd5TsPSjEMNhtKeMPh82',
+ 'block_HRswcB2Ww7m3H4SijapqPq',
+ 'block_kq85AQYHuSL8fXqqcZP7D',
+ 'block_Sa3vmMr4AUT4W55Mx5EFxr',
+ 'block_YF6R8BeMFE3XuiSP4cUex2',
+ 'block_Qh1QiwAbDq1yxuzqBMAxbJ',
+ 'block_FUvBg3iUzvmUcTjmjvo5Wd',
+ 'block_UncM7Be9AkE197F3KYjpa5',
+ 'block_8hNnkxhS84scJ18FCwRr4q',
+ 'block_JihqAfW5u5wR8oQUJFP5kE',
+ ],
+ },
+ },
+ block_DDiR1Jz1iXY5aR1PMCzRAC: {
+ type: 'Image',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 24,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ textAlign: 'left',
+ },
+ props: {
+ height: 32,
+ url: 'https://d1iiu589g39o6c.cloudfront.net/live/platforms/platform_A9wwKSL6EV6orh6f/images/wptemplateimage_RAFATLGe3CN1wDsb/birdhouse.png',
+ contentAlignment: 'middle',
+ },
+ },
+ },
+ block_J98nQiyYeX1vJTu44ZSuua: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 0,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ level: 'h2',
+ text: 'Elaina arrives Sunday, May 21.',
+ },
+ },
+ },
+ block_M7imqmjHsmhd61LcdHJz5m: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'If you haven’t already, reach out to Elaina to send directions and coordinate check-in time.',
+ },
+ },
+ },
+ block_MEPSuGAUvE8WAg1AJWJvNU: {
+ type: 'Avatar',
+ data: {
+ style: {
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ size: 64,
+ shape: 'circle',
+ imageUrl: 'https://ui-avatars.com/api/?size=128&name=Elaina',
+ alt: 'Elaina',
+ },
+ },
+ },
+ block_7MDe4niz9sWkSR7Un5BvRo: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_MEPSuGAUvE8WAg1AJWJvNU'],
+ },
+ },
+ },
+ block_5jMPEu49PGBxyGcuBYxXK2: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Elaina',
+ },
+ },
+ },
+ block_NUv5obp6NnExg8DgonEyzm: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#2e3c68',
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'United States\nMember since 2013',
+ },
+ },
+ },
+ block_NetzRCyQeJbPp2VWQwmxBP: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_5jMPEu49PGBxyGcuBYxXK2', 'block_NUv5obp6NnExg8DgonEyzm'],
+ },
+ },
+ },
+ block_GH41bF6mW4wxDywjsxKrAv: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_UWushKnW34XryX4BSzpotP: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: '#f8f8f8',
+ padding: {
+ top: 24,
+ bottom: 24,
+ left: 16,
+ right: 16,
+ },
+ },
+ props: {
+ fixedWidths: [64, null, null],
+ columnsCount: 2,
+ columnsGap: 16,
+ columns: [
+ {
+ childrenIds: ['block_7MDe4niz9sWkSR7Un5BvRo'],
+ },
+ {
+ childrenIds: ['block_NetzRCyQeJbPp2VWQwmxBP'],
+ },
+ {
+ childrenIds: ['block_GH41bF6mW4wxDywjsxKrAv'],
+ },
+ ],
+ },
+ },
+ },
+ block_Fec2JmwhjNYJS7xWDyUqWu: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: ['block_UWushKnW34XryX4BSzpotP'],
+ },
+ },
+ },
+ block_E8jr6ieqZ4fwaHxj9C1uBF: {
+ type: 'Button',
+ data: {
+ style: {
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ buttonBackgroundColor: '#03124A',
+ buttonStyle: 'rounded',
+ buttonTextColor: '#FFFFFF',
+ fullWidth: false,
+ size: 'large',
+ text: 'Send Elaina a message',
+ url: 'https://www.usewaypoint.com',
+ },
+ },
+ },
+ block_H1hMtvKJ9b1eQ2aiEDjbTL: {
+ type: 'Image',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 24,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ textAlign: 'left',
+ },
+ props: {
+ url: 'https://d1iiu589g39o6c.cloudfront.net/live/platforms/platform_A9wwKSL6EV6orh6f/images/wptemplateimage_QWeWcucRbjPqoewY/L1030293.jpg',
+ alt: 'Photo',
+ linkHref: 'https://example.usewaypoint.com/listings/r029348209842',
+ contentAlignment: 'middle',
+ },
+ },
+ },
+ block_JJtd5TsPSjEMNhtKeMPh82: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ level: 'h2',
+ text: 'Private Hideaway in the North Shore',
+ },
+ },
+ },
+ block_HRswcB2Ww7m3H4SijapqPq: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Entire home/apartment',
+ },
+ },
+ },
+ block_kq85AQYHuSL8fXqqcZP7D: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_AvnqsSCo9CTXYXHfMCQvUN: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Check in',
+ },
+ },
+ },
+ block_BsbDbmYTuyisEMXQY8dwW6: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Sunday, May 21 2023.\nCheck-in anytime after 3:00 PM',
+ },
+ },
+ },
+ block_6G89B9zYn7ELqnioW62cLA: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Check out',
+ },
+ },
+ },
+ block_DhZSQJBrQCXG17HSSMAfiq: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Tuesday, May 23 2023.\nCheckout by 11:00 AM',
+ },
+ },
+ },
+ block_NAzWgDcqGdpeHWrspZ8fz7: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_Sa3vmMr4AUT4W55Mx5EFxr: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: [
+ 'block_AvnqsSCo9CTXYXHfMCQvUN',
+ 'block_BsbDbmYTuyisEMXQY8dwW6',
+ 'block_6G89B9zYn7ELqnioW62cLA',
+ 'block_DhZSQJBrQCXG17HSSMAfiq',
+ 'block_NAzWgDcqGdpeHWrspZ8fz7',
+ ],
+ },
+ },
+ },
+ block_MxedV7vMjjU4ZsikW1Fadv: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Guests',
+ },
+ },
+ },
+ block_8htLTdnN2CcAX67kwJFo2V: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Let them know upfront if your listing is suitable for children by updating your House Rules.',
+ },
+ },
+ },
+ block_UR2m2tSekeEBy6s76D9Vju: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_YF6R8BeMFE3XuiSP4cUex2: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: ['block_MxedV7vMjjU4ZsikW1Fadv', 'block_8htLTdnN2CcAX67kwJFo2V', 'block_UR2m2tSekeEBy6s76D9Vju'],
+ },
+ },
+ },
+ block_BouZQPSLfEfWvVp9qrHaW1: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Confirmation code',
+ },
+ },
+ },
+ block_Si5vw3ga7PZppiYv6g7GV7: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'HMFN35C4MH',
+ },
+ },
+ },
+ block_S6ARLFYsniJdJdkkie4UNa: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_Si5vw3ga7PZppiYv6g7GV7'],
+ },
+ },
+ },
+ block_MawqUvY8CdWpQ84dy4eRsa: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'View itinerary',
+ },
+ },
+ },
+ block_KjrdgHLJcyAcsjKStPktPU: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_MawqUvY8CdWpQ84dy4eRsa'],
+ },
+ },
+ },
+ block_DK7wXQDdPd8rzFxMeyxDzs: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_LHBuzMB27wJAjyi6bwLKeN: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_S6ARLFYsniJdJdkkie4UNa'],
+ },
+ {
+ childrenIds: ['block_KjrdgHLJcyAcsjKStPktPU'],
+ },
+ {
+ childrenIds: ['block_DK7wXQDdPd8rzFxMeyxDzs'],
+ },
+ ],
+ },
+ },
+ },
+ block_CWgMBgMBgpLMjqd1biz1mz: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_Qh1QiwAbDq1yxuzqBMAxbJ: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: ['block_BouZQPSLfEfWvVp9qrHaW1', 'block_LHBuzMB27wJAjyi6bwLKeN', 'block_CWgMBgMBgpLMjqd1biz1mz'],
+ },
+ },
+ },
+ block_SnYxmj5ia2K4dqVEaZDLst: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Guest paid',
+ },
+ },
+ },
+ block_DBsnXnwmLBhETFknwe3qJt: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$99.00 x 2 nights',
+ },
+ },
+ },
+ block_4DvvyfwDXkgXXsjswWE9DE: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_DBsnXnwmLBhETFknwe3qJt'],
+ },
+ },
+ },
+ block_L6NUphHkWkpcXZgzBbW9dM: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$198.00',
+ },
+ },
+ },
+ block_DE363EYUo29c6qTiQLFzHv: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_L6NUphHkWkpcXZgzBbW9dM'],
+ },
+ },
+ },
+ block_Hs2DNRHwYGFvzMGVrZWUat: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_8rxqcogAeoRMFJJwHDLBvY: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_4DvvyfwDXkgXXsjswWE9DE'],
+ },
+ {
+ childrenIds: ['block_DE363EYUo29c6qTiQLFzHv'],
+ },
+ {
+ childrenIds: ['block_Hs2DNRHwYGFvzMGVrZWUat'],
+ },
+ ],
+ },
+ },
+ },
+ block_KbFcTU27iLRQK6eVKkJ5As: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Cleaning fee',
+ },
+ },
+ },
+ block_McUGzTsrZTZGi8rXAs85KR: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_KbFcTU27iLRQK6eVKkJ5As'],
+ },
+ },
+ },
+ block_VhFNCUhgsbekxdnzvddmSH: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$50.00',
+ },
+ },
+ },
+ block_N5gv3mrQEm485SpKfBFHzi: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_VhFNCUhgsbekxdnzvddmSH'],
+ },
+ },
+ },
+ block_T3dLYTNNPBosywgZPEvuyn: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_RUef6VdysRRfcaDSdPPPRL: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_McUGzTsrZTZGi8rXAs85KR'],
+ },
+ {
+ childrenIds: ['block_N5gv3mrQEm485SpKfBFHzi'],
+ },
+ {
+ childrenIds: ['block_T3dLYTNNPBosywgZPEvuyn'],
+ },
+ ],
+ },
+ },
+ },
+ block_4HKuXRyhnMPYfpEre1Y4EP: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Guest service fee',
+ },
+ },
+ },
+ block_C9rqNoPW6sR7FJ94dCW48c: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_4HKuXRyhnMPYfpEre1Y4EP'],
+ },
+ },
+ },
+ block_BGnqpBpBPAJZMqiSB2tFhs: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$35.01',
+ },
+ },
+ },
+ block_8EUayHcU4ze8PPYG4uVyqQ: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_BGnqpBpBPAJZMqiSB2tFhs'],
+ },
+ },
+ },
+ block_NAdj8o21Qtuz5U1Ptsp8QS: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_FDZhF8wpD8Am5TBAxqXYRn: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_C9rqNoPW6sR7FJ94dCW48c'],
+ },
+ {
+ childrenIds: ['block_8EUayHcU4ze8PPYG4uVyqQ'],
+ },
+ {
+ childrenIds: ['block_NAdj8o21Qtuz5U1Ptsp8QS'],
+ },
+ ],
+ },
+ },
+ },
+ block_Fnft7v54tmFaNiTJ3Qn5sg: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Occupancy taxes',
+ },
+ },
+ },
+ block_Qvmy5aUBDfQXJyGjUyTZa3: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_Fnft7v54tmFaNiTJ3Qn5sg'],
+ },
+ },
+ },
+ block_Jnd8bMVCEZPckFeotT1H6F: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$46.02',
+ },
+ },
+ },
+ block_9LZ7J716qiGogPFAufpYdi: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_Jnd8bMVCEZPckFeotT1H6F'],
+ },
+ },
+ },
+ block_RU3D4pVFkQDvAyNS7P5rRR: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_9Fj1tXV6otFnGdgJevbFPG: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_Qvmy5aUBDfQXJyGjUyTZa3'],
+ },
+ {
+ childrenIds: ['block_9LZ7J716qiGogPFAufpYdi'],
+ },
+ {
+ childrenIds: ['block_RU3D4pVFkQDvAyNS7P5rRR'],
+ },
+ ],
+ },
+ },
+ },
+ block_JgZwrNfGi5BfW8KWeZT4Gq: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Total (USD)',
+ },
+ },
+ },
+ block_7eXpDRpkNETHdMN8Bkg9m1: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_JgZwrNfGi5BfW8KWeZT4Gq'],
+ },
+ },
+ },
+ block_8Xioqh7pENRgRhzFpVqh8w: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$329.03',
+ },
+ },
+ },
+ block_DCRQd2eFKSbUGvmQkxDdHs: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_8Xioqh7pENRgRhzFpVqh8w'],
+ },
+ },
+ },
+ block_65qW362ex9LdhQXx1dLSuq: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_7FUnUJ6umTXZz3Mn54KLCY: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 24,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_7eXpDRpkNETHdMN8Bkg9m1'],
+ },
+ {
+ childrenIds: ['block_DCRQd2eFKSbUGvmQkxDdHs'],
+ },
+ {
+ childrenIds: ['block_65qW362ex9LdhQXx1dLSuq'],
+ },
+ ],
+ },
+ },
+ },
+ block_7RKLxAoSQFEyUSMx9fdkw3: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_FUvBg3iUzvmUcTjmjvo5Wd: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: [
+ 'block_SnYxmj5ia2K4dqVEaZDLst',
+ 'block_8rxqcogAeoRMFJJwHDLBvY',
+ 'block_RUef6VdysRRfcaDSdPPPRL',
+ 'block_FDZhF8wpD8Am5TBAxqXYRn',
+ 'block_9Fj1tXV6otFnGdgJevbFPG',
+ 'block_7FUnUJ6umTXZz3Mn54KLCY',
+ 'block_7RKLxAoSQFEyUSMx9fdkw3',
+ ],
+ },
+ },
+ },
+ block_WQ5J7hXLdDXn8Vq4bVkAie: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Host payout',
+ },
+ },
+ },
+ block_9ztgHz93w9GvUBGTrDUCHE: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$99.00 x 2 nights',
+ },
+ },
+ },
+ block_CbV491KJbEv4crKswx5HHD: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_9ztgHz93w9GvUBGTrDUCHE'],
+ },
+ },
+ },
+ block_GJqkQ13ELZmPRexPJirGiF: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$198.00',
+ },
+ },
+ },
+ block_BPtTenyy93Su76mzF1cpqd: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_GJqkQ13ELZmPRexPJirGiF'],
+ },
+ },
+ },
+ block_94kXBLAgQPLF79YgFvAefs: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_StE5sGCYCoZTGAgs5KDKVX: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_CbV491KJbEv4crKswx5HHD'],
+ },
+ {
+ childrenIds: ['block_BPtTenyy93Su76mzF1cpqd'],
+ },
+ {
+ childrenIds: ['block_94kXBLAgQPLF79YgFvAefs'],
+ },
+ ],
+ },
+ },
+ },
+ block_NAtKDFR77MRHULTzQJy3M4: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Cleaning fee',
+ },
+ },
+ },
+ block_GG9WkMFMLq5ySDKBScvVnF: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_NAtKDFR77MRHULTzQJy3M4'],
+ },
+ },
+ },
+ block_ScETZ7SFzGKLaxS5NqDh96: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$50.00',
+ },
+ },
+ },
+ block_NAzfAuBqmG9wA2j2qykgF7: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_ScETZ7SFzGKLaxS5NqDh96'],
+ },
+ },
+ },
+ block_QAXFjyCSg9Mwog7ukkRzcX: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_RYUv7gd391axaL7itsyKqD: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_GG9WkMFMLq5ySDKBScvVnF'],
+ },
+ {
+ childrenIds: ['block_NAzfAuBqmG9wA2j2qykgF7'],
+ },
+ {
+ childrenIds: ['block_QAXFjyCSg9Mwog7ukkRzcX'],
+ },
+ ],
+ },
+ },
+ },
+ block_LLCNdKMpQ7YzhfmVU5GhCR: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Host service fee (3%)',
+ },
+ },
+ },
+ block_Y5UCxoKxDgggVgnrgPakvt: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_LLCNdKMpQ7YzhfmVU5GhCR'],
+ },
+ },
+ },
+ block_G9S6kAvgE1VkeoytcpG7dg: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$7.44',
+ },
+ },
+ },
+ block_QrX6x2NPgGGScZPn4mSe1a: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_G9S6kAvgE1VkeoytcpG7dg'],
+ },
+ },
+ },
+ block_QYx54o6C4Tvkw58N3nMt9t: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_LSBTeahYDd47Fxt3ymwBZj: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_Y5UCxoKxDgggVgnrgPakvt'],
+ },
+ {
+ childrenIds: ['block_QrX6x2NPgGGScZPn4mSe1a'],
+ },
+ {
+ childrenIds: ['block_QYx54o6C4Tvkw58N3nMt9t'],
+ },
+ ],
+ },
+ },
+ },
+ block_JRj1iySUsD8LjG1r9R1qCP: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Total (USD)',
+ },
+ },
+ },
+ block_FANLGemZZEXcrKPfe1CNw: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_JRj1iySUsD8LjG1r9R1qCP'],
+ },
+ },
+ },
+ block_LFBMTsnpzjENRjTbjecCr9: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$240.56',
+ },
+ },
+ },
+ block_Eb9iDCjkJQBET2qNsaL74L: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_LFBMTsnpzjENRjTbjecCr9'],
+ },
+ },
+ },
+ block_UPrvRbjeyXXT57HiVpHxuH: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_V7XtD9k81GjEmSt2HHCrQH: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 24,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_FANLGemZZEXcrKPfe1CNw'],
+ },
+ {
+ childrenIds: ['block_Eb9iDCjkJQBET2qNsaL74L'],
+ },
+ {
+ childrenIds: ['block_UPrvRbjeyXXT57HiVpHxuH'],
+ },
+ ],
+ },
+ },
+ },
+ block_9tD2RA16EdVQfPXKNSXeru: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'The money you earn hosting will be sent to you 24 hours after your guest arrives. You can check your upcoming payments in your transaction history.',
+ },
+ },
+ },
+ block_A9ub75sjdu8XvuCnwSA9AC: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_UncM7Be9AkE197F3KYjpa5: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: [
+ 'block_WQ5J7hXLdDXn8Vq4bVkAie',
+ 'block_StE5sGCYCoZTGAgs5KDKVX',
+ 'block_RYUv7gd391axaL7itsyKqD',
+ 'block_LSBTeahYDd47Fxt3ymwBZj',
+ 'block_V7XtD9k81GjEmSt2HHCrQH',
+ 'block_9tD2RA16EdVQfPXKNSXeru',
+ 'block_A9ub75sjdu8XvuCnwSA9AC',
+ ],
+ },
+ },
+ },
+ block_3vaa8gDUB8D7gyYzTpKGzN: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Cancellations',
+ },
+ },
+ },
+ block_AqF4QDsGrVadYYB9yJywmL: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 24,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Your cancellation policy for guests is Moderate.\n\nThe penalties for canceling this reservation include getting a public review that shows you canceled, paying a cancellation fee, and having the canceled nights blocked on your calendar.',
+ },
+ },
+ },
+ block_F9xbhy5omsUCjE9MuDfxJ5: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_8hNnkxhS84scJ18FCwRr4q: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 8,
+ bottom: 0,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: ['block_3vaa8gDUB8D7gyYzTpKGzN', 'block_AqF4QDsGrVadYYB9yJywmL', 'block_F9xbhy5omsUCjE9MuDfxJ5'],
+ },
+ },
+ },
+ block_JihqAfW5u5wR8oQUJFP5kE: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Need help? Just reply to this email.',
+ },
+ },
+ },
+};
+
+export default RESERVATION_REMINDER;
diff --git a/packages/react-router-v7-example/app/components/templates/reset-password.ts b/packages/react-router-v7-example/app/components/templates/reset-password.ts
new file mode 100644
index 000000000..73dd960bc
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/templates/reset-password.ts
@@ -0,0 +1,156 @@
+import { type TEditorConfiguration } from '../../documents/editor/core';
+
+const RESET_PASSWORD: TEditorConfiguration = {
+ root: {
+ type: 'EmailLayout',
+ data: {
+ backdropColor: '#F2F5F7',
+ canvasColor: '#FFFFFF',
+ textColor: '#242424',
+ fontFamily: 'MODERN_SANS',
+ childrenIds: [
+ 'block_3gpSGmkgL4nWSBQjWCjK2z',
+ 'block_BjpQ7DGTtvaEuYRMd7VE7w',
+ 'block_xyg4GWmgGbJJEDRQc76bC',
+ 'block_76VptLCZ47t3EkAarUufEJ',
+ 'block_Gtk3kDYwsJqEmQf2XGWPRc',
+ 'block_LACDCzUS2bsvEbmnq1KHuW',
+ ],
+ },
+ },
+ block_3gpSGmkgL4nWSBQjWCjK2z: {
+ type: 'Image',
+ data: {
+ style: {
+ padding: {
+ top: 24,
+ bottom: 8,
+ right: 24,
+ left: 24,
+ },
+ backgroundColor: null,
+ textAlign: 'left',
+ },
+ props: {
+ height: 24,
+ url: 'https://d1iiu589g39o6c.cloudfront.net/live/platforms/platform_A9wwKSL6EV6orh6f/images/wptemplateimage_Xh1R23U9ziyct9nd/codoc.png',
+ alt: '',
+ linkHref: null,
+ contentAlignment: 'middle',
+ },
+ },
+ },
+ block_BjpQ7DGTtvaEuYRMd7VE7w: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 32,
+ bottom: 0,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Reset your password?',
+ },
+ },
+ },
+ block_xyg4GWmgGbJJEDRQc76bC: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#474849',
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 8,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: `If you didn't request a reset, don't worry. You can safely ignore this email.`,
+ },
+ },
+ },
+ block_76VptLCZ47t3EkAarUufEJ: {
+ type: 'Button',
+ data: {
+ style: {
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 12,
+ bottom: 32,
+ right: 24,
+ left: 24,
+ },
+ },
+ props: {
+ buttonBackgroundColor: '#0068FF',
+ buttonStyle: 'rectangle',
+ buttonTextColor: '#FFFFFF',
+ fullWidth: false,
+ size: 'medium',
+ text: 'Change my password',
+ url: 'https://example.usewaypoint.com/reset_password?token=02938409809w8r09a83wr098aw0',
+ },
+ },
+ },
+ block_Gtk3kDYwsJqEmQf2XGWPRc: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_LACDCzUS2bsvEbmnq1KHuW: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#474849',
+ backgroundColor: null,
+ fontSize: 12,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 4,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Need help? Just reply to this email to contact support.',
+ },
+ },
+ },
+};
+
+export default RESET_PASSWORD;
diff --git a/packages/react-router-v7-example/app/components/templates/respond-to-message.ts b/packages/react-router-v7-example/app/components/templates/respond-to-message.ts
new file mode 100644
index 000000000..7eab2fcdd
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/templates/respond-to-message.ts
@@ -0,0 +1,175 @@
+import { type TEditorConfiguration } from '../../documents/editor/core';
+
+const RESPOND_TO_MESSAGE: TEditorConfiguration = {
+ root: {
+ type: 'EmailLayout',
+ data: {
+ backdropColor: '#F0ECE5',
+ canvasColor: '#F0ECE5',
+ textColor: '#030303',
+ fontFamily: 'MODERN_SERIF',
+ childrenIds: [
+ 'block_HjX7RN8eDEz7BLBHSQCNgU',
+ 'block_Jf65r5cUAnEzBfxnHKGa5S',
+ 'block_WmPDNHDpyHkygqjHuqF7St',
+ 'block_4VCKUvRMo7EbuMdN1VsdRw',
+ 'block_4siwziT4BkewmN55PpXvEu',
+ 'block_S9Rg9F3bGcviRyfMpoU5e4',
+ ],
+ },
+ },
+ block_HjX7RN8eDEz7BLBHSQCNgU: {
+ type: 'Image',
+ data: {
+ style: {
+ padding: {
+ top: 8,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ height: 32,
+ url: 'https://d1iiu589g39o6c.cloudfront.net/live/platforms/platform_A9wwKSL6EV6orh6f/images/wptemplateimage_hW6RusynHUNTKoLm/boop.png',
+ contentAlignment: 'middle',
+ },
+ },
+ },
+ block_Jf65r5cUAnEzBfxnHKGa5S: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: null,
+ textAlign: null,
+ padding: {
+ top: 16,
+ bottom: 0,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ level: 'h2',
+ text: `Respond to Anna's Inquiry`,
+ },
+ },
+ },
+ block_WmPDNHDpyHkygqjHuqF7St: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: null,
+ textAlign: null,
+ padding: {
+ top: 8,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Dog boarding for Aug 1 - Aug 29.',
+ },
+ },
+ },
+ block_95nkowWyi4p2VBiA46Eizs: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: '#faf9f9',
+ fontSize: 21,
+ fontFamily: null,
+ fontWeight: null,
+ textAlign: null,
+ padding: {
+ top: 24,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Any chance you can watch Emma again next month?',
+ },
+ },
+ },
+ block_4VCKUvRMo7EbuMdN1VsdRw: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: ['block_95nkowWyi4p2VBiA46Eizs'],
+ },
+ },
+ },
+ block_4siwziT4BkewmN55PpXvEu: {
+ type: 'Button',
+ data: {
+ style: {
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: null,
+ textAlign: 'left',
+ padding: {
+ top: 24,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ buttonBackgroundColor: '#BE4F46',
+ buttonTextColor: '#FFFFFF',
+ size: 'large',
+ buttonStyle: 'pill',
+ text: 'Respond',
+ url: 'http://example.usewaypoint.com/request/2334234',
+ fullWidth: false,
+ },
+ },
+ },
+ block_S9Rg9F3bGcviRyfMpoU5e4: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 16,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'You need 2 more walks to become a Super Walker on Boop!',
+ },
+ },
+ },
+};
+
+export default RESPOND_TO_MESSAGE;
diff --git a/packages/react-router-v7-example/app/components/templates/subscription-receipt.ts b/packages/react-router-v7-example/app/components/templates/subscription-receipt.ts
new file mode 100644
index 000000000..0a8532d0f
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/templates/subscription-receipt.ts
@@ -0,0 +1,1349 @@
+import { type TEditorConfiguration } from '../../documents/editor/core';
+
+const SUBSCRIPTION_RECEIPT: TEditorConfiguration = {
+ root: {
+ type: 'EmailLayout',
+ data: {
+ backdropColor: '#F5F5F5',
+ canvasColor: '#F5F5F5',
+ textColor: '#242424',
+ fontFamily: 'MODERN_SANS',
+ childrenIds: [
+ 'block_URcE7RiYB227zNraU1Nujd',
+ 'block_TisRUSez8uPYr6bgHLKQeg',
+ 'block_UQHMPb5NFLrY9PkWUckmHb',
+ 'block_FLTQdJVBNsmRxurTZTSC2V',
+ 'block_Qq64GeHw7K24Fgz5oX81kt',
+ ],
+ },
+ },
+ block_DNGbxXXMnwkRrecLDTP6VR: {
+ type: 'Image',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ textAlign: 'left',
+ },
+ props: {
+ height: 18,
+ url: 'https://d1iiu589g39o6c.cloudfront.net/live/platforms/platform_A9wwKSL6EV6orh6f/images/wptemplateimage_9TcdHLq5SpEkRADB/REMIX.png',
+ alt: 'Remix',
+ linkHref: 'https://remix.example.com',
+ contentAlignment: 'middle',
+ },
+ },
+ },
+ block_ULKdXApwJ1dsJCa5fntAXV: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_DNGbxXXMnwkRrecLDTP6VR'],
+ },
+ },
+ },
+ block_FBxe99baQhH1dptybLYVrF: {
+ type: 'Button',
+ data: {
+ style: {
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ buttonBackgroundColor: '#FFFFFF',
+ buttonStyle: 'pill',
+ buttonTextColor: '#242424',
+ fullWidth: false,
+ size: 'medium',
+ text: 'Sign in',
+ url: 'https://remix.example.com/dashboard',
+ },
+ },
+ },
+ block_WDjxjPcraFGwiBHj5vjhdV: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_FBxe99baQhH1dptybLYVrF'],
+ },
+ },
+ },
+ block_JUxxjtK5TSUk9MV6Rtra4Q: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_URcE7RiYB227zNraU1Nujd: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: '#f5f5f5',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_ULKdXApwJ1dsJCa5fntAXV'],
+ },
+ {
+ childrenIds: ['block_WDjxjPcraFGwiBHj5vjhdV'],
+ },
+ {
+ childrenIds: ['block_JUxxjtK5TSUk9MV6Rtra4Q'],
+ },
+ ],
+ },
+ },
+ },
+ block_9mYZ55v7d29WRjNgPf5cuw: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Receipt from Remix Studios, Inc.',
+ },
+ },
+ },
+ block_R5vyrdxj7v4FqyFbQ7iDBM: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ level: 'h1',
+ text: '$99.75',
+ },
+ },
+ },
+ block_7vHVGWiRQYr8sigcW9nJvD: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#474849',
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Paid August 1, 2023',
+ },
+ },
+ },
+ block_AL2uK2hkvCnaT6JtDuvE5n: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_ADvJa3qqbBH1TB84VxbFwC: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Download receipt',
+ },
+ },
+ },
+ block_9NpGWp5DnLHA2gbTUzsWHX: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [
+ 'block_9mYZ55v7d29WRjNgPf5cuw',
+ 'block_R5vyrdxj7v4FqyFbQ7iDBM',
+ 'block_7vHVGWiRQYr8sigcW9nJvD',
+ 'block_AL2uK2hkvCnaT6JtDuvE5n',
+ 'block_ADvJa3qqbBH1TB84VxbFwC',
+ ],
+ },
+ },
+ },
+ block_FMRV8DJAAWqpoJta6ivKEe: {
+ type: 'Image',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ textAlign: 'right',
+ },
+ props: {
+ url: 'https://d1iiu589g39o6c.cloudfront.net/live/platforms/platform_A9wwKSL6EV6orh6f/images/wptemplateimage_8yUGBZcXaAtTEofB/invoice-skeleton.png',
+ alt: 'Your invoice has been paid.',
+ linkHref: 'http://remix.example.com/receipt/1923-2093',
+ contentAlignment: 'middle',
+ },
+ },
+ },
+ block_SGQxVVB8bXVmVg9NyDY3Fu: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_FMRV8DJAAWqpoJta6ivKEe'],
+ },
+ },
+ },
+ block_KY8rgT1mqUBiCm2uranpvx: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_4TVeBRBPut2oZoQpG9FV4J: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_9NpGWp5DnLHA2gbTUzsWHX'],
+ },
+ {
+ childrenIds: ['block_SGQxVVB8bXVmVg9NyDY3Fu'],
+ },
+ {
+ childrenIds: ['block_KY8rgT1mqUBiCm2uranpvx'],
+ },
+ ],
+ },
+ },
+ },
+ block_67EyoqnbtLAHWXiobN39NX: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#474849',
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Receipt number',
+ },
+ },
+ },
+ block_UCrU3np77mWqQgTfYHG1NL: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_67EyoqnbtLAHWXiobN39NX'],
+ },
+ },
+ },
+ block_LQ93SUN8XxG6uaLbGpsAx1: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '1923-2093',
+ },
+ },
+ },
+ block_6KX5ggTcFs5ckbt9wZppac: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_LQ93SUN8XxG6uaLbGpsAx1'],
+ },
+ },
+ },
+ block_AsFj6GNHWFUhG6GgM7Ww9r: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_SfGDZ1NhRmtjFJS6qs4Zpc: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_UCrU3np77mWqQgTfYHG1NL'],
+ },
+ {
+ childrenIds: ['block_6KX5ggTcFs5ckbt9wZppac'],
+ },
+ {
+ childrenIds: ['block_AsFj6GNHWFUhG6GgM7Ww9r'],
+ },
+ ],
+ },
+ },
+ },
+ block_6UhQGq7NwSAhRog8yRYjJo: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#474849',
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Invoice number',
+ },
+ },
+ },
+ block_F3FdxCgPYxnH8SYgFgBsuY: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_6UhQGq7NwSAhRog8yRYjJo'],
+ },
+ },
+ },
+ block_L5on9HCEU6BRvx25RBRgS2: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '2ABC1234-20923',
+ },
+ },
+ },
+ block_WrzeLHiJs9VnXSkLXXD5ED: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_L5on9HCEU6BRvx25RBRgS2'],
+ },
+ },
+ },
+ block_Wb8pxrh2frxYZWM6hmfc5L: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_XiNoAViyVVEWafdMW4x4TL: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_F3FdxCgPYxnH8SYgFgBsuY'],
+ },
+ {
+ childrenIds: ['block_WrzeLHiJs9VnXSkLXXD5ED'],
+ },
+ {
+ childrenIds: ['block_Wb8pxrh2frxYZWM6hmfc5L'],
+ },
+ ],
+ },
+ },
+ },
+ block_LbwZcoeGigXpK4PTVTyZ8E: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#474849',
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Payment method',
+ },
+ },
+ },
+ block_ETbxLryzrgoKbVBnw1ieyi: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_LbwZcoeGigXpK4PTVTyZ8E'],
+ },
+ },
+ },
+ block_P8fn3PavFZVTrEwufKHKEF: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'VISA – 4252',
+ },
+ },
+ },
+ block_2Bx6KDcv1nT4hPiQ8Eabfv: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_P8fn3PavFZVTrEwufKHKEF'],
+ },
+ },
+ },
+ block_WSzbB3PKqRUxCuUqp9wuK6: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_NYNuDnrs6ZnZ6kj927yv7W: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_ETbxLryzrgoKbVBnw1ieyi'],
+ },
+ {
+ childrenIds: ['block_2Bx6KDcv1nT4hPiQ8Eabfv'],
+ },
+ {
+ childrenIds: ['block_WSzbB3PKqRUxCuUqp9wuK6'],
+ },
+ ],
+ },
+ },
+ },
+ block_TisRUSez8uPYr6bgHLKQeg: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: '#ffffff',
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 16,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: [
+ 'block_4TVeBRBPut2oZoQpG9FV4J',
+ 'block_SfGDZ1NhRmtjFJS6qs4Zpc',
+ 'block_XiNoAViyVVEWafdMW4x4TL',
+ 'block_NYNuDnrs6ZnZ6kj927yv7W',
+ ],
+ },
+ },
+ },
+ block_UQHMPb5NFLrY9PkWUckmHb: {
+ type: 'Spacer',
+ data: {
+ props: {
+ height: 24,
+ },
+ },
+ },
+ block_RNsVmDsY33ipzGLtRUsYys: {
+ type: 'Heading',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ level: 'h3',
+ text: 'Receipt #1923-2093',
+ },
+ },
+ },
+ block_Y7W2h9xDuNreQdgMrv82KZ: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#474849',
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 16,
+ bottom: 16,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: `JULY 10, 2023 – AUGUST 1, 2023`,
+ },
+ },
+ },
+ block_4m1h6Xzhvi9oDrFMgWajjH: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Remix Pro',
+ },
+ },
+ },
+ block_7egXzHguX1zPm5CwYiKuPh: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#474849',
+ backgroundColor: null,
+ fontSize: 12,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 8,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '5 seats',
+ },
+ },
+ },
+ block_WbxCFjDKk1Ev11prfgLhvX: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_4m1h6Xzhvi9oDrFMgWajjH', 'block_7egXzHguX1zPm5CwYiKuPh'],
+ },
+ },
+ },
+ block_FUaNAn8h7DzU7kVzeFqsug: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$99.75',
+ },
+ },
+ },
+ block_9gDnB1o17vBrS4usmyAVUr: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_FUaNAn8h7DzU7kVzeFqsug'],
+ },
+ },
+ },
+ block_5wDvatGEixESNpVrjWbAGi: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_KFadGhRvS4kHVRr41XMiRs: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_WbxCFjDKk1Ev11prfgLhvX'],
+ },
+ {
+ childrenIds: ['block_9gDnB1o17vBrS4usmyAVUr'],
+ },
+ {
+ childrenIds: ['block_5wDvatGEixESNpVrjWbAGi'],
+ },
+ ],
+ },
+ },
+ },
+ block_3rTWcrZLSt1nnCYW5BdiU9: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_CSV8NQS6gBMQcFXvFAFo3Q: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_KFadGhRvS4kHVRr41XMiRs', 'block_3rTWcrZLSt1nnCYW5BdiU9'],
+ },
+ },
+ },
+ block_XZZUC61s2jBfaMfjcFYSo2: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Total',
+ },
+ },
+ },
+ block_LfhgxAyqkNPTGubxqYJNZ5: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_XZZUC61s2jBfaMfjcFYSo2'],
+ },
+ },
+ },
+ block_MsXkdwkAWAbvJ5EcwvqSqv: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$99.75',
+ },
+ },
+ },
+ block_PiKRrj91HQKM1qUW4gDJt1: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_MsXkdwkAWAbvJ5EcwvqSqv'],
+ },
+ },
+ },
+ block_WhzFAeoTPhhgNcG9rdcd4K: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_LJcwZCh6z1EyFeeKH8Egts: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_LfhgxAyqkNPTGubxqYJNZ5'],
+ },
+ {
+ childrenIds: ['block_PiKRrj91HQKM1qUW4gDJt1'],
+ },
+ {
+ childrenIds: ['block_WhzFAeoTPhhgNcG9rdcd4K'],
+ },
+ ],
+ },
+ },
+ },
+ block_HSbX9aqHvSXw9GAB361vpM: {
+ type: 'Divider',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ lineHeight: 1,
+ lineColor: '#EEEEEE',
+ },
+ },
+ },
+ block_3of5ne4hc1PFiSKHz59FP8: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'left',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: 'Amount paid',
+ },
+ },
+ },
+ block_GTPnMRuHqf1bCLk8VLAr4z: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_3of5ne4hc1PFiSKHz59FP8'],
+ },
+ },
+ },
+ block_XvojX8xDiQRr4VNHDwtyXZ: {
+ type: 'Text',
+ data: {
+ style: {
+ color: null,
+ backgroundColor: null,
+ fontSize: 14,
+ fontFamily: null,
+ fontWeight: 'bold',
+ textAlign: 'right',
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ text: '$99.75',
+ },
+ },
+ },
+ block_LbEheyx16SX5S8GK2zY3sJ: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: ['block_XvojX8xDiQRr4VNHDwtyXZ'],
+ },
+ },
+ },
+ block_M6BwLBjomRNsdee4rdoA4y: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: null,
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 0,
+ bottom: 0,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ childrenIds: [],
+ },
+ },
+ },
+ block_DUQnBfK11aHN7ZypDPfeug: {
+ type: 'ColumnsContainer',
+ data: {
+ style: {
+ backgroundColor: null,
+ padding: {
+ top: 8,
+ bottom: 8,
+ left: 0,
+ right: 0,
+ },
+ },
+ props: {
+ columnsCount: 2,
+ columns: [
+ {
+ childrenIds: ['block_GTPnMRuHqf1bCLk8VLAr4z'],
+ },
+ {
+ childrenIds: ['block_LbEheyx16SX5S8GK2zY3sJ'],
+ },
+ {
+ childrenIds: ['block_M6BwLBjomRNsdee4rdoA4y'],
+ },
+ ],
+ },
+ },
+ },
+ block_FLTQdJVBNsmRxurTZTSC2V: {
+ type: 'Container',
+ data: {
+ style: {
+ backgroundColor: '#ffffff',
+ borderColor: null,
+ borderRadius: null,
+ padding: {
+ top: 16,
+ bottom: 24,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ childrenIds: [
+ 'block_RNsVmDsY33ipzGLtRUsYys',
+ 'block_Y7W2h9xDuNreQdgMrv82KZ',
+ 'block_CSV8NQS6gBMQcFXvFAFo3Q',
+ 'block_LJcwZCh6z1EyFeeKH8Egts',
+ 'block_HSbX9aqHvSXw9GAB361vpM',
+ 'block_DUQnBfK11aHN7ZypDPfeug',
+ ],
+ },
+ },
+ },
+ block_Qq64GeHw7K24Fgz5oX81kt: {
+ type: 'Text',
+ data: {
+ style: {
+ color: '#474849',
+ backgroundColor: null,
+ fontSize: 12,
+ fontFamily: null,
+ fontWeight: 'normal',
+ textAlign: 'left',
+ padding: {
+ top: 24,
+ bottom: 16,
+ left: 24,
+ right: 24,
+ },
+ },
+ props: {
+ text: 'Can we help? Just reply to this email.',
+ },
+ },
+ },
+};
+
+export default SUBSCRIPTION_RECEIPT;
diff --git a/packages/react-router-v7-example/app/components/templates/welcome.ts b/packages/react-router-v7-example/app/components/templates/welcome.ts
new file mode 100644
index 000000000..fa9fee40d
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/templates/welcome.ts
@@ -0,0 +1,170 @@
+import { type TEditorConfiguration } from '../../documents/editor/core';
+
+const WELCOME: TEditorConfiguration = {
+ root: {
+ type: 'EmailLayout',
+ data: {
+ backdropColor: '#F2F5F7',
+ canvasColor: '#FFFFFF',
+ textColor: '#242424',
+ fontFamily: 'MODERN_SANS',
+ childrenIds: [
+ 'block-1709571212684',
+ 'block-1709571228545',
+ 'block-1709571234315',
+ 'block-1709571247550',
+ 'block-1709571258507',
+ 'block-1709571281151',
+ 'block-1709571302968',
+ 'block-1709571282795',
+ ],
+ },
+ },
+ 'block-1709571212684': {
+ type: 'Image',
+ data: {
+ style: {
+ padding: {
+ top: 24,
+ bottom: 24,
+ right: 24,
+ left: 24,
+ },
+ },
+ props: {
+ url: 'https://d1iiu589g39o6c.cloudfront.net/live/platforms/platform_A9wwKSL6EV6orh6f/images/wptemplateimage_JTNBBPGrNs2Ph4JL/marketbase.png',
+ alt: 'Marketbase',
+ linkHref: 'https://marketbase.app',
+ contentAlignment: 'middle',
+ },
+ },
+ },
+ 'block-1709571228545': {
+ type: 'Text',
+ data: {
+ style: {
+ fontWeight: 'normal',
+ padding: {
+ top: 0,
+ bottom: 16,
+ right: 24,
+ left: 24,
+ },
+ },
+ props: {
+ text: 'Hi Anna 👋,',
+ },
+ },
+ },
+ 'block-1709571234315': {
+ type: 'Text',
+ data: {
+ style: {
+ fontWeight: 'normal',
+ padding: {
+ top: 0,
+ bottom: 16,
+ right: 24,
+ left: 24,
+ },
+ },
+ props: {
+ text: 'Welcome to Marketbase! Marketbase is how teams within fast growing marketplaces effortlessly monitor conversations to prevent disintermediation, identify problematic users, and increase trust & safety within their community.',
+ },
+ },
+ },
+ 'block-1709571247550': {
+ type: 'Text',
+ data: {
+ style: {
+ fontWeight: 'normal',
+ padding: {
+ top: 0,
+ bottom: 16,
+ right: 24,
+ left: 24,
+ },
+ },
+ props: {
+ text: 'Best of all, you can connect your existing messaging services in minutes:',
+ },
+ },
+ },
+ 'block-1709571258507': {
+ type: 'Image',
+ data: {
+ style: {
+ padding: {
+ top: 16,
+ bottom: 16,
+ right: 24,
+ left: 24,
+ },
+ },
+ props: {
+ url: 'https://d1iiu589g39o6c.cloudfront.net/live/platforms/platform_A9wwKSL6EV6orh6f/images/wptemplateimage_oWB821TUkDXvr2f4/Screenshot%202023-11-22%20at%2011.51.30%20AM.png',
+ alt: 'Video thumbnail',
+ linkHref: 'https://capture.dropbox.com/NBQEmoCKKP9RGBWr',
+ contentAlignment: 'middle',
+ },
+ },
+ },
+ 'block-1709571281151': {
+ type: 'Text',
+ data: {
+ style: {
+ fontWeight: 'normal',
+ padding: {
+ top: 16,
+ bottom: 16,
+ right: 24,
+ left: 24,
+ },
+ },
+ props: {
+ text: 'If you ever need help, just reply to this email and one of us will get back to you shortly. We’re here to help.',
+ },
+ },
+ },
+ 'block-1709571282795': {
+ type: 'Image',
+ data: {
+ style: {
+ padding: {
+ top: 16,
+ bottom: 40,
+ right: 24,
+ left: 24,
+ },
+ },
+ props: {
+ url: 'https://d1iiu589g39o6c.cloudfront.net/live/platforms/platform_A9wwKSL6EV6orh6f/images/wptemplateimage_cAK8FpmBEGoSRNi3/Screenshot%202023-11-22%20at%2011.48.53%20AM.png',
+ alt: 'Illustration',
+ linkHref: null,
+ contentAlignment: 'middle',
+ },
+ },
+ },
+ 'block-1709571302968': {
+ type: 'Button',
+ data: {
+ style: {
+ fontSize: 14,
+ padding: {
+ top: 16,
+ bottom: 24,
+ right: 24,
+ left: 24,
+ },
+ },
+ props: {
+ buttonBackgroundColor: '#0079cc',
+ buttonStyle: 'rectangle',
+ text: 'Open dashboard',
+ url: 'https://www.usewaypoint.com',
+ },
+ },
+ },
+};
+
+export default WELCOME;
diff --git a/packages/react-router-v7-example/app/components/ui/button.tsx b/packages/react-router-v7-example/app/components/ui/button.tsx
new file mode 100644
index 000000000..7e90d5cf8
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/button.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 buttonVariants = cva(
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all cursor-pointer 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/packages/react-router-v7-example/app/components/ui/command.tsx b/packages/react-router-v7-example/app/components/ui/command.tsx
new file mode 100644
index 000000000..e41f0db7e
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/command.tsx
@@ -0,0 +1,182 @@
+import * as React from "react"
+import { Command as CommandPrimitive } from "cmdk"
+import { SearchIcon } from "lucide-react"
+
+import { cn } from "~/lib/utils/index"
+import {
+ Dialog,
+ DialogContent,
+ DialogDescription,
+ DialogHeader,
+ DialogTitle,
+} from "~/components/ui/dialog"
+
+function Command({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function CommandDialog({
+ title = "Command Palette",
+ description = "Search for a command to run...",
+ children,
+ className,
+ showCloseButton = true,
+ ...props
+}: React.ComponentProps & {
+ title?: string
+ description?: string
+ className?: string
+ showCloseButton?: boolean
+}) {
+ return (
+
+ )
+}
+
+function CommandInput({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+
+
+ )
+}
+
+function CommandList({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function CommandEmpty({
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function CommandGroup({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function CommandSeparator({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function CommandItem({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function CommandShortcut({
+ className,
+ ...props
+}: React.ComponentProps<"span">) {
+ return (
+
+ )
+}
+
+export {
+ Command,
+ CommandDialog,
+ CommandInput,
+ CommandList,
+ CommandEmpty,
+ CommandGroup,
+ CommandItem,
+ CommandShortcut,
+ CommandSeparator,
+}
diff --git a/packages/react-router-v7-example/app/components/ui/dialog.tsx b/packages/react-router-v7-example/app/components/ui/dialog.tsx
new file mode 100644
index 000000000..58d4d8b2d
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/dialog.tsx
@@ -0,0 +1,143 @@
+"use client"
+
+import * as React from "react"
+import * as DialogPrimitive from "@radix-ui/react-dialog"
+import { XIcon } from "lucide-react"
+
+import { cn } from "~/lib/utils/index"
+
+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/packages/react-router-v7-example/app/components/ui/dropdown-menu.tsx b/packages/react-router-v7-example/app/components/ui/dropdown-menu.tsx
new file mode 100644
index 000000000..74b8a12a1
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/dropdown-menu.tsx
@@ -0,0 +1,217 @@
+import * as React from 'react';
+import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
+import { CheckIcon, ChevronRightIcon, CircleIcon } from 'lucide-react';
+
+import { cn } from '~/lib/utils';
+
+function DropdownMenu({ ...props }: React.ComponentProps) {
+ return ;
+}
+
+function DropdownMenuPortal({ ...props }: React.ComponentProps) {
+ return ;
+}
+
+function DropdownMenuTrigger({ ...props }: React.ComponentProps) {
+ return ;
+}
+
+function DropdownMenuContent({
+ className,
+ sideOffset = 4,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+
+ );
+}
+
+function DropdownMenuGroup({ ...props }: React.ComponentProps) {
+ return ;
+}
+
+function DropdownMenuItem({
+ className,
+ inset,
+ variant = 'default',
+ ...props
+}: React.ComponentProps & {
+ inset?: boolean;
+ variant?: 'default' | 'destructive';
+}) {
+ return (
+
+ );
+}
+
+function DropdownMenuCheckboxItem({
+ className,
+ children,
+ checked,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+
+
+
+
+ {children}
+
+ );
+}
+
+function DropdownMenuRadioGroup({ ...props }: React.ComponentProps) {
+ return ;
+}
+
+function DropdownMenuRadioItem({
+ className,
+ children,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+
+
+
+
+ {children}
+
+ );
+}
+
+function DropdownMenuLabel({
+ className,
+ inset,
+ ...props
+}: React.ComponentProps & {
+ inset?: boolean;
+}) {
+ return (
+
+ );
+}
+
+function DropdownMenuSeparator({ className, ...props }: React.ComponentProps) {
+ return (
+
+ );
+}
+
+function DropdownMenuShortcut({ className, ...props }: React.ComponentProps<'span'>) {
+ return (
+
+ );
+}
+
+function DropdownMenuSub({ ...props }: React.ComponentProps) {
+ return ;
+}
+
+function DropdownMenuSubTrigger({
+ className,
+ inset,
+ children,
+ ...props
+}: React.ComponentProps & {
+ inset?: boolean;
+}) {
+ return (
+
+ {children}
+
+
+ );
+}
+
+function DropdownMenuSubContent({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ );
+}
+
+export {
+ DropdownMenu,
+ DropdownMenuPortal,
+ DropdownMenuTrigger,
+ DropdownMenuContent,
+ DropdownMenuGroup,
+ DropdownMenuLabel,
+ DropdownMenuItem,
+ DropdownMenuCheckboxItem,
+ DropdownMenuRadioGroup,
+ DropdownMenuRadioItem,
+ DropdownMenuSeparator,
+ DropdownMenuShortcut,
+ DropdownMenuSub,
+ DropdownMenuSubTrigger,
+ DropdownMenuSubContent,
+};
diff --git a/packages/react-router-v7-example/app/components/ui/input.tsx b/packages/react-router-v7-example/app/components/ui/input.tsx
new file mode 100644
index 000000000..ec847a1c7
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/input.tsx
@@ -0,0 +1,21 @@
+import * as React from 'react';
+
+import { cn } from '~/lib/utils';
+
+function Input({ className, type, ...props }: React.ComponentProps<'input'>) {
+ return (
+
+ );
+}
+
+export { Input };
diff --git a/packages/react-router-v7-example/app/components/ui/label.tsx b/packages/react-router-v7-example/app/components/ui/label.tsx
new file mode 100644
index 000000000..abcefa055
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/label.tsx
@@ -0,0 +1,19 @@
+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/packages/react-router-v7-example/app/components/ui/popover.tsx b/packages/react-router-v7-example/app/components/ui/popover.tsx
new file mode 100644
index 000000000..35542a883
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/popover.tsx
@@ -0,0 +1,42 @@
+'use client';
+
+import * as React from 'react';
+import * as PopoverPrimitive from '@radix-ui/react-popover';
+
+import { cn } from '~/lib/utils';
+
+function Popover({ ...props }: React.ComponentProps) {
+ return ;
+}
+
+function PopoverTrigger({ ...props }: React.ComponentProps) {
+ return ;
+}
+
+function PopoverContent({
+ className,
+ align = 'center',
+ sideOffset = 4,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+
+ );
+}
+
+function PopoverAnchor({ ...props }: React.ComponentProps) {
+ return ;
+}
+
+export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor };
diff --git a/packages/react-router-v7-example/app/components/ui/separator.tsx b/packages/react-router-v7-example/app/components/ui/separator.tsx
new file mode 100644
index 000000000..c030e2d86
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/separator.tsx
@@ -0,0 +1,26 @@
+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/packages/react-router-v7-example/app/components/ui/sheet.tsx b/packages/react-router-v7-example/app/components/ui/sheet.tsx
new file mode 100644
index 000000000..a6ff41257
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/sheet.tsx
@@ -0,0 +1,101 @@
+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/packages/react-router-v7-example/app/components/ui/slider.tsx b/packages/react-router-v7-example/app/components/ui/slider.tsx
new file mode 100644
index 000000000..958ba7a5e
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/slider.tsx
@@ -0,0 +1,56 @@
+'use client';
+
+import * as React from 'react';
+import * as SliderPrimitive from '@radix-ui/react-slider';
+
+import { cn } from '~/lib/utils';
+
+function Slider({
+ className,
+ defaultValue,
+ value,
+ min = 0,
+ max = 100,
+ ...props
+}: React.ComponentProps) {
+ const _values = React.useMemo(
+ () => (Array.isArray(value) ? value : Array.isArray(defaultValue) ? defaultValue : [min, max]),
+ [value, defaultValue, min, max]
+ );
+
+ return (
+
+
+
+
+ {Array.from({ length: _values.length }, (_, index) => (
+
+ ))}
+
+ );
+}
+
+export { Slider };
diff --git a/packages/react-router-v7-example/app/components/ui/switch.tsx b/packages/react-router-v7-example/app/components/ui/switch.tsx
new file mode 100644
index 000000000..87485a395
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/switch.tsx
@@ -0,0 +1,27 @@
+import * as React from "react"
+import * as SwitchPrimitives from "@radix-ui/react-switch"
+
+import { cn } from "~/lib/utils"
+
+const Switch = React.forwardRef<
+ React.ElementRef,
+ React.ComponentPropsWithoutRef
+>(({ className, ...props }, ref) => (
+
+
+
+))
+Switch.displayName = SwitchPrimitives.Root.displayName
+
+export { Switch }
diff --git a/packages/react-router-v7-example/app/components/ui/textarea.tsx b/packages/react-router-v7-example/app/components/ui/textarea.tsx
new file mode 100644
index 000000000..3f20b8137
--- /dev/null
+++ b/packages/react-router-v7-example/app/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/packages/react-router-v7-example/app/components/ui/toggle-group.tsx b/packages/react-router-v7-example/app/components/ui/toggle-group.tsx
new file mode 100644
index 000000000..fca2c7484
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/toggle-group.tsx
@@ -0,0 +1,67 @@
+'use client';
+
+import * as React from 'react';
+import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
+import { type VariantProps } from 'class-variance-authority';
+
+import { cn } from '~/lib/utils';
+import { toggleVariants } from '~/components/ui/toggle';
+
+const ToggleGroupContext = React.createContext>({
+ size: 'default',
+ variant: 'default',
+});
+
+function ToggleGroup({
+ className,
+ variant,
+ size,
+ children,
+ ...props
+}: React.ComponentProps & VariantProps) {
+ return (
+
+ {children}
+
+ );
+}
+
+function ToggleGroupItem({
+ className,
+ children,
+ variant,
+ size,
+ ...props
+}: React.ComponentProps & VariantProps) {
+ const context = React.useContext(ToggleGroupContext);
+
+ return (
+
+ {children}
+
+ );
+}
+
+export { ToggleGroup, ToggleGroupItem };
diff --git a/packages/react-router-v7-example/app/components/ui/toggle.tsx b/packages/react-router-v7-example/app/components/ui/toggle.tsx
new file mode 100644
index 000000000..d51367114
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/toggle.tsx
@@ -0,0 +1,39 @@
+import * as React from 'react';
+import * as TogglePrimitive from '@radix-ui/react-toggle';
+import { cva, type VariantProps } from 'class-variance-authority';
+
+import { cn } from '~/lib/utils';
+
+const toggleVariants = cva(
+ "inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium hover:bg-muted hover:text-muted-foreground disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 [&_svg]:shrink-0 focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] outline-none transition-[color,box-shadow] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive whitespace-nowrap",
+ {
+ variants: {
+ variant: {
+ default: 'bg-transparent',
+ outline: 'border border-input bg-transparent shadow-xs hover:bg-accent hover:text-accent-foreground',
+ },
+ size: {
+ default: 'h-9 px-2 min-w-9',
+ sm: 'h-8 px-1.5 min-w-8',
+ lg: 'h-10 px-2.5 min-w-10',
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ size: 'default',
+ },
+ }
+);
+
+function Toggle({
+ className,
+ variant,
+ size,
+ ...props
+}: React.ComponentProps & VariantProps) {
+ return (
+
+ );
+}
+
+export { Toggle, toggleVariants };
diff --git a/packages/react-router-v7-example/app/components/ui/tooltip.tsx b/packages/react-router-v7-example/app/components/ui/tooltip.tsx
new file mode 100644
index 000000000..00ffcd427
--- /dev/null
+++ b/packages/react-router-v7-example/app/components/ui/tooltip.tsx
@@ -0,0 +1,48 @@
+'use client';
+
+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/packages/react-router-v7-example/app/context/editor.tsx b/packages/react-router-v7-example/app/context/editor.tsx
new file mode 100644
index 000000000..00647070a
--- /dev/null
+++ b/packages/react-router-v7-example/app/context/editor.tsx
@@ -0,0 +1,113 @@
+import { create } from 'zustand';
+
+import EMPTY_EMAIL_MESSAGE from '~/components/templates/empty-email-message';
+import { type TEditorConfiguration } from '../documents/editor/core';
+
+export type MainTabOptions = 'editor' | 'preview' | 'json' | 'html';
+export const screenSizeOptions = ['desktop', 'mobile'] as const;
+export type ScreenSizeOptions = (typeof screenSizeOptions)[number];
+
+type TValue = {
+ document: TEditorConfiguration;
+
+ selectedBlockId: string | null;
+ selectedSidebarTab: 'block-configuration' | 'styles';
+ selectedMainTab: MainTabOptions;
+ selectedScreenSize: ScreenSizeOptions;
+
+ inspectorSidebarOpen: boolean;
+ templatesSidebarOpen: boolean;
+};
+
+const editorStateStore = create(() => ({
+ document: EMPTY_EMAIL_MESSAGE,
+
+ selectedBlockId: null,
+ selectedSidebarTab: 'styles',
+ selectedMainTab: 'editor',
+ selectedScreenSize: 'desktop',
+
+ inspectorSidebarOpen: true,
+ templatesSidebarOpen: true,
+}));
+
+export function useDocument() {
+ return editorStateStore((s) => s.document);
+}
+
+export function useSelectedBlockId() {
+ return editorStateStore((s) => s.selectedBlockId);
+}
+
+export function useSelectedScreenSize() {
+ return editorStateStore((s) => s.selectedScreenSize);
+}
+
+export function useSelectedMainTab() {
+ return editorStateStore((s) => s.selectedMainTab);
+}
+
+export function setSelectedMainTab(selectedMainTab: TValue['selectedMainTab']) {
+ return editorStateStore.setState({ selectedMainTab });
+}
+
+export function useSelectedSidebarTab() {
+ return editorStateStore((s) => s.selectedSidebarTab);
+}
+
+export function useInspectorSidebarOpen() {
+ return editorStateStore((s) => s.inspectorSidebarOpen);
+}
+
+export function useTemplatesSidebarOpen() {
+ return editorStateStore((s) => s.templatesSidebarOpen);
+}
+
+export function setSelectedBlockId(selectedBlockId: TValue['selectedBlockId']) {
+ const selectedSidebarTab = selectedBlockId === null ? 'styles' : 'block-configuration';
+ const options: Partial = {};
+ if (selectedBlockId !== null) {
+ options.inspectorSidebarOpen = true;
+ }
+ return editorStateStore.setState({
+ selectedBlockId,
+ selectedSidebarTab,
+ ...options,
+ });
+}
+
+export function setSidebarTab(selectedSidebarTab: TValue['selectedSidebarTab']) {
+ return editorStateStore.setState({ selectedSidebarTab });
+}
+
+export function resetDocument(document: TValue['document']) {
+ return editorStateStore.setState({
+ document,
+ selectedSidebarTab: 'styles',
+ selectedBlockId: null,
+ });
+}
+
+export function setDocument(document: TValue['document']) {
+ const originalDocument = editorStateStore.getState().document;
+ return editorStateStore.setState({
+ document: {
+ ...originalDocument,
+ ...document,
+ },
+ });
+}
+
+export function toggleInspectorSidebarOpen() {
+ const inspectorSidebarOpen = !editorStateStore.getState().inspectorSidebarOpen;
+ return editorStateStore.setState({ inspectorSidebarOpen });
+}
+
+export function toggleTemplatesSidebarOpen() {
+ const templatesSidebarOpen = !editorStateStore.getState().templatesSidebarOpen;
+ return editorStateStore.setState({ templatesSidebarOpen });
+}
+
+export function setSelectedScreenSize(selectedScreenSize: TValue['selectedScreenSize']) {
+ return editorStateStore.setState({ selectedScreenSize });
+}
diff --git a/packages/react-router-v7-example/app/documents/blocks/ColumnsContainer/ColumnsContainerEditor.tsx b/packages/react-router-v7-example/app/documents/blocks/ColumnsContainer/ColumnsContainerEditor.tsx
new file mode 100644
index 000000000..3aef2e1da
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/ColumnsContainer/ColumnsContainerEditor.tsx
@@ -0,0 +1,47 @@
+import { ColumnsContainer as BaseColumnsContainer } from '@usewaypoint/block-columns-container';
+
+import { useCurrentBlockId } from '../../editor/EditorBlock';
+import { setDocument, setSelectedBlockId } from '~/context/editor';
+import EditorChildrenIds, { type EditorChildrenChange } from '../helpers/EditorChildrenIds';
+
+import ColumnsContainerPropsSchema, { type ColumnsContainerProps } from './ColumnsContainerPropsSchema';
+
+const EMPTY_COLUMNS = [{ childrenIds: [] }, { childrenIds: [] }, { childrenIds: [] }];
+
+export default function ColumnsContainerEditor({ style, props }: ColumnsContainerProps) {
+ const currentBlockId = useCurrentBlockId();
+
+ const { columns, ...restProps } = props ?? {};
+ const columnsValue = columns ?? EMPTY_COLUMNS;
+
+ const updateColumn = (columnIndex: 0 | 1 | 2, { block, blockId, childrenIds }: EditorChildrenChange) => {
+ const nColumns = [...columnsValue];
+ nColumns[columnIndex] = { childrenIds };
+ setDocument({
+ [blockId]: block,
+ [currentBlockId]: {
+ type: 'ColumnsContainer',
+ data: ColumnsContainerPropsSchema.parse({
+ style,
+ props: {
+ ...restProps,
+ columns: nColumns,
+ },
+ }),
+ },
+ });
+ setSelectedBlockId(blockId);
+ };
+
+ return (
+ updateColumn(0, change)} />,
+ updateColumn(1, change)} />,
+ updateColumn(2, change)} />,
+ ]}
+ />
+ );
+}
diff --git a/packages/react-router-v7-example/app/documents/blocks/ColumnsContainer/ColumnsContainerPropsSchema.ts b/packages/react-router-v7-example/app/documents/blocks/ColumnsContainer/ColumnsContainerPropsSchema.ts
new file mode 100644
index 000000000..7e5d5cd9c
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/ColumnsContainer/ColumnsContainerPropsSchema.ts
@@ -0,0 +1,23 @@
+import { z } from 'zod';
+
+import { ColumnsContainerPropsSchema as BaseColumnsContainerPropsSchema } from '@usewaypoint/block-columns-container';
+
+const BasePropsShape = BaseColumnsContainerPropsSchema.shape.props.unwrap().unwrap().shape;
+
+const ColumnsContainerPropsSchema = z.object({
+ style: BaseColumnsContainerPropsSchema.shape.style,
+ props: z
+ .object({
+ ...BasePropsShape,
+ columns: z.tuple([
+ z.object({ childrenIds: z.array(z.string()) }),
+ z.object({ childrenIds: z.array(z.string()) }),
+ z.object({ childrenIds: z.array(z.string()) }),
+ ]),
+ })
+ .optional()
+ .nullable(),
+});
+
+export type ColumnsContainerProps = z.infer;
+export default ColumnsContainerPropsSchema;
diff --git a/packages/react-router-v7-example/app/documents/blocks/Container/ContainerEditor.tsx b/packages/react-router-v7-example/app/documents/blocks/Container/ContainerEditor.tsx
new file mode 100644
index 000000000..5ee6fc895
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/Container/ContainerEditor.tsx
@@ -0,0 +1,35 @@
+import { Container as BaseContainer } from '@usewaypoint/block-container';
+
+import { useCurrentBlockId } from '../../editor/EditorBlock';
+import { setDocument, setSelectedBlockId, useDocument } from '~/context/editor';
+import EditorChildrenIds from '../helpers/EditorChildrenIds';
+
+import { type ContainerProps } from './ContainerPropsSchema';
+
+export default function ContainerEditor({ style, props }: ContainerProps) {
+ const childrenIds = props?.childrenIds ?? [];
+
+ const document = useDocument();
+ const currentBlockId = useCurrentBlockId();
+
+ return (
+
+ {
+ setDocument({
+ [blockId]: block,
+ [currentBlockId]: {
+ type: 'Container',
+ data: {
+ ...document[currentBlockId].data,
+ props: { childrenIds: childrenIds },
+ },
+ },
+ });
+ setSelectedBlockId(blockId);
+ }}
+ />
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/documents/blocks/Container/ContainerPropsSchema.tsx b/packages/react-router-v7-example/app/documents/blocks/Container/ContainerPropsSchema.tsx
new file mode 100644
index 000000000..a0188f61b
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/Container/ContainerPropsSchema.tsx
@@ -0,0 +1,17 @@
+import { z } from 'zod';
+
+import { ContainerPropsSchema as BaseContainerPropsSchema } from '@usewaypoint/block-container';
+
+const ContainerPropsSchema = z.object({
+ style: BaseContainerPropsSchema.shape.style,
+ props: z
+ .object({
+ childrenIds: z.array(z.string()).optional().nullable(),
+ })
+ .optional()
+ .nullable(),
+});
+
+export default ContainerPropsSchema;
+
+export type ContainerProps = z.infer;
diff --git a/packages/react-router-v7-example/app/documents/blocks/EmailLayout/EmailLayoutEditor.tsx b/packages/react-router-v7-example/app/documents/blocks/EmailLayout/EmailLayoutEditor.tsx
new file mode 100644
index 000000000..c85c95d94
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/EmailLayout/EmailLayoutEditor.tsx
@@ -0,0 +1,101 @@
+import { useCurrentBlockId } from '../../editor/EditorBlock';
+import { setDocument, setSelectedBlockId, useDocument } from '~/context/editor';
+import EditorChildrenIds from '../helpers/EditorChildrenIds';
+
+import { type EmailLayoutProps } from './EmailLayoutPropsSchema';
+
+function getFontFamily(fontFamily: EmailLayoutProps['fontFamily']) {
+ const f = fontFamily ?? 'MODERN_SANS';
+ switch (f) {
+ case 'MODERN_SANS':
+ return '"Helvetica Neue", "Arial Nova", "Nimbus Sans", Arial, sans-serif';
+ case 'BOOK_SANS':
+ return 'Optima, Candara, "Noto Sans", source-sans-pro, sans-serif';
+ case 'ORGANIC_SANS':
+ return 'Seravek, "Gill Sans Nova", Ubuntu, Calibri, "DejaVu Sans", source-sans-pro, sans-serif';
+ case 'GEOMETRIC_SANS':
+ return 'Avenir, "Avenir Next LT Pro", Montserrat, Corbel, "URW Gothic", source-sans-pro, sans-serif';
+ case 'HEAVY_SANS':
+ return 'Bahnschrift, "DIN Alternate", "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif';
+ case 'ROUNDED_SANS':
+ return 'ui-rounded, "Hiragino Maru Gothic ProN", Quicksand, Comfortaa, Manjari, "Arial Rounded MT Bold", Calibri, source-sans-pro, sans-serif';
+ case 'MODERN_SERIF':
+ return 'Charter, "Bitstream Charter", "Sitka Text", Cambria, serif';
+ case 'BOOK_SERIF':
+ return '"Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif';
+ case 'MONOSPACE':
+ return '"Nimbus Mono PS", "Courier New", "Cutive Mono", monospace';
+ }
+}
+
+export default function EmailLayoutEditor(props: EmailLayoutProps) {
+ const childrenIds = props.childrenIds ?? [];
+ const document = useDocument();
+ const currentBlockId = useCurrentBlockId();
+
+ return (
+ {
+ setSelectedBlockId(null);
+ }}
+ style={{
+ backgroundColor: props.backdropColor ?? '#F5F5F5',
+ color: props.textColor ?? '#262626',
+ fontFamily: getFontFamily(props.fontFamily),
+ fontSize: '16px',
+ fontWeight: '400',
+ letterSpacing: '0.15008px',
+ lineHeight: '1.5',
+ margin: '0',
+ padding: '32px 0',
+ width: '100%',
+ minHeight: '100%',
+ }}
+ >
+
{
+ const v = props.borderColor;
+ if (!v) {
+ return undefined;
+ }
+ return `1px solid ${v}`;
+ })(),
+ }}
+ role="presentation"
+ cellSpacing="0"
+ cellPadding="0"
+ border={0}
+ >
+
+
+ |
+ {
+ setDocument({
+ [blockId]: block,
+ [currentBlockId]: {
+ type: 'EmailLayout',
+ data: {
+ ...document[currentBlockId].data,
+ childrenIds: childrenIds,
+ },
+ },
+ });
+ setSelectedBlockId(blockId);
+ }}
+ />
+ |
+
+
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/documents/blocks/EmailLayout/EmailLayoutPropsSchema.tsx b/packages/react-router-v7-example/app/documents/blocks/EmailLayout/EmailLayoutPropsSchema.tsx
new file mode 100644
index 000000000..880f3ae8f
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/EmailLayout/EmailLayoutPropsSchema.tsx
@@ -0,0 +1,36 @@
+import { z } from 'zod';
+
+const COLOR_SCHEMA = z
+ .string()
+ .regex(/^#[0-9a-fA-F]{6}$/)
+ .nullable()
+ .optional();
+
+const FONT_FAMILY_SCHEMA = z
+ .enum([
+ 'MODERN_SANS',
+ 'BOOK_SANS',
+ 'ORGANIC_SANS',
+ 'GEOMETRIC_SANS',
+ 'HEAVY_SANS',
+ 'ROUNDED_SANS',
+ 'MODERN_SERIF',
+ 'BOOK_SERIF',
+ 'MONOSPACE',
+ ])
+ .nullable()
+ .optional();
+
+const EmailLayoutPropsSchema = z.object({
+ backdropColor: COLOR_SCHEMA,
+ borderColor: COLOR_SCHEMA,
+ borderRadius: z.number().optional().nullable(),
+ canvasColor: COLOR_SCHEMA,
+ textColor: COLOR_SCHEMA,
+ fontFamily: FONT_FAMILY_SCHEMA,
+ childrenIds: z.array(z.string()).optional().nullable(),
+});
+
+export default EmailLayoutPropsSchema;
+
+export type EmailLayoutProps = z.infer;
diff --git a/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/BlockButton.tsx b/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/BlockButton.tsx
new file mode 100644
index 000000000..1811afc1c
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/BlockButton.tsx
@@ -0,0 +1,24 @@
+import React from 'react';
+import { Button } from '~/components/ui/button';
+
+type BlockButtonProps = {
+ label: string;
+ icon: React.ReactNode;
+ onClick: () => void;
+};
+
+export function BlockButton({ label, icon, onClick }: BlockButtonProps) {
+ return (
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/BlocksMenu.tsx b/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/BlocksMenu.tsx
new file mode 100644
index 000000000..ea34ab7a0
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/BlocksMenu.tsx
@@ -0,0 +1,20 @@
+import { type TEditorBlock } from '../../../../editor/core';
+import { BlockButton } from './BlockButton';
+import { BUTTONS } from './buttons';
+
+type BlocksMenuProps = {
+ onSelect: (block: TEditorBlock) => void;
+};
+export function BlocksMenu({ onSelect }: BlocksMenuProps) {
+ const onClick = (block: TEditorBlock) => {
+ onSelect(block);
+ };
+
+ return (
+
+ {BUTTONS.map((k, i) => (
+ onClick(k.block())} />
+ ))}
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/DividerButton.tsx b/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/DividerButton.tsx
new file mode 100644
index 000000000..912f327de
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/DividerButton.tsx
@@ -0,0 +1,73 @@
+import { Plus } from 'lucide-react';
+import { forwardRef, useEffect, useRef, useState } from 'react';
+import { cn } from '~/lib/utils';
+
+interface DividerButtonProps extends React.ButtonHTMLAttributes {
+ containerRef?: React.RefObject;
+}
+
+export const DividerButton = forwardRef(
+ ({ containerRef, ...props }, forwardedRef) => {
+ const [visible, setVisible] = useState(false);
+ const internalRef = useRef(null);
+
+ const buttonRef = internalRef;
+
+ useEffect(() => {
+ if (forwardedRef) {
+ if (typeof forwardedRef === 'function') {
+ forwardedRef(internalRef.current);
+ } else {
+ forwardedRef.current = internalRef.current;
+ }
+ }
+ }, [forwardedRef]);
+
+ useEffect(() => {
+ function listener({ clientX, clientY }: MouseEvent) {
+ // Use the containerRef if provided, otherwise use the buttonRef
+ const targetElement = containerRef?.current || buttonRef.current;
+
+ if (!targetElement) {
+ console.log('No target element:', { containerRef: containerRef?.current, buttonRef: buttonRef.current });
+ return;
+ }
+
+ const rect = targetElement.getBoundingClientRect();
+
+ const isNearTopEdge = Math.abs(clientY - rect.top) < 20;
+ const isNearBottomEdge = Math.abs(clientY - rect.bottom) < 20;
+ const isInHorizontalRange = rect.left < clientX && clientX < rect.right;
+
+ if ((isNearTopEdge || isNearBottomEdge) && isInHorizontalRange) {
+ setVisible(true);
+ return;
+ }
+
+ setVisible(false);
+ }
+
+ window.addEventListener('mousemove', listener);
+
+ return () => {
+ window.removeEventListener('mousemove', listener);
+ };
+ }, [containerRef, buttonRef]);
+
+ return (
+
+ );
+ }
+);
+
+DividerButton.displayName = 'DividerButton';
diff --git a/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/buttons.tsx b/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/buttons.tsx
new file mode 100644
index 000000000..c919b11c4
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/buttons.tsx
@@ -0,0 +1,157 @@
+import {
+ CircleUserRound,
+ Code,
+ Columns3,
+ CopyPlus,
+ Heading1,
+ Image,
+ Minus,
+ MoveVertical,
+ SquareMousePointer,
+ Text,
+} from 'lucide-react';
+import { type TEditorBlock } from '../../../../editor/core';
+
+type TButtonProps = {
+ label: string;
+ icon: React.ReactNode;
+ block: () => TEditorBlock;
+};
+export const BUTTONS: TButtonProps[] = [
+ {
+ label: 'Heading',
+ icon: ,
+ block: () => ({
+ type: 'Heading',
+ data: {
+ props: { text: 'Hello friend' },
+ style: {
+ padding: { top: 16, bottom: 16, left: 24, right: 24 },
+ },
+ },
+ }),
+ },
+ {
+ label: 'Text',
+ icon: ,
+ block: () => ({
+ type: 'Text',
+ data: {
+ props: { text: 'My new text block' },
+ style: {
+ padding: { top: 16, bottom: 16, left: 24, right: 24 },
+ fontWeight: 'normal',
+ },
+ },
+ }),
+ },
+
+ {
+ label: 'Button',
+ icon: ,
+ block: () => ({
+ type: 'Button',
+ data: {
+ props: {
+ text: 'Button',
+ url: 'https://www.usewaypoint.com',
+ },
+ style: { padding: { top: 16, bottom: 16, left: 24, right: 24 } },
+ },
+ }),
+ },
+ {
+ label: 'Image',
+ icon: ,
+ block: () => ({
+ type: 'Image',
+ data: {
+ props: {
+ url: 'https://assets.usewaypoint.com/sample-image.jpg',
+ alt: 'Sample product',
+ contentAlignment: 'middle',
+ linkHref: null,
+ },
+ style: { padding: { top: 16, bottom: 16, left: 24, right: 24 } },
+ },
+ }),
+ },
+ {
+ label: 'Avatar',
+ icon: ,
+ block: () => ({
+ type: 'Avatar',
+ data: {
+ props: {
+ imageUrl: 'https://ui-avatars.com/api/?size=128',
+ shape: 'circle',
+ },
+ style: { padding: { top: 16, bottom: 16, left: 24, right: 24 } },
+ },
+ }),
+ },
+ {
+ label: 'Divider',
+ icon: ,
+ block: () => ({
+ type: 'Divider',
+ data: {
+ style: { padding: { top: 16, right: 0, bottom: 16, left: 0 } },
+ props: {
+ lineColor: '#CCCCCC',
+ },
+ },
+ }),
+ },
+ {
+ label: 'Spacer',
+ icon: ,
+ block: () => ({
+ type: 'Spacer',
+ data: {},
+ }),
+ },
+ {
+ label: 'Html',
+ icon: ,
+ block: () => ({
+ type: 'Html',
+ data: {
+ props: { contents: 'Hello world' },
+ style: {
+ fontSize: 16,
+ textAlign: null,
+ padding: { top: 16, bottom: 16, left: 24, right: 24 },
+ },
+ },
+ }),
+ },
+ {
+ label: 'Columns',
+ icon: ,
+ block: () => ({
+ type: 'ColumnsContainer',
+ data: {
+ props: {
+ columnsGap: 16,
+ columnsCount: 3,
+ columns: [{ childrenIds: [] }, { childrenIds: [] }, { childrenIds: [] }],
+ },
+ style: { padding: { top: 16, bottom: 16, left: 24, right: 24 } },
+ },
+ }),
+ },
+ {
+ label: 'Container',
+ icon: ,
+ block: () => ({
+ type: 'Container',
+ data: {
+ style: { padding: { top: 16, bottom: 16, left: 24, right: 24 } },
+ },
+ }),
+ },
+
+ // { label: 'ProgressBar', icon: , block: () => ({}) },
+ // { label: 'LoopContainer', icon: , block: () => ({}) },
+];
diff --git a/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/index.tsx b/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/index.tsx
new file mode 100644
index 000000000..d2ea6edff
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/BlockMenuPopover/index.tsx
@@ -0,0 +1,39 @@
+import { Plus } from 'lucide-react';
+import { useRef, useState } from 'react';
+import { Popover, PopoverContent, PopoverTrigger } from '~/components/ui/popover';
+import { type TEditorBlock } from '../../../../editor/core';
+import { BlocksMenu } from './BlocksMenu';
+import { DividerButton } from './DividerButton';
+
+type Props = {
+ placeholder?: boolean;
+ onSelect: (block: TEditorBlock) => void;
+};
+export function BlockMenuPopoverTrigger({ onSelect, placeholder }: Props) {
+ const [open, setOpen] = useState(false);
+ const containerRef = useRef(null);
+
+ return (
+
+
+ setOpen(true)}>
+ {placeholder ? (
+
+ ) : (
+
+ )}
+
+
+ {
+ onSelect(b);
+ setOpen(false);
+ }}
+ />
+
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/index.tsx b/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/index.tsx
new file mode 100644
index 000000000..745ee59ec
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/helpers/EditorChildrenIds/index.tsx
@@ -0,0 +1,56 @@
+import { Fragment } from 'react';
+import { type TEditorBlock } from '../../../editor/core';
+import EditorBlock from '../../../editor/EditorBlock';
+import { BlockMenuPopoverTrigger } from './BlockMenuPopover';
+
+export type EditorChildrenChange = {
+ blockId: string;
+ block: TEditorBlock;
+ childrenIds: string[];
+};
+
+function generateId() {
+ return `block-${Date.now()}`;
+}
+
+export type EditorChildrenIdsProps = {
+ childrenIds: string[] | null | undefined;
+ onChange: (val: EditorChildrenChange) => void;
+};
+export default function EditorChildrenIds({ childrenIds, onChange }: EditorChildrenIdsProps) {
+ const appendBlock = (block: TEditorBlock) => {
+ const blockId = generateId();
+ return onChange({
+ blockId,
+ block,
+ childrenIds: [...(childrenIds || []), blockId],
+ });
+ };
+
+ const insertBlock = (block: TEditorBlock, index: number) => {
+ const blockId = generateId();
+ const newChildrenIds = [...(childrenIds || [])];
+ newChildrenIds.splice(index, 0, blockId);
+ return onChange({
+ blockId,
+ block,
+ childrenIds: newChildrenIds,
+ });
+ };
+
+ if (!childrenIds || childrenIds.length === 0) {
+ return ;
+ }
+
+ return (
+ <>
+ {childrenIds.map((childId, i) => (
+
+ insertBlock(block, i)} />
+
+
+ ))}
+
+ >
+ );
+}
diff --git a/packages/react-router-v7-example/app/documents/blocks/helpers/TStyle.ts b/packages/react-router-v7-example/app/documents/blocks/helpers/TStyle.ts
new file mode 100644
index 000000000..6bb0a7075
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/helpers/TStyle.ts
@@ -0,0 +1,11 @@
+export type TStyle = {
+ backgroundColor?: string | null; // e.g. '#ffffff'
+ borderColor?: string | null; // e.g. '#000000'
+ borderRadius?: number | null; // e.g. 4 (for 4px)
+ color?: string | null; // e.g. '#333333'
+ fontFamily?: string | null; // e.g. 'Arial, sans-serif'
+ fontSize?: number | null; // e.g. 16 (for 16px)
+ fontWeight?: 'bold' | 'normal' | null; // e.g. 400 (for normal weight) or 700 (for bold)
+ padding?: { top: number; bottom: number; right: number; left: number } | null; // e.g. { top: 10, bottom: 10, right: 15, left: 15 }
+ textAlign?: 'center' | 'left' | 'right' | null;
+};
diff --git a/packages/react-router-v7-example/app/documents/blocks/helpers/block-wrappers/BubbleMenu.tsx b/packages/react-router-v7-example/app/documents/blocks/helpers/block-wrappers/BubbleMenu.tsx
new file mode 100644
index 000000000..48559e3be
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/helpers/block-wrappers/BubbleMenu.tsx
@@ -0,0 +1,171 @@
+/**
+ * Popover menu for block actions like move up, move down, and delete.
+ */
+import { ArrowUp, Trash } from 'lucide-react';
+import { Tooltip, TooltipContent, TooltipTrigger } from '~/components/ui/tooltip';
+import { resetDocument, setSelectedBlockId, useDocument } from '~/context/editor';
+import { cn } from '~/lib/utils';
+import { type TEditorBlock } from '../../../editor/core';
+import { type ColumnsContainerProps } from '../../ColumnsContainer/ColumnsContainerPropsSchema';
+
+type Props = {
+ blockId: string;
+};
+export default function TuneMenu({ blockId }: Props) {
+ const document = useDocument();
+
+ const handleDeleteClick = () => {
+ const filterChildrenIds = (childrenIds: string[] | null | undefined) => {
+ if (!childrenIds) {
+ return childrenIds;
+ }
+ return childrenIds.filter((f) => f !== blockId);
+ };
+ const nDocument: typeof document = { ...document };
+ for (const [id, b] of Object.entries(nDocument)) {
+ const block = b as TEditorBlock;
+ if (id === blockId) {
+ continue;
+ }
+ switch (block.type) {
+ case 'EmailLayout':
+ nDocument[id] = {
+ ...block,
+ data: {
+ ...block.data,
+ childrenIds: filterChildrenIds(block.data.childrenIds),
+ },
+ };
+ break;
+ case 'Container':
+ nDocument[id] = {
+ ...block,
+ data: {
+ ...block.data,
+ props: {
+ ...block.data.props,
+ childrenIds: filterChildrenIds(block.data.props?.childrenIds),
+ },
+ },
+ };
+ break;
+ case 'ColumnsContainer':
+ nDocument[id] = {
+ type: 'ColumnsContainer',
+ data: {
+ style: block.data.style,
+ props: {
+ ...block.data.props,
+ columns: block.data.props?.columns?.map((c) => ({
+ childrenIds: filterChildrenIds(c.childrenIds),
+ })),
+ },
+ } as ColumnsContainerProps,
+ };
+ break;
+ default:
+ nDocument[id] = block;
+ }
+ }
+ delete nDocument[blockId];
+ resetDocument(nDocument);
+ };
+
+ const handleMoveClick = (direction: 'up' | 'down') => {
+ const moveChildrenIds = (ids: string[] | null | undefined) => {
+ if (!ids) {
+ return ids;
+ }
+ const index = ids.indexOf(blockId);
+ if (index < 0) {
+ return ids;
+ }
+ const childrenIds = [...ids];
+ if (direction === 'up' && index > 0) {
+ [childrenIds[index], childrenIds[index - 1]] = [childrenIds[index - 1], childrenIds[index]];
+ } else if (direction === 'down' && index < childrenIds.length - 1) {
+ [childrenIds[index], childrenIds[index + 1]] = [childrenIds[index + 1], childrenIds[index]];
+ }
+ return childrenIds;
+ };
+ const nDocument: typeof document = { ...document };
+ for (const [id, b] of Object.entries(nDocument)) {
+ const block = b as TEditorBlock;
+ if (id === blockId) {
+ continue;
+ }
+ switch (block.type) {
+ case 'EmailLayout':
+ nDocument[id] = {
+ ...block,
+ data: {
+ ...block.data,
+ childrenIds: moveChildrenIds(block.data.childrenIds),
+ },
+ };
+ break;
+ case 'Container':
+ nDocument[id] = {
+ ...block,
+ data: {
+ ...block.data,
+ props: {
+ ...block.data.props,
+ childrenIds: moveChildrenIds(block.data.props?.childrenIds),
+ },
+ },
+ };
+ break;
+ case 'ColumnsContainer':
+ nDocument[id] = {
+ type: 'ColumnsContainer',
+ data: {
+ style: block.data.style,
+ props: {
+ ...block.data.props,
+ columns: block.data.props?.columns?.map((c) => ({
+ childrenIds: moveChildrenIds(c.childrenIds),
+ })),
+ },
+ } as ColumnsContainerProps,
+ };
+ break;
+ default:
+ nDocument[id] = block;
+ }
+ }
+
+ resetDocument(nDocument);
+ setSelectedBlockId(blockId);
+ };
+
+ return (
+ e.stopPropagation()} className="flex flex-col">
+
handleMoveClick('up')}>
+
+
+
+
handleMoveClick('down')}>
+
+
+
+
+
+
+
+ );
+}
+
+function TooltipTemplate({
+ title,
+ ...props
+}: React.ComponentProps<'button'> & {
+ title: string;
+}) {
+ return (
+
+
+ {title}
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/documents/blocks/helpers/block-wrappers/EditorBlockWrapper.tsx b/packages/react-router-v7-example/app/documents/blocks/helpers/block-wrappers/EditorBlockWrapper.tsx
new file mode 100644
index 000000000..582519cbd
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/helpers/block-wrappers/EditorBlockWrapper.tsx
@@ -0,0 +1,44 @@
+import { Popover, PopoverContent, PopoverTrigger } from '~/components/ui/popover';
+import { setSelectedBlockId, useSelectedBlockId } from '~/context/editor';
+import { useCurrentBlockId } from '../../../editor/EditorBlock';
+import BubbleMenu from './BubbleMenu';
+import { useIsMobile } from '~/hooks/use-mobile';
+
+export default function EditorBlockWrapper({ children }: { children: React.ReactNode }) {
+ const selectedBlockId = useSelectedBlockId();
+ const blockId = useCurrentBlockId();
+ const isMobile = useIsMobile();
+
+ const isSelected = selectedBlockId === blockId;
+
+ return (
+
+
+ {
+ setSelectedBlockId(blockId);
+ ev.stopPropagation();
+ ev.preventDefault();
+ }}
+ >
+ {children}
+
+
+ {
+ e.stopPropagation();
+ }}
+ >
+ {
+ // Only render the selected block's bubble menu
+ selectedBlockId === blockId &&
+ }
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/documents/blocks/helpers/fontFamily.ts b/packages/react-router-v7-example/app/documents/blocks/helpers/fontFamily.ts
new file mode 100644
index 000000000..38814e597
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/helpers/fontFamily.ts
@@ -0,0 +1,61 @@
+export const FONT_FAMILIES = [
+ {
+ key: 'MODERN_SANS',
+ label: 'Modern sans',
+ value: '"Helvetica Neue", "Arial Nova", "Nimbus Sans", Arial, sans-serif',
+ },
+ {
+ key: 'BOOK_SANS',
+ label: 'Book sans',
+ value: 'Optima, Candara, "Noto Sans", source-sans-pro, sans-serif',
+ },
+ {
+ key: 'ORGANIC_SANS',
+ label: 'Organic sans',
+ value: 'Seravek, "Gill Sans Nova", Ubuntu, Calibri, "DejaVu Sans", source-sans-pro, sans-serif',
+ },
+ {
+ key: 'GEOMETRIC_SANS',
+ label: 'Geometric sans',
+ value: 'Avenir, "Avenir Next LT Pro", Montserrat, Corbel, "URW Gothic", source-sans-pro, sans-serif',
+ },
+ {
+ key: 'HEAVY_SANS',
+ label: 'Heavy sans',
+ value:
+ 'Bahnschrift, "DIN Alternate", "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif',
+ },
+ {
+ key: 'ROUNDED_SANS',
+ label: 'Rounded sans',
+ value:
+ 'ui-rounded, "Hiragino Maru Gothic ProN", Quicksand, Comfortaa, Manjari, "Arial Rounded MT Bold", Calibri, source-sans-pro, sans-serif',
+ },
+ {
+ key: 'MODERN_SERIF',
+ label: 'Modern serif',
+ value: 'Charter, "Bitstream Charter", "Sitka Text", Cambria, serif',
+ },
+ {
+ key: 'BOOK_SERIF',
+ label: 'Book serif',
+ value: '"Iowan Old Style", "Palatino Linotype", "URW Palladio L", P052, serif',
+ },
+ {
+ key: 'MONOSPACE',
+ label: 'Monospace',
+ value: '"Nimbus Mono PS", "Courier New", "Cutive Mono", monospace',
+ },
+];
+
+export const FONT_FAMILY_NAMES = [
+ 'MODERN_SANS',
+ 'BOOK_SANS',
+ 'ORGANIC_SANS',
+ 'GEOMETRIC_SANS',
+ 'HEAVY_SANS',
+ 'ROUNDED_SANS',
+ 'MODERN_SERIF',
+ 'BOOK_SERIF',
+ 'MONOSPACE',
+] as const;
diff --git a/packages/react-router-v7-example/app/documents/blocks/helpers/zod.ts b/packages/react-router-v7-example/app/documents/blocks/helpers/zod.ts
new file mode 100644
index 000000000..7c975e2dc
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/blocks/helpers/zod.ts
@@ -0,0 +1,28 @@
+import { z } from 'zod';
+
+import { FONT_FAMILY_NAMES } from './fontFamily';
+
+export function zColor() {
+ return z.string().regex(/^#[0-9a-fA-F]{6}$/);
+}
+
+export function zFontFamily() {
+ return z.enum(FONT_FAMILY_NAMES);
+}
+
+export function zFontWeight() {
+ return z.enum(['bold', 'normal']);
+}
+
+export function zTextAlign() {
+ return z.enum(['left', 'center', 'right']);
+}
+
+export function zPadding() {
+ return z.object({
+ top: z.number(),
+ bottom: z.number(),
+ right: z.number(),
+ left: z.number(),
+ });
+}
diff --git a/packages/react-router-v7-example/app/documents/editor/EditorBlock.tsx b/packages/react-router-v7-example/app/documents/editor/EditorBlock.tsx
new file mode 100644
index 000000000..47bb87041
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/editor/EditorBlock.tsx
@@ -0,0 +1,29 @@
+import { createContext, useContext } from 'react';
+
+import { EditorBlock as CoreEditorBlock } from './core';
+import { useDocument } from '~/context/editor';
+
+const EditorBlockContext = createContext(null);
+export const useCurrentBlockId = () => useContext(EditorBlockContext)!;
+
+type EditorBlockProps = {
+ id: string;
+};
+
+/**
+ * Pass in root block to render the layout of the editor.
+ * @param id - Block id
+ * @returns EditorBlock component that loads data from the EditorDocumentContext
+ */
+export default function EditorBlock({ id }: EditorBlockProps) {
+ const document = useDocument();
+ const block = document[id];
+ if (!block) {
+ throw new Error('Could not find block');
+ }
+ return (
+
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/documents/editor/core.tsx b/packages/react-router-v7-example/app/documents/editor/core.tsx
new file mode 100644
index 000000000..236c06cd0
--- /dev/null
+++ b/packages/react-router-v7-example/app/documents/editor/core.tsx
@@ -0,0 +1,126 @@
+import { z } from 'zod';
+
+import { Avatar, AvatarPropsSchema } from '@usewaypoint/block-avatar';
+import { Button, ButtonPropsSchema } from '@usewaypoint/block-button';
+import { Divider, DividerPropsSchema } from '@usewaypoint/block-divider';
+import { Heading, HeadingPropsSchema } from '@usewaypoint/block-heading';
+import { Html, HtmlPropsSchema } from '@usewaypoint/block-html';
+import { Image, ImagePropsSchema } from '@usewaypoint/block-image';
+import { Spacer, SpacerPropsSchema } from '@usewaypoint/block-spacer';
+import { Text, TextPropsSchema } from '@usewaypoint/block-text';
+import {
+ buildBlockComponent,
+ buildBlockConfigurationDictionary,
+ buildBlockConfigurationSchema,
+} from '@usewaypoint/document-core';
+
+import ColumnsContainerEditor from '../blocks/ColumnsContainer/ColumnsContainerEditor';
+import ColumnsContainerPropsSchema from '../blocks/ColumnsContainer/ColumnsContainerPropsSchema';
+import ContainerEditor from '../blocks/Container/ContainerEditor';
+import ContainerPropsSchema from '../blocks/Container/ContainerPropsSchema';
+import EmailLayoutEditor from '../blocks/EmailLayout/EmailLayoutEditor';
+import EmailLayoutPropsSchema from '../blocks/EmailLayout/EmailLayoutPropsSchema';
+import EditorBlockWrapper from '../blocks/helpers/block-wrappers/EditorBlockWrapper';
+
+const EDITOR_DICTIONARY = buildBlockConfigurationDictionary({
+ Avatar: {
+ schema: AvatarPropsSchema,
+ Component: (props) => (
+
+
+
+ ),
+ },
+ Button: {
+ schema: ButtonPropsSchema,
+ Component: (props) => (
+
+
+
+ ),
+ },
+ Container: {
+ schema: ContainerPropsSchema,
+ Component: (props) => (
+
+
+
+ ),
+ },
+ ColumnsContainer: {
+ schema: ColumnsContainerPropsSchema,
+ Component: (props) => (
+
+
+
+ ),
+ },
+ Heading: {
+ schema: HeadingPropsSchema,
+ Component: (props) => (
+
+
+
+ ),
+ },
+ Html: {
+ schema: HtmlPropsSchema,
+ Component: (props) => (
+
+
+
+ ),
+ },
+ Image: {
+ schema: ImagePropsSchema,
+ Component: (data) => {
+ const props = {
+ ...data,
+ props: {
+ ...data.props,
+ url: data.props?.url ?? 'https://placehold.co/600x400@2x/F8F8F8/CCC?text=Your%20image',
+ },
+ };
+ return (
+
+
+
+ );
+ },
+ },
+ Text: {
+ schema: TextPropsSchema,
+ Component: (props) => (
+
+
+
+ ),
+ },
+ EmailLayout: {
+ schema: EmailLayoutPropsSchema,
+ Component: (p) => ,
+ },
+ Spacer: {
+ schema: SpacerPropsSchema,
+ Component: (props) => (
+
+
+
+ ),
+ },
+ Divider: {
+ schema: DividerPropsSchema,
+ Component: (props) => (
+
+
+
+ ),
+ },
+});
+
+export const EditorBlock = buildBlockComponent(EDITOR_DICTIONARY);
+export const EditorBlockSchema = buildBlockConfigurationSchema(EDITOR_DICTIONARY);
+export const EditorConfigurationSchema = z.record(z.string(), EditorBlockSchema);
+
+export type TEditorBlock = z.infer;
+export type TEditorConfiguration = Record;
diff --git a/packages/react-router-v7-example/app/hooks/use-mobile.ts b/packages/react-router-v7-example/app/hooks/use-mobile.ts
new file mode 100644
index 000000000..ba553c6f5
--- /dev/null
+++ b/packages/react-router-v7-example/app/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/packages/react-router-v7-example/app/lib/utils/download-json.ts b/packages/react-router-v7-example/app/lib/utils/download-json.ts
new file mode 100644
index 000000000..3ec70808c
--- /dev/null
+++ b/packages/react-router-v7-example/app/lib/utils/download-json.ts
@@ -0,0 +1,10 @@
+import { useMemo } from 'react';
+import { useDocument } from '~/context/editor';
+
+export function useDownloadUrl() {
+ const doc = useDocument();
+ const href = useMemo(() => {
+ return `data:text/plain,${encodeURIComponent(JSON.stringify(doc, null, ' '))}`;
+ }, [doc]);
+ return href;
+}
diff --git a/packages/react-router-v7-example/app/lib/utils/get-template.ts b/packages/react-router-v7-example/app/lib/utils/get-template.ts
new file mode 100644
index 000000000..24efebc6a
--- /dev/null
+++ b/packages/react-router-v7-example/app/lib/utils/get-template.ts
@@ -0,0 +1,91 @@
+import EMPTY_EMAIL_MESSAGE from '~/components/templates/empty-email-message';
+import ONE_TIME_PASSCODE from '~/components/templates/one-time-passcode';
+import ORDER_ECOMMERCE from '~/components/templates/order-ecommerce';
+import POST_METRICS_REPORT from '~/components/templates/post-metrics-report';
+import RESERVATION_REMINDER from '~/components/templates/reservation-reminder';
+import RESET_PASSWORD from '~/components/templates/reset-password';
+import RESPOND_TO_MESSAGE from '~/components/templates/respond-to-message';
+import SUBSCRIPTION_RECEIPT from '~/components/templates/subscription-receipt';
+import WELCOME from '~/components/templates/welcome';
+import { resetDocument } from '~/context/editor';
+import type { TEditorConfiguration } from '~/documents/editor/core';
+
+export const templateOptions = [
+ {
+ value: 'EMPTY_EMAIL_MESSAGE',
+ title: 'Empty',
+ },
+ {
+ value: 'WELCOME',
+ title: 'Welcome email',
+ },
+ {
+ value: 'ONE_TIME_PASSCODE',
+ title: 'One-time passcode (OTP)',
+ },
+ {
+ value: 'RESET_PASSWORD',
+ title: 'Reset password',
+ },
+ {
+ value: 'ORDER_ECOMMERCE',
+ title: 'E-commerce receipt',
+ },
+ {
+ value: 'SUBSCRIPTION_RECEIPT',
+ title: 'Subscription receipt',
+ },
+ {
+ value: 'RESERVATION_REMINDER',
+ title: 'Reservation reminder',
+ },
+ {
+ value: 'POST_METRICS_REPORT',
+ title: 'Post metrics',
+ },
+ {
+ value: 'RESPOND_TO_MESSAGE',
+ title: 'Respond to inquiry',
+ },
+] as const;
+
+export function getTemplate(templateString: string) {
+ switch (templateString) {
+ case 'EMPTY_EMAIL_MESSAGE':
+ return EMPTY_EMAIL_MESSAGE;
+ case 'ONE_TIME_PASSCODE':
+ return ONE_TIME_PASSCODE;
+ case 'ORDER_ECOMMERCE':
+ return ORDER_ECOMMERCE;
+ case 'POST_METRICS_REPORT':
+ return POST_METRICS_REPORT;
+ case 'RESERVATION_REMINDER':
+ return RESERVATION_REMINDER;
+ case 'RESET_PASSWORD':
+ return RESET_PASSWORD;
+ case 'RESPOND_TO_MESSAGE':
+ return RESPOND_TO_MESSAGE;
+ case 'SUBSCRIPTION_RECEIPT':
+ return SUBSCRIPTION_RECEIPT;
+ case 'WELCOME':
+ return WELCOME;
+ default:
+ console.warn(`Unknown templateString: ${templateString}`);
+ return EMPTY_EMAIL_MESSAGE;
+ }
+}
+
+export function generateSharedDocument(document: TEditorConfiguration) {
+ const code = encodeURIComponent(JSON.stringify(document));
+ return `#code/${btoa(code)}`;
+}
+
+export function restoreSharedDocument(template: string) {
+ const encodedString = template.replace('#code/', '');
+ const configurationString = decodeURIComponent(atob(encodedString));
+ try {
+ return resetDocument(JSON.parse(configurationString));
+ } catch {
+ console.error(`Couldn't load configuration from hash.`);
+ }
+}
diff --git a/packages/react-router-v7-example/app/lib/utils/index.ts b/packages/react-router-v7-example/app/lib/utils/index.ts
new file mode 100644
index 000000000..98b0e6aec
--- /dev/null
+++ b/packages/react-router-v7-example/app/lib/utils/index.ts
@@ -0,0 +1,10 @@
+import { clsx, type ClassValue } from 'clsx';
+import { twMerge } from 'tailwind-merge';
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs));
+}
+
+export function generateSlug(text: string) {
+ return text.toLowerCase().replace(/\s+/g, '-');
+}
diff --git a/packages/react-router-v7-example/app/lib/utils/validate-json-string.ts b/packages/react-router-v7-example/app/lib/utils/validate-json-string.ts
new file mode 100644
index 000000000..ebccbec96
--- /dev/null
+++ b/packages/react-router-v7-example/app/lib/utils/validate-json-string.ts
@@ -0,0 +1,23 @@
+import { EditorConfigurationSchema, type TEditorConfiguration } from '~/documents/editor/core';
+
+type TResult = { error: string; data?: undefined } | { data: TEditorConfiguration; error?: undefined };
+
+export default function validateJsonStringValue(value: string): TResult {
+ let jsonObject = undefined;
+ try {
+ jsonObject = JSON.parse(value);
+ } catch {
+ return { error: 'Invalid json' };
+ }
+
+ const parseResult = EditorConfigurationSchema.safeParse(jsonObject);
+ if (!parseResult.success) {
+ return { error: 'Invalid JSON schema' };
+ }
+
+ if (!parseResult.data.root) {
+ return { error: 'Missing "root" node' };
+ }
+
+ return { data: parseResult.data };
+}
diff --git a/packages/react-router-v7-example/app/root.tsx b/packages/react-router-v7-example/app/root.tsx
new file mode 100644
index 000000000..d2f32d3f8
--- /dev/null
+++ b/packages/react-router-v7-example/app/root.tsx
@@ -0,0 +1,71 @@
+import { isRouteErrorResponse, Links, Meta, Outlet, Scripts, ScrollRestoration } from 'react-router';
+
+import type { Route } from './+types/root';
+import './app.css';
+
+export const links: Route.LinksFunction = () => [];
+
+export function Layout({ children }: { children: React.ReactNode }) {
+ return (
+
+
+
+
+
+
+
+
+
+ {children}
+
+
+
+
+ );
+}
+
+export default function App() {
+ return ;
+}
+
+export function ErrorBoundary({ error }: Route.ErrorBoundaryProps) {
+ let message = 'Oops!';
+ let details = 'An unexpected error occurred.';
+ let stack: string | undefined;
+
+ if (isRouteErrorResponse(error)) {
+ message = error.status === 404 ? '404' : 'Error';
+ details = error.status === 404 ? 'The requested page could not be found.' : error.statusText || details;
+ } else if (import.meta.env.DEV && error && error instanceof Error) {
+ details = error.message;
+ stack = error.stack;
+ }
+
+ return (
+
+ {message}
+ {details}
+ {stack && (
+
+ {stack}
+
+ )}
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/routes.ts b/packages/react-router-v7-example/app/routes.ts
new file mode 100644
index 000000000..eee877cd2
--- /dev/null
+++ b/packages/react-router-v7-example/app/routes.ts
@@ -0,0 +1,3 @@
+import { type RouteConfig, index } from '@react-router/dev/routes';
+
+export default [index('routes/index/route.tsx')] satisfies RouteConfig;
diff --git a/packages/react-router-v7-example/app/routes/index/canvas/htmlCanva.tsx b/packages/react-router-v7-example/app/routes/index/canvas/htmlCanva.tsx
new file mode 100644
index 000000000..702c3d14b
--- /dev/null
+++ b/packages/react-router-v7-example/app/routes/index/canvas/htmlCanva.tsx
@@ -0,0 +1,59 @@
+import { renderToStaticMarkup } from '@usewaypoint/email-builder';
+import { useMemo } from 'react';
+import { useDocument } from '~/context/editor';
+
+function formatHtml(html: string): string {
+ let formatted = '';
+ let indent = 0;
+ const tab = ' '; // 2 spaces for indentation
+
+ // Remove existing whitespace between tags
+ html = html.replace(/>\s+<');
+
+ // Split into tokens
+ const tokens = html.split(/(<\/?[^>]+>)/);
+
+ for (let token of tokens) {
+ if (!token.trim()) continue;
+
+ if (token.match(/<\/\w[^>]*>/)) {
+ // Closing tag
+ indent--;
+ formatted += tab.repeat(Math.max(0, indent)) + token + '\n';
+ } else if (token.match(/<\w[^>]*\/>/)) {
+ // Self-closing tag
+ formatted += tab.repeat(indent) + token + '\n';
+ } else if (token.match(/<\w[^>]*>/)) {
+ // Opening tag
+ formatted += tab.repeat(indent) + token + '\n';
+ indent++;
+ } else {
+ // Text content
+ if (token.trim()) {
+ formatted += tab.repeat(indent) + token.trim() + '\n';
+ }
+ }
+ }
+
+ return formatted.trim();
+}
+
+export function HtmlCanva() {
+ const document = useDocument();
+ const rawCode = useMemo(() => renderToStaticMarkup(document, { rootBlockId: 'root' }), [document]);
+ const code = useMemo(() => formatHtml(rawCode), [rawCode]);
+
+ return (
+ {
+ const selection = window.getSelection();
+ if (selection) {
+ selection.selectAllChildren(e.currentTarget);
+ }
+ }}
+ >
+ {code}
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/routes/index/canvas/index.tsx b/packages/react-router-v7-example/app/routes/index/canvas/index.tsx
new file mode 100644
index 000000000..a7d784a2b
--- /dev/null
+++ b/packages/react-router-v7-example/app/routes/index/canvas/index.tsx
@@ -0,0 +1,40 @@
+import { Reader } from '@usewaypoint/email-builder';
+import { useDocument, useSelectedMainTab, useSelectedScreenSize } from '~/context/editor';
+import EditorBlock from '~/documents/editor/EditorBlock';
+import { HtmlCanva } from './htmlCanva';
+import { JsonCanva } from './jsonCanva';
+
+export function Canvas() {
+ const document = useDocument();
+ const canva = useSelectedMainTab();
+ const screenSize = useSelectedScreenSize();
+
+ const renderContent = () => {
+ switch (canva) {
+ case 'editor':
+ return (
+
+
+
+ );
+
+ case 'preview':
+ return (
+
+
+
+ );
+
+ case 'html':
+ return ;
+
+ case 'json':
+ return ;
+
+ default:
+ return null;
+ }
+ };
+
+ return {renderContent()}
;
+}
diff --git a/packages/react-router-v7-example/app/routes/index/canvas/jsonCanva.tsx b/packages/react-router-v7-example/app/routes/index/canvas/jsonCanva.tsx
new file mode 100644
index 000000000..925ab3cd1
--- /dev/null
+++ b/packages/react-router-v7-example/app/routes/index/canvas/jsonCanva.tsx
@@ -0,0 +1,21 @@
+import { useMemo } from 'react';
+import { useDocument } from '~/context/editor';
+
+export function JsonCanva() {
+ const document = useDocument();
+ const code = useMemo(() => JSON.stringify(document, null, ' '), [document]);
+
+ return (
+ {
+ const selection = window.getSelection();
+ if (selection) {
+ selection.selectAllChildren(e.currentTarget);
+ }
+ }}
+ >
+ {code}
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/routes/index/header/extraFunctions.tsx b/packages/react-router-v7-example/app/routes/index/header/extraFunctions.tsx
new file mode 100644
index 000000000..f7d06dc94
--- /dev/null
+++ b/packages/react-router-v7-example/app/routes/index/header/extraFunctions.tsx
@@ -0,0 +1,67 @@
+import { Download, EllipsisVertical, Share2, Upload } from 'lucide-react';
+import { Button } from '~/components/ui/button';
+import {
+ DropdownMenu,
+ DropdownMenuContent,
+ DropdownMenuItem,
+ DropdownMenuTrigger,
+} from '~/components/ui/dropdown-menu';
+import { resetDocument, useDocument } from '~/context/editor';
+import { useDownloadUrl } from '~/lib/utils/download-json';
+import { generateSharedDocument } from '~/lib/utils/get-template';
+import validateJsonStringValue from '~/lib/utils/validate-json-string';
+
+export function ExtraFunctions() {
+ const downloadUrl = useDownloadUrl();
+ const document = useDocument();
+
+ const onShare = async () => {
+ const hash = generateSharedDocument(document);
+ location.hash = hash;
+ navigator.clipboard.writeText(location.href);
+ alert('The URL has updated and copied, share now!');
+ };
+
+ const handleImportJson = (value: string) => {
+ const { error, data } = validateJsonStringValue(value);
+ if (error || !data) return alert(error || 'Invalid JSON');
+
+ resetDocument(data);
+ alert('JSON imported successfully');
+ };
+
+ return (
+
+
+
+
+
+
+
+
+ Download
+
+
+ {
+ const jsonString = prompt('Paste your JSON here:');
+ if (jsonString) {
+ handleImportJson(jsonString);
+ } else {
+ alert('No value provided');
+ }
+ }}
+ >
+
+ Import
+
+
+
+ Share
+
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/routes/index/header/index.tsx b/packages/react-router-v7-example/app/routes/index/header/index.tsx
new file mode 100644
index 000000000..9b485de89
--- /dev/null
+++ b/packages/react-router-v7-example/app/routes/index/header/index.tsx
@@ -0,0 +1,38 @@
+import { PanelLeft, PanelRight } from 'lucide-react';
+import { Button } from '~/components/ui/button';
+import { toggleInspectorSidebarOpen, toggleTemplatesSidebarOpen } from '~/context/editor';
+
+import { ExtraFunctions } from './extraFunctions';
+import { MainTabs } from './mainTabs';
+import { ScreenToggle } from './screenToggle';
+import { SaveButton } from './saveButton';
+
+export function Header() {
+ return (
+
+
+
+
+ {/* Main Tabs */}
+
+
+
+
+ {/* Screen Toggle Group */}
+
+
+ {/* Dropdown Menu */}
+
+
+ {/* Save Button */}
+
+
+
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/routes/index/header/mainTabs.tsx b/packages/react-router-v7-example/app/routes/index/header/mainTabs.tsx
new file mode 100644
index 000000000..848e0231f
--- /dev/null
+++ b/packages/react-router-v7-example/app/routes/index/header/mainTabs.tsx
@@ -0,0 +1,106 @@
+import { Braces, Code, Eye, SquarePen } from 'lucide-react';
+import { useEffect, useRef, useState } from 'react';
+import { setSelectedMainTab, type MainTabOptions } from '~/context/editor';
+import { cn } from '~/lib/utils';
+
+const headerOptions: { label: MainTabOptions; icon: React.ElementType }[] = [
+ { label: 'editor', icon: SquarePen },
+ { label: 'preview', icon: Eye },
+ { label: 'html', icon: Code },
+ { label: 'json', icon: Braces },
+];
+
+export function MainTabs() {
+ const [hoveredIndex, setHoveredIndex] = useState(null);
+ const [activeIndex, setActiveIndex] = useState(0);
+ const [hoverStyle, setHoverStyle] = useState({});
+ const [activeStyle, setActiveStyle] = useState({ left: '0px', width: '0px' });
+ const tabRefs = useRef<(HTMLButtonElement | null)[]>([]);
+
+ useEffect(() => {
+ if (hoveredIndex !== null) {
+ const hoveredElement = tabRefs.current[hoveredIndex];
+ if (hoveredElement) {
+ const { offsetLeft, offsetWidth } = hoveredElement;
+ setHoverStyle({
+ left: `${offsetLeft}px`,
+ width: `${offsetWidth}px`,
+ });
+ }
+ }
+ }, [hoveredIndex]);
+
+ useEffect(() => {
+ const activeElement = tabRefs.current[activeIndex];
+ if (activeElement) {
+ const { offsetLeft, offsetWidth } = activeElement;
+ setActiveStyle({
+ left: `${offsetLeft}px`,
+ width: `${offsetWidth}px`,
+ });
+ }
+ }, [activeIndex]);
+
+ useEffect(() => {
+ requestAnimationFrame(() => {
+ const firstElement = tabRefs.current[0];
+ if (firstElement) {
+ const { offsetLeft, offsetWidth } = firstElement;
+ setActiveStyle({
+ left: `${offsetLeft}px`,
+ width: `${offsetWidth}px`,
+ });
+ }
+ });
+ }, []);
+
+ const handleMainTabClick = (index: number, label: MainTabOptions) => {
+ setActiveIndex(index);
+ setSelectedMainTab(label);
+ };
+
+ return (
+
+ {/* Hover Highlight */}
+
+
+ {/* Active Indicator */}
+
+
+ {/* Tabs */}
+
+ {headerOptions.map((tab, index) => {
+ const Icon = tab.icon;
+ return (
+
+ );
+ })}
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/routes/index/header/saveButton.tsx b/packages/react-router-v7-example/app/routes/index/header/saveButton.tsx
new file mode 100644
index 000000000..25a06d613
--- /dev/null
+++ b/packages/react-router-v7-example/app/routes/index/header/saveButton.tsx
@@ -0,0 +1,21 @@
+import { useMemo } from 'react';
+import { Button } from '~/components/ui/button';
+import { useDocument } from '~/context/editor';
+
+export function SaveButton() {
+ const document = useDocument();
+ const code = useMemo(() => JSON.stringify(document, null, ' '), [document]);
+
+ return (
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/routes/index/header/screenToggle.tsx b/packages/react-router-v7-example/app/routes/index/header/screenToggle.tsx
new file mode 100644
index 000000000..089d59cfe
--- /dev/null
+++ b/packages/react-router-v7-example/app/routes/index/header/screenToggle.tsx
@@ -0,0 +1,31 @@
+import { Monitor, Smartphone } from 'lucide-react';
+import { ToggleGroup, ToggleGroupItem } from '~/components/ui/toggle-group';
+import {
+ screenSizeOptions,
+ setSelectedScreenSize,
+ useSelectedScreenSize,
+ type ScreenSizeOptions,
+} from '~/context/editor';
+
+export function ScreenToggle() {
+ const screenSize = useSelectedScreenSize();
+
+ const handleValueChange = (value: string) => {
+ if (screenSizeOptions.includes(value as ScreenSizeOptions)) {
+ setSelectedScreenSize(value as ScreenSizeOptions);
+ } else {
+ setSelectedScreenSize('desktop'); // Fallback to desktop if invalid value
+ }
+ };
+
+ return (
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/app/routes/index/route.tsx b/packages/react-router-v7-example/app/routes/index/route.tsx
new file mode 100644
index 000000000..f721cba8d
--- /dev/null
+++ b/packages/react-router-v7-example/app/routes/index/route.tsx
@@ -0,0 +1,45 @@
+import type { Route } from './+types/route';
+
+import { useEffect } from 'react';
+import { InspectorSidebar } from '~/components/inspector-sidebar';
+import { TemplateSidebar } from '~/components/template-sidebar';
+import WELCOME from '~/components/templates/welcome';
+import { resetDocument } from '~/context/editor';
+import { restoreSharedDocument } from '~/lib/utils/get-template';
+import { Canvas } from './canvas';
+import { Header } from './header';
+
+export function meta({}: Route.MetaArgs) {
+ return [{ title: 'New React Router App' }, { name: 'description', content: 'Welcome to React Router!' }];
+}
+
+export default function Home() {
+ useEffect(() => {
+ if (window && window.location.hash.startsWith('#code/')) {
+ restoreSharedDocument(window.location.hash);
+ } else {
+ resetDocument(WELCOME);
+ }
+ }, []);
+
+ return (
+
+ {/* Left Sidebar */}
+
+
+ {/* Main Content */}
+
+ {/* Header */}
+
+
+ {/* Canvas */}
+
+
+
+
+
+ {/* Right Sidebar */}
+
+
+ );
+}
diff --git a/packages/react-router-v7-example/components.json b/packages/react-router-v7-example/components.json
new file mode 100644
index 000000000..1197d487f
--- /dev/null
+++ b/packages/react-router-v7-example/components.json
@@ -0,0 +1,21 @@
+{
+ "$schema": "https://ui.shadcn.com/schema.json",
+ "style": "new-york",
+ "rsc": false,
+ "tsx": true,
+ "tailwind": {
+ "config": "",
+ "css": "app/app.css",
+ "baseColor": "zinc",
+ "cssVariables": true,
+ "prefix": ""
+ },
+ "aliases": {
+ "components": "~/components",
+ "utils": "~/lib/utils",
+ "ui": "~/components/ui",
+ "lib": "~/lib",
+ "hooks": "~/hooks"
+ },
+ "iconLibrary": "lucide"
+}
diff --git a/packages/react-router-v7-example/package-lock.json b/packages/react-router-v7-example/package-lock.json
new file mode 100644
index 000000000..fdd954ca9
--- /dev/null
+++ b/packages/react-router-v7-example/package-lock.json
@@ -0,0 +1,6903 @@
+{
+ "name": "react-router-v7-example",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "react-router-v7-example",
+ "dependencies": {
+ "@emotion/react": "^11.14.0",
+ "@emotion/styled": "^11.14.0",
+ "@mui/icons-material": "^7.1.2",
+ "@mui/material": "^7.1.2",
+ "@radix-ui/react-dialog": "^1.1.14",
+ "@radix-ui/react-dropdown-menu": "^2.1.15",
+ "@radix-ui/react-icons": "^1.3.2",
+ "@radix-ui/react-label": "^2.1.7",
+ "@radix-ui/react-popover": "^1.1.14",
+ "@radix-ui/react-separator": "^1.1.7",
+ "@radix-ui/react-slider": "^1.3.5",
+ "@radix-ui/react-slot": "^1.2.3",
+ "@radix-ui/react-switch": "^1.2.5",
+ "@radix-ui/react-toggle": "^1.1.9",
+ "@radix-ui/react-toggle-group": "^1.1.10",
+ "@radix-ui/react-tooltip": "^1.2.7",
+ "@react-router/node": "^7.5.3",
+ "@react-router/serve": "^7.5.3",
+ "@usewaypoint/block-avatar": "^0.0.3",
+ "@usewaypoint/block-button": "^0.0.3",
+ "@usewaypoint/block-columns-container": "^0.0.3",
+ "@usewaypoint/block-container": "^0.0.2",
+ "@usewaypoint/block-divider": "^0.0.4",
+ "@usewaypoint/block-heading": "^0.0.3",
+ "@usewaypoint/block-html": "^0.0.3",
+ "@usewaypoint/block-image": "^0.0.5",
+ "@usewaypoint/block-spacer": "^0.0.3",
+ "@usewaypoint/block-text": "^0.0.6",
+ "@usewaypoint/document-core": "^0.0.6",
+ "@usewaypoint/email-builder": "^0.0.8",
+ "class-variance-authority": "^0.7.1",
+ "clsx": "^2.1.1",
+ "cmdk": "^1.1.1",
+ "isbot": "^5.1.27",
+ "lucide-react": "^0.515.0",
+ "prettier": "^3.5.3",
+ "react": "^19.1.0",
+ "react-dom": "^19.1.0",
+ "react-router": "^7.5.3",
+ "tailwind-merge": "^3.3.1",
+ "zod": "^3.25.67",
+ "zustand": "^5.0.5"
+ },
+ "devDependencies": {
+ "@react-router/dev": "^7.5.3",
+ "@tailwindcss/vite": "^4.1.4",
+ "@types/node": "^20",
+ "@types/react": "^19.1.2",
+ "@types/react-dom": "^19.1.2",
+ "tailwindcss": "^4.1.4",
+ "tw-animate-css": "^1.3.4",
+ "typescript": "^5.8.3",
+ "vite": "^6.3.3",
+ "vite-tsconfig-paths": "^5.1.4"
+ }
+ },
+ "node_modules/@ampproject/remapping": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
+ "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
+ "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.27.1",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.1.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/compat-data": {
+ "version": "7.27.5",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.27.5.tgz",
+ "integrity": "sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core": {
+ "version": "7.27.4",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.27.4.tgz",
+ "integrity": "sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@ampproject/remapping": "^2.2.0",
+ "@babel/code-frame": "^7.27.1",
+ "@babel/generator": "^7.27.3",
+ "@babel/helper-compilation-targets": "^7.27.2",
+ "@babel/helper-module-transforms": "^7.27.3",
+ "@babel/helpers": "^7.27.4",
+ "@babel/parser": "^7.27.4",
+ "@babel/template": "^7.27.2",
+ "@babel/traverse": "^7.27.4",
+ "@babel/types": "^7.27.3",
+ "convert-source-map": "^2.0.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
+ }
+ },
+ "node_modules/@babel/core/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/@babel/generator": {
+ "version": "7.27.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.5.tgz",
+ "integrity": "sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.27.5",
+ "@babel/types": "^7.27.3",
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.25",
+ "jsesc": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-annotate-as-pure": {
+ "version": "7.27.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz",
+ "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.27.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets": {
+ "version": "7.27.2",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
+ "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/compat-data": "^7.27.2",
+ "@babel/helper-validator-option": "^7.27.1",
+ "browserslist": "^4.24.0",
+ "lru-cache": "^5.1.1",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/@babel/helper-create-class-features-plugin": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.1.tgz",
+ "integrity": "sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.27.1",
+ "@babel/helper-member-expression-to-functions": "^7.27.1",
+ "@babel/helper-optimise-call-expression": "^7.27.1",
+ "@babel/helper-replace-supers": "^7.27.1",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
+ "@babel/traverse": "^7.27.1",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/@babel/helper-member-expression-to-functions": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.27.1.tgz",
+ "integrity": "sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.27.1",
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
+ "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.27.1",
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-transforms": {
+ "version": "7.27.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz",
+ "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.27.1",
+ "@babel/helper-validator-identifier": "^7.27.1",
+ "@babel/traverse": "^7.27.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-optimise-call-expression": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz",
+ "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-plugin-utils": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
+ "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-replace-supers": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz",
+ "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-member-expression-to-functions": "^7.27.1",
+ "@babel/helper-optimise-call-expression": "^7.27.1",
+ "@babel/traverse": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz",
+ "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.27.1",
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
+ "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-option": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helpers": {
+ "version": "7.27.6",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.6.tgz",
+ "integrity": "sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/template": "^7.27.2",
+ "@babel/types": "^7.27.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.27.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.5.tgz",
+ "integrity": "sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.27.3"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-decorators": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.27.1.tgz",
+ "integrity": "sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-jsx": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz",
+ "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-typescript": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz",
+ "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-modules-commonjs": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz",
+ "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-transforms": "^7.27.1",
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-typescript": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.27.1.tgz",
+ "integrity": "sha512-Q5sT5+O4QUebHdbwKedFBEwRLb02zJ7r4A5Gg2hUoLuU3FjdMcyqcywqUrLCaDsFCxzokf7u9kuy7qz51YUuAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.27.1",
+ "@babel/helper-create-class-features-plugin": "^7.27.1",
+ "@babel/helper-plugin-utils": "^7.27.1",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
+ "@babel/plugin-syntax-typescript": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/preset-typescript": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.27.1.tgz",
+ "integrity": "sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1",
+ "@babel/helper-validator-option": "^7.27.1",
+ "@babel/plugin-syntax-jsx": "^7.27.1",
+ "@babel/plugin-transform-modules-commonjs": "^7.27.1",
+ "@babel/plugin-transform-typescript": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/runtime": {
+ "version": "7.27.6",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.6.tgz",
+ "integrity": "sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/template": {
+ "version": "7.27.2",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
+ "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.27.1",
+ "@babel/parser": "^7.27.2",
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse": {
+ "version": "7.27.4",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.4.tgz",
+ "integrity": "sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.27.1",
+ "@babel/generator": "^7.27.3",
+ "@babel/parser": "^7.27.4",
+ "@babel/template": "^7.27.2",
+ "@babel/types": "^7.27.3",
+ "debug": "^4.3.1",
+ "globals": "^11.1.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.27.6",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.6.tgz",
+ "integrity": "sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.27.1",
+ "@babel/helper-validator-identifier": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@emotion/babel-plugin": {
+ "version": "11.13.5",
+ "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz",
+ "integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.16.7",
+ "@babel/runtime": "^7.18.3",
+ "@emotion/hash": "^0.9.2",
+ "@emotion/memoize": "^0.9.0",
+ "@emotion/serialize": "^1.3.3",
+ "babel-plugin-macros": "^3.1.0",
+ "convert-source-map": "^1.5.0",
+ "escape-string-regexp": "^4.0.0",
+ "find-root": "^1.1.0",
+ "source-map": "^0.5.7",
+ "stylis": "4.2.0"
+ }
+ },
+ "node_modules/@emotion/babel-plugin/node_modules/convert-source-map": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
+ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
+ "license": "MIT"
+ },
+ "node_modules/@emotion/babel-plugin/node_modules/source-map": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@emotion/cache": {
+ "version": "11.14.0",
+ "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz",
+ "integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==",
+ "license": "MIT",
+ "dependencies": {
+ "@emotion/memoize": "^0.9.0",
+ "@emotion/sheet": "^1.4.0",
+ "@emotion/utils": "^1.4.2",
+ "@emotion/weak-memoize": "^0.4.0",
+ "stylis": "4.2.0"
+ }
+ },
+ "node_modules/@emotion/hash": {
+ "version": "0.9.2",
+ "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz",
+ "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==",
+ "license": "MIT"
+ },
+ "node_modules/@emotion/is-prop-valid": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.1.tgz",
+ "integrity": "sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==",
+ "license": "MIT",
+ "dependencies": {
+ "@emotion/memoize": "^0.9.0"
+ }
+ },
+ "node_modules/@emotion/memoize": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz",
+ "integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==",
+ "license": "MIT"
+ },
+ "node_modules/@emotion/react": {
+ "version": "11.14.0",
+ "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz",
+ "integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.18.3",
+ "@emotion/babel-plugin": "^11.13.5",
+ "@emotion/cache": "^11.14.0",
+ "@emotion/serialize": "^1.3.3",
+ "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
+ "@emotion/utils": "^1.4.2",
+ "@emotion/weak-memoize": "^0.4.0",
+ "hoist-non-react-statics": "^3.3.1"
+ },
+ "peerDependencies": {
+ "react": ">=16.8.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@emotion/serialize": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz",
+ "integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==",
+ "license": "MIT",
+ "dependencies": {
+ "@emotion/hash": "^0.9.2",
+ "@emotion/memoize": "^0.9.0",
+ "@emotion/unitless": "^0.10.0",
+ "@emotion/utils": "^1.4.2",
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/@emotion/sheet": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz",
+ "integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==",
+ "license": "MIT"
+ },
+ "node_modules/@emotion/styled": {
+ "version": "11.14.0",
+ "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.14.0.tgz",
+ "integrity": "sha512-XxfOnXFffatap2IyCeJyNov3kiDQWoR08gPUQxvbL7fxKryGBKUZUkG6Hz48DZwVrJSVh9sJboyV1Ds4OW6SgA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.18.3",
+ "@emotion/babel-plugin": "^11.13.5",
+ "@emotion/is-prop-valid": "^1.3.0",
+ "@emotion/serialize": "^1.3.3",
+ "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
+ "@emotion/utils": "^1.4.2"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.0.0-rc.0",
+ "react": ">=16.8.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@emotion/unitless": {
+ "version": "0.10.0",
+ "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz",
+ "integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==",
+ "license": "MIT"
+ },
+ "node_modules/@emotion/use-insertion-effect-with-fallbacks": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz",
+ "integrity": "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=16.8.0"
+ }
+ },
+ "node_modules/@emotion/utils": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz",
+ "integrity": "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==",
+ "license": "MIT"
+ },
+ "node_modules/@emotion/weak-memoize": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz",
+ "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==",
+ "license": "MIT"
+ },
+ "node_modules/@esbuild/aix-ppc64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.5.tgz",
+ "integrity": "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "aix"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.5.tgz",
+ "integrity": "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-arm64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.5.tgz",
+ "integrity": "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/android-x64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.5.tgz",
+ "integrity": "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-arm64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.5.tgz",
+ "integrity": "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/darwin-x64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.5.tgz",
+ "integrity": "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.5.tgz",
+ "integrity": "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/freebsd-x64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.5.tgz",
+ "integrity": "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.5.tgz",
+ "integrity": "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-arm64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.5.tgz",
+ "integrity": "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ia32": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.5.tgz",
+ "integrity": "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-loong64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.5.tgz",
+ "integrity": "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-mips64el": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.5.tgz",
+ "integrity": "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==",
+ "cpu": [
+ "mips64el"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-ppc64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.5.tgz",
+ "integrity": "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-riscv64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.5.tgz",
+ "integrity": "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-s390x": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.5.tgz",
+ "integrity": "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/linux-x64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz",
+ "integrity": "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-arm64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.5.tgz",
+ "integrity": "sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/netbsd-x64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.5.tgz",
+ "integrity": "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-arm64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.5.tgz",
+ "integrity": "sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/openbsd-x64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.5.tgz",
+ "integrity": "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/sunos-x64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.5.tgz",
+ "integrity": "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-arm64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.5.tgz",
+ "integrity": "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-ia32": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.5.tgz",
+ "integrity": "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@esbuild/win32-x64": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.5.tgz",
+ "integrity": "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@floating-ui/core": {
+ "version": "1.7.1",
+ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.1.tgz",
+ "integrity": "sha512-azI0DrjMMfIug/ExbBaeDVJXcY0a7EPvPjb2xAJPa4HeimBX+Z18HK8QQR3jb6356SnDDdxx+hinMLcJEDdOjw==",
+ "license": "MIT",
+ "dependencies": {
+ "@floating-ui/utils": "^0.2.9"
+ }
+ },
+ "node_modules/@floating-ui/dom": {
+ "version": "1.7.1",
+ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.1.tgz",
+ "integrity": "sha512-cwsmW/zyw5ltYTUeeYJ60CnQuPqmGwuGVhG9w0PRaRKkAyi38BT5CKrpIbb+jtahSwUl04cWzSx9ZOIxeS6RsQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@floating-ui/core": "^1.7.1",
+ "@floating-ui/utils": "^0.2.9"
+ }
+ },
+ "node_modules/@floating-ui/react-dom": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.3.tgz",
+ "integrity": "sha512-huMBfiU9UnQ2oBwIhgzyIiSpVgvlDstU8CX0AF+wS+KzmYMs0J2a3GwuFHV1Lz+jlrQGeC1fF+Nv0QoumyV0bA==",
+ "license": "MIT",
+ "dependencies": {
+ "@floating-ui/dom": "^1.0.0"
+ },
+ "peerDependencies": {
+ "react": ">=16.8.0",
+ "react-dom": ">=16.8.0"
+ }
+ },
+ "node_modules/@floating-ui/utils": {
+ "version": "0.2.9",
+ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.9.tgz",
+ "integrity": "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==",
+ "license": "MIT"
+ },
+ "node_modules/@isaacs/cliui": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^5.1.2",
+ "string-width-cjs": "npm:string-width@^4.2.0",
+ "strip-ansi": "^7.0.1",
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+ "wrap-ansi": "^8.1.0",
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@isaacs/fs-minipass": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
+ "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^7.0.4"
+ },
+ "engines": {
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/@jridgewell/gen-mapping": {
+ "version": "0.3.8",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
+ "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/set-array": "^1.2.1",
+ "@jridgewell/sourcemap-codec": "^1.4.10",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/resolve-uri": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/set-array": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
+ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
+ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
+ "license": "MIT"
+ },
+ "node_modules/@jridgewell/trace-mapping": {
+ "version": "0.3.25",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
+ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
+ }
+ },
+ "node_modules/@mjackson/node-fetch-server": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/@mjackson/node-fetch-server/-/node-fetch-server-0.2.0.tgz",
+ "integrity": "sha512-EMlH1e30yzmTpGLQjlFmaDAjyOeZhng1/XCd7DExR8PNAnG/G1tyruZxEoUe11ClnwGhGrtsdnyyUx1frSzjng==",
+ "license": "MIT"
+ },
+ "node_modules/@mui/core-downloads-tracker": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-7.1.2.tgz",
+ "integrity": "sha512-0gLO1PvbJwSYe5ji021tGj6HFqrtEPMGKK4L1zWwRbhzrWWUumUJvMvJUsIgWQIYQsgOnhq9k2Fc1BxLGHDsAg==",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ }
+ },
+ "node_modules/@mui/icons-material": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-7.1.2.tgz",
+ "integrity": "sha512-slqJByDub7Y1UcokrM17BoMBMvn8n7daXFXVoTv0MEH5k3sHjmsH8ql/Mt3s9vQ20cORDr83UZ448TEGcbrXtw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@mui/material": "^7.1.2",
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/material": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/@mui/material/-/material-7.1.2.tgz",
+ "integrity": "sha512-Z5PYKkA6Kd8vS04zKxJNpwuvt6IoMwqpbidV7RCrRQQKwczIwcNcS8L6GnN4pzFYfEs+N9v6co27DmG07rcnoA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.1",
+ "@mui/core-downloads-tracker": "^7.1.2",
+ "@mui/system": "^7.1.1",
+ "@mui/types": "^7.4.3",
+ "@mui/utils": "^7.1.1",
+ "@popperjs/core": "^2.11.8",
+ "@types/react-transition-group": "^4.4.12",
+ "clsx": "^2.1.1",
+ "csstype": "^3.1.3",
+ "prop-types": "^15.8.1",
+ "react-is": "^19.1.0",
+ "react-transition-group": "^4.4.5"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.5.0",
+ "@emotion/styled": "^11.3.0",
+ "@mui/material-pigment-css": "^7.1.1",
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@emotion/react": {
+ "optional": true
+ },
+ "@emotion/styled": {
+ "optional": true
+ },
+ "@mui/material-pigment-css": {
+ "optional": true
+ },
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/private-theming": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-7.1.1.tgz",
+ "integrity": "sha512-M8NbLUx+armk2ZuaxBkkMk11ultnWmrPlN0Xe3jUEaBChg/mcxa5HWIWS1EE4DF36WRACaAHVAvyekWlDQf0PQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.1",
+ "@mui/utils": "^7.1.1",
+ "prop-types": "^15.8.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/styled-engine": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-7.1.1.tgz",
+ "integrity": "sha512-R2wpzmSN127j26HrCPYVQ53vvMcT5DaKLoWkrfwUYq3cYytL6TQrCH8JBH3z79B6g4nMZZVoaXrxO757AlShaw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.1",
+ "@emotion/cache": "^11.13.5",
+ "@emotion/serialize": "^1.3.3",
+ "@emotion/sheet": "^1.4.0",
+ "csstype": "^3.1.3",
+ "prop-types": "^15.8.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.4.1",
+ "@emotion/styled": "^11.3.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@emotion/react": {
+ "optional": true
+ },
+ "@emotion/styled": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/system": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/@mui/system/-/system-7.1.1.tgz",
+ "integrity": "sha512-Kj1uhiqnj4Zo7PDjAOghtXJtNABunWvhcRU0O7RQJ7WOxeynoH6wXPcilphV8QTFtkKaip8EiNJRiCD+B3eROA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.1",
+ "@mui/private-theming": "^7.1.1",
+ "@mui/styled-engine": "^7.1.1",
+ "@mui/types": "^7.4.3",
+ "@mui/utils": "^7.1.1",
+ "clsx": "^2.1.1",
+ "csstype": "^3.1.3",
+ "prop-types": "^15.8.1"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@emotion/react": "^11.5.0",
+ "@emotion/styled": "^11.3.0",
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@emotion/react": {
+ "optional": true
+ },
+ "@emotion/styled": {
+ "optional": true
+ },
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/types": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.3.tgz",
+ "integrity": "sha512-2UCEiK29vtiZTeLdS2d4GndBKacVyxGvReznGXGr+CzW/YhjIX+OHUdCIczZjzcRAgKBGmE9zCIgoV9FleuyRQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.1"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@mui/utils": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.1.1.tgz",
+ "integrity": "sha512-BkOt2q7MBYl7pweY2JWwfrlahhp+uGLR8S+EhiyRaofeRYUWL2YKbSGQvN4hgSN1i8poN0PaUiii1kEMrchvzg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.27.1",
+ "@mui/types": "^7.4.3",
+ "@types/prop-types": "^15.7.14",
+ "clsx": "^2.1.1",
+ "prop-types": "^15.8.1",
+ "react-is": "^19.1.0"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/mui-org"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@npmcli/git": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz",
+ "integrity": "sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "@npmcli/promise-spawn": "^6.0.0",
+ "lru-cache": "^7.4.4",
+ "npm-pick-manifest": "^8.0.0",
+ "proc-log": "^3.0.0",
+ "promise-inflight": "^1.0.1",
+ "promise-retry": "^2.0.1",
+ "semver": "^7.3.5",
+ "which": "^3.0.0"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@npmcli/git/node_modules/lru-cache": {
+ "version": "7.18.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz",
+ "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@npmcli/package-json": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-4.0.1.tgz",
+ "integrity": "sha512-lRCEGdHZomFsURroh522YvA/2cVb9oPIJrjHanCJZkiasz1BzcnLr3tBJhlV7S86MBJBuAQ33is2D60YitZL2Q==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "@npmcli/git": "^4.1.0",
+ "glob": "^10.2.2",
+ "hosted-git-info": "^6.1.1",
+ "json-parse-even-better-errors": "^3.0.0",
+ "normalize-package-data": "^5.0.0",
+ "proc-log": "^3.0.0",
+ "semver": "^7.5.3"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@npmcli/promise-spawn": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz",
+ "integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "which": "^3.0.0"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@popperjs/core": {
+ "version": "2.11.8",
+ "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz",
+ "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/popperjs"
+ }
+ },
+ "node_modules/@radix-ui/number": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.1.tgz",
+ "integrity": "sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==",
+ "license": "MIT"
+ },
+ "node_modules/@radix-ui/primitive": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.2.tgz",
+ "integrity": "sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA==",
+ "license": "MIT"
+ },
+ "node_modules/@radix-ui/react-arrow": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.7.tgz",
+ "integrity": "sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-primitive": "2.1.3"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-collection": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.7.tgz",
+ "integrity": "sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-context": "1.1.2",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-slot": "1.2.3"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-compose-refs": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz",
+ "integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-context": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz",
+ "integrity": "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-dialog": {
+ "version": "1.1.14",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.14.tgz",
+ "integrity": "sha512-+CpweKjqpzTmwRwcYECQcNYbI8V9VSQt0SNFKeEBLgfucbsLssU6Ppq7wUdNXEGb573bMjFhVjKVll8rmV6zMw==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/primitive": "1.1.2",
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-context": "1.1.2",
+ "@radix-ui/react-dismissable-layer": "1.1.10",
+ "@radix-ui/react-focus-guards": "1.1.2",
+ "@radix-ui/react-focus-scope": "1.1.7",
+ "@radix-ui/react-id": "1.1.1",
+ "@radix-ui/react-portal": "1.1.9",
+ "@radix-ui/react-presence": "1.1.4",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-slot": "1.2.3",
+ "@radix-ui/react-use-controllable-state": "1.2.2",
+ "aria-hidden": "^1.2.4",
+ "react-remove-scroll": "^2.6.3"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-direction": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.1.tgz",
+ "integrity": "sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-dismissable-layer": {
+ "version": "1.1.10",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.10.tgz",
+ "integrity": "sha512-IM1zzRV4W3HtVgftdQiiOmA0AdJlCtMLe00FXaHwgt3rAnNsIyDqshvkIW3hj/iu5hu8ERP7KIYki6NkqDxAwQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/primitive": "1.1.2",
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-use-callback-ref": "1.1.1",
+ "@radix-ui/react-use-escape-keydown": "1.1.1"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-dropdown-menu": {
+ "version": "2.1.15",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-dropdown-menu/-/react-dropdown-menu-2.1.15.tgz",
+ "integrity": "sha512-mIBnOjgwo9AH3FyKaSWoSu/dYj6VdhJ7frEPiGTeXCdUFHjl9h3mFh2wwhEtINOmYXWhdpf1rY2minFsmaNgVQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/primitive": "1.1.2",
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-context": "1.1.2",
+ "@radix-ui/react-id": "1.1.1",
+ "@radix-ui/react-menu": "2.1.15",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-use-controllable-state": "1.2.2"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-focus-guards": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.2.tgz",
+ "integrity": "sha512-fyjAACV62oPV925xFCrH8DR5xWhg9KYtJT4s3u54jxp+L/hbpTY2kIeEFFbFe+a/HCE94zGQMZLIpVTPVZDhaA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-focus-scope": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.7.tgz",
+ "integrity": "sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-use-callback-ref": "1.1.1"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-icons": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-icons/-/react-icons-1.3.2.tgz",
+ "integrity": "sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "^16.x || ^17.x || ^18.x || ^19.0.0 || ^19.0.0-rc"
+ }
+ },
+ "node_modules/@radix-ui/react-id": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz",
+ "integrity": "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-use-layout-effect": "1.1.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-label": {
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.1.7.tgz",
+ "integrity": "sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-primitive": "2.1.3"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-menu": {
+ "version": "2.1.15",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-menu/-/react-menu-2.1.15.tgz",
+ "integrity": "sha512-tVlmA3Vb9n8SZSd+YSbuFR66l87Wiy4du+YE+0hzKQEANA+7cWKH1WgqcEX4pXqxUFQKrWQGHdvEfw00TjFiew==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/primitive": "1.1.2",
+ "@radix-ui/react-collection": "1.1.7",
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-context": "1.1.2",
+ "@radix-ui/react-direction": "1.1.1",
+ "@radix-ui/react-dismissable-layer": "1.1.10",
+ "@radix-ui/react-focus-guards": "1.1.2",
+ "@radix-ui/react-focus-scope": "1.1.7",
+ "@radix-ui/react-id": "1.1.1",
+ "@radix-ui/react-popper": "1.2.7",
+ "@radix-ui/react-portal": "1.1.9",
+ "@radix-ui/react-presence": "1.1.4",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-roving-focus": "1.1.10",
+ "@radix-ui/react-slot": "1.2.3",
+ "@radix-ui/react-use-callback-ref": "1.1.1",
+ "aria-hidden": "^1.2.4",
+ "react-remove-scroll": "^2.6.3"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-popover": {
+ "version": "1.1.14",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-popover/-/react-popover-1.1.14.tgz",
+ "integrity": "sha512-ODz16+1iIbGUfFEfKx2HTPKizg2MN39uIOV8MXeHnmdd3i/N9Wt7vU46wbHsqA0xoaQyXVcs0KIlBdOA2Y95bw==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/primitive": "1.1.2",
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-context": "1.1.2",
+ "@radix-ui/react-dismissable-layer": "1.1.10",
+ "@radix-ui/react-focus-guards": "1.1.2",
+ "@radix-ui/react-focus-scope": "1.1.7",
+ "@radix-ui/react-id": "1.1.1",
+ "@radix-ui/react-popper": "1.2.7",
+ "@radix-ui/react-portal": "1.1.9",
+ "@radix-ui/react-presence": "1.1.4",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-slot": "1.2.3",
+ "@radix-ui/react-use-controllable-state": "1.2.2",
+ "aria-hidden": "^1.2.4",
+ "react-remove-scroll": "^2.6.3"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-popper": {
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.2.7.tgz",
+ "integrity": "sha512-IUFAccz1JyKcf/RjB552PlWwxjeCJB8/4KxT7EhBHOJM+mN7LdW+B3kacJXILm32xawcMMjb2i0cIZpo+f9kiQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@floating-ui/react-dom": "^2.0.0",
+ "@radix-ui/react-arrow": "1.1.7",
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-context": "1.1.2",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-use-callback-ref": "1.1.1",
+ "@radix-ui/react-use-layout-effect": "1.1.1",
+ "@radix-ui/react-use-rect": "1.1.1",
+ "@radix-ui/react-use-size": "1.1.1",
+ "@radix-ui/rect": "1.1.1"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-portal": {
+ "version": "1.1.9",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.9.tgz",
+ "integrity": "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-use-layout-effect": "1.1.1"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-presence": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.4.tgz",
+ "integrity": "sha512-ueDqRbdc4/bkaQT3GIpLQssRlFgWaL/U2z/S31qRwwLWoxHLgry3SIfCwhxeQNbirEUXFa+lq3RL3oBYXtcmIA==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-use-layout-effect": "1.1.1"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-primitive": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz",
+ "integrity": "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-slot": "1.2.3"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-roving-focus": {
+ "version": "1.1.10",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.10.tgz",
+ "integrity": "sha512-dT9aOXUen9JSsxnMPv/0VqySQf5eDQ6LCk5Sw28kamz8wSOW2bJdlX2Bg5VUIIcV+6XlHpWTIuTPCf/UNIyq8Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/primitive": "1.1.2",
+ "@radix-ui/react-collection": "1.1.7",
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-context": "1.1.2",
+ "@radix-ui/react-direction": "1.1.1",
+ "@radix-ui/react-id": "1.1.1",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-use-callback-ref": "1.1.1",
+ "@radix-ui/react-use-controllable-state": "1.2.2"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-separator": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.1.7.tgz",
+ "integrity": "sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-primitive": "2.1.3"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-slider": {
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slider/-/react-slider-1.3.5.tgz",
+ "integrity": "sha512-rkfe2pU2NBAYfGaxa3Mqosi7VZEWX5CxKaanRv0vZd4Zhl9fvQrg0VM93dv3xGLGfrHuoTRF3JXH8nb9g+B3fw==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/number": "1.1.1",
+ "@radix-ui/primitive": "1.1.2",
+ "@radix-ui/react-collection": "1.1.7",
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-context": "1.1.2",
+ "@radix-ui/react-direction": "1.1.1",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-use-controllable-state": "1.2.2",
+ "@radix-ui/react-use-layout-effect": "1.1.1",
+ "@radix-ui/react-use-previous": "1.1.1",
+ "@radix-ui/react-use-size": "1.1.1"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-slot": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz",
+ "integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-compose-refs": "1.1.2"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-switch": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.2.5.tgz",
+ "integrity": "sha512-5ijLkak6ZMylXsaImpZ8u4Rlf5grRmoc0p0QeX9VJtlrM4f5m3nCTX8tWga/zOA8PZYIR/t0p2Mnvd7InrJ6yQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/primitive": "1.1.2",
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-context": "1.1.2",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-use-controllable-state": "1.2.2",
+ "@radix-ui/react-use-previous": "1.1.1",
+ "@radix-ui/react-use-size": "1.1.1"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-toggle": {
+ "version": "1.1.9",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.1.9.tgz",
+ "integrity": "sha512-ZoFkBBz9zv9GWer7wIjvdRxmh2wyc2oKWw6C6CseWd6/yq1DK/l5lJ+wnsmFwJZbBYqr02mrf8A2q/CVCuM3ZA==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/primitive": "1.1.2",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-use-controllable-state": "1.2.2"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-toggle-group": {
+ "version": "1.1.10",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.1.10.tgz",
+ "integrity": "sha512-kiU694Km3WFLTC75DdqgM/3Jauf3rD9wxeS9XtyWFKsBUeZA337lC+6uUazT7I1DhanZ5gyD5Stf8uf2dbQxOQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/primitive": "1.1.2",
+ "@radix-ui/react-context": "1.1.2",
+ "@radix-ui/react-direction": "1.1.1",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-roving-focus": "1.1.10",
+ "@radix-ui/react-toggle": "1.1.9",
+ "@radix-ui/react-use-controllable-state": "1.2.2"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-tooltip": {
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.2.7.tgz",
+ "integrity": "sha512-Ap+fNYwKTYJ9pzqW+Xe2HtMRbQ/EeWkj2qykZ6SuEV4iS/o1bZI5ssJbk4D2r8XuDuOBVz/tIx2JObtuqU+5Zw==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/primitive": "1.1.2",
+ "@radix-ui/react-compose-refs": "1.1.2",
+ "@radix-ui/react-context": "1.1.2",
+ "@radix-ui/react-dismissable-layer": "1.1.10",
+ "@radix-ui/react-id": "1.1.1",
+ "@radix-ui/react-popper": "1.2.7",
+ "@radix-ui/react-portal": "1.1.9",
+ "@radix-ui/react-presence": "1.1.4",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-slot": "1.2.3",
+ "@radix-ui/react-use-controllable-state": "1.2.2",
+ "@radix-ui/react-visually-hidden": "1.2.3"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-use-callback-ref": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz",
+ "integrity": "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-use-controllable-state": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.2.2.tgz",
+ "integrity": "sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-use-effect-event": "0.0.2",
+ "@radix-ui/react-use-layout-effect": "1.1.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-use-effect-event": {
+ "version": "0.0.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-effect-event/-/react-use-effect-event-0.0.2.tgz",
+ "integrity": "sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-use-layout-effect": "1.1.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-use-escape-keydown": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.1.tgz",
+ "integrity": "sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-use-callback-ref": "1.1.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-use-layout-effect": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz",
+ "integrity": "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-use-previous": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.1.tgz",
+ "integrity": "sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-use-rect": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.1.tgz",
+ "integrity": "sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/rect": "1.1.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-use-size": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.1.tgz",
+ "integrity": "sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-use-layout-effect": "1.1.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-visually-hidden": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.2.3.tgz",
+ "integrity": "sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-primitive": "2.1.3"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/@radix-ui/rect": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.1.tgz",
+ "integrity": "sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==",
+ "license": "MIT"
+ },
+ "node_modules/@react-router/dev": {
+ "version": "7.6.2",
+ "resolved": "https://registry.npmjs.org/@react-router/dev/-/dev-7.6.2.tgz",
+ "integrity": "sha512-BuG83Ug2C/P+zMYErTz/KKuXoxbOefh3oR66r13XWG9txwooC9nt2QDt2u8yt7Eo/9BATnx+TmXnOHEWqMyB8w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.21.8",
+ "@babel/generator": "^7.21.5",
+ "@babel/parser": "^7.21.8",
+ "@babel/plugin-syntax-decorators": "^7.22.10",
+ "@babel/plugin-syntax-jsx": "^7.21.4",
+ "@babel/preset-typescript": "^7.21.5",
+ "@babel/traverse": "^7.23.2",
+ "@babel/types": "^7.22.5",
+ "@npmcli/package-json": "^4.0.1",
+ "@react-router/node": "7.6.2",
+ "arg": "^5.0.1",
+ "babel-dead-code-elimination": "^1.0.6",
+ "chokidar": "^4.0.0",
+ "dedent": "^1.5.3",
+ "es-module-lexer": "^1.3.1",
+ "exit-hook": "2.2.1",
+ "fs-extra": "^10.0.0",
+ "jsesc": "3.0.2",
+ "lodash": "^4.17.21",
+ "pathe": "^1.1.2",
+ "picocolors": "^1.1.1",
+ "prettier": "^2.7.1",
+ "react-refresh": "^0.14.0",
+ "semver": "^7.3.7",
+ "set-cookie-parser": "^2.6.0",
+ "valibot": "^0.41.0",
+ "vite-node": "^3.1.4"
+ },
+ "bin": {
+ "react-router": "bin.js"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ },
+ "peerDependencies": {
+ "@react-router/serve": "^7.6.2",
+ "react-router": "^7.6.2",
+ "typescript": "^5.1.0",
+ "vite": "^5.1.0 || ^6.0.0",
+ "wrangler": "^3.28.2 || ^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@react-router/serve": {
+ "optional": true
+ },
+ "typescript": {
+ "optional": true
+ },
+ "wrangler": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@react-router/dev/node_modules/prettier": {
+ "version": "2.8.8",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
+ "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "prettier": "bin-prettier.js"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ },
+ "funding": {
+ "url": "https://github.com/prettier/prettier?sponsor=1"
+ }
+ },
+ "node_modules/@react-router/express": {
+ "version": "7.6.2",
+ "resolved": "https://registry.npmjs.org/@react-router/express/-/express-7.6.2.tgz",
+ "integrity": "sha512-b1XwP2ZknWG6yNl1aEAJ+yx0Alk85+iLk5y521MOhh2lCKPNyFOuX4Gw8hI3E4IXgDEPqiZ+lipmrIb7XkLNZQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-router/node": "7.6.2"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ },
+ "peerDependencies": {
+ "express": "^4.17.1 || ^5",
+ "react-router": "7.6.2",
+ "typescript": "^5.1.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@react-router/node": {
+ "version": "7.6.2",
+ "resolved": "https://registry.npmjs.org/@react-router/node/-/node-7.6.2.tgz",
+ "integrity": "sha512-KrxfnfJVU1b+020VKemkxpc7ssItsAL8MOJthcoGwPyKwrgovdwc+8NKJUqw3P7yk/Si0ZmVh9QYAzi9qF96dg==",
+ "license": "MIT",
+ "dependencies": {
+ "@mjackson/node-fetch-server": "^0.2.0",
+ "source-map-support": "^0.5.21",
+ "stream-slice": "^0.1.2",
+ "undici": "^6.19.2"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ },
+ "peerDependencies": {
+ "react-router": "7.6.2",
+ "typescript": "^5.1.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@react-router/serve": {
+ "version": "7.6.2",
+ "resolved": "https://registry.npmjs.org/@react-router/serve/-/serve-7.6.2.tgz",
+ "integrity": "sha512-VTdvB8kdZEtYeQML9TFJiIZnPefv94LfmLx5qQ0SJSesel/hQolnfpWEkLJ9WtBO+/10CulAvg6y5UwiceUFTQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-router/express": "7.6.2",
+ "@react-router/node": "7.6.2",
+ "compression": "^1.7.4",
+ "express": "^4.19.2",
+ "get-port": "5.1.1",
+ "morgan": "^1.10.0",
+ "source-map-support": "^0.5.21"
+ },
+ "bin": {
+ "react-router-serve": "bin.js"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ },
+ "peerDependencies": {
+ "react-router": "7.6.2"
+ }
+ },
+ "node_modules/@rollup/rollup-android-arm-eabi": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.44.0.tgz",
+ "integrity": "sha512-xEiEE5oDW6tK4jXCAyliuntGR+amEMO7HLtdSshVuhFnKTYoeYMyXQK7pLouAJJj5KHdwdn87bfHAR2nSdNAUA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-android-arm64": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.44.0.tgz",
+ "integrity": "sha512-uNSk/TgvMbskcHxXYHzqwiyBlJ/lGcv8DaUfcnNwict8ba9GTTNxfn3/FAoFZYgkaXXAdrAA+SLyKplyi349Jw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-arm64": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.44.0.tgz",
+ "integrity": "sha512-VGF3wy0Eq1gcEIkSCr8Ke03CWT+Pm2yveKLaDvq51pPpZza3JX/ClxXOCmTYYq3us5MvEuNRTaeyFThCKRQhOA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-x64": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.44.0.tgz",
+ "integrity": "sha512-fBkyrDhwquRvrTxSGH/qqt3/T0w5Rg0L7ZIDypvBPc1/gzjJle6acCpZ36blwuwcKD/u6oCE/sRWlUAcxLWQbQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-arm64": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.44.0.tgz",
+ "integrity": "sha512-u5AZzdQJYJXByB8giQ+r4VyfZP+walV+xHWdaFx/1VxsOn6eWJhK2Vl2eElvDJFKQBo/hcYIBg/jaKS8ZmKeNQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-x64": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.44.0.tgz",
+ "integrity": "sha512-qC0kS48c/s3EtdArkimctY7h3nHicQeEUdjJzYVJYR3ct3kWSafmn6jkNCA8InbUdge6PVx6keqjk5lVGJf99g==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.44.0.tgz",
+ "integrity": "sha512-x+e/Z9H0RAWckn4V2OZZl6EmV0L2diuX3QB0uM1r6BvhUIv6xBPL5mrAX2E3e8N8rEHVPwFfz/ETUbV4oW9+lQ==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.44.0.tgz",
+ "integrity": "sha512-1exwiBFf4PU/8HvI8s80icyCcnAIB86MCBdst51fwFmH5dyeoWVPVgmQPcKrMtBQ0W5pAs7jBCWuRXgEpRzSCg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.44.0.tgz",
+ "integrity": "sha512-ZTR2mxBHb4tK4wGf9b8SYg0Y6KQPjGpR4UWwTFdnmjB4qRtoATZ5dWn3KsDwGa5Z2ZBOE7K52L36J9LueKBdOQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.44.0.tgz",
+ "integrity": "sha512-GFWfAhVhWGd4r6UxmnKRTBwP1qmModHtd5gkraeW2G490BpFOZkFtem8yuX2NyafIP/mGpRJgTJ2PwohQkUY/Q==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.44.0.tgz",
+ "integrity": "sha512-xw+FTGcov/ejdusVOqKgMGW3c4+AgqrfvzWEVXcNP6zq2ue+lsYUgJ+5Rtn/OTJf7e2CbgTFvzLW2j0YAtj0Gg==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.44.0.tgz",
+ "integrity": "sha512-bKGibTr9IdF0zr21kMvkZT4K6NV+jjRnBoVMt2uNMG0BYWm3qOVmYnXKzx7UhwrviKnmK46IKMByMgvpdQlyJQ==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.44.0.tgz",
+ "integrity": "sha512-vV3cL48U5kDaKZtXrti12YRa7TyxgKAIDoYdqSIOMOFBXqFj2XbChHAtXquEn2+n78ciFgr4KIqEbydEGPxXgA==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.44.0.tgz",
+ "integrity": "sha512-TDKO8KlHJuvTEdfw5YYFBjhFts2TR0VpZsnLLSYmB7AaohJhM8ctDSdDnUGq77hUh4m/djRafw+9zQpkOanE2Q==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.44.0.tgz",
+ "integrity": "sha512-8541GEyktXaw4lvnGp9m84KENcxInhAt6vPWJ9RodsB/iGjHoMB2Pp5MVBCiKIRxrxzJhGCxmNzdu+oDQ7kwRA==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.44.0.tgz",
+ "integrity": "sha512-iUVJc3c0o8l9Sa/qlDL2Z9UP92UZZW1+EmQ4xfjTc1akr0iUFZNfxrXJ/R1T90h/ILm9iXEY6+iPrmYB3pXKjw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-musl": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.44.0.tgz",
+ "integrity": "sha512-PQUobbhLTQT5yz/SPg116VJBgz+XOtXt8D1ck+sfJJhuEsMj2jSej5yTdp8CvWBSceu+WW+ibVL6dm0ptG5fcA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.44.0.tgz",
+ "integrity": "sha512-M0CpcHf8TWn+4oTxJfh7LQuTuaYeXGbk0eageVjQCKzYLsajWS/lFC94qlRqOlyC2KvRT90ZrfXULYmukeIy7w==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.44.0.tgz",
+ "integrity": "sha512-3XJ0NQtMAXTWFW8FqZKcw3gOQwBtVWP/u8TpHP3CRPXD7Pd6s8lLdH3sHWh8vqKCyyiI8xW5ltJScQmBU9j7WA==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.44.0.tgz",
+ "integrity": "sha512-Q2Mgwt+D8hd5FIPUuPDsvPR7Bguza6yTkJxspDGkZj7tBRn2y4KSWYuIXpftFSjBra76TbKerCV7rgFPQrn+wQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@tailwindcss/node": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.10.tgz",
+ "integrity": "sha512-2ACf1znY5fpRBwRhMgj9ZXvb2XZW8qs+oTfotJ2C5xR0/WNL7UHZ7zXl6s+rUqedL1mNi+0O+WQr5awGowS3PQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@ampproject/remapping": "^2.3.0",
+ "enhanced-resolve": "^5.18.1",
+ "jiti": "^2.4.2",
+ "lightningcss": "1.30.1",
+ "magic-string": "^0.30.17",
+ "source-map-js": "^1.2.1",
+ "tailwindcss": "4.1.10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.10.tgz",
+ "integrity": "sha512-v0C43s7Pjw+B9w21htrQwuFObSkio2aV/qPx/mhrRldbqxbWJK6KizM+q7BF1/1CmuLqZqX3CeYF7s7P9fbA8Q==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "dependencies": {
+ "detect-libc": "^2.0.4",
+ "tar": "^7.4.3"
+ },
+ "engines": {
+ "node": ">= 10"
+ },
+ "optionalDependencies": {
+ "@tailwindcss/oxide-android-arm64": "4.1.10",
+ "@tailwindcss/oxide-darwin-arm64": "4.1.10",
+ "@tailwindcss/oxide-darwin-x64": "4.1.10",
+ "@tailwindcss/oxide-freebsd-x64": "4.1.10",
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.10",
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.1.10",
+ "@tailwindcss/oxide-linux-arm64-musl": "4.1.10",
+ "@tailwindcss/oxide-linux-x64-gnu": "4.1.10",
+ "@tailwindcss/oxide-linux-x64-musl": "4.1.10",
+ "@tailwindcss/oxide-wasm32-wasi": "4.1.10",
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.1.10",
+ "@tailwindcss/oxide-win32-x64-msvc": "4.1.10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-android-arm64": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.10.tgz",
+ "integrity": "sha512-VGLazCoRQ7rtsCzThaI1UyDu/XRYVyH4/EWiaSX6tFglE+xZB5cvtC5Omt0OQ+FfiIVP98su16jDVHDEIuH4iQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.10.tgz",
+ "integrity": "sha512-ZIFqvR1irX2yNjWJzKCqTCcHZbgkSkSkZKbRM3BPzhDL/18idA8uWCoopYA2CSDdSGFlDAxYdU2yBHwAwx8euQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.10.tgz",
+ "integrity": "sha512-eCA4zbIhWUFDXoamNztmS0MjXHSEJYlvATzWnRiTqJkcUteSjO94PoRHJy1Xbwp9bptjeIxxBHh+zBWFhttbrQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.10.tgz",
+ "integrity": "sha512-8/392Xu12R0cc93DpiJvNpJ4wYVSiciUlkiOHOSOQNH3adq9Gi/dtySK7dVQjXIOzlpSHjeCL89RUUI8/GTI6g==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.10.tgz",
+ "integrity": "sha512-t9rhmLT6EqeuPT+MXhWhlRYIMSfh5LZ6kBrC4FS6/+M1yXwfCtp24UumgCWOAJVyjQwG+lYva6wWZxrfvB+NhQ==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.10.tgz",
+ "integrity": "sha512-3oWrlNlxLRxXejQ8zImzrVLuZ/9Z2SeKoLhtCu0hpo38hTO2iL86eFOu4sVR8cZc6n3z7eRXXqtHJECa6mFOvA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.10.tgz",
+ "integrity": "sha512-saScU0cmWvg/Ez4gUmQWr9pvY9Kssxt+Xenfx1LG7LmqjcrvBnw4r9VjkFcqmbBb7GCBwYNcZi9X3/oMda9sqQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.10.tgz",
+ "integrity": "sha512-/G3ao/ybV9YEEgAXeEg28dyH6gs1QG8tvdN9c2MNZdUXYBaIY/Gx0N6RlJzfLy/7Nkdok4kaxKPHKJUlAaoTdA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.10.tgz",
+ "integrity": "sha512-LNr7X8fTiKGRtQGOerSayc2pWJp/9ptRYAa4G+U+cjw9kJZvkopav1AQc5HHD+U364f71tZv6XamaHKgrIoVzA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.10.tgz",
+ "integrity": "sha512-d6ekQpopFQJAcIK2i7ZzWOYGZ+A6NzzvQ3ozBvWFdeyqfOZdYHU66g5yr+/HC4ipP1ZgWsqa80+ISNILk+ae/Q==",
+ "bundleDependencies": [
+ "@napi-rs/wasm-runtime",
+ "@emnapi/core",
+ "@emnapi/runtime",
+ "@tybys/wasm-util",
+ "@emnapi/wasi-threads",
+ "tslib"
+ ],
+ "cpu": [
+ "wasm32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/core": "^1.4.3",
+ "@emnapi/runtime": "^1.4.3",
+ "@emnapi/wasi-threads": "^1.0.2",
+ "@napi-rs/wasm-runtime": "^0.2.10",
+ "@tybys/wasm-util": "^0.9.0",
+ "tslib": "^2.8.0"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.10.tgz",
+ "integrity": "sha512-i1Iwg9gRbwNVOCYmnigWCCgow8nDWSFmeTUU5nbNx3rqbe4p0kRbEqLwLJbYZKmSSp23g4N6rCDmm7OuPBXhDA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.10.tgz",
+ "integrity": "sha512-sGiJTjcBSfGq2DVRtaSljq5ZgZS2SDHSIfhOylkBvHVjwOsodBhnb3HdmiKkVuUGKD0I7G63abMOVaskj1KpOA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tailwindcss/vite": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.1.10.tgz",
+ "integrity": "sha512-QWnD5HDY2IADv+vYR82lOhqOlS1jSCUUAmfem52cXAhRTKxpDh3ARX8TTXJTCCO7Rv7cD2Nlekabv02bwP3a2A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@tailwindcss/node": "4.1.10",
+ "@tailwindcss/oxide": "4.1.10",
+ "tailwindcss": "4.1.10"
+ },
+ "peerDependencies": {
+ "vite": "^5.2.0 || ^6"
+ }
+ },
+ "node_modules/@types/estree": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/node": {
+ "version": "20.19.1",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.1.tgz",
+ "integrity": "sha512-jJD50LtlD2dodAEO653i3YF04NWak6jN3ky+Ri3Em3mGR39/glWiboM/IePaRbgwSfqM1TpGXfAg8ohn/4dTgA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "undici-types": "~6.21.0"
+ }
+ },
+ "node_modules/@types/parse-json": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
+ "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
+ "license": "MIT"
+ },
+ "node_modules/@types/prop-types": {
+ "version": "15.7.15",
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz",
+ "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==",
+ "license": "MIT"
+ },
+ "node_modules/@types/react": {
+ "version": "19.1.8",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.8.tgz",
+ "integrity": "sha512-AwAfQ2Wa5bCx9WP8nZL2uMZWod7J7/JSplxbTmBQ5ms6QpqNYm672H0Vu9ZVKVngQ+ii4R/byguVEUZQyeg44g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/@types/react-dom": {
+ "version": "19.1.6",
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.1.6.tgz",
+ "integrity": "sha512-4hOiT/dwO8Ko0gV1m/TJZYk3y0KBnY9vzDh7W+DH17b2HFSOGgdj33dhihPeuy3l0q23+4e+hoXHV6hCC4dCXw==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "^19.0.0"
+ }
+ },
+ "node_modules/@types/react-transition-group": {
+ "version": "4.4.12",
+ "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz",
+ "integrity": "sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "*"
+ }
+ },
+ "node_modules/@usewaypoint/block-avatar": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/@usewaypoint/block-avatar/-/block-avatar-0.0.3.tgz",
+ "integrity": "sha512-3BM6P4ztMmqDbSijtVQqI1canRkcENOEHZ2X9BYNv8BZGJbmitTrzANvwmmYXfFEuWPCAyABvujdZds15Zg8Qg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "zod": "^1 || ^2 || ^3"
+ }
+ },
+ "node_modules/@usewaypoint/block-button": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/@usewaypoint/block-button/-/block-button-0.0.3.tgz",
+ "integrity": "sha512-LXSI3FmCTv13voYX4wdHY7iJdsfyRfpDJZCFKSun5EF1j9FXrqMDGScpk/yokopkQWvWkYXQNAne7W0yWhRQlg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "zod": "^1 || ^2 || ^3"
+ }
+ },
+ "node_modules/@usewaypoint/block-columns-container": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/@usewaypoint/block-columns-container/-/block-columns-container-0.0.3.tgz",
+ "integrity": "sha512-r5jaojU1Fr6Svtl0a9dDlBHgslJQ04M+XaXaEO+GZ12+35fdAirpLkrEhuyBIA1FFXzRTG740wkbkr++iv1kuA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "zod": "^1 || ^2 || ^3"
+ }
+ },
+ "node_modules/@usewaypoint/block-container": {
+ "version": "0.0.2",
+ "resolved": "https://registry.npmjs.org/@usewaypoint/block-container/-/block-container-0.0.2.tgz",
+ "integrity": "sha512-li9GVdiahVpJ+MNRdkoCkP6/hBTdcpaLRGpaFBSQRkVt+cYAeB7qPNIo+242hUvVTm5Qky8ceGLDVblGYSZb7A==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "zod": "^1 || ^2 || ^3"
+ }
+ },
+ "node_modules/@usewaypoint/block-divider": {
+ "version": "0.0.4",
+ "resolved": "https://registry.npmjs.org/@usewaypoint/block-divider/-/block-divider-0.0.4.tgz",
+ "integrity": "sha512-q54ydWvKdg7Zwc4hzIwE6i/mC8dFYxfPRACEEEyu2dvSNa9cbKFIsPD9ipVSntK+Ib3Ml84uT4aHQmOlzP6hZA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "zod": "^1 || ^2 || ^3"
+ }
+ },
+ "node_modules/@usewaypoint/block-heading": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/@usewaypoint/block-heading/-/block-heading-0.0.3.tgz",
+ "integrity": "sha512-1dMrf1U34nq2FuwTUfsq+hBOdLQz1H+lVMEH9xvyCq5I7nSXCzpeo7QgumZ3zZEHtu3QgSEGafJaZyrj2paC0w==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "zod": "^1 || ^2 || ^3"
+ }
+ },
+ "node_modules/@usewaypoint/block-html": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/@usewaypoint/block-html/-/block-html-0.0.3.tgz",
+ "integrity": "sha512-ZI9oYDibMzs5y/YzfvUwuUBzHDKHOIjiStiVCvlmIA+VtJTycqT8X/ECjn+KmwesLTg5DhG07CC4WY2SL3AnJw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "zod": "^1 || ^2 || ^3"
+ }
+ },
+ "node_modules/@usewaypoint/block-image": {
+ "version": "0.0.5",
+ "resolved": "https://registry.npmjs.org/@usewaypoint/block-image/-/block-image-0.0.5.tgz",
+ "integrity": "sha512-b66jAXF79idsrIRc2QoBlZctIXdqg/qOAL7/QvKvENZH2KmuXoZhEUx+Z7sACvEQD/VI0u7TK5msDsA5S0/oVQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "zod": "^1 || ^2 || ^3"
+ }
+ },
+ "node_modules/@usewaypoint/block-spacer": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/@usewaypoint/block-spacer/-/block-spacer-0.0.3.tgz",
+ "integrity": "sha512-CCcMtwcpeC2rHvawQdh5f0Hez7o4xA/edWl/6I3RuA6Yb6STyyrGjmPFs2ZxHQsLOGUK+0OvBenuHlSTCZwuuA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "zod": "^1 || ^2 || ^3"
+ }
+ },
+ "node_modules/@usewaypoint/block-text": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/@usewaypoint/block-text/-/block-text-0.0.6.tgz",
+ "integrity": "sha512-tsKTNLXUYs1PkM8G5sgIhO3KnW1IFTx2q+lnq5Y4prHeHNBrArez5BbwAyvwBKnhcIt5c4gYL2CSklIU4+hLLw==",
+ "license": "MIT",
+ "dependencies": {
+ "insane": "^2.6.2",
+ "marked": "^12.0.2"
+ },
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "zod": "^1 || ^2 || ^3"
+ }
+ },
+ "node_modules/@usewaypoint/document-core": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/@usewaypoint/document-core/-/document-core-0.0.6.tgz",
+ "integrity": "sha512-Hg10gszVCZRJhA4nIWwAi2rTXuoxPL+ATMe0hU243PFBIUZOwDIQus4XZSeoHsenMCq1uBFCRiFW4hl2+tVwgA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "zod": "^1 || ^2 || ^3"
+ }
+ },
+ "node_modules/@usewaypoint/email-builder": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/@usewaypoint/email-builder/-/email-builder-0.0.8.tgz",
+ "integrity": "sha512-gP1Us3n/rh9GoCnJRHN8INqYD9qPJ0wErm0SCjz6ng8IGSBBL+k0fFKD7l1mT3BflZSjCl6heqRDu9aRw1AcFw==",
+ "license": "MIT",
+ "dependencies": {
+ "@usewaypoint/block-avatar": "^0.0.3",
+ "@usewaypoint/block-button": "^0.0.3",
+ "@usewaypoint/block-columns-container": "^0.0.3",
+ "@usewaypoint/block-container": "^0.0.2",
+ "@usewaypoint/block-divider": "^0.0.4",
+ "@usewaypoint/block-heading": "^0.0.3",
+ "@usewaypoint/block-html": "^0.0.3",
+ "@usewaypoint/block-image": "^0.0.5",
+ "@usewaypoint/block-spacer": "^0.0.3",
+ "@usewaypoint/block-text": "^0.0.6",
+ "@usewaypoint/document-core": "^0.0.6"
+ },
+ "peerDependencies": {
+ "react": "^16 || ^17 || ^18",
+ "react-dom": "^16 || ^17 || ^18",
+ "zod": "^1 || ^2 || ^3"
+ }
+ },
+ "node_modules/accepts": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-types": "~2.1.34",
+ "negotiator": "0.6.3"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/accepts/node_modules/negotiator": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/ansi-regex": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
+ "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/arg": {
+ "version": "5.0.2",
+ "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
+ "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/aria-hidden": {
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.6.tgz",
+ "integrity": "sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/array-flatten": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
+ "license": "MIT"
+ },
+ "node_modules/assignment": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/assignment/-/assignment-2.0.0.tgz",
+ "integrity": "sha512-naMULXjtgCs9SVUEtyvJNt68aF18em7/W+dhbR59kbz9cXWPEvUkCun2tqlgqRPSqZaKPpqLc5ZnwL8jVmJRvw=="
+ },
+ "node_modules/babel-dead-code-elimination": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/babel-dead-code-elimination/-/babel-dead-code-elimination-1.0.10.tgz",
+ "integrity": "sha512-DV5bdJZTzZ0zn0DC24v3jD7Mnidh6xhKa4GfKCbq3sfW8kaWhDdZjP3i81geA8T33tdYqWKw4D3fVv0CwEgKVA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.23.7",
+ "@babel/parser": "^7.23.6",
+ "@babel/traverse": "^7.23.7",
+ "@babel/types": "^7.23.6"
+ }
+ },
+ "node_modules/babel-plugin-macros": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
+ "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.12.5",
+ "cosmiconfig": "^7.0.0",
+ "resolve": "^1.19.0"
+ },
+ "engines": {
+ "node": ">=10",
+ "npm": ">=6"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/basic-auth": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz",
+ "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==",
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "5.1.2"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/basic-auth/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "license": "MIT"
+ },
+ "node_modules/body-parser": {
+ "version": "1.20.3",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
+ "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "3.1.2",
+ "content-type": "~1.0.5",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
+ "on-finished": "2.4.1",
+ "qs": "6.13.0",
+ "raw-body": "2.5.2",
+ "type-is": "~1.6.18",
+ "unpipe": "1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/body-parser/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/body-parser/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/brace-expansion": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/browserslist": {
+ "version": "4.25.0",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.0.tgz",
+ "integrity": "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "caniuse-lite": "^1.0.30001718",
+ "electron-to-chromium": "^1.5.160",
+ "node-releases": "^2.0.19",
+ "update-browserslist-db": "^1.1.3"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ }
+ },
+ "node_modules/buffer-from": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+ "license": "MIT"
+ },
+ "node_modules/bytes": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/cac": {
+ "version": "6.7.14",
+ "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz",
+ "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "get-intrinsic": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001724",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001724.tgz",
+ "integrity": "sha512-WqJo7p0TbHDOythNTqYujmaJTvtYRZrjpP8TCvH6Vb9CYJerJNKamKzIWOM4BkQatWj9H2lYulpdAQNBe7QhNA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "CC-BY-4.0"
+ },
+ "node_modules/chokidar": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
+ "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "readdirp": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 14.16.0"
+ },
+ "funding": {
+ "url": "https://paulmillr.com/funding/"
+ }
+ },
+ "node_modules/chownr": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz",
+ "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/class-variance-authority": {
+ "version": "0.7.1",
+ "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz",
+ "integrity": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "clsx": "^2.1.1"
+ },
+ "funding": {
+ "url": "https://polar.sh/cva"
+ }
+ },
+ "node_modules/clsx": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/cmdk": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/cmdk/-/cmdk-1.1.1.tgz",
+ "integrity": "sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-compose-refs": "^1.1.1",
+ "@radix-ui/react-dialog": "^1.1.6",
+ "@radix-ui/react-id": "^1.1.0",
+ "@radix-ui/react-primitive": "^2.0.2"
+ },
+ "peerDependencies": {
+ "react": "^18 || ^19 || ^19.0.0-rc",
+ "react-dom": "^18 || ^19 || ^19.0.0-rc"
+ }
+ },
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/compressible": {
+ "version": "2.0.18",
+ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
+ "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-db": ">= 1.43.0 < 2"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/compression": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.0.tgz",
+ "integrity": "sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "3.1.2",
+ "compressible": "~2.0.18",
+ "debug": "2.6.9",
+ "negotiator": "~0.6.4",
+ "on-headers": "~1.0.2",
+ "safe-buffer": "5.2.1",
+ "vary": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/compression/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/compression/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/content-disposition": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "5.2.1"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/content-type": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/cookie": {
+ "version": "0.7.1",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
+ "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/cookie-signature": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
+ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==",
+ "license": "MIT"
+ },
+ "node_modules/cosmiconfig": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/cross-spawn/node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/csstype": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
+ "license": "MIT"
+ },
+ "node_modules/debug": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
+ "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/dedent": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.6.0.tgz",
+ "integrity": "sha512-F1Z+5UCFpmQUzJa11agbyPVMbpgT/qA3/SKyJ1jyBgm7dUcUEa8v9JwDkerSQXfakBwFljIxhOJqGkjUwZ9FSA==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "babel-plugin-macros": "^3.1.0"
+ },
+ "peerDependenciesMeta": {
+ "babel-plugin-macros": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/depd": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/destroy": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/detect-libc": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz",
+ "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/detect-node-es": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz",
+ "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==",
+ "license": "MIT"
+ },
+ "node_modules/dom-helpers": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz",
+ "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/runtime": "^7.8.7",
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/eastasianwidth": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
+ "license": "MIT"
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.5.171",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.171.tgz",
+ "integrity": "sha512-scWpzXEJEMrGJa4Y6m/tVotb0WuvNmasv3wWVzUAeCgKU0ToFOhUW6Z+xWnRQANMYGxN4ngJXIThgBJOqzVPCQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/encodeurl": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/enhanced-resolve": {
+ "version": "5.18.1",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz",
+ "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.4",
+ "tapable": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/err-code": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
+ "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "license": "MIT",
+ "dependencies": {
+ "is-arrayish": "^0.2.1"
+ }
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-module-lexer": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz",
+ "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/esbuild": {
+ "version": "0.25.5",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.5.tgz",
+ "integrity": "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.25.5",
+ "@esbuild/android-arm": "0.25.5",
+ "@esbuild/android-arm64": "0.25.5",
+ "@esbuild/android-x64": "0.25.5",
+ "@esbuild/darwin-arm64": "0.25.5",
+ "@esbuild/darwin-x64": "0.25.5",
+ "@esbuild/freebsd-arm64": "0.25.5",
+ "@esbuild/freebsd-x64": "0.25.5",
+ "@esbuild/linux-arm": "0.25.5",
+ "@esbuild/linux-arm64": "0.25.5",
+ "@esbuild/linux-ia32": "0.25.5",
+ "@esbuild/linux-loong64": "0.25.5",
+ "@esbuild/linux-mips64el": "0.25.5",
+ "@esbuild/linux-ppc64": "0.25.5",
+ "@esbuild/linux-riscv64": "0.25.5",
+ "@esbuild/linux-s390x": "0.25.5",
+ "@esbuild/linux-x64": "0.25.5",
+ "@esbuild/netbsd-arm64": "0.25.5",
+ "@esbuild/netbsd-x64": "0.25.5",
+ "@esbuild/openbsd-arm64": "0.25.5",
+ "@esbuild/openbsd-x64": "0.25.5",
+ "@esbuild/sunos-x64": "0.25.5",
+ "@esbuild/win32-arm64": "0.25.5",
+ "@esbuild/win32-ia32": "0.25.5",
+ "@esbuild/win32-x64": "0.25.5"
+ }
+ },
+ "node_modules/escalade": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
+ "license": "MIT"
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/exit-hook": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-2.2.1.tgz",
+ "integrity": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/express": {
+ "version": "4.21.2",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
+ "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
+ "license": "MIT",
+ "dependencies": {
+ "accepts": "~1.3.8",
+ "array-flatten": "1.1.1",
+ "body-parser": "1.20.3",
+ "content-disposition": "0.5.4",
+ "content-type": "~1.0.4",
+ "cookie": "0.7.1",
+ "cookie-signature": "1.0.6",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "1.3.1",
+ "fresh": "0.5.2",
+ "http-errors": "2.0.0",
+ "merge-descriptors": "1.0.3",
+ "methods": "~1.1.2",
+ "on-finished": "2.4.1",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "0.1.12",
+ "proxy-addr": "~2.0.7",
+ "qs": "6.13.0",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.2.1",
+ "send": "0.19.0",
+ "serve-static": "1.16.2",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/express/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/express/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/fdir": {
+ "version": "6.4.6",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz",
+ "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/finalhandler": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
+ "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "on-finished": "2.4.1",
+ "parseurl": "~1.3.3",
+ "statuses": "2.0.1",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/finalhandler/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/finalhandler/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/find-root": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
+ "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==",
+ "license": "MIT"
+ },
+ "node_modules/foreground-child": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
+ "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "cross-spawn": "^7.0.6",
+ "signal-exit": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/forwarded": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fs-extra": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/fsevents": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/gensync": {
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-nonce": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz",
+ "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/get-port": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz",
+ "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/globals": {
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/globrex": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz",
+ "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/he": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/he/-/he-0.5.0.tgz",
+ "integrity": "sha512-DoufbNNOFzwRPy8uecq+j+VCPQ+JyDelHTmSgygrA5TsR8Cbw4Qcir5sGtWiusB4BdT89nmlaVDhSJOqC/33vw==",
+ "license": "MIT",
+ "bin": {
+ "he": "bin/he"
+ }
+ },
+ "node_modules/hoist-non-react-statics": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
+ "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "react-is": "^16.7.0"
+ }
+ },
+ "node_modules/hoist-non-react-statics/node_modules/react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
+ "license": "MIT"
+ },
+ "node_modules/hosted-git-info": {
+ "version": "6.1.3",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-6.1.3.tgz",
+ "integrity": "sha512-HVJyzUrLIL1c0QmviVh5E8VGyUS7xCFPS6yydaVd1UegW+ibV/CohqTH9MkOLDp5o+rb82DMo77PTuc9F/8GKw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^7.5.1"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/hosted-git-info/node_modules/lru-cache": {
+ "version": "7.18.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz",
+ "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/http-errors": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
+ "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "depd": "2.0.0",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "toidentifier": "1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "license": "MIT",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/import-fresh": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
+ "license": "MIT",
+ "dependencies": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "license": "ISC"
+ },
+ "node_modules/insane": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/insane/-/insane-2.6.2.tgz",
+ "integrity": "sha512-BqEL1CJsjJi+/C/zKZxv31zs3r6zkLH5Nz1WMFb7UBX2KHY2yXDpbFTSEmNHzomBbGDysIfkTX55A0mQZ2CQiw==",
+ "license": "MIT",
+ "dependencies": {
+ "assignment": "2.0.0",
+ "he": "0.5.0"
+ }
+ },
+ "node_modules/ipaddr.js": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
+ "license": "MIT"
+ },
+ "node_modules/is-core-module": {
+ "version": "2.16.1",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
+ "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
+ "license": "MIT",
+ "dependencies": {
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/isbot": {
+ "version": "5.1.28",
+ "resolved": "https://registry.npmjs.org/isbot/-/isbot-5.1.28.tgz",
+ "integrity": "sha512-qrOp4g3xj8YNse4biorv6O5ZShwsJM0trsoda4y7j/Su7ZtTTfVXFzbKkpgcSoDrHS8FcTuUwcU04YimZlZOxw==",
+ "license": "Unlicense",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/jackspeak": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
+ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "@isaacs/cliui": "^8.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ },
+ "optionalDependencies": {
+ "@pkgjs/parseargs": "^0.11.0"
+ }
+ },
+ "node_modules/jiti": {
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz",
+ "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "jiti": "lib/jiti-cli.mjs"
+ }
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "license": "MIT"
+ },
+ "node_modules/jsesc": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz",
+ "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==",
+ "license": "MIT",
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/json-parse-even-better-errors": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz",
+ "integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/json5": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "json5": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/lightningcss": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.1.tgz",
+ "integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==",
+ "dev": true,
+ "license": "MPL-2.0",
+ "dependencies": {
+ "detect-libc": "^2.0.3"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ },
+ "optionalDependencies": {
+ "lightningcss-darwin-arm64": "1.30.1",
+ "lightningcss-darwin-x64": "1.30.1",
+ "lightningcss-freebsd-x64": "1.30.1",
+ "lightningcss-linux-arm-gnueabihf": "1.30.1",
+ "lightningcss-linux-arm64-gnu": "1.30.1",
+ "lightningcss-linux-arm64-musl": "1.30.1",
+ "lightningcss-linux-x64-gnu": "1.30.1",
+ "lightningcss-linux-x64-musl": "1.30.1",
+ "lightningcss-win32-arm64-msvc": "1.30.1",
+ "lightningcss-win32-x64-msvc": "1.30.1"
+ }
+ },
+ "node_modules/lightningcss-darwin-arm64": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.1.tgz",
+ "integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-darwin-x64": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.1.tgz",
+ "integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-freebsd-x64": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.1.tgz",
+ "integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.1.tgz",
+ "integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm64-gnu": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.1.tgz",
+ "integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-arm64-musl": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.1.tgz",
+ "integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-x64-gnu": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.1.tgz",
+ "integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-linux-x64-musl": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.1.tgz",
+ "integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-win32-arm64-msvc": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.1.tgz",
+ "integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lightningcss-win32-x64-msvc": {
+ "version": "1.30.1",
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.1.tgz",
+ "integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MPL-2.0",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/lines-and-columns": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
+ "license": "MIT"
+ },
+ "node_modules/lodash": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "license": "MIT",
+ "dependencies": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ },
+ "bin": {
+ "loose-envify": "cli.js"
+ }
+ },
+ "node_modules/lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "node_modules/lucide-react": {
+ "version": "0.515.0",
+ "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.515.0.tgz",
+ "integrity": "sha512-Sy7bY0MeicRm2pzrnoHm2h6C1iVoeHyBU2fjdQDsXGP51fhkhau1/ZV/dzrcxEmAKsxYb6bGaIsMnGHuQ5s0dw==",
+ "license": "ISC",
+ "peerDependencies": {
+ "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
+ }
+ },
+ "node_modules/magic-string": {
+ "version": "0.30.17",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz",
+ "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.0"
+ }
+ },
+ "node_modules/marked": {
+ "version": "12.0.2",
+ "resolved": "https://registry.npmjs.org/marked/-/marked-12.0.2.tgz",
+ "integrity": "sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==",
+ "license": "MIT",
+ "bin": {
+ "marked": "bin/marked.js"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/media-typer": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/merge-descriptors": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
+ "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/methods": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "license": "MIT",
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/mime-db": {
+ "version": "1.54.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types/node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/minipass": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ }
+ },
+ "node_modules/minizlib": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.0.2.tgz",
+ "integrity": "sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "minipass": "^7.1.2"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/mkdirp": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz",
+ "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "mkdirp": "dist/cjs/src/bin.js"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/morgan": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.10.0.tgz",
+ "integrity": "sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==",
+ "license": "MIT",
+ "dependencies": {
+ "basic-auth": "~2.0.1",
+ "debug": "2.6.9",
+ "depd": "~2.0.0",
+ "on-finished": "~2.3.0",
+ "on-headers": "~1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/morgan/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/morgan/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/morgan/node_modules/on-finished": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
+ "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==",
+ "license": "MIT",
+ "dependencies": {
+ "ee-first": "1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "license": "MIT"
+ },
+ "node_modules/nanoid": {
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/negotiator": {
+ "version": "0.6.4",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz",
+ "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/node-releases": {
+ "version": "2.0.19",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
+ "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/normalize-package-data": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-5.0.0.tgz",
+ "integrity": "sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "hosted-git-info": "^6.0.0",
+ "is-core-module": "^2.8.1",
+ "semver": "^7.3.5",
+ "validate-npm-package-license": "^3.0.4"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/npm-install-checks": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.3.0.tgz",
+ "integrity": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "semver": "^7.1.1"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/npm-normalize-package-bin": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz",
+ "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/npm-package-arg": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-10.1.0.tgz",
+ "integrity": "sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "hosted-git-info": "^6.0.0",
+ "proc-log": "^3.0.0",
+ "semver": "^7.3.5",
+ "validate-npm-package-name": "^5.0.0"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/npm-pick-manifest": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-8.0.2.tgz",
+ "integrity": "sha512-1dKY+86/AIiq1tkKVD3l0WI+Gd3vkknVGAggsFeBkTvbhMQ1OND/LKkYv4JtXPKUJ8bOTCyLiqEg2P6QNdK+Gg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "npm-install-checks": "^6.0.0",
+ "npm-normalize-package-bin": "^3.0.0",
+ "npm-package-arg": "^10.0.0",
+ "semver": "^7.3.5"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-inspect": {
+ "version": "1.13.4",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/on-finished": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
+ "license": "MIT",
+ "dependencies": {
+ "ee-first": "1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/on-headers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
+ "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/package-json-from-dist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
+ "dev": true,
+ "license": "BlueOak-1.0.0"
+ },
+ "node_modules/parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "license": "MIT",
+ "dependencies": {
+ "callsites": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/parse-json": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.0.0",
+ "error-ex": "^1.3.1",
+ "json-parse-even-better-errors": "^2.3.0",
+ "lines-and-columns": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/parse-json/node_modules/json-parse-even-better-errors": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
+ "license": "MIT"
+ },
+ "node_modules/parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+ "license": "MIT"
+ },
+ "node_modules/path-scurry": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
+ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "lru-cache": "^10.2.0",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/path-scurry/node_modules/lru-cache": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/path-to-regexp": {
+ "version": "0.1.12",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
+ "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
+ "license": "MIT"
+ },
+ "node_modules/path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pathe": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz",
+ "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "license": "ISC"
+ },
+ "node_modules/picomatch": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz",
+ "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.6",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "nanoid": "^3.3.11",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/prettier": {
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
+ "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
+ "license": "MIT",
+ "bin": {
+ "prettier": "bin/prettier.cjs"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/prettier/prettier?sponsor=1"
+ }
+ },
+ "node_modules/proc-log": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz",
+ "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/promise-inflight": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
+ "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/promise-retry": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
+ "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "err-code": "^2.0.2",
+ "retry": "^0.12.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/prop-types": {
+ "version": "15.8.1",
+ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
+ "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
+ "license": "MIT",
+ "dependencies": {
+ "loose-envify": "^1.4.0",
+ "object-assign": "^4.1.1",
+ "react-is": "^16.13.1"
+ }
+ },
+ "node_modules/prop-types/node_modules/react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
+ "license": "MIT"
+ },
+ "node_modules/proxy-addr": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
+ "license": "MIT",
+ "dependencies": {
+ "forwarded": "0.2.0",
+ "ipaddr.js": "1.9.1"
+ },
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/qs": {
+ "version": "6.13.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
+ "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "side-channel": "^1.0.6"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/raw-body": {
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
+ "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "3.1.2",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/react": {
+ "version": "19.1.0",
+ "resolved": "https://registry.npmjs.org/react/-/react-19.1.0.tgz",
+ "integrity": "sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-dom": {
+ "version": "19.1.0",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.1.0.tgz",
+ "integrity": "sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==",
+ "license": "MIT",
+ "dependencies": {
+ "scheduler": "^0.26.0"
+ },
+ "peerDependencies": {
+ "react": "^19.1.0"
+ }
+ },
+ "node_modules/react-is": {
+ "version": "19.1.0",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.1.0.tgz",
+ "integrity": "sha512-Oe56aUPnkHyyDxxkvqtd7KkdQP5uIUfHxd5XTb3wE9d/kRnZLmKbDB0GWk919tdQ+mxxPtG6EAs6RMT6i1qtHg==",
+ "license": "MIT"
+ },
+ "node_modules/react-refresh": {
+ "version": "0.14.2",
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz",
+ "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-remove-scroll": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.7.1.tgz",
+ "integrity": "sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==",
+ "license": "MIT",
+ "dependencies": {
+ "react-remove-scroll-bar": "^2.3.7",
+ "react-style-singleton": "^2.2.3",
+ "tslib": "^2.1.0",
+ "use-callback-ref": "^1.3.3",
+ "use-sidecar": "^1.1.3"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/react-remove-scroll-bar": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz",
+ "integrity": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==",
+ "license": "MIT",
+ "dependencies": {
+ "react-style-singleton": "^2.2.2",
+ "tslib": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/react-router": {
+ "version": "7.6.2",
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.6.2.tgz",
+ "integrity": "sha512-U7Nv3y+bMimgWjhlT5CRdzHPu2/KVmqPwKUCChW8en5P3znxUqwlYFlbmyj8Rgp1SF6zs5X4+77kBVknkg6a0w==",
+ "license": "MIT",
+ "dependencies": {
+ "cookie": "^1.0.1",
+ "set-cookie-parser": "^2.6.0"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ },
+ "peerDependencies": {
+ "react": ">=18",
+ "react-dom": ">=18"
+ },
+ "peerDependenciesMeta": {
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/react-router/node_modules/cookie": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz",
+ "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/react-style-singleton": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.3.tgz",
+ "integrity": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==",
+ "license": "MIT",
+ "dependencies": {
+ "get-nonce": "^1.0.0",
+ "tslib": "^2.0.0"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/react-transition-group": {
+ "version": "4.4.5",
+ "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz",
+ "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@babel/runtime": "^7.5.5",
+ "dom-helpers": "^5.0.1",
+ "loose-envify": "^1.4.0",
+ "prop-types": "^15.6.2"
+ },
+ "peerDependencies": {
+ "react": ">=16.6.0",
+ "react-dom": ">=16.6.0"
+ }
+ },
+ "node_modules/readdirp": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
+ "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 14.18.0"
+ },
+ "funding": {
+ "type": "individual",
+ "url": "https://paulmillr.com/funding/"
+ }
+ },
+ "node_modules/resolve": {
+ "version": "1.22.10",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
+ "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
+ "license": "MIT",
+ "dependencies": {
+ "is-core-module": "^2.16.0",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/retry": {
+ "version": "0.12.0",
+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
+ "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/rollup": {
+ "version": "4.44.0",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.44.0.tgz",
+ "integrity": "sha512-qHcdEzLCiktQIfwBq420pn2dP+30uzqYxv9ETm91wdt2R9AFcWfjNAmje4NWlnCIQ5RMTzVf0ZyisOKqHR6RwA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "1.0.8"
+ },
+ "bin": {
+ "rollup": "dist/bin/rollup"
+ },
+ "engines": {
+ "node": ">=18.0.0",
+ "npm": ">=8.0.0"
+ },
+ "optionalDependencies": {
+ "@rollup/rollup-android-arm-eabi": "4.44.0",
+ "@rollup/rollup-android-arm64": "4.44.0",
+ "@rollup/rollup-darwin-arm64": "4.44.0",
+ "@rollup/rollup-darwin-x64": "4.44.0",
+ "@rollup/rollup-freebsd-arm64": "4.44.0",
+ "@rollup/rollup-freebsd-x64": "4.44.0",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.44.0",
+ "@rollup/rollup-linux-arm-musleabihf": "4.44.0",
+ "@rollup/rollup-linux-arm64-gnu": "4.44.0",
+ "@rollup/rollup-linux-arm64-musl": "4.44.0",
+ "@rollup/rollup-linux-loongarch64-gnu": "4.44.0",
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.44.0",
+ "@rollup/rollup-linux-riscv64-gnu": "4.44.0",
+ "@rollup/rollup-linux-riscv64-musl": "4.44.0",
+ "@rollup/rollup-linux-s390x-gnu": "4.44.0",
+ "@rollup/rollup-linux-x64-gnu": "4.44.0",
+ "@rollup/rollup-linux-x64-musl": "4.44.0",
+ "@rollup/rollup-win32-arm64-msvc": "4.44.0",
+ "@rollup/rollup-win32-ia32-msvc": "4.44.0",
+ "@rollup/rollup-win32-x64-msvc": "4.44.0",
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+ "license": "MIT"
+ },
+ "node_modules/scheduler": {
+ "version": "0.26.0",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.26.0.tgz",
+ "integrity": "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==",
+ "license": "MIT"
+ },
+ "node_modules/semver": {
+ "version": "7.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
+ "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/send": {
+ "version": "0.19.0",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
+ "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "http-errors": "2.0.0",
+ "mime": "1.6.0",
+ "ms": "2.1.3",
+ "on-finished": "2.4.1",
+ "range-parser": "~1.2.1",
+ "statuses": "2.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/send/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/send/node_modules/debug/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/send/node_modules/encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/serve-static": {
+ "version": "1.16.2",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
+ "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
+ "license": "MIT",
+ "dependencies": {
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "0.19.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/set-cookie-parser": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz",
+ "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==",
+ "license": "MIT"
+ },
+ "node_modules/setprototypeof": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
+ "license": "ISC"
+ },
+ "node_modules/shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/side-channel": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/signal-exit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-support": {
+ "version": "0.5.21",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
+ "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
+ "license": "MIT",
+ "dependencies": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ }
+ },
+ "node_modules/spdx-correct": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
+ "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "node_modules/spdx-exceptions": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz",
+ "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==",
+ "dev": true,
+ "license": "CC-BY-3.0"
+ },
+ "node_modules/spdx-expression-parse": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
+ "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "spdx-exceptions": "^2.1.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "node_modules/spdx-license-ids": {
+ "version": "3.0.21",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz",
+ "integrity": "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==",
+ "dev": true,
+ "license": "CC0-1.0"
+ },
+ "node_modules/statuses": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
+ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/stream-slice": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/stream-slice/-/stream-slice-0.1.2.tgz",
+ "integrity": "sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==",
+ "license": "MIT"
+ },
+ "node_modules/string-width": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eastasianwidth": "^0.2.0",
+ "emoji-regex": "^9.2.2",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/string-width-cjs": {
+ "name": "string-width",
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width-cjs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width-cjs/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/string-width-cjs/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-ansi": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
+ "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/strip-ansi-cjs": {
+ "name": "strip-ansi",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/stylis": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz",
+ "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==",
+ "license": "MIT"
+ },
+ "node_modules/supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/tailwind-merge": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.3.1.tgz",
+ "integrity": "sha512-gBXpgUm/3rp1lMZZrM/w7D8GKqshif0zAymAhbCyIt8KMe+0v9DQ7cdYLR4FHH/cKpdTXb+A/tKKU3eolfsI+g==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/dcastil"
+ }
+ },
+ "node_modules/tailwindcss": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.10.tgz",
+ "integrity": "sha512-P3nr6WkvKV/ONsTzj6Gb57sWPMX29EPNPopo7+FcpkQaNsrNpZ1pv8QmrYI2RqEKD7mlGqLnGovlcYnBK0IqUA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/tapable": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.2.tgz",
+ "integrity": "sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/tar": {
+ "version": "7.4.3",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-7.4.3.tgz",
+ "integrity": "sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "@isaacs/fs-minipass": "^4.0.0",
+ "chownr": "^3.0.0",
+ "minipass": "^7.1.2",
+ "minizlib": "^3.0.1",
+ "mkdirp": "^3.0.1",
+ "yallist": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/tar/node_modules/yallist": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz",
+ "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/tinyglobby": {
+ "version": "0.2.14",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz",
+ "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fdir": "^6.4.4",
+ "picomatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
+ "node_modules/toidentifier": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
+ "node_modules/tsconfck": {
+ "version": "3.1.6",
+ "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-3.1.6.tgz",
+ "integrity": "sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "tsconfck": "bin/tsconfck.js"
+ },
+ "engines": {
+ "node": "^18 || >=20"
+ },
+ "peerDependencies": {
+ "typescript": "^5.0.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/tslib": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
+ "license": "0BSD"
+ },
+ "node_modules/tw-animate-css": {
+ "version": "1.3.4",
+ "resolved": "https://registry.npmjs.org/tw-animate-css/-/tw-animate-css-1.3.4.tgz",
+ "integrity": "sha512-dd1Ht6/YQHcNbq0znIT6dG8uhO7Ce+VIIhZUhjsryXsMPJQz3bZg7Q2eNzLwipb25bRZslGb2myio5mScd1TFg==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/Wombosvideo"
+ }
+ },
+ "node_modules/type-is": {
+ "version": "1.6.18",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+ "license": "MIT",
+ "dependencies": {
+ "media-typer": "0.3.0",
+ "mime-types": "~2.1.24"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/typescript": {
+ "version": "5.8.3",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
+ "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=14.17"
+ }
+ },
+ "node_modules/undici": {
+ "version": "6.21.3",
+ "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.3.tgz",
+ "integrity": "sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.17"
+ }
+ },
+ "node_modules/undici-types": {
+ "version": "6.21.0",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/update-browserslist-db": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
+ "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "escalade": "^3.2.0",
+ "picocolors": "^1.1.1"
+ },
+ "bin": {
+ "update-browserslist-db": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.0"
+ }
+ },
+ "node_modules/use-callback-ref": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.3.tgz",
+ "integrity": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.0.0"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/use-sidecar": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.3.tgz",
+ "integrity": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==",
+ "license": "MIT",
+ "dependencies": {
+ "detect-node-es": "^1.1.0",
+ "tslib": "^2.0.0"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4.0"
+ }
+ },
+ "node_modules/valibot": {
+ "version": "0.41.0",
+ "resolved": "https://registry.npmjs.org/valibot/-/valibot-0.41.0.tgz",
+ "integrity": "sha512-igDBb8CTYr8YTQlOKgaN9nSS0Be7z+WRuaeYqGf3Cjz3aKmSnqEmYnkfVjzIuumGqfHpa3fLIvMEAfhrpqN8ng==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "typescript": ">=5"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/validate-npm-package-license": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+ "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "spdx-correct": "^3.0.0",
+ "spdx-expression-parse": "^3.0.0"
+ }
+ },
+ "node_modules/validate-npm-package-name": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz",
+ "integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/vary": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/vite": {
+ "version": "6.3.5",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz",
+ "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "esbuild": "^0.25.0",
+ "fdir": "^6.4.4",
+ "picomatch": "^4.0.2",
+ "postcss": "^8.5.3",
+ "rollup": "^4.34.9",
+ "tinyglobby": "^0.2.13"
+ },
+ "bin": {
+ "vite": "bin/vite.js"
+ },
+ "engines": {
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/vitejs/vite?sponsor=1"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.3"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/vite-node": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.2.4.tgz",
+ "integrity": "sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "cac": "^6.7.14",
+ "debug": "^4.4.1",
+ "es-module-lexer": "^1.7.0",
+ "pathe": "^2.0.3",
+ "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0"
+ },
+ "bin": {
+ "vite-node": "vite-node.mjs"
+ },
+ "engines": {
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/vitest"
+ }
+ },
+ "node_modules/vite-node/node_modules/pathe": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz",
+ "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/vite-tsconfig-paths": {
+ "version": "5.1.4",
+ "resolved": "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-5.1.4.tgz",
+ "integrity": "sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^4.1.1",
+ "globrex": "^0.1.2",
+ "tsconfck": "^3.0.3"
+ },
+ "peerDependencies": {
+ "vite": "*"
+ },
+ "peerDependenciesMeta": {
+ "vite": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/which": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz",
+ "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/which.js"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/wrap-ansi": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^6.1.0",
+ "string-width": "^5.0.1",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi-cjs": {
+ "name": "wrap-ansi",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/yaml": {
+ "version": "1.10.2",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
+ "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
+ "license": "ISC",
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/zod": {
+ "version": "3.25.67",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.67.tgz",
+ "integrity": "sha512-idA2YXwpCdqUSKRCACDE6ItZD9TZzy3OZMtpfLoh6oPR47lipysRrJfjzMqFxQ3uJuUPyUeWe1r9vLH33xO/Qw==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/colinhacks"
+ }
+ },
+ "node_modules/zustand": {
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.5.tgz",
+ "integrity": "sha512-mILtRfKW9xM47hqxGIxCv12gXusoY/xTSHBYApXozR0HmQv299whhBeeAcRy+KrPPybzosvJBCOmVjq6x12fCg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.20.0"
+ },
+ "peerDependencies": {
+ "@types/react": ">=18.0.0",
+ "immer": ">=9.0.6",
+ "react": ">=18.0.0",
+ "use-sync-external-store": ">=1.2.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "immer": {
+ "optional": true
+ },
+ "react": {
+ "optional": true
+ },
+ "use-sync-external-store": {
+ "optional": true
+ }
+ }
+ }
+ }
+}
diff --git a/packages/react-router-v7-example/package.json b/packages/react-router-v7-example/package.json
new file mode 100644
index 000000000..6f38580c8
--- /dev/null
+++ b/packages/react-router-v7-example/package.json
@@ -0,0 +1,67 @@
+{
+ "name": "react-router-v7-example",
+ "private": true,
+ "type": "module",
+ "scripts": {
+ "build": "react-router build",
+ "dev": "react-router dev",
+ "start": "react-router-serve ./build/server/index.js",
+ "typecheck": "react-router typegen && tsc"
+ },
+ "dependencies": {
+ "@emotion/react": "^11.14.0",
+ "@emotion/styled": "^11.14.0",
+ "@mui/icons-material": "^7.1.2",
+ "@mui/material": "^7.1.2",
+ "@radix-ui/react-dialog": "^1.1.14",
+ "@radix-ui/react-dropdown-menu": "^2.1.15",
+ "@radix-ui/react-icons": "^1.3.2",
+ "@radix-ui/react-label": "^2.1.7",
+ "@radix-ui/react-popover": "^1.1.14",
+ "@radix-ui/react-separator": "^1.1.7",
+ "@radix-ui/react-slider": "^1.3.5",
+ "@radix-ui/react-slot": "^1.2.3",
+ "@radix-ui/react-switch": "^1.2.5",
+ "@radix-ui/react-toggle": "^1.1.9",
+ "@radix-ui/react-toggle-group": "^1.1.10",
+ "@radix-ui/react-tooltip": "^1.2.7",
+ "@react-router/node": "^7.5.3",
+ "@react-router/serve": "^7.5.3",
+ "@usewaypoint/block-avatar": "^0.0.3",
+ "@usewaypoint/block-button": "^0.0.3",
+ "@usewaypoint/block-columns-container": "^0.0.3",
+ "@usewaypoint/block-container": "^0.0.2",
+ "@usewaypoint/block-divider": "^0.0.4",
+ "@usewaypoint/block-heading": "^0.0.3",
+ "@usewaypoint/block-html": "^0.0.3",
+ "@usewaypoint/block-image": "^0.0.5",
+ "@usewaypoint/block-spacer": "^0.0.3",
+ "@usewaypoint/block-text": "^0.0.6",
+ "@usewaypoint/document-core": "^0.0.6",
+ "@usewaypoint/email-builder": "^0.0.8",
+ "class-variance-authority": "^0.7.1",
+ "clsx": "^2.1.1",
+ "cmdk": "^1.1.1",
+ "isbot": "^5.1.27",
+ "lucide-react": "^0.515.0",
+ "prettier": "^3.5.3",
+ "react": "^19.1.0",
+ "react-dom": "^19.1.0",
+ "react-router": "^7.5.3",
+ "tailwind-merge": "^3.3.1",
+ "zod": "^3.25.67",
+ "zustand": "^5.0.5"
+ },
+ "devDependencies": {
+ "@react-router/dev": "^7.5.3",
+ "@tailwindcss/vite": "^4.1.4",
+ "@types/node": "^20",
+ "@types/react": "^19.1.2",
+ "@types/react-dom": "^19.1.2",
+ "tailwindcss": "^4.1.4",
+ "tw-animate-css": "^1.3.4",
+ "typescript": "^5.8.3",
+ "vite": "^6.3.3",
+ "vite-tsconfig-paths": "^5.1.4"
+ }
+}
diff --git a/packages/react-router-v7-example/public/favicon.ico b/packages/react-router-v7-example/public/favicon.ico
new file mode 100644
index 000000000..276b22c8c
Binary files /dev/null and b/packages/react-router-v7-example/public/favicon.ico differ
diff --git a/packages/react-router-v7-example/react-router.config.ts b/packages/react-router-v7-example/react-router.config.ts
new file mode 100644
index 000000000..4f9a6ed52
--- /dev/null
+++ b/packages/react-router-v7-example/react-router.config.ts
@@ -0,0 +1,7 @@
+import type { Config } from '@react-router/dev/config';
+
+export default {
+ // Config options...
+ // Server-side render by default, to enable SPA mode set this to `false`
+ ssr: true,
+} satisfies Config;
diff --git a/packages/react-router-v7-example/tsconfig.json b/packages/react-router-v7-example/tsconfig.json
new file mode 100644
index 000000000..a6b90b7c8
--- /dev/null
+++ b/packages/react-router-v7-example/tsconfig.json
@@ -0,0 +1,22 @@
+{
+ "include": ["**/*", "**/.server/**/*", "**/.client/**/*", ".react-router/types/**/*"],
+ "compilerOptions": {
+ "lib": ["DOM", "DOM.Iterable", "ES2022"],
+ "types": ["node", "vite/client"],
+ "target": "ES2022",
+ "module": "ES2022",
+ "moduleResolution": "bundler",
+ "jsx": "react-jsx",
+ "rootDirs": [".", "./.react-router/types"],
+ "baseUrl": ".",
+ "paths": {
+ "~/*": ["./app/*"]
+ },
+ "esModuleInterop": true,
+ "verbatimModuleSyntax": true,
+ "noEmit": true,
+ "resolveJsonModule": true,
+ "skipLibCheck": true,
+ "strict": true
+ }
+}
diff --git a/packages/react-router-v7-example/vite.config.ts b/packages/react-router-v7-example/vite.config.ts
new file mode 100644
index 000000000..82b47d93d
--- /dev/null
+++ b/packages/react-router-v7-example/vite.config.ts
@@ -0,0 +1,8 @@
+import { reactRouter } from '@react-router/dev/vite';
+import tailwindcss from '@tailwindcss/vite';
+import { defineConfig } from 'vite';
+import tsconfigPaths from 'vite-tsconfig-paths';
+
+export default defineConfig({
+ plugins: [tailwindcss(), reactRouter(), tsconfigPaths()],
+});