@olwiba/cn 0.1.43 → 0.1.47
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/email/index.d.ts +11 -11
- package/dist/index.d.ts +87 -85
- package/package.json +3 -3
package/dist/email/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react from 'react';
|
|
2
2
|
import { BodyProps, HeadProps, PreviewProps, HtmlProps, ContainerProps, SectionProps, TextProps, HeadingProps, LinkProps, ButtonProps } from '@react-email/components';
|
|
3
3
|
|
|
4
4
|
declare const emailTheme: {
|
|
@@ -19,34 +19,34 @@ type EmailRootProps = HtmlProps;
|
|
|
19
19
|
type EmailHeadProps = HeadProps;
|
|
20
20
|
type EmailBodyProps = BodyProps;
|
|
21
21
|
type EmailPreviewProps = PreviewProps;
|
|
22
|
-
declare function EmailRoot(props: EmailRootProps):
|
|
23
|
-
declare function EmailHead(props: EmailHeadProps):
|
|
24
|
-
declare function EmailBody(props: EmailBodyProps):
|
|
25
|
-
declare function EmailPreview(props: EmailPreviewProps):
|
|
22
|
+
declare function EmailRoot(props: EmailRootProps): react.JSX.Element;
|
|
23
|
+
declare function EmailHead(props: EmailHeadProps): react.JSX.Element;
|
|
24
|
+
declare function EmailBody(props: EmailBodyProps): react.JSX.Element;
|
|
25
|
+
declare function EmailPreview(props: EmailPreviewProps): react.JSX.Element;
|
|
26
26
|
|
|
27
27
|
type EmailContainerProps = ContainerProps;
|
|
28
|
-
declare function EmailContainer(props: EmailContainerProps):
|
|
28
|
+
declare function EmailContainer(props: EmailContainerProps): react.JSX.Element;
|
|
29
29
|
|
|
30
30
|
type EmailSectionProps = SectionProps;
|
|
31
|
-
declare function EmailSection(props: EmailSectionProps):
|
|
31
|
+
declare function EmailSection(props: EmailSectionProps): react.JSX.Element;
|
|
32
32
|
|
|
33
33
|
type EmailTextProps = TextProps & {
|
|
34
34
|
variant?: 'default' | 'muted' | 'caption';
|
|
35
35
|
};
|
|
36
|
-
declare function EmailText({ variant, style, ...props }: EmailTextProps):
|
|
36
|
+
declare function EmailText({ variant, style, ...props }: EmailTextProps): react.JSX.Element;
|
|
37
37
|
|
|
38
38
|
type EmailHeadingProps = HeadingProps;
|
|
39
|
-
declare function EmailHeading({ style, ...props }: EmailHeadingProps):
|
|
39
|
+
declare function EmailHeading({ style, ...props }: EmailHeadingProps): react.JSX.Element;
|
|
40
40
|
|
|
41
41
|
type EmailLinkProps = LinkProps & {
|
|
42
42
|
brandColor?: string;
|
|
43
43
|
};
|
|
44
|
-
declare function EmailLink({ brandColor, style, ...props }: EmailLinkProps):
|
|
44
|
+
declare function EmailLink({ brandColor, style, ...props }: EmailLinkProps): react.JSX.Element;
|
|
45
45
|
|
|
46
46
|
interface EmailButtonProps extends Omit<ButtonProps, 'children'> {
|
|
47
47
|
label: string;
|
|
48
48
|
brandColor?: string;
|
|
49
49
|
}
|
|
50
|
-
declare function EmailButton({ label, brandColor, style, ...props }: EmailButtonProps):
|
|
50
|
+
declare function EmailButton({ label, brandColor, style, ...props }: EmailButtonProps): react.JSX.Element;
|
|
51
51
|
|
|
52
52
|
export { EmailBody, type EmailBodyProps, EmailButton, type EmailButtonProps, EmailContainer, type EmailContainerProps, EmailHead, type EmailHeadProps, EmailHeading, type EmailHeadingProps, EmailLink, type EmailLinkProps, EmailPreview, type EmailPreviewProps, EmailRoot, type EmailRootProps, EmailSection, type EmailSectionProps, EmailText, type EmailTextProps, type EmailTheme, emailTheme };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ClassValue } from 'clsx';
|
|
2
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
2
|
import * as React$1 from 'react';
|
|
4
3
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
5
4
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
@@ -24,7 +23,6 @@ import * as vaul from 'vaul';
|
|
|
24
23
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
25
24
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
26
25
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
27
|
-
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
28
26
|
import * as react_hook_form from 'react-hook-form';
|
|
29
27
|
import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
30
28
|
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
@@ -56,7 +54,7 @@ type UIVariant = "playful" | "smooth" | "glass" | undefined;
|
|
|
56
54
|
declare function UIVariantProvider({ mode, children, }: {
|
|
57
55
|
mode: UIVariant;
|
|
58
56
|
children: React$1.ReactNode;
|
|
59
|
-
}):
|
|
57
|
+
}): React$1.JSX.Element;
|
|
60
58
|
declare function useUIVariant(): UIVariant;
|
|
61
59
|
|
|
62
60
|
type AccordionMode = "playful" | "smooth" | "glass";
|
|
@@ -90,11 +88,11 @@ declare const AlertDialogContent: React$1.ForwardRefExoticComponent<Omit<AlertDi
|
|
|
90
88
|
mode?: AlertDialogMode;
|
|
91
89
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
92
90
|
declare const AlertDialogHeader: {
|
|
93
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
91
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
94
92
|
displayName: string;
|
|
95
93
|
};
|
|
96
94
|
declare const AlertDialogFooter: {
|
|
97
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
95
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
98
96
|
displayName: string;
|
|
99
97
|
};
|
|
100
98
|
declare const AlertDialogTitle: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
@@ -122,7 +120,7 @@ interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProp
|
|
|
122
120
|
disabled?: boolean;
|
|
123
121
|
mode?: "playful";
|
|
124
122
|
}
|
|
125
|
-
declare function Badge({ className, variant, size, disabled, mode: modeProp, ...props }: BadgeProps):
|
|
123
|
+
declare function Badge({ className, variant, size, disabled, mode: modeProp, ...props }: BadgeProps): React$1.JSX.Element;
|
|
126
124
|
|
|
127
125
|
declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
128
126
|
separator?: React$1.ReactNode;
|
|
@@ -138,11 +136,11 @@ declare const BreadcrumbLink: React$1.ForwardRefExoticComponent<Omit<React$1.Det
|
|
|
138
136
|
} & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
139
137
|
declare const BreadcrumbPage: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
140
138
|
declare const BreadcrumbSeparator: {
|
|
141
|
-
({ children, className, ...props }: React$1.ComponentProps<"li">):
|
|
139
|
+
({ children, className, ...props }: React$1.ComponentProps<"li">): React$1.JSX.Element;
|
|
142
140
|
displayName: string;
|
|
143
141
|
};
|
|
144
142
|
declare const BreadcrumbEllipsis: {
|
|
145
|
-
({ className, ...props }: React$1.ComponentProps<"span">):
|
|
143
|
+
({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
|
|
146
144
|
displayName: string;
|
|
147
145
|
};
|
|
148
146
|
|
|
@@ -161,11 +159,11 @@ declare const Separator: React$1.ForwardRefExoticComponent<Omit<SeparatorPrimiti
|
|
|
161
159
|
declare const buttonGroupVariants: (props?: ({
|
|
162
160
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
163
161
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
164
|
-
declare function ButtonGroup({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>):
|
|
162
|
+
declare function ButtonGroup({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>): React$1.JSX.Element;
|
|
165
163
|
declare function ButtonGroupText({ className, asChild, ...props }: React.ComponentProps<"div"> & {
|
|
166
164
|
asChild?: boolean;
|
|
167
|
-
}):
|
|
168
|
-
declare function ButtonGroupSeparator({ className, orientation, ...props }: React.ComponentProps<typeof Separator>):
|
|
165
|
+
}): React$1.JSX.Element;
|
|
166
|
+
declare function ButtonGroupSeparator({ className, orientation, ...props }: React.ComponentProps<typeof Separator>): React$1.JSX.Element;
|
|
169
167
|
|
|
170
168
|
type CalendarSize = "sm" | "default" | "lg";
|
|
171
169
|
type CalendarUIMode = "playful" | "smooth";
|
|
@@ -174,8 +172,8 @@ declare function Calendar({ className, classNames, showOutsideDays, captionLayou
|
|
|
174
172
|
size?: CalendarSize;
|
|
175
173
|
uiMode?: CalendarUIMode;
|
|
176
174
|
disabled?: boolean;
|
|
177
|
-
}):
|
|
178
|
-
declare function CalendarDayButton({ className, day, modifiers, ...props }: React$1.ComponentProps<typeof DayButton>):
|
|
175
|
+
}): React$1.JSX.Element;
|
|
176
|
+
declare function CalendarDayButton({ className, day, modifiers, ...props }: React$1.ComponentProps<typeof DayButton>): React$1.JSX.Element;
|
|
179
177
|
|
|
180
178
|
interface CardProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
181
179
|
mode?: "playful" | "smooth" | "glass";
|
|
@@ -231,7 +229,7 @@ declare const ChartContainer: React$1.ForwardRefExoticComponent<Omit<React$1.Cla
|
|
|
231
229
|
declare const ChartStyle: ({ id, config }: {
|
|
232
230
|
id: string;
|
|
233
231
|
config: ChartConfig;
|
|
234
|
-
}) =>
|
|
232
|
+
}) => React$1.JSX.Element | null;
|
|
235
233
|
declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
236
234
|
declare const ChartTooltipContent: React$1.ForwardRefExoticComponent<Omit<RechartsPrimitive.DefaultTooltipContentProps<recharts_types_component_DefaultTooltipContent.ValueType, recharts_types_component_DefaultTooltipContent.NameType> & {
|
|
237
235
|
accessibilityLayer?: boolean;
|
|
@@ -298,7 +296,7 @@ declare const Command: React$1.ForwardRefExoticComponent<Omit<{
|
|
|
298
296
|
mode?: CommandMode;
|
|
299
297
|
disabled?: boolean;
|
|
300
298
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
301
|
-
declare const CommandDialog: ({ children, ...props }: DialogProps) =>
|
|
299
|
+
declare const CommandDialog: ({ children, ...props }: DialogProps) => React$1.JSX.Element;
|
|
302
300
|
declare const CommandInput: React$1.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "key" | keyof React$1.InputHTMLAttributes<HTMLInputElement>> & {
|
|
303
301
|
ref?: React$1.Ref<HTMLInputElement>;
|
|
304
302
|
} & {
|
|
@@ -357,7 +355,7 @@ declare const CommandItem: React$1.ForwardRefExoticComponent<Omit<{
|
|
|
357
355
|
declare const CommandShortcut: {
|
|
358
356
|
({ className, shortcut, children, ...props }: React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
359
357
|
shortcut?: string;
|
|
360
|
-
}):
|
|
358
|
+
}): React$1.JSX.Element;
|
|
361
359
|
displayName: string;
|
|
362
360
|
};
|
|
363
361
|
|
|
@@ -389,7 +387,7 @@ declare const ContextMenuSeparator: React$1.ForwardRefExoticComponent<Omit<Conte
|
|
|
389
387
|
declare const ContextMenuShortcut: {
|
|
390
388
|
({ className, shortcut, children, ...props }: React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
391
389
|
shortcut?: string;
|
|
392
|
-
}):
|
|
390
|
+
}): React$1.JSX.Element;
|
|
393
391
|
displayName: string;
|
|
394
392
|
};
|
|
395
393
|
|
|
@@ -441,18 +439,18 @@ declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimit
|
|
|
441
439
|
showCloseButton?: boolean;
|
|
442
440
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
443
441
|
declare const DialogHeader: {
|
|
444
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
442
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
445
443
|
displayName: string;
|
|
446
444
|
};
|
|
447
445
|
declare const DialogFooter: {
|
|
448
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
446
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
449
447
|
displayName: string;
|
|
450
448
|
};
|
|
451
449
|
declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
452
450
|
declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
453
451
|
|
|
454
452
|
declare const Drawer: {
|
|
455
|
-
({ shouldScaleBackground, ...props }: React$1.ComponentProps<typeof Drawer$1.Root>):
|
|
453
|
+
({ shouldScaleBackground, ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): React$1.JSX.Element;
|
|
456
454
|
displayName: string;
|
|
457
455
|
};
|
|
458
456
|
type ForwardRef<E, P> = React$1.ForwardRefExoticComponent<React$1.PropsWithoutRef<P> & React$1.RefAttributes<E>>;
|
|
@@ -465,11 +463,11 @@ declare const DrawerContent: ForwardRef<React$1.ElementRef<typeof Drawer$1.Conte
|
|
|
465
463
|
mode?: DrawerMode;
|
|
466
464
|
}>;
|
|
467
465
|
declare const DrawerHeader: {
|
|
468
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
466
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
469
467
|
displayName: string;
|
|
470
468
|
};
|
|
471
469
|
declare const DrawerFooter: {
|
|
472
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
470
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
473
471
|
displayName: string;
|
|
474
472
|
};
|
|
475
473
|
declare const DrawerTitle: ForwardRef<React$1.ElementRef<typeof Drawer$1.Title>, React$1.ComponentPropsWithoutRef<typeof Drawer$1.Title>>;
|
|
@@ -503,57 +501,57 @@ declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<Drop
|
|
|
503
501
|
declare const DropdownMenuShortcut: {
|
|
504
502
|
({ className, shortcut, children, ...props }: React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
505
503
|
shortcut?: string;
|
|
506
|
-
}):
|
|
504
|
+
}): React$1.JSX.Element;
|
|
507
505
|
displayName: string;
|
|
508
506
|
};
|
|
509
507
|
|
|
510
|
-
declare function Empty({ className, ...props }: React.ComponentProps<"div">):
|
|
511
|
-
declare function EmptyHeader({ className, ...props }: React.ComponentProps<"div">):
|
|
508
|
+
declare function Empty({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
|
|
509
|
+
declare function EmptyHeader({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
|
|
512
510
|
declare const emptyMediaVariants: (props?: ({
|
|
513
511
|
variant?: "default" | "icon" | null | undefined;
|
|
514
512
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
515
|
-
declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>):
|
|
516
|
-
declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">):
|
|
517
|
-
declare function EmptyDescription({ className, ...props }: React.ComponentProps<"p">):
|
|
518
|
-
declare function EmptyContent({ className, ...props }: React.ComponentProps<"div">):
|
|
513
|
+
declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): React$1.JSX.Element;
|
|
514
|
+
declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
|
|
515
|
+
declare function EmptyDescription({ className, ...props }: React.ComponentProps<"p">): React$1.JSX.Element;
|
|
516
|
+
declare function EmptyContent({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
|
|
519
517
|
|
|
520
518
|
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: ({
|
|
521
519
|
size?: "sm" | "default" | "lg" | null | undefined;
|
|
522
520
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
523
521
|
|
|
524
|
-
declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">):
|
|
522
|
+
declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">): React$1.JSX.Element;
|
|
525
523
|
declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<"legend"> & {
|
|
526
524
|
variant?: "legend" | "label";
|
|
527
|
-
}):
|
|
528
|
-
declare function FieldGroup({ className, ...props }: React.ComponentProps<"div">):
|
|
525
|
+
}): React$1.JSX.Element;
|
|
526
|
+
declare function FieldGroup({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
|
|
529
527
|
declare const fieldVariants: (props?: ({
|
|
530
528
|
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
531
529
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
532
530
|
declare function Field({ className, orientation, mode: modeProp, errorMessage, children, ...props }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants> & {
|
|
533
531
|
mode?: UIVariant;
|
|
534
532
|
errorMessage?: string;
|
|
535
|
-
}):
|
|
536
|
-
declare function FieldContent({ className, ...props }: React.ComponentProps<"div">):
|
|
537
|
-
declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>):
|
|
538
|
-
declare function FieldTitle({ className, ...props }: React.ComponentProps<"div">):
|
|
539
|
-
declare function FieldDescription({ className, ...props }: React.ComponentProps<"p">):
|
|
533
|
+
}): React$1.JSX.Element;
|
|
534
|
+
declare function FieldContent({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
|
|
535
|
+
declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>): React$1.JSX.Element;
|
|
536
|
+
declare function FieldTitle({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
|
|
537
|
+
declare function FieldDescription({ className, ...props }: React.ComponentProps<"p">): React$1.JSX.Element;
|
|
540
538
|
declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<"div"> & {
|
|
541
539
|
children?: React.ReactNode;
|
|
542
|
-
}):
|
|
540
|
+
}): React$1.JSX.Element;
|
|
543
541
|
declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<"div"> & {
|
|
544
542
|
errors?: Array<{
|
|
545
543
|
message?: string;
|
|
546
544
|
} | undefined>;
|
|
547
|
-
}):
|
|
545
|
+
}): React$1.JSX.Element | null;
|
|
548
546
|
|
|
549
|
-
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(
|
|
550
|
-
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) =>
|
|
547
|
+
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>({ children, watch, getValues, getErrors, getFieldState, setError, clearErrors, setValue, setValues, trigger, formState, resetField, reset, resetDefaultValues, handleSubmit, unregister, control, register, setFocus, subscribe, }: 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$1.JSX.Element;
|
|
551
549
|
declare const useFormField: () => {
|
|
552
550
|
invalid: boolean;
|
|
553
551
|
isDirty: boolean;
|
|
554
552
|
isTouched: boolean;
|
|
555
553
|
isValidating: boolean;
|
|
556
|
-
error?: react_hook_form.FieldError;
|
|
554
|
+
error?: react_hook_form.FieldError | undefined;
|
|
557
555
|
id: string;
|
|
558
556
|
name: string;
|
|
559
557
|
formItemId: string;
|
|
@@ -562,7 +560,9 @@ declare const useFormField: () => {
|
|
|
562
560
|
};
|
|
563
561
|
declare const FormItem: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
564
562
|
declare const FormLabel: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
565
|
-
declare const FormControl: React$1.ForwardRefExoticComponent<Omit<
|
|
563
|
+
declare const FormControl: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLElement> & {
|
|
564
|
+
children?: React$1.ReactNode;
|
|
565
|
+
} & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
566
566
|
declare const FormDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
567
567
|
declare const FormMessage: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
568
568
|
|
|
@@ -592,25 +592,25 @@ declare const Input: React$1.ForwardRefExoticComponent<Omit<InputProps, "ref"> &
|
|
|
592
592
|
declare function InputGroup({ className, mode: modeProp, disabled, ...props }: React$1.ComponentProps<"div"> & {
|
|
593
593
|
mode?: UIVariant;
|
|
594
594
|
disabled?: boolean;
|
|
595
|
-
}):
|
|
595
|
+
}): React$1.JSX.Element;
|
|
596
596
|
declare const inputGroupAddonVariants: (props?: ({
|
|
597
597
|
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
598
598
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
599
|
-
declare function InputGroupAddon({ className, align, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>):
|
|
599
|
+
declare function InputGroupAddon({ className, align, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): React$1.JSX.Element;
|
|
600
600
|
declare const inputGroupButtonVariants: (props?: ({
|
|
601
601
|
size?: "sm" | "xs" | "icon-xs" | "icon-sm" | null | undefined;
|
|
602
602
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
603
|
-
declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button>, "size"> & VariantProps<typeof inputGroupButtonVariants>):
|
|
604
|
-
declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">):
|
|
605
|
-
declare function InputGroupInput({ className, ...props }: React$1.ComponentProps<"input">):
|
|
606
|
-
declare function InputGroupTextarea({ className, ...props }: React$1.ComponentProps<"textarea">):
|
|
603
|
+
declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button>, "size"> & VariantProps<typeof inputGroupButtonVariants>): React$1.JSX.Element;
|
|
604
|
+
declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
|
|
605
|
+
declare function InputGroupInput({ className, ...props }: React$1.ComponentProps<"input">): React$1.JSX.Element;
|
|
606
|
+
declare function InputGroupTextarea({ className, ...props }: React$1.ComponentProps<"textarea">): React$1.JSX.Element;
|
|
607
607
|
|
|
608
608
|
type InputOTPSize = "sm" | "default" | "lg";
|
|
609
609
|
type InputOTPProps = Omit<React$1.ComponentPropsWithoutRef<typeof OTPInput>, "size"> & {
|
|
610
610
|
mode?: "playful" | "smooth";
|
|
611
611
|
size?: InputOTPSize;
|
|
612
612
|
};
|
|
613
|
-
declare const InputOTP: React$1.ForwardRefExoticComponent<Omit<Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
613
|
+
declare const InputOTP: React$1.ForwardRefExoticComponent<Omit<Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value" | "nonce" | "onChange" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
614
614
|
value?: string;
|
|
615
615
|
onChange?: (newValue: string) => unknown;
|
|
616
616
|
maxLength: number;
|
|
@@ -620,10 +620,11 @@ declare const InputOTP: React$1.ForwardRefExoticComponent<Omit<Omit<Omit<React$1
|
|
|
620
620
|
pasteTransformer?: (pasted: string) => string;
|
|
621
621
|
containerClassName?: string;
|
|
622
622
|
noScriptCSSFallback?: string | null;
|
|
623
|
+
nonce?: string;
|
|
623
624
|
} & {
|
|
624
625
|
render: (props: input_otp.RenderProps) => React$1.ReactNode;
|
|
625
626
|
children?: never;
|
|
626
|
-
} & React$1.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
627
|
+
} & React$1.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "value" | "nonce" | "onChange" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
627
628
|
value?: string;
|
|
628
629
|
onChange?: (newValue: string) => unknown;
|
|
629
630
|
maxLength: number;
|
|
@@ -633,6 +634,7 @@ declare const InputOTP: React$1.ForwardRefExoticComponent<Omit<Omit<Omit<React$1
|
|
|
633
634
|
pasteTransformer?: (pasted: string) => string;
|
|
634
635
|
containerClassName?: string;
|
|
635
636
|
noScriptCSSFallback?: string | null;
|
|
637
|
+
nonce?: string;
|
|
636
638
|
} & {
|
|
637
639
|
render?: never;
|
|
638
640
|
children: React$1.ReactNode;
|
|
@@ -679,8 +681,8 @@ declare const NumberInput: React$1.ForwardRefExoticComponent<Omit<NumberInputPro
|
|
|
679
681
|
|
|
680
682
|
declare function ItemGroup({ className, mode: modeProp, ...props }: React$1.ComponentProps<"div"> & {
|
|
681
683
|
mode?: UIVariant;
|
|
682
|
-
}):
|
|
683
|
-
declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>):
|
|
684
|
+
}): React$1.JSX.Element;
|
|
685
|
+
declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): React$1.JSX.Element;
|
|
684
686
|
declare const itemVariants: (props?: ({
|
|
685
687
|
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
686
688
|
size?: "sm" | "default" | "lg" | null | undefined;
|
|
@@ -689,30 +691,30 @@ declare function Item({ className, variant, size, mode: modeProp, disabled, asCh
|
|
|
689
691
|
mode?: UIVariant;
|
|
690
692
|
disabled?: boolean;
|
|
691
693
|
asChild?: boolean;
|
|
692
|
-
}):
|
|
694
|
+
}): React$1.JSX.Element;
|
|
693
695
|
declare const itemMediaVariants: (props?: ({
|
|
694
696
|
variant?: "default" | "image" | "icon" | null | undefined;
|
|
695
697
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
696
|
-
declare function ItemMedia({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>):
|
|
697
|
-
declare function ItemContent({ className, ...props }: React$1.ComponentProps<"div">):
|
|
698
|
-
declare function ItemTitle({ className, ...props }: React$1.ComponentProps<"div">):
|
|
699
|
-
declare function ItemDescription({ className, ...props }: React$1.ComponentProps<"p">):
|
|
700
|
-
declare function ItemActions({ className, ...props }: React$1.ComponentProps<"div">):
|
|
701
|
-
declare function ItemHeader({ className, ...props }: React$1.ComponentProps<"div">):
|
|
702
|
-
declare function ItemFooter({ className, ...props }: React$1.ComponentProps<"div">):
|
|
698
|
+
declare function ItemMedia({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): React$1.JSX.Element;
|
|
699
|
+
declare function ItemContent({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
|
|
700
|
+
declare function ItemTitle({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
|
|
701
|
+
declare function ItemDescription({ className, ...props }: React$1.ComponentProps<"p">): React$1.JSX.Element;
|
|
702
|
+
declare function ItemActions({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
|
|
703
|
+
declare function ItemHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
|
|
704
|
+
declare function ItemFooter({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
|
|
703
705
|
|
|
704
706
|
interface KbdProps extends React$1.ComponentProps<"kbd"> {
|
|
705
707
|
mode?: "playful" | "smooth";
|
|
706
708
|
}
|
|
707
|
-
declare function Kbd({ className, mode: modeProp, ...props }: KbdProps):
|
|
708
|
-
declare function KbdGroup({ className, ...props }: React$1.ComponentProps<"kbd">):
|
|
709
|
+
declare function Kbd({ className, mode: modeProp, ...props }: KbdProps): React$1.JSX.Element;
|
|
710
|
+
declare function KbdGroup({ className, ...props }: React$1.ComponentProps<"kbd">): React$1.JSX.Element;
|
|
709
711
|
|
|
710
712
|
type MenubarMode = "playful" | "smooth";
|
|
711
|
-
declare function MenubarMenu({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Menu>):
|
|
712
|
-
declare function MenubarGroup({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Group>):
|
|
713
|
-
declare function MenubarPortal({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Portal>):
|
|
714
|
-
declare function MenubarRadioGroup({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.RadioGroup>):
|
|
715
|
-
declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Sub>):
|
|
713
|
+
declare function MenubarMenu({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Menu>): React$1.JSX.Element;
|
|
714
|
+
declare function MenubarGroup({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Group>): React$1.JSX.Element;
|
|
715
|
+
declare function MenubarPortal({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Portal>): React$1.JSX.Element;
|
|
716
|
+
declare function MenubarRadioGroup({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.RadioGroup>): React$1.JSX.Element;
|
|
717
|
+
declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Sub>): React$1.JSX.Element;
|
|
716
718
|
declare const Menubar: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
717
719
|
mode?: MenubarMode;
|
|
718
720
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -738,7 +740,7 @@ declare const MenubarSeparator: React$1.ForwardRefExoticComponent<Omit<MenubarPr
|
|
|
738
740
|
declare const MenubarShortcut: {
|
|
739
741
|
({ className, shortcut, children, ...props }: React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
740
742
|
shortcut?: string;
|
|
741
|
-
}):
|
|
743
|
+
}): React$1.JSX.Element;
|
|
742
744
|
displayName: string;
|
|
743
745
|
};
|
|
744
746
|
|
|
@@ -757,7 +759,7 @@ declare const NavigationMenuIndicator: React$1.ForwardRefExoticComponent<Omit<Na
|
|
|
757
759
|
declare const Pagination: {
|
|
758
760
|
({ className, mode: modeProp, ...props }: React$1.ComponentProps<"nav"> & {
|
|
759
761
|
mode?: UIVariant;
|
|
760
|
-
}):
|
|
762
|
+
}): React$1.JSX.Element;
|
|
761
763
|
displayName: string;
|
|
762
764
|
};
|
|
763
765
|
declare const PaginationContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
|
|
@@ -772,19 +774,19 @@ type PaginationTextLinkProps = Omit<PaginationLinkProps, "size"> & {
|
|
|
772
774
|
size?: "sm" | "default" | "lg";
|
|
773
775
|
};
|
|
774
776
|
declare const PaginationLink: {
|
|
775
|
-
({ className, isActive, disabled, mode: modeProp, size, ...props }: PaginationLinkProps):
|
|
777
|
+
({ className, isActive, disabled, mode: modeProp, size, ...props }: PaginationLinkProps): React$1.JSX.Element;
|
|
776
778
|
displayName: string;
|
|
777
779
|
};
|
|
778
780
|
declare const PaginationPrevious: {
|
|
779
|
-
({ className, size, ...props }: PaginationTextLinkProps):
|
|
781
|
+
({ className, size, ...props }: PaginationTextLinkProps): React$1.JSX.Element;
|
|
780
782
|
displayName: string;
|
|
781
783
|
};
|
|
782
784
|
declare const PaginationNext: {
|
|
783
|
-
({ className, size, ...props }: PaginationTextLinkProps):
|
|
785
|
+
({ className, size, ...props }: PaginationTextLinkProps): React$1.JSX.Element;
|
|
784
786
|
displayName: string;
|
|
785
787
|
};
|
|
786
788
|
declare const PaginationEllipsis: {
|
|
787
|
-
({ className, ...props }: React$1.ComponentProps<"span">):
|
|
789
|
+
({ className, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
|
|
788
790
|
displayName: string;
|
|
789
791
|
};
|
|
790
792
|
|
|
@@ -808,11 +810,11 @@ interface RadioGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof Ra
|
|
|
808
810
|
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
809
811
|
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
810
812
|
|
|
811
|
-
declare const ResizablePanelGroup: ({ className, orientation, ...props }: React.ComponentProps<typeof Group>) =>
|
|
813
|
+
declare const ResizablePanelGroup: ({ className, orientation, ...props }: React.ComponentProps<typeof Group>) => React$1.JSX.Element;
|
|
812
814
|
declare const ResizablePanel: typeof Panel;
|
|
813
815
|
declare const ResizableHandle: ({ withHandle, className, ...props }: React.ComponentProps<typeof Separator$1> & {
|
|
814
816
|
withHandle?: boolean;
|
|
815
|
-
}) =>
|
|
817
|
+
}) => React$1.JSX.Element;
|
|
816
818
|
|
|
817
819
|
declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
818
820
|
scrollbars?: "vertical" | "horizontal" | "both";
|
|
@@ -850,11 +852,11 @@ interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof Dial
|
|
|
850
852
|
}
|
|
851
853
|
declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
852
854
|
declare const SheetHeader: {
|
|
853
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
855
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
854
856
|
displayName: string;
|
|
855
857
|
};
|
|
856
858
|
declare const SheetFooter: {
|
|
857
|
-
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>):
|
|
859
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
858
860
|
displayName: string;
|
|
859
861
|
};
|
|
860
862
|
declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
@@ -952,7 +954,7 @@ declare const SidebarMenuSubButton: React$1.ForwardRefExoticComponent<Omit<React
|
|
|
952
954
|
isActive?: boolean;
|
|
953
955
|
}, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
954
956
|
|
|
955
|
-
declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>):
|
|
957
|
+
declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
956
958
|
|
|
957
959
|
type SliderSize = "sm" | "default" | "lg";
|
|
958
960
|
interface SliderProps extends React$1.ComponentPropsWithoutRef<typeof SliderPrimitive.Root> {
|
|
@@ -964,9 +966,9 @@ type ToasterProps = React$1.ComponentProps<typeof Toaster$1>;
|
|
|
964
966
|
type ToasterMode = "playful" | "smooth";
|
|
965
967
|
declare const Toaster: ({ mode: modeProp, className, style, duration, ...props }: ToasterProps & {
|
|
966
968
|
mode?: ToasterMode;
|
|
967
|
-
}) =>
|
|
969
|
+
}) => React$1.JSX.Element;
|
|
968
970
|
|
|
969
|
-
declare function Spinner({ className, ...props }: React.ComponentProps<"svg">):
|
|
971
|
+
declare function Spinner({ className, ...props }: React.ComponentProps<"svg">): React$1.JSX.Element;
|
|
970
972
|
|
|
971
973
|
declare const statusIndicatorDotVariants: (props?: ({
|
|
972
974
|
size?: "sm" | "default" | "lg" | null | undefined;
|
|
@@ -976,7 +978,7 @@ interface StatusIndicatorProps extends React$1.HTMLAttributes<HTMLSpanElement>,
|
|
|
976
978
|
disabled?: boolean;
|
|
977
979
|
dotClassName?: string;
|
|
978
980
|
}
|
|
979
|
-
declare function StatusIndicator({ className, dotClassName, color, size, pulse, disabled, children, ...props }: StatusIndicatorProps):
|
|
981
|
+
declare function StatusIndicator({ className, dotClassName, color, size, pulse, disabled, children, ...props }: StatusIndicatorProps): React$1.JSX.Element;
|
|
980
982
|
|
|
981
983
|
interface SwitchProps extends React$1.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root> {
|
|
982
984
|
size?: "sm" | "default" | "lg";
|
|
@@ -1049,7 +1051,7 @@ interface AsciiTextProps {
|
|
|
1049
1051
|
color?: string;
|
|
1050
1052
|
accentColor?: string;
|
|
1051
1053
|
}
|
|
1052
|
-
declare function AsciiText({ text, accent, accents, shine, shineColor, color, accentColor, }: AsciiTextProps):
|
|
1054
|
+
declare function AsciiText({ text, accent, accents, shine, shineColor, color, accentColor, }: AsciiTextProps): React$1.JSX.Element;
|
|
1053
1055
|
|
|
1054
1056
|
declare function useIsMobile(): boolean;
|
|
1055
1057
|
|
|
@@ -1083,7 +1085,7 @@ declare function fireConfetti(options?: ConfettiOptions): void;
|
|
|
1083
1085
|
* ...
|
|
1084
1086
|
* </head>
|
|
1085
1087
|
*/
|
|
1086
|
-
declare function ThemeScript():
|
|
1088
|
+
declare function ThemeScript(): React$1.JSX.Element;
|
|
1087
1089
|
|
|
1088
1090
|
interface EnchantedProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1089
1091
|
children: React$1.ReactNode;
|
|
@@ -1092,6 +1094,6 @@ interface EnchantedProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
1092
1094
|
/** Overrides the glint colour (defaults to text-primary). */
|
|
1093
1095
|
glintClassName?: string;
|
|
1094
1096
|
}
|
|
1095
|
-
declare function Enchanted({ children, className, hoverOnly, glintClassName, ...props }: EnchantedProps):
|
|
1097
|
+
declare function Enchanted({ children, className, hoverOnly, glintClassName, ...props }: EnchantedProps): React$1.JSX.Element;
|
|
1096
1098
|
|
|
1097
1099
|
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AsciiText, type AsciiTextProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, Calendar, CalendarDayButton, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ConfettiOptions, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, type DialogPresentation, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Enchanted, type EnchantedProps, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, type KbdProps, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NumberInput, type NumberInputProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, type SliderProps, Spinner, StatusIndicator, type StatusIndicatorProps, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, ThemeScript, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UIVariant, UIVariantProvider, badgeVariants, buttonGroupVariants, buttonVariants, cn, fireConfetti, inputBase, inputPlayfulBacking, navigationMenuTriggerStyle, statusIndicatorDotVariants, toggleVariants, useCopyToClipboard, useFormField, useIsMobile, useSidebar, useUIVariant };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@olwiba/cn",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.47",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -99,8 +99,8 @@
|
|
|
99
99
|
}
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
|
-
"@olwiba/docs": "0.1.
|
|
103
|
-
"@olwiba/dx": "0.0.
|
|
102
|
+
"@olwiba/docs": "0.1.48",
|
|
103
|
+
"@olwiba/dx": "0.0.32",
|
|
104
104
|
"@tailwindcss/vite": "^4.3.1",
|
|
105
105
|
"@tanstack/react-router": "^1.151.6",
|
|
106
106
|
"@tanstack/react-router-devtools": "^1.151.6",
|