@alpic-ai/ui 0.0.0-dev.g3e02cb4 → 0.0.0-dev.g3f43f7b

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.
Files changed (49) hide show
  1. package/dist/components/accordion-card.d.mts +5 -4
  2. package/dist/components/accordion.d.mts +5 -4
  3. package/dist/components/alert.d.mts +8 -6
  4. package/dist/components/attachment-tile.d.mts +3 -1
  5. package/dist/components/avatar.d.mts +7 -5
  6. package/dist/components/badge.d.mts +4 -2
  7. package/dist/components/breadcrumb.d.mts +9 -8
  8. package/dist/components/button.d.mts +4 -2
  9. package/dist/components/card.d.mts +8 -7
  10. package/dist/components/checkbox.d.mts +2 -1
  11. package/dist/components/collapsible.d.mts +4 -3
  12. package/dist/components/combobox.d.mts +11 -10
  13. package/dist/components/command.d.mts +9 -8
  14. package/dist/components/copyable.d.mts +3 -2
  15. package/dist/components/description-list.d.mts +5 -4
  16. package/dist/components/dialog.d.mts +14 -12
  17. package/dist/components/dropdown-menu.d.mts +16 -14
  18. package/dist/components/form.d.mts +18 -35
  19. package/dist/components/github-button.d.mts +2 -1
  20. package/dist/components/input-group.d.mts +6 -4
  21. package/dist/components/input.d.mts +2 -1
  22. package/dist/components/label.d.mts +2 -1
  23. package/dist/components/page-loader.d.mts +3 -1
  24. package/dist/components/pagination.d.mts +2 -1
  25. package/dist/components/popover.d.mts +5 -4
  26. package/dist/components/radio-group.d.mts +3 -2
  27. package/dist/components/scroll-area.d.mts +3 -2
  28. package/dist/components/select-trigger-variants.d.mts +3 -1
  29. package/dist/components/select.d.mts +9 -8
  30. package/dist/components/separator.d.mts +2 -1
  31. package/dist/components/sheet.d.mts +10 -9
  32. package/dist/components/shimmer-text.d.mts +3 -1
  33. package/dist/components/sidebar.d.mts +25 -23
  34. package/dist/components/skeleton.d.mts +4 -2
  35. package/dist/components/sonner.d.mts +3 -2
  36. package/dist/components/spinner.d.mts +5 -3
  37. package/dist/components/status-dot.d.mts +4 -2
  38. package/dist/components/switch.d.mts +2 -1
  39. package/dist/components/table.d.mts +9 -8
  40. package/dist/components/tabs.d.mts +11 -9
  41. package/dist/components/tag.d.mts +5 -3
  42. package/dist/components/task-progress.d.mts +3 -1
  43. package/dist/components/textarea.d.mts +2 -1
  44. package/dist/components/toggle-group.d.mts +5 -3
  45. package/dist/components/tooltip-icon-button.d.mts +2 -1
  46. package/dist/components/tooltip.d.mts +5 -4
  47. package/dist/components/typography.d.mts +5 -4
  48. package/dist/components/wizard.d.mts +3 -2
  49. package/package.json +1 -1
@@ -1,4 +1,5 @@
1
1
  import * as AccordionPrimitive from "@radix-ui/react-accordion";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
2
3
  import * as React from "react";
3
4
 
4
5
  //#region src/components/accordion-card.d.ts
