@coston/ui 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{button-BEd6_-lL.d.ts → button-QxkOGnNm.d.ts} +4 -4
- package/dist/{button-BEd6_-lL.d.ts.map → button-QxkOGnNm.d.ts.map} +1 -1
- package/dist/components/alert-dialog.d.ts +3 -3
- package/dist/components/alert.d.ts +2 -2
- package/dist/components/aspect-ratio.d.ts +2 -2
- package/dist/components/badge.d.ts +4 -4
- package/dist/components/breadcrumb.d.ts +3 -3
- package/dist/components/button.d.ts +1 -1
- package/dist/components/calendar.d.ts +2 -2
- package/dist/components/calendar.d.ts.map +1 -1
- package/dist/components/carousel.d.ts +1 -1
- package/dist/components/collapsible.d.ts +4 -4
- package/dist/components/command.d.ts +3 -3
- package/dist/components/command.d.ts.map +1 -1
- package/dist/components/context-menu.d.ts +2 -2
- package/dist/components/context-menu.d.ts.map +1 -1
- package/dist/components/dialog.d.ts +3 -3
- package/dist/components/drawer.d.ts +4 -4
- package/dist/components/dropdown-menu.d.ts +2 -2
- package/dist/components/label.d.ts +2 -2
- package/dist/components/menubar.d.ts +3 -3
- package/dist/components/navigation-menu.d.ts +2 -2
- package/dist/components/pagination.d.ts +7 -7
- package/dist/components/sheet.d.ts +6 -6
- package/dist/components/sheet.d.ts.map +1 -1
- package/dist/components/sidebar.d.ts +1 -1
- package/dist/components/skeleton.d.ts +2 -2
- package/dist/components/sonner.d.ts +2 -2
- package/dist/components/sonner.d.ts.map +1 -1
- package/dist/components/toggle-group.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { VariantProps } from "class-variance-authority";
|
|
3
|
-
import * as
|
|
3
|
+
import * as class_variance_authority_types2 from "class-variance-authority/types";
|
|
4
4
|
|
|
5
5
|
//#region src/components/button.d.ts
|
|
6
6
|
declare const buttonVariants: (props?: ({
|
|
7
7
|
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
8
|
-
size?: "default" | "
|
|
9
|
-
} &
|
|
8
|
+
size?: "default" | "icon" | "sm" | "lg" | null | undefined;
|
|
9
|
+
} & class_variance_authority_types2.ClassProp) | undefined) => string;
|
|
10
10
|
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
11
11
|
asChild?: boolean;
|
|
12
12
|
}
|
|
13
13
|
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { Button as Button$1, ButtonProps, buttonVariants as buttonVariants$1 };
|
|
16
|
-
//# sourceMappingURL=button-
|
|
16
|
+
//# sourceMappingURL=button-QxkOGnNm.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button-
|
|
1
|
+
{"version":3,"file":"button-QxkOGnNm.d.ts","names":[],"sources":["../src/components/button.tsx"],"sourcesContent":[],"mappings":";;;;;cAMM,sBAwBL;;;AA5BiE,CAAA,GA4BjE,+BAAA,CAAA,SAAA,CAAA,GAAA,SAAA,EAAA,GAAA,MAAA;AAEgB,UAAA,WAAA,SACP,KAAA,CAAM,oBAAd,CAAmC,iBAAnC,CAAA,EAAuD,YAAvD,CAAA,OAA2E,cAA3E,CAAA,CAAA;EAAA,OAAA,CAAA,EAAA,OAAA;;cAII,MAJuE,EAIjE,KAAA,CAAA,yBAJiE,CAIjE,WAJiE,GAIjE,KAAA,CAAA,aAJiE,CAIjE,iBAJiE,CAAA,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime15 from "react/jsx-runtime";
|
|
3
3
|
import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
|
|
4
4
|
|
|
5
5
|
//#region src/components/alert-dialog.d.ts
|
|
@@ -12,14 +12,14 @@ declare const AlertDialogHeader: {
|
|
|
12
12
|
({
|
|
13
13
|
className,
|
|
14
14
|
...props
|
|
15
|
-
}: React.HTMLAttributes<HTMLDivElement>):
|
|
15
|
+
}: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime15.JSX.Element;
|
|
16
16
|
displayName: string;
|
|
17
17
|
};
|
|
18
18
|
declare const AlertDialogFooter: {
|
|
19
19
|
({
|
|
20
20
|
className,
|
|
21
21
|
...props
|
|
22
|
-
}: React.HTMLAttributes<HTMLDivElement>):
|
|
22
|
+
}: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime15.JSX.Element;
|
|
23
23
|
displayName: string;
|
|
24
24
|
};
|
|
25
25
|
declare const AlertDialogTitle: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { VariantProps } from "class-variance-authority";
|
|
3
|
-
import * as
|
|
3
|
+
import * as class_variance_authority_types4 from "class-variance-authority/types";
|
|
4
4
|
|
|
5
5
|
//#region src/components/alert.d.ts
|
|
6
6
|
declare const Alert: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
7
7
|
variant?: "default" | "destructive" | null | undefined;
|
|
8
|
-
} &
|
|
8
|
+
} & class_variance_authority_types4.ClassProp) | undefined) => string> & React.RefAttributes<HTMLDivElement>>;
|
|
9
9
|
declare const AlertTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
10
10
|
declare const AlertDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
11
11
|
//#endregion
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react0 from "react";
|
|
2
2
|
import * as AspectRatioPrimitive from "@radix-ui/react-aspect-ratio";
|
|
3
3
|
|
|
4
4
|
//#region src/components/aspect-ratio.d.ts
|
|
5
|
-
declare const AspectRatio:
|
|
5
|
+
declare const AspectRatio: react0.ForwardRefExoticComponent<AspectRatioPrimitive.AspectRatioProps & react0.RefAttributes<HTMLDivElement>>;
|
|
6
6
|
//#endregion
|
|
7
7
|
export { AspectRatio };
|
|
8
8
|
//# sourceMappingURL=aspect-ratio.d.ts.map
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime11 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types3 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/badge.d.ts
|
|
7
7
|
declare const badgeVariants: (props?: ({
|
|
8
8
|
variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
|
|
9
|
-
} &
|
|
9
|
+
} & class_variance_authority_types3.ClassProp) | undefined) => string;
|
|
10
10
|
interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {}
|
|
11
11
|
declare function Badge({
|
|
12
12
|
className,
|
|
13
13
|
variant,
|
|
14
14
|
...props
|
|
15
|
-
}: BadgeProps):
|
|
15
|
+
}: BadgeProps): react_jsx_runtime11.JSX.Element;
|
|
16
16
|
//#endregion
|
|
17
17
|
export { Badge, BadgeProps, badgeVariants };
|
|
18
18
|
//# sourceMappingURL=badge.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime8 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/components/breadcrumb.d.ts
|
|
5
5
|
declare const Breadcrumb: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
@@ -16,14 +16,14 @@ declare const BreadcrumbSeparator: {
|
|
|
16
16
|
children,
|
|
17
17
|
className,
|
|
18
18
|
...props
|
|
19
|
-
}: React.ComponentProps<"li">):
|
|
19
|
+
}: React.ComponentProps<"li">): react_jsx_runtime8.JSX.Element;
|
|
20
20
|
displayName: string;
|
|
21
21
|
};
|
|
22
22
|
declare const BreadcrumbEllipsis: {
|
|
23
23
|
({
|
|
24
24
|
className,
|
|
25
25
|
...props
|
|
26
|
-
}: React.ComponentProps<"span">):
|
|
26
|
+
}: React.ComponentProps<"span">): react_jsx_runtime8.JSX.Element;
|
|
27
27
|
displayName: string;
|
|
28
28
|
};
|
|
29
29
|
//#endregion
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Button$1 as Button, ButtonProps, buttonVariants$1 as buttonVariants } from "../button-
|
|
1
|
+
import { Button$1 as Button, ButtonProps, buttonVariants$1 as buttonVariants } from "../button-QxkOGnNm.js";
|
|
2
2
|
export { Button, ButtonProps, buttonVariants };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime12 from "react/jsx-runtime";
|
|
3
3
|
import { DayPicker } from "react-day-picker";
|
|
4
4
|
|
|
5
5
|
//#region src/components/calendar.d.ts
|
|
@@ -8,7 +8,7 @@ declare function Calendar({
|
|
|
8
8
|
className,
|
|
9
9
|
classNames,
|
|
10
10
|
...props
|
|
11
|
-
}: CalendarProps):
|
|
11
|
+
}: CalendarProps): react_jsx_runtime12.JSX.Element;
|
|
12
12
|
declare namespace Calendar {
|
|
13
13
|
var displayName: string;
|
|
14
14
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calendar.d.ts","names":[],"sources":["../../src/components/calendar.tsx"],"sourcesContent":[],"mappings":";;;;;KAMY,aAAA,GAAgB,KAAA,CAAM,sBAAsB;iBAE/C,QAAA;;;;GAA8C,gBAAa,
|
|
1
|
+
{"version":3,"file":"calendar.d.ts","names":[],"sources":["../../src/components/calendar.tsx"],"sourcesContent":[],"mappings":";;;;;KAMY,aAAA,GAAgB,KAAA,CAAM,sBAAsB;iBAE/C,QAAA;;;;GAA8C,gBAAa,mBAAA,CAAA,GAAA,CAAA;kBAA3D,QAAA;EAFG,IAAA,WAAA,EAAa,MAAA"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react1 from "react";
|
|
2
2
|
import * as CollapsiblePrimitive from "@radix-ui/react-collapsible";
|
|
3
3
|
|
|
4
4
|
//#region src/components/collapsible.d.ts
|
|
5
|
-
declare const Collapsible:
|
|
6
|
-
declare const CollapsibleTrigger:
|
|
7
|
-
declare const CollapsibleContent:
|
|
5
|
+
declare const Collapsible: react1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & react1.RefAttributes<HTMLDivElement>>;
|
|
6
|
+
declare const CollapsibleTrigger: react1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleTriggerProps & react1.RefAttributes<HTMLButtonElement>>;
|
|
7
|
+
declare const CollapsibleContent: react1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleContentProps & react1.RefAttributes<HTMLDivElement>>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { Collapsible, CollapsibleContent, CollapsibleTrigger };
|
|
10
10
|
//# sourceMappingURL=collapsible.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime22 from "react/jsx-runtime";
|
|
3
3
|
import { DialogProps } from "@radix-ui/react-dialog";
|
|
4
4
|
|
|
5
5
|
//#region src/components/command.d.ts
|
|
@@ -7,7 +7,7 @@ declare const Command: React.ForwardRefExoticComponent<any>;
|
|
|
7
7
|
declare const CommandDialog: ({
|
|
8
8
|
children,
|
|
9
9
|
...props
|
|
10
|
-
}: DialogProps) =>
|
|
10
|
+
}: DialogProps) => react_jsx_runtime22.JSX.Element;
|
|
11
11
|
declare const CommandInput: React.ForwardRefExoticComponent<any>;
|
|
12
12
|
declare const CommandList: React.ForwardRefExoticComponent<any>;
|
|
13
13
|
declare const CommandEmpty: React.ForwardRefExoticComponent<any>;
|
|
@@ -18,7 +18,7 @@ declare const CommandShortcut: {
|
|
|
18
18
|
({
|
|
19
19
|
className,
|
|
20
20
|
...props
|
|
21
|
-
}: React.HTMLAttributes<HTMLSpanElement>):
|
|
21
|
+
}: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime22.JSX.Element;
|
|
22
22
|
displayName: string;
|
|
23
23
|
};
|
|
24
24
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command.d.ts","names":[],"sources":["../../src/components/command.tsx"],"sourcesContent":[],"mappings":";;;;;cAQM,SAAO,KAAA,CAAA;cAeP;;;GAAyC,gBAAW,
|
|
1
|
+
{"version":3,"file":"command.d.ts","names":[],"sources":["../../src/components/command.tsx"],"sourcesContent":[],"mappings":";;;;;cAQM,SAAO,KAAA,CAAA;cAeP;;;GAAyC,gBAAW,mBAAA,CAAA,GAAA,CAAA;cAYpD,cAAY,KAAA,CAAA;AAlCwC,cAoDpD,WAjCJ,EAiCe,KAAA,CAAA,yBA7CJ,CAAA,GAAA,CAAA;AAAA,cAyDP,YAhCL,EAgCiB,KAAA,CAAA,yBAhCjB,CAAA,GAAA,CAAA;cAwCK,YAxCL,EAwCiB,KAAA,CAAA,yBAxCjB,CAAA,GAAA,CAAA;cAuDK,gBAjEiB,EAiED,KAAA,CAAA,yBAjEC,CAAA,GAAA,CAAA;cA6EjB,WA7EyC,EA6E9B,KAAA,CAAA,yBA7E8B,CAAA,GAAA,CAAA;cA4FzC,eA5FoD,EAAA;EAUzD,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAkFiD,KAAA,CAAM,cAlFvD,CAkFsE,eAlFtE,CAAA,CAAA,EAkFsF,mBAAA,CAAA,GAAA,CAAA,OAlFtF;EAEK,WAAA,EAAA,MAeJ;AAfgB,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime24 from "react/jsx-runtime";
|
|
3
3
|
import * as ContextMenuPrimitive from "@radix-ui/react-context-menu";
|
|
4
4
|
|
|
5
5
|
//#region src/components/context-menu.d.ts
|
|
@@ -27,7 +27,7 @@ declare const ContextMenuShortcut: {
|
|
|
27
27
|
({
|
|
28
28
|
className,
|
|
29
29
|
...props
|
|
30
|
-
}: React.HTMLAttributes<HTMLSpanElement>):
|
|
30
|
+
}: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime24.JSX.Element;
|
|
31
31
|
displayName: string;
|
|
32
32
|
};
|
|
33
33
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"context-menu.d.ts","names":[],"sources":["../../src/components/context-menu.tsx"],"sourcesContent":[],"mappings":";;;;;cAMM,aAAW,KAAA,CAAA,GAAA,oBAAA,CAAA;cAEX,oBAAkB,KAAA,CAAA,0BAAA,oBAAA,CAAA,0BAAA,KAAA,CAAA,cAAA;cAElB,kBAAgB,KAAA,CAAA,0BAAA,oBAAA,CAAA,wBAAA,KAAA,CAAA,cAAA;AAT+C,cAW/D,iBANuC,EAMtB,KAAA,CAAA,EANsB,CAMtB,oBAAA,CAAA,sBANsB,CAAA;cAQvC,cARuC,EAQzB,KAAA,CAAA,EARyB,CAQzB,oBAAA,CAAA,mBARyB,CAAA;cAUvC,qBAVW,EAUU,KAAA,CAAA,yBAVV,CAUU,oBAAA,CAAA,0BAVV,GAUU,KAAA,CAAA,aAVV,CAUU,cAVV,CAAA,CAAA;cAYX,qBAZW,EAYU,KAAA,CAAA,yBAZV,CAYU,IAZV,CAYU,oBAAA,CAAA,0BAZV,GAYU,KAAA,CAAA,aAZV,CAYU,cAZV,CAAA,EAAA,KAAA,CAAA,GAAA;EAAA,KAAA,CAAA,EAAA,OAAA;AAAA,CAAA,sBAEX,CAUqB,cAV4B,CAAA,CAAA;cA+BjD,qBA/BiD,EA+B5B,KAAA,CAAA,yBA/B4B,CA+B5B,IA/B4B,CA+B5B,oBAAA,CAAA,0BA/B4B,GA+B5B,KAAA,CAAA,aA/B4B,CA+B5B,cA/B4B,CAAA,EAAA,KAAA,CAAA,GA+B5B,KAAA,CAAA,aA/B4B,CA+B5B,cA/B4B,CAAA,CAAA;cA8CjD,kBA9CkB,EA8CA,KAAA,CAAA,yBA9CA,CA8CA,IA9CA,CA8CA,oBAAA,CAAA,uBA9CA,GA8CA,KAAA,CAAA,aA9CA,CA8CA,cA9CA,CAAA,EAAA,KAAA,CAAA,GA8CA,KAAA,CAAA,aA9CA,CA8CA,cA9CA,CAAA,CAAA;cA+DlB,eA/DkB,EA+DH,KAAA,CAAA,yBA/DG,CA+DH,IA/DG,CA+DH,oBAAA,CAAA,oBA/DG,GA+DH,KAAA,CAAA,aA/DG,CA+DH,cA/DG,CAAA,EAAA,KAAA,CAAA,GAAA;EAAA,KAAA,CAAA,EAAA,OAAA;CAAA,sBAAA,CA+DH,cA/DG,CAAA,CAAA;AAAA,cAiFlB,uBAjFkB,EAiFK,KAAA,CAAA,yBAjFL,CAiFK,IAjFL,CAiFK,oBAAA,CAAA,4BAjFL,GAiFK,KAAA,CAAA,aAjFL,CAiFK,cAjFL,CAAA,EAAA,KAAA,CAAA,GAiFK,KAAA,CAAA,aAjFL,CAiFK,cAjFL,CAAA,CAAA;AAAA,cAwGlB,oBAtG6C,EAsGzB,KAAA,CAAA,yBAtGyB,CAsGzB,IAtGyB,CAsGzB,oBAAA,CAAA,yBAtGyB,GAsGzB,KAAA,CAAA,aAtGyB,CAsGzB,cAtGyB,CAAA,EAAA,KAAA,CAAA,GAsGzB,KAAA,CAAA,aAtGyB,CAsGzB,cAtGyB,CAAA,CAAA;cA4H7C,gBA5H6C,EA4H7B,KAAA,CAAA,yBA5H6B,CA4H7B,IA5H6B,CA4H7B,oBAAA,CAAA,qBA5H6B,GA4H7B,KAAA,CAAA,aA5H6B,CA4H7B,cA5H6B,CAAA,EAAA,KAAA,CAAA,GAAA;EAAA,KAA7B,CAAA,EAAA,OAAA;CAAA,sBAAA,CA4HA,cA5HA,CAAA,CAAA;cA0IhB,oBA1IgB,EA0II,KAAA,CAAA,yBA1IJ,CA0II,IA1IJ,CA0II,oBAAA,CAAA,yBA1IJ,GA0II,KAAA,CAAA,aA1IJ,CA0II,cA1IJ,CAAA,EAAA,KAAA,CAAA,GA0II,KAAA,CAAA,aA1IJ,CA0II,cA1IJ,CAAA,CAAA;cAsJhB,mBAtJgB,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EAsJgC,KAAA,CAAM,cAtJtC,CAsJqD,eAtJrD,CAAA,CAAA,EAsJqE,
|
|
1
|
+
{"version":3,"file":"context-menu.d.ts","names":[],"sources":["../../src/components/context-menu.tsx"],"sourcesContent":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
3
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
4
4
|
|
|
5
5
|
//#region src/components/dialog.d.ts
|
|
@@ -13,14 +13,14 @@ declare const DialogHeader: {
|
|
|
13
13
|
({
|
|
14
14
|
className,
|
|
15
15
|
...props
|
|
16
|
-
}: React.HTMLAttributes<HTMLDivElement>):
|
|
16
|
+
}: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime0.JSX.Element;
|
|
17
17
|
displayName: string;
|
|
18
18
|
};
|
|
19
19
|
declare const DialogFooter: {
|
|
20
20
|
({
|
|
21
21
|
className,
|
|
22
22
|
...props
|
|
23
|
-
}: React.HTMLAttributes<HTMLDivElement>):
|
|
23
|
+
}: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime0.JSX.Element;
|
|
24
24
|
displayName: string;
|
|
25
25
|
};
|
|
26
26
|
declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime2 from "react/jsx-runtime";
|
|
3
3
|
import { Drawer as Drawer$1 } from "vaul";
|
|
4
4
|
|
|
5
5
|
//#region src/components/drawer.d.ts
|
|
@@ -7,7 +7,7 @@ declare const Drawer: {
|
|
|
7
7
|
({
|
|
8
8
|
shouldScaleBackground,
|
|
9
9
|
...props
|
|
10
|
-
}: React.ComponentProps<typeof Drawer$1.Root>):
|
|
10
|
+
}: React.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime2.JSX.Element;
|
|
11
11
|
displayName: string;
|
|
12
12
|
};
|
|
13
13
|
declare const DrawerTrigger: any;
|
|
@@ -19,14 +19,14 @@ declare const DrawerHeader: {
|
|
|
19
19
|
({
|
|
20
20
|
className,
|
|
21
21
|
...props
|
|
22
|
-
}: React.HTMLAttributes<HTMLDivElement>):
|
|
22
|
+
}: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime2.JSX.Element;
|
|
23
23
|
displayName: string;
|
|
24
24
|
};
|
|
25
25
|
declare const DrawerFooter: {
|
|
26
26
|
({
|
|
27
27
|
className,
|
|
28
28
|
...props
|
|
29
|
-
}: React.HTMLAttributes<HTMLDivElement>):
|
|
29
|
+
}: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime2.JSX.Element;
|
|
30
30
|
displayName: string;
|
|
31
31
|
};
|
|
32
32
|
declare const DrawerTitle: React.ForwardRefExoticComponent<any>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime7 from "react/jsx-runtime";
|
|
3
3
|
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
|
|
4
4
|
|
|
5
5
|
//#region src/components/dropdown-menu.d.ts
|
|
@@ -27,7 +27,7 @@ declare const DropdownMenuShortcut: {
|
|
|
27
27
|
({
|
|
28
28
|
className,
|
|
29
29
|
...props
|
|
30
|
-
}: React.HTMLAttributes<HTMLSpanElement>):
|
|
30
|
+
}: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime7.JSX.Element;
|
|
31
31
|
displayName: string;
|
|
32
32
|
};
|
|
33
33
|
//#endregion
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { VariantProps } from "class-variance-authority";
|
|
3
3
|
import * as LabelPrimitive from "@radix-ui/react-label";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types7 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/label.d.ts
|
|
7
|
-
declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?:
|
|
7
|
+
declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types7.ClassProp | undefined) => string> & React.RefAttributes<HTMLLabelElement>>;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { Label };
|
|
10
10
|
//# sourceMappingURL=label.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime25 from "react/jsx-runtime";
|
|
3
3
|
import * as MenubarPrimitive from "@radix-ui/react-menubar";
|
|
4
4
|
import * as _radix_ui_react_context0 from "@radix-ui/react-context";
|
|
5
5
|
|
|
@@ -7,7 +7,7 @@ import * as _radix_ui_react_context0 from "@radix-ui/react-context";
|
|
|
7
7
|
declare const MenubarMenu: {
|
|
8
8
|
(props: MenubarPrimitive.MenubarMenuProps & {
|
|
9
9
|
__scopeMenubar?: _radix_ui_react_context0.Scope;
|
|
10
|
-
}):
|
|
10
|
+
}): react_jsx_runtime25.JSX.Element;
|
|
11
11
|
displayName: string;
|
|
12
12
|
};
|
|
13
13
|
declare const MenubarGroup: React.ForwardRefExoticComponent<MenubarPrimitive.MenubarGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -34,7 +34,7 @@ declare const MenubarShortcut: {
|
|
|
34
34
|
({
|
|
35
35
|
className,
|
|
36
36
|
...props
|
|
37
|
-
}: React.HTMLAttributes<HTMLSpanElement>):
|
|
37
|
+
}: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime25.JSX.Element;
|
|
38
38
|
displayName: string;
|
|
39
39
|
};
|
|
40
40
|
//#endregion
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
|
|
3
|
-
import * as
|
|
3
|
+
import * as class_variance_authority_types8 from "class-variance-authority/types";
|
|
4
4
|
|
|
5
5
|
//#region src/components/navigation-menu.d.ts
|
|
6
6
|
declare const NavigationMenu: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuProps & React.RefAttributes<HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
|
|
7
7
|
declare const NavigationMenuList: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuListProps & React.RefAttributes<HTMLUListElement>, "ref"> & React.RefAttributes<HTMLUListElement>>;
|
|
8
8
|
declare const NavigationMenuItem: React.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuItemProps & React.RefAttributes<HTMLLIElement>>;
|
|
9
|
-
declare const navigationMenuTriggerStyle: (props?:
|
|
9
|
+
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types8.ClassProp | undefined) => string;
|
|
10
10
|
declare const NavigationMenuTrigger: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
11
11
|
declare const NavigationMenuContent: React.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
12
12
|
declare const NavigationMenuLink: React.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { ButtonProps } from "../button-
|
|
1
|
+
import { ButtonProps } from "../button-QxkOGnNm.js";
|
|
2
2
|
import * as React from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime17 from "react/jsx-runtime";
|
|
4
4
|
|
|
5
5
|
//#region src/components/pagination.d.ts
|
|
6
6
|
declare const Pagination: {
|
|
7
7
|
({
|
|
8
8
|
className,
|
|
9
9
|
...props
|
|
10
|
-
}: React.ComponentProps<"nav">):
|
|
10
|
+
}: React.ComponentProps<"nav">): react_jsx_runtime17.JSX.Element;
|
|
11
11
|
displayName: string;
|
|
12
12
|
};
|
|
13
13
|
declare const PaginationContent: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React.RefAttributes<HTMLUListElement>>;
|
|
@@ -21,28 +21,28 @@ declare const PaginationLink: {
|
|
|
21
21
|
isActive,
|
|
22
22
|
size,
|
|
23
23
|
...props
|
|
24
|
-
}: PaginationLinkProps):
|
|
24
|
+
}: PaginationLinkProps): react_jsx_runtime17.JSX.Element;
|
|
25
25
|
displayName: string;
|
|
26
26
|
};
|
|
27
27
|
declare const PaginationPrevious: {
|
|
28
28
|
({
|
|
29
29
|
className,
|
|
30
30
|
...props
|
|
31
|
-
}: React.ComponentProps<typeof PaginationLink>):
|
|
31
|
+
}: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime17.JSX.Element;
|
|
32
32
|
displayName: string;
|
|
33
33
|
};
|
|
34
34
|
declare const PaginationNext: {
|
|
35
35
|
({
|
|
36
36
|
className,
|
|
37
37
|
...props
|
|
38
|
-
}: React.ComponentProps<typeof PaginationLink>):
|
|
38
|
+
}: React.ComponentProps<typeof PaginationLink>): react_jsx_runtime17.JSX.Element;
|
|
39
39
|
displayName: string;
|
|
40
40
|
};
|
|
41
41
|
declare const PaginationEllipsis: {
|
|
42
42
|
({
|
|
43
43
|
className,
|
|
44
44
|
...props
|
|
45
|
-
}: React.ComponentProps<"span">):
|
|
45
|
+
}: React.ComponentProps<"span">): react_jsx_runtime17.JSX.Element;
|
|
46
46
|
displayName: string;
|
|
47
47
|
};
|
|
48
48
|
//#endregion
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime5 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
4
|
import * as SheetPrimitive from "@radix-ui/react-dialog";
|
|
5
|
-
import * as
|
|
5
|
+
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
6
6
|
|
|
7
7
|
//#region src/components/sheet.d.ts
|
|
8
8
|
declare const Sheet: React.FC<SheetPrimitive.DialogProps>;
|
|
@@ -11,22 +11,22 @@ declare const SheetClose: React.ForwardRefExoticComponent<SheetPrimitive.DialogC
|
|
|
11
11
|
declare const SheetPortal: React.FC<SheetPrimitive.DialogPortalProps>;
|
|
12
12
|
declare const SheetOverlay: React.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
13
13
|
declare const sheetVariants: (props?: ({
|
|
14
|
-
side?: "
|
|
15
|
-
} &
|
|
14
|
+
side?: "top" | "bottom" | "left" | "right" | null | undefined;
|
|
15
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
16
16
|
interface SheetContentProps extends React.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, VariantProps<typeof sheetVariants> {}
|
|
17
17
|
declare const SheetContent: React.ForwardRefExoticComponent<SheetContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
18
18
|
declare const SheetHeader: {
|
|
19
19
|
({
|
|
20
20
|
className,
|
|
21
21
|
...props
|
|
22
|
-
}: React.HTMLAttributes<HTMLDivElement>):
|
|
22
|
+
}: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime5.JSX.Element;
|
|
23
23
|
displayName: string;
|
|
24
24
|
};
|
|
25
25
|
declare const SheetFooter: {
|
|
26
26
|
({
|
|
27
27
|
className,
|
|
28
28
|
...props
|
|
29
|
-
}: React.HTMLAttributes<HTMLDivElement>):
|
|
29
|
+
}: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime5.JSX.Element;
|
|
30
30
|
displayName: string;
|
|
31
31
|
};
|
|
32
32
|
declare const SheetTitle: React.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sheet.d.ts","names":[],"sources":["../../src/components/sheet.tsx"],"sourcesContent":[],"mappings":";;;;;;;cASM,OAAK,KAAA,CAAA,GAAA,cAAA,CAAA;cAEL,cAAY,KAAA,CAAA,0BAAA,cAAA,CAAA,qBAAA,KAAA,CAAA,cAAA;cAEZ,YAAU,KAAA,CAAA,0BAAA,cAAA,CAAA,mBAAA,KAAA,CAAA,cAAA;cAEV,aAAW,KAAA,CAAA,GAAA,cAAA,CAAA;AAXiD,cAa5D,YAR2B,EAQf,KAAA,CAAA,yBARe,CAQf,IARe,CAQf,cAAA,CAAA,kBARe,GAQf,KAAA,CAAA,aARe,CAQf,cARe,CAAA,EAAA,KAAA,CAAA,GAQf,KAAA,CAAA,aARe,CAQf,cARe,CAAA,CAAA;cAuB3B,aAvB2B,EAAA,CAAA,KAAtB,CAAsB,EAAA,CAAA;EAAA,IAAtB,CAAA,EAAA,
|
|
1
|
+
{"version":3,"file":"sheet.d.ts","names":[],"sources":["../../src/components/sheet.tsx"],"sourcesContent":[],"mappings":";;;;;;;cASM,OAAK,KAAA,CAAA,GAAA,cAAA,CAAA;cAEL,cAAY,KAAA,CAAA,0BAAA,cAAA,CAAA,qBAAA,KAAA,CAAA,cAAA;cAEZ,YAAU,KAAA,CAAA,0BAAA,cAAA,CAAA,mBAAA,KAAA,CAAA,cAAA;cAEV,aAAW,KAAA,CAAA,GAAA,cAAA,CAAA;AAXiD,cAa5D,YAR2B,EAQf,KAAA,CAAA,yBARe,CAQf,IARe,CAQf,cAAA,CAAA,kBARe,GAQf,KAAA,CAAA,aARe,CAQf,cARe,CAAA,EAAA,KAAA,CAAA,GAQf,KAAA,CAAA,aARe,CAQf,cARe,CAAA,CAAA;cAuB3B,aAvB2B,EAAA,CAAA,KAAtB,CAAsB,EAAA,CAAA;EAAA,IAAtB,CAAA,EAAA,KAAA,GAAA,QAAA,GAAA,MAAA,GAAA,OAAA,GAAA,IAAA,GAAA,SAAA;CAAA,GAwCV,+BAAA,CAAA,SAxCU,CAAA,GAAA,SAAA,EAAA,GAAA,MAAA;AAAA,UA0CD,iBAAA,SAEN,KAAA,CAAM,wBA5CC,CAAA,OA4C+B,cAAA,CAAe,OA5C9C,CAAA,EA6CP,YA7CO,CAAA,OA6Ca,aA7Cb,CAAA,CAAA,CAAA;cA+CL,YA7CqC,EA6CzB,KAAA,CAAA,yBA7CyB,CA6CzB,iBA7CyB,GA6CzB,KAAA,CAAA,aA7CyB,CA6CzB,cA7CyB,CAAA,CAAA;cA8DrC,WA9DY,EAAA;EAAA,CAAA;IAAA,SAAA;IAAA,GAAA;EAAA,CAAA,EA8D4B,KAAA,CAAM,cA9DlC,CA8DiD,cA9DjD,CAAA,CAAA,EA8DgE,kBAAA,CAAA,GAAA,CAAA,OA9DhE;EAAA,WAAA,EAAA,MAAA;CAAA;AAAA,cAmEZ,WAnEY,EAAA;EAEZ,CAAA;IAAA,SAAA;IAAiC,GAAA;EAAA,CAAA,EAiEO,KAAA,CAAM,cAjEb,CAiE4B,cAjE5B,CAAA,CAAA,EAiE2C,kBAAA,CAAA,GAAA,CAAA,OAjE3C;EAAA,WAAA,EAAA,MAAA;CAAA;cAyEjC,UAzEU,EAyEA,KAAA,CAAA,yBAzEA,CAyEA,IAzEA,CAyEA,cAAA,CAAA,gBAzEA,GAyEA,KAAA,CAAA,aAzEA,CAyEA,kBAzEA,CAAA,EAAA,KAAA,CAAA,GAyEA,KAAA,CAAA,aAzEA,CAyEA,kBAzEA,CAAA,CAAA;cAqFV,gBArFU,EAqFM,KAAA,CAAA,yBArFN,CAqFM,IArFN,CAqFM,cAAA,CAAA,sBArFN,GAqFM,KAAA,CAAA,aArFN,CAqFM,oBArFN,CAAA,EAAA,KAAA,CAAA,GAqFM,KAAA,CAAA,aArFN,CAqFM,oBArFN,CAAA,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ButtonProps } from "../button-
|
|
1
|
+
import { ButtonProps } from "../button-QxkOGnNm.js";
|
|
2
2
|
import { TooltipContent$1 as TooltipContent } from "../tooltip-DPcgBDyX.js";
|
|
3
3
|
import * as React from "react";
|
|
4
4
|
import * as _radix_ui_react_separator0 from "@radix-ui/react-separator";
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime10 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/components/skeleton.d.ts
|
|
4
4
|
declare function Skeleton({
|
|
5
5
|
className,
|
|
6
6
|
...props
|
|
7
|
-
}: React.HTMLAttributes<HTMLDivElement>):
|
|
7
|
+
}: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime10.JSX.Element;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { Skeleton };
|
|
10
10
|
//# sourceMappingURL=skeleton.d.ts.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
import { Toaster as Toaster$1 } from "sonner";
|
|
3
3
|
|
|
4
4
|
//#region src/components/sonner.d.ts
|
|
5
5
|
type ToasterProps = React.ComponentProps<typeof Toaster$1>;
|
|
6
6
|
declare const Toaster: ({
|
|
7
7
|
...props
|
|
8
|
-
}: ToasterProps) =>
|
|
8
|
+
}: ToasterProps) => react_jsx_runtime0.JSX.Element;
|
|
9
9
|
//#endregion
|
|
10
10
|
export { Toaster };
|
|
11
11
|
//# sourceMappingURL=sonner.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sonner.d.ts","names":[],"sources":["../../src/components/sonner.tsx"],"sourcesContent":[],"mappings":";;;;KAEK,YAAA,GAAe,KAAA,CAAM,sBAAsB;cAE1C;;GAAyB,iBAAY,
|
|
1
|
+
{"version":3,"file":"sonner.d.ts","names":[],"sources":["../../src/components/sonner.tsx"],"sourcesContent":[],"mappings":";;;;KAEK,YAAA,GAAe,KAAA,CAAM,sBAAsB;cAE1C;;GAAyB,iBAAY,kBAAA,CAAA,GAAA,CAAA"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { VariantProps } from "class-variance-authority";
|
|
3
3
|
import * as ToggleGroupPrimitive from "@radix-ui/react-toggle-group";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/components/toggle-group.d.ts
|
|
7
7
|
declare const ToggleGroup: React.ForwardRefExoticComponent<((Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & React.RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & React.RefAttributes<HTMLDivElement>, "ref">) & VariantProps<(props?: ({
|
|
8
8
|
variant?: "default" | "outline" | null | undefined;
|
|
9
9
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
10
|
-
} &
|
|
10
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string>) & React.RefAttributes<HTMLDivElement>>;
|
|
11
11
|
declare const ToggleGroupItem: React.ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & React.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
12
12
|
variant?: "default" | "outline" | null | undefined;
|
|
13
13
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
14
|
-
} &
|
|
14
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string> & React.RefAttributes<HTMLButtonElement>>;
|
|
15
15
|
//#endregion
|
|
16
16
|
export { ToggleGroup, ToggleGroupItem };
|
|
17
17
|
//# sourceMappingURL=toggle-group.d.ts.map
|