@od-oneapp/uni-ui 2026.2.1701 → 2026.2.1703

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 (50) hide show
  1. package/actions-BIPbExnB.d.mts +50 -0
  2. package/alert-BoIobtC7.d.mts +22 -0
  3. package/badge-C6s15OvY.d.mts +25 -0
  4. package/branch-BqoX7hq3.d.mts +58 -0
  5. package/button-0eO9c3dd.d.mts +31 -0
  6. package/carousel-DAfKTUdi.d.mts +49 -0
  7. package/combobox-9IMgQio8.d.mts +79 -0
  8. package/components-ai-elements/actions/index.d.mts +2 -2
  9. package/components-ai-elements/artifact/index.d.mts +1 -1
  10. package/components-ai-elements/branch/index.d.mts +2 -2
  11. package/components-ai-elements/chain-of-thought/index.d.mts +1 -1
  12. package/components-ai-elements/checkpoint/index.d.mts +1 -1
  13. package/components-ai-elements/code-block/index.d.mts +1 -1
  14. package/components-ai-elements/confirmation/index.d.mts +2 -2
  15. package/components-ai-elements/context/index.d.mts +1 -1
  16. package/components-ai-elements/conversation/index.d.mts +1 -1
  17. package/components-ai-elements/custom/index.d.mts +1 -1
  18. package/components-ai-elements/inline-citation/index.d.mts +2 -2
  19. package/components-ai-elements/message/index.d.mts +4 -4
  20. package/components-ai-elements/plan/index.d.mts +1 -1
  21. package/components-ai-elements/prompt-input/index.d.mts +2 -2
  22. package/components-ai-elements/queue/index.d.mts +1 -1
  23. package/components-ai-elements/sources/index.d.mts +1 -1
  24. package/components-ai-elements/suggestion/index.d.mts +1 -1
  25. package/components-ai-elements/web-preview/index.d.mts +1 -1
  26. package/components-ai-workflows/resizable-node/index.d.mts +1 -1
  27. package/components-auth-server.d.mts +1 -1
  28. package/components-elements-alert.d.mts +1 -1
  29. package/components-elements-badge.d.mts +1 -1
  30. package/components-elements-button.d.mts +1 -1
  31. package/components-elements-card.d.mts +1 -1
  32. package/components-elements-carousel.d.mts +2 -2
  33. package/components-elements-progress.d.mts +2 -2
  34. package/components-forms/combobox/index.d.mts +2 -2
  35. package/components-forms/input-group/index.d.mts +2 -2
  36. package/components-layout/app-sidebar/index.d.mts +2 -2
  37. package/components-layout/nav-secondary/index.d.mts +2 -2
  38. package/components-layout/sidebar/index.d.mts +2 -2
  39. package/index.d.mts +12 -12
  40. package/input-group-D-TfC28K.d.mts +20 -0
  41. package/integrations-DGL5opo2.d.mts +60 -0
  42. package/package.json +2 -2
  43. package/sidebar-wVe-ucLv.d.mts +163 -0
  44. package/styles/colors.css +1 -1
  45. package/styles/mantine.css +1 -1
  46. package/styles/spacing.css +1 -1
  47. package/styles/theme.css +1 -1
  48. package/styles/typography.css +1 -1
  49. package/styles/variables.css +1 -1
  50. package/tokens.d.mts +2 -2