@@ -15,17 +16,17 @@ declare function AccordionCard({
15
16
  open?: boolean;
16
17
  onOpenChange?: (nextOpen: boolean) => void;
17
18
  disabled?: boolean;
18
- } & Omit<React.ComponentProps<typeof AccordionPrimitive.Root>, "type" | "collapsible" | "defaultValue" | "value" | "onValueChange" | "disabled">): import("react/jsx-runtime").JSX.Element;
19
+ } & Omit<React.ComponentProps<typeof AccordionPrimitive.Root>, "type" | "collapsible" | "defaultValue" | "value" | "onValueChange" | "disabled">): _$react_jsx_runtime0.JSX.Element;
19
20
  declare function AccordionCardHeader({
20
21
  className,
21
22
  children,
22
23
  ...props
23
- }: React.ComponentProps<typeof AccordionPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
24
+ }: React.ComponentProps<typeof AccordionPrimitive.Trigger>): _$react_jsx_runtime0.JSX.Element;
24
25
  declare function AccordionCardTitle({
25
26
  className,
26
27
  children,
27
28
  ...props
28
- }: React.HTMLAttributes<HTMLHeadingElement>): import("react/jsx-runtime").JSX.Element;
29
+ }: React.HTMLAttributes<HTMLHeadingElement>): _$react_jsx_runtime0.JSX.Element;
29
30
  /**
30
31
  * `className` is forwarded to the inner padding wrapper, not the Radix Content root.
31
32
  * The root always applies overflow-hidden and the accordion animations.
@@ -35,6 +36,6 @@ declare function AccordionCardContent({
35
36
  className,
36
37
  children,
37
38
  ...props
38
- }: React.ComponentProps<typeof AccordionPrimitive.Content>): import("react/jsx-runtime").JSX.Element;
39
+ }: React.ComponentProps<typeof AccordionPrimitive.Content>): _$react_jsx_runtime0.JSX.Element;
39
40
  //#endregion
40
41
  export { AccordionCard, AccordionCardContent, AccordionCardHeader, AccordionCardTitle };
@@ -1,19 +1,20 @@
1
1
  import * as AccordionPrimitive from "@radix-ui/react-accordion";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
2
3
  import * as React from "react";
3
4
 
4
5
  //#region src/components/accordion.d.ts
5
6
  declare function Accordion({
6
7
  ...props
7
- }: React.ComponentProps<typeof AccordionPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
8
+ }: React.ComponentProps<typeof AccordionPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
8
9
  declare function AccordionItem({
9
10
  className,
10
11
  ...props
11
- }: React.ComponentProps<typeof AccordionPrimitive.Item>): import("react/jsx-runtime").JSX.Element;
12
+ }: React.ComponentProps<typeof AccordionPrimitive.Item>): _$react_jsx_runtime0.JSX.Element;
12
13
  declare function AccordionTrigger({
13
14
  className,
14
15
  children,
15
16
  ...props
16
- }: React.ComponentProps<typeof AccordionPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
17
+ }: React.ComponentProps<typeof AccordionPrimitive.Trigger>): _$react_jsx_runtime0.JSX.Element;
17
18
  /**
18
19
  * `className` is forwarded to the inner padding wrapper, not the Radix Content root.
19
20
  * The root always applies overflow-hidden and the accordion animations.
@@ -23,6 +24,6 @@ declare function AccordionContent({
23
24
  className,
24
25
  children,
25
26
  ...props
26
- }: React.ComponentProps<typeof AccordionPrimitive.Content>): import("react/jsx-runtime").JSX.Element;
27
+ }: React.ComponentProps<typeof AccordionPrimitive.Content>): _$react_jsx_runtime0.JSX.Element;
27
28
  //#endregion
28
29
  export { Accordion, AccordionContent, AccordionItem, AccordionTrigger };
@@ -1,24 +1,26 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
1
2
  import { VariantProps } from "class-variance-authority";
2
3
  import * as React from "react";
4
+ import * as _$class_variance_authority_types0 from "class-variance-authority/types";
3
5
 
4
6
  //#region src/components/alert.d.ts
5
7
  declare const alertVariants: (props?: ({
6
8
  variant?: "default" | "destructive" | "warning" | "success" | null | undefined;
7
- } & import("class-variance-authority/types").ClassProp) | undefined) => string;
9
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
8
10
  interface AlertProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof alertVariants> {}
9
11
  declare function Alert({
10
12
  className,
11
13
  variant,
12
14
  ...props
13
- }: AlertProps): import("react/jsx-runtime").JSX.Element;
15
+ }: AlertProps): _$react_jsx_runtime0.JSX.Element;
14
16
  declare function AlertTitle({
15
17
  className,
16
18
  ...props
17
- }: React.HTMLAttributes<HTMLParagraphElement>): import("react/jsx-runtime").JSX.Element;
19
+ }: React.HTMLAttributes<HTMLParagraphElement>): _$react_jsx_runtime0.JSX.Element;
18
20
  declare function AlertDescription({
19
21
  className,
20
22
  ...props
21
- }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
23
+ }: React.HTMLAttributes<HTMLDivElement>): _$react_jsx_runtime0.JSX.Element;
22
24
  interface ConvenienceAlertProps {
23
25
  title?: string;
24
26
  description?: React.ReactNode;
@@ -28,11 +30,11 @@ declare function ErrorAlert({
28
30
  title,
29
31
  description,
30
32
  className
31
- }: ConvenienceAlertProps): import("react/jsx-runtime").JSX.Element;
33
+ }: ConvenienceAlertProps): _$react_jsx_runtime0.JSX.Element;
32
34
  declare function WarningAlert({
33
35
  title,
34
36
  description,
35
37
  className
36
- }: ConvenienceAlertProps): import("react/jsx-runtime").JSX.Element;
38
+ }: ConvenienceAlertProps): _$react_jsx_runtime0.JSX.Element;
37
39
  //#endregion
38
40
  export { Alert, AlertDescription, AlertTitle, ErrorAlert, WarningAlert };
@@ -1,3 +1,5 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
2
+
1
3
  //#region src/components/attachment-tile.d.ts
2
4
  interface AttachmentTileProps {
3
5
  /** Source URL for the attachment thumbnail */
