mobigrid-module 1.0.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/dist/components/CustomTable/CustomTable.d.ts +8 -0
- package/dist/components/CustomTable/Pagination.d.ts +8 -0
- package/dist/components/Icon.d.ts +6 -0
- package/dist/components/Layout/PageHeader.d.ts +13 -0
- package/dist/components/ui/alert.d.ts +8 -0
- package/dist/components/ui/button.d.ts +11 -0
- package/dist/components/ui/calendar.d.ts +8 -0
- package/dist/components/ui/date-picker-with-range.d.ts +7 -0
- package/dist/components/ui/dialog.d.ts +19 -0
- package/dist/components/ui/input.d.ts +3 -0
- package/dist/components/ui/pagination.d.ts +28 -0
- package/dist/components/ui/popover.d.ts +7 -0
- package/dist/components/ui/select.d.ts +13 -0
- package/dist/components/ui/sonner.d.ts +5 -0
- package/dist/components/ui/table.d.ts +10 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.esm.js +70 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.tsx +70 -0
- package/dist/index.tsx.map +1 -0
- package/dist/lib/utils.d.ts +2 -0
- package/package.json +67 -0
- package/rollup.config.js +35 -0
- package/src/components/CustomTable/CustomTable.tsx +182 -0
- package/src/components/CustomTable/Pagination.tsx +136 -0
- package/src/components/Icon.tsx +27 -0
- package/src/components/Layout/PageHeader.tsx +270 -0
- package/src/components/ui/alert.tsx +59 -0
- package/src/components/ui/button.tsx +57 -0
- package/src/components/ui/calendar.tsx +70 -0
- package/src/components/ui/date-picker-with-range.tsx +167 -0
- package/src/components/ui/dialog.tsx +120 -0
- package/src/components/ui/input.tsx +22 -0
- package/src/components/ui/pagination.tsx +117 -0
- package/src/components/ui/popover.tsx +31 -0
- package/src/components/ui/select.tsx +157 -0
- package/src/components/ui/sonner.tsx +30 -0
- package/src/components/ui/table.tsx +120 -0
- package/src/index.tsx +252 -0
- package/src/lib/utils.ts +6 -0
- package/tsconfig.json +27 -0
- package/vite.config.ts +6 -0
@@ -0,0 +1,120 @@
|
|
1
|
+
import * as React from "react"
|
2
|
+
import * as DialogPrimitive from "@radix-ui/react-dialog"
|
3
|
+
import { X } from "lucide-react"
|
4
|
+
|
5
|
+
import { cn } from "../../lib/utils"
|
6
|
+
|
7
|
+
const Dialog = DialogPrimitive.Root
|
8
|
+
|
9
|
+
const DialogTrigger = DialogPrimitive.Trigger
|
10
|
+
|
11
|
+
const DialogPortal = DialogPrimitive.Portal
|
12
|
+
|
13
|
+
const DialogClose = DialogPrimitive.Close
|
14
|
+
|
15
|
+
const DialogOverlay = React.forwardRef<
|
16
|
+
React.ElementRef<typeof DialogPrimitive.Overlay>,
|
17
|
+
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>
|
18
|
+
>(({ className, ...props }, ref) => (
|
19
|
+
<DialogPrimitive.Overlay
|
20
|
+
ref={ref}
|
21
|
+
className={cn(
|
22
|
+
"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
23
|
+
className
|
24
|
+
)}
|
25
|
+
{...props}
|
26
|
+
/>
|
27
|
+
))
|
28
|
+
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName
|
29
|
+
|
30
|
+
const DialogContent = React.forwardRef<
|
31
|
+
React.ElementRef<typeof DialogPrimitive.Content>,
|
32
|
+
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>
|
33
|
+
>(({ className, children, ...props }, ref) => (
|
34
|
+
<DialogPortal>
|
35
|
+
<DialogOverlay />
|
36
|
+
<DialogPrimitive.Content
|
37
|
+
ref={ref}
|
38
|
+
className={cn(
|
39
|
+
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
|
40
|
+
className
|
41
|
+
)}
|
42
|
+
{...props}
|
43
|
+
>
|
44
|
+
{children}
|
45
|
+
<DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground">
|
46
|
+
<X className="h-4 w-4" />
|
47
|
+
<span className="sr-only">Close</span>
|
48
|
+
</DialogPrimitive.Close>
|
49
|
+
</DialogPrimitive.Content>
|
50
|
+
</DialogPortal>
|
51
|
+
))
|
52
|
+
DialogContent.displayName = DialogPrimitive.Content.displayName
|
53
|
+
|
54
|
+
const DialogHeader = ({
|
55
|
+
className,
|
56
|
+
...props
|
57
|
+
}: React.HTMLAttributes<HTMLDivElement>) => (
|
58
|
+
<div
|
59
|
+
className={cn(
|
60
|
+
"flex flex-col space-y-1.5 text-center sm:text-left",
|
61
|
+
className
|
62
|
+
)}
|
63
|
+
{...props}
|
64
|
+
/>
|
65
|
+
)
|
66
|
+
DialogHeader.displayName = "DialogHeader"
|
67
|
+
|
68
|
+
const DialogFooter = ({
|
69
|
+
className,
|
70
|
+
...props
|
71
|
+
}: React.HTMLAttributes<HTMLDivElement>) => (
|
72
|
+
<div
|
73
|
+
className={cn(
|
74
|
+
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
75
|
+
className
|
76
|
+
)}
|
77
|
+
{...props}
|
78
|
+
/>
|
79
|
+
)
|
80
|
+
DialogFooter.displayName = "DialogFooter"
|
81
|
+
|
82
|
+
const DialogTitle = React.forwardRef<
|
83
|
+
React.ElementRef<typeof DialogPrimitive.Title>,
|
84
|
+
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>
|
85
|
+
>(({ className, ...props }, ref) => (
|
86
|
+
<DialogPrimitive.Title
|
87
|
+
ref={ref}
|
88
|
+
className={cn(
|
89
|
+
"text-lg font-semibold leading-none tracking-tight",
|
90
|
+
className
|
91
|
+
)}
|
92
|
+
{...props}
|
93
|
+
/>
|
94
|
+
))
|
95
|
+
DialogTitle.displayName = DialogPrimitive.Title.displayName
|
96
|
+
|
97
|
+
const DialogDescription = React.forwardRef<
|
98
|
+
React.ElementRef<typeof DialogPrimitive.Description>,
|
99
|
+
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description>
|
100
|
+
>(({ className, ...props }, ref) => (
|
101
|
+
<DialogPrimitive.Description
|
102
|
+
ref={ref}
|
103
|
+
className={cn("text-sm text-muted-foreground", className)}
|
104
|
+
{...props}
|
105
|
+
/>
|
106
|
+
))
|
107
|
+
DialogDescription.displayName = DialogPrimitive.Description.displayName
|
108
|
+
|
109
|
+
export {
|
110
|
+
Dialog,
|
111
|
+
DialogPortal,
|
112
|
+
DialogOverlay,
|
113
|
+
DialogTrigger,
|
114
|
+
DialogClose,
|
115
|
+
DialogContent,
|
116
|
+
DialogHeader,
|
117
|
+
DialogFooter,
|
118
|
+
DialogTitle,
|
119
|
+
DialogDescription,
|
120
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import * as React from "react"
|
2
|
+
|
3
|
+
import { cn } from "../../lib/utils"
|
4
|
+
|
5
|
+
const Input = React.forwardRef<HTMLInputElement, React.ComponentProps<"input">>(
|
6
|
+
({ className, type, ...props }, ref) => {
|
7
|
+
return (
|
8
|
+
<input
|
9
|
+
type={type}
|
10
|
+
className={cn(
|
11
|
+
"flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
|
12
|
+
className
|
13
|
+
)}
|
14
|
+
ref={ref}
|
15
|
+
{...props}
|
16
|
+
/>
|
17
|
+
)
|
18
|
+
}
|
19
|
+
)
|
20
|
+
Input.displayName = "Input"
|
21
|
+
|
22
|
+
export { Input }
|
@@ -0,0 +1,117 @@
|
|
1
|
+
import * as React from "react"
|
2
|
+
import { ChevronLeft, ChevronRight, MoreHorizontal } from "lucide-react"
|
3
|
+
|
4
|
+
import { cn } from "../../lib/utils"
|
5
|
+
import { ButtonProps, buttonVariants } from "../../components/ui/button"
|
6
|
+
|
7
|
+
const Pagination = ({ className, ...props }: React.ComponentProps<"nav">) => (
|
8
|
+
<nav
|
9
|
+
role="navigation"
|
10
|
+
aria-label="pagination"
|
11
|
+
className={cn("mx-auto flex w-full justify-center", className)}
|
12
|
+
{...props}
|
13
|
+
/>
|
14
|
+
)
|
15
|
+
Pagination.displayName = "Pagination"
|
16
|
+
|
17
|
+
const PaginationContent = React.forwardRef<
|
18
|
+
HTMLUListElement,
|
19
|
+
React.ComponentProps<"ul">
|
20
|
+
>(({ className, ...props }, ref) => (
|
21
|
+
<ul
|
22
|
+
ref={ref}
|
23
|
+
className={cn("flex flex-row items-center gap-1", className)}
|
24
|
+
{...props}
|
25
|
+
/>
|
26
|
+
))
|
27
|
+
PaginationContent.displayName = "PaginationContent"
|
28
|
+
|
29
|
+
const PaginationItem = React.forwardRef<
|
30
|
+
HTMLLIElement,
|
31
|
+
React.ComponentProps<"li">
|
32
|
+
>(({ className, ...props }, ref) => (
|
33
|
+
<li ref={ref} className={cn("", className)} {...props} />
|
34
|
+
))
|
35
|
+
PaginationItem.displayName = "PaginationItem"
|
36
|
+
|
37
|
+
type PaginationLinkProps = {
|
38
|
+
isActive?: boolean
|
39
|
+
} & Pick<ButtonProps, "size"> &
|
40
|
+
React.ComponentProps<"a">
|
41
|
+
|
42
|
+
const PaginationLink = ({
|
43
|
+
className,
|
44
|
+
isActive,
|
45
|
+
size = "icon",
|
46
|
+
...props
|
47
|
+
}: PaginationLinkProps) => (
|
48
|
+
<a
|
49
|
+
aria-current={isActive ? "page" : undefined}
|
50
|
+
className={cn(
|
51
|
+
buttonVariants({
|
52
|
+
variant: isActive ? "outline" : "ghost",
|
53
|
+
size,
|
54
|
+
}),
|
55
|
+
className
|
56
|
+
)}
|
57
|
+
{...props}
|
58
|
+
/>
|
59
|
+
)
|
60
|
+
PaginationLink.displayName = "PaginationLink"
|
61
|
+
|
62
|
+
const PaginationPrevious = ({
|
63
|
+
className,
|
64
|
+
...props
|
65
|
+
}: React.ComponentProps<typeof PaginationLink>) => (
|
66
|
+
<PaginationLink
|
67
|
+
aria-label="Go to previous page"
|
68
|
+
size="default"
|
69
|
+
className={cn("gap-1 pl-2.5", className)}
|
70
|
+
{...props}
|
71
|
+
>
|
72
|
+
<ChevronLeft className="h-4 w-4" />
|
73
|
+
<span>Previous</span>
|
74
|
+
</PaginationLink>
|
75
|
+
)
|
76
|
+
PaginationPrevious.displayName = "PaginationPrevious"
|
77
|
+
|
78
|
+
const PaginationNext = ({
|
79
|
+
className,
|
80
|
+
...props
|
81
|
+
}: React.ComponentProps<typeof PaginationLink>) => (
|
82
|
+
<PaginationLink
|
83
|
+
aria-label="Go to next page"
|
84
|
+
size="default"
|
85
|
+
className={cn("gap-1 pr-2.5", className)}
|
86
|
+
{...props}
|
87
|
+
>
|
88
|
+
<span>Next</span>
|
89
|
+
<ChevronRight className="h-4 w-4" />
|
90
|
+
</PaginationLink>
|
91
|
+
)
|
92
|
+
PaginationNext.displayName = "PaginationNext"
|
93
|
+
|
94
|
+
const PaginationEllipsis = ({
|
95
|
+
className,
|
96
|
+
...props
|
97
|
+
}: React.ComponentProps<"span">) => (
|
98
|
+
<span
|
99
|
+
aria-hidden
|
100
|
+
className={cn("flex h-9 w-9 items-center justify-center", className)}
|
101
|
+
{...props}
|
102
|
+
>
|
103
|
+
<MoreHorizontal className="h-4 w-4" />
|
104
|
+
<span className="sr-only">More pages</span>
|
105
|
+
</span>
|
106
|
+
)
|
107
|
+
PaginationEllipsis.displayName = "PaginationEllipsis"
|
108
|
+
|
109
|
+
export {
|
110
|
+
Pagination,
|
111
|
+
PaginationContent,
|
112
|
+
PaginationLink,
|
113
|
+
PaginationItem,
|
114
|
+
PaginationPrevious,
|
115
|
+
PaginationNext,
|
116
|
+
PaginationEllipsis,
|
117
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import * as React from "react"
|
2
|
+
import * as PopoverPrimitive from "@radix-ui/react-popover"
|
3
|
+
|
4
|
+
import { cn } from "../../lib/utils"
|
5
|
+
|
6
|
+
const Popover = PopoverPrimitive.Root
|
7
|
+
|
8
|
+
const PopoverTrigger = PopoverPrimitive.Trigger
|
9
|
+
|
10
|
+
const PopoverAnchor = PopoverPrimitive.Anchor
|
11
|
+
|
12
|
+
const PopoverContent = React.forwardRef<
|
13
|
+
React.ElementRef<typeof PopoverPrimitive.Content>,
|
14
|
+
React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>
|
15
|
+
>(({ className, align = "center", sideOffset = 4, ...props }, ref) => (
|
16
|
+
<PopoverPrimitive.Portal>
|
17
|
+
<PopoverPrimitive.Content
|
18
|
+
ref={ref}
|
19
|
+
align={align}
|
20
|
+
sideOffset={sideOffset}
|
21
|
+
className={cn(
|
22
|
+
"z-50 w-72 rounded-md border bg-popover p-4 text-popover-foreground shadow-md outline-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
23
|
+
className
|
24
|
+
)}
|
25
|
+
{...props}
|
26
|
+
/>
|
27
|
+
</PopoverPrimitive.Portal>
|
28
|
+
))
|
29
|
+
PopoverContent.displayName = PopoverPrimitive.Content.displayName
|
30
|
+
|
31
|
+
export { Popover, PopoverTrigger, PopoverContent, PopoverAnchor }
|
@@ -0,0 +1,157 @@
|
|
1
|
+
import * as React from "react"
|
2
|
+
import * as SelectPrimitive from "@radix-ui/react-select"
|
3
|
+
import { Check, ChevronDown, ChevronUp } from "lucide-react"
|
4
|
+
|
5
|
+
import { cn } from "../../lib/utils"
|
6
|
+
|
7
|
+
const Select = SelectPrimitive.Root
|
8
|
+
|
9
|
+
const SelectGroup = SelectPrimitive.Group
|
10
|
+
|
11
|
+
const SelectValue = SelectPrimitive.Value
|
12
|
+
|
13
|
+
const SelectTrigger = React.forwardRef<
|
14
|
+
React.ElementRef<typeof SelectPrimitive.Trigger>,
|
15
|
+
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger>
|
16
|
+
>(({ className, children, ...props }, ref) => (
|
17
|
+
<SelectPrimitive.Trigger
|
18
|
+
ref={ref}
|
19
|
+
className={cn(
|
20
|
+
"flex h-9 w-full items-center justify-between whitespace-nowrap rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm ring-offset-background placeholder:text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",
|
21
|
+
className
|
22
|
+
)}
|
23
|
+
{...props}
|
24
|
+
>
|
25
|
+
{children}
|
26
|
+
<SelectPrimitive.Icon asChild>
|
27
|
+
<ChevronDown className="h-4 w-4 opacity-50" />
|
28
|
+
</SelectPrimitive.Icon>
|
29
|
+
</SelectPrimitive.Trigger>
|
30
|
+
))
|
31
|
+
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName
|
32
|
+
|
33
|
+
const SelectScrollUpButton = React.forwardRef<
|
34
|
+
React.ElementRef<typeof SelectPrimitive.ScrollUpButton>,
|
35
|
+
React.ComponentPropsWithoutRef<typeof SelectPrimitive.ScrollUpButton>
|
36
|
+
>(({ className, ...props }, ref) => (
|
37
|
+
<SelectPrimitive.ScrollUpButton
|
38
|
+
ref={ref}
|
39
|
+
className={cn(
|
40
|
+
"flex cursor-default items-center justify-center py-1",
|
41
|
+
className
|
42
|
+
)}
|
43
|
+
{...props}
|
44
|
+
>
|
45
|
+
<ChevronUp className="h-4 w-4" />
|
46
|
+
</SelectPrimitive.ScrollUpButton>
|
47
|
+
))
|
48
|
+
SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName
|
49
|
+
|
50
|
+
const SelectScrollDownButton = React.forwardRef<
|
51
|
+
React.ElementRef<typeof SelectPrimitive.ScrollDownButton>,
|
52
|
+
React.ComponentPropsWithoutRef<typeof SelectPrimitive.ScrollDownButton>
|
53
|
+
>(({ className, ...props }, ref) => (
|
54
|
+
<SelectPrimitive.ScrollDownButton
|
55
|
+
ref={ref}
|
56
|
+
className={cn(
|
57
|
+
"flex cursor-default items-center justify-center py-1",
|
58
|
+
className
|
59
|
+
)}
|
60
|
+
{...props}
|
61
|
+
>
|
62
|
+
<ChevronDown className="h-4 w-4" />
|
63
|
+
</SelectPrimitive.ScrollDownButton>
|
64
|
+
))
|
65
|
+
SelectScrollDownButton.displayName =
|
66
|
+
SelectPrimitive.ScrollDownButton.displayName
|
67
|
+
|
68
|
+
const SelectContent = React.forwardRef<
|
69
|
+
React.ElementRef<typeof SelectPrimitive.Content>,
|
70
|
+
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Content>
|
71
|
+
>(({ className, children, position = "popper", ...props }, ref) => (
|
72
|
+
<SelectPrimitive.Portal>
|
73
|
+
<SelectPrimitive.Content
|
74
|
+
ref={ref}
|
75
|
+
className={cn(
|
76
|
+
"relative z-50 max-h-96 min-w-[8rem] overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
77
|
+
position === "popper" &&
|
78
|
+
"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
|
79
|
+
className
|
80
|
+
)}
|
81
|
+
position={position}
|
82
|
+
{...props}
|
83
|
+
>
|
84
|
+
<SelectScrollUpButton />
|
85
|
+
<SelectPrimitive.Viewport
|
86
|
+
className={cn(
|
87
|
+
"p-1",
|
88
|
+
position === "popper" &&
|
89
|
+
"h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"
|
90
|
+
)}
|
91
|
+
>
|
92
|
+
{children}
|
93
|
+
</SelectPrimitive.Viewport>
|
94
|
+
<SelectScrollDownButton />
|
95
|
+
</SelectPrimitive.Content>
|
96
|
+
</SelectPrimitive.Portal>
|
97
|
+
))
|
98
|
+
SelectContent.displayName = SelectPrimitive.Content.displayName
|
99
|
+
|
100
|
+
const SelectLabel = React.forwardRef<
|
101
|
+
React.ElementRef<typeof SelectPrimitive.Label>,
|
102
|
+
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Label>
|
103
|
+
>(({ className, ...props }, ref) => (
|
104
|
+
<SelectPrimitive.Label
|
105
|
+
ref={ref}
|
106
|
+
className={cn("px-2 py-1.5 text-sm font-semibold", className)}
|
107
|
+
{...props}
|
108
|
+
/>
|
109
|
+
))
|
110
|
+
SelectLabel.displayName = SelectPrimitive.Label.displayName
|
111
|
+
|
112
|
+
const SelectItem = React.forwardRef<
|
113
|
+
React.ElementRef<typeof SelectPrimitive.Item>,
|
114
|
+
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Item>
|
115
|
+
>(({ className, children, ...props }, ref) => (
|
116
|
+
<SelectPrimitive.Item
|
117
|
+
ref={ref}
|
118
|
+
className={cn(
|
119
|
+
"relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-2 pr-8 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
120
|
+
className
|
121
|
+
)}
|
122
|
+
{...props}
|
123
|
+
>
|
124
|
+
<span className="absolute right-2 flex h-3.5 w-3.5 items-center justify-center">
|
125
|
+
<SelectPrimitive.ItemIndicator>
|
126
|
+
<Check className="h-4 w-4" />
|
127
|
+
</SelectPrimitive.ItemIndicator>
|
128
|
+
</span>
|
129
|
+
<SelectPrimitive.ItemText>{children}</SelectPrimitive.ItemText>
|
130
|
+
</SelectPrimitive.Item>
|
131
|
+
))
|
132
|
+
SelectItem.displayName = SelectPrimitive.Item.displayName
|
133
|
+
|
134
|
+
const SelectSeparator = React.forwardRef<
|
135
|
+
React.ElementRef<typeof SelectPrimitive.Separator>,
|
136
|
+
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Separator>
|
137
|
+
>(({ className, ...props }, ref) => (
|
138
|
+
<SelectPrimitive.Separator
|
139
|
+
ref={ref}
|
140
|
+
className={cn("-mx-1 my-1 h-px bg-muted", className)}
|
141
|
+
{...props}
|
142
|
+
/>
|
143
|
+
))
|
144
|
+
SelectSeparator.displayName = SelectPrimitive.Separator.displayName
|
145
|
+
|
146
|
+
export {
|
147
|
+
Select,
|
148
|
+
SelectGroup,
|
149
|
+
SelectValue,
|
150
|
+
SelectTrigger,
|
151
|
+
SelectContent,
|
152
|
+
SelectLabel,
|
153
|
+
SelectItem,
|
154
|
+
SelectSeparator,
|
155
|
+
SelectScrollUpButton,
|
156
|
+
SelectScrollDownButton,
|
157
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
import React from "react"
|
2
|
+
import { useTheme } from "next-themes"
|
3
|
+
import { Toaster as Sonner } from "sonner"
|
4
|
+
|
5
|
+
type ToasterProps = React.ComponentProps<typeof Sonner>
|
6
|
+
|
7
|
+
const Toaster = ({ ...props }: ToasterProps) => {
|
8
|
+
const { theme = "system" } = useTheme()
|
9
|
+
|
10
|
+
return (
|
11
|
+
<Sonner
|
12
|
+
theme={theme as ToasterProps["theme"]}
|
13
|
+
className="toaster group"
|
14
|
+
toastOptions={{
|
15
|
+
classNames: {
|
16
|
+
toast:
|
17
|
+
"group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg",
|
18
|
+
description: "group-[.toast]:text-muted-foreground",
|
19
|
+
actionButton:
|
20
|
+
"group-[.toast]:bg-primary group-[.toast]:text-primary-foreground",
|
21
|
+
cancelButton:
|
22
|
+
"group-[.toast]:bg-muted group-[.toast]:text-muted-foreground",
|
23
|
+
},
|
24
|
+
}}
|
25
|
+
{...props}
|
26
|
+
/>
|
27
|
+
)
|
28
|
+
}
|
29
|
+
|
30
|
+
export { Toaster }
|
@@ -0,0 +1,120 @@
|
|
1
|
+
import * as React from "react"
|
2
|
+
|
3
|
+
import { cn } from "../../lib/utils"
|
4
|
+
|
5
|
+
const Table = React.forwardRef<
|
6
|
+
HTMLTableElement,
|
7
|
+
React.HTMLAttributes<HTMLTableElement>
|
8
|
+
>(({ className, ...props }, ref) => (
|
9
|
+
<div className="relative w-full overflow-auto">
|
10
|
+
<table
|
11
|
+
ref={ref}
|
12
|
+
className={cn("w-full caption-bottom text-sm", className)}
|
13
|
+
{...props}
|
14
|
+
/>
|
15
|
+
</div>
|
16
|
+
))
|
17
|
+
Table.displayName = "Table"
|
18
|
+
|
19
|
+
const TableHeader = React.forwardRef<
|
20
|
+
HTMLTableSectionElement,
|
21
|
+
React.HTMLAttributes<HTMLTableSectionElement>
|
22
|
+
>(({ className, ...props }, ref) => (
|
23
|
+
<thead ref={ref} className={cn("[&_tr]:border-b", className)} {...props} />
|
24
|
+
))
|
25
|
+
TableHeader.displayName = "TableHeader"
|
26
|
+
|
27
|
+
const TableBody = React.forwardRef<
|
28
|
+
HTMLTableSectionElement,
|
29
|
+
React.HTMLAttributes<HTMLTableSectionElement>
|
30
|
+
>(({ className, ...props }, ref) => (
|
31
|
+
<tbody
|
32
|
+
ref={ref}
|
33
|
+
className={cn("[&_tr:last-child]:border-0", className)}
|
34
|
+
{...props}
|
35
|
+
/>
|
36
|
+
))
|
37
|
+
TableBody.displayName = "TableBody"
|
38
|
+
|
39
|
+
const TableFooter = React.forwardRef<
|
40
|
+
HTMLTableSectionElement,
|
41
|
+
React.HTMLAttributes<HTMLTableSectionElement>
|
42
|
+
>(({ className, ...props }, ref) => (
|
43
|
+
<tfoot
|
44
|
+
ref={ref}
|
45
|
+
className={cn(
|
46
|
+
"border-t bg-muted/50 font-medium [&>tr]:last:border-b-0",
|
47
|
+
className
|
48
|
+
)}
|
49
|
+
{...props}
|
50
|
+
/>
|
51
|
+
))
|
52
|
+
TableFooter.displayName = "TableFooter"
|
53
|
+
|
54
|
+
const TableRow = React.forwardRef<
|
55
|
+
HTMLTableRowElement,
|
56
|
+
React.HTMLAttributes<HTMLTableRowElement>
|
57
|
+
>(({ className, ...props }, ref) => (
|
58
|
+
<tr
|
59
|
+
ref={ref}
|
60
|
+
className={cn(
|
61
|
+
"border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",
|
62
|
+
className
|
63
|
+
)}
|
64
|
+
{...props}
|
65
|
+
/>
|
66
|
+
))
|
67
|
+
TableRow.displayName = "TableRow"
|
68
|
+
|
69
|
+
const TableHead = React.forwardRef<
|
70
|
+
HTMLTableCellElement,
|
71
|
+
React.ThHTMLAttributes<HTMLTableCellElement>
|
72
|
+
>(({ className, ...props }, ref) => (
|
73
|
+
<th
|
74
|
+
ref={ref}
|
75
|
+
className={cn(
|
76
|
+
"h-10 px-2 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
|
77
|
+
className
|
78
|
+
)}
|
79
|
+
{...props}
|
80
|
+
/>
|
81
|
+
))
|
82
|
+
TableHead.displayName = "TableHead"
|
83
|
+
|
84
|
+
const TableCell = React.forwardRef<
|
85
|
+
HTMLTableCellElement,
|
86
|
+
React.TdHTMLAttributes<HTMLTableCellElement>
|
87
|
+
>(({ className, ...props }, ref) => (
|
88
|
+
<td
|
89
|
+
ref={ref}
|
90
|
+
className={cn(
|
91
|
+
"p-2 align-middle [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
|
92
|
+
className
|
93
|
+
)}
|
94
|
+
{...props}
|
95
|
+
/>
|
96
|
+
))
|
97
|
+
TableCell.displayName = "TableCell"
|
98
|
+
|
99
|
+
const TableCaption = React.forwardRef<
|
100
|
+
HTMLTableCaptionElement,
|
101
|
+
React.HTMLAttributes<HTMLTableCaptionElement>
|
102
|
+
>(({ className, ...props }, ref) => (
|
103
|
+
<caption
|
104
|
+
ref={ref}
|
105
|
+
className={cn("mt-4 text-sm text-muted-foreground", className)}
|
106
|
+
{...props}
|
107
|
+
/>
|
108
|
+
))
|
109
|
+
TableCaption.displayName = "TableCaption"
|
110
|
+
|
111
|
+
export {
|
112
|
+
Table,
|
113
|
+
TableHeader,
|
114
|
+
TableBody,
|
115
|
+
TableFooter,
|
116
|
+
TableHead,
|
117
|
+
TableRow,
|
118
|
+
TableCell,
|
119
|
+
TableCaption,
|
120
|
+
}
|