@@ -0,0 +1,50 @@
1
+
2
+ import { t as Button } from "./button-0eO9c3dd.mjs";
3
+ import { ComponentProps, ReactNode } from "react";
4
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
5
+
6
+ //#region src/components/ai-elements/actions/actions.d.ts
7
+ type ActionsProps = ComponentProps<'div'> & {
8
+ initial?: unknown;
9
+ animate?: unknown;
10
+ exit?: unknown;
11
+ variants?: unknown;
12
+ transition?: unknown;
13
+ };
14
+ declare const Actions: ({
15
+ className,
16
+ children,
17
+ initial: _initial,
18
+ animate: _animate,
19
+ exit: _exit,
20
+ variants: _variants,
21
+ transition: _transition,
22
+ ...props
23
+ }: ActionsProps) => react_jsx_runtime0.JSX.Element;
24
+ type ActionProps = ComponentProps<typeof Button> & {
25
+ tooltip?: ReactNode;
26
+ label?: string;
27
+ toggleable?: boolean;
28
+ pressed?: boolean;
29
+ defaultPressed?: boolean;
30
+ onPressedChange?: (pressed: boolean) => void;
31
+ isPending?: boolean;
32
+ };
33
+ declare const Action: ({
34
+ tooltip,
35
+ children,
36
+ label,
37
+ className,
38
+ variant,
39
+ size,
40
+ toggleable,
41
+ pressed: pressedProp,
42
+ defaultPressed,
43
+ onPressedChange,
44
+ onClick,
45
+ isPending: isPendingProp,
46
+ ...props
47
+ }: ActionProps) => react_jsx_runtime0.JSX.Element;
48
+ //#endregion
49
+ export { ActionsProps as i, ActionProps as n, Actions as r, Action as t };
50
+ //# sourceMappingURL=actions-BIPbExnB.d.mts.map
@@ -0,0 +1,22 @@
1
+
2
+ import * as react from "react";
3
+ import { ComponentProps } from "react";
4
+ import { VariantProps } from "class-variance-authority";
5
+ import * as class_variance_authority_types0 from "class-variance-authority/types";
6
+
7
+ //#region src/components/elements/atoms/alert/alert.d.ts
8
+ declare const alertVariants: (props?: ({
9
+ variant?: "default" | "destructive" | "success" | "info" | "warning" | null | undefined;
10
+ size?: "default" | "sm" | "lg" | null | undefined;
11
+ } & class_variance_authority_types0.ClassProp) | undefined) => string;
12
+ interface AlertProps extends ComponentProps<'div'>, VariantProps<typeof alertVariants> {
13
+ animate?: boolean;
14
+ }
15
+ declare const Alert: react.NamedExoticComponent<AlertProps>;
16
+ interface AlertTitleProps extends ComponentProps<'div'> {}
17
+ declare const AlertTitle: react.NamedExoticComponent<AlertTitleProps>;
18
+ interface AlertDescriptionProps extends ComponentProps<'div'> {}
19
+ declare const AlertDescription: react.NamedExoticComponent<AlertDescriptionProps>;
20
+ //#endregion
21
+ export { AlertTitle as a, AlertProps as i, AlertDescription as n, AlertTitleProps as o, AlertDescriptionProps as r, alertVariants as s, Alert as t };
22
+ //# sourceMappingURL=alert-BoIobtC7.d.mts.map
@@ -0,0 +1,25 @@
1
+
2
+ import { i as SkeletonProps } from "./skeleton-ByXUFNDF.mjs";
3
+ import * as React$1 from "react";
4
+ import { ComponentProps } from "react";
5
+ import { VariantProps } from "class-variance-authority";
6
+ import * as class_variance_authority_types0 from "class-variance-authority/types";
7
+
8
+ //#region src/components/elements/atoms/badge/badge.d.ts
9
+ declare const badgeVariants: (props?: ({
10
+ variant?: "default" | "destructive" | "neutral" | "outline" | "success" | "info" | "warning" | "secondary" | null | undefined;
11
+ size?: "default" | "sm" | "lg" | "touch" | null | undefined;
12
+ } & class_variance_authority_types0.ClassProp) | undefined) => string;
13
+ declare const BadgeSkeleton: React$1.NamedExoticComponent<VariantProps<(props?: ({
14
+ variant?: "default" | "destructive" | "neutral" | "outline" | "success" | "info" | "warning" | "secondary" | null | undefined;
15
+ size?: "default" | "sm" | "lg" | "touch" | null | undefined;
16
+ } & class_variance_authority_types0.ClassProp) | undefined) => string> & SkeletonProps>;
17
+ interface BadgeProps extends ComponentProps<'span'>, VariantProps<typeof badgeVariants> {
18
+ asChild?: boolean;
19
+ pulse?: boolean;
20
+ disableEntranceAnimation?: boolean;
21
+ }
22
+ declare const Badge: React$1.NamedExoticComponent<BadgeProps>;
23
+ //#endregion
24
+ export { badgeVariants as i, BadgeProps as n, BadgeSkeleton as r, Badge as t };
25
+ //# sourceMappingURL=badge-C6s15OvY.d.mts.map
@@ -0,0 +1,58 @@
1
+
2
+ import { t as Button } from "./button-0eO9c3dd.mjs";
3
+ import { ComponentProps, HTMLAttributes } from "react";
4
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
5
+ import { UIMessage } from "ai";
6
+
7
+ //#region src/components/ai-elements/branch/branch.d.ts
8
+ type BranchProps = HTMLAttributes<HTMLDivElement> & {
9
+ defaultBranch?: number;
10
+ branch?: number;
11
+ onBranchChange?: (branchIndex: number) => void;
12
+ };
13
+ declare const Branch: ({
14
+ defaultBranch,
15
+ branch: branchProp,
16
+ onBranchChange,
17
+ className,
18
+ children,
19
+ ...props
20
+ }: BranchProps) => react_jsx_runtime0.JSX.Element;
21
+ type BranchMessagesProps = HTMLAttributes<HTMLDivElement> & {
22
+ animate?: boolean;
23
+ };
24
+ declare const BranchMessages: ({
25
+ className,
26
+ children,
27
+ animate,
28
+ ...props
29
+ }: BranchMessagesProps) => react_jsx_runtime0.JSX.Element;
30
+ type BranchSelectorProps = HTMLAttributes<HTMLDivElement> & {
31
+ from: UIMessage['role'];
32
+ };
33
+ declare const BranchSelector: ({
34
+ className,
35
+ from,
36
+ children,
37
+ ...props
38
+ }: BranchSelectorProps) => react_jsx_runtime0.JSX.Element | null;
39
+ type BranchPreviousProps = ComponentProps<typeof Button>;
40
+ declare const BranchPrevious: ({
41
+ className,
42
+ children,
43
+ ...props
44
+ }: BranchPreviousProps) => react_jsx_runtime0.JSX.Element;
45
+ type BranchNextProps = ComponentProps<typeof Button>;
46
+ declare const BranchNext: ({
47
+ className,
48
+ children,
49
+ ...props
50
+ }: BranchNextProps) => react_jsx_runtime0.JSX.Element;
51
+ type BranchPageProps = HTMLAttributes<HTMLSpanElement>;
52
+ declare const BranchPage: ({
53
+ className,
54
+ ...props
55
+ }: BranchPageProps) => react_jsx_runtime0.JSX.Element;
56
+ //#endregion
57
+ export { BranchNextProps as a, BranchPrevious as c, BranchSelector as d, BranchSelectorProps as f, BranchNext as i, BranchPreviousProps as l, BranchMessages as n, BranchPage as o, BranchMessagesProps as r, BranchPageProps as s, Branch as t, BranchProps as u };
58
+ //# sourceMappingURL=branch-BqoX7hq3.d.mts.map
@@ -0,0 +1,31 @@
1
+
2
+ import { i as SkeletonProps } from "./skeleton-ByXUFNDF.mjs";
3
+ import * as React$1 from "react";
4
+ import { VariantProps } from "class-variance-authority";
5
+ import { HTMLMotionProps } from "motion/react";
6
+ import * as class_variance_authority_types0 from "class-variance-authority/types";
7
+
8
+ //#region src/components/elements/atoms/button/button.d.ts
9
+ type IconColorName = 'purple' | 'violet' | 'blue' | 'green' | 'red' | 'yellow' | 'amber' | 'orange' | 'pink' | 'indigo' | 'slate' | 'gray' | 'zinc' | 'magenta' | 'primary';
10
+ declare const buttonVariants: (props?: ({
11
+ variant?: "default" | "destructive" | "outline" | "link" | "outlineSecondary" | "secondary" | "ghost" | "goBack" | "leftIcon" | "leftIconSecondary" | "rightIcon" | "rightIconSecondary" | null | undefined;
12
+ size?: "default" | "sm" | "lg" | "touch" | "icon" | "icon-sm" | "icon-lg" | "icon-touch" | null | undefined;
13
+ } & class_variance_authority_types0.ClassProp) | undefined) => string;
14
+ declare const ButtonSkeleton: React$1.NamedExoticComponent<VariantProps<(props?: ({
15
+ variant?: "default" | "destructive" | "outline" | "link" | "outlineSecondary" | "secondary" | "ghost" | "goBack" | "leftIcon" | "leftIconSecondary" | "rightIcon" | "rightIconSecondary" | null | undefined;
16
+ size?: "default" | "sm" | "lg" | "touch" | "icon" | "icon-sm" | "icon-lg" | "icon-touch" | null | undefined;
17
+ } & class_variance_authority_types0.ClassProp) | undefined) => string> & Omit<SkeletonProps, "variant">>;
18
+ interface ButtonProps extends Omit<HTMLMotionProps<'button'>, 'color' | 'children' | 'onAnimationStart' | 'onDragStart' | 'onDragEnd' | 'onDrag'>, VariantProps<typeof buttonVariants> {
19
+ asChild?: boolean;
20
+ children?: React$1.ReactNode;
21
+ icon?: React$1.ReactNode;
22
+ iconColor?: IconColorName;
23
+ color?: IconColorName;
24
+ loading?: boolean;
25
+ loadingText?: string;
26
+ disableEntranceAnimation?: boolean;
27
+ }
28
+ declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
29
+ //#endregion
30
+ export { buttonVariants as a, IconColorName as i, ButtonProps as n, ButtonSkeleton as r, Button as t };
31
+ //# sourceMappingURL=button-0eO9c3dd.d.mts.map
@@ -0,0 +1,49 @@
1
+
2
+ import { t as Button } from "./button-0eO9c3dd.mjs";
3
+ import * as React$1 from "react";
4
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
5
+ import useEmblaCarousel, { UseEmblaCarouselType } from "embla-carousel-react";
6
+
7
+ //#region src/components/elements/organisms/carousel/carousel.d.ts
8
+ type CarouselApi = UseEmblaCarouselType[1];
9
+ type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
10
+ type CarouselOptions = UseCarouselParameters[0];
11
+ type CarouselPlugin = UseCarouselParameters[1];
12
+ type CarouselProps = {
13
+ opts?: CarouselOptions;
14
+ plugins?: CarouselPlugin;
15
+ orientation?: 'horizontal' | 'vertical';
16
+ setApi?: (api: CarouselApi) => void;
17
+ };
18
+ declare function Carousel({
19
+ orientation,
20
+ opts,
21
+ setApi,
22
+ plugins,
23
+ className,
24
+ children,
25
+ ...props
26
+ }: React$1.ComponentProps<'div'> & CarouselProps): react_jsx_runtime0.JSX.Element;
27
+ declare function CarouselContent({
28
+ className,
29
+ ...props
30
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
31
+ declare function CarouselItem({
32
+ className,
33
+ ...props
34
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
35
+ declare function CarouselPrevious({
36
+ className,
37
+ variant,
38
+ size,
39
+ ...props
40
+ }: React$1.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
41
+ declare function CarouselNext({
42
+ className,
43
+ variant,
44
+ size,
45
+ ...props
46
+ }: React$1.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
47
+ //#endregion
48
+ export { CarouselNext as a, CarouselItem as i, CarouselApi as n, CarouselPrevious as o, CarouselContent as r, Carousel as t };
49
+ //# sourceMappingURL=carousel-DAfKTUdi.d.mts.map
@@ -0,0 +1,79 @@
1
+
2
+ import { t as Button } from "./button-0eO9c3dd.mjs";
3
+ import * as react from "react";
4
+ import { PropsWithChildren, ReactNode, WheelEventHandler } from "react";
5
+ import { LucideIcon } from "lucide-react";
6
+
7
+ //#region src/components/elements/organisms/popover/popover.d.ts
8
+ interface PopoverProps extends PropsWithChildren {
9
+ children: ReactNode;
10
+ content: ReactNode | string;
11
+ align?: 'center' | 'start' | 'end';
12
+ side?: 'bottom' | 'top' | 'left' | 'right';
13
+ openPopover: boolean;
14
+ setOpenPopover: (open: boolean) => void;
15
+ mobileOnly?: boolean;
16
+ popoverContentClassName?: string;
17
+ onOpenAutoFocus?: (event: Event) => void;
18
+ collisionBoundary?: Element | Element[];
19
+ sticky?: 'partial' | 'always';
20
+ onEscapeKeyDown?: (event: KeyboardEvent) => void;
21
+ onWheel?: WheelEventHandler;
22
+ sideOffset?: number;
23
+ }
24
+ declare const Popover: react.NamedExoticComponent<PopoverProps>;
25
+ //#endregion
26
+ //#region src/components/forms/combobox/combobox.d.ts
27
+ interface ComboboxOption<TMeta = unknown> {
28
+ label: string | ReactNode;
29
+ value: string;
30
+ icon?: LucideIcon | ReactNode;
31
+ disabledTooltip?: ReactNode;
32
+ meta?: TMeta;
33
+ separatorAfter?: boolean;
34
+ first?: boolean;
35
+ }
36
+ interface ComboboxProps<TMultiple extends boolean | undefined, TMeta> extends PropsWithChildren {
37
+ multiple?: TMultiple;
38
+ selected: TMultiple extends true ? ComboboxOption<TMeta>[] : ComboboxOption<TMeta> | null;
39
+ setSelected?: TMultiple extends true ? (options: ComboboxOption<TMeta>[]) => void : (option: ComboboxOption<TMeta> | null) => void;
40
+ onSelect?: (option: ComboboxOption<TMeta>) => void;
41
+ options?: ComboboxOption<TMeta>[];
42
+ trigger?: ReactNode;
43
+ icon?: LucideIcon | ReactNode;
44
+ placeholder?: ReactNode;
45
+ searchPlaceholder?: string;
46
+ emptyState?: ReactNode;
47
+ createLabel?: (search: string) => ReactNode;
48
+ createIcon?: LucideIcon;
49
+ onCreate?: (search: string) => Promise<boolean>;
50
+ buttonProps?: React.ComponentProps<typeof Button>;
51
+ labelProps?: {
52
+ className?: string;
53
+ };
54
+ iconProps?: {
55
+ className?: string;
56
+ };
57
+ popoverProps?: {
58
+ contentClassName?: string;
59
+ };
60
+ shortcutHint?: string;
61
+ caret?: boolean | ReactNode;
62
+ side?: PopoverProps['side'];
63
+ open?: boolean;
64
+ onOpenChange?: (open: boolean) => void;
65
+ onSearchChange?: (search: string) => void;
66
+ shouldFilter?: boolean;
67
+ inputRight?: ReactNode;
68
+ inputClassName?: string;
69
+ optionRight?: (option: ComboboxOption) => ReactNode;
70
+ optionClassName?: string;
71
+ matchTriggerWidth?: boolean;
72
+ hideSearch?: boolean;
73
+ stagger?: boolean;
74
+ size?: 'sm' | 'default' | 'lg' | 'touch';
75
+ }
76
+ declare const Combobox: react.NamedExoticComponent<ComboboxProps<boolean | undefined, unknown>>;
77
+ //#endregion
78
+ export { PopoverProps as a, Popover as i, ComboboxOption as n, ComboboxProps as r, Combobox as t };
79
+ //# sourceMappingURL=combobox-9IMgQio8.d.mts.map
@@ -1,5 +1,5 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import "../../button-B4D03FYr.mjs";
4
- import { i as ActionsProps, n as ActionProps, r as Actions, t as Action } from "../../actions-q9FwIzsh.mjs";
3
+ import "../../button-0eO9c3dd.mjs";
4
+ import { i as ActionsProps, n as ActionProps, r as Actions, t as Action } from "../../actions-BIPbExnB.mjs";
5
5
  export { Action, ActionProps, Actions, ActionsProps };
@@ -1,6 +1,6 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { t as Button } from "../../button-B4D03FYr.mjs";
3
+ import { t as Button } from "../../button-0eO9c3dd.mjs";
4
4
  import "../../components-elements-button.mjs";
5
5
  import { ComponentProps, HTMLAttributes } from "react";
6
6
  import { LucideIcon } from "lucide-react";
@@ -1,5 +1,5 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import "../../button-B4D03FYr.mjs";
4
- import { a as BranchNextProps, c as BranchPrevious, d as BranchSelector, f as BranchSelectorProps, i as BranchNext, l as BranchPreviousProps, n as BranchMessages, o as BranchPage, r as BranchMessagesProps, s as BranchPageProps, t as Branch, u as BranchProps } from "../../branch-DLpOlkyH.mjs";
3
+ import "../../button-0eO9c3dd.mjs";
4
+ import { a as BranchNextProps, c as BranchPrevious, d as BranchSelector, f as BranchSelectorProps, i as BranchNext, l as BranchPreviousProps, n as BranchMessages, o as BranchPage, r as BranchMessagesProps, s as BranchPageProps, t as Branch, u as BranchProps } from "../../branch-BqoX7hq3.mjs";
5
5
  export { Branch, BranchMessages, BranchMessagesProps, BranchNext, BranchNextProps, BranchPage, BranchPageProps, BranchPrevious, BranchPreviousProps, BranchProps, BranchSelector, BranchSelectorProps };
@@ -1,6 +1,6 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { t as Badge } from "../../badge-CGTN2VG0.mjs";
3
+ import { t as Badge } from "../../badge-C6s15OvY.mjs";
4
4
  import "../../components-elements-badge.mjs";
5
5
  import { n as CollapsibleContent, o as CollapsibleTrigger } from "../../collapsible-CRgTpRfr.mjs";
6
6
  import "../../components-elements-collapsible.mjs";
@@ -1,6 +1,6 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { t as Button } from "../../button-B4D03FYr.mjs";
3
+ import { t as Button } from "../../button-0eO9c3dd.mjs";
4
4
  import "../../components-elements-button.mjs";
5
5
  import { ComponentProps, HTMLAttributes, ReactNode } from "react";
6
6
  import { LucideProps } from "lucide-react";
@@ -1,6 +1,6 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { t as Button } from "../../button-B4D03FYr.mjs";
3
+ import { t as Button } from "../../button-0eO9c3dd.mjs";
4
4
  import "../../components-elements-button.mjs";
5
5
  import { ComponentProps, HTMLAttributes } from "react";
6
6
  import * as react_jsx_runtime0 from "react/jsx-runtime";
@@ -1,8 +1,8 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { t as Button } from "../../button-B4D03FYr.mjs";
3
+ import { t as Button } from "../../button-0eO9c3dd.mjs";
4
4
  import "../../components-elements-button.mjs";
5
- import { n as AlertDescription, t as Alert } from "../../alert-BVUF7Xzb.mjs";
5
+ import { n as AlertDescription, t as Alert } from "../../alert-BoIobtC7.mjs";
6
6
  import "../../components-elements-alert.mjs";
7
7
  import { ComponentProps, ReactNode } from "react";
8
8
  import { VariantProps } from "class-variance-authority";
@@ -1,6 +1,6 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { t as Button } from "../../button-B4D03FYr.mjs";
3
+ import { t as Button } from "../../button-0eO9c3dd.mjs";
4
4
  import "../../components-elements-button.mjs";
5
5
  import { n as HoverCardContent, t as HoverCard } from "../../hover-card-BqEpbXMp.mjs";
6
6
  import "../../components-elements-hover-card.mjs";
@@ -1,6 +1,6 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { t as Button } from "../../button-B4D03FYr.mjs";
3
+ import { t as Button } from "../../button-0eO9c3dd.mjs";
4
4
  import "../../components-elements-button.mjs";
5
5
  import { ComponentProps } from "react";
6
6
  import * as react_jsx_runtime0 from "react/jsx-runtime";
@@ -1,6 +1,6 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { t as Button } from "../../button-B4D03FYr.mjs";
3
+ import { t as Button } from "../../button-0eO9c3dd.mjs";
4
4
  import "../../components-elements-button.mjs";
5
5
  import * as React$2 from "react";
6
6
  import React$1, { ComponentProps, HTMLAttributes, ReactNode } from "react";
@@ -1,9 +1,9 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import "../../button-B4D03FYr.mjs";
3
+ import "../../button-0eO9c3dd.mjs";
4
4
  import { t as HoverCard } from "../../hover-card-BqEpbXMp.mjs";
5
5
  import "../../components-elements-hover-card.mjs";
6
- import { t as Carousel } from "../../carousel-DC9TOMcM.mjs";
6
+ import { t as Carousel } from "../../carousel-DAfKTUdi.mjs";
7
7
  import "../../components-elements-carousel.mjs";
8
8
  import { ComponentProps } from "react";
9
9
  import { HTMLMotionProps } from "motion/react";
@@ -1,9 +1,9 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import "../../button-B4D03FYr.mjs";
4
- import { n as ActionProps, r as Actions } from "../../actions-q9FwIzsh.mjs";
3
+ import "../../button-0eO9c3dd.mjs";
4
+ import { n as ActionProps, r as Actions } from "../../actions-BIPbExnB.mjs";
5
5
  import "../actions/index.mjs";
6
- import { c as BranchPrevious, d as BranchSelector, i as BranchNext, n as BranchMessages, o as BranchPage, t as Branch } from "../../branch-DLpOlkyH.mjs";
6
+ import { c as BranchPrevious, d as BranchSelector, i as BranchNext, n as BranchMessages, o as BranchPage, t as Branch } from "../../branch-BqoX7hq3.mjs";
7
7
  import "../branch/index.mjs";
8
8
  import * as react from "react";
9
9
  import { ComponentProps, HTMLAttributes, ReactNode } from "react";
@@ -20,7 +20,7 @@ type MessageContextValue = {
20
20
  };
21
21
  declare const useMessageContext: () => MessageContextValue;
22
22
  declare const messageVariants: (props?: ({
23
- from?: "data" | "user" | "assistant" | "system" | null | undefined;
23
+ from?: "data" | "system" | "user" | "assistant" | null | undefined;
24
24
  } & class_variance_authority_types0.ClassProp) | undefined) => string;
25
25
  type MessageVariants = VariantProps<typeof messageVariants>;
26
26
  type MessageProps = HTMLAttributes<HTMLDivElement> & {
@@ -1,7 +1,7 @@
1
1
 
2
2
  import { o as CollapsibleTrigger, t as Collapsible } from "../../collapsible-CRgTpRfr.mjs";
3
3
  import "../../components-elements-collapsible.mjs";
4
- import { c as CardAction, f as CardDescription, g as CardHeader, u as CardContent, y as CardTitle } from "../../integrations-Doz6nfxm.mjs";
4
+ import { c as CardAction, f as CardDescription, g as CardHeader, u as CardContent, y as CardTitle } from "../../integrations-DGL5opo2.mjs";
5
5
  import "../../components-elements-card.mjs";
6
6
  import { ComponentProps } from "react";
7
7
  import * as react_jsx_runtime0 from "react/jsx-runtime";
@@ -1,6 +1,6 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { t as Button } from "../../button-B4D03FYr.mjs";
3
+ import { t as Button } from "../../button-0eO9c3dd.mjs";
4
4
  import "../../components-elements-button.mjs";
5
5
  import { a as HoverCardTrigger, n as HoverCardContent, t as HoverCard } from "../../hover-card-BqEpbXMp.mjs";
6
6
  import "../../components-elements-hover-card.mjs";
@@ -8,7 +8,7 @@ import "../../dialog-Di5QhIga.mjs";
8
8
  import { a as CommandInput, c as CommandSeparator, i as CommandGroup, o as CommandItem, r as CommandEmpty, s as CommandList, t as Command } from "../../index-AwyfWaOP.mjs";
9
9
  import { a as DropdownMenuItem, r as DropdownMenuContent, t as DropdownMenu } from "../../dropdown-menu-CwRZCnNs.mjs";
10
10
  import "../../components-elements-dropdown-menu.mjs";
11
- import { n as InputGroupAddon, o as InputGroupTextarea } from "../../input-group-Duxn4h1e.mjs";
11
+ import { n as InputGroupAddon, o as InputGroupTextarea } from "../../input-group-D-TfC28K.mjs";
12
12
  import "../../components-forms/input-group/index.mjs";
13
13
  import { i as SelectItem, l as SelectTrigger, n as SelectContent, t as Select, u as SelectValue } from "../../select-csqviwUw.mjs";
14
14
  import "../../components-forms/select/index.mjs";
@@ -1,6 +1,6 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { t as Button } from "../../button-B4D03FYr.mjs";
3
+ import { t as Button } from "../../button-0eO9c3dd.mjs";
4
4
  import "../../components-elements-button.mjs";
5
5
  import { n as CollapsibleContent, t as Collapsible } from "../../collapsible-CRgTpRfr.mjs";
6
6
  import "../../components-elements-collapsible.mjs";
@@ -1,6 +1,6 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { i as IconColorName, t as Button } from "../../button-B4D03FYr.mjs";
3
+ import { i as IconColorName, t as Button } from "../../button-0eO9c3dd.mjs";
4
4
  import "../../components-elements-button.mjs";
5
5
  import { ComponentProps } from "react";
6
6
  import { HTMLMotionProps } from "motion/react";
@@ -1,6 +1,6 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { t as Button } from "../../button-B4D03FYr.mjs";
3
+ import { t as Button } from "../../button-0eO9c3dd.mjs";
4
4
  import "../../components-elements-button.mjs";
5
5
  import { t as ScrollArea } from "../../scroll-area-CDRGG59G.mjs";
6
6
  import "../../components-elements-scroll-area.mjs";
@@ -1,6 +1,6 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import { t as Button } from "../../button-B4D03FYr.mjs";
3
+ import { t as Button } from "../../button-0eO9c3dd.mjs";
4
4
  import "../../components-elements-button.mjs";
5
5
  import { t as Input } from "../../input-CT1C9DMs.mjs";
6
6
  import "../../components-forms/input/index.mjs";
@@ -1,5 +1,5 @@
1
1
 
2
- import { s as Card } from "../../integrations-Doz6nfxm.mjs";
2
+ import { s as Card } from "../../integrations-DGL5opo2.mjs";
3
3
  import "../../components-elements-card.mjs";
4
4
  import { a as NodeContentProps, c as NodeFooter, d as NodeHeader, f as NodeHeaderProps, h as NodeTitleProps, i as NodeContent, l as NodeFooterProps, m as NodeTitle, n as NodeAction, o as NodeDescription, p as NodeProps, r as NodeActionProps, s as NodeDescriptionProps } from "../../node-BKXOPjw9.mjs";
5
5
  import "../node/index.mjs";
@@ -1,7 +1,7 @@
1
1
 
2
2
  import "./skeleton-ByXUFNDF.mjs";
3
3
  import "./components-elements-skeleton.mjs";
4
- import { g as CardHeader, m as CardFooter, s as Card, u as CardContent } from "./integrations-Doz6nfxm.mjs";
4
+ import { g as CardHeader, m as CardFooter, s as Card, u as CardContent } from "./integrations-DGL5opo2.mjs";
5
5
  import "./components-elements-card.mjs";
6
6
  import { S as InputType, _ as BaseProps, d as AlertVariant, u as AlertType, v as ButtonSize, y as ButtonVariant } from "./dark-mode-CYb7lJ6G.mjs";
7
7
  import "./shared-auth.mjs";
@@ -1,3 +1,3 @@
1
1
 
2
- import { a as AlertTitle, i as AlertProps, n as AlertDescription, o as AlertTitleProps, r as AlertDescriptionProps, s as alertVariants, t as Alert } from "./alert-BVUF7Xzb.mjs";
2
+ import { a as AlertTitle, i as AlertProps, n as AlertDescription, o as AlertTitleProps, r as AlertDescriptionProps, s as alertVariants, t as Alert } from "./alert-BoIobtC7.mjs";
3
3
  export { Alert, AlertDescription, AlertDescriptionProps, AlertProps, AlertTitle, AlertTitleProps, alertVariants };
@@ -1,4 +1,4 @@
1
1
 
2
2
  import "./skeleton-ByXUFNDF.mjs";
3
- import { i as badgeVariants, n as BadgeProps, r as BadgeSkeleton, t as Badge } from "./badge-CGTN2VG0.mjs";
3
+ import { i as badgeVariants, n as BadgeProps, r as BadgeSkeleton, t as Badge } from "./badge-C6s15OvY.mjs";
4
4
  export { Badge, BadgeProps, BadgeSkeleton, badgeVariants };
@@ -1,4 +1,4 @@
1
1
 
2
2
  import "./skeleton-ByXUFNDF.mjs";
3
- import { a as buttonVariants, i as IconColorName, n as ButtonProps, r as ButtonSkeleton, t as Button } from "./button-B4D03FYr.mjs";
3
+ import { a as buttonVariants, i as IconColorName, n as ButtonProps, r as ButtonSkeleton, t as Button } from "./button-0eO9c3dd.mjs";
4
4
  export { Button, ButtonProps, ButtonSkeleton, IconColorName, buttonVariants };
@@ -1,3 +1,3 @@
1
1
 
2
- import { C as cardDescriptionVariants, D as cardVariants, E as cardTitleVariants, S as cardContentVariants, T as cardHeaderVariants, _ as CardHeaderProps, a as integrationDotVariants, b as CardTitleProps, c as CardAction, d as CardContentProps, f as CardDescription, g as CardHeader, h as CardFooterProps, i as IntegrationCompactProps, l as CardActionProps, m as CardFooter, n as IntegrationCardProps, o as integrationStatusVariants, p as CardDescriptionProps, r as IntegrationCompact, s as Card, t as IntegrationCard, u as CardContent, v as CardProps, w as cardFooterVariants, x as cardActionVariants, y as CardTitle } from "./integrations-Doz6nfxm.mjs";
2
+ import { C as cardDescriptionVariants, D as cardVariants, E as cardTitleVariants, S as cardContentVariants, T as cardHeaderVariants, _ as CardHeaderProps, a as integrationDotVariants, b as CardTitleProps, c as CardAction, d as CardContentProps, f as CardDescription, g as CardHeader, h as CardFooterProps, i as IntegrationCompactProps, l as CardActionProps, m as CardFooter, n as IntegrationCardProps, o as integrationStatusVariants, p as CardDescriptionProps, r as IntegrationCompact, s as Card, t as IntegrationCard, u as CardContent, v as CardProps, w as cardFooterVariants, x as cardActionVariants, y as CardTitle } from "./integrations-DGL5opo2.mjs";
3
3
  export { Card, CardAction, CardActionProps, CardContent, CardContentProps, CardDescription, CardDescriptionProps, CardFooter, CardFooterProps, CardHeader, CardHeaderProps, CardProps, CardTitle, CardTitleProps, IntegrationCard, IntegrationCardProps, IntegrationCompact, IntegrationCompactProps, cardActionVariants, cardContentVariants, cardDescriptionVariants, cardFooterVariants, cardHeaderVariants, cardTitleVariants, cardVariants, integrationDotVariants, integrationStatusVariants };
@@ -1,5 +1,5 @@
1
1
 
2
2
  import "./skeleton-ByXUFNDF.mjs";
3
- import "./button-B4D03FYr.mjs";
4
- import { a as CarouselNext, i as CarouselItem, n as CarouselApi, o as CarouselPrevious, r as CarouselContent, t as Carousel } from "./carousel-DC9TOMcM.mjs";
3
+ import "./button-0eO9c3dd.mjs";
4
+ import { a as CarouselNext, i as CarouselItem, n as CarouselApi, o as CarouselPrevious, r as CarouselContent, t as Carousel } from "./carousel-DAfKTUdi.mjs";
5
5
  export { Carousel, CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious };
@@ -7,10 +7,10 @@ import * as class_variance_authority_types0 from "class-variance-authority/types
7
7
  //#region src/components/elements/atoms/progress/progress.d.ts
8
8
  declare const progressVariants: (props?: ({
9
9
  size?: "default" | "sm" | "lg" | "xl" | "xs" | "touch" | null | undefined;
10
- variant?: "default" | "success" | "warning" | "destructive" | null | undefined;
10
+ variant?: "default" | "destructive" | "success" | "warning" | null | undefined;
11
11
  } & class_variance_authority_types0.ClassProp) | undefined) => string;
12
12
  declare const progressIndicatorVariants: (props?: ({
13
- variant?: "default" | "success" | "warning" | "destructive" | null | undefined;
13
+ variant?: "default" | "destructive" | "success" | "warning" | null | undefined;
14
14
  animation?: "none" | "indeterminate" | "striped" | "stripedAnimated" | null | undefined;
15
15
  } & class_variance_authority_types0.ClassProp) | undefined) => string;
16
16
  interface ProgressProps extends Omit<ComponentProps<'div'>, 'children'>, VariantProps<typeof progressVariants> {
@@ -1,5 +1,5 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import "../../button-B4D03FYr.mjs";
4
- import { n as ComboboxOption, r as ComboboxProps, t as Combobox } from "../../combobox-CIsBOM8Y.mjs";
3
+ import "../../button-0eO9c3dd.mjs";
4
+ import { n as ComboboxOption, r as ComboboxProps, t as Combobox } from "../../combobox-9IMgQio8.mjs";
5
5
  export { Combobox, ComboboxOption, ComboboxProps };
@@ -1,5 +1,5 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import "../../button-B4D03FYr.mjs";
4
- import { a as InputGroupText, i as InputGroupInput, n as InputGroupAddon, o as InputGroupTextarea, r as InputGroupButton, t as InputGroup } from "../../input-group-Duxn4h1e.mjs";
3
+ import "../../button-0eO9c3dd.mjs";
4
+ import { a as InputGroupText, i as InputGroupInput, n as InputGroupAddon, o as InputGroupTextarea, r as InputGroupButton, t as InputGroup } from "../../input-group-D-TfC28K.mjs";
5
5
  export { InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea };
@@ -1,12 +1,12 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import "../../button-B4D03FYr.mjs";
3
+ import "../../button-0eO9c3dd.mjs";
4
4
  import "../../input-CT1C9DMs.mjs";
5
5
  import "../../separator-BG9BqZqg.mjs";
6
6
  import "../../tooltip-FqB3srL-.mjs";
7
7
  import { t as App } from "../../nav-app-switcher-B1NTlYrm.mjs";
8
8
  import "../nav-app-switcher/index.mjs";
9
- import { t as Sidebar } from "../../sidebar-Dy_fKUd6.mjs";
9
+ import { t as Sidebar } from "../../sidebar-wVe-ucLv.mjs";
10
10
  import "../sidebar/index.mjs";
11
11
  import * as React$1 from "react";
12
12
  import * as react_jsx_runtime0 from "react/jsx-runtime";
@@ -1,10 +1,10 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import "../../button-B4D03FYr.mjs";
3
+ import "../../button-0eO9c3dd.mjs";
4
4
  import "../../input-CT1C9DMs.mjs";
5
5
  import "../../separator-BG9BqZqg.mjs";
6
6
  import "../../tooltip-FqB3srL-.mjs";
7
- import { i as SidebarGroup } from "../../sidebar-Dy_fKUd6.mjs";
7
+ import { i as SidebarGroup } from "../../sidebar-wVe-ucLv.mjs";
8
8
  import "../sidebar/index.mjs";
9
9
  import * as React$1 from "react";
10
10
  import { ComponentType } from "react";
@@ -1,8 +1,8 @@
1
1
 
2
2
  import "../../skeleton-ByXUFNDF.mjs";
3
- import "../../button-B4D03FYr.mjs";
3
+ import "../../button-0eO9c3dd.mjs";
4
4
  import "../../input-CT1C9DMs.mjs";
5
5
  import "../../separator-BG9BqZqg.mjs";
6
6
  import "../../tooltip-FqB3srL-.mjs";
7
- import { C as SidebarTrigger, S as SidebarSeparator, _ as SidebarMenuSub, a as SidebarGroupAction, b as SidebarProvider, c as SidebarHeader, d as SidebarMenu, f as SidebarMenuAction, g as SidebarMenuSkeleton, h as SidebarMenuItem, i as SidebarGroup, l as SidebarInput, m as SidebarMenuButton, n as SidebarContent, o as SidebarGroupContent, p as SidebarMenuBadge, r as SidebarFooter, s as SidebarGroupLabel, t as Sidebar, u as SidebarInset, v as SidebarMenuSubButton, w as useSidebar, x as SidebarRail, y as SidebarMenuSubItem } from "../../sidebar-Dy_fKUd6.mjs";
7
+ import { C as SidebarTrigger, S as SidebarSeparator, _ as SidebarMenuSub, a as SidebarGroupAction, b as SidebarProvider, c as SidebarHeader, d as SidebarMenu, f as SidebarMenuAction, g as SidebarMenuSkeleton, h as SidebarMenuItem, i as SidebarGroup, l as SidebarInput, m as SidebarMenuButton, n as SidebarContent, o as SidebarGroupContent, p as SidebarMenuBadge, r as SidebarFooter, s as SidebarGroupLabel, t as Sidebar, u as SidebarInset, v as SidebarMenuSubButton, w as useSidebar, x as SidebarRail, y as SidebarMenuSubItem } from "../../sidebar-wVe-ucLv.mjs";
8
8
  export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, useSidebar };
package/index.d.mts CHANGED
@@ -1,17 +1,17 @@
1
1
 
2
2
  import { f as skeletonVariants, s as SkeletonTransition, t as Skeleton } from "./skeleton-ByXUFNDF.mjs";
3
3
  import "./components-elements-skeleton.mjs";
4
- import { a as buttonVariants, n as ButtonProps, t as Button } from "./button-B4D03FYr.mjs";
4
+ import { a as buttonVariants, n as ButtonProps, t as Button } from "./button-0eO9c3dd.mjs";
5
5
  import "./components-elements-button.mjs";
6
- import { i as ActionsProps, n as ActionProps, r as Actions, t as Action } from "./actions-q9FwIzsh.mjs";
6
+ import { i as ActionsProps, n as ActionProps, r as Actions, t as Action } from "./actions-BIPbExnB.mjs";
7
7
  import "./components-ai-elements/actions/index.mjs";
8
8
  import { AgentStep, AgentStepProps, agentStepVariants } from "./components-ai-elements/agent-step/index.mjs";
9
9
  import { a as SPRING_TACTILE, i as SPRING_GENTLE, o as SPRING_WEIGHTED, r as SPRING_FLUID } from "./motion-DLlwbMJ0.mjs";
10
10
  import { AIAnimate, AIColorScheme, AIContainer, AIIcon, AIPadding, AIRadius, AISpacing, AIStatus, AIText, AIWeight, AI_ANIMATE, AI_BODY, AI_COLLAPSIBLE, AI_COLORS, AI_CONTAINER, AI_CONTAINER_RADIUS, AI_DISABLED, AI_DURATION, AI_FOCUS, AI_HEADER, AI_HOVER, AI_ICON, AI_ICON_STYLE, AI_INTERACTION, AI_NESTED_RADIUS, AI_PADDING, AI_RADIUS, AI_SPACING, AI_STACK, AI_STAGGER_DELAY, AI_STATUS, AI_STYLES, AI_TEXT, AI_TITLE, AI_TRANSITION, AI_WEIGHT } from "./components-ai-elements-constants.mjs";
11
11
  import { Artifact, ArtifactAction, ArtifactActionProps, ArtifactActions, ArtifactActionsProps, ArtifactClose, ArtifactCloseProps, ArtifactContent, ArtifactContentProps, ArtifactDescription, ArtifactDescriptionProps, ArtifactHeader, ArtifactHeaderProps, ArtifactProps, ArtifactTitle, ArtifactTitleProps } from "./components-ai-elements/artifact/index.mjs";
12
- import { a as BranchNextProps, c as BranchPrevious, d as BranchSelector, f as BranchSelectorProps, i as BranchNext, l as BranchPreviousProps, n as BranchMessages, o as BranchPage, r as BranchMessagesProps, s as BranchPageProps, t as Branch, u as BranchProps } from "./branch-DLpOlkyH.mjs";
12
+ import { a as BranchNextProps, c as BranchPrevious, d as BranchSelector, f as BranchSelectorProps, i as BranchNext, l as BranchPreviousProps, n as BranchMessages, o as BranchPage, r as BranchMessagesProps, s as BranchPageProps, t as Branch, u as BranchProps } from "./branch-BqoX7hq3.mjs";
13
13
  import "./components-ai-elements/branch/index.mjs";
14
- import { i as badgeVariants, t as Badge } from "./badge-CGTN2VG0.mjs";
14
+ import { i as badgeVariants, t as Badge } from "./badge-C6s15OvY.mjs";
15
15
  import "./components-elements-badge.mjs";
16
16
  import { n as CollapsibleContent, o as CollapsibleTrigger, t as Collapsible } from "./collapsible-CRgTpRfr.mjs";
17
17
  import "./components-elements-collapsible.mjs";
@@ -19,7 +19,7 @@ import { ChainOfThought, ChainOfThoughtContent, ChainOfThoughtContentProps, Chai
19
19
  import { ChatInput } from "./components-ai-elements/chat-input/index.mjs";
20
20
  import { Checkpoint, CheckpointIcon, CheckpointIconProps, CheckpointProps, CheckpointTrigger, CheckpointTriggerProps } from "./components-ai-elements/checkpoint/index.mjs";
21
21
  import { CodeBlock, CodeBlockCopyButton, CodeBlockCopyButtonProps, highlightCode } from "./components-ai-elements/code-block/index.mjs";
22
- import { a as AlertTitle, n as AlertDescription, t as Alert } from "./alert-BVUF7Xzb.mjs";
22
+ import { a as AlertTitle, n as AlertDescription, t as Alert } from "./alert-BoIobtC7.mjs";
23
23
  import "./components-elements-alert.mjs";
24
24
  import { Confirmation, ConfirmationAccepted, ConfirmationAcceptedProps, ConfirmationAction, ConfirmationActionProps, ConfirmationActions, ConfirmationActionsProps, ConfirmationContent, ConfirmationContentProps, ConfirmationProps, ConfirmationRejected, ConfirmationRejectedProps, ConfirmationRequest, ConfirmationRequestProps, ConfirmationTitle, ConfirmationTitleProps } from "./components-ai-elements/confirmation/index.mjs";
25
25
  import { a as HoverCardTrigger, n as HoverCardContent, s as hoverCardContentVariants, t as HoverCard } from "./hover-card-BqEpbXMp.mjs";
@@ -29,7 +29,7 @@ import { Conversation, ConversationContent, ConversationContentProps, Conversati
29
29
  import { a as GenerativeUIRenderer, i as GenerativeUIAction, n as DEFAULT_COMPONENT_MAP, o as GenerativeUIRendererProps, r as GenerativeComponentProps, t as ComponentMap } from "./generative-ui-renderer-D69qYK0D.mjs";
30
30
  import "./components-ai-elements/generative-ui/index.mjs";
31
31
  import { Image, ImageProps } from "./components-ai-elements/image/index.mjs";
32
- import { a as CarouselNext, i as CarouselItem, n as CarouselApi, o as CarouselPrevious, r as CarouselContent, t as Carousel } from "./carousel-DC9TOMcM.mjs";
32
+ import { a as CarouselNext, i as CarouselItem, n as CarouselApi, o as CarouselPrevious, r as CarouselContent, t as Carousel } from "./carousel-DAfKTUdi.mjs";
33
33
  import "./components-elements-carousel.mjs";
34
34
  import { InlineCitation, InlineCitationCard, InlineCitationCardBody, InlineCitationCardBodyProps, InlineCitationCardProps, InlineCitationCardTrigger, InlineCitationCardTriggerProps, InlineCitationCarousel, InlineCitationCarouselContent, InlineCitationCarouselContentProps, InlineCitationCarouselHeader, InlineCitationCarouselHeaderProps, InlineCitationCarouselIndex, InlineCitationCarouselIndexProps, InlineCitationCarouselItem, InlineCitationCarouselItemProps, InlineCitationCarouselNext, InlineCitationCarouselNextProps, InlineCitationCarouselPrev, InlineCitationCarouselPrevProps, InlineCitationCarouselProps, InlineCitationProps, InlineCitationQuote, InlineCitationQuoteProps, InlineCitationSource, InlineCitationSourceProps, InlineCitationText, InlineCitationTextProps } from "./components-ai-elements/inline-citation/index.mjs";
35
35
  import { Loader, LoaderIcon } from "./components-ai-elements/loader/index.mjs";
@@ -41,10 +41,10 @@ import { ModelSelector, ModelSelectorContent, ModelSelectorContentProps, ModelSe
41
41
  import { a as DropdownMenuItem, c as DropdownMenuRadioGroup, d as DropdownMenuShortcut, f as DropdownMenuSub, g as dropdownMenuItemVariants, h as DropdownMenuTrigger, i as DropdownMenuGroup, l as DropdownMenuRadioItem, m as DropdownMenuSubTrigger, n as DropdownMenuCheckboxItem, o as DropdownMenuLabel, p as DropdownMenuSubContent, r as DropdownMenuContent, s as DropdownMenuPortal, t as DropdownMenu, u as DropdownMenuSeparator } from "./dropdown-menu-CwRZCnNs.mjs";
42
42
  import "./components-elements-dropdown-menu.mjs";
43
43
  import { OpenIn, OpenInChatGPT, OpenInChatGPTProps, OpenInClaude, OpenInClaudeProps, OpenInContent, OpenInContentProps, OpenInCursor, OpenInCursorProps, OpenInGitHub, OpenInGitHubProps, OpenInIconVariants, OpenInItem, OpenInItemProps, OpenInLabel, OpenInLabelProps, OpenInProps, OpenInScira, OpenInSciraProps, OpenInSeparator, OpenInSeparatorProps, OpenInT3, OpenInT3Props, OpenInTrigger, OpenInTriggerProps, OpenInv0, OpenInv0Props, openInIconVariants } from "./components-ai-elements/open-in-chat/index.mjs";
44
- import { D as cardVariants, c as CardAction, f as CardDescription, g as CardHeader, m as CardFooter, s as Card, u as CardContent, y as CardTitle } from "./integrations-Doz6nfxm.mjs";
44
+ import { D as cardVariants, c as CardAction, f as CardDescription, g as CardHeader, m as CardFooter, s as Card, u as CardContent, y as CardTitle } from "./integrations-DGL5opo2.mjs";
45
45
  import "./components-elements-card.mjs";
46
46
  import { Plan, PlanAction, PlanActionProps, PlanContent, PlanContentProps, PlanDescription, PlanDescriptionProps, PlanFooter, PlanFooterProps, PlanHeader, PlanHeaderProps, PlanProps, PlanStep, PlanStepProps, PlanSteps, PlanStepsProps, PlanTitle, PlanTitleProps, PlanTrigger, PlanTriggerProps } from "./components-ai-elements/plan/index.mjs";
47
- import { a as InputGroupText, i as InputGroupInput, n as InputGroupAddon, o as InputGroupTextarea, r as InputGroupButton, t as InputGroup } from "./input-group-Duxn4h1e.mjs";
47
+ import { a as InputGroupText, i as InputGroupInput, n as InputGroupAddon, o as InputGroupTextarea, r as InputGroupButton, t as InputGroup } from "./input-group-D-TfC28K.mjs";
48
48
  import "./components-forms/input-group/index.mjs";
49
49
  import { a as SelectLabel, c as SelectSeparator, d as selectItemVariants, f as selectLabelVariants, i as SelectItem, l as SelectTrigger, n as SelectContent, o as SelectScrollDownButton, p as selectTriggerVariants, r as SelectGroup, s as SelectScrollUpButton, t as Select, u as SelectValue } from "./select-csqviwUw.mjs";
50
50
  import "./components-forms/select/index.mjs";
@@ -109,7 +109,7 @@ import "./components-filter/filter-list/index.mjs";
109
109
  import { n as FilterSelectProps, t as FilterSelect } from "./filter-select-COLb1S5z.mjs";
110
110
  import "./components-filter/filter-select/index.mjs";
111
111
  import { Checkbox } from "./components-forms/checkbox/index.mjs";
112
- import { a as PopoverProps, i as Popover, n as ComboboxOption, r as ComboboxProps, t as Combobox } from "./combobox-CIsBOM8Y.mjs";
112
+ import { a as PopoverProps, i as Popover, n as ComboboxOption, r as ComboboxProps, t as Combobox } from "./combobox-9IMgQio8.mjs";
113
113
  import "./components-forms/combobox/index.mjs";
114
114
  import { a as DatePreset, c as PickerProps, d as Matcher, i as CalendarProps, l as Preset, n as DateRangePicker, o as DateRange, r as RangeDatePickerProps, s as DateRangePreset, t as DatePickerContext, u as Calendar } from "./shared-BqVcofZN.mjs";
115
115
  import "./components-forms/date-picker/index.mjs";
@@ -121,7 +121,7 @@ import { Textarea, textareaVariants } from "./components-forms/textarea/index.mj
121
121
  import { n as NavAppSwitcher } from "./nav-app-switcher-B1NTlYrm.mjs";
122
122
  import "./components-layout/nav-app-switcher/index.mjs";
123
123
  import { AppShell, AppShellProps } from "./components-layout-app-shell.mjs";
124
- import { C as SidebarTrigger, S as SidebarSeparator, _ as SidebarMenuSub, a as SidebarGroupAction, b as SidebarProvider, c as SidebarHeader, d as SidebarMenu, f as SidebarMenuAction, g as SidebarMenuSkeleton, h as SidebarMenuItem, i as SidebarGroup, l as SidebarInput, m as SidebarMenuButton, n as SidebarContent, o as SidebarGroupContent, p as SidebarMenuBadge, r as SidebarFooter, s as SidebarGroupLabel, t as Sidebar, u as SidebarInset, v as SidebarMenuSubButton, w as useSidebar, x as SidebarRail, y as SidebarMenuSubItem } from "./sidebar-Dy_fKUd6.mjs";
124
+ import { C as SidebarTrigger, S as SidebarSeparator, _ as SidebarMenuSub, a as SidebarGroupAction, b as SidebarProvider, c as SidebarHeader, d as SidebarMenu, f as SidebarMenuAction, g as SidebarMenuSkeleton, h as SidebarMenuItem, i as SidebarGroup, l as SidebarInput, m as SidebarMenuButton, n as SidebarContent, o as SidebarGroupContent, p as SidebarMenuBadge, r as SidebarFooter, s as SidebarGroupLabel, t as Sidebar, u as SidebarInset, v as SidebarMenuSubButton, w as useSidebar, x as SidebarRail, y as SidebarMenuSubItem } from "./sidebar-wVe-ucLv.mjs";
125
125
  import "./components-layout/sidebar/index.mjs";
126
126
  import { AppSidebar, AppSidebarLayout } from "./components-layout/app-sidebar/index.mjs";
127
127
  import { a as SplitPanelLayout, c as useExpandablePanelState, d as PanelOpenEvent, f as PanelRef, g as ArtifactPanelHeaderProps, h as ArtifactPanelHeader, i as useArtifactPanelState, l as CollapsedTriggerRender, m as UseExpandablePanelStateReturn, n as UseArtifactPanelStateOptions, o as SplitPanelLayoutProps, p as UseExpandablePanelStateOptions, r as UseArtifactPanelStateReturn, s as ExpandablePanel, t as ArtifactPanelOpenEvent, u as ExpandablePanelProps } from "./use-artifact-panel-state-DPZC--sz.mjs";
@@ -384,7 +384,7 @@ declare const ModeToggle: React$2.NamedExoticComponent<object>;
384
384
  //#region src/components/elements/atoms/progress-circle/progress-circle.d.ts
385
385
  declare const progressCircleVariants: (props?: ({
386
386
  size?: "default" | "sm" | "lg" | "xl" | "xs" | null | undefined;
387
- variant?: "default" | "success" | "info" | "warning" | "destructive" | null | undefined;
387
+ variant?: "default" | "destructive" | "success" | "info" | "warning" | null | undefined;
388
388
  } & class_variance_authority_types0.ClassProp) | undefined) => string;
389
389
  interface ProgressCircleProps extends VariantProps<typeof progressCircleVariants> {
390
390
  progress: number;
@@ -401,7 +401,7 @@ interface SheetTriggerProps extends React$2.ComponentProps<typeof SheetPrimitive
401
401
  declare const SheetTrigger: React$2.ForwardRefExoticComponent<Omit<SheetTriggerProps, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
402
402
  declare const SheetClose: React$2.NamedExoticComponent<SheetPrimitive.DialogCloseProps & React$2.RefAttributes<HTMLButtonElement>>;
403
403
  declare const sheetContentVariants: (props?: ({
404
- side?: "bottom" | "top" | "left" | "right" | null | undefined;
404
+ side?: "top" | "right" | "bottom" | "left" | null | undefined;
405
405
  size?: "default" | "sm" | "lg" | "xl" | "full" | null | undefined;
406
406
  } & class_variance_authority_types0.ClassProp) | undefined) => string;
407
407
  interface SheetContentProps extends React$2.ComponentProps<typeof SheetPrimitive.Content>, VariantProps<typeof sheetContentVariants> {}
@@ -0,0 +1,20 @@
1
+
2
+ import { n as ButtonProps } from "./button-0eO9c3dd.mjs";
3
+ import * as React$1 from "react";
4
+ import { VariantProps } from "class-variance-authority";
5
+ import * as class_variance_authority_types0 from "class-variance-authority/types";
6
+
7
+ //#region src/components/forms/input-group/input-group.d.ts
8
+ declare const InputGroup: React$1.NamedExoticComponent<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
9
+ declare const InputGroupAddon: React$1.NamedExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "size" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart"> & VariantProps<(props?: ({
10
+ align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
11
+ } & class_variance_authority_types0.ClassProp) | undefined) => string>>;
12
+ declare const InputGroupButton: React$1.NamedExoticComponent<Omit<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>, "size"> & VariantProps<(props?: ({
13
+ size?: "sm" | "xs" | "icon-sm" | "icon-xs" | null | undefined;
14
+ } & class_variance_authority_types0.ClassProp) | undefined) => string>>;
15
+ declare const InputGroupText: React$1.NamedExoticComponent<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>;
16
+ declare const InputGroupInput: React$1.NamedExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "size">>;
17
+ declare const InputGroupTextarea: React$1.NamedExoticComponent<React$1.DetailedHTMLProps<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>;
18
+ //#endregion
19
+ export { InputGroupText as a, InputGroupInput as i, InputGroupAddon as n, InputGroupTextarea as o, InputGroupButton as r, InputGroup as t };
20
+ //# sourceMappingURL=input-group-D-TfC28K.d.mts.map
@@ -0,0 +1,60 @@
1
+
2
+ import * as react from "react";
3
+ import { ComponentProps, ReactNode } from "react";
4
+ import { VariantProps } from "class-variance-authority";
5
+ import * as class_variance_authority_types0 from "class-variance-authority/types";
6
+
7
+ //#region src/components/elements/organisms/card/card.d.ts
8
+ declare const cardVariants: (props?: ({
9
+ variant?: "default" | "outline" | "ghost" | "elevated" | "interactive" | null | undefined;
10
+ padding?: "default" | "none" | "sm" | "lg" | "xl" | null | undefined;
11
+ } & class_variance_authority_types0.ClassProp) | undefined) => string;
12
+ interface CardProps extends ComponentProps<'div'>, VariantProps<typeof cardVariants> {}
13
+ declare const Card: react.NamedExoticComponent<CardProps>;
14
+ declare const cardHeaderVariants: (props?: class_variance_authority_types0.ClassProp | undefined) => string;
15
+ interface CardHeaderProps extends ComponentProps<'div'> {}
16
+ declare const CardHeader: react.NamedExoticComponent<CardHeaderProps>;
17
+ declare const cardTitleVariants: (props?: class_variance_authority_types0.ClassProp | undefined) => string;
18
+ interface CardTitleProps extends ComponentProps<'h3'> {}
19
+ declare const CardTitle: react.NamedExoticComponent<CardTitleProps>;
20
+ declare const cardDescriptionVariants: (props?: class_variance_authority_types0.ClassProp | undefined) => string;
21
+ interface CardDescriptionProps extends ComponentProps<'p'> {}
22
+ declare const CardDescription: react.NamedExoticComponent<CardDescriptionProps>;
23
+ declare const cardActionVariants: (props?: class_variance_authority_types0.ClassProp | undefined) => string;
24
+ interface CardActionProps extends ComponentProps<'div'> {}
25
+ declare const CardAction: react.NamedExoticComponent<CardActionProps>;
26
+ declare const cardContentVariants: (props?: class_variance_authority_types0.ClassProp | undefined) => string;
27
+ interface CardContentProps extends ComponentProps<'div'> {}
28
+ declare const CardContent: react.NamedExoticComponent<CardContentProps>;
29
+ declare const cardFooterVariants: (props?: class_variance_authority_types0.ClassProp | undefined) => string;
30
+ interface CardFooterProps extends ComponentProps<'div'> {}
31
+ declare const CardFooter: react.NamedExoticComponent<CardFooterProps>;
32
+ //#endregion
33
+ //#region src/components/elements/organisms/card/integrations.d.ts
34
+ declare const integrationStatusVariants: (props?: ({
35
+ status?: "error" | "connected" | "syncing" | null | undefined;
36
+ } & class_variance_authority_types0.ClassProp) | undefined) => string;
37
+ declare const integrationDotVariants: (props?: ({
38
+ status?: "error" | "connected" | "syncing" | null | undefined;
39
+ } & class_variance_authority_types0.ClassProp) | undefined) => string;
40
+ interface IntegrationCompactProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'children'>, VariantProps<typeof integrationStatusVariants> {
41
+ name: string;
42
+ icon?: ReactNode;
43
+ statusLabel?: string;
44
+ }
45
+ declare const IntegrationCompact: react.NamedExoticComponent<IntegrationCompactProps>;
46
+ interface IntegrationCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'children'> {
47
+ name: string;
48
+ description?: string;
49
+ icon?: ReactNode;
50
+ enabled?: boolean;
51
+ defaultEnabled?: boolean;
52
+ onEnabledChange?: (enabled: boolean) => void;
53
+ showExternalLink?: boolean;
54
+ onExternalLinkClick?: () => void;
55
+ disabled?: boolean;
56
+ }
57
+ declare const IntegrationCard: react.NamedExoticComponent<IntegrationCardProps>;
58
+ //#endregion
59
+ export { cardDescriptionVariants as C, cardVariants as D, cardTitleVariants as E, cardContentVariants as S, cardHeaderVariants as T, CardHeaderProps as _, integrationDotVariants as a, CardTitleProps as b, CardAction as c, CardContentProps as d, CardDescription as f, CardHeader as g, CardFooterProps as h, IntegrationCompactProps as i, CardActionProps as l, CardFooter as m, IntegrationCardProps as n, integrationStatusVariants as o, CardDescriptionProps as p, IntegrationCompact as r, Card as s, IntegrationCard as t, CardContent as u, CardProps as v, cardFooterVariants as w, cardActionVariants as x, CardTitle as y };
60
+ //# sourceMappingURL=integrations-DGL5opo2.d.mts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@od-oneapp/uni-ui",
3
- "version": "2026.2.1701",
3
+ "version": "2026.2.1703",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "sideEffects": [
@@ -282,7 +282,7 @@
282
282
  "use-stick-to-bottom": "^1.1.3",
283
283
  "vaul": "^1.1.2",
284
284
  "@od-oneapp/shared": "2026.2.1701",
285
- "@od-oneapp/auth": "2026.2.1701"
285
+ "@od-oneapp/auth": "2026.2.1704"
286
286
  },
287
287
  "peerDependencies": {
288
288
  "@od-oneapp/ai-platform": "2026.2.1701",
@@ -0,0 +1,163 @@
1
+
2
+ import { t as Button } from "./button-0eO9c3dd.mjs";
3
+ import { t as Input } from "./input-CT1C9DMs.mjs";
4
+ import { t as Separator } from "./separator-BG9BqZqg.mjs";
5
+ import { n as TooltipContent } from "./tooltip-FqB3srL-.mjs";
6
+ import * as React$1 from "react";
7
+ import { VariantProps } from "class-variance-authority";
8
+ import { motion } from "motion/react";
9
+ import * as react_jsx_runtime0 from "react/jsx-runtime";
10
+ import * as class_variance_authority_types0 from "class-variance-authority/types";
11
+
12
+ //#region src/components/layout/sidebar/sidebar.d.ts
13
+ type SidebarContextProps = {
14
+ state: 'expanded' | 'collapsed';
15
+ open: boolean;
16
+ setOpen: (open: boolean) => void;
17
+ openMobile: boolean;
18
+ setOpenMobile: (open: boolean) => void;
19
+ isMobile: boolean;
20
+ isTouchDevice: boolean;
21
+ prefersReducedMotion: boolean;
22
+ toggleSidebar: () => void;
23
+ };
24
+ declare function useSidebar(): SidebarContextProps;
25
+ declare function SidebarProvider({
26
+ defaultOpen,
27
+ open: openProp,
28
+ onOpenChange: setOpenProp,
29
+ className,
30
+ style,
31
+ children,
32
+ ...props
33
+ }: React$1.ComponentProps<'div'> & {
34
+ defaultOpen?: boolean;
35
+ open?: boolean;
36
+ onOpenChange?: (open: boolean) => void;
37
+ }): react_jsx_runtime0.JSX.Element;
38
+ declare function Sidebar({
39
+ side,
40
+ variant,
41
+ collapsible,
42
+ className,
43
+ children,
44
+ ...props
45
+ }: React$1.ComponentProps<'div'> & {
46
+ side?: 'left' | 'right';
47
+ variant?: 'sidebar' | 'floating' | 'inset';
48
+ collapsible?: 'offcanvas' | 'icon' | 'none';
49
+ }): react_jsx_runtime0.JSX.Element;
50
+ declare function SidebarTrigger({
51
+ className,
52
+ onClick,
53
+ ...props
54
+ }: React$1.ComponentProps<typeof Button>): react_jsx_runtime0.JSX.Element;
55
+ declare function SidebarRail({
56
+ className,
57
+ ...props
58
+ }: React$1.ComponentProps<'button'>): react_jsx_runtime0.JSX.Element;
59
+ declare function SidebarInset({
60
+ className,
61
+ ...props
62
+ }: React$1.ComponentProps<'main'>): react_jsx_runtime0.JSX.Element;
63
+ declare function SidebarInput({
64
+ className,
65
+ ...props
66
+ }: React$1.ComponentProps<typeof Input>): react_jsx_runtime0.JSX.Element;
67
+ declare function SidebarHeader({
68
+ className,
69
+ ...props
70
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
71
+ declare function SidebarFooter({
72
+ className,
73
+ ...props
74
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
75
+ declare function SidebarSeparator({
76
+ className,
77
+ ...props
78
+ }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime0.JSX.Element;
79
+ declare function SidebarContent({
80
+ className,
81
+ ...props
82
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
83
+ declare function SidebarGroup({
84
+ className,
85
+ ...props
86
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
87
+ declare function SidebarGroupLabel({
88
+ className,
89
+ asChild,
90
+ ...props
91
+ }: React$1.ComponentProps<'div'> & {
92
+ asChild?: boolean;
93
+ }): react_jsx_runtime0.JSX.Element;
94
+ declare function SidebarGroupAction({
95
+ className,
96
+ asChild,
97
+ ...props
98
+ }: React$1.ComponentProps<'button'> & {
99
+ asChild?: boolean;
100
+ }): react_jsx_runtime0.JSX.Element;
101
+ declare function SidebarGroupContent({
102
+ className,
103
+ ...props
104
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
105
+ declare function SidebarMenu({
106
+ className,
107
+ ...props
108
+ }: React$1.ComponentProps<'ul'>): react_jsx_runtime0.JSX.Element;
109
+ declare function SidebarMenuItem({
110
+ className,
111
+ ...props
112
+ }: React$1.ComponentProps<'li'>): react_jsx_runtime0.JSX.Element;
113
+ declare const SidebarMenuButton: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttributes<HTMLButtonElement> & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
114
+ asChild?: boolean;
115
+ isActive?: boolean;
116
+ tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
117
+ } & VariantProps<(props?: ({
118
+ variant?: "default" | "outline" | null | undefined;
119
+ size?: "default" | "sm" | "lg" | "touch" | null | undefined;
120
+ } & class_variance_authority_types0.ClassProp) | undefined) => string>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
121
+ declare function SidebarMenuAction({
122
+ className,
123
+ asChild,
124
+ showOnHover,
125
+ ...props
126
+ }: React$1.ComponentProps<'button'> & {
127
+ asChild?: boolean;
128
+ showOnHover?: boolean;
129
+ }): react_jsx_runtime0.JSX.Element;
130
+ declare function SidebarMenuBadge({
131
+ className,
132
+ ...props
133
+ }: React$1.ComponentProps<'div'>): react_jsx_runtime0.JSX.Element;
134
+ declare function SidebarMenuSkeleton({
135
+ className,
136
+ showIcon,
137
+ ...props
138
+ }: React$1.ComponentProps<'div'> & {
139
+ showIcon?: boolean;
140
+ }): react_jsx_runtime0.JSX.Element;
141
+ declare function SidebarMenuSub({
142
+ className,
143
+ ...props
144
+ }: React$1.ComponentProps<'ul'>): react_jsx_runtime0.JSX.Element;
145
+ declare function SidebarMenuSubItem({
146
+ className,
147
+ ...props
148
+ }: React$1.ComponentProps<'li'>): react_jsx_runtime0.JSX.Element;
149
+ declare function SidebarMenuSubButton({
150
+ asChild,
151
+ size,
152
+ isActive,
153
+ className,
154
+ ...props
155
+ }: {
156
+ asChild?: boolean;
157
+ size?: 'sm' | 'md';
158
+ isActive?: boolean;
159
+ className?: string;
160
+ } & React$1.ComponentPropsWithoutRef<typeof motion.a>): react_jsx_runtime0.JSX.Element;
161
+ //#endregion
162
+ export { SidebarTrigger as C, SidebarSeparator as S, SidebarMenuSub as _, SidebarGroupAction as a, SidebarProvider as b, SidebarHeader as c, SidebarMenu as d, SidebarMenuAction as f, SidebarMenuSkeleton as g, SidebarMenuItem as h, SidebarGroup as i, SidebarInput as l, SidebarMenuButton as m, SidebarContent as n, SidebarGroupContent as o, SidebarMenuBadge as p, SidebarFooter as r, SidebarGroupLabel as s, Sidebar as t, SidebarInset as u, SidebarMenuSubButton as v, useSidebar as w, SidebarRail as x, SidebarMenuSubItem as y };
163
+ //# sourceMappingURL=sidebar-wVe-ucLv.d.mts.map
package/styles/colors.css CHANGED
@@ -4,7 +4,7 @@
4
4
  * ⚠️ DO NOT EDIT THIS FILE DIRECTLY
5
5
  * Generated from src/tokens/*.ts via scripts/generate-tokens.mts
6
6
  *
7
- * Generated: 2026-02-17T16:12:03.928Z
7
+ * Generated: 2026-02-17T16:55:35.163Z
8
8
  */
9
9
 
10
10
  @layer theme {
@@ -7,7 +7,7 @@
7
7
  * These variables map uni-ui tokens to Mantine 8's expected CSS variable naming.
8
8
  * Import this file in your Mantine app to use uni-ui tokens with Mantine components.
9
9
  *
10
- * Generated: 2026-02-17T16:12:03.933Z
10
+ * Generated: 2026-02-17T16:55:35.168Z
11
11
  */
12
12
 
13
13
  :root, [data-mantine-color-scheme="light"] {
@@ -4,7 +4,7 @@
4
4
  * ⚠️ DO NOT EDIT THIS FILE DIRECTLY
5
5
  * Generated from src/tokens/*.ts via scripts/generate-tokens.mts
6
6
  *
7
- * Generated: 2026-02-17T16:12:03.929Z
7
+ * Generated: 2026-02-17T16:55:35.164Z
8
8
  */
9
9
 
10
10
  @layer theme {
package/styles/theme.css CHANGED
@@ -13,7 +13,7 @@
13
13
  *
14
14
  * Dark mode: Uses next-themes with class strategy (.dark class)
15
15
  *
16
- * Generated: 2026-02-17T16:12:03.917Z
16
+ * Generated: 2026-02-17T16:55:35.155Z
17
17
  */
18
18
 
19
19
  /* Tailwind CSS v4 */
@@ -4,7 +4,7 @@
4
4
  * ⚠️ DO NOT EDIT THIS FILE DIRECTLY
5
5
  * Generated from src/tokens/*.ts via scripts/generate-tokens.mts
6
6
  *
7
- * Generated: 2026-02-17T16:12:03.929Z
7
+ * Generated: 2026-02-17T16:55:35.165Z
8
8
  */
9
9
 
10
10
  @layer theme {
@@ -5,7 +5,7 @@
5
5
  * Generated from src/tokens/*.ts via scripts/generate-tokens.mts
6
6
  *
7
7
  * To update tokens, edit src/tokens/*.ts and run: pnpm build
8
- * Generated: 2026-02-17T16:12:03.926Z
8
+ * Generated: 2026-02-17T16:55:35.162Z
9
9
  */
10
10
 
11
11
  :root,
package/tokens.d.mts CHANGED
@@ -6863,8 +6863,8 @@ declare const tokenValues: {
6863
6863
  readonly 95: "0.95";
6864
6864
  readonly 100: "1";
6865
6865
  };
6866
- readonly animations: Record<"blink" | "scale-in" | "fade-in" | "scale-in-fade" | "slide-up-fade" | "slide-down-fade" | "slide-left-fade" | "slide-right-fade" | "slide-in-from-right" | "slide-out-to-right" | "enter-from-right" | "enter-from-left" | "exit-to-right" | "exit-to-left" | "scale-in-content" | "scale-out-content" | "accordion-down" | "accordion-up" | "collapsible-down" | "collapsible-up" | "wiggle" | "spinner" | "pulse" | "pulse-scale" | "caret-blink" | "infinite-scroll" | "infinite-scroll-y" | "text-appear" | "table-pinned-shadow" | "gradient-move" | "ellipsis-wave", string>;
6867
- readonly keyframes: Record<"blink" | "scale-in" | "fade-in" | "scale-in-fade" | "slide-up-fade" | "slide-down-fade" | "slide-left-fade" | "slide-right-fade" | "slide-in-from-right" | "slide-out-to-right" | "enter-from-right" | "enter-from-left" | "exit-to-right" | "exit-to-left" | "scale-in-content" | "scale-out-content" | "accordion-down" | "accordion-up" | "collapsible-down" | "collapsible-up" | "wiggle" | "spinner" | "pulse" | "pulse-scale" | "caret-blink" | "infinite-scroll" | "infinite-scroll-y" | "text-appear" | "table-pinned-shadow" | "gradient-move" | "ellipsis-wave", {
6866
+ readonly animations: Record<"scale-in" | "fade-in" | "scale-in-fade" | "slide-up-fade" | "slide-down-fade" | "slide-left-fade" | "slide-right-fade" | "slide-in-from-right" | "slide-out-to-right" | "enter-from-right" | "enter-from-left" | "exit-to-right" | "exit-to-left" | "scale-in-content" | "scale-out-content" | "accordion-down" | "accordion-up" | "collapsible-down" | "collapsible-up" | "wiggle" | "spinner" | "blink" | "pulse" | "pulse-scale" | "caret-blink" | "infinite-scroll" | "infinite-scroll-y" | "text-appear" | "table-pinned-shadow" | "gradient-move" | "ellipsis-wave", string>;
6867
+ readonly keyframes: Record<"scale-in" | "fade-in" | "scale-in-fade" | "slide-up-fade" | "slide-down-fade" | "slide-left-fade" | "slide-right-fade" | "slide-in-from-right" | "slide-out-to-right" | "enter-from-right" | "enter-from-left" | "exit-to-right" | "exit-to-left" | "scale-in-content" | "scale-out-content" | "accordion-down" | "accordion-up" | "collapsible-down" | "collapsible-up" | "wiggle" | "spinner" | "blink" | "pulse" | "pulse-scale" | "caret-blink" | "infinite-scroll" | "infinite-scroll-y" | "text-appear" | "table-pinned-shadow" | "gradient-move" | "ellipsis-wave", {
6868
6868
  readonly '0%': {
6869
6869
  readonly transform: "scale(var(--from-scale, 0.95))";
6870
6870
  };