@@ -19,6 +21,6 @@ declare function AttachmentTile({
19
21
  onRemove,
20
22
  onClick,
21
23
  className
22
- }: AttachmentTileProps): import("react/jsx-runtime").JSX.Element;
24
+ }: AttachmentTileProps): _$react_jsx_runtime0.JSX.Element;
23
25
  //#endregion
24
26
  export { AttachmentTile, type AttachmentTileProps };
@@ -1,11 +1,13 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
1
2
  import { VariantProps } from "class-variance-authority";
2
3
  import * as React from "react";
3
4
  import * as AvatarPrimitive from "@radix-ui/react-avatar";
5
+ import * as _$class_variance_authority_types0 from "class-variance-authority/types";
4
6
 
5
7
  //#region src/components/avatar.d.ts
6
8
  declare const avatarVariants: (props?: ({
7
9
  size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
8
- } & import("class-variance-authority/types").ClassProp) | undefined) => string;
10
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
9
11
  type AvatarSize = NonNullable<VariantProps<typeof avatarVariants>["size"]>;
10
12
  type AvatarStatus = "online";
11
13
  interface AvatarProps extends React.ComponentProps<typeof AvatarPrimitive.Root>, VariantProps<typeof avatarVariants> {
@@ -17,15 +19,15 @@ declare function Avatar({
17
19
  className,
18
20
  children,
19
21
  ...props
20
- }: AvatarProps): import("react/jsx-runtime").JSX.Element;
22
+ }: AvatarProps): _$react_jsx_runtime0.JSX.Element;
21
23
  declare function AvatarImage({
22
24
  className,
23
25
  ...props
24
- }: React.ComponentProps<typeof AvatarPrimitive.Image>): import("react/jsx-runtime").JSX.Element;
26
+ }: React.ComponentProps<typeof AvatarPrimitive.Image>): _$react_jsx_runtime0.JSX.Element;
25
27
  declare function AvatarFallback({
26
28
  className,
27
29
  ...props
28
- }: React.ComponentProps<typeof AvatarPrimitive.Fallback>): import("react/jsx-runtime").JSX.Element;
30
+ }: React.ComponentProps<typeof AvatarPrimitive.Fallback>): _$react_jsx_runtime0.JSX.Element;
29
31
  interface AvatarLabelGroupProps extends React.ComponentProps<"div"> {
30
32
  size?: "sm" | "md";
31
33
  src?: string;
@@ -45,6 +47,6 @@ declare function AvatarLabelGroup({
45
47
  status,
46
48
  className,
47
49
  ...props
48
- }: AvatarLabelGroupProps): import("react/jsx-runtime").JSX.Element;
50
+ }: AvatarLabelGroupProps): _$react_jsx_runtime0.JSX.Element;
49
51
  //#endregion
50
52
  export { Avatar, AvatarFallback, AvatarImage, AvatarLabelGroup, type AvatarSize, type AvatarStatus };
