@me1a/ui 2.0.10 → 2.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +41 -92
- package/dist/index.d.ts +41 -92
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -6,10 +6,11 @@ import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
|
6
6
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
7
7
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
8
8
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
9
|
+
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
10
|
+
import { Slot } from '@radix-ui/react-slot';
|
|
9
11
|
import * as react_hook_form from 'react-hook-form';
|
|
10
|
-
import {
|
|
12
|
+
import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
11
13
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
12
|
-
import { Slot } from '@radix-ui/react-slot';
|
|
13
14
|
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
|
14
15
|
import * as vaul from 'vaul';
|
|
15
16
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
@@ -530,6 +531,39 @@ interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<
|
|
|
530
531
|
*/
|
|
531
532
|
declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
532
533
|
|
|
534
|
+
/**
|
|
535
|
+
* Form component that provides form context to all child components.
|
|
536
|
+
* Built on top of react-hook-form's useFormContext.
|
|
537
|
+
*
|
|
538
|
+
* @url https://segiimelnykov.github.io/ui/?path=/docs-atoms-form--docs
|
|
539
|
+
*
|
|
540
|
+
* @example
|
|
541
|
+
* ```tsx
|
|
542
|
+
* <Form>
|
|
543
|
+
* <RHFTextField name="name" label="Name" />
|
|
544
|
+
* <RHFTextField name="email" label="Email" />
|
|
545
|
+
* </Form>
|
|
546
|
+
*/
|
|
547
|
+
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
|
|
548
|
+
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
|
|
549
|
+
declare const useFormField: () => {
|
|
550
|
+
invalid: boolean;
|
|
551
|
+
isDirty: boolean;
|
|
552
|
+
isTouched: boolean;
|
|
553
|
+
isValidating: boolean;
|
|
554
|
+
error?: react_hook_form.FieldError;
|
|
555
|
+
id: string;
|
|
556
|
+
name: string;
|
|
557
|
+
formItemId: string;
|
|
558
|
+
formDescriptionId: string;
|
|
559
|
+
formMessageId: string;
|
|
560
|
+
};
|
|
561
|
+
declare const FormItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
562
|
+
declare const FormLabel: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
563
|
+
declare const FormControl: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_slot.SlotProps & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
564
|
+
declare const FormDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
565
|
+
declare const FormMessage: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
566
|
+
|
|
533
567
|
/**
|
|
534
568
|
* Props interface for the Form component.
|
|
535
569
|
* Extends react-hook-form's FormProvider props.
|
|
@@ -596,82 +630,6 @@ type FormFieldContextValue<TFieldValues extends FieldValues = FieldValues, TName
|
|
|
596
630
|
type FormItemContextValue = {
|
|
597
631
|
id: string;
|
|
598
632
|
};
|
|
599
|
-
/**
|
|
600
|
-
* Props interface for the FormProvider component.
|
|
601
|
-
*/
|
|
602
|
-
interface FormProviderProps {
|
|
603
|
-
/**
|
|
604
|
-
* The form children
|
|
605
|
-
*/
|
|
606
|
-
children: React$1.ReactNode;
|
|
607
|
-
/**
|
|
608
|
-
* The form methods from react-hook-form
|
|
609
|
-
*/
|
|
610
|
-
methods: UseFormReturn<any>;
|
|
611
|
-
/**
|
|
612
|
-
* Optional form submission handler
|
|
613
|
-
*/
|
|
614
|
-
onSubmit?: VoidFunction;
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
/**
|
|
618
|
-
* Form component that provides form context to all child components.
|
|
619
|
-
* Built on top of react-hook-form's useFormContext.
|
|
620
|
-
*
|
|
621
|
-
* @url https://segiimelnykov.github.io/ui/?path=/docs-atoms-form--docs
|
|
622
|
-
*
|
|
623
|
-
* @example
|
|
624
|
-
* ```tsx
|
|
625
|
-
* <Form>
|
|
626
|
-
* <FormField>
|
|
627
|
-
* <FormItem>
|
|
628
|
-
* <FormLabel>Name</FormLabel>
|
|
629
|
-
* </FormItem>
|
|
630
|
-
* </FormField>
|
|
631
|
-
* </Form>
|
|
632
|
-
*/
|
|
633
|
-
declare const Form: ({ children, methods, onSubmit }: FormProviderProps) => react_jsx_runtime.JSX.Element;
|
|
634
|
-
/**
|
|
635
|
-
* FormField component that wraps react-hook-form's Controller component.
|
|
636
|
-
* Provides form field context to child components.
|
|
637
|
-
*/
|
|
638
|
-
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: FormFieldProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
|
|
639
|
-
/**
|
|
640
|
-
* Hook to access form field context and state.
|
|
641
|
-
* Must be used within a FormField component.
|
|
642
|
-
*/
|
|
643
|
-
declare const useFormField: () => {
|
|
644
|
-
invalid: boolean;
|
|
645
|
-
isDirty: boolean;
|
|
646
|
-
isTouched: boolean;
|
|
647
|
-
isValidating: boolean;
|
|
648
|
-
error?: react_hook_form.FieldError;
|
|
649
|
-
id: string;
|
|
650
|
-
name: string;
|
|
651
|
-
formItemId: string;
|
|
652
|
-
formDescriptionId: string;
|
|
653
|
-
formMessageId: string;
|
|
654
|
-
};
|
|
655
|
-
/**
|
|
656
|
-
* FormItem component that provides spacing and layout for form fields.
|
|
657
|
-
*/
|
|
658
|
-
declare const FormItem: React$1.ForwardRefExoticComponent<FormItemProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
659
|
-
/**
|
|
660
|
-
* FormLabel component that provides accessible labels for form fields.
|
|
661
|
-
*/
|
|
662
|
-
declare const FormLabel: React$1.ForwardRefExoticComponent<FormLabelProps & React$1.RefAttributes<HTMLLabelElement>>;
|
|
663
|
-
/**
|
|
664
|
-
* FormControl component that provides accessible form controls.
|
|
665
|
-
*/
|
|
666
|
-
declare const FormControl: React$1.ForwardRefExoticComponent<FormControlProps & React$1.RefAttributes<HTMLElement>>;
|
|
667
|
-
/**
|
|
668
|
-
* FormDescription component that provides additional context for form fields.
|
|
669
|
-
*/
|
|
670
|
-
declare const FormDescription: React$1.ForwardRefExoticComponent<FormDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
671
|
-
/**
|
|
672
|
-
* FormMessage component that displays error messages for form fields.
|
|
673
|
-
*/
|
|
674
|
-
declare const FormMessage: React$1.ForwardRefExoticComponent<FormMessageProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
675
633
|
|
|
676
634
|
declare const typographyVariants: (props?: ({
|
|
677
635
|
variant?: "list" | "small" | "blockquote" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "muted" | "large" | "lead" | null | undefined;
|
|
@@ -934,21 +892,12 @@ interface RHFTextFieldProps<TFieldValues extends FieldValues = FieldValues, TNam
|
|
|
934
892
|
*
|
|
935
893
|
* @url https://segiimelnykov.github.io/ui/?path=/docs/molecules-rhf-text-field--docs
|
|
936
894
|
*
|
|
937
|
-
* @example
|
|
895
|
+
* * @example
|
|
938
896
|
* ```tsx
|
|
939
|
-
* <
|
|
940
|
-
* name="
|
|
941
|
-
* label="Email"
|
|
942
|
-
*
|
|
943
|
-
* required
|
|
944
|
-
* rules={{
|
|
945
|
-
* required: "Email is required",
|
|
946
|
-
* pattern: {
|
|
947
|
-
* value: /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i,
|
|
948
|
-
* message: "Invalid email address"
|
|
949
|
-
* }
|
|
950
|
-
* }}
|
|
951
|
-
* />
|
|
897
|
+
* <Form>
|
|
898
|
+
* <RHFTextField name="name" label="Name" />
|
|
899
|
+
* <RHFTextField name="email" label="Email" />
|
|
900
|
+
* </Form>
|
|
952
901
|
* ```
|
|
953
902
|
*/
|
|
954
903
|
declare function RHFTextField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ name, label, description, className, type, warningText, required, disabled, readOnly, placeholder, "aria-label": ariaLabel, "aria-describedby": ariaDescribedby, onBlur, ...other }: RHFTextFieldProps<TFieldValues, TName>): react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -6,10 +6,11 @@ import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
|
6
6
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
7
7
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
8
8
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
9
|
+
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
10
|
+
import { Slot } from '@radix-ui/react-slot';
|
|
9
11
|
import * as react_hook_form from 'react-hook-form';
|
|
10
|
-
import {
|
|
12
|
+
import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
11
13
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
12
|
-
import { Slot } from '@radix-ui/react-slot';
|
|
13
14
|
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
|
14
15
|
import * as vaul from 'vaul';
|
|
15
16
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
@@ -530,6 +531,39 @@ interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<
|
|
|
530
531
|
*/
|
|
531
532
|
declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
532
533
|
|
|
534
|
+
/**
|
|
535
|
+
* Form component that provides form context to all child components.
|
|
536
|
+
* Built on top of react-hook-form's useFormContext.
|
|
537
|
+
*
|
|
538
|
+
* @url https://segiimelnykov.github.io/ui/?path=/docs-atoms-form--docs
|
|
539
|
+
*
|
|
540
|
+
* @example
|
|
541
|
+
* ```tsx
|
|
542
|
+
* <Form>
|
|
543
|
+
* <RHFTextField name="name" label="Name" />
|
|
544
|
+
* <RHFTextField name="email" label="Email" />
|
|
545
|
+
* </Form>
|
|
546
|
+
*/
|
|
547
|
+
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
|
|
548
|
+
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
|
|
549
|
+
declare const useFormField: () => {
|
|
550
|
+
invalid: boolean;
|
|
551
|
+
isDirty: boolean;
|
|
552
|
+
isTouched: boolean;
|
|
553
|
+
isValidating: boolean;
|
|
554
|
+
error?: react_hook_form.FieldError;
|
|
555
|
+
id: string;
|
|
556
|
+
name: string;
|
|
557
|
+
formItemId: string;
|
|
558
|
+
formDescriptionId: string;
|
|
559
|
+
formMessageId: string;
|
|
560
|
+
};
|
|
561
|
+
declare const FormItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
562
|
+
declare const FormLabel: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
563
|
+
declare const FormControl: React$1.ForwardRefExoticComponent<Omit<_radix_ui_react_slot.SlotProps & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
564
|
+
declare const FormDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
565
|
+
declare const FormMessage: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
566
|
+
|
|
533
567
|
/**
|
|
534
568
|
* Props interface for the Form component.
|
|
535
569
|
* Extends react-hook-form's FormProvider props.
|
|
@@ -596,82 +630,6 @@ type FormFieldContextValue<TFieldValues extends FieldValues = FieldValues, TName
|
|
|
596
630
|
type FormItemContextValue = {
|
|
597
631
|
id: string;
|
|
598
632
|
};
|
|
599
|
-
/**
|
|
600
|
-
* Props interface for the FormProvider component.
|
|
601
|
-
*/
|
|
602
|
-
interface FormProviderProps {
|
|
603
|
-
/**
|
|
604
|
-
* The form children
|
|
605
|
-
*/
|
|
606
|
-
children: React$1.ReactNode;
|
|
607
|
-
/**
|
|
608
|
-
* The form methods from react-hook-form
|
|
609
|
-
*/
|
|
610
|
-
methods: UseFormReturn<any>;
|
|
611
|
-
/**
|
|
612
|
-
* Optional form submission handler
|
|
613
|
-
*/
|
|
614
|
-
onSubmit?: VoidFunction;
|
|
615
|
-
}
|
|
616
|
-
|
|
617
|
-
/**
|
|
618
|
-
* Form component that provides form context to all child components.
|
|
619
|
-
* Built on top of react-hook-form's useFormContext.
|
|
620
|
-
*
|
|
621
|
-
* @url https://segiimelnykov.github.io/ui/?path=/docs-atoms-form--docs
|
|
622
|
-
*
|
|
623
|
-
* @example
|
|
624
|
-
* ```tsx
|
|
625
|
-
* <Form>
|
|
626
|
-
* <FormField>
|
|
627
|
-
* <FormItem>
|
|
628
|
-
* <FormLabel>Name</FormLabel>
|
|
629
|
-
* </FormItem>
|
|
630
|
-
* </FormField>
|
|
631
|
-
* </Form>
|
|
632
|
-
*/
|
|
633
|
-
declare const Form: ({ children, methods, onSubmit }: FormProviderProps) => react_jsx_runtime.JSX.Element;
|
|
634
|
-
/**
|
|
635
|
-
* FormField component that wraps react-hook-form's Controller component.
|
|
636
|
-
* Provides form field context to child components.
|
|
637
|
-
*/
|
|
638
|
-
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: FormFieldProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
|
|
639
|
-
/**
|
|
640
|
-
* Hook to access form field context and state.
|
|
641
|
-
* Must be used within a FormField component.
|
|
642
|
-
*/
|
|
643
|
-
declare const useFormField: () => {
|
|
644
|
-
invalid: boolean;
|
|
645
|
-
isDirty: boolean;
|
|
646
|
-
isTouched: boolean;
|
|
647
|
-
isValidating: boolean;
|
|
648
|
-
error?: react_hook_form.FieldError;
|
|
649
|
-
id: string;
|
|
650
|
-
name: string;
|
|
651
|
-
formItemId: string;
|
|
652
|
-
formDescriptionId: string;
|
|
653
|
-
formMessageId: string;
|
|
654
|
-
};
|
|
655
|
-
/**
|
|
656
|
-
* FormItem component that provides spacing and layout for form fields.
|
|
657
|
-
*/
|
|
658
|
-
declare const FormItem: React$1.ForwardRefExoticComponent<FormItemProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
659
|
-
/**
|
|
660
|
-
* FormLabel component that provides accessible labels for form fields.
|
|
661
|
-
*/
|
|
662
|
-
declare const FormLabel: React$1.ForwardRefExoticComponent<FormLabelProps & React$1.RefAttributes<HTMLLabelElement>>;
|
|
663
|
-
/**
|
|
664
|
-
* FormControl component that provides accessible form controls.
|
|
665
|
-
*/
|
|
666
|
-
declare const FormControl: React$1.ForwardRefExoticComponent<FormControlProps & React$1.RefAttributes<HTMLElement>>;
|
|
667
|
-
/**
|
|
668
|
-
* FormDescription component that provides additional context for form fields.
|
|
669
|
-
*/
|
|
670
|
-
declare const FormDescription: React$1.ForwardRefExoticComponent<FormDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
671
|
-
/**
|
|
672
|
-
* FormMessage component that displays error messages for form fields.
|
|
673
|
-
*/
|
|
674
|
-
declare const FormMessage: React$1.ForwardRefExoticComponent<FormMessageProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
675
633
|
|
|
676
634
|
declare const typographyVariants: (props?: ({
|
|
677
635
|
variant?: "list" | "small" | "blockquote" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "muted" | "large" | "lead" | null | undefined;
|
|
@@ -934,21 +892,12 @@ interface RHFTextFieldProps<TFieldValues extends FieldValues = FieldValues, TNam
|
|
|
934
892
|
*
|
|
935
893
|
* @url https://segiimelnykov.github.io/ui/?path=/docs/molecules-rhf-text-field--docs
|
|
936
894
|
*
|
|
937
|
-
* @example
|
|
895
|
+
* * @example
|
|
938
896
|
* ```tsx
|
|
939
|
-
* <
|
|
940
|
-
* name="
|
|
941
|
-
* label="Email"
|
|
942
|
-
*
|
|
943
|
-
* required
|
|
944
|
-
* rules={{
|
|
945
|
-
* required: "Email is required",
|
|
946
|
-
* pattern: {
|
|
947
|
-
* value: /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}$/i,
|
|
948
|
-
* message: "Invalid email address"
|
|
949
|
-
* }
|
|
950
|
-
* }}
|
|
951
|
-
* />
|
|
897
|
+
* <Form>
|
|
898
|
+
* <RHFTextField name="name" label="Name" />
|
|
899
|
+
* <RHFTextField name="email" label="Email" />
|
|
900
|
+
* </Form>
|
|
952
901
|
* ```
|
|
953
902
|
*/
|
|
954
903
|
declare function RHFTextField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ name, label, description, className, type, warningText, required, disabled, readOnly, placeholder, "aria-label": ariaLabel, "aria-describedby": ariaDescribedby, onBlur, ...other }: RHFTextFieldProps<TFieldValues, TName>): react_jsx_runtime.JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
'use strict';var p=require('react'),reactSlot=require('@radix-ui/react-slot'),classVarianceAuthority=require('class-variance-authority'),clsx=require('clsx'),tailwindMerge=require('tailwind-merge'),lucideReact=require('lucide-react'),jsxRuntime=require('react/jsx-runtime'),ue=require('@radix-ui/react-label'),R=require('@radix-ui/react-dialog'),be=require('@radix-ui/react-separator'),k=require('@radix-ui/react-avatar'),F=require('@radix-ui/react-tooltip'),reactHookForm=require('react-hook-form'),v=require('@radix-ui/react-navigation-menu'),vaul=require('vaul'),m=require('@radix-ui/react-dropdown-menu');function _interopNamespace(e){if(e&&e.__esModule)return e;var n=Object.create(null);if(e){Object.keys(e).forEach(function(k){if(k!=='default'){var d=Object.getOwnPropertyDescriptor(e,k);Object.defineProperty(n,k,d.get?d:{enumerable:true,get:function(){return e[k]}});}})}n.default=e;return Object.freeze(n)}var p__namespace=/*#__PURE__*/_interopNamespace(p);var ue__namespace=/*#__PURE__*/_interopNamespace(ue);var R__namespace=/*#__PURE__*/_interopNamespace(R);var be__namespace=/*#__PURE__*/_interopNamespace(be);var k__namespace=/*#__PURE__*/_interopNamespace(k);var F__namespace=/*#__PURE__*/_interopNamespace(F);var v__namespace=/*#__PURE__*/_interopNamespace(v);var m__namespace=/*#__PURE__*/_interopNamespace(m);var St=Object.defineProperty,Tt=Object.defineProperties;var Ft=Object.getOwnPropertyDescriptors;var ae=Object.getOwnPropertySymbols;var Le=Object.prototype.hasOwnProperty,Ee=Object.prototype.propertyIsEnumerable;var Fe=(t,e,a)=>e in t?St(t,e,{enumerable:true,configurable:true,writable:true,value:a}):t[e]=a,i=(t,e)=>{for(var a in e||(e={}))Le.call(e,a)&&Fe(t,a,e[a]);if(ae)for(var a of ae(e))Ee.call(e,a)&&Fe(t,a,e[a]);return t},f=(t,e)=>Tt(t,Ft(e));var s=(t,e)=>{var a={};for(var r in t)Le.call(t,r)&&e.indexOf(r)<0&&(a[r]=t[r]);if(t!=null&&ae)for(var r of ae(t))e.indexOf(r)<0&&Ee.call(t,r)&&(a[r]=t[r]);return a};function n(...t){return tailwindMerge.twMerge(clsx.clsx(t))}var Ie=classVarianceAuthority.cva("inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",{variants:{variant:{default:"bg-primary text-primary-foreground shadow hover:bg-primary/90",destructive:"bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",outline:"border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",secondary:"bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-9 px-4 py-2",sm:"h-8 rounded-md px-3 text-xs",lg:"h-10 rounded-md px-8",icon:"h-9 w-9"}},defaultVariants:{variant:"default",size:"default"}}),fe=p__namespace.forwardRef((D,w)=>{var A=D,{className:t,variant:e,size:a,asChild:r=false,startIcon:o,endIcon:d,loading:l=false,disabled:u,children:g,type:b="button","aria-label":y}=A,h=s(A,["className","variant","size","asChild","startIcon","endIcon","loading","disabled","children","type","aria-label"]);let S=r?reactSlot.Slot:"button",C=u||l,P=y||(typeof g=="string"?g:void 0),E=T=>{(T.key==="Enter"||T.key===" ")&&(T.preventDefault(),!C&&h.onClick&&h.onClick(T));};return r?jsxRuntime.jsx(S,f(i({className:n(Ie({variant:e,size:a,className:t})),ref:w,disabled:C,type:b,"aria-label":P,"aria-disabled":C},h),{children:g})):jsxRuntime.jsxs(S,f(i({className:n(Ie({variant:e,size:a,className:t})),ref:w,disabled:C,type:b,"aria-label":P,"aria-disabled":C,onKeyDown:E},h),{children:[l&&jsxRuntime.jsx(lucideReact.Loader2,{className:"mr-2 h-4 w-4 animate-spin",role:"status","aria-label":"Loading","aria-hidden":"true"}),!l&&o&&jsxRuntime.jsx("span",{className:"mr-2","aria-hidden":"true",children:o}),g,!l&&d&&jsxRuntime.jsx("span",{className:"ml-2","aria-hidden":"true",children:d})]}))});fe.displayName="Button";var G=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,type:e}=d,a=s(d,["className","type"]);return jsxRuntime.jsx("input",i({type:e,className:n("flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",t),ref:r},a))});G.displayName="Input";var Bt=classVarianceAuthority.cva("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"),U=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(ue__namespace.Root,i({ref:a,className:n(Bt(),t)},e))});U.displayName=ue__namespace.Root.displayName;var Gt=classVarianceAuthority.cva("w-full",{variants:{variant:{default:"",error:"border-destructive focus-visible:ring-destructive"},size:{default:"h-10",sm:"h-8 text-xs",lg:"h-12 text-base"}},defaultVariants:{variant:"default",size:"default"}}),$t=p__namespace.forwardRef((w,h)=>{var D=w,{className:t,variant:e,size:a,startIcon:r,endIcon:o,loading:d=false,error:l,label:u,helperText:g,disabled:b}=D,y=s(D,["className","variant","size","startIcon","endIcon","loading","error","label","helperText","disabled"]);let A=p__namespace.useId();return jsxRuntime.jsxs("div",{className:"w-full space-y-2",children:[u&&jsxRuntime.jsx(U,{htmlFor:A,children:u}),jsxRuntime.jsxs("div",{className:"relative",children:[r&&jsxRuntime.jsx("div",{className:"absolute left-3 top-1/2 -translate-y-1/2 text-muted-foreground",children:r}),jsxRuntime.jsx(G,i({id:A,className:n(Gt({variant:l?"error":e,size:a,className:t}),r&&"pl-9",(o||d)&&"pr-9"),ref:h,disabled:b||d},y)),(o||d)&&jsxRuntime.jsx("div",{className:"absolute right-3 top-1/2 -translate-y-1/2 text-muted-foreground",children:d?jsxRuntime.jsx(lucideReact.Loader2,{className:"h-4 w-4 animate-spin"}):o})]}),(l||g)&&jsxRuntime.jsx("p",{className:n("text-sm",l?"text-destructive":"text-muted-foreground"),children:l||g})]})});$t.displayName="TextField";var Kt=p__namespace.forwardRef((l,d)=>{var u=l,{className:t,maxWidth:e="lg",disablePadding:a=false,fluid:r=false}=u,o=s(u,["className","maxWidth","disablePadding","fluid"]);return jsxRuntime.jsx("div",i({ref:d,className:n("mx-auto w-full",!a&&"px-4 sm:px-6 lg:px-8",!r&&{"max-w-screen-sm":e==="sm","max-w-screen-md":e==="md","max-w-screen-lg":e==="lg","max-w-screen-xl":e==="xl","max-w-full":e==="full"},t)},o))});Kt.displayName="Container";var Ut=p__namespace.forwardRef((u,l)=>{var g=u,{as:t="div",className:e,width:a,height:r,style:o}=g,d=s(g,["as","className","width","height","style"]);let b=i({width:typeof a=="number"?`${a}px`:a,height:typeof r=="number"?`${r}px`:r},o);return jsxRuntime.jsx(t,i({ref:l,className:n(e),style:b},d))});Ut.displayName="Box";var Yt=p__namespace.forwardRef((w,h)=>{var D=w,{className:t,direction:e="vertical",spacing:a="md",wrap:r=false,center:o=false,justify:d,align:l,width:u,height:g,style:b}=D,y=s(D,["className","direction","spacing","wrap","center","justify","align","width","height","style"]);return jsxRuntime.jsx("div",i({ref:h,className:n("flex",e==="vertical"?"flex-col":"flex-row",{"gap-0":a==="none","gap-1":a==="xs","gap-2":a==="sm","gap-4":a==="md","gap-6":a==="lg","gap-8":a==="xl"},r&&"flex-wrap",o&&"items-center justify-center",d&&{"justify-start":d==="start","justify-end":d==="end","justify-center":d==="center","justify-between":d==="between","justify-around":d==="around","justify-evenly":d==="evenly"},l&&{"items-start":l==="start","items-end":l==="end","items-center":l==="center","items-stretch":l==="stretch","items-baseline":l==="baseline"},t),style:i({width:u,height:g},b)},y))});Yt.displayName="Stack";var wr=R__namespace.Root,Pr=R__namespace.Trigger,Zt=R__namespace.Portal,Nr=R__namespace.Close,_e=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(R__namespace.Overlay,i({ref:a,className:n("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",t)},e))});_e.displayName=R__namespace.Overlay.displayName;var jt=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,children:e}=d,a=s(d,["className","children"]);return jsxRuntime.jsxs(Zt,{children:[jsxRuntime.jsx(_e,{}),jsxRuntime.jsxs(R__namespace.Content,f(i({ref:r,className:n("fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",t)},a),{children:[e,jsxRuntime.jsxs(R__namespace.Close,{className:"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground",children:[jsxRuntime.jsx(lucideReact.X,{className:"h-4 w-4"}),jsxRuntime.jsx("span",{className:"sr-only",children:"Close"})]})]}))]})});jt.displayName=R__namespace.Content.displayName;var ea=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("flex flex-col space-y-1.5 text-center sm:text-left",t)},e))};ea.displayName="DialogHeader";var ta=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",t)},e))};ta.displayName="DialogFooter";var aa=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(R__namespace.Title,i({ref:a,className:n("text-lg font-semibold leading-none tracking-tight",t)},e))});aa.displayName=R__namespace.Title.displayName;var oa=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(R__namespace.Description,i({ref:a,className:n("text-sm text-muted-foreground",t)},e))});oa.displayName=R__namespace.Description.displayName;var ve=p__namespace.forwardRef((d,o)=>{var l=d,{className:t,orientation:e="horizontal",decorative:a=true}=l,r=s(l,["className","orientation","decorative"]);return jsxRuntime.jsx(be__namespace.Root,i({ref:o,decorative:a,orientation:e,className:n("shrink-0 bg-border",e==="horizontal"?"h-[1px] w-full":"h-full w-[1px]",t)},r))});ve.displayName=be__namespace.Root.displayName;var Ge=R__namespace.Root,kr=R__namespace.Trigger,Vr=R__namespace.Close,sa=R__namespace.Portal,$e=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(R__namespace.Overlay,f(i({className:n("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",t)},e),{ref:a}))});$e.displayName=R__namespace.Overlay.displayName;var da=classVarianceAuthority.cva("fixed z-50 gap-4 bg-background p-6 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500 data-[state=open]:animate-in data-[state=closed]:animate-out",{variants:{side:{top:"inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",bottom:"inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",left:"inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",right:"inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm"}},defaultVariants:{side:"right"}}),xe=p__namespace.forwardRef((d,o)=>{var l=d,{side:t="right",className:e,children:a}=l,r=s(l,["side","className","children"]);return jsxRuntime.jsxs(sa,{children:[jsxRuntime.jsx($e,{}),jsxRuntime.jsxs(R__namespace.Content,f(i({ref:o,className:n(da({side:t}),e)},r),{children:[jsxRuntime.jsxs(R__namespace.Close,{className:"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-secondary",children:[jsxRuntime.jsx(lucideReact.X,{className:"h-4 w-4"}),jsxRuntime.jsx("span",{className:"sr-only",children:"Close"})]}),a]}))]})});xe.displayName=R__namespace.Content.displayName;var ye=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("flex flex-col space-y-2 text-center sm:text-left",t)},e))};ye.displayName="SheetHeader";var la=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",t)},e))};la.displayName="SheetFooter";var he=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(R__namespace.Title,i({ref:a,className:n("text-lg font-semibold text-foreground",t)},e))});he.displayName=R__namespace.Title.displayName;var we=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(R__namespace.Description,i({ref:a,className:n("text-sm text-muted-foreground",t)},e))});we.displayName=R__namespace.Description.displayName;function Pe(a){var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("animate-pulse rounded-md bg-primary/10",t)},e))}var Ke=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(k__namespace.Root,i({ref:a,className:n("relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",t)},e))});Ke.displayName=k__namespace.Root.displayName;var qe=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(k__namespace.Image,i({ref:a,className:n("aspect-square h-full w-full",t)},e))});qe.displayName=k__namespace.Image.displayName;var Ue=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(k__namespace.Fallback,i({ref:a,className:n("flex h-full w-full items-center justify-center rounded-full bg-muted",t)},e))});Ue.displayName=k__namespace.Fallback.displayName;var Je=F__namespace.Provider,Qe=F__namespace.Root,Ze=F__namespace.Trigger,Me=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,sideOffset:e=4}=d,a=s(d,["className","sideOffset"]);return jsxRuntime.jsx(F__namespace.Portal,{children:jsxRuntime.jsx(F__namespace.Content,i({ref:r,sideOffset:e,className:n("z-50 overflow-hidden rounded-md bg-primary px-3 py-1.5 text-xs text-primary-foreground animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-tooltip-content-transform-origin]",t)},a))})});Me.displayName=F__namespace.Content.displayName;var De=classVarianceAuthority.cva("inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",{variants:{variant:{default:"border-transparent bg-primary text-primary-foreground hover:bg-primary/80",secondary:"border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80",destructive:"border-transparent bg-destructive text-destructive-foreground hover:bg-destructive/80",outline:"text-foreground",success:"border-transparent bg-green-500 text-white hover:bg-green-500/80",warning:"border-transparent bg-yellow-500 text-white hover:bg-yellow-500/80",info:"border-transparent bg-blue-500 text-white hover:bg-blue-500/80"},size:{default:"h-5",sm:"h-4 text-[10px]",lg:"h-6 text-sm"}},defaultVariants:{variant:"default",size:"default"}});var tt=p__namespace.forwardRef((g,u)=>{var b=g,{className:t,variant:e,size:a,icon:r,iconAfter:o,children:d}=b,l=s(b,["className","variant","size","icon","iconAfter","children"]);return jsxRuntime.jsxs("div",f(i({ref:u,className:n(De({variant:e,size:a}),t)},l),{children:[r&&jsxRuntime.jsx("span",{className:"mr-1",children:r}),d,o&&jsxRuntime.jsx("span",{className:"ml-1",children:o})]}))});tt.displayName="Badge";var at=p__namespace.createContext(null),ga=({children:t,methods:e,onSubmit:a})=>jsxRuntime.jsx(at.Provider,{value:e,children:jsxRuntime.jsx("form",{onSubmit:a,children:t})}),ot=p__namespace.createContext({}),ba=e=>{var t=s(e,[]);return jsxRuntime.jsx(ot.Provider,{value:{name:t.name},children:jsxRuntime.jsx(reactHookForm.Controller,i({},t))})},j=()=>{let t=p__namespace.useContext(ot),e=p__namespace.useContext(rt),a=p__namespace.useContext(at);if(!a)throw new Error("useFormField should be used within <Form>");let{getFieldState:r,formState:o}=a,d=r(t.name,o);if(!t)throw new Error("useFormField should be used within <FormField>");let{id:l}=e;return i({id:l,name:t.name,formItemId:`${l}-form-item`,formDescriptionId:`${l}-form-item-description`,formMessageId:`${l}-form-item-message`},d)},rt=p__namespace.createContext({}),ne=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);let d=p__namespace.useId();return jsxRuntime.jsx(rt.Provider,{value:{id:d},children:jsxRuntime.jsx("div",i({ref:a,className:n("space-y-2",t),role:"group"},e))})});ne.displayName="FormItem";var se=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);let{error:d,formItemId:l}=j();return jsxRuntime.jsx(U,i({ref:a,className:n("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70",d&&"text-destructive",t),htmlFor:l},e))});se.displayName="FormLabel";var de=p__namespace.forwardRef((a,e)=>{var t=s(a,[]);let{error:r,formItemId:o,formDescriptionId:d,formMessageId:l}=j();return jsxRuntime.jsx(reactSlot.Slot,i({ref:e,id:o,"aria-describedby":r?`${d} ${l}`:`${d}`,"aria-invalid":!!r},t))});de.displayName="FormControl";var le=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);let{formDescriptionId:d}=j();return jsxRuntime.jsx("p",i({ref:a,id:d,className:n("text-[0.8rem] text-muted-foreground",t)},e))});le.displayName="FormDescription";var me=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,children:e}=d,a=s(d,["className","children"]);var b;let{error:l,formMessageId:u}=j(),g=l?String((b=l==null?void 0:l.message)!=null?b:""):e;return g?jsxRuntime.jsx("p",f(i({ref:r,id:u,className:n("text-[0.8rem] font-medium text-destructive",t),role:"alert"},a),{children:g})):null});me.displayName="FormMessage";var Ra=classVarianceAuthority.cva("",{variants:{variant:{h1:"scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl",h2:"scroll-m-20 text-3xl font-semibold tracking-tight",h3:"scroll-m-20 text-2xl font-semibold tracking-tight",h4:"scroll-m-20 text-xl font-semibold tracking-tight",h5:"scroll-m-20 text-lg font-semibold tracking-tight",h6:"scroll-m-20 text-base font-semibold tracking-tight",p:"leading-7 [&:not(:first-child)]:mt-6",blockquote:"mt-6 border-l-2 border-slate-300 pl-6 italic",list:"my-6 ml-6 list-disc [&>li]:mt-2",lead:"text-xl text-muted-foreground",large:"text-lg font-semibold",small:"text-sm font-medium leading-none",muted:"text-sm text-muted-foreground"},align:{left:"text-left",center:"text-center",right:"text-right",justify:"text-justify"}},defaultVariants:{variant:"p",align:"left"}}),xa=p__namespace.forwardRef((l,d)=>{var u=l,{className:t,variant:e,align:a,as:r="p"}=u,o=s(u,["className","variant","align","as"]);return jsxRuntime.jsx(r,i({className:n(Ra({variant:e,align:a,className:t})),ref:d},o))});xa.displayName="Typography";function Di({className:t,size:e="default",text:a,color:r="primary"}){let o={sm:"h-4 w-4",default:"h-8 w-8",lg:"h-12 w-12"},l={primary:"text-primary",secondary:"text-secondary",accent:"text-accent",muted:"text-muted-foreground",destructive:"text-destructive"}[r]||`text-[${r}]`;return jsxRuntime.jsxs("div",{className:n("fixed inset-0 z-50 flex min-h-screen flex-col items-center justify-center bg-background/80 backdrop-blur-sm",t),role:"alert","aria-live":"assertive",children:[jsxRuntime.jsx(lucideReact.Loader2,{className:n("animate-spin",l,o[e]),"aria-hidden":"true"}),a&&jsxRuntime.jsx("p",{className:"mt-4 text-sm text-muted-foreground","aria-label":a,children:a})]})}var Pa=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,className:n("rounded-lg border bg-card text-card-foreground shadow-sm",t)},e))});Pa.displayName="Card";var Na=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,className:n("flex flex-col space-y-1.5 p-6",t)},e))});Na.displayName="CardHeader";var Ma=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("h3",i({ref:a,className:n("text-2xl font-semibold leading-none tracking-tight",t)},e))});Ma.displayName="CardTitle";var Da=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("p",i({ref:a,className:n("text-sm text-muted-foreground",t)},e))});Da.displayName="CardDescription";var Ca=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,className:n("p-6 pt-0",t)},e))});Ca.displayName="CardContent";var Sa=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,className:n("flex items-center p-6 pt-0",t)},e))});Sa.displayName="CardFooter";var st=classVarianceAuthority.cva("group inline-flex h-10 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[active]:bg-accent/50 data-[state=open]:bg-accent/50",{variants:{variant:{default:"text-foreground",ghost:"hover:bg-transparent hover:underline",link:"text-primary underline-offset-4 hover:underline",mobile:"w-full justify-between border-b border-border py-4 text-base font-medium"}},defaultVariants:{variant:"default"}});var dt=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,children:e}=d,a=s(d,["className","children"]);return jsxRuntime.jsxs(v__namespace.Root,f(i({ref:r,className:n("relative z-10 flex max-w-max flex-1 items-center justify-center",t)},a),{children:[e,jsxRuntime.jsx(Ce,{})]}))});dt.displayName=v__namespace.Root.displayName;var lt=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(v__namespace.List,i({ref:a,className:n("group flex flex-1 list-none items-center justify-center space-x-1",t)},e))});lt.displayName=v__namespace.List.displayName;var La=v__namespace.Item,mt=p__namespace.forwardRef((d,o)=>{var l=d,{className:t,children:e,variant:a}=l,r=s(l,["className","children","variant"]);return jsxRuntime.jsxs(v__namespace.Trigger,f(i({ref:o,className:n(st({variant:a}),t)},r),{children:[e," ",jsxRuntime.jsx(lucideReact.ChevronDown,{className:"relative top-[1px] ml-1 h-3 w-3 transition duration-200 group-data-[state=open]:rotate-180","aria-hidden":"true"})]}))});mt.displayName=v__namespace.Trigger.displayName;var pt=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(v__namespace.Content,i({ref:a,className:n("left-0 top-0 w-full data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 md:absolute md:w-auto",t)},e))});pt.displayName=v__namespace.Content.displayName;var Ea=v__namespace.Link,Ce=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",{className:n("absolute left-0 top-full flex justify-center"),children:jsxRuntime.jsx(v__namespace.Viewport,i({className:n("origin-top-center relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 md:w-[var(--radix-navigation-menu-viewport-width)]",t),ref:a},e))})});Ce.displayName=v__namespace.Viewport.displayName;var ct=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(v__namespace.Indicator,f(i({ref:a,className:n("top-full z-[1] flex h-1.5 items-end justify-center overflow-hidden data-[state=visible]:animate-in data-[state=hidden]:animate-out data-[state=hidden]:fade-out data-[state=visible]:fade-in",t)},e),{children:jsxRuntime.jsx("div",{className:"relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm bg-border shadow-md"})}))});ct.displayName=v__namespace.Indicator.displayName;function Ui(A){var S=A,{name:t,label:e,description:a,className:r,type:o="text",warningText:d,required:l,disabled:u,readOnly:g,placeholder:b,"aria-label":y,"aria-describedby":h,onBlur:w}=S,D=s(S,["name","label","description","className","type","warningText","required","disabled","readOnly","placeholder","aria-label","aria-describedby","onBlur"]);let{control:C}=reactHookForm.useFormContext();return jsxRuntime.jsx(reactHookForm.Controller,{name:t,control:C,render:({field:P,fieldState:{error:E}})=>jsxRuntime.jsxs(ne,{children:[e&&jsxRuntime.jsxs(se,{children:[e,l&&jsxRuntime.jsx("span",{className:"text-destructive ml-1",children:"*"})]}),jsxRuntime.jsx(de,{children:jsxRuntime.jsx(G,i(f(i({},P),{type:o,value:o==="number"&&P.value===0?"":P.value,onChange:T=>{o==="number"?P.onChange(Number(T.target.value)):P.onChange(T.target.value);},onBlur:T=>{o!=="number"&&typeof P.value=="string"&&P.onChange(P.value.trim()),P.onBlur(),w==null||w(T);},className:n(E&&"border-destructive focus-visible:ring-destructive",r),disabled:u,readOnly:g,required:l,placeholder:b,"aria-label":y,"aria-describedby":h,"aria-invalid":!!E,"aria-required":l}),D))}),a&&jsxRuntime.jsx(le,{children:a}),E&&jsxRuntime.jsx(me,{children:E.message}),!E&&d&&jsxRuntime.jsx("p",{className:"text-sm text-yellow-600 dark:text-yellow-500",role:"alert",children:d})]})})}var ka=a=>{var r=a,{shouldScaleBackground:t=true}=r,e=s(r,["shouldScaleBackground"]);return jsxRuntime.jsx(vaul.Drawer.Root,i({shouldScaleBackground:t},e))};ka.displayName="Drawer";var ji=vaul.Drawer.Trigger,Va=vaul.Drawer.Portal,en=vaul.Drawer.Close,bt=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(vaul.Drawer.Overlay,i({ref:a,className:n("fixed inset-0 z-50 bg-black/80",t)},e))});bt.displayName=vaul.Drawer.Overlay.displayName;var Aa=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,children:e}=d,a=s(d,["className","children"]);return jsxRuntime.jsxs(Va,{children:[jsxRuntime.jsx(bt,{}),jsxRuntime.jsxs(vaul.Drawer.Content,f(i({ref:r,className:n("fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] border bg-background",t)},a),{children:[jsxRuntime.jsx("div",{className:"mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted"}),e]}))]})});Aa.displayName="DrawerContent";var za=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("grid gap-1.5 p-4 text-center sm:text-left",t)},e))};za.displayName="DrawerHeader";var Ba=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("mt-auto flex flex-col gap-2 p-4",t)},e))};Ba.displayName="DrawerFooter";var Oa=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(vaul.Drawer.Title,i({ref:a,className:n("text-lg font-semibold leading-none tracking-tight",t)},e))});Oa.displayName=vaul.Drawer.Title.displayName;var _a=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(vaul.Drawer.Description,i({ref:a,className:n("text-sm text-muted-foreground",t)},e))});_a.displayName=vaul.Drawer.Description.displayName;var Se=768;function vt(){let[t,e]=p__namespace.useState(void 0);return p__namespace.useEffect(()=>{let a=window.matchMedia(`(max-width: ${Se-1}px)`),r=()=>{e(window.innerWidth<Se);};return a.addEventListener("change",r),e(window.innerWidth<Se),()=>a.removeEventListener("change",r)},[]),!!t}var $a="sidebar_state",Ka=60*60*24*7,qa="16rem",Ua="18rem",Xa="3rem",Ya="b",Rt=p__namespace.createContext(null);function ce(){let t=p__namespace.useContext(Rt);if(!t)throw new Error("useSidebar must be used within a SidebarProvider.");return t}var Ja=p__namespace.forwardRef((g,u)=>{var b=g,{defaultOpen:t=true,open:e,onOpenChange:a,className:r,style:o,children:d}=b,l=s(b,["defaultOpen","open","onOpenChange","className","style","children"]);let y=vt(),[h,w]=p__namespace.useState(false),[D,A]=p__namespace.useState(t),S=e!=null?e:D,C=p__namespace.useCallback(I=>{let z=typeof I=="function"?I(S):I;a?a(z):A(z),document.cookie=`${$a}=${z}; path=/; max-age=${Ka}`;},[a,S]),P=p__namespace.useCallback(()=>y?w(I=>!I):C(I=>!I),[y,C,w]);p__namespace.useEffect(()=>{let I=z=>{z.key===Ya&&(z.metaKey||z.ctrlKey)&&(z.preventDefault(),P());};return window.addEventListener("keydown",I),()=>window.removeEventListener("keydown",I)},[P]);let E=S?"expanded":"collapsed",T=p__namespace.useMemo(()=>({state:E,open:S,setOpen:C,isMobile:y,openMobile:h,setOpenMobile:w,toggleSidebar:P}),[E,S,C,y,h,w,P]);return jsxRuntime.jsx(Rt.Provider,{value:T,children:jsxRuntime.jsx(Je,{delayDuration:0,children:jsxRuntime.jsx("div",f(i({style:i({"--sidebar-width":qa,"--sidebar-width-icon":Xa},o),className:n("group/sidebar-wrapper flex min-h-svh w-full has-[[data-variant=inset]]:bg-sidebar",r),ref:u},l),{children:d}))})})});Ja.displayName="SidebarProvider";var Qa=p__namespace.forwardRef((u,l)=>{var g=u,{side:t="left",variant:e="sidebar",collapsible:a="offcanvas",className:r,children:o}=g,d=s(g,["side","variant","collapsible","className","children"]);let{isMobile:b,state:y,openMobile:h,setOpenMobile:w}=ce();return a==="none"?jsxRuntime.jsx("div",f(i({className:n("flex h-full w-[--sidebar-width] flex-col bg-sidebar text-sidebar-foreground",r),ref:l},d),{children:o})):b?jsxRuntime.jsx(Ge,f(i({open:h,onOpenChange:w},d),{children:jsxRuntime.jsxs(xe,{"data-sidebar":"sidebar","data-mobile":"true",className:"w-[--sidebar-width] bg-sidebar p-0 text-sidebar-foreground [&>button]:hidden",style:{"--sidebar-width":Ua},side:t,children:[jsxRuntime.jsxs(ye,{className:"sr-only",children:[jsxRuntime.jsx(he,{children:"Sidebar"}),jsxRuntime.jsx(we,{children:"Displays the mobile sidebar."})]}),jsxRuntime.jsx("div",{className:"flex h-full w-full flex-col",children:o})]})})):jsxRuntime.jsxs("div",{ref:l,className:"group peer hidden text-sidebar-foreground md:block","data-state":y,"data-collapsible":y==="collapsed"?a:"","data-variant":e,"data-side":t,children:[jsxRuntime.jsx("div",{className:n("relative w-[--sidebar-width] bg-transparent transition-[width] duration-200 ease-linear","group-data-[collapsible=offcanvas]:w-0","group-data-[side=right]:rotate-180",e==="floating"||e==="inset"?"group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4))]":"group-data-[collapsible=icon]:w-[--sidebar-width-icon]")}),jsxRuntime.jsx("div",f(i({className:n("fixed inset-y-0 z-10 hidden h-svh w-[--sidebar-width] transition-[left,right,width] duration-200 ease-linear md:flex",t==="left"?"left-0 group-data-[collapsible=offcanvas]:left-[calc(var(--sidebar-width)*-1)]":"right-0 group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)]",e==="floating"||e==="inset"?"p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4)_+2px)]":"group-data-[collapsible=icon]:w-[--sidebar-width-icon] group-data-[side=left]:border-r group-data-[side=right]:border-l",r)},d),{children:jsxRuntime.jsx("div",{"data-sidebar":"sidebar",className:"flex h-full w-full flex-col bg-sidebar group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-sidebar-border group-data-[variant=floating]:shadow",children:o})}))]})});Qa.displayName="Sidebar";var Za=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,onClick:e}=d,a=s(d,["className","onClick"]);let{toggleSidebar:l}=ce();return jsxRuntime.jsxs(fe,f(i({ref:r,"data-sidebar":"trigger",variant:"ghost",size:"icon",className:n("h-7 w-7",t),onClick:u=>{e==null||e(u),l();}},a),{children:[jsxRuntime.jsx(lucideReact.PanelLeft,{}),jsxRuntime.jsx("span",{className:"sr-only",children:"Toggle Sidebar"})]}))});Za.displayName="SidebarTrigger";var ja=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);let{toggleSidebar:d}=ce();return jsxRuntime.jsx("button",i({ref:a,"data-sidebar":"rail","aria-label":"Toggle Sidebar",tabIndex:-1,onClick:d,title:"Toggle Sidebar",className:n("absolute inset-y-0 z-20 hidden w-4 -translate-x-1/2 transition-all ease-linear after:absolute after:inset-y-0 after:left-1/2 after:w-[2px] hover:after:bg-sidebar-border group-data-[side=left]:-right-4 group-data-[side=right]:left-0 sm:flex","[[data-side=left]_&]:cursor-w-resize [[data-side=right]_&]:cursor-e-resize","[[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=right][data-state=collapsed]_&]:cursor-w-resize","group-data-[collapsible=offcanvas]:translate-x-0 group-data-[collapsible=offcanvas]:after:left-full group-data-[collapsible=offcanvas]:hover:bg-sidebar","[[data-side=left][data-collapsible=offcanvas]_&]:-right-2","[[data-side=right][data-collapsible=offcanvas]_&]:-left-2",t)},e))});ja.displayName="SidebarRail";var eo=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("main",i({ref:a,className:n("relative flex w-full flex-1 flex-col bg-background","md:peer-data-[variant=inset]:m-2 md:peer-data-[state=collapsed]:peer-data-[variant=inset]:ml-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow",t)},e))});eo.displayName="SidebarInset";var to=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(G,i({ref:a,"data-sidebar":"input",className:n("h-8 w-full bg-background shadow-none focus-visible:ring-2 focus-visible:ring-sidebar-ring",t)},e))});to.displayName="SidebarInput";var ao=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,"data-sidebar":"header",className:n("flex flex-col gap-2 p-2",t)},e))});ao.displayName="SidebarHeader";var oo=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,"data-sidebar":"footer",className:n("flex flex-col gap-2 p-2",t)},e))});oo.displayName="SidebarFooter";var ro=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(ve,i({ref:a,"data-sidebar":"separator",className:n("mx-2 w-auto bg-sidebar-border",t)},e))});ro.displayName="SidebarSeparator";var io=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,"data-sidebar":"content",className:n("flex min-h-0 flex-1 flex-col gap-2 overflow-auto group-data-[collapsible=icon]:overflow-hidden",t)},e))});io.displayName="SidebarContent";var no=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,"data-sidebar":"group",className:n("relative flex w-full min-w-0 flex-col p-2",t)},e))});no.displayName="SidebarGroup";var so=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,asChild:e=false}=d,a=s(d,["className","asChild"]);return jsxRuntime.jsx(e?reactSlot.Slot:"div",i({ref:r,"data-sidebar":"group-label",className:n("flex h-8 shrink-0 items-center rounded-md px-2 text-xs font-medium text-sidebar-foreground/70 outline-none ring-sidebar-ring transition-[margin,opacity] duration-200 ease-linear focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0","group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0",t)},a))});so.displayName="SidebarGroupLabel";var lo=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,asChild:e=false}=d,a=s(d,["className","asChild"]);return jsxRuntime.jsx(e?reactSlot.Slot:"button",i({ref:r,"data-sidebar":"group-action",className:n("absolute right-3 top-3.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0","after:absolute after:-inset-2 after:md:hidden","group-data-[collapsible=icon]:hidden",t)},a))});lo.displayName="SidebarGroupAction";var mo=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,"data-sidebar":"group-content",className:n("w-full text-sm",t)},e))});mo.displayName="SidebarGroupContent";var po=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("ul",i({ref:a,"data-sidebar":"menu",className:n("flex w-full min-w-0 flex-col gap-1",t)},e))});po.displayName="SidebarMenu";var co=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("li",i({ref:a,"data-sidebar":"menu-item",className:n("group/menu-item relative",t)},e))});co.displayName="SidebarMenuItem";var fo=classVarianceAuthority.cva("peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-none ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:!p-2 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0",{variants:{variant:{default:"hover:bg-sidebar-accent hover:text-sidebar-accent-foreground",outline:"bg-background shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]"},size:{default:"h-8 text-sm",sm:"h-7 text-xs",lg:"h-12 text-sm group-data-[collapsible=icon]:!p-0"}},defaultVariants:{variant:"default",size:"default"}}),uo=p__namespace.forwardRef((g,u)=>{var b=g,{asChild:t=false,isActive:e=false,variant:a="default",size:r="default",tooltip:o,className:d}=b,l=s(b,["asChild","isActive","variant","size","tooltip","className"]);let y=t?reactSlot.Slot:"button",{isMobile:h,state:w}=ce(),D=jsxRuntime.jsx(y,i({ref:u,"data-sidebar":"menu-button","data-size":r,"data-active":e,className:n(fo({variant:a,size:r}),d)},l));return o?(typeof o=="string"&&(o={children:o}),jsxRuntime.jsxs(Qe,{children:[jsxRuntime.jsx(Ze,{asChild:true,children:D}),jsxRuntime.jsx(Me,i({side:"right",align:"center",hidden:w!=="collapsed"||h},o))]})):D});uo.displayName="SidebarMenuButton";var go=p__namespace.forwardRef((d,o)=>{var l=d,{className:t,asChild:e=false,showOnHover:a=false}=l,r=s(l,["className","asChild","showOnHover"]);return jsxRuntime.jsx(e?reactSlot.Slot:"button",i({ref:o,"data-sidebar":"menu-action",className:n("absolute right-1 top-1.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 peer-hover/menu-button:text-sidebar-accent-foreground [&>svg]:size-4 [&>svg]:shrink-0","after:absolute after:-inset-2 after:md:hidden","peer-data-[size=sm]/menu-button:top-1","peer-data-[size=default]/menu-button:top-1.5","peer-data-[size=lg]/menu-button:top-2.5","group-data-[collapsible=icon]:hidden",a&&"group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 peer-data-[active=true]/menu-button:text-sidebar-accent-foreground md:opacity-0",t)},r))});go.displayName="SidebarMenuAction";var bo=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,"data-sidebar":"menu-badge",className:n("pointer-events-none absolute right-1 flex h-5 min-w-5 select-none items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums text-sidebar-foreground","peer-hover/menu-button:text-sidebar-accent-foreground peer-data-[active=true]/menu-button:text-sidebar-accent-foreground","peer-data-[size=sm]/menu-button:top-1","peer-data-[size=default]/menu-button:top-1.5","peer-data-[size=lg]/menu-button:top-2.5","group-data-[collapsible=icon]:hidden",t)},e))});bo.displayName="SidebarMenuBadge";var vo=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,showIcon:e=false}=d,a=s(d,["className","showIcon"]);let l=p__namespace.useMemo(()=>`${Math.floor(Math.random()*40)+50}%`,[]);return jsxRuntime.jsxs("div",f(i({ref:r,"data-sidebar":"menu-skeleton",className:n("flex h-8 items-center gap-2 rounded-md px-2",t)},a),{children:[e&&jsxRuntime.jsx(Pe,{className:"size-4 rounded-md","data-sidebar":"menu-skeleton-icon"}),jsxRuntime.jsx(Pe,{className:"h-4 max-w-[--skeleton-width] flex-1","data-sidebar":"menu-skeleton-text",style:{"--skeleton-width":l}})]}))});vo.displayName="SidebarMenuSkeleton";var Ro=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("ul",i({ref:a,"data-sidebar":"menu-sub",className:n("mx-3.5 flex min-w-0 translate-x-px flex-col gap-1 border-l border-sidebar-border px-2.5 py-0.5","group-data-[collapsible=icon]:hidden",t)},e))});Ro.displayName="SidebarMenuSub";var xo=p__namespace.forwardRef((a,e)=>{var t=s(a,[]);return jsxRuntime.jsx("li",i({ref:e},t))});xo.displayName="SidebarMenuSubItem";var yo=p__namespace.forwardRef((l,d)=>{var u=l,{asChild:t=false,size:e="md",isActive:a,className:r}=u,o=s(u,["asChild","size","isActive","className"]);return jsxRuntime.jsx(t?reactSlot.Slot:"a",i({ref:d,"data-sidebar":"menu-sub-button","data-size":e,"data-active":a,className:n("flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md px-2 text-sidebar-foreground outline-none ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0 [&>svg]:text-sidebar-accent-foreground","data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground",e==="sm"&&"text-xs",e==="md"&&"text-sm","group-data-[collapsible=icon]:hidden",r)},o))});yo.displayName="SidebarMenuSubButton";var No=m__namespace.Root,Mo=m__namespace.Trigger,Do=m__namespace.Group,Co=m__namespace.Portal,So=m__namespace.Sub,To=m__namespace.RadioGroup,xt=p__namespace.forwardRef((d,o)=>{var l=d,{className:t,inset:e,children:a}=l,r=s(l,["className","inset","children"]);return jsxRuntime.jsxs(m__namespace.SubTrigger,f(i({ref:o,className:n("flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[state=open]:bg-accent",e&&"pl-8",t)},r),{children:[a,jsxRuntime.jsx(lucideReact.ChevronRight,{className:"ml-auto h-4 w-4"})]}))});xt.displayName=m__namespace.SubTrigger.displayName;var yt=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(m__namespace.SubContent,i({ref:a,className:n("z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",t)},e))});yt.displayName=m__namespace.SubContent.displayName;var ht=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,sideOffset:e=4}=d,a=s(d,["className","sideOffset"]);return jsxRuntime.jsx(m__namespace.Portal,{children:jsxRuntime.jsx(m__namespace.Content,i({ref:r,sideOffset:e,className:n("z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",t)},a))})});ht.displayName=m__namespace.Content.displayName;var wt=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,inset:e}=d,a=s(d,["className","inset"]);return jsxRuntime.jsx(m__namespace.Item,i({ref:r,className:n("relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e&&"pl-8",t)},a))});wt.displayName=m__namespace.Item.displayName;var Pt=p__namespace.forwardRef((d,o)=>{var l=d,{className:t,children:e,checked:a}=l,r=s(l,["className","children","checked"]);return jsxRuntime.jsxs(m__namespace.CheckboxItem,f(i({ref:o,className:n("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",t),checked:a},r),{children:[jsxRuntime.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:jsxRuntime.jsx(m__namespace.ItemIndicator,{children:jsxRuntime.jsx(lucideReact.Check,{className:"h-4 w-4"})})}),e]}))});Pt.displayName=m__namespace.CheckboxItem.displayName;var Nt=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,children:e}=d,a=s(d,["className","children"]);return jsxRuntime.jsxs(m__namespace.RadioItem,f(i({ref:r,className:n("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",t)},a),{children:[jsxRuntime.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:jsxRuntime.jsx(m__namespace.ItemIndicator,{children:jsxRuntime.jsx(lucideReact.Circle,{className:"h-2 w-2 fill-current"})})}),e]}))});Nt.displayName=m__namespace.RadioItem.displayName;var Mt=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,inset:e}=d,a=s(d,["className","inset"]);return jsxRuntime.jsx(m__namespace.Label,i({ref:r,className:n("px-2 py-1.5 text-sm font-semibold",e&&"pl-8",t)},a))});Mt.displayName=m__namespace.Label.displayName;var Dt=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(m__namespace.Separator,i({ref:a,className:n("-mx-1 my-1 h-px bg-muted",t)},e))});Dt.displayName=m__namespace.Separator.displayName;var Ct=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("span",i({className:n("ml-auto text-xs tracking-widest opacity-60",t)},e))};Ct.displayName="DropdownMenuShortcut";exports.Avatar=Ke;exports.AvatarFallback=Ue;exports.AvatarImage=qe;exports.Badge=tt;exports.Box=Ut;exports.Button=fe;exports.Card=Pa;exports.CardContent=Ca;exports.CardDescription=Da;exports.CardFooter=Sa;exports.CardHeader=Na;exports.CardTitle=Ma;exports.Container=Kt;exports.Dialog=wr;exports.DialogClose=Nr;exports.DialogContent=jt;exports.DialogDescription=oa;exports.DialogFooter=ta;exports.DialogHeader=ea;exports.DialogOverlay=_e;exports.DialogPortal=Zt;exports.DialogTitle=aa;exports.DialogTrigger=Pr;exports.Drawer=ka;exports.DrawerClose=en;exports.DrawerContent=Aa;exports.DrawerDescription=_a;exports.DrawerFooter=Ba;exports.DrawerHeader=za;exports.DrawerOverlay=bt;exports.DrawerPortal=Va;exports.DrawerTitle=Oa;exports.DrawerTrigger=ji;exports.DropdownMenu=No;exports.DropdownMenuCheckboxItem=Pt;exports.DropdownMenuContent=ht;exports.DropdownMenuGroup=Do;exports.DropdownMenuItem=wt;exports.DropdownMenuLabel=Mt;exports.DropdownMenuPortal=Co;exports.DropdownMenuRadioGroup=To;exports.DropdownMenuRadioItem=Nt;exports.DropdownMenuSeparator=Dt;exports.DropdownMenuShortcut=Ct;exports.DropdownMenuSub=So;exports.DropdownMenuSubContent=yt;exports.DropdownMenuSubTrigger=xt;exports.DropdownMenuTrigger=Mo;exports.Form=ga;exports.FormControl=de;exports.FormDescription=le;exports.FormField=ba;exports.FormItem=ne;exports.FormLabel=se;exports.FormMessage=me;exports.Input=G;exports.NavigationMenu=dt;exports.NavigationMenuContent=pt;exports.NavigationMenuIndicator=ct;exports.NavigationMenuItem=La;exports.NavigationMenuLink=Ea;exports.NavigationMenuList=lt;exports.NavigationMenuTrigger=mt;exports.NavigationMenuViewport=Ce;exports.PageLoader=Di;exports.RHFTextField=Ui;exports.Separator=ve;exports.Sheet=Ge;exports.SheetClose=Vr;exports.SheetContent=xe;exports.SheetDescription=we;exports.SheetFooter=la;exports.SheetHeader=ye;exports.SheetOverlay=$e;exports.SheetPortal=sa;exports.SheetTitle=he;exports.SheetTrigger=kr;exports.Sidebar=Qa;exports.SidebarContent=io;exports.SidebarFooter=oo;exports.SidebarGroup=no;exports.SidebarGroupAction=lo;exports.SidebarGroupContent=mo;exports.SidebarGroupLabel=so;exports.SidebarHeader=ao;exports.SidebarInput=to;exports.SidebarInset=eo;exports.SidebarMenu=po;exports.SidebarMenuAction=go;exports.SidebarMenuBadge=bo;exports.SidebarMenuButton=uo;exports.SidebarMenuItem=co;exports.SidebarMenuSkeleton=vo;exports.SidebarMenuSub=Ro;exports.SidebarMenuSubButton=yo;exports.SidebarMenuSubItem=xo;exports.SidebarProvider=Ja;exports.SidebarRail=ja;exports.SidebarSeparator=ro;exports.SidebarTrigger=Za;exports.Skeleton=Pe;exports.Stack=Yt;exports.TextField=$t;exports.Tooltip=Qe;exports.TooltipContent=Me;exports.TooltipProvider=Je;exports.TooltipTrigger=Ze;exports.Typography=xa;exports.badgeVariants=De;exports.buttonVariants=Ie;exports.cn=n;exports.sidebarMenuButtonVariants=fo;exports.textFieldVariants=Gt;exports.typographyVariants=Ra;exports.useFormField=j;exports.useIsMobile=vt;exports.useSidebar=ce;//# sourceMappingURL=index.js.map
|
|
1
|
+
'use strict';var p=require('react'),reactSlot=require('@radix-ui/react-slot'),classVarianceAuthority=require('class-variance-authority'),clsx=require('clsx'),tailwindMerge=require('tailwind-merge'),lucideReact=require('lucide-react'),jsxRuntime=require('react/jsx-runtime'),ue=require('@radix-ui/react-label'),R=require('@radix-ui/react-dialog'),be=require('@radix-ui/react-separator'),H=require('@radix-ui/react-avatar'),L=require('@radix-ui/react-tooltip'),reactHookForm=require('react-hook-form'),v=require('@radix-ui/react-navigation-menu'),vaul=require('vaul'),m=require('@radix-ui/react-dropdown-menu');function _interopNamespace(e){if(e&&e.__esModule)return e;var n=Object.create(null);if(e){Object.keys(e).forEach(function(k){if(k!=='default'){var d=Object.getOwnPropertyDescriptor(e,k);Object.defineProperty(n,k,d.get?d:{enumerable:true,get:function(){return e[k]}});}})}n.default=e;return Object.freeze(n)}var p__namespace=/*#__PURE__*/_interopNamespace(p);var ue__namespace=/*#__PURE__*/_interopNamespace(ue);var R__namespace=/*#__PURE__*/_interopNamespace(R);var be__namespace=/*#__PURE__*/_interopNamespace(be);var H__namespace=/*#__PURE__*/_interopNamespace(H);var L__namespace=/*#__PURE__*/_interopNamespace(L);var v__namespace=/*#__PURE__*/_interopNamespace(v);var m__namespace=/*#__PURE__*/_interopNamespace(m);var St=Object.defineProperty,Tt=Object.defineProperties;var Lt=Object.getOwnPropertyDescriptors;var ae=Object.getOwnPropertySymbols;var Ee=Object.prototype.hasOwnProperty,Ie=Object.prototype.propertyIsEnumerable;var Fe=(t,e,a)=>e in t?St(t,e,{enumerable:true,configurable:true,writable:true,value:a}):t[e]=a,i=(t,e)=>{for(var a in e||(e={}))Ee.call(e,a)&&Fe(t,a,e[a]);if(ae)for(var a of ae(e))Ie.call(e,a)&&Fe(t,a,e[a]);return t},f=(t,e)=>Tt(t,Lt(e));var s=(t,e)=>{var a={};for(var r in t)Ee.call(t,r)&&e.indexOf(r)<0&&(a[r]=t[r]);if(t!=null&&ae)for(var r of ae(t))e.indexOf(r)<0&&Ie.call(t,r)&&(a[r]=t[r]);return a};function n(...t){return tailwindMerge.twMerge(clsx.clsx(t))}var He=classVarianceAuthority.cva("inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",{variants:{variant:{default:"bg-primary text-primary-foreground shadow hover:bg-primary/90",destructive:"bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",outline:"border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",secondary:"bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-9 px-4 py-2",sm:"h-8 rounded-md px-3 text-xs",lg:"h-10 rounded-md px-8",icon:"h-9 w-9"}},defaultVariants:{variant:"default",size:"default"}}),fe=p__namespace.forwardRef((D,w)=>{var V=D,{className:t,variant:e,size:a,asChild:r=false,startIcon:o,endIcon:d,loading:l=false,disabled:u,children:g,type:b="button","aria-label":y}=V,x=s(V,["className","variant","size","asChild","startIcon","endIcon","loading","disabled","children","type","aria-label"]);let S=r?reactSlot.Slot:"button",C=u||l,P=y||(typeof g=="string"?g:void 0),E=T=>{(T.key==="Enter"||T.key===" ")&&(T.preventDefault(),!C&&x.onClick&&x.onClick(T));};return r?jsxRuntime.jsx(S,f(i({className:n(He({variant:e,size:a,className:t})),ref:w,disabled:C,type:b,"aria-label":P,"aria-disabled":C},x),{children:g})):jsxRuntime.jsxs(S,f(i({className:n(He({variant:e,size:a,className:t})),ref:w,disabled:C,type:b,"aria-label":P,"aria-disabled":C,onKeyDown:E},x),{children:[l&&jsxRuntime.jsx(lucideReact.Loader2,{className:"mr-2 h-4 w-4 animate-spin",role:"status","aria-label":"Loading","aria-hidden":"true"}),!l&&o&&jsxRuntime.jsx("span",{className:"mr-2","aria-hidden":"true",children:o}),g,!l&&d&&jsxRuntime.jsx("span",{className:"ml-2","aria-hidden":"true",children:d})]}))});fe.displayName="Button";var G=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,type:e}=d,a=s(d,["className","type"]);return jsxRuntime.jsx("input",i({type:e,className:n("flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",t),ref:r},a))});G.displayName="Input";var Bt=classVarianceAuthority.cva("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"),U=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(ue__namespace.Root,i({ref:a,className:n(Bt(),t)},e))});U.displayName=ue__namespace.Root.displayName;var Gt=classVarianceAuthority.cva("w-full",{variants:{variant:{default:"",error:"border-destructive focus-visible:ring-destructive"},size:{default:"h-10",sm:"h-8 text-xs",lg:"h-12 text-base"}},defaultVariants:{variant:"default",size:"default"}}),$t=p__namespace.forwardRef((w,x)=>{var D=w,{className:t,variant:e,size:a,startIcon:r,endIcon:o,loading:d=false,error:l,label:u,helperText:g,disabled:b}=D,y=s(D,["className","variant","size","startIcon","endIcon","loading","error","label","helperText","disabled"]);let V=p__namespace.useId();return jsxRuntime.jsxs("div",{className:"w-full space-y-2",children:[u&&jsxRuntime.jsx(U,{htmlFor:V,children:u}),jsxRuntime.jsxs("div",{className:"relative",children:[r&&jsxRuntime.jsx("div",{className:"absolute left-3 top-1/2 -translate-y-1/2 text-muted-foreground",children:r}),jsxRuntime.jsx(G,i({id:V,className:n(Gt({variant:l?"error":e,size:a,className:t}),r&&"pl-9",(o||d)&&"pr-9"),ref:x,disabled:b||d},y)),(o||d)&&jsxRuntime.jsx("div",{className:"absolute right-3 top-1/2 -translate-y-1/2 text-muted-foreground",children:d?jsxRuntime.jsx(lucideReact.Loader2,{className:"h-4 w-4 animate-spin"}):o})]}),(l||g)&&jsxRuntime.jsx("p",{className:n("text-sm",l?"text-destructive":"text-muted-foreground"),children:l||g})]})});$t.displayName="TextField";var Kt=p__namespace.forwardRef((l,d)=>{var u=l,{className:t,maxWidth:e="lg",disablePadding:a=false,fluid:r=false}=u,o=s(u,["className","maxWidth","disablePadding","fluid"]);return jsxRuntime.jsx("div",i({ref:d,className:n("mx-auto w-full",!a&&"px-4 sm:px-6 lg:px-8",!r&&{"max-w-screen-sm":e==="sm","max-w-screen-md":e==="md","max-w-screen-lg":e==="lg","max-w-screen-xl":e==="xl","max-w-full":e==="full"},t)},o))});Kt.displayName="Container";var Ut=p__namespace.forwardRef((u,l)=>{var g=u,{as:t="div",className:e,width:a,height:r,style:o}=g,d=s(g,["as","className","width","height","style"]);let b=i({width:typeof a=="number"?`${a}px`:a,height:typeof r=="number"?`${r}px`:r},o);return jsxRuntime.jsx(t,i({ref:l,className:n(e),style:b},d))});Ut.displayName="Box";var Yt=p__namespace.forwardRef((w,x)=>{var D=w,{className:t,direction:e="vertical",spacing:a="md",wrap:r=false,center:o=false,justify:d,align:l,width:u,height:g,style:b}=D,y=s(D,["className","direction","spacing","wrap","center","justify","align","width","height","style"]);return jsxRuntime.jsx("div",i({ref:x,className:n("flex",e==="vertical"?"flex-col":"flex-row",{"gap-0":a==="none","gap-1":a==="xs","gap-2":a==="sm","gap-4":a==="md","gap-6":a==="lg","gap-8":a==="xl"},r&&"flex-wrap",o&&"items-center justify-center",d&&{"justify-start":d==="start","justify-end":d==="end","justify-center":d==="center","justify-between":d==="between","justify-around":d==="around","justify-evenly":d==="evenly"},l&&{"items-start":l==="start","items-end":l==="end","items-center":l==="center","items-stretch":l==="stretch","items-baseline":l==="baseline"},t),style:i({width:u,height:g},b)},y))});Yt.displayName="Stack";var wr=R__namespace.Root,Pr=R__namespace.Trigger,Zt=R__namespace.Portal,Nr=R__namespace.Close,We=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(R__namespace.Overlay,i({ref:a,className:n("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",t)},e))});We.displayName=R__namespace.Overlay.displayName;var jt=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,children:e}=d,a=s(d,["className","children"]);return jsxRuntime.jsxs(Zt,{children:[jsxRuntime.jsx(We,{}),jsxRuntime.jsxs(R__namespace.Content,f(i({ref:r,className:n("fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",t)},a),{children:[e,jsxRuntime.jsxs(R__namespace.Close,{className:"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground",children:[jsxRuntime.jsx(lucideReact.X,{className:"h-4 w-4"}),jsxRuntime.jsx("span",{className:"sr-only",children:"Close"})]})]}))]})});jt.displayName=R__namespace.Content.displayName;var ea=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("flex flex-col space-y-1.5 text-center sm:text-left",t)},e))};ea.displayName="DialogHeader";var ta=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",t)},e))};ta.displayName="DialogFooter";var aa=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(R__namespace.Title,i({ref:a,className:n("text-lg font-semibold leading-none tracking-tight",t)},e))});aa.displayName=R__namespace.Title.displayName;var oa=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(R__namespace.Description,i({ref:a,className:n("text-sm text-muted-foreground",t)},e))});oa.displayName=R__namespace.Description.displayName;var ve=p__namespace.forwardRef((d,o)=>{var l=d,{className:t,orientation:e="horizontal",decorative:a=true}=l,r=s(l,["className","orientation","decorative"]);return jsxRuntime.jsx(be__namespace.Root,i({ref:o,decorative:a,orientation:e,className:n("shrink-0 bg-border",e==="horizontal"?"h-[1px] w-full":"h-full w-[1px]",t)},r))});ve.displayName=be__namespace.Root.displayName;var $e=R__namespace.Root,kr=R__namespace.Trigger,Vr=R__namespace.Close,sa=R__namespace.Portal,Ke=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(R__namespace.Overlay,f(i({className:n("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",t)},e),{ref:a}))});Ke.displayName=R__namespace.Overlay.displayName;var da=classVarianceAuthority.cva("fixed z-50 gap-4 bg-background p-6 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500 data-[state=open]:animate-in data-[state=closed]:animate-out",{variants:{side:{top:"inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",bottom:"inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",left:"inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",right:"inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm"}},defaultVariants:{side:"right"}}),he=p__namespace.forwardRef((d,o)=>{var l=d,{side:t="right",className:e,children:a}=l,r=s(l,["side","className","children"]);return jsxRuntime.jsxs(sa,{children:[jsxRuntime.jsx(Ke,{}),jsxRuntime.jsxs(R__namespace.Content,f(i({ref:o,className:n(da({side:t}),e)},r),{children:[jsxRuntime.jsxs(R__namespace.Close,{className:"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-secondary",children:[jsxRuntime.jsx(lucideReact.X,{className:"h-4 w-4"}),jsxRuntime.jsx("span",{className:"sr-only",children:"Close"})]}),a]}))]})});he.displayName=R__namespace.Content.displayName;var ye=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("flex flex-col space-y-2 text-center sm:text-left",t)},e))};ye.displayName="SheetHeader";var la=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",t)},e))};la.displayName="SheetFooter";var xe=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(R__namespace.Title,i({ref:a,className:n("text-lg font-semibold text-foreground",t)},e))});xe.displayName=R__namespace.Title.displayName;var we=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(R__namespace.Description,i({ref:a,className:n("text-sm text-muted-foreground",t)},e))});we.displayName=R__namespace.Description.displayName;function Pe(a){var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("animate-pulse rounded-md bg-primary/10",t)},e))}var qe=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(H__namespace.Root,i({ref:a,className:n("relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full",t)},e))});qe.displayName=H__namespace.Root.displayName;var Ue=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(H__namespace.Image,i({ref:a,className:n("aspect-square h-full w-full",t)},e))});Ue.displayName=H__namespace.Image.displayName;var Xe=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(H__namespace.Fallback,i({ref:a,className:n("flex h-full w-full items-center justify-center rounded-full bg-muted",t)},e))});Xe.displayName=H__namespace.Fallback.displayName;var Qe=L__namespace.Provider,Ze=L__namespace.Root,je=L__namespace.Trigger,Me=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,sideOffset:e=4}=d,a=s(d,["className","sideOffset"]);return jsxRuntime.jsx(L__namespace.Portal,{children:jsxRuntime.jsx(L__namespace.Content,i({ref:r,sideOffset:e,className:n("z-50 overflow-hidden rounded-md bg-primary px-3 py-1.5 text-xs text-primary-foreground animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-tooltip-content-transform-origin]",t)},a))})});Me.displayName=L__namespace.Content.displayName;var De=classVarianceAuthority.cva("inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",{variants:{variant:{default:"border-transparent bg-primary text-primary-foreground hover:bg-primary/80",secondary:"border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80",destructive:"border-transparent bg-destructive text-destructive-foreground hover:bg-destructive/80",outline:"text-foreground",success:"border-transparent bg-green-500 text-white hover:bg-green-500/80",warning:"border-transparent bg-yellow-500 text-white hover:bg-yellow-500/80",info:"border-transparent bg-blue-500 text-white hover:bg-blue-500/80"},size:{default:"h-5",sm:"h-4 text-[10px]",lg:"h-6 text-sm"}},defaultVariants:{variant:"default",size:"default"}});var at=p__namespace.forwardRef((g,u)=>{var b=g,{className:t,variant:e,size:a,icon:r,iconAfter:o,children:d}=b,l=s(b,["className","variant","size","icon","iconAfter","children"]);return jsxRuntime.jsxs("div",f(i({ref:u,className:n(De({variant:e,size:a}),t)},l),{children:[r&&jsxRuntime.jsx("span",{className:"mr-1",children:r}),d,o&&jsxRuntime.jsx("span",{className:"ml-1",children:o})]}))});at.displayName="Badge";var va=reactHookForm.FormProvider,ot=p__namespace.createContext({}),Ce=e=>{var t=s(e,[]);return jsxRuntime.jsx(ot.Provider,{value:{name:t.name},children:jsxRuntime.jsx(reactHookForm.Controller,i({},t))})},j=()=>{let t=p__namespace.useContext(ot),e=p__namespace.useContext(rt),{getFieldState:a,formState:r}=reactHookForm.useFormContext(),o=a(t.name,r);if(!t)throw new Error("useFormField should be used within <FormField>");let{id:d}=e;return i({id:d,name:t.name,formItemId:`${d}-form-item`,formDescriptionId:`${d}-form-item-description`,formMessageId:`${d}-form-item-message`},o)},rt=p__namespace.createContext({}),ne=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);let d=p__namespace.useId();return jsxRuntime.jsx(rt.Provider,{value:{id:d},children:jsxRuntime.jsx("div",i({ref:a,className:n("space-y-2",t)},e))})});ne.displayName="FormItem";var se=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);let{error:d,formItemId:l}=j();return jsxRuntime.jsx(U,i({ref:a,className:n(d&&"text-destructive",t),htmlFor:l},e))});se.displayName="FormLabel";var de=p__namespace.forwardRef((a,e)=>{var t=s(a,[]);let{error:r,formItemId:o,formDescriptionId:d,formMessageId:l}=j();return jsxRuntime.jsx(reactSlot.Slot,i({ref:e,id:o,"aria-describedby":r?`${d} ${l}`:`${d}`,"aria-invalid":!!r},t))});de.displayName="FormControl";var le=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);let{formDescriptionId:d}=j();return jsxRuntime.jsx("p",i({ref:a,id:d,className:n("text-[0.8rem] text-muted-foreground",t)},e))});le.displayName="FormDescription";var me=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,children:e}=d,a=s(d,["className","children"]);var b;let{error:l,formMessageId:u}=j(),g=l?String((b=l==null?void 0:l.message)!=null?b:""):e;return g?jsxRuntime.jsx("p",f(i({ref:r,id:u,className:n("text-[0.8rem] font-medium text-destructive",t)},a),{children:g})):null});me.displayName="FormMessage";var ha=classVarianceAuthority.cva("",{variants:{variant:{h1:"scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl",h2:"scroll-m-20 text-3xl font-semibold tracking-tight",h3:"scroll-m-20 text-2xl font-semibold tracking-tight",h4:"scroll-m-20 text-xl font-semibold tracking-tight",h5:"scroll-m-20 text-lg font-semibold tracking-tight",h6:"scroll-m-20 text-base font-semibold tracking-tight",p:"leading-7 [&:not(:first-child)]:mt-6",blockquote:"mt-6 border-l-2 border-slate-300 pl-6 italic",list:"my-6 ml-6 list-disc [&>li]:mt-2",lead:"text-xl text-muted-foreground",large:"text-lg font-semibold",small:"text-sm font-medium leading-none",muted:"text-sm text-muted-foreground"},align:{left:"text-left",center:"text-center",right:"text-right",justify:"text-justify"}},defaultVariants:{variant:"p",align:"left"}}),ya=p__namespace.forwardRef((l,d)=>{var u=l,{className:t,variant:e,align:a,as:r="p"}=u,o=s(u,["className","variant","align","as"]);return jsxRuntime.jsx(r,i({className:n(ha({variant:e,align:a,className:t})),ref:d},o))});ya.displayName="Typography";function Mi({className:t,size:e="default",text:a,color:r="primary"}){let o={sm:"h-4 w-4",default:"h-8 w-8",lg:"h-12 w-12"},l={primary:"text-primary",secondary:"text-secondary",accent:"text-accent",muted:"text-muted-foreground",destructive:"text-destructive"}[r]||`text-[${r}]`;return jsxRuntime.jsxs("div",{className:n("fixed inset-0 z-50 flex min-h-screen flex-col items-center justify-center bg-background/80 backdrop-blur-sm",t),role:"alert","aria-live":"assertive",children:[jsxRuntime.jsx(lucideReact.Loader2,{className:n("animate-spin",l,o[e]),"aria-hidden":"true"}),a&&jsxRuntime.jsx("p",{className:"mt-4 text-sm text-muted-foreground","aria-label":a,children:a})]})}var Na=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,className:n("rounded-lg border bg-card text-card-foreground shadow-sm",t)},e))});Na.displayName="Card";var Ma=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,className:n("flex flex-col space-y-1.5 p-6",t)},e))});Ma.displayName="CardHeader";var Da=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("h3",i({ref:a,className:n("text-2xl font-semibold leading-none tracking-tight",t)},e))});Da.displayName="CardTitle";var Ca=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("p",i({ref:a,className:n("text-sm text-muted-foreground",t)},e))});Ca.displayName="CardDescription";var Sa=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,className:n("p-6 pt-0",t)},e))});Sa.displayName="CardContent";var Ta=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,className:n("flex items-center p-6 pt-0",t)},e))});Ta.displayName="CardFooter";var st=classVarianceAuthority.cva("group inline-flex h-10 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[active]:bg-accent/50 data-[state=open]:bg-accent/50",{variants:{variant:{default:"text-foreground",ghost:"hover:bg-transparent hover:underline",link:"text-primary underline-offset-4 hover:underline",mobile:"w-full justify-between border-b border-border py-4 text-base font-medium"}},defaultVariants:{variant:"default"}});var dt=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,children:e}=d,a=s(d,["className","children"]);return jsxRuntime.jsxs(v__namespace.Root,f(i({ref:r,className:n("relative z-10 flex max-w-max flex-1 items-center justify-center",t)},a),{children:[e,jsxRuntime.jsx(Se,{})]}))});dt.displayName=v__namespace.Root.displayName;var lt=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(v__namespace.List,i({ref:a,className:n("group flex flex-1 list-none items-center justify-center space-x-1",t)},e))});lt.displayName=v__namespace.List.displayName;var Ea=v__namespace.Item,mt=p__namespace.forwardRef((d,o)=>{var l=d,{className:t,children:e,variant:a}=l,r=s(l,["className","children","variant"]);return jsxRuntime.jsxs(v__namespace.Trigger,f(i({ref:o,className:n(st({variant:a}),t)},r),{children:[e," ",jsxRuntime.jsx(lucideReact.ChevronDown,{className:"relative top-[1px] ml-1 h-3 w-3 transition duration-200 group-data-[state=open]:rotate-180","aria-hidden":"true"})]}))});mt.displayName=v__namespace.Trigger.displayName;var pt=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(v__namespace.Content,i({ref:a,className:n("left-0 top-0 w-full data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 md:absolute md:w-auto",t)},e))});pt.displayName=v__namespace.Content.displayName;var Ia=v__namespace.Link,Se=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",{className:n("absolute left-0 top-full flex justify-center"),children:jsxRuntime.jsx(v__namespace.Viewport,i({className:n("origin-top-center relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 md:w-[var(--radix-navigation-menu-viewport-width)]",t),ref:a},e))})});Se.displayName=v__namespace.Viewport.displayName;var ct=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(v__namespace.Indicator,f(i({ref:a,className:n("top-full z-[1] flex h-1.5 items-end justify-center overflow-hidden data-[state=visible]:animate-in data-[state=hidden]:animate-out data-[state=hidden]:fade-out data-[state=visible]:fade-in",t)},e),{children:jsxRuntime.jsx("div",{className:"relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm bg-border shadow-md"})}))});ct.displayName=v__namespace.Indicator.displayName;function Ui(V){var S=V,{name:t,label:e,description:a,className:r,type:o="text",warningText:d,required:l,disabled:u,readOnly:g,placeholder:b,"aria-label":y,"aria-describedby":x,onBlur:w}=S,D=s(S,["name","label","description","className","type","warningText","required","disabled","readOnly","placeholder","aria-label","aria-describedby","onBlur"]);let{control:C}=reactHookForm.useFormContext();return jsxRuntime.jsx(Ce,{name:t,control:C,render:({field:P,fieldState:{error:E}})=>jsxRuntime.jsxs(ne,{children:[e&&jsxRuntime.jsxs(se,{children:[e,l&&jsxRuntime.jsx("span",{className:"text-destructive ml-1",children:"*"})]}),jsxRuntime.jsx(de,{children:jsxRuntime.jsx(G,i(f(i({},P),{type:o,value:o==="number"&&P.value===0?"":P.value,onChange:T=>{o==="number"?P.onChange(Number(T.target.value)):P.onChange(T.target.value);},onBlur:T=>{o!=="number"&&typeof P.value=="string"&&P.onChange(P.value.trim()),P.onBlur(),w==null||w(T);},className:n(E&&"border-destructive focus-visible:ring-destructive",r),disabled:u,readOnly:g,required:l,placeholder:b,"aria-label":y,"aria-describedby":x,"aria-invalid":!!E,"aria-required":l}),D))}),a&&jsxRuntime.jsx(le,{children:a}),E&&jsxRuntime.jsx(me,{children:E.message}),!E&&d&&jsxRuntime.jsx("p",{className:"text-sm text-yellow-600 dark:text-yellow-500",role:"alert",children:d})]})})}var ka=a=>{var r=a,{shouldScaleBackground:t=true}=r,e=s(r,["shouldScaleBackground"]);return jsxRuntime.jsx(vaul.Drawer.Root,i({shouldScaleBackground:t},e))};ka.displayName="Drawer";var ji=vaul.Drawer.Trigger,Va=vaul.Drawer.Portal,en=vaul.Drawer.Close,bt=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(vaul.Drawer.Overlay,i({ref:a,className:n("fixed inset-0 z-50 bg-black/80",t)},e))});bt.displayName=vaul.Drawer.Overlay.displayName;var Aa=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,children:e}=d,a=s(d,["className","children"]);return jsxRuntime.jsxs(Va,{children:[jsxRuntime.jsx(bt,{}),jsxRuntime.jsxs(vaul.Drawer.Content,f(i({ref:r,className:n("fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] border bg-background",t)},a),{children:[jsxRuntime.jsx("div",{className:"mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted"}),e]}))]})});Aa.displayName="DrawerContent";var za=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("grid gap-1.5 p-4 text-center sm:text-left",t)},e))};za.displayName="DrawerHeader";var Ba=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("div",i({className:n("mt-auto flex flex-col gap-2 p-4",t)},e))};Ba.displayName="DrawerFooter";var Oa=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(vaul.Drawer.Title,i({ref:a,className:n("text-lg font-semibold leading-none tracking-tight",t)},e))});Oa.displayName=vaul.Drawer.Title.displayName;var _a=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(vaul.Drawer.Description,i({ref:a,className:n("text-sm text-muted-foreground",t)},e))});_a.displayName=vaul.Drawer.Description.displayName;var Te=768;function vt(){let[t,e]=p__namespace.useState(void 0);return p__namespace.useEffect(()=>{let a=window.matchMedia(`(max-width: ${Te-1}px)`),r=()=>{e(window.innerWidth<Te);};return a.addEventListener("change",r),e(window.innerWidth<Te),()=>a.removeEventListener("change",r)},[]),!!t}var $a="sidebar_state",Ka=60*60*24*7,qa="16rem",Ua="18rem",Xa="3rem",Ya="b",Rt=p__namespace.createContext(null);function ce(){let t=p__namespace.useContext(Rt);if(!t)throw new Error("useSidebar must be used within a SidebarProvider.");return t}var Ja=p__namespace.forwardRef((g,u)=>{var b=g,{defaultOpen:t=true,open:e,onOpenChange:a,className:r,style:o,children:d}=b,l=s(b,["defaultOpen","open","onOpenChange","className","style","children"]);let y=vt(),[x,w]=p__namespace.useState(false),[D,V]=p__namespace.useState(t),S=e!=null?e:D,C=p__namespace.useCallback(I=>{let A=typeof I=="function"?I(S):I;a?a(A):V(A),document.cookie=`${$a}=${A}; path=/; max-age=${Ka}`;},[a,S]),P=p__namespace.useCallback(()=>y?w(I=>!I):C(I=>!I),[y,C,w]);p__namespace.useEffect(()=>{let I=A=>{A.key===Ya&&(A.metaKey||A.ctrlKey)&&(A.preventDefault(),P());};return window.addEventListener("keydown",I),()=>window.removeEventListener("keydown",I)},[P]);let E=S?"expanded":"collapsed",T=p__namespace.useMemo(()=>({state:E,open:S,setOpen:C,isMobile:y,openMobile:x,setOpenMobile:w,toggleSidebar:P}),[E,S,C,y,x,w,P]);return jsxRuntime.jsx(Rt.Provider,{value:T,children:jsxRuntime.jsx(Qe,{delayDuration:0,children:jsxRuntime.jsx("div",f(i({style:i({"--sidebar-width":qa,"--sidebar-width-icon":Xa},o),className:n("group/sidebar-wrapper flex min-h-svh w-full has-[[data-variant=inset]]:bg-sidebar",r),ref:u},l),{children:d}))})})});Ja.displayName="SidebarProvider";var Qa=p__namespace.forwardRef((u,l)=>{var g=u,{side:t="left",variant:e="sidebar",collapsible:a="offcanvas",className:r,children:o}=g,d=s(g,["side","variant","collapsible","className","children"]);let{isMobile:b,state:y,openMobile:x,setOpenMobile:w}=ce();return a==="none"?jsxRuntime.jsx("div",f(i({className:n("flex h-full w-[--sidebar-width] flex-col bg-sidebar text-sidebar-foreground",r),ref:l},d),{children:o})):b?jsxRuntime.jsx($e,f(i({open:x,onOpenChange:w},d),{children:jsxRuntime.jsxs(he,{"data-sidebar":"sidebar","data-mobile":"true",className:"w-[--sidebar-width] bg-sidebar p-0 text-sidebar-foreground [&>button]:hidden",style:{"--sidebar-width":Ua},side:t,children:[jsxRuntime.jsxs(ye,{className:"sr-only",children:[jsxRuntime.jsx(xe,{children:"Sidebar"}),jsxRuntime.jsx(we,{children:"Displays the mobile sidebar."})]}),jsxRuntime.jsx("div",{className:"flex h-full w-full flex-col",children:o})]})})):jsxRuntime.jsxs("div",{ref:l,className:"group peer hidden text-sidebar-foreground md:block","data-state":y,"data-collapsible":y==="collapsed"?a:"","data-variant":e,"data-side":t,children:[jsxRuntime.jsx("div",{className:n("relative w-[--sidebar-width] bg-transparent transition-[width] duration-200 ease-linear","group-data-[collapsible=offcanvas]:w-0","group-data-[side=right]:rotate-180",e==="floating"||e==="inset"?"group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4))]":"group-data-[collapsible=icon]:w-[--sidebar-width-icon]")}),jsxRuntime.jsx("div",f(i({className:n("fixed inset-y-0 z-10 hidden h-svh w-[--sidebar-width] transition-[left,right,width] duration-200 ease-linear md:flex",t==="left"?"left-0 group-data-[collapsible=offcanvas]:left-[calc(var(--sidebar-width)*-1)]":"right-0 group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)]",e==="floating"||e==="inset"?"p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4)_+2px)]":"group-data-[collapsible=icon]:w-[--sidebar-width-icon] group-data-[side=left]:border-r group-data-[side=right]:border-l",r)},d),{children:jsxRuntime.jsx("div",{"data-sidebar":"sidebar",className:"flex h-full w-full flex-col bg-sidebar group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-sidebar-border group-data-[variant=floating]:shadow",children:o})}))]})});Qa.displayName="Sidebar";var Za=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,onClick:e}=d,a=s(d,["className","onClick"]);let{toggleSidebar:l}=ce();return jsxRuntime.jsxs(fe,f(i({ref:r,"data-sidebar":"trigger",variant:"ghost",size:"icon",className:n("h-7 w-7",t),onClick:u=>{e==null||e(u),l();}},a),{children:[jsxRuntime.jsx(lucideReact.PanelLeft,{}),jsxRuntime.jsx("span",{className:"sr-only",children:"Toggle Sidebar"})]}))});Za.displayName="SidebarTrigger";var ja=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);let{toggleSidebar:d}=ce();return jsxRuntime.jsx("button",i({ref:a,"data-sidebar":"rail","aria-label":"Toggle Sidebar",tabIndex:-1,onClick:d,title:"Toggle Sidebar",className:n("absolute inset-y-0 z-20 hidden w-4 -translate-x-1/2 transition-all ease-linear after:absolute after:inset-y-0 after:left-1/2 after:w-[2px] hover:after:bg-sidebar-border group-data-[side=left]:-right-4 group-data-[side=right]:left-0 sm:flex","[[data-side=left]_&]:cursor-w-resize [[data-side=right]_&]:cursor-e-resize","[[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=right][data-state=collapsed]_&]:cursor-w-resize","group-data-[collapsible=offcanvas]:translate-x-0 group-data-[collapsible=offcanvas]:after:left-full group-data-[collapsible=offcanvas]:hover:bg-sidebar","[[data-side=left][data-collapsible=offcanvas]_&]:-right-2","[[data-side=right][data-collapsible=offcanvas]_&]:-left-2",t)},e))});ja.displayName="SidebarRail";var eo=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("main",i({ref:a,className:n("relative flex w-full flex-1 flex-col bg-background","md:peer-data-[variant=inset]:m-2 md:peer-data-[state=collapsed]:peer-data-[variant=inset]:ml-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow",t)},e))});eo.displayName="SidebarInset";var to=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(G,i({ref:a,"data-sidebar":"input",className:n("h-8 w-full bg-background shadow-none focus-visible:ring-2 focus-visible:ring-sidebar-ring",t)},e))});to.displayName="SidebarInput";var ao=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,"data-sidebar":"header",className:n("flex flex-col gap-2 p-2",t)},e))});ao.displayName="SidebarHeader";var oo=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,"data-sidebar":"footer",className:n("flex flex-col gap-2 p-2",t)},e))});oo.displayName="SidebarFooter";var ro=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(ve,i({ref:a,"data-sidebar":"separator",className:n("mx-2 w-auto bg-sidebar-border",t)},e))});ro.displayName="SidebarSeparator";var io=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,"data-sidebar":"content",className:n("flex min-h-0 flex-1 flex-col gap-2 overflow-auto group-data-[collapsible=icon]:overflow-hidden",t)},e))});io.displayName="SidebarContent";var no=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,"data-sidebar":"group",className:n("relative flex w-full min-w-0 flex-col p-2",t)},e))});no.displayName="SidebarGroup";var so=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,asChild:e=false}=d,a=s(d,["className","asChild"]);return jsxRuntime.jsx(e?reactSlot.Slot:"div",i({ref:r,"data-sidebar":"group-label",className:n("flex h-8 shrink-0 items-center rounded-md px-2 text-xs font-medium text-sidebar-foreground/70 outline-none ring-sidebar-ring transition-[margin,opacity] duration-200 ease-linear focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0","group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0",t)},a))});so.displayName="SidebarGroupLabel";var lo=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,asChild:e=false}=d,a=s(d,["className","asChild"]);return jsxRuntime.jsx(e?reactSlot.Slot:"button",i({ref:r,"data-sidebar":"group-action",className:n("absolute right-3 top-3.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0","after:absolute after:-inset-2 after:md:hidden","group-data-[collapsible=icon]:hidden",t)},a))});lo.displayName="SidebarGroupAction";var mo=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,"data-sidebar":"group-content",className:n("w-full text-sm",t)},e))});mo.displayName="SidebarGroupContent";var po=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("ul",i({ref:a,"data-sidebar":"menu",className:n("flex w-full min-w-0 flex-col gap-1",t)},e))});po.displayName="SidebarMenu";var co=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("li",i({ref:a,"data-sidebar":"menu-item",className:n("group/menu-item relative",t)},e))});co.displayName="SidebarMenuItem";var fo=classVarianceAuthority.cva("peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-none ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:!p-2 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0",{variants:{variant:{default:"hover:bg-sidebar-accent hover:text-sidebar-accent-foreground",outline:"bg-background shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]"},size:{default:"h-8 text-sm",sm:"h-7 text-xs",lg:"h-12 text-sm group-data-[collapsible=icon]:!p-0"}},defaultVariants:{variant:"default",size:"default"}}),uo=p__namespace.forwardRef((g,u)=>{var b=g,{asChild:t=false,isActive:e=false,variant:a="default",size:r="default",tooltip:o,className:d}=b,l=s(b,["asChild","isActive","variant","size","tooltip","className"]);let y=t?reactSlot.Slot:"button",{isMobile:x,state:w}=ce(),D=jsxRuntime.jsx(y,i({ref:u,"data-sidebar":"menu-button","data-size":r,"data-active":e,className:n(fo({variant:a,size:r}),d)},l));return o?(typeof o=="string"&&(o={children:o}),jsxRuntime.jsxs(Ze,{children:[jsxRuntime.jsx(je,{asChild:true,children:D}),jsxRuntime.jsx(Me,i({side:"right",align:"center",hidden:w!=="collapsed"||x},o))]})):D});uo.displayName="SidebarMenuButton";var go=p__namespace.forwardRef((d,o)=>{var l=d,{className:t,asChild:e=false,showOnHover:a=false}=l,r=s(l,["className","asChild","showOnHover"]);return jsxRuntime.jsx(e?reactSlot.Slot:"button",i({ref:o,"data-sidebar":"menu-action",className:n("absolute right-1 top-1.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 peer-hover/menu-button:text-sidebar-accent-foreground [&>svg]:size-4 [&>svg]:shrink-0","after:absolute after:-inset-2 after:md:hidden","peer-data-[size=sm]/menu-button:top-1","peer-data-[size=default]/menu-button:top-1.5","peer-data-[size=lg]/menu-button:top-2.5","group-data-[collapsible=icon]:hidden",a&&"group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 peer-data-[active=true]/menu-button:text-sidebar-accent-foreground md:opacity-0",t)},r))});go.displayName="SidebarMenuAction";var bo=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("div",i({ref:a,"data-sidebar":"menu-badge",className:n("pointer-events-none absolute right-1 flex h-5 min-w-5 select-none items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums text-sidebar-foreground","peer-hover/menu-button:text-sidebar-accent-foreground peer-data-[active=true]/menu-button:text-sidebar-accent-foreground","peer-data-[size=sm]/menu-button:top-1","peer-data-[size=default]/menu-button:top-1.5","peer-data-[size=lg]/menu-button:top-2.5","group-data-[collapsible=icon]:hidden",t)},e))});bo.displayName="SidebarMenuBadge";var vo=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,showIcon:e=false}=d,a=s(d,["className","showIcon"]);let l=p__namespace.useMemo(()=>`${Math.floor(Math.random()*40)+50}%`,[]);return jsxRuntime.jsxs("div",f(i({ref:r,"data-sidebar":"menu-skeleton",className:n("flex h-8 items-center gap-2 rounded-md px-2",t)},a),{children:[e&&jsxRuntime.jsx(Pe,{className:"size-4 rounded-md","data-sidebar":"menu-skeleton-icon"}),jsxRuntime.jsx(Pe,{className:"h-4 max-w-[--skeleton-width] flex-1","data-sidebar":"menu-skeleton-text",style:{"--skeleton-width":l}})]}))});vo.displayName="SidebarMenuSkeleton";var Ro=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx("ul",i({ref:a,"data-sidebar":"menu-sub",className:n("mx-3.5 flex min-w-0 translate-x-px flex-col gap-1 border-l border-sidebar-border px-2.5 py-0.5","group-data-[collapsible=icon]:hidden",t)},e))});Ro.displayName="SidebarMenuSub";var ho=p__namespace.forwardRef((a,e)=>{var t=s(a,[]);return jsxRuntime.jsx("li",i({ref:e},t))});ho.displayName="SidebarMenuSubItem";var yo=p__namespace.forwardRef((l,d)=>{var u=l,{asChild:t=false,size:e="md",isActive:a,className:r}=u,o=s(u,["asChild","size","isActive","className"]);return jsxRuntime.jsx(t?reactSlot.Slot:"a",i({ref:d,"data-sidebar":"menu-sub-button","data-size":e,"data-active":a,className:n("flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md px-2 text-sidebar-foreground outline-none ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0 [&>svg]:text-sidebar-accent-foreground","data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground",e==="sm"&&"text-xs",e==="md"&&"text-sm","group-data-[collapsible=icon]:hidden",r)},o))});yo.displayName="SidebarMenuSubButton";var No=m__namespace.Root,Mo=m__namespace.Trigger,Do=m__namespace.Group,Co=m__namespace.Portal,So=m__namespace.Sub,To=m__namespace.RadioGroup,ht=p__namespace.forwardRef((d,o)=>{var l=d,{className:t,inset:e,children:a}=l,r=s(l,["className","inset","children"]);return jsxRuntime.jsxs(m__namespace.SubTrigger,f(i({ref:o,className:n("flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[state=open]:bg-accent",e&&"pl-8",t)},r),{children:[a,jsxRuntime.jsx(lucideReact.ChevronRight,{className:"ml-auto h-4 w-4"})]}))});ht.displayName=m__namespace.SubTrigger.displayName;var yt=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(m__namespace.SubContent,i({ref:a,className:n("z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",t)},e))});yt.displayName=m__namespace.SubContent.displayName;var xt=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,sideOffset:e=4}=d,a=s(d,["className","sideOffset"]);return jsxRuntime.jsx(m__namespace.Portal,{children:jsxRuntime.jsx(m__namespace.Content,i({ref:r,sideOffset:e,className:n("z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",t)},a))})});xt.displayName=m__namespace.Content.displayName;var wt=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,inset:e}=d,a=s(d,["className","inset"]);return jsxRuntime.jsx(m__namespace.Item,i({ref:r,className:n("relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",e&&"pl-8",t)},a))});wt.displayName=m__namespace.Item.displayName;var Pt=p__namespace.forwardRef((d,o)=>{var l=d,{className:t,children:e,checked:a}=l,r=s(l,["className","children","checked"]);return jsxRuntime.jsxs(m__namespace.CheckboxItem,f(i({ref:o,className:n("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",t),checked:a},r),{children:[jsxRuntime.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:jsxRuntime.jsx(m__namespace.ItemIndicator,{children:jsxRuntime.jsx(lucideReact.Check,{className:"h-4 w-4"})})}),e]}))});Pt.displayName=m__namespace.CheckboxItem.displayName;var Nt=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,children:e}=d,a=s(d,["className","children"]);return jsxRuntime.jsxs(m__namespace.RadioItem,f(i({ref:r,className:n("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",t)},a),{children:[jsxRuntime.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:jsxRuntime.jsx(m__namespace.ItemIndicator,{children:jsxRuntime.jsx(lucideReact.Circle,{className:"h-2 w-2 fill-current"})})}),e]}))});Nt.displayName=m__namespace.RadioItem.displayName;var Mt=p__namespace.forwardRef((o,r)=>{var d=o,{className:t,inset:e}=d,a=s(d,["className","inset"]);return jsxRuntime.jsx(m__namespace.Label,i({ref:r,className:n("px-2 py-1.5 text-sm font-semibold",e&&"pl-8",t)},a))});Mt.displayName=m__namespace.Label.displayName;var Dt=p__namespace.forwardRef((r,a)=>{var o=r,{className:t}=o,e=s(o,["className"]);return jsxRuntime.jsx(m__namespace.Separator,i({ref:a,className:n("-mx-1 my-1 h-px bg-muted",t)},e))});Dt.displayName=m__namespace.Separator.displayName;var Ct=a=>{var r=a,{className:t}=r,e=s(r,["className"]);return jsxRuntime.jsx("span",i({className:n("ml-auto text-xs tracking-widest opacity-60",t)},e))};Ct.displayName="DropdownMenuShortcut";exports.Avatar=qe;exports.AvatarFallback=Xe;exports.AvatarImage=Ue;exports.Badge=at;exports.Box=Ut;exports.Button=fe;exports.Card=Na;exports.CardContent=Sa;exports.CardDescription=Ca;exports.CardFooter=Ta;exports.CardHeader=Ma;exports.CardTitle=Da;exports.Container=Kt;exports.Dialog=wr;exports.DialogClose=Nr;exports.DialogContent=jt;exports.DialogDescription=oa;exports.DialogFooter=ta;exports.DialogHeader=ea;exports.DialogOverlay=We;exports.DialogPortal=Zt;exports.DialogTitle=aa;exports.DialogTrigger=Pr;exports.Drawer=ka;exports.DrawerClose=en;exports.DrawerContent=Aa;exports.DrawerDescription=_a;exports.DrawerFooter=Ba;exports.DrawerHeader=za;exports.DrawerOverlay=bt;exports.DrawerPortal=Va;exports.DrawerTitle=Oa;exports.DrawerTrigger=ji;exports.DropdownMenu=No;exports.DropdownMenuCheckboxItem=Pt;exports.DropdownMenuContent=xt;exports.DropdownMenuGroup=Do;exports.DropdownMenuItem=wt;exports.DropdownMenuLabel=Mt;exports.DropdownMenuPortal=Co;exports.DropdownMenuRadioGroup=To;exports.DropdownMenuRadioItem=Nt;exports.DropdownMenuSeparator=Dt;exports.DropdownMenuShortcut=Ct;exports.DropdownMenuSub=So;exports.DropdownMenuSubContent=yt;exports.DropdownMenuSubTrigger=ht;exports.DropdownMenuTrigger=Mo;exports.Form=va;exports.FormControl=de;exports.FormDescription=le;exports.FormField=Ce;exports.FormItem=ne;exports.FormLabel=se;exports.FormMessage=me;exports.Input=G;exports.NavigationMenu=dt;exports.NavigationMenuContent=pt;exports.NavigationMenuIndicator=ct;exports.NavigationMenuItem=Ea;exports.NavigationMenuLink=Ia;exports.NavigationMenuList=lt;exports.NavigationMenuTrigger=mt;exports.NavigationMenuViewport=Se;exports.PageLoader=Mi;exports.RHFTextField=Ui;exports.Separator=ve;exports.Sheet=$e;exports.SheetClose=Vr;exports.SheetContent=he;exports.SheetDescription=we;exports.SheetFooter=la;exports.SheetHeader=ye;exports.SheetOverlay=Ke;exports.SheetPortal=sa;exports.SheetTitle=xe;exports.SheetTrigger=kr;exports.Sidebar=Qa;exports.SidebarContent=io;exports.SidebarFooter=oo;exports.SidebarGroup=no;exports.SidebarGroupAction=lo;exports.SidebarGroupContent=mo;exports.SidebarGroupLabel=so;exports.SidebarHeader=ao;exports.SidebarInput=to;exports.SidebarInset=eo;exports.SidebarMenu=po;exports.SidebarMenuAction=go;exports.SidebarMenuBadge=bo;exports.SidebarMenuButton=uo;exports.SidebarMenuItem=co;exports.SidebarMenuSkeleton=vo;exports.SidebarMenuSub=Ro;exports.SidebarMenuSubButton=yo;exports.SidebarMenuSubItem=ho;exports.SidebarProvider=Ja;exports.SidebarRail=ja;exports.SidebarSeparator=ro;exports.SidebarTrigger=Za;exports.Skeleton=Pe;exports.Stack=Yt;exports.TextField=$t;exports.Tooltip=Ze;exports.TooltipContent=Me;exports.TooltipProvider=Qe;exports.TooltipTrigger=je;exports.Typography=ya;exports.badgeVariants=De;exports.buttonVariants=He;exports.cn=n;exports.sidebarMenuButtonVariants=fo;exports.textFieldVariants=Gt;exports.typographyVariants=ha;exports.useFormField=j;exports.useIsMobile=vt;exports.useSidebar=ce;//# sourceMappingURL=index.js.map
|
|
2
2
|
//# sourceMappingURL=index.js.map
|