@databricks/appkit-ui 0.2.0 → 0.3.0
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/AGENTS.md +5 -2
- package/CLAUDE.md +5 -2
- package/dist/react/charts/create-chart.js +1 -2
- package/dist/react/charts/create-chart.js.map +1 -1
- package/dist/react/charts/types.d.ts +0 -5
- package/dist/react/charts/types.d.ts.map +1 -1
- package/dist/react/charts/types.js.map +1 -1
- package/dist/react/charts/wrapper.d.ts +0 -2
- package/dist/react/charts/wrapper.d.ts.map +1 -1
- package/dist/react/charts/wrapper.js +2 -4
- package/dist/react/charts/wrapper.js.map +1 -1
- package/dist/react/hooks/types.d.ts +0 -2
- package/dist/react/hooks/types.d.ts.map +1 -1
- package/dist/react/hooks/use-analytics-query.d.ts +4 -0
- package/dist/react/hooks/use-analytics-query.d.ts.map +1 -1
- package/dist/react/hooks/use-analytics-query.js +5 -2
- package/dist/react/hooks/use-analytics-query.js.map +1 -1
- package/dist/react/hooks/use-chart-data.d.ts +0 -2
- package/dist/react/hooks/use-chart-data.d.ts.map +1 -1
- package/dist/react/hooks/use-chart-data.js +2 -3
- package/dist/react/hooks/use-chart-data.js.map +1 -1
- package/dist/react/table/table-wrapper.js +2 -3
- package/dist/react/table/table-wrapper.js.map +1 -1
- package/dist/react/table/types.d.ts.map +1 -1
- package/dist/react/ui/accordion.d.ts +5 -5
- package/dist/react/ui/alert-dialog.d.ts +12 -12
- package/dist/react/ui/alert.d.ts +4 -4
- package/dist/react/ui/aspect-ratio.d.ts +2 -2
- package/dist/react/ui/avatar.d.ts +4 -4
- package/dist/react/ui/avatar.d.ts.map +1 -1
- package/dist/react/ui/badge.d.ts +4 -4
- package/dist/react/ui/breadcrumb.d.ts +8 -8
- package/dist/react/ui/button-group.d.ts +6 -6
- package/dist/react/ui/button.d.ts +4 -4
- package/dist/react/ui/calendar.d.ts +3 -3
- package/dist/react/ui/card.d.ts +8 -8
- package/dist/react/ui/carousel.d.ts +6 -6
- package/dist/react/ui/chart.d.ts +5 -5
- package/dist/react/ui/checkbox.d.ts +2 -2
- package/dist/react/ui/collapsible.d.ts +4 -4
- package/dist/react/ui/command.d.ts +10 -10
- package/dist/react/ui/context-menu.d.ts +16 -16
- package/dist/react/ui/dialog.d.ts +11 -11
- package/dist/react/ui/drawer.d.ts +11 -11
- package/dist/react/ui/dropdown-menu.d.ts +16 -16
- package/dist/react/ui/empty.d.ts +7 -7
- package/dist/react/ui/field.d.ts +11 -11
- package/dist/react/ui/form.d.ts +7 -7
- package/dist/react/ui/form.d.ts.map +1 -1
- package/dist/react/ui/hover-card.d.ts +4 -4
- package/dist/react/ui/input-group.d.ts +10 -10
- package/dist/react/ui/input-otp.d.ts +5 -5
- package/dist/react/ui/input.d.ts +2 -2
- package/dist/react/ui/item.d.ts +14 -14
- package/dist/react/ui/popover.d.ts +5 -5
- package/dist/react/ui/progress.d.ts +2 -2
- package/dist/react/ui/radio-group.d.ts +3 -3
- package/dist/react/ui/resizable.d.ts +4 -4
- package/dist/react/ui/scroll-area.d.ts +3 -3
- package/dist/react/ui/select.d.ts +11 -11
- package/dist/react/ui/separator.d.ts +2 -2
- package/dist/react/ui/sheet.d.ts +9 -9
- package/dist/react/ui/sidebar.d.ts +24 -24
- package/dist/react/ui/skeleton.d.ts +2 -2
- package/dist/react/ui/slider.d.ts +2 -2
- package/dist/react/ui/sonner.d.ts +2 -2
- package/dist/react/ui/spinner.d.ts +2 -2
- package/dist/react/ui/switch.d.ts +2 -2
- package/dist/react/ui/tabs.d.ts +5 -5
- package/dist/react/ui/textarea.d.ts +2 -2
- package/dist/react/ui/toggle-group.d.ts +3 -3
- package/dist/react/ui/toggle.d.ts +2 -2
- package/dist/react/ui/tooltip.d.ts +5 -5
- package/dist/react/ui/tooltip.d.ts.map +1 -1
- package/llms.txt +5 -2
- package/package.json +1 -1
package/dist/react/ui/alert.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime9 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
4
|
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
5
5
|
|
|
@@ -11,15 +11,15 @@ declare function Alert({
|
|
|
11
11
|
className,
|
|
12
12
|
variant,
|
|
13
13
|
...props
|
|
14
|
-
}: React$1.ComponentProps<"div"> & VariantProps<typeof alertVariants>):
|
|
14
|
+
}: React$1.ComponentProps<"div"> & VariantProps<typeof alertVariants>): react_jsx_runtime9.JSX.Element;
|
|
15
15
|
declare function AlertTitle({
|
|
16
16
|
className,
|
|
17
17
|
...props
|
|
18
|
-
}: React$1.ComponentProps<"div">):
|
|
18
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime9.JSX.Element;
|
|
19
19
|
declare function AlertDescription({
|
|
20
20
|
className,
|
|
21
21
|
...props
|
|
22
|
-
}: React$1.ComponentProps<"div">):
|
|
22
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime9.JSX.Element;
|
|
23
23
|
//#endregion
|
|
24
24
|
export { Alert, AlertDescription, AlertTitle };
|
|
25
25
|
//# sourceMappingURL=alert.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime23 from "react/jsx-runtime";
|
|
2
2
|
import * as AspectRatioPrimitive from "@radix-ui/react-aspect-ratio";
|
|
3
3
|
|
|
4
4
|
//#region src/react/ui/aspect-ratio.d.ts
|
|
5
5
|
declare function AspectRatio({
|
|
6
6
|
...props
|
|
7
|
-
}: React.ComponentProps<typeof AspectRatioPrimitive.Root>):
|
|
7
|
+
}: React.ComponentProps<typeof AspectRatioPrimitive.Root>): react_jsx_runtime23.JSX.Element;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { AspectRatio };
|
|
10
10
|
//# sourceMappingURL=aspect-ratio.d.ts.map
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime24 from "react/jsx-runtime";
|
|
3
3
|
import * as AvatarPrimitive from "@radix-ui/react-avatar";
|
|
4
4
|
|
|
5
5
|
//#region src/react/ui/avatar.d.ts
|
|
6
6
|
declare function Avatar({
|
|
7
7
|
className,
|
|
8
8
|
...props
|
|
9
|
-
}: React$1.ComponentProps<typeof AvatarPrimitive.Root>):
|
|
9
|
+
}: React$1.ComponentProps<typeof AvatarPrimitive.Root>): react_jsx_runtime24.JSX.Element;
|
|
10
10
|
declare function AvatarImage({
|
|
11
11
|
className,
|
|
12
12
|
...props
|
|
13
|
-
}: React$1.ComponentProps<typeof AvatarPrimitive.Image>):
|
|
13
|
+
}: React$1.ComponentProps<typeof AvatarPrimitive.Image>): react_jsx_runtime24.JSX.Element;
|
|
14
14
|
declare function AvatarFallback({
|
|
15
15
|
className,
|
|
16
16
|
...props
|
|
17
|
-
}: React$1.ComponentProps<typeof AvatarPrimitive.Fallback>):
|
|
17
|
+
}: React$1.ComponentProps<typeof AvatarPrimitive.Fallback>): react_jsx_runtime24.JSX.Element;
|
|
18
18
|
//#endregion
|
|
19
19
|
export { Avatar, AvatarFallback, AvatarImage };
|
|
20
20
|
//# sourceMappingURL=avatar.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"avatar.d.ts","names":[],"sources":["../../../src/react/ui/avatar.tsx"],"sourcesContent":[],"mappings":";;;;;iBAKS,MAAA;;;GAGN,OAAA,CAAM,sBAAsB,eAAA,CAAgB,QAAK,
|
|
1
|
+
{"version":3,"file":"avatar.d.ts","names":[],"sources":["../../../src/react/ui/avatar.tsx"],"sourcesContent":[],"mappings":";;;;;iBAKS,MAAA;;;GAGN,OAAA,CAAM,sBAAsB,eAAA,CAAgB,QAAK,mBAAA,CAAA,GAAA,CAAA;iBAa3C,WAAA;;;GAGN,OAAA,CAAM,sBAAsB,eAAA,CAAgB,SAAM,mBAAA,CAAA,GAAA,CAAA;iBAU5C,cAAA;;;GAGN,OAAA,CAAM,sBAAsB,eAAA,CAAgB,YAAS,mBAAA,CAAA,GAAA,CAAA"}
|
package/dist/react/ui/badge.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime27 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/react/ui/badge.d.ts
|
|
7
7
|
declare const badgeVariants: (props?: ({
|
|
8
8
|
variant?: "default" | "destructive" | "secondary" | "outline" | null | undefined;
|
|
9
|
-
} &
|
|
9
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
10
10
|
declare function Badge({
|
|
11
11
|
className,
|
|
12
12
|
variant,
|
|
@@ -14,7 +14,7 @@ declare function Badge({
|
|
|
14
14
|
...props
|
|
15
15
|
}: React$1.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
|
|
16
16
|
asChild?: boolean;
|
|
17
|
-
}):
|
|
17
|
+
}): react_jsx_runtime27.JSX.Element;
|
|
18
18
|
//#endregion
|
|
19
19
|
export { Badge, badgeVariants };
|
|
20
20
|
//# sourceMappingURL=badge.d.ts.map
|
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime28 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/react/ui/breadcrumb.d.ts
|
|
5
5
|
declare function Breadcrumb({
|
|
6
6
|
...props
|
|
7
|
-
}: React$1.ComponentProps<"nav">):
|
|
7
|
+
}: React$1.ComponentProps<"nav">): react_jsx_runtime28.JSX.Element;
|
|
8
8
|
declare function BreadcrumbList({
|
|
9
9
|
className,
|
|
10
10
|
...props
|
|
11
|
-
}: React$1.ComponentProps<"ol">):
|
|
11
|
+
}: React$1.ComponentProps<"ol">): react_jsx_runtime28.JSX.Element;
|
|
12
12
|
declare function BreadcrumbItem({
|
|
13
13
|
className,
|
|
14
14
|
...props
|
|
15
|
-
}: React$1.ComponentProps<"li">):
|
|
15
|
+
}: React$1.ComponentProps<"li">): react_jsx_runtime28.JSX.Element;
|
|
16
16
|
declare function BreadcrumbLink({
|
|
17
17
|
asChild,
|
|
18
18
|
className,
|
|
19
19
|
...props
|
|
20
20
|
}: React$1.ComponentProps<"a"> & {
|
|
21
21
|
asChild?: boolean;
|
|
22
|
-
}):
|
|
22
|
+
}): react_jsx_runtime28.JSX.Element;
|
|
23
23
|
declare function BreadcrumbPage({
|
|
24
24
|
className,
|
|
25
25
|
...props
|
|
26
|
-
}: React$1.ComponentProps<"span">):
|
|
26
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime28.JSX.Element;
|
|
27
27
|
declare function BreadcrumbSeparator({
|
|
28
28
|
children,
|
|
29
29
|
className,
|
|
30
30
|
...props
|
|
31
|
-
}: React$1.ComponentProps<"li">):
|
|
31
|
+
}: React$1.ComponentProps<"li">): react_jsx_runtime28.JSX.Element;
|
|
32
32
|
declare function BreadcrumbEllipsis({
|
|
33
33
|
className,
|
|
34
34
|
...props
|
|
35
|
-
}: React$1.ComponentProps<"span">):
|
|
35
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime28.JSX.Element;
|
|
36
36
|
//#endregion
|
|
37
37
|
export { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator };
|
|
38
38
|
//# sourceMappingURL=breadcrumb.d.ts.map
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
import { Separator } from "./separator.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime36 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types2 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/react/ui/button-group.d.ts
|
|
7
7
|
declare const buttonGroupVariants: (props?: ({
|
|
8
8
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
9
|
-
} &
|
|
9
|
+
} & class_variance_authority_types2.ClassProp) | undefined) => string;
|
|
10
10
|
declare function ButtonGroup({
|
|
11
11
|
className,
|
|
12
12
|
orientation,
|
|
13
13
|
...props
|
|
14
|
-
}: React.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>):
|
|
14
|
+
}: React.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime36.JSX.Element;
|
|
15
15
|
declare function ButtonGroupText({
|
|
16
16
|
className,
|
|
17
17
|
asChild,
|
|
18
18
|
...props
|
|
19
19
|
}: React.ComponentProps<"div"> & {
|
|
20
20
|
asChild?: boolean;
|
|
21
|
-
}):
|
|
21
|
+
}): react_jsx_runtime36.JSX.Element;
|
|
22
22
|
declare function ButtonGroupSeparator({
|
|
23
23
|
className,
|
|
24
24
|
orientation,
|
|
25
25
|
...props
|
|
26
|
-
}: React.ComponentProps<typeof Separator>):
|
|
26
|
+
}: React.ComponentProps<typeof Separator>): react_jsx_runtime36.JSX.Element;
|
|
27
27
|
//#endregion
|
|
28
28
|
export { ButtonGroup, ButtonGroupSeparator, ButtonGroupText, buttonGroupVariants };
|
|
29
29
|
//# sourceMappingURL=button-group.d.ts.map
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime35 from "react/jsx-runtime";
|
|
3
3
|
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as
|
|
4
|
+
import * as class_variance_authority_types1 from "class-variance-authority/types";
|
|
5
5
|
|
|
6
6
|
//#region src/react/ui/button.d.ts
|
|
7
7
|
declare const buttonVariants: (props?: ({
|
|
8
8
|
variant?: "default" | "destructive" | "secondary" | "outline" | "ghost" | "link" | null | undefined;
|
|
9
9
|
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
10
|
-
} &
|
|
10
|
+
} & class_variance_authority_types1.ClassProp) | undefined) => string;
|
|
11
11
|
declare function Button({
|
|
12
12
|
className,
|
|
13
13
|
variant,
|
|
@@ -16,7 +16,7 @@ declare function Button({
|
|
|
16
16
|
...props
|
|
17
17
|
}: React$1.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
|
|
18
18
|
asChild?: boolean;
|
|
19
|
-
}):
|
|
19
|
+
}): react_jsx_runtime35.JSX.Element;
|
|
20
20
|
//#endregion
|
|
21
21
|
export { Button, buttonVariants };
|
|
22
22
|
//# sourceMappingURL=button.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Button } from "./button.js";
|
|
2
2
|
import * as React$1 from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime39 from "react/jsx-runtime";
|
|
4
4
|
import { DayButton, DayPicker } from "react-day-picker";
|
|
5
5
|
|
|
6
6
|
//#region src/react/ui/calendar.d.ts
|
|
@@ -15,13 +15,13 @@ declare function Calendar({
|
|
|
15
15
|
...props
|
|
16
16
|
}: React$1.ComponentProps<typeof DayPicker> & {
|
|
17
17
|
buttonVariant?: React$1.ComponentProps<typeof Button>["variant"];
|
|
18
|
-
}):
|
|
18
|
+
}): react_jsx_runtime39.JSX.Element;
|
|
19
19
|
declare function CalendarDayButton({
|
|
20
20
|
className,
|
|
21
21
|
day,
|
|
22
22
|
modifiers,
|
|
23
23
|
...props
|
|
24
|
-
}: React$1.ComponentProps<typeof DayButton>):
|
|
24
|
+
}: React$1.ComponentProps<typeof DayButton>): react_jsx_runtime39.JSX.Element;
|
|
25
25
|
//#endregion
|
|
26
26
|
export { Calendar, CalendarDayButton };
|
|
27
27
|
//# sourceMappingURL=calendar.d.ts.map
|
package/dist/react/ui/card.d.ts
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime41 from "react/jsx-runtime";
|
|
3
3
|
|
|
4
4
|
//#region src/react/ui/card.d.ts
|
|
5
5
|
declare function Card({
|
|
6
6
|
className,
|
|
7
7
|
...props
|
|
8
|
-
}: React$1.ComponentProps<"div">):
|
|
8
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime41.JSX.Element;
|
|
9
9
|
declare function CardHeader({
|
|
10
10
|
className,
|
|
11
11
|
...props
|
|
12
|
-
}: React$1.ComponentProps<"div">):
|
|
12
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime41.JSX.Element;
|
|
13
13
|
declare function CardTitle({
|
|
14
14
|
className,
|
|
15
15
|
...props
|
|
16
|
-
}: React$1.ComponentProps<"div">):
|
|
16
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime41.JSX.Element;
|
|
17
17
|
declare function CardDescription({
|
|
18
18
|
className,
|
|
19
19
|
...props
|
|
20
|
-
}: React$1.ComponentProps<"div">):
|
|
20
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime41.JSX.Element;
|
|
21
21
|
declare function CardAction({
|
|
22
22
|
className,
|
|
23
23
|
...props
|
|
24
|
-
}: React$1.ComponentProps<"div">):
|
|
24
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime41.JSX.Element;
|
|
25
25
|
declare function CardContent({
|
|
26
26
|
className,
|
|
27
27
|
...props
|
|
28
|
-
}: React$1.ComponentProps<"div">):
|
|
28
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime41.JSX.Element;
|
|
29
29
|
declare function CardFooter({
|
|
30
30
|
className,
|
|
31
31
|
...props
|
|
32
|
-
}: React$1.ComponentProps<"div">):
|
|
32
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime41.JSX.Element;
|
|
33
33
|
//#endregion
|
|
34
34
|
export { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle };
|
|
35
35
|
//# sourceMappingURL=card.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Button } from "./button.js";
|
|
2
2
|
import * as React$1 from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime48 from "react/jsx-runtime";
|
|
4
4
|
import useEmblaCarousel, { UseEmblaCarouselType } from "embla-carousel-react";
|
|
5
5
|
|
|
6
6
|
//#region src/react/ui/carousel.d.ts
|
|
@@ -22,27 +22,27 @@ declare function Carousel({
|
|
|
22
22
|
className,
|
|
23
23
|
children,
|
|
24
24
|
...props
|
|
25
|
-
}: React$1.ComponentProps<"div"> & CarouselProps):
|
|
25
|
+
}: React$1.ComponentProps<"div"> & CarouselProps): react_jsx_runtime48.JSX.Element;
|
|
26
26
|
declare function CarouselContent({
|
|
27
27
|
className,
|
|
28
28
|
...props
|
|
29
|
-
}: React$1.ComponentProps<"div">):
|
|
29
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime48.JSX.Element;
|
|
30
30
|
declare function CarouselItem({
|
|
31
31
|
className,
|
|
32
32
|
...props
|
|
33
|
-
}: React$1.ComponentProps<"div">):
|
|
33
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime48.JSX.Element;
|
|
34
34
|
declare function CarouselPrevious({
|
|
35
35
|
className,
|
|
36
36
|
variant,
|
|
37
37
|
size,
|
|
38
38
|
...props
|
|
39
|
-
}: React$1.ComponentProps<typeof Button>):
|
|
39
|
+
}: React$1.ComponentProps<typeof Button>): react_jsx_runtime48.JSX.Element;
|
|
40
40
|
declare function CarouselNext({
|
|
41
41
|
className,
|
|
42
42
|
variant,
|
|
43
43
|
size,
|
|
44
44
|
...props
|
|
45
|
-
}: React$1.ComponentProps<typeof Button>):
|
|
45
|
+
}: React$1.ComponentProps<typeof Button>): react_jsx_runtime48.JSX.Element;
|
|
46
46
|
//#endregion
|
|
47
47
|
export { Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious };
|
|
48
48
|
//# sourceMappingURL=carousel.d.ts.map
|
package/dist/react/ui/chart.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react0 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime53 from "react/jsx-runtime";
|
|
3
3
|
import * as RechartsPrimitive from "recharts";
|
|
4
4
|
import * as recharts_types_util_types0 from "recharts/types/util/types";
|
|
5
5
|
import * as recharts_types_component_Tooltip0 from "recharts/types/component/Tooltip";
|
|
@@ -30,14 +30,14 @@ declare function ChartContainer({
|
|
|
30
30
|
}: react0.ComponentProps<"div"> & {
|
|
31
31
|
config: ChartConfig;
|
|
32
32
|
children: react0.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
|
|
33
|
-
}):
|
|
33
|
+
}): react_jsx_runtime53.JSX.Element;
|
|
34
34
|
declare const ChartStyle: ({
|
|
35
35
|
id,
|
|
36
36
|
config
|
|
37
37
|
}: {
|
|
38
38
|
id: string;
|
|
39
39
|
config: ChartConfig;
|
|
40
|
-
}) =>
|
|
40
|
+
}) => react_jsx_runtime53.JSX.Element | null;
|
|
41
41
|
/**
|
|
42
42
|
* A wrapper component for Recharts Tooltip with proper typing and documentation support.
|
|
43
43
|
* It is needed to ensure the correct name is displayed in the docs.
|
|
@@ -93,7 +93,7 @@ declare function ChartTooltipContent({
|
|
|
93
93
|
labelClassName?: string;
|
|
94
94
|
nameKey?: string;
|
|
95
95
|
labelKey?: string;
|
|
96
|
-
}):
|
|
96
|
+
}): react_jsx_runtime53.JSX.Element | null;
|
|
97
97
|
/**
|
|
98
98
|
* A wrapper component for Recharts Legend with proper typing and documentation support.
|
|
99
99
|
* It is needed to ensure the correct name is displayed in the docs.
|
|
@@ -110,7 +110,7 @@ declare function ChartLegendContent({
|
|
|
110
110
|
payload?: any[];
|
|
111
111
|
hideIcon?: boolean;
|
|
112
112
|
nameKey?: string;
|
|
113
|
-
}):
|
|
113
|
+
}): react_jsx_runtime53.JSX.Element | null;
|
|
114
114
|
//#endregion
|
|
115
115
|
export { ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent };
|
|
116
116
|
//# sourceMappingURL=chart.d.ts.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime57 from "react/jsx-runtime";
|
|
3
3
|
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
|
|
4
4
|
|
|
5
5
|
//#region src/react/ui/checkbox.d.ts
|
|
6
6
|
declare function Checkbox({
|
|
7
7
|
className,
|
|
8
8
|
...props
|
|
9
|
-
}: React$1.ComponentProps<typeof CheckboxPrimitive.Root>):
|
|
9
|
+
}: React$1.ComponentProps<typeof CheckboxPrimitive.Root>): react_jsx_runtime57.JSX.Element;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { Checkbox };
|
|
12
12
|
//# sourceMappingURL=checkbox.d.ts.map
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime58 from "react/jsx-runtime";
|
|
2
2
|
import * as CollapsiblePrimitive from "@radix-ui/react-collapsible";
|
|
3
3
|
|
|
4
4
|
//#region src/react/ui/collapsible.d.ts
|
|
5
5
|
declare function Collapsible({
|
|
6
6
|
...props
|
|
7
|
-
}: React.ComponentProps<typeof CollapsiblePrimitive.Root>):
|
|
7
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime58.JSX.Element;
|
|
8
8
|
declare function CollapsibleTrigger({
|
|
9
9
|
...props
|
|
10
|
-
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>):
|
|
10
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime58.JSX.Element;
|
|
11
11
|
declare function CollapsibleContent({
|
|
12
12
|
...props
|
|
13
|
-
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>):
|
|
13
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime58.JSX.Element;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { Collapsible, CollapsibleContent, CollapsibleTrigger };
|
|
16
16
|
//# sourceMappingURL=collapsible.d.ts.map
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Dialog } from "./dialog.js";
|
|
2
2
|
import * as React$1 from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime61 from "react/jsx-runtime";
|
|
4
4
|
import { Command } from "cmdk";
|
|
5
5
|
|
|
6
6
|
//#region src/react/ui/command.d.ts
|
|
7
7
|
declare function Command$1({
|
|
8
8
|
className,
|
|
9
9
|
...props
|
|
10
|
-
}: React$1.ComponentProps<typeof Command>):
|
|
10
|
+
}: React$1.ComponentProps<typeof Command>): react_jsx_runtime61.JSX.Element;
|
|
11
11
|
declare function CommandDialog({
|
|
12
12
|
title,
|
|
13
13
|
description,
|
|
@@ -20,34 +20,34 @@ declare function CommandDialog({
|
|
|
20
20
|
description?: string;
|
|
21
21
|
className?: string;
|
|
22
22
|
showCloseButton?: boolean;
|
|
23
|
-
}):
|
|
23
|
+
}): react_jsx_runtime61.JSX.Element;
|
|
24
24
|
declare function CommandInput({
|
|
25
25
|
className,
|
|
26
26
|
...props
|
|
27
|
-
}: React$1.ComponentProps<typeof Command.Input>):
|
|
27
|
+
}: React$1.ComponentProps<typeof Command.Input>): react_jsx_runtime61.JSX.Element;
|
|
28
28
|
declare function CommandList({
|
|
29
29
|
className,
|
|
30
30
|
...props
|
|
31
|
-
}: React$1.ComponentProps<typeof Command.List>):
|
|
31
|
+
}: React$1.ComponentProps<typeof Command.List>): react_jsx_runtime61.JSX.Element;
|
|
32
32
|
declare function CommandEmpty({
|
|
33
33
|
...props
|
|
34
|
-
}: React$1.ComponentProps<typeof Command.Empty>):
|
|
34
|
+
}: React$1.ComponentProps<typeof Command.Empty>): react_jsx_runtime61.JSX.Element;
|
|
35
35
|
declare function CommandGroup({
|
|
36
36
|
className,
|
|
37
37
|
...props
|
|
38
|
-
}: React$1.ComponentProps<typeof Command.Group>):
|
|
38
|
+
}: React$1.ComponentProps<typeof Command.Group>): react_jsx_runtime61.JSX.Element;
|
|
39
39
|
declare function CommandSeparator({
|
|
40
40
|
className,
|
|
41
41
|
...props
|
|
42
|
-
}: React$1.ComponentProps<typeof Command.Separator>):
|
|
42
|
+
}: React$1.ComponentProps<typeof Command.Separator>): react_jsx_runtime61.JSX.Element;
|
|
43
43
|
declare function CommandItem({
|
|
44
44
|
className,
|
|
45
45
|
...props
|
|
46
|
-
}: React$1.ComponentProps<typeof Command.Item>):
|
|
46
|
+
}: React$1.ComponentProps<typeof Command.Item>): react_jsx_runtime61.JSX.Element;
|
|
47
47
|
declare function CommandShortcut({
|
|
48
48
|
className,
|
|
49
49
|
...props
|
|
50
|
-
}: React$1.ComponentProps<"span">):
|
|
50
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime61.JSX.Element;
|
|
51
51
|
//#endregion
|
|
52
52
|
export { Command$1 as Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut };
|
|
53
53
|
//# sourceMappingURL=command.d.ts.map
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime70 from "react/jsx-runtime";
|
|
3
3
|
import * as ContextMenuPrimitive from "@radix-ui/react-context-menu";
|
|
4
4
|
|
|
5
5
|
//#region src/react/ui/context-menu.d.ts
|
|
6
6
|
declare function ContextMenu({
|
|
7
7
|
...props
|
|
8
|
-
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Root>):
|
|
8
|
+
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Root>): react_jsx_runtime70.JSX.Element;
|
|
9
9
|
declare function ContextMenuTrigger({
|
|
10
10
|
...props
|
|
11
|
-
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Trigger>):
|
|
11
|
+
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Trigger>): react_jsx_runtime70.JSX.Element;
|
|
12
12
|
declare function ContextMenuGroup({
|
|
13
13
|
...props
|
|
14
|
-
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Group>):
|
|
14
|
+
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Group>): react_jsx_runtime70.JSX.Element;
|
|
15
15
|
declare function ContextMenuPortal({
|
|
16
16
|
container,
|
|
17
17
|
...props
|
|
18
|
-
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Portal>):
|
|
18
|
+
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Portal>): react_jsx_runtime70.JSX.Element;
|
|
19
19
|
declare function ContextMenuSub({
|
|
20
20
|
...props
|
|
21
|
-
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Sub>):
|
|
21
|
+
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Sub>): react_jsx_runtime70.JSX.Element;
|
|
22
22
|
declare function ContextMenuRadioGroup({
|
|
23
23
|
...props
|
|
24
|
-
}: React$1.ComponentProps<typeof ContextMenuPrimitive.RadioGroup>):
|
|
24
|
+
}: React$1.ComponentProps<typeof ContextMenuPrimitive.RadioGroup>): react_jsx_runtime70.JSX.Element;
|
|
25
25
|
declare function ContextMenuSubTrigger({
|
|
26
26
|
className,
|
|
27
27
|
inset,
|
|
@@ -29,15 +29,15 @@ declare function ContextMenuSubTrigger({
|
|
|
29
29
|
...props
|
|
30
30
|
}: React$1.ComponentProps<typeof ContextMenuPrimitive.SubTrigger> & {
|
|
31
31
|
inset?: boolean;
|
|
32
|
-
}):
|
|
32
|
+
}): react_jsx_runtime70.JSX.Element;
|
|
33
33
|
declare function ContextMenuSubContent({
|
|
34
34
|
className,
|
|
35
35
|
...props
|
|
36
|
-
}: React$1.ComponentProps<typeof ContextMenuPrimitive.SubContent>):
|
|
36
|
+
}: React$1.ComponentProps<typeof ContextMenuPrimitive.SubContent>): react_jsx_runtime70.JSX.Element;
|
|
37
37
|
declare function ContextMenuContent({
|
|
38
38
|
className,
|
|
39
39
|
...props
|
|
40
|
-
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Content>):
|
|
40
|
+
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Content>): react_jsx_runtime70.JSX.Element;
|
|
41
41
|
declare function ContextMenuItem({
|
|
42
42
|
className,
|
|
43
43
|
inset,
|
|
@@ -46,33 +46,33 @@ declare function ContextMenuItem({
|
|
|
46
46
|
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Item> & {
|
|
47
47
|
inset?: boolean;
|
|
48
48
|
variant?: "default" | "destructive";
|
|
49
|
-
}):
|
|
49
|
+
}): react_jsx_runtime70.JSX.Element;
|
|
50
50
|
declare function ContextMenuCheckboxItem({
|
|
51
51
|
className,
|
|
52
52
|
children,
|
|
53
53
|
checked,
|
|
54
54
|
...props
|
|
55
|
-
}: React$1.ComponentProps<typeof ContextMenuPrimitive.CheckboxItem>):
|
|
55
|
+
}: React$1.ComponentProps<typeof ContextMenuPrimitive.CheckboxItem>): react_jsx_runtime70.JSX.Element;
|
|
56
56
|
declare function ContextMenuRadioItem({
|
|
57
57
|
className,
|
|
58
58
|
children,
|
|
59
59
|
...props
|
|
60
|
-
}: React$1.ComponentProps<typeof ContextMenuPrimitive.RadioItem>):
|
|
60
|
+
}: React$1.ComponentProps<typeof ContextMenuPrimitive.RadioItem>): react_jsx_runtime70.JSX.Element;
|
|
61
61
|
declare function ContextMenuLabel({
|
|
62
62
|
className,
|
|
63
63
|
inset,
|
|
64
64
|
...props
|
|
65
65
|
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Label> & {
|
|
66
66
|
inset?: boolean;
|
|
67
|
-
}):
|
|
67
|
+
}): react_jsx_runtime70.JSX.Element;
|
|
68
68
|
declare function ContextMenuSeparator({
|
|
69
69
|
className,
|
|
70
70
|
...props
|
|
71
|
-
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Separator>):
|
|
71
|
+
}: React$1.ComponentProps<typeof ContextMenuPrimitive.Separator>): react_jsx_runtime70.JSX.Element;
|
|
72
72
|
declare function ContextMenuShortcut({
|
|
73
73
|
className,
|
|
74
74
|
...props
|
|
75
|
-
}: React$1.ComponentProps<"span">):
|
|
75
|
+
}: React$1.ComponentProps<"span">): react_jsx_runtime70.JSX.Element;
|
|
76
76
|
//#endregion
|
|
77
77
|
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger };
|
|
78
78
|
//# sourceMappingURL=context-menu.d.ts.map
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import * as React$1 from "react";
|
|
2
|
-
import * as
|
|
2
|
+
import * as react_jsx_runtime85 from "react/jsx-runtime";
|
|
3
3
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
4
4
|
|
|
5
5
|
//#region src/react/ui/dialog.d.ts
|
|
6
6
|
declare function Dialog({
|
|
7
7
|
...props
|
|
8
|
-
}: React$1.ComponentProps<typeof DialogPrimitive.Root>):
|
|
8
|
+
}: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime85.JSX.Element;
|
|
9
9
|
declare function DialogTrigger({
|
|
10
10
|
...props
|
|
11
|
-
}: React$1.ComponentProps<typeof DialogPrimitive.Trigger>):
|
|
11
|
+
}: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime85.JSX.Element;
|
|
12
12
|
declare function DialogPortal({
|
|
13
13
|
container,
|
|
14
14
|
...props
|
|
15
|
-
}: React$1.ComponentProps<typeof DialogPrimitive.Portal>):
|
|
15
|
+
}: React$1.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime85.JSX.Element;
|
|
16
16
|
declare function DialogClose({
|
|
17
17
|
...props
|
|
18
|
-
}: React$1.ComponentProps<typeof DialogPrimitive.Close>):
|
|
18
|
+
}: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime85.JSX.Element;
|
|
19
19
|
declare function DialogOverlay({
|
|
20
20
|
className,
|
|
21
21
|
...props
|
|
22
|
-
}: React$1.ComponentProps<typeof DialogPrimitive.Overlay>):
|
|
22
|
+
}: React$1.ComponentProps<typeof DialogPrimitive.Overlay>): react_jsx_runtime85.JSX.Element;
|
|
23
23
|
declare function DialogContent({
|
|
24
24
|
className,
|
|
25
25
|
children,
|
|
@@ -27,23 +27,23 @@ declare function DialogContent({
|
|
|
27
27
|
...props
|
|
28
28
|
}: React$1.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
29
29
|
showCloseButton?: boolean;
|
|
30
|
-
}):
|
|
30
|
+
}): react_jsx_runtime85.JSX.Element;
|
|
31
31
|
declare function DialogHeader({
|
|
32
32
|
className,
|
|
33
33
|
...props
|
|
34
|
-
}: React$1.ComponentProps<"div">):
|
|
34
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime85.JSX.Element;
|
|
35
35
|
declare function DialogFooter({
|
|
36
36
|
className,
|
|
37
37
|
...props
|
|
38
|
-
}: React$1.ComponentProps<"div">):
|
|
38
|
+
}: React$1.ComponentProps<"div">): react_jsx_runtime85.JSX.Element;
|
|
39
39
|
declare function DialogTitle({
|
|
40
40
|
className,
|
|
41
41
|
...props
|
|
42
|
-
}: React$1.ComponentProps<typeof DialogPrimitive.Title>):
|
|
42
|
+
}: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime85.JSX.Element;
|
|
43
43
|
declare function DialogDescription({
|
|
44
44
|
className,
|
|
45
45
|
...props
|
|
46
|
-
}: React$1.ComponentProps<typeof DialogPrimitive.Description>):
|
|
46
|
+
}: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime85.JSX.Element;
|
|
47
47
|
//#endregion
|
|
48
48
|
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger };
|
|
49
49
|
//# sourceMappingURL=dialog.d.ts.map
|