@@ -1,10 +1,12 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
1
2
  import { VariantProps } from "class-variance-authority";
3
+ import * as _$class_variance_authority_types0 from "class-variance-authority/types";
2
4
 
3
5
  //#region src/components/badge.d.ts
4
6
  declare const badgeVariants: (props?: ({
5
7
  variant?: "warning" | "success" | "secondary" | "primary" | "error" | null | undefined;
6
8
  size?: "sm" | "md" | null | undefined;
7
- } & import("class-variance-authority/types").ClassProp) | undefined) => string;
9
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
8
10
  interface BadgeProps extends React.ComponentProps<"span">, VariantProps<typeof badgeVariants> {}
9
11
  declare function Badge({
10
12
  className,
@@ -12,7 +14,7 @@ declare function Badge({
12
14
  size,
13
15
  children,
14
16
  ...props
15
- }: BadgeProps): import("react/jsx-runtime").JSX.Element;
17
+ }: BadgeProps): _$react_jsx_runtime0.JSX.Element;
16
18
  type BadgeVariant = NonNullable<VariantProps<typeof badgeVariants>["variant"]>;
17
19
  //#endregion
18
20
  export { Badge, type BadgeVariant, badgeVariants };
@@ -1,41 +1,42 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
1
2
  import * as React from "react";
2
3
 
3
4
  //#region src/components/breadcrumb.d.ts
4
5
  declare function Breadcrumb({
5
6
  className,
6
7
  ...props
7
- }: React.ComponentProps<"nav">): import("react/jsx-runtime").JSX.Element;
8
+ }: React.ComponentProps<"nav">): _$react_jsx_runtime0.JSX.Element;
8
9
  declare function BreadcrumbList({
9
10
  className,
10
11
  ...props
11
- }: React.ComponentProps<"ol">): import("react/jsx-runtime").JSX.Element;
12
+ }: React.ComponentProps<"ol">): _$react_jsx_runtime0.JSX.Element;
12
13
  declare function BreadcrumbItem({
13
14
  className,
14
15
  ...props
15
- }: React.ComponentProps<"li">): import("react/jsx-runtime").JSX.Element;
16
+ }: React.ComponentProps<"li">): _$react_jsx_runtime0.JSX.Element;
16
17
  declare function BreadcrumbLink({
17
18
  asChild,
18
19
  className,
19
20
  ...props
20
21
  }: React.ComponentProps<"a"> & {
21
22
  asChild?: boolean;
22
- }): import("react/jsx-runtime").JSX.Element;
23
+ }): _$react_jsx_runtime0.JSX.Element;
23
24
  declare function BreadcrumbPage({
24
25
  className,
25
26
  ...props
26
- }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
27
+ }: React.ComponentProps<"span">): _$react_jsx_runtime0.JSX.Element;
27
28
  declare function BreadcrumbSeparator({
28
29
  children,
29
30
  className,
30
31
  ...props
31
- }: React.ComponentProps<"li">): import("react/jsx-runtime").JSX.Element;
32
+ }: React.ComponentProps<"li">): _$react_jsx_runtime0.JSX.Element;
32
33
  declare function BreadcrumbChevron({
33
34
  className,
34
35
  ...props
35
- }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
36
+ }: React.ComponentProps<"span">): _$react_jsx_runtime0.JSX.Element;
36
37
  declare function BreadcrumbEllipsis({
37
38
  className,
38
39
  ...props
39
- }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
40
+ }: React.ComponentProps<"span">): _$react_jsx_runtime0.JSX.Element;
40
41
  //#endregion
41
42
  export { Breadcrumb, BreadcrumbChevron, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator };
@@ -1,11 +1,13 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
1
2
  import { VariantProps } from "class-variance-authority";
2
3
  import * as React from "react";
4
+ import * as _$class_variance_authority_types0 from "class-variance-authority/types";
3
5
 
4
6
  //#region src/components/button.d.ts
