@ah-automation.nl/component-lib 0.0.29 → 0.0.31
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/components/app-header.d.ts +2 -1
- package/dist/components/app-header.d.ts.map +1 -1
- package/dist/components/app-shell.d.ts +2 -1
- package/dist/components/app-shell.d.ts.map +1 -1
- package/dist/components/generic-drawer.d.ts +2 -1
- package/dist/components/generic-drawer.d.ts.map +1 -1
- package/dist/components/sidebar-nav.d.ts +2 -1
- package/dist/components/sidebar-nav.d.ts.map +1 -1
- package/dist/components/ui/button.d.ts +2 -2
- package/dist/components/ui/button.d.ts.map +1 -1
- package/dist/components/ui/checkbox.d.ts +2 -2
- package/dist/components/ui/checkbox.d.ts.map +1 -1
- package/dist/components/ui/collapsible.d.ts +4 -4
- package/dist/components/ui/collapsible.d.ts.map +1 -1
- package/dist/components/ui/command.d.ts +11 -11
- package/dist/components/ui/command.d.ts.map +1 -1
- package/dist/components/ui/data-table.d.ts +3 -3
- package/dist/components/ui/data-table.d.ts.map +1 -1
- package/dist/components/ui/dialog.d.ts +11 -11
- package/dist/components/ui/dialog.d.ts.map +1 -1
- package/dist/components/ui/drawer.d.ts +11 -11
- package/dist/components/ui/drawer.d.ts.map +1 -1
- package/dist/components/ui/dropdown-menu.d.ts +16 -16
- package/dist/components/ui/dropdown-menu.d.ts.map +1 -1
- package/dist/components/ui/input-group.d.ts +8 -8
- package/dist/components/ui/input-group.d.ts.map +1 -1
- package/dist/components/ui/input.d.ts +1 -1
- package/dist/components/ui/input.d.ts.map +1 -1
- package/dist/components/ui/popover.d.ts +6 -6
- package/dist/components/ui/popover.d.ts.map +1 -1
- package/dist/components/ui/select-styles.d.ts +1 -1
- package/dist/components/ui/select-styles.d.ts.map +1 -1
- package/dist/components/ui/select.d.ts +11 -11
- package/dist/components/ui/select.d.ts.map +1 -1
- package/dist/components/ui/separator.d.ts +2 -2
- package/dist/components/ui/separator.d.ts.map +1 -1
- package/dist/components/ui/sheet.d.ts +10 -10
- package/dist/components/ui/sheet.d.ts.map +1 -1
- package/dist/components/ui/sidebar.d.ts +24 -24
- package/dist/components/ui/sidebar.d.ts.map +1 -1
- package/dist/components/ui/skeleton.d.ts +1 -1
- package/dist/components/ui/skeleton.d.ts.map +1 -1
- package/dist/components/ui/table.d.ts +9 -9
- package/dist/components/ui/table.d.ts.map +1 -1
- package/dist/components/ui/textarea.d.ts +1 -1
- package/dist/components/ui/textarea.d.ts.map +1 -1
- package/dist/components/ui/tooltip.d.ts +5 -5
- package/dist/components/ui/tooltip.d.ts.map +1 -1
- package/dist/components/user-image.d.ts +2 -1
- package/dist/components/user-image.d.ts.map +1 -1
- package/dist/components/virtual-multi-select.d.ts +2 -1
- package/dist/components/virtual-multi-select.d.ts.map +1 -1
- package/dist/components/virtual-single-select.d.ts +2 -1
- package/dist/components/virtual-single-select.d.ts.map +1 -1
- package/dist/hooks/use-mobile.d.ts.map +1 -1
- package/dist/index.d.ts +6 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7069 -6999
- package/dist/lib/utils.d.ts.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/types/app-shell.d.ts.map +1 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +9 -2
- package/dist/components/multi-select.d.ts +0 -4
- package/dist/components/multi-select.d.ts.map +0 -1
- package/dist/components/single-select.d.ts +0 -4
- package/dist/components/single-select.d.ts.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
1
|
import { type VariantProps } from "class-variance-authority";
|
|
2
|
+
import * as React from "react";
|
|
3
3
|
import { Button } from "@/components/ui/button";
|
|
4
4
|
import { Input } from "@/components/ui/input";
|
|
5
5
|
import { Separator } from "@/components/ui/separator";
|
|
@@ -17,30 +17,30 @@ declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: se
|
|
|
17
17
|
defaultOpen?: boolean;
|
|
18
18
|
open?: boolean;
|
|
19
19
|
onOpenChange?: (open: boolean) => void;
|
|
20
|
-
}):
|
|
20
|
+
}): React.ReactElement;
|
|
21
21
|
declare function Sidebar({ side, variant, collapsible, className, children, dir, ...props }: React.ComponentProps<"div"> & {
|
|
22
22
|
side?: "left" | "right";
|
|
23
23
|
variant?: "sidebar" | "floating" | "inset";
|
|
24
24
|
collapsible?: "offcanvas" | "icon" | "none";
|
|
25
|
-
}):
|
|
26
|
-
declare function SidebarTrigger({ className, onClick, ...props }: React.ComponentProps<typeof Button>):
|
|
27
|
-
declare function SidebarRail({ className, ...props }: React.ComponentProps<"button">):
|
|
28
|
-
declare function SidebarInset({ className, ...props }: React.ComponentProps<"main">):
|
|
29
|
-
declare function SidebarInput({ className, ...props }: React.ComponentProps<typeof Input>):
|
|
30
|
-
declare function SidebarHeader({ className, ...props }: React.ComponentProps<"div">):
|
|
31
|
-
declare function SidebarFooter({ className, ...props }: React.ComponentProps<"div">):
|
|
32
|
-
declare function SidebarSeparator({ className, ...props }: React.ComponentProps<typeof Separator>):
|
|
33
|
-
declare function SidebarContent({ className, ...props }: React.ComponentProps<"div">):
|
|
34
|
-
declare function SidebarGroup({ className, ...props }: React.ComponentProps<"div">):
|
|
25
|
+
}): React.ReactElement;
|
|
26
|
+
declare function SidebarTrigger({ className, onClick, ...props }: React.ComponentProps<typeof Button>): React.ReactElement;
|
|
27
|
+
declare function SidebarRail({ className, ...props }: React.ComponentProps<"button">): React.ReactElement;
|
|
28
|
+
declare function SidebarInset({ className, ...props }: React.ComponentProps<"main">): React.ReactElement;
|
|
29
|
+
declare function SidebarInput({ className, ...props }: React.ComponentProps<typeof Input>): React.ReactElement;
|
|
30
|
+
declare function SidebarHeader({ className, ...props }: React.ComponentProps<"div">): React.ReactElement;
|
|
31
|
+
declare function SidebarFooter({ className, ...props }: React.ComponentProps<"div">): React.ReactElement;
|
|
32
|
+
declare function SidebarSeparator({ className, ...props }: React.ComponentProps<typeof Separator>): React.ReactElement;
|
|
33
|
+
declare function SidebarContent({ className, ...props }: React.ComponentProps<"div">): React.ReactElement;
|
|
34
|
+
declare function SidebarGroup({ className, ...props }: React.ComponentProps<"div">): React.ReactElement;
|
|
35
35
|
declare function SidebarGroupLabel({ className, asChild, ...props }: React.ComponentProps<"div"> & {
|
|
36
36
|
asChild?: boolean;
|
|
37
|
-
}):
|
|
37
|
+
}): React.ReactElement;
|
|
38
38
|
declare function SidebarGroupAction({ className, asChild, ...props }: React.ComponentProps<"button"> & {
|
|
39
39
|
asChild?: boolean;
|
|
40
|
-
}):
|
|
41
|
-
declare function SidebarGroupContent({ className, ...props }: React.ComponentProps<"div">):
|
|
42
|
-
declare function SidebarMenu({ className, ...props }: React.ComponentProps<"ul">):
|
|
43
|
-
declare function SidebarMenuItem({ className, ...props }: React.ComponentProps<"li">):
|
|
40
|
+
}): React.ReactElement;
|
|
41
|
+
declare function SidebarGroupContent({ className, ...props }: React.ComponentProps<"div">): React.ReactElement;
|
|
42
|
+
declare function SidebarMenu({ className, ...props }: React.ComponentProps<"ul">): React.ReactElement;
|
|
43
|
+
declare function SidebarMenuItem({ className, ...props }: React.ComponentProps<"li">): React.ReactElement;
|
|
44
44
|
declare const sidebarMenuButtonVariants: (props?: ({
|
|
45
45
|
variant?: "default" | "outline" | null | undefined;
|
|
46
46
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
@@ -48,21 +48,21 @@ declare const sidebarMenuButtonVariants: (props?: ({
|
|
|
48
48
|
declare function SidebarMenuButton({ asChild, isActive, variant, size, className, ...props }: React.ComponentProps<"button"> & {
|
|
49
49
|
asChild?: boolean;
|
|
50
50
|
isActive?: boolean;
|
|
51
|
-
} & VariantProps<typeof sidebarMenuButtonVariants>):
|
|
51
|
+
} & VariantProps<typeof sidebarMenuButtonVariants>): React.ReactElement;
|
|
52
52
|
declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: React.ComponentProps<"button"> & {
|
|
53
53
|
asChild?: boolean;
|
|
54
54
|
showOnHover?: boolean;
|
|
55
|
-
}):
|
|
56
|
-
declare function SidebarMenuBadge({ className, ...props }: React.ComponentProps<"div">):
|
|
55
|
+
}): React.ReactElement;
|
|
56
|
+
declare function SidebarMenuBadge({ className, ...props }: React.ComponentProps<"div">): React.ReactElement;
|
|
57
57
|
declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React.ComponentProps<"div"> & {
|
|
58
58
|
showIcon?: boolean;
|
|
59
|
-
}):
|
|
60
|
-
declare function SidebarMenuSub({ className, ...props }: React.ComponentProps<"ul">):
|
|
61
|
-
declare function SidebarMenuSubItem({ className, ...props }: React.ComponentProps<"li">):
|
|
59
|
+
}): React.ReactElement;
|
|
60
|
+
declare function SidebarMenuSub({ className, ...props }: React.ComponentProps<"ul">): React.ReactElement;
|
|
61
|
+
declare function SidebarMenuSubItem({ className, ...props }: React.ComponentProps<"li">): React.ReactElement;
|
|
62
62
|
declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: React.ComponentProps<"a"> & {
|
|
63
63
|
asChild?: boolean;
|
|
64
64
|
size?: "sm" | "md";
|
|
65
65
|
isActive?: boolean;
|
|
66
|
-
}):
|
|
66
|
+
}): React.ReactElement;
|
|
67
67
|
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, };
|
|
68
68
|
//# sourceMappingURL=sidebar.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sidebar.d.ts","sourceRoot":"","sources":["../../../src/components/ui/sidebar.tsx"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"sidebar.d.ts","sourceRoot":"","sources":["../../../src/components/ui/sidebar.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare function Skeleton({ className, ...props }: React.ComponentProps<"div">):
|
|
1
|
+
declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): React.ReactElement;
|
|
2
2
|
export { Skeleton };
|
|
3
3
|
//# sourceMappingURL=skeleton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skeleton.d.ts","sourceRoot":"","sources":["../../../src/components/ui/skeleton.tsx"],"names":[],"mappings":"AAEA,iBAAS,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"skeleton.d.ts","sourceRoot":"","sources":["../../../src/components/ui/skeleton.tsx"],"names":[],"mappings":"AAEA,iBAAS,QAAQ,CAAC,EAChB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,YAAY,CAQlD;AAED,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -2,13 +2,13 @@ import * as React from "react";
|
|
|
2
2
|
type TableProps = React.ComponentProps<"table"> & {
|
|
3
3
|
containerClassName?: string;
|
|
4
4
|
};
|
|
5
|
-
declare function Table({ className, containerClassName, ...props }: TableProps):
|
|
6
|
-
declare function TableHeader({ className, ...props }: React.ComponentProps<"thead">):
|
|
7
|
-
declare function TableBody({ className, ...props }: React.ComponentProps<"tbody">):
|
|
8
|
-
declare function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">):
|
|
9
|
-
declare function TableRow({ className, ...props }: React.ComponentProps<"tr">):
|
|
10
|
-
declare function TableHead({ className, ...props }: React.ComponentProps<"th">):
|
|
11
|
-
declare function TableCell({ className, ...props }: React.ComponentProps<"td">):
|
|
12
|
-
declare function TableCaption({ className, ...props }: React.ComponentProps<"caption">):
|
|
13
|
-
export { Table,
|
|
5
|
+
declare function Table({ className, containerClassName, ...props }: TableProps): React.ReactElement;
|
|
6
|
+
declare function TableHeader({ className, ...props }: React.ComponentProps<"thead">): React.ReactElement;
|
|
7
|
+
declare function TableBody({ className, ...props }: React.ComponentProps<"tbody">): React.ReactElement;
|
|
8
|
+
declare function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">): React.ReactElement;
|
|
9
|
+
declare function TableRow({ className, ...props }: React.ComponentProps<"tr">): React.ReactElement;
|
|
10
|
+
declare function TableHead({ className, ...props }: React.ComponentProps<"th">): React.ReactElement;
|
|
11
|
+
declare function TableCell({ className, ...props }: React.ComponentProps<"td">): React.ReactElement;
|
|
12
|
+
declare function TableCaption({ className, ...props }: React.ComponentProps<"caption">): React.ReactElement;
|
|
13
|
+
export { Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, };
|
|
14
14
|
//# sourceMappingURL=table.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../src/components/ui/table.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,KAAK,UAAU,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,GAAG;IAChD,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B,CAAC;AAEF,iBAAS,KAAK,CAAC,
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../src/components/ui/table.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,KAAK,UAAU,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,GAAG;IAChD,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B,CAAC;AAEF,iBAAS,KAAK,CAAC,EACb,SAAS,EACT,kBAAkB,EAClB,GAAG,KAAK,EACT,EAAE,UAAU,GAAG,KAAK,CAAC,YAAY,CAgBjC;AAED,iBAAS,WAAW,CAAC,EACnB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,YAAY,CAQpD;AAED,iBAAS,SAAS,CAAC,EACjB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,YAAY,CAQpD;AAED,iBAAS,WAAW,CAAC,EACnB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,YAAY,CAWpD;AAED,iBAAS,QAAQ,CAAC,EAChB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,YAAY,CAWjD;AAED,iBAAS,SAAS,CAAC,EACjB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,YAAY,CAWjD;AAED,iBAAS,SAAS,CAAC,EACjB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,YAAY,CAWjD;AAED,iBAAS,YAAY,CAAC,EACpB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,YAAY,CAQtD;AAED,OAAO,EACL,KAAK,EACL,SAAS,EACT,YAAY,EACZ,SAAS,EACT,WAAW,EACX,SAAS,EACT,WAAW,EACX,QAAQ,GACT,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
declare function Textarea({ className, ...props }: React.ComponentProps<"textarea">):
|
|
2
|
+
declare function Textarea({ className, ...props }: React.ComponentProps<"textarea">): React.ReactElement;
|
|
3
3
|
export { Textarea };
|
|
4
4
|
//# sourceMappingURL=textarea.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"textarea.d.ts","sourceRoot":"","sources":["../../../src/components/ui/textarea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,iBAAS,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"textarea.d.ts","sourceRoot":"","sources":["../../../src/components/ui/textarea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,iBAAS,QAAQ,CAAC,EAChB,SAAS,EACT,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,YAAY,CAWvD;AAED,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
1
|
import { Tooltip as TooltipPrimitive } from "radix-ui";
|
|
3
|
-
|
|
4
|
-
declare function
|
|
5
|
-
declare function
|
|
6
|
-
declare function
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
declare function TooltipProvider({ delayDuration, ...props }: React.ComponentProps<typeof TooltipPrimitive.Provider>): React.ReactElement;
|
|
4
|
+
declare function Tooltip({ ...props }: React.ComponentProps<typeof TooltipPrimitive.Root>): React.ReactElement;
|
|
5
|
+
declare function TooltipTrigger({ ...props }: React.ComponentProps<typeof TooltipPrimitive.Trigger>): React.ReactElement;
|
|
6
|
+
declare function TooltipContent({ className, sideOffset, children, ...props }: React.ComponentProps<typeof TooltipPrimitive.Content>): React.ReactElement;
|
|
7
7
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger };
|
|
8
8
|
//# sourceMappingURL=tooltip.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../../src/components/ui/tooltip.tsx"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../../src/components/ui/tooltip.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,UAAU,CAAC;AACvD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,iBAAS,eAAe,CAAC,EACvB,aAAiB,EACjB,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,YAAY,CAQ7E;AAED,iBAAS,OAAO,CAAC,EACf,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,GAAG,KAAK,CAAC,YAAY,CAEzE;AAED,iBAAS,cAAc,CAAC,EACtB,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,YAAY,CAE5E;AAED,iBAAS,cAAc,CAAC,EACtB,SAAS,EACT,UAAc,EACd,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,YAAY,CAiB5E;AAED,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,cAAc,EAAE,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { type ReactElement } from "react";
|
|
1
2
|
import type { UserImageProps } from "@/types/user-image";
|
|
2
|
-
declare function UserImage({ src, alt, name, email, className, fallbackClassName, }: UserImageProps):
|
|
3
|
+
declare function UserImage({ src, alt, name, email, className, fallbackClassName, }: UserImageProps): ReactElement;
|
|
3
4
|
export { UserImage };
|
|
4
5
|
//# sourceMappingURL=user-image.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user-image.d.ts","sourceRoot":"","sources":["../../src/components/user-image.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"user-image.d.ts","sourceRoot":"","sources":["../../src/components/user-image.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,YAAY,EAAY,MAAM,OAAO,CAAC;AAGpD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AA0BzD,iBAAS,SAAS,CAAC,EACjB,GAAG,EACH,GAAG,EACH,IAAI,EACJ,KAAK,EACL,SAAS,EACT,iBAAiB,GAClB,EAAE,cAAc,GAAG,YAAY,CA8B/B;AAED,OAAO,EAAE,SAAS,EAAE,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import * as React from "react";
|
|
1
2
|
import type { MultiSelectProps } from "@/types/multi-select";
|
|
2
|
-
declare function VirtualMultiSelect({ options, value, onValueChange, placeholder, disabled, name, className, triggerClassName, contentClassName, portalContainer, showChevrons, popoverTriggerProps, popoverContentProps, showSelectAll, selectAllLabel, allValue, selectedCountLabel, virtualizationOverscan, virtualizationItemHeight, showSearch, }: MultiSelectProps):
|
|
3
|
+
declare function VirtualMultiSelect({ options, value, onValueChange, placeholder, disabled, name, className, triggerClassName, contentClassName, portalContainer, showChevrons, popoverTriggerProps, popoverContentProps, showSelectAll, selectAllLabel, allValue, selectedCountLabel, virtualizationOverscan, virtualizationItemHeight, showSearch, }: MultiSelectProps): React.ReactElement;
|
|
3
4
|
export { VirtualMultiSelect };
|
|
4
5
|
//# sourceMappingURL=virtual-multi-select.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"virtual-multi-select.d.ts","sourceRoot":"","sources":["../../src/components/virtual-multi-select.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"virtual-multi-select.d.ts","sourceRoot":"","sources":["../../src/components/virtual-multi-select.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAqB/B,OAAO,KAAK,EAAqB,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AA8NhF,iBAAS,kBAAkB,CAAC,EAC1B,OAAO,EACP,KAAK,EACL,aAAa,EACb,WAA8B,EAC9B,QAAgB,EAChB,IAAI,EACJ,SAAS,EACT,gBAAgB,EAChB,gBAAgB,EAChB,eAAe,EACf,YAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,aAAoB,EACpB,cAAsB,EACtB,QAAgB,EAChB,kBAAmC,EACnC,sBAA2B,EAC3B,wBAA6B,EAC7B,UAAiB,GAClB,EAAE,gBAAgB,GAAG,KAAK,CAAC,YAAY,CA4KvC;AAED,OAAO,EAAE,kBAAkB,EAAE,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as React from "react";
|
|
1
2
|
import type { SingleSelectProps } from "@/types/single-select";
|
|
2
|
-
export declare function VirtualSingleSelect(props: SingleSelectProps):
|
|
3
|
+
export declare function VirtualSingleSelect(props: SingleSelectProps): React.ReactElement;
|
|
3
4
|
//# sourceMappingURL=virtual-single-select.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"virtual-single-select.d.ts","sourceRoot":"","sources":["../../src/components/virtual-single-select.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"virtual-single-select.d.ts","sourceRoot":"","sources":["../../src/components/virtual-single-select.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAiB/B,OAAO,KAAK,EAEV,iBAAiB,EAClB,MAAM,uBAAuB,CAAC;AAkL/B,wBAAgB,mBAAmB,CACjC,KAAK,EAAE,iBAAiB,GACvB,KAAK,CAAC,YAAY,CA+FpB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-mobile.d.ts","sourceRoot":"","sources":["../../src/hooks/use-mobile.ts"],"names":[],"mappings":"AAIA,wBAAgB,WAAW,
|
|
1
|
+
{"version":3,"file":"use-mobile.d.ts","sourceRoot":"","sources":["../../src/hooks/use-mobile.ts"],"names":[],"mappings":"AAIA,wBAAgB,WAAW,IAAI,OAAO,CAoBrC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import "./index.css";
|
|
2
|
-
export { Button } from "./components/ui/button";
|
|
3
2
|
export { AppHeader } from "./components/app-header";
|
|
4
|
-
export {
|
|
3
|
+
export { AppShell } from "./components/app-shell";
|
|
5
4
|
export { GenericDrawer } from "./components/generic-drawer";
|
|
6
5
|
export { SidebarNav } from "./components/sidebar-nav";
|
|
7
|
-
export {
|
|
8
|
-
export { SingleSelect } from "./components/single-select";
|
|
9
|
-
export { VirtualSingleSelect } from "./components/virtual-single-select";
|
|
10
|
-
export { VirtualMultiSelect } from "./components/virtual-multi-select";
|
|
6
|
+
export { Button } from "./components/ui/button";
|
|
11
7
|
export { DataTable } from "./components/ui/data-table";
|
|
12
|
-
export
|
|
8
|
+
export { UserImage } from "./components/user-image";
|
|
9
|
+
export { VirtualMultiSelect } from "./components/virtual-multi-select";
|
|
10
|
+
export { VirtualSingleSelect } from "./components/virtual-single-select";
|
|
11
|
+
export type { AppHeaderAppItem, AppHeaderAppItemEvent, AppHeaderIcon, AppHeaderLanguageOption, AppHeaderProfileAction, AppHeaderProfileActionEvent, AppHeaderProps, AppHeaderSession, DataTableColumnMeta, GenericDrawerProps, MultiSelectOption, MultiSelectProps, SidebarNavGroup, SidebarNavGroupItem, SidebarNavIcon, SidebarNavItem, SidebarNavProps, SingleSelectOption, SingleSelectProps, UserImageProps, } from "./types";
|
|
13
12
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,aAAa,CAAC;AAErB,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,aAAa,CAAC;AAErB,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAC5D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AACvD,OAAO,EAAE,SAAS,EAAE,MAAM,yBAAyB,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,YAAY,EACV,gBAAgB,EAChB,qBAAqB,EACrB,aAAa,EACb,uBAAuB,EACvB,sBAAsB,EACtB,2BAA2B,EAC3B,cAAc,EACd,gBAAgB,EAChB,mBAAmB,EACnB,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,EAChB,eAAe,EACf,mBAAmB,EACnB,cAAc,EACd,cAAc,EACd,eAAe,EACf,kBAAkB,EAClB,iBAAiB,EACjB,cAAc,GACf,MAAM,SAAS,CAAC"}
|