5
7
  declare const buttonVariants: (props?: ({
6
8
  variant?: "destructive" | "secondary" | "primary" | "tertiary" | "link" | "link-muted" | "cta" | null | undefined;
7
9
  size?: "default" | "icon" | "icon-rounded" | "pill" | null | undefined;
8
- } & import("class-variance-authority/types").ClassProp) | undefined) => string;
10
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
9
11
  interface ButtonProps extends React.ComponentProps<"button">, VariantProps<typeof buttonVariants> {
10
12
  asChild?: boolean;
11
13
  loading?: boolean;
@@ -24,6 +26,6 @@ declare function Button({
24
26
  disabled,
25
27
  children,
26
28
  ...props
27
- }: ButtonProps): import("react/jsx-runtime").JSX.Element;
29
+ }: ButtonProps): _$react_jsx_runtime0.JSX.Element;
28
30
  //#endregion
29
31
  export { Button, type ButtonProps, buttonVariants };
@@ -1,3 +1,4 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
1
2
  import * as React from "react";
2
3
 
3
4
  //#region src/components/card.d.ts
@@ -7,30 +8,30 @@ declare function Card({
7
8
  ...props
8
9
  }: React.ComponentProps<"div"> & {
9
10
  hoverable?: boolean;
10
- }): import("react/jsx-runtime").JSX.Element;
11
+ }): _$react_jsx_runtime0.JSX.Element;
11
12
  declare function CardHeader({
12
13
  className,
13
14
  ...props
14
- }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
15
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
15
16
  declare function CardTitle({
16
17
  className,
17
18
  ...props
18
- }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
19
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
19
20
  declare function CardDescription({
20
21
  className,
21
22
  ...props
22
- }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
23
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
23
24
  declare function CardAction({
24
25
  className,
25
26
  ...props
26
- }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
27
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
27
28
  declare function CardContent({
28
29
  className,
29
30
  ...props
30
- }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
31
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
31
32
  declare function CardFooter({
32
33
  className,
33
34
  ...props
34
- }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
35
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
35
36
  //#endregion
36
37
  export { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle };
@@ -1,3 +1,4 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
1
2
  import * as React from "react";
2
3
  import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
3
4
 
@@ -5,6 +6,6 @@ import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
5
6
  declare function Checkbox({
6
7
  className,
7
8
  ...props
8
- }: React.ComponentProps<typeof CheckboxPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
9
+ }: React.ComponentProps<typeof CheckboxPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
9
10
  //#endregion
10
11
  export { Checkbox };
@@ -1,15 +1,16 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
1
2
  import * as React from "react";
2
3
  import * as CollapsiblePrimitive from "@radix-ui/react-collapsible";
3
4
 
4
5
  //#region src/components/collapsible.d.ts
5
6
  declare function Collapsible({
6
7
  ...props
7
- }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): import("react/jsx-runtime").JSX.Element;
8
+ }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
8
9
  declare function CollapsibleTrigger({
9
10
  ...props
10
- }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): import("react/jsx-runtime").JSX.Element;
11
+ }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): _$react_jsx_runtime0.JSX.Element;
11
12
  declare function CollapsibleContent({
12
13
  ...props
13
- }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): import("react/jsx-runtime").JSX.Element;
14
+ }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): _$react_jsx_runtime0.JSX.Element;
14
15
  //#endregion
15
16
  export { Collapsible, CollapsibleContent, CollapsibleTrigger };
@@ -1,5 +1,6 @@
1
1
  import { PopoverContent } from "./popover.mjs";
2
2
  import { selectTriggerVariants } from "./select-trigger-variants.mjs";
3
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
4
  import { VariantProps } from "class-variance-authority";
4
5
  import { ReactNode } from "react";
5
6
  import { Command } from "cmdk";
@@ -26,7 +27,7 @@ interface ComboboxMultipleProps extends ComboboxBaseProps {
26
27
  onValueChange?: (value: string[]) => void;
27
28
  }
28
29
  type ComboboxProps = ComboboxSingleProps | ComboboxMultipleProps;
29
- declare function Combobox(props: ComboboxProps): import("react/jsx-runtime").JSX.Element;
30
+ declare function Combobox(props: ComboboxProps): _$react_jsx_runtime0.JSX.Element;
30
31
  interface ComboboxTriggerProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "size">, VariantProps<typeof selectTriggerVariants> {
31
32
  placeholder?: string;
32
33
  }
@@ -36,7 +37,7 @@ declare function ComboboxTrigger({
36
37
  placeholder,
37
38
  children,
38
39
  ...props
39
- }: ComboboxTriggerProps): import("react/jsx-runtime").JSX.Element;
40
+ }: ComboboxTriggerProps): _$react_jsx_runtime0.JSX.Element;
40
41
  interface ComboboxContentProps extends React.ComponentProps<typeof PopoverContent> {
41
42
  className?: string;
42
43
  children?: ReactNode;
@@ -47,27 +48,27 @@ declare function ComboboxContent({
47
48
  children,
48
49
  filter,
49
50
  ...props
50
- }: ComboboxContentProps): import("react/jsx-runtime").JSX.Element;
51
+ }: ComboboxContentProps): _$react_jsx_runtime0.JSX.Element;
51
52
  declare function ComboboxSearch({
52
53
  className,
53
54
  ...props
54
- }: React.ComponentProps<typeof Command.Input>): import("react/jsx-runtime").JSX.Element;
55
+ }: React.ComponentProps<typeof Command.Input>): _$react_jsx_runtime0.JSX.Element;
55
56
  declare function ComboboxList({
56
57
  className,
57
58
  ...props
58
- }: React.ComponentProps<typeof Command.List>): import("react/jsx-runtime").JSX.Element;
59
+ }: React.ComponentProps<typeof Command.List>): _$react_jsx_runtime0.JSX.Element;
59
60
  declare function ComboboxEmpty({
60
61
  className,
61
62
  ...props
62
- }: React.ComponentProps<typeof Command.Empty>): import("react/jsx-runtime").JSX.Element;
63
+ }: React.ComponentProps<typeof Command.Empty>): _$react_jsx_runtime0.JSX.Element;
63
64
  declare function ComboboxGroup({
64
65
  className,
65
66
  ...props
66
- }: React.ComponentProps<typeof Command.Group>): import("react/jsx-runtime").JSX.Element;
67
+ }: React.ComponentProps<typeof Command.Group>): _$react_jsx_runtime0.JSX.Element;
67
68
  declare function ComboboxSeparator({
68
69
  className,
69
70
  ...props
70
- }: React.ComponentProps<typeof Command.Separator>): import("react/jsx-runtime").JSX.Element;
71
+ }: React.ComponentProps<typeof Command.Separator>): _$react_jsx_runtime0.JSX.Element;
71
72
  interface ComboboxItemProps extends Omit<React.ComponentProps<typeof Command.Item>, "onSelect"> {
72
73
  /** The value stored when this item is selected */
73
74
  itemValue: string;
@@ -77,11 +78,11 @@ declare function ComboboxItem({
77
78
  children,
78
79
  itemValue,
79
80
  ...props
80
- }: ComboboxItemProps): import("react/jsx-runtime").JSX.Element;
81
+ }: ComboboxItemProps): _$react_jsx_runtime0.JSX.Element;
81
82
  declare function ComboboxItemText({
82
83
  className,
83
84
  children,
84
85
  ...props
85
- }: React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
86
+ }: React.HTMLAttributes<HTMLSpanElement>): _$react_jsx_runtime0.JSX.Element;
86
87
  //#endregion
87
88
  export { Combobox, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxItem, ComboboxItemText, ComboboxList, ComboboxSearch, ComboboxSeparator, ComboboxTrigger };
@@ -1,3 +1,4 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
1
2
  import * as React from "react";
2
3
  import { Command as Command$1 } from "cmdk";
3
4
 
@@ -5,33 +6,33 @@ import { Command as Command$1 } from "cmdk";
5
6
  declare function Command({
6
7
  className,
7
8
  ...props
8
- }: React.ComponentProps<typeof Command$1>): import("react/jsx-runtime").JSX.Element;
9
+ }: React.ComponentProps<typeof Command$1>): _$react_jsx_runtime0.JSX.Element;
9
10
  declare function CommandInput({
10
11
  className,
11
12
  ...props
12
- }: React.ComponentProps<typeof Command$1.Input>): import("react/jsx-runtime").JSX.Element;
13
+ }: React.ComponentProps<typeof Command$1.Input>): _$react_jsx_runtime0.JSX.Element;
13
14
  declare function CommandList({
14
15
  className,
15
16
  ...props
16
- }: React.ComponentProps<typeof Command$1.List>): import("react/jsx-runtime").JSX.Element;
17
+ }: React.ComponentProps<typeof Command$1.List>): _$react_jsx_runtime0.JSX.Element;
17
18
  declare function CommandEmpty({
18
19
  ...props
19
- }: React.ComponentProps<typeof Command$1.Empty>): import("react/jsx-runtime").JSX.Element;
20
+ }: React.ComponentProps<typeof Command$1.Empty>): _$react_jsx_runtime0.JSX.Element;
20
21
  declare function CommandGroup({
21
22
  className,
22
23
  ...props
23
- }: React.ComponentProps<typeof Command$1.Group>): import("react/jsx-runtime").JSX.Element;
24
+ }: React.ComponentProps<typeof Command$1.Group>): _$react_jsx_runtime0.JSX.Element;
24
25
  declare function CommandSeparator({
25
26
  className,
26
27
  ...props
27
- }: React.ComponentProps<typeof Command$1.Separator>): import("react/jsx-runtime").JSX.Element;
28
+ }: React.ComponentProps<typeof Command$1.Separator>): _$react_jsx_runtime0.JSX.Element;
28
29
  declare function CommandItem({
29
30
  className,
30
31
  ...props
31
- }: React.ComponentProps<typeof Command$1.Item>): import("react/jsx-runtime").JSX.Element;
32
+ }: React.ComponentProps<typeof Command$1.Item>): _$react_jsx_runtime0.JSX.Element;
32
33
  declare function CommandShortcut({
33
34
  className,
34
35
  ...props
35
- }: React.ComponentProps<"span">): import("react/jsx-runtime").JSX.Element;
36
+ }: React.ComponentProps<"span">): _$react_jsx_runtime0.JSX.Element;
36
37
  //#endregion
37
38
  export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut };
@@ -1,3 +1,4 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
1
2
  import { ReactNode } from "react";
2
3
 
3
4
  //#region src/components/copyable.d.ts
@@ -10,12 +11,12 @@ declare function Copyable({
10
11
  content,
11
12
  children,
12
13
  className
13
- }: CopyableProps): import("react/jsx-runtime").JSX.Element;
14
+ }: CopyableProps): _$react_jsx_runtime0.JSX.Element;
14
15
  interface CopyableUrlProps {
15
16
  url: URL;
16
17
  }
17
18
  declare function CopyableUrl({
18
19
  url
19
- }: CopyableUrlProps): import("react/jsx-runtime").JSX.Element;
20
+ }: CopyableUrlProps): _$react_jsx_runtime0.JSX.Element;
20
21
  //#endregion
21
22
  export { Copyable, type CopyableProps, CopyableUrl, type CopyableUrlProps };
@@ -1,21 +1,22 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
1
2
  import * as React from "react";
2
3
 
3
4
  //#region src/components/description-list.d.ts
4
5
  declare function DescriptionList({
5
6
  className,
6
7
  ...props
7
- }: React.ComponentProps<"dl">): import("react/jsx-runtime").JSX.Element;
8
+ }: React.ComponentProps<"dl">): _$react_jsx_runtime0.JSX.Element;
8
9
  declare function DescriptionItem({
9
10
  className,
10
11
  ...props
11
- }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
12
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
12
13
  declare function DescriptionTitle({
13
14
  className,
14
15
  ...props
15
- }: React.ComponentProps<"dt">): import("react/jsx-runtime").JSX.Element;
16
+ }: React.ComponentProps<"dt">): _$react_jsx_runtime0.JSX.Element;
16
17
  declare function DescriptionValue({
17
18
  className,
18
19
  ...props
19
- }: React.ComponentProps<"dd">): import("react/jsx-runtime").JSX.Element;
20
+ }: React.ComponentProps<"dd">): _$react_jsx_runtime0.JSX.Element;
20
21
  //#endregion
21
22
  export { DescriptionItem, DescriptionList, DescriptionTitle, DescriptionValue };
@@ -1,25 +1,27 @@
1
1
  import { ButtonProps } from "./button.mjs";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
2
3
  import { VariantProps } from "class-variance-authority";
3
4
  import * as React from "react";
4
5
  import * as DialogPrimitive from "@radix-ui/react-dialog";
6
+ import * as _$class_variance_authority_types0 from "class-variance-authority/types";
5
7
 
6
8
  //#region src/components/dialog.d.ts
7
9
  declare function Dialog({
8
10
  ...props
9
- }: React.ComponentProps<typeof DialogPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
11
+ }: React.ComponentProps<typeof DialogPrimitive.Root>): _$react_jsx_runtime0.JSX.Element;
10
12
  declare function DialogTrigger({
11
13
  ...props
12
- }: React.ComponentProps<typeof DialogPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
14
+ }: React.ComponentProps<typeof DialogPrimitive.Trigger>): _$react_jsx_runtime0.JSX.Element;
13
15
  declare function DialogPortal({
14
16
  ...props
15
- }: React.ComponentProps<typeof DialogPrimitive.Portal>): import("react/jsx-runtime").JSX.Element;
17
+ }: React.ComponentProps<typeof DialogPrimitive.Portal>): _$react_jsx_runtime0.JSX.Element;
16
18
  declare function DialogOverlay({
17
19
  className,
18
20
  ...props
19
- }: React.ComponentProps<typeof DialogPrimitive.Overlay>): import("react/jsx-runtime").JSX.Element;
21
+ }: React.ComponentProps<typeof DialogPrimitive.Overlay>): _$react_jsx_runtime0.JSX.Element;
20
22
  declare const dialogContentVariants: (props?: ({
21
23
  size?: "sm" | "lg" | null | undefined;
22
- } & import("class-variance-authority/types").ClassProp) | undefined) => string;
24
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
23
25
  interface DialogContentProps extends React.ComponentProps<typeof DialogPrimitive.Content>, VariantProps<typeof dialogContentVariants> {
24
26
  showCloseButton?: boolean;
25
27
  }
@@ -29,31 +31,31 @@ declare function DialogContent({
29
31
  size,
30
32
  showCloseButton,
31
33
  ...props
32
- }: DialogContentProps): import("react/jsx-runtime").JSX.Element;
34
+ }: DialogContentProps): _$react_jsx_runtime0.JSX.Element;
33
35
  declare function DialogHeader({
34
36
  className,
35
37
  ...props
36
- }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
38
+ }: React.ComponentProps<"div">): _$react_jsx_runtime0.JSX.Element;
37
39
  declare const dialogFooterVariants: (props?: ({
38
40
  layout?: "horizontal" | "vertical" | null | undefined;
39
- } & import("class-variance-authority/types").ClassProp) | undefined) => string;
41
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
40
42
  interface DialogFooterProps extends React.ComponentProps<"div">, VariantProps<typeof dialogFooterVariants> {}
41
43
  declare function DialogFooter({
42
44
  className,
43
45
  layout,
44
46
  ...props
45
- }: DialogFooterProps): import("react/jsx-runtime").JSX.Element;
47
+ }: DialogFooterProps): _$react_jsx_runtime0.JSX.Element;
46
48
  declare function DialogTitle({
47
49
  className,
48
50
  ...props
49
- }: React.ComponentProps<typeof DialogPrimitive.Title>): import("react/jsx-runtime").JSX.Element;
51
+ }: React.ComponentProps<typeof DialogPrimitive.Title>): _$react_jsx_runtime0.JSX.Element;
50
52
  declare function DialogClose({
51
53
  children,
52
54
  ...props
53
- }: Omit<ButtonProps, "variant" | "asChild">): import("react/jsx-runtime").JSX.Element;
55
+ }: Omit<ButtonProps, "variant" | "asChild">): _$react_jsx_runtime0.JSX.Element;
54
56
  declare function DialogDescription({
55
57
  className,
56
58
  ...props
57
- }: React.ComponentProps<typeof DialogPrimitive.Description>): import("react/jsx-runtime").JSX.Element;
59
+ }: React.ComponentProps<typeof DialogPrimitive.Description>): _$react_jsx_runtime0.JSX.Element;
58
60
  //#endregion
59
61
  export { Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, type DialogFooterProps, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, dialogContentVariants, dialogFooterVariants };