create-tauri-ui 0.2.1 → 0.3.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/README.md +19 -10
- package/dist/index.mjs +26 -26
- package/package.json +55 -54
- package/templates/.shared/app-icon.png +0 -0
- package/templates/.shared/src-tauri/Cargo.lock +3832 -3701
- package/templates/.shared/src-tauri/Cargo.toml +4 -1
- package/templates/.shared/src-tauri/src/main.rs +3 -0
- package/templates/.shared/src-tauri/tauri.conf.json +1 -9
- package/templates/next/components.json +1 -1
- package/templates/next/package.json +87 -83
- package/templates/next/pnpm-lock.yaml +608 -566
- package/templates/next/src/app/examples/cards/components/date-picker.tsx +3 -1
- package/templates/next/src/app/examples/cards/components/github-card.tsx +2 -0
- package/templates/next/src/app/examples/cards/components/notifications.tsx +2 -0
- package/templates/next/src/app/examples/cards/components/payment-method.tsx +3 -1
- package/templates/next/src/app/examples/cards/components/team-members.tsx +3 -5
- package/templates/next/src/app/examples/forms/page.tsx +1 -1
- package/templates/next/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
- package/templates/next/src/components/about-dialog.tsx +111 -0
- package/templates/next/src/components/icons.tsx +156 -154
- package/templates/next/src/components/menu-mode-toggle.tsx +47 -46
- package/templates/next/src/components/menu.tsx +178 -214
- package/templates/next/src/components/page-header.tsx +2 -0
- package/templates/next/src/components/ui/accordion.tsx +60 -60
- package/templates/next/src/components/ui/alert-dialog.tsx +145 -145
- package/templates/next/src/components/ui/alert.tsx +59 -59
- package/templates/next/src/components/ui/aspect-ratio.tsx +7 -7
- package/templates/next/src/components/ui/avatar.tsx +50 -50
- package/templates/next/src/components/ui/badge.tsx +36 -36
- package/templates/next/src/components/ui/button.tsx +56 -56
- package/templates/next/src/components/ui/calendar.tsx +64 -64
- package/templates/next/src/components/ui/card.tsx +79 -79
- package/templates/next/src/components/ui/checkbox.tsx +30 -30
- package/templates/next/src/components/ui/collapsible.tsx +11 -11
- package/templates/next/src/components/ui/command.tsx +155 -155
- package/templates/next/src/components/ui/context-menu.tsx +200 -200
- package/templates/next/src/components/ui/dialog.tsx +123 -123
- package/templates/next/src/components/ui/dropdown-menu.tsx +200 -200
- package/templates/next/src/components/ui/form.tsx +176 -176
- package/templates/next/src/components/ui/hover-card.tsx +29 -29
- package/templates/next/src/components/ui/input.tsx +25 -25
- package/templates/next/src/components/ui/label.tsx +26 -26
- package/templates/next/src/components/ui/menubar.tsx +236 -236
- package/templates/next/src/components/ui/navigation-menu.tsx +128 -128
- package/templates/next/src/components/ui/popover.tsx +31 -31
- package/templates/next/src/components/ui/progress.tsx +28 -28
- package/templates/next/src/components/ui/radio-group.tsx +44 -44
- package/templates/next/src/components/ui/scroll-area.tsx +48 -48
- package/templates/next/src/components/ui/select.tsx +121 -121
- package/templates/next/src/components/ui/separator.tsx +31 -31
- package/templates/next/src/components/ui/sheet.tsx +144 -144
- package/templates/next/src/components/ui/skeleton.tsx +15 -15
- package/templates/next/src/components/ui/slider.tsx +28 -28
- package/templates/next/src/components/ui/switch.tsx +29 -29
- package/templates/next/src/components/ui/table.tsx +114 -114
- package/templates/next/src/components/ui/tabs.tsx +55 -55
- package/templates/next/src/components/ui/textarea.tsx +24 -24
- package/templates/next/src/components/ui/toast.tsx +127 -127
- package/templates/next/src/components/ui/toaster.tsx +35 -35
- package/templates/next/src/components/ui/toggle.tsx +45 -45
- package/templates/next/src/components/ui/tooltip.tsx +30 -30
- package/templates/next/src/components/ui/use-toast.ts +192 -192
- package/templates/next/src/styles/globals.css +5 -3
- package/templates/next/src-tauri/Cargo.lock +270 -139
- package/templates/next/src-tauri/Cargo.toml +39 -36
- package/templates/next/src-tauri/src/main.rs +22 -19
- package/templates/next/src-tauri/tauri.conf.json +1 -9
- package/templates/sveltekit/.github/workflows/release.yml +108 -108
- package/templates/sveltekit/package.json +85 -84
- package/templates/sveltekit/pnpm-lock.yaml +1543 -2703
- package/templates/sveltekit/src/app.html +1 -1
- package/templates/sveltekit/src/routes/+layout.svelte +4 -3
- package/templates/sveltekit/src-tauri/Cargo.lock +3832 -3701
- package/templates/sveltekit/src-tauri/Cargo.toml +39 -36
- package/templates/sveltekit/src-tauri/src/main.rs +8 -2
- package/templates/sveltekit/src-tauri/tauri.conf.json +71 -79
- package/templates/sveltekit/static/favicon.ico +0 -0
- package/templates/sveltekit/vite.config.js +10 -6
- package/templates/vite/index.html +1 -1
- package/templates/vite/package.json +83 -76
- package/templates/vite/pnpm-lock.yaml +5178 -5110
- package/templates/vite/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
- package/templates/vite/src/components/about-dialog.tsx +101 -0
- package/templates/vite/src/components/icons.tsx +2 -2
- package/templates/vite/src/components/menu-mode-toggle.tsx +4 -3
- package/templates/vite/src/components/menu.tsx +177 -197
- package/templates/vite/src/components/ui/accordion.tsx +1 -3
- package/templates/vite/src/components/ui/alert-dialog.tsx +3 -10
- package/templates/vite/src/components/ui/alert.tsx +3 -5
- package/templates/vite/src/components/ui/aspect-ratio.tsx +0 -2
- package/templates/vite/src/components/ui/avatar.tsx +0 -2
- package/templates/vite/src/components/ui/badge.tsx +5 -5
- package/templates/vite/src/components/ui/button.tsx +15 -10
- package/templates/vite/src/components/ui/calendar.tsx +0 -2
- package/templates/vite/src/components/ui/card.tsx +1 -3
- package/templates/vite/src/components/ui/checkbox.tsx +2 -4
- package/templates/vite/src/components/ui/collapsible.tsx +0 -2
- package/templates/vite/src/components/ui/command.tsx +2 -4
- package/templates/vite/src/components/ui/context-menu.tsx +6 -8
- package/templates/vite/src/components/ui/dialog.tsx +4 -11
- package/templates/vite/src/components/ui/dropdown-menu.tsx +6 -8
- package/templates/vite/src/components/ui/form.tsx +176 -0
- package/templates/vite/src/components/ui/hover-card.tsx +1 -3
- package/templates/vite/src/components/ui/input.tsx +1 -3
- package/templates/vite/src/components/ui/label.tsx +1 -3
- package/templates/vite/src/components/ui/menubar.tsx +7 -9
- package/templates/vite/src/components/ui/navigation-menu.tsx +2 -4
- package/templates/vite/src/components/ui/popover.tsx +1 -3
- package/templates/vite/src/components/ui/progress.tsx +0 -2
- package/templates/vite/src/components/ui/radio-group.tsx +2 -4
- package/templates/vite/src/components/ui/scroll-area.tsx +0 -2
- package/templates/vite/src/components/ui/select.tsx +4 -5
- package/templates/vite/src/components/ui/separator.tsx +0 -2
- package/templates/vite/src/components/ui/sheet.tsx +22 -110
- package/templates/vite/src/components/ui/skeleton.tsx +0 -2
- package/templates/vite/src/components/ui/slider.tsx +0 -2
- package/templates/vite/src/components/ui/switch.tsx +1 -3
- package/templates/vite/src/components/ui/table.tsx +1 -1
- package/templates/vite/src/components/ui/tabs.tsx +1 -3
- package/templates/vite/src/components/ui/textarea.tsx +1 -3
- package/templates/vite/src/components/ui/toast.tsx +6 -8
- package/templates/vite/src/components/ui/toaster.tsx +0 -2
- package/templates/vite/src/components/ui/toggle.tsx +3 -5
- package/templates/vite/src/components/ui/tooltip.tsx +1 -3
- package/templates/vite/src/components/ui/use-toast.ts +5 -4
- package/templates/vite/src/styles/globals.css +5 -3
- package/templates/vite/src-tauri/Cargo.lock +3832 -3701
- package/templates/vite/src-tauri/Cargo.toml +39 -36
- package/templates/vite/src-tauri/src/main.rs +8 -2
- package/templates/vite/src-tauri/tauri.conf.json +1 -9
- package/templates/vite/vite.config.ts +2 -2
- package/templates/next/src/assets/Inter.var.woff2 +0 -0
- package/templates/vite/src/assets/Inter.var.woff2 +0 -0
- package/templates/viteuno/.github/workflows/release.yml +0 -108
- package/templates/viteuno/.vscode/extensions.json +0 -3
- package/templates/viteuno/README.md +0 -1
- package/templates/viteuno/app-icon.png +0 -0
- package/templates/viteuno/components.json +0 -16
- package/templates/viteuno/index.html +0 -16
- package/templates/viteuno/package.json +0 -73
- package/templates/viteuno/pnpm-lock.yaml +0 -5298
- package/templates/viteuno/preset.shadcn.ts +0 -160
- package/templates/viteuno/prettier.config.cjs +0 -34
- package/templates/viteuno/public/avatars/01.png +0 -0
- package/templates/viteuno/public/avatars/02.png +0 -0
- package/templates/viteuno/public/avatars/03.png +0 -0
- package/templates/viteuno/public/avatars/04.png +0 -0
- package/templates/viteuno/public/avatars/05.png +0 -0
- package/templates/viteuno/src/App.tsx +0 -39
- package/templates/viteuno/src/assets/Inter.var.woff2 +0 -0
- package/templates/viteuno/src/components/icons.tsx +0 -154
- package/templates/viteuno/src/components/menu-mode-toggle.tsx +0 -46
- package/templates/viteuno/src/components/menu.tsx +0 -232
- package/templates/viteuno/src/components/tailwind-indicator.tsx +0 -18
- package/templates/viteuno/src/components/theme-provider.tsx +0 -9
- package/templates/viteuno/src/components/ui/accordion.tsx +0 -60
- package/templates/viteuno/src/components/ui/alert-dialog.tsx +0 -150
- package/templates/viteuno/src/components/ui/alert.tsx +0 -61
- package/templates/viteuno/src/components/ui/aspect-ratio.tsx +0 -7
- package/templates/viteuno/src/components/ui/avatar.tsx +0 -50
- package/templates/viteuno/src/components/ui/badge.tsx +0 -36
- package/templates/viteuno/src/components/ui/button.tsx +0 -51
- package/templates/viteuno/src/components/ui/calendar.tsx +0 -64
- package/templates/viteuno/src/components/ui/card.tsx +0 -81
- package/templates/viteuno/src/components/ui/checkbox.tsx +0 -30
- package/templates/viteuno/src/components/ui/collapsible.tsx +0 -11
- package/templates/viteuno/src/components/ui/command.tsx +0 -155
- package/templates/viteuno/src/components/ui/context-menu.tsx +0 -200
- package/templates/viteuno/src/components/ui/dialog.tsx +0 -128
- package/templates/viteuno/src/components/ui/dropdown-menu.tsx +0 -200
- package/templates/viteuno/src/components/ui/hover-card.tsx +0 -29
- package/templates/viteuno/src/components/ui/index.ts +0 -0
- package/templates/viteuno/src/components/ui/input.tsx +0 -27
- package/templates/viteuno/src/components/ui/label.tsx +0 -26
- package/templates/viteuno/src/components/ui/menubar.tsx +0 -236
- package/templates/viteuno/src/components/ui/navigation-menu.tsx +0 -130
- package/templates/viteuno/src/components/ui/popover.tsx +0 -31
- package/templates/viteuno/src/components/ui/progress.tsx +0 -28
- package/templates/viteuno/src/components/ui/radio-group.tsx +0 -44
- package/templates/viteuno/src/components/ui/scroll-area.tsx +0 -48
- package/templates/viteuno/src/components/ui/select.tsx +0 -120
- package/templates/viteuno/src/components/ui/separator.tsx +0 -31
- package/templates/viteuno/src/components/ui/sheet.tsx +0 -230
- package/templates/viteuno/src/components/ui/skeleton.tsx +0 -17
- package/templates/viteuno/src/components/ui/slider.tsx +0 -28
- package/templates/viteuno/src/components/ui/switch.tsx +0 -29
- package/templates/viteuno/src/components/ui/table.tsx +0 -114
- package/templates/viteuno/src/components/ui/tabs.tsx +0 -55
- package/templates/viteuno/src/components/ui/textarea.tsx +0 -26
- package/templates/viteuno/src/components/ui/toast.tsx +0 -129
- package/templates/viteuno/src/components/ui/toaster.tsx +0 -35
- package/templates/viteuno/src/components/ui/toggle.tsx +0 -45
- package/templates/viteuno/src/components/ui/tooltip.tsx +0 -30
- package/templates/viteuno/src/components/ui/use-toast.ts +0 -191
- package/templates/viteuno/src/dashboard/components/date-range-picker.tsx +0 -66
- package/templates/viteuno/src/dashboard/components/main-nav.tsx +0 -38
- package/templates/viteuno/src/dashboard/components/overview.tsx +0 -78
- package/templates/viteuno/src/dashboard/components/recent-sales.tsx +0 -67
- package/templates/viteuno/src/dashboard/components/search.tsx +0 -13
- package/templates/viteuno/src/dashboard/components/team-switcher.tsx +0 -205
- package/templates/viteuno/src/dashboard/components/user-nav.tsx +0 -67
- package/templates/viteuno/src/dashboard/page.tsx +0 -140
- package/templates/viteuno/src/lib/utils.ts +0 -19
- package/templates/viteuno/src/main.tsx +0 -14
- package/templates/viteuno/src/styles/globals.css +0 -4
- package/templates/viteuno/src/vite-env.d.ts +0 -1
- package/templates/viteuno/src-tauri/Cargo.lock +0 -3701
- package/templates/viteuno/src-tauri/Cargo.toml +0 -36
- package/templates/viteuno/src-tauri/build.rs +0 -3
- package/templates/viteuno/src-tauri/icons/128x128.png +0 -0
- package/templates/viteuno/src-tauri/icons/128x128@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/32x32.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square107x107Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square142x142Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square150x150Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square284x284Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square30x30Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square310x310Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square44x44Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square71x71Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square89x89Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/StoreLogo.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/icon.icns +0 -0
- package/templates/viteuno/src-tauri/icons/icon.ico +0 -0
- package/templates/viteuno/src-tauri/icons/icon.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
- package/templates/viteuno/src-tauri/src/main.rs +0 -16
- package/templates/viteuno/src-tauri/tauri.conf.json +0 -79
- package/templates/viteuno/tsconfig.json +0 -26
- package/templates/viteuno/tsconfig.node.json +0 -9
- package/templates/viteuno/uno.config.ts +0 -111
- package/templates/viteuno/vite.config.ts +0 -33
- /package/templates/next/src/app/examples/forms/{profile-form.tsx → components/profile-form.tsx} +0 -0
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
"use client"
|
|
2
|
-
|
|
3
|
-
import * as React from "react"
|
|
4
|
-
import { ChevronLeft, ChevronRight } from "lucide-react"
|
|
5
|
-
import { DayPicker } from "react-day-picker"
|
|
6
|
-
|
|
7
|
-
import { cn } from "@/lib/utils"
|
|
8
|
-
import { buttonVariants } from "@/components/ui/button"
|
|
9
|
-
|
|
10
|
-
export type CalendarProps = React.ComponentProps<typeof DayPicker>
|
|
11
|
-
|
|
12
|
-
function Calendar({
|
|
13
|
-
className,
|
|
14
|
-
classNames,
|
|
15
|
-
showOutsideDays = true,
|
|
16
|
-
...props
|
|
17
|
-
}: CalendarProps) {
|
|
18
|
-
return (
|
|
19
|
-
<DayPicker
|
|
20
|
-
showOutsideDays={showOutsideDays}
|
|
21
|
-
className={cn("p-3", className)}
|
|
22
|
-
classNames={{
|
|
23
|
-
months: "flex flex-col sm:flex-row space-y-4 sm:space-x-4 sm:space-y-0",
|
|
24
|
-
month: "space-y-4",
|
|
25
|
-
caption: "flex justify-center pt-1 relative items-center",
|
|
26
|
-
caption_label: "text-sm font-medium",
|
|
27
|
-
nav: "space-x-1 flex items-center",
|
|
28
|
-
nav_button: cn(
|
|
29
|
-
buttonVariants({ variant: "outline" }),
|
|
30
|
-
"h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100"
|
|
31
|
-
),
|
|
32
|
-
nav_button_previous: "absolute left-1",
|
|
33
|
-
nav_button_next: "absolute right-1",
|
|
34
|
-
table: "w-full border-collapse space-y-1",
|
|
35
|
-
head_row: "flex",
|
|
36
|
-
head_cell:
|
|
37
|
-
"text-muted-foreground rounded-md w-9 font-normal text-[0.8rem]",
|
|
38
|
-
row: "flex w-full mt-2",
|
|
39
|
-
cell: "text-center text-sm p-0 relative [&:has([aria-selected])]:bg-accent first:[&:has([aria-selected])]:rounded-l-md last:[&:has([aria-selected])]:rounded-r-md focus-within:relative focus-within:z-20",
|
|
40
|
-
day: cn(
|
|
41
|
-
buttonVariants({ variant: "ghost" }),
|
|
42
|
-
"h-9 w-9 p-0 font-normal aria-selected:opacity-100"
|
|
43
|
-
),
|
|
44
|
-
day_selected:
|
|
45
|
-
"bg-primary text-primary-foreground hover:bg-primary hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground",
|
|
46
|
-
day_today: "bg-accent text-accent-foreground",
|
|
47
|
-
day_outside: "text-muted-foreground opacity-50",
|
|
48
|
-
day_disabled: "text-muted-foreground opacity-50",
|
|
49
|
-
day_range_middle:
|
|
50
|
-
"aria-selected:bg-accent aria-selected:text-accent-foreground",
|
|
51
|
-
day_hidden: "invisible",
|
|
52
|
-
...classNames,
|
|
53
|
-
}}
|
|
54
|
-
components={{
|
|
55
|
-
IconLeft: ({ ...props }) => <ChevronLeft className="h-4 w-4" />,
|
|
56
|
-
IconRight: ({ ...props }) => <ChevronRight className="h-4 w-4" />,
|
|
57
|
-
}}
|
|
58
|
-
{...props}
|
|
59
|
-
/>
|
|
60
|
-
)
|
|
61
|
-
}
|
|
62
|
-
Calendar.displayName = "Calendar"
|
|
63
|
-
|
|
64
|
-
export { Calendar }
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
"use client"
|
|
2
|
-
|
|
3
|
-
import * as React from "react"
|
|
4
|
-
|
|
5
|
-
import { cn } from "@/lib/utils"
|
|
6
|
-
|
|
7
|
-
const Card = React.forwardRef<
|
|
8
|
-
HTMLDivElement,
|
|
9
|
-
React.HTMLAttributes<HTMLDivElement>
|
|
10
|
-
>(({ className, ...props }, ref) => (
|
|
11
|
-
<div
|
|
12
|
-
ref={ref}
|
|
13
|
-
className={cn(
|
|
14
|
-
"rounded-lg border bg-card text-card-foreground shadow-sm",
|
|
15
|
-
className
|
|
16
|
-
)}
|
|
17
|
-
{...props}
|
|
18
|
-
/>
|
|
19
|
-
))
|
|
20
|
-
Card.displayName = "Card"
|
|
21
|
-
|
|
22
|
-
const CardHeader = React.forwardRef<
|
|
23
|
-
HTMLDivElement,
|
|
24
|
-
React.HTMLAttributes<HTMLDivElement>
|
|
25
|
-
>(({ className, ...props }, ref) => (
|
|
26
|
-
<div
|
|
27
|
-
ref={ref}
|
|
28
|
-
className={cn("flex flex-col space-y-1.5 p-6", className)}
|
|
29
|
-
{...props}
|
|
30
|
-
/>
|
|
31
|
-
))
|
|
32
|
-
CardHeader.displayName = "CardHeader"
|
|
33
|
-
|
|
34
|
-
const CardTitle = React.forwardRef<
|
|
35
|
-
HTMLParagraphElement,
|
|
36
|
-
React.HTMLAttributes<HTMLHeadingElement>
|
|
37
|
-
>(({ className, ...props }, ref) => (
|
|
38
|
-
<h3
|
|
39
|
-
ref={ref}
|
|
40
|
-
className={cn(
|
|
41
|
-
"text-lg font-semibold leading-none tracking-tight",
|
|
42
|
-
className
|
|
43
|
-
)}
|
|
44
|
-
{...props}
|
|
45
|
-
/>
|
|
46
|
-
))
|
|
47
|
-
CardTitle.displayName = "CardTitle"
|
|
48
|
-
|
|
49
|
-
const CardDescription = React.forwardRef<
|
|
50
|
-
HTMLParagraphElement,
|
|
51
|
-
React.HTMLAttributes<HTMLParagraphElement>
|
|
52
|
-
>(({ className, ...props }, ref) => (
|
|
53
|
-
<p
|
|
54
|
-
ref={ref}
|
|
55
|
-
className={cn("text-sm text-muted-foreground", className)}
|
|
56
|
-
{...props}
|
|
57
|
-
/>
|
|
58
|
-
))
|
|
59
|
-
CardDescription.displayName = "CardDescription"
|
|
60
|
-
|
|
61
|
-
const CardContent = React.forwardRef<
|
|
62
|
-
HTMLDivElement,
|
|
63
|
-
React.HTMLAttributes<HTMLDivElement>
|
|
64
|
-
>(({ className, ...props }, ref) => (
|
|
65
|
-
<div ref={ref} className={cn("p-6 pt-0", className)} {...props} />
|
|
66
|
-
))
|
|
67
|
-
CardContent.displayName = "CardContent"
|
|
68
|
-
|
|
69
|
-
const CardFooter = React.forwardRef<
|
|
70
|
-
HTMLDivElement,
|
|
71
|
-
React.HTMLAttributes<HTMLDivElement>
|
|
72
|
-
>(({ className, ...props }, ref) => (
|
|
73
|
-
<div
|
|
74
|
-
ref={ref}
|
|
75
|
-
className={cn(" flex items-center p-6 pt-0", className)}
|
|
76
|
-
{...props}
|
|
77
|
-
/>
|
|
78
|
-
))
|
|
79
|
-
CardFooter.displayName = "CardFooter"
|
|
80
|
-
|
|
81
|
-
export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
"use client"
|
|
2
|
-
|
|
3
|
-
import * as React from "react"
|
|
4
|
-
import * as CheckboxPrimitive from "@radix-ui/react-checkbox"
|
|
5
|
-
import { Check } from "lucide-react"
|
|
6
|
-
|
|
7
|
-
import { cn } from "@/lib/utils"
|
|
8
|
-
|
|
9
|
-
const Checkbox = React.forwardRef<
|
|
10
|
-
React.ElementRef<typeof CheckboxPrimitive.Root>,
|
|
11
|
-
React.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>
|
|
12
|
-
>(({ className, ...props }, ref) => (
|
|
13
|
-
<CheckboxPrimitive.Root
|
|
14
|
-
ref={ref}
|
|
15
|
-
className={cn(
|
|
16
|
-
"peer h-4 w-4 shrink-0 rounded-sm border border-input ring-offset-background data-[state=checked]:border-primary focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
|
|
17
|
-
className
|
|
18
|
-
)}
|
|
19
|
-
{...props}
|
|
20
|
-
>
|
|
21
|
-
<CheckboxPrimitive.Indicator
|
|
22
|
-
className={cn("flex items-center justify-center text-primary")}
|
|
23
|
-
>
|
|
24
|
-
<Check className="h-4 w-4" />
|
|
25
|
-
</CheckboxPrimitive.Indicator>
|
|
26
|
-
</CheckboxPrimitive.Root>
|
|
27
|
-
))
|
|
28
|
-
Checkbox.displayName = CheckboxPrimitive.Root.displayName
|
|
29
|
-
|
|
30
|
-
export { Checkbox }
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
"use client"
|
|
2
|
-
|
|
3
|
-
import * as CollapsiblePrimitive from "@radix-ui/react-collapsible"
|
|
4
|
-
|
|
5
|
-
const Collapsible = CollapsiblePrimitive.Root
|
|
6
|
-
|
|
7
|
-
const CollapsibleTrigger = CollapsiblePrimitive.CollapsibleTrigger
|
|
8
|
-
|
|
9
|
-
const CollapsibleContent = CollapsiblePrimitive.CollapsibleContent
|
|
10
|
-
|
|
11
|
-
export { Collapsible, CollapsibleTrigger, CollapsibleContent }
|
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
"use client"
|
|
2
|
-
|
|
3
|
-
import * as React from "react"
|
|
4
|
-
import { DialogProps } from "@radix-ui/react-dialog"
|
|
5
|
-
import { Command as CommandPrimitive } from "cmdk"
|
|
6
|
-
import { Search } from "lucide-react"
|
|
7
|
-
|
|
8
|
-
import { cn } from "@/lib/utils"
|
|
9
|
-
import { Dialog, DialogContent } from "@/components/ui/dialog"
|
|
10
|
-
|
|
11
|
-
const Command = React.forwardRef<
|
|
12
|
-
React.ElementRef<typeof CommandPrimitive>,
|
|
13
|
-
React.ComponentPropsWithoutRef<typeof CommandPrimitive>
|
|
14
|
-
>(({ className, ...props }, ref) => (
|
|
15
|
-
<CommandPrimitive
|
|
16
|
-
ref={ref}
|
|
17
|
-
className={cn(
|
|
18
|
-
"flex h-full w-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground",
|
|
19
|
-
className
|
|
20
|
-
)}
|
|
21
|
-
{...props}
|
|
22
|
-
/>
|
|
23
|
-
))
|
|
24
|
-
Command.displayName = CommandPrimitive.displayName
|
|
25
|
-
|
|
26
|
-
interface CommandDialogProps extends DialogProps {}
|
|
27
|
-
|
|
28
|
-
const CommandDialog = ({ children, ...props }: CommandDialogProps) => {
|
|
29
|
-
return (
|
|
30
|
-
<Dialog {...props}>
|
|
31
|
-
<DialogContent className="overflow-hidden p-0 shadow-2xl">
|
|
32
|
-
<Command className="[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5">
|
|
33
|
-
{children}
|
|
34
|
-
</Command>
|
|
35
|
-
</DialogContent>
|
|
36
|
-
</Dialog>
|
|
37
|
-
)
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
const CommandInput = React.forwardRef<
|
|
41
|
-
React.ElementRef<typeof CommandPrimitive.Input>,
|
|
42
|
-
React.ComponentPropsWithoutRef<typeof CommandPrimitive.Input>
|
|
43
|
-
>(({ className, ...props }, ref) => (
|
|
44
|
-
<div className="flex items-center border-b px-3" cmdk-input-wrapper="">
|
|
45
|
-
<Search className="mr-2 h-4 w-4 shrink-0 opacity-50" />
|
|
46
|
-
<CommandPrimitive.Input
|
|
47
|
-
ref={ref}
|
|
48
|
-
className={cn(
|
|
49
|
-
"placeholder:text-foreground-muted flex h-11 w-full rounded-md bg-transparent py-3 text-sm outline-none disabled:cursor-not-allowed disabled:opacity-50",
|
|
50
|
-
className
|
|
51
|
-
)}
|
|
52
|
-
{...props}
|
|
53
|
-
/>
|
|
54
|
-
</div>
|
|
55
|
-
))
|
|
56
|
-
|
|
57
|
-
CommandInput.displayName = CommandPrimitive.Input.displayName
|
|
58
|
-
|
|
59
|
-
const CommandList = React.forwardRef<
|
|
60
|
-
React.ElementRef<typeof CommandPrimitive.List>,
|
|
61
|
-
React.ComponentPropsWithoutRef<typeof CommandPrimitive.List>
|
|
62
|
-
>(({ className, ...props }, ref) => (
|
|
63
|
-
<CommandPrimitive.List
|
|
64
|
-
ref={ref}
|
|
65
|
-
className={cn("max-h-[300px] overflow-y-auto overflow-x-hidden", className)}
|
|
66
|
-
{...props}
|
|
67
|
-
/>
|
|
68
|
-
))
|
|
69
|
-
|
|
70
|
-
CommandList.displayName = CommandPrimitive.List.displayName
|
|
71
|
-
|
|
72
|
-
const CommandEmpty = React.forwardRef<
|
|
73
|
-
React.ElementRef<typeof CommandPrimitive.Empty>,
|
|
74
|
-
React.ComponentPropsWithoutRef<typeof CommandPrimitive.Empty>
|
|
75
|
-
>((props, ref) => (
|
|
76
|
-
<CommandPrimitive.Empty
|
|
77
|
-
ref={ref}
|
|
78
|
-
className="py-6 text-center text-sm"
|
|
79
|
-
{...props}
|
|
80
|
-
/>
|
|
81
|
-
))
|
|
82
|
-
|
|
83
|
-
CommandEmpty.displayName = CommandPrimitive.Empty.displayName
|
|
84
|
-
|
|
85
|
-
const CommandGroup = React.forwardRef<
|
|
86
|
-
React.ElementRef<typeof CommandPrimitive.Group>,
|
|
87
|
-
React.ComponentPropsWithoutRef<typeof CommandPrimitive.Group>
|
|
88
|
-
>(({ className, ...props }, ref) => (
|
|
89
|
-
<CommandPrimitive.Group
|
|
90
|
-
ref={ref}
|
|
91
|
-
className={cn(
|
|
92
|
-
"overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground",
|
|
93
|
-
className
|
|
94
|
-
)}
|
|
95
|
-
{...props}
|
|
96
|
-
/>
|
|
97
|
-
))
|
|
98
|
-
|
|
99
|
-
CommandGroup.displayName = CommandPrimitive.Group.displayName
|
|
100
|
-
|
|
101
|
-
const CommandSeparator = React.forwardRef<
|
|
102
|
-
React.ElementRef<typeof CommandPrimitive.Separator>,
|
|
103
|
-
React.ComponentPropsWithoutRef<typeof CommandPrimitive.Separator>
|
|
104
|
-
>(({ className, ...props }, ref) => (
|
|
105
|
-
<CommandPrimitive.Separator
|
|
106
|
-
ref={ref}
|
|
107
|
-
className={cn("-mx-1 h-px bg-border", className)}
|
|
108
|
-
{...props}
|
|
109
|
-
/>
|
|
110
|
-
))
|
|
111
|
-
CommandSeparator.displayName = CommandPrimitive.Separator.displayName
|
|
112
|
-
|
|
113
|
-
const CommandItem = React.forwardRef<
|
|
114
|
-
React.ElementRef<typeof CommandPrimitive.Item>,
|
|
115
|
-
React.ComponentPropsWithoutRef<typeof CommandPrimitive.Item>
|
|
116
|
-
>(({ className, ...props }, ref) => (
|
|
117
|
-
<CommandPrimitive.Item
|
|
118
|
-
ref={ref}
|
|
119
|
-
className={cn(
|
|
120
|
-
"relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none aria-selected:bg-accent aria-selected:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
|
|
121
|
-
className
|
|
122
|
-
)}
|
|
123
|
-
{...props}
|
|
124
|
-
/>
|
|
125
|
-
))
|
|
126
|
-
|
|
127
|
-
CommandItem.displayName = CommandPrimitive.Item.displayName
|
|
128
|
-
|
|
129
|
-
const CommandShortcut = ({
|
|
130
|
-
className,
|
|
131
|
-
...props
|
|
132
|
-
}: React.HTMLAttributes<HTMLSpanElement>) => {
|
|
133
|
-
return (
|
|
134
|
-
<span
|
|
135
|
-
className={cn(
|
|
136
|
-
"ml-auto text-xs tracking-widest text-muted-foreground",
|
|
137
|
-
className
|
|
138
|
-
)}
|
|
139
|
-
{...props}
|
|
140
|
-
/>
|
|
141
|
-
)
|
|
142
|
-
}
|
|
143
|
-
CommandShortcut.displayName = "CommandShortcut"
|
|
144
|
-
|
|
145
|
-
export {
|
|
146
|
-
Command,
|
|
147
|
-
CommandDialog,
|
|
148
|
-
CommandInput,
|
|
149
|
-
CommandList,
|
|
150
|
-
CommandEmpty,
|
|
151
|
-
CommandGroup,
|
|
152
|
-
CommandItem,
|
|
153
|
-
CommandShortcut,
|
|
154
|
-
CommandSeparator,
|
|
155
|
-
}
|
|
@@ -1,200 +0,0 @@
|
|
|
1
|
-
"use client"
|
|
2
|
-
|
|
3
|
-
import * as React from "react"
|
|
4
|
-
import * as ContextMenuPrimitive from "@radix-ui/react-context-menu"
|
|
5
|
-
import { Check, ChevronRight, Circle } from "lucide-react"
|
|
6
|
-
|
|
7
|
-
import { cn } from "@/lib/utils"
|
|
8
|
-
|
|
9
|
-
const ContextMenu = ContextMenuPrimitive.Root
|
|
10
|
-
|
|
11
|
-
const ContextMenuTrigger = ContextMenuPrimitive.Trigger
|
|
12
|
-
|
|
13
|
-
const ContextMenuGroup = ContextMenuPrimitive.Group
|
|
14
|
-
|
|
15
|
-
const ContextMenuPortal = ContextMenuPrimitive.Portal
|
|
16
|
-
|
|
17
|
-
const ContextMenuSub = ContextMenuPrimitive.Sub
|
|
18
|
-
|
|
19
|
-
const ContextMenuRadioGroup = ContextMenuPrimitive.RadioGroup
|
|
20
|
-
|
|
21
|
-
const ContextMenuSubTrigger = React.forwardRef<
|
|
22
|
-
React.ElementRef<typeof ContextMenuPrimitive.SubTrigger>,
|
|
23
|
-
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.SubTrigger> & {
|
|
24
|
-
inset?: boolean
|
|
25
|
-
}
|
|
26
|
-
>(({ className, inset, children, ...props }, ref) => (
|
|
27
|
-
<ContextMenuPrimitive.SubTrigger
|
|
28
|
-
ref={ref}
|
|
29
|
-
className={cn(
|
|
30
|
-
"flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[state=open]:bg-accent data-[state=open]:text-accent-foreground focus:bg-accent focus:text-accent-foreground",
|
|
31
|
-
inset && "pl-8",
|
|
32
|
-
className
|
|
33
|
-
)}
|
|
34
|
-
{...props}
|
|
35
|
-
>
|
|
36
|
-
{children}
|
|
37
|
-
<ChevronRight className="ml-auto h-4 w-4" />
|
|
38
|
-
</ContextMenuPrimitive.SubTrigger>
|
|
39
|
-
))
|
|
40
|
-
ContextMenuSubTrigger.displayName = ContextMenuPrimitive.SubTrigger.displayName
|
|
41
|
-
|
|
42
|
-
const ContextMenuSubContent = React.forwardRef<
|
|
43
|
-
React.ElementRef<typeof ContextMenuPrimitive.SubContent>,
|
|
44
|
-
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.SubContent>
|
|
45
|
-
>(({ className, ...props }, ref) => (
|
|
46
|
-
<ContextMenuPrimitive.SubContent
|
|
47
|
-
ref={ref}
|
|
48
|
-
className={cn(
|
|
49
|
-
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md animate-in slide-in-from-left-1",
|
|
50
|
-
className
|
|
51
|
-
)}
|
|
52
|
-
{...props}
|
|
53
|
-
/>
|
|
54
|
-
))
|
|
55
|
-
ContextMenuSubContent.displayName = ContextMenuPrimitive.SubContent.displayName
|
|
56
|
-
|
|
57
|
-
const ContextMenuContent = React.forwardRef<
|
|
58
|
-
React.ElementRef<typeof ContextMenuPrimitive.Content>,
|
|
59
|
-
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Content>
|
|
60
|
-
>(({ className, ...props }, ref) => (
|
|
61
|
-
<ContextMenuPrimitive.Portal>
|
|
62
|
-
<ContextMenuPrimitive.Content
|
|
63
|
-
ref={ref}
|
|
64
|
-
className={cn(
|
|
65
|
-
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md animate-in fade-in-80",
|
|
66
|
-
className
|
|
67
|
-
)}
|
|
68
|
-
{...props}
|
|
69
|
-
/>
|
|
70
|
-
</ContextMenuPrimitive.Portal>
|
|
71
|
-
))
|
|
72
|
-
ContextMenuContent.displayName = ContextMenuPrimitive.Content.displayName
|
|
73
|
-
|
|
74
|
-
const ContextMenuItem = React.forwardRef<
|
|
75
|
-
React.ElementRef<typeof ContextMenuPrimitive.Item>,
|
|
76
|
-
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Item> & {
|
|
77
|
-
inset?: boolean
|
|
78
|
-
}
|
|
79
|
-
>(({ className, inset, ...props }, ref) => (
|
|
80
|
-
<ContextMenuPrimitive.Item
|
|
81
|
-
ref={ref}
|
|
82
|
-
className={cn(
|
|
83
|
-
"relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 focus:bg-accent focus:text-accent-foreground",
|
|
84
|
-
inset && "pl-8",
|
|
85
|
-
className
|
|
86
|
-
)}
|
|
87
|
-
{...props}
|
|
88
|
-
/>
|
|
89
|
-
))
|
|
90
|
-
ContextMenuItem.displayName = ContextMenuPrimitive.Item.displayName
|
|
91
|
-
|
|
92
|
-
const ContextMenuCheckboxItem = React.forwardRef<
|
|
93
|
-
React.ElementRef<typeof ContextMenuPrimitive.CheckboxItem>,
|
|
94
|
-
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.CheckboxItem>
|
|
95
|
-
>(({ className, children, checked, ...props }, ref) => (
|
|
96
|
-
<ContextMenuPrimitive.CheckboxItem
|
|
97
|
-
ref={ref}
|
|
98
|
-
className={cn(
|
|
99
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 focus:bg-accent focus:text-accent-foreground",
|
|
100
|
-
className
|
|
101
|
-
)}
|
|
102
|
-
checked={checked}
|
|
103
|
-
{...props}
|
|
104
|
-
>
|
|
105
|
-
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
106
|
-
<ContextMenuPrimitive.ItemIndicator>
|
|
107
|
-
<Check className="h-4 w-4" />
|
|
108
|
-
</ContextMenuPrimitive.ItemIndicator>
|
|
109
|
-
</span>
|
|
110
|
-
{children}
|
|
111
|
-
</ContextMenuPrimitive.CheckboxItem>
|
|
112
|
-
))
|
|
113
|
-
ContextMenuCheckboxItem.displayName =
|
|
114
|
-
ContextMenuPrimitive.CheckboxItem.displayName
|
|
115
|
-
|
|
116
|
-
const ContextMenuRadioItem = React.forwardRef<
|
|
117
|
-
React.ElementRef<typeof ContextMenuPrimitive.RadioItem>,
|
|
118
|
-
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.RadioItem>
|
|
119
|
-
>(({ className, children, ...props }, ref) => (
|
|
120
|
-
<ContextMenuPrimitive.RadioItem
|
|
121
|
-
ref={ref}
|
|
122
|
-
className={cn(
|
|
123
|
-
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 focus:bg-accent focus:text-accent-foreground",
|
|
124
|
-
className
|
|
125
|
-
)}
|
|
126
|
-
{...props}
|
|
127
|
-
>
|
|
128
|
-
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
129
|
-
<ContextMenuPrimitive.ItemIndicator>
|
|
130
|
-
<Circle className="h-2 w-2 fill-current" />
|
|
131
|
-
</ContextMenuPrimitive.ItemIndicator>
|
|
132
|
-
</span>
|
|
133
|
-
{children}
|
|
134
|
-
</ContextMenuPrimitive.RadioItem>
|
|
135
|
-
))
|
|
136
|
-
ContextMenuRadioItem.displayName = ContextMenuPrimitive.RadioItem.displayName
|
|
137
|
-
|
|
138
|
-
const ContextMenuLabel = React.forwardRef<
|
|
139
|
-
React.ElementRef<typeof ContextMenuPrimitive.Label>,
|
|
140
|
-
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Label> & {
|
|
141
|
-
inset?: boolean
|
|
142
|
-
}
|
|
143
|
-
>(({ className, inset, ...props }, ref) => (
|
|
144
|
-
<ContextMenuPrimitive.Label
|
|
145
|
-
ref={ref}
|
|
146
|
-
className={cn(
|
|
147
|
-
"px-2 py-1.5 text-sm font-semibold text-foreground",
|
|
148
|
-
inset && "pl-8",
|
|
149
|
-
className
|
|
150
|
-
)}
|
|
151
|
-
{...props}
|
|
152
|
-
/>
|
|
153
|
-
))
|
|
154
|
-
ContextMenuLabel.displayName = ContextMenuPrimitive.Label.displayName
|
|
155
|
-
|
|
156
|
-
const ContextMenuSeparator = React.forwardRef<
|
|
157
|
-
React.ElementRef<typeof ContextMenuPrimitive.Separator>,
|
|
158
|
-
React.ComponentPropsWithoutRef<typeof ContextMenuPrimitive.Separator>
|
|
159
|
-
>(({ className, ...props }, ref) => (
|
|
160
|
-
<ContextMenuPrimitive.Separator
|
|
161
|
-
ref={ref}
|
|
162
|
-
className={cn("-mx-1 my-1 h-px bg-border", className)}
|
|
163
|
-
{...props}
|
|
164
|
-
/>
|
|
165
|
-
))
|
|
166
|
-
ContextMenuSeparator.displayName = ContextMenuPrimitive.Separator.displayName
|
|
167
|
-
|
|
168
|
-
const ContextMenuShortcut = ({
|
|
169
|
-
className,
|
|
170
|
-
...props
|
|
171
|
-
}: React.HTMLAttributes<HTMLSpanElement>) => {
|
|
172
|
-
return (
|
|
173
|
-
<span
|
|
174
|
-
className={cn(
|
|
175
|
-
"ml-auto text-xs tracking-widest text-muted-foreground",
|
|
176
|
-
className
|
|
177
|
-
)}
|
|
178
|
-
{...props}
|
|
179
|
-
/>
|
|
180
|
-
)
|
|
181
|
-
}
|
|
182
|
-
ContextMenuShortcut.displayName = "ContextMenuShortcut"
|
|
183
|
-
|
|
184
|
-
export {
|
|
185
|
-
ContextMenu,
|
|
186
|
-
ContextMenuTrigger,
|
|
187
|
-
ContextMenuContent,
|
|
188
|
-
ContextMenuItem,
|
|
189
|
-
ContextMenuCheckboxItem,
|
|
190
|
-
ContextMenuRadioItem,
|
|
191
|
-
ContextMenuLabel,
|
|
192
|
-
ContextMenuSeparator,
|
|
193
|
-
ContextMenuShortcut,
|
|
194
|
-
ContextMenuGroup,
|
|
195
|
-
ContextMenuPortal,
|
|
196
|
-
ContextMenuSub,
|
|
197
|
-
ContextMenuSubContent,
|
|
198
|
-
ContextMenuSubTrigger,
|
|
199
|
-
ContextMenuRadioGroup,
|
|
200
|
-
}
|
|
@@ -1,128 +0,0 @@
|
|
|
1
|
-
"use client"
|
|
2
|
-
|
|
3
|
-
import * as React from "react"
|
|
4
|
-
import * as DialogPrimitive from "@radix-ui/react-dialog"
|
|
5
|
-
import { X } from "lucide-react"
|
|
6
|
-
|
|
7
|
-
import { cn } from "@/lib/utils"
|
|
8
|
-
|
|
9
|
-
const Dialog = DialogPrimitive.Root
|
|
10
|
-
|
|
11
|
-
const DialogTrigger = DialogPrimitive.Trigger
|
|
12
|
-
|
|
13
|
-
const DialogPortal = ({
|
|
14
|
-
className,
|
|
15
|
-
children,
|
|
16
|
-
...props
|
|
17
|
-
}: DialogPrimitive.DialogPortalProps) => (
|
|
18
|
-
<DialogPrimitive.Portal className={cn(className)} {...props}>
|
|
19
|
-
<div className="fixed inset-0 z-50 flex items-start justify-center sm:items-center">
|
|
20
|
-
{children}
|
|
21
|
-
</div>
|
|
22
|
-
</DialogPrimitive.Portal>
|
|
23
|
-
)
|
|
24
|
-
DialogPortal.displayName = DialogPrimitive.Portal.displayName
|
|
25
|
-
|
|
26
|
-
const DialogOverlay = React.forwardRef<
|
|
27
|
-
React.ElementRef<typeof DialogPrimitive.Overlay>,
|
|
28
|
-
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>
|
|
29
|
-
>(({ className, ...props }, ref) => (
|
|
30
|
-
<DialogPrimitive.Overlay
|
|
31
|
-
ref={ref}
|
|
32
|
-
className={cn(
|
|
33
|
-
"fixed inset-0 z-50 bg-background/80 backdrop-blur-sm transition-all duration-100 data-[state=closed]:animate-out data-[state=closed]:fade-out data-[state=open]:fade-in",
|
|
34
|
-
className
|
|
35
|
-
)}
|
|
36
|
-
{...props}
|
|
37
|
-
/>
|
|
38
|
-
))
|
|
39
|
-
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName
|
|
40
|
-
|
|
41
|
-
const DialogContent = React.forwardRef<
|
|
42
|
-
React.ElementRef<typeof DialogPrimitive.Content>,
|
|
43
|
-
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>
|
|
44
|
-
>(({ className, children, ...props }, ref) => (
|
|
45
|
-
<DialogPortal>
|
|
46
|
-
<DialogOverlay />
|
|
47
|
-
<DialogPrimitive.Content
|
|
48
|
-
ref={ref}
|
|
49
|
-
className={cn(
|
|
50
|
-
"fixed z-50 grid w-full gap-4 rounded-b-lg border bg-background p-6 shadow-lg animate-in data-[state=open]:fade-in-90 data-[state=open]:slide-in-from-bottom-10 sm:max-w-lg sm:rounded-lg sm:zoom-in-90 data-[state=open]:sm:slide-in-from-bottom-0",
|
|
51
|
-
className
|
|
52
|
-
)}
|
|
53
|
-
{...props}
|
|
54
|
-
>
|
|
55
|
-
{children}
|
|
56
|
-
<DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity data-[state=open]:bg-accent data-[state=open]:text-muted-foreground hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none">
|
|
57
|
-
<X className="h-4 w-4" />
|
|
58
|
-
<span className="sr-only">Close</span>
|
|
59
|
-
</DialogPrimitive.Close>
|
|
60
|
-
</DialogPrimitive.Content>
|
|
61
|
-
</DialogPortal>
|
|
62
|
-
))
|
|
63
|
-
DialogContent.displayName = DialogPrimitive.Content.displayName
|
|
64
|
-
|
|
65
|
-
const DialogHeader = ({
|
|
66
|
-
className,
|
|
67
|
-
...props
|
|
68
|
-
}: React.HTMLAttributes<HTMLDivElement>) => (
|
|
69
|
-
<div
|
|
70
|
-
className={cn(
|
|
71
|
-
"flex flex-col space-y-1.5 text-center sm:text-left",
|
|
72
|
-
className
|
|
73
|
-
)}
|
|
74
|
-
{...props}
|
|
75
|
-
/>
|
|
76
|
-
)
|
|
77
|
-
DialogHeader.displayName = "DialogHeader"
|
|
78
|
-
|
|
79
|
-
const DialogFooter = ({
|
|
80
|
-
className,
|
|
81
|
-
...props
|
|
82
|
-
}: React.HTMLAttributes<HTMLDivElement>) => (
|
|
83
|
-
<div
|
|
84
|
-
className={cn(
|
|
85
|
-
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
86
|
-
className
|
|
87
|
-
)}
|
|
88
|
-
{...props}
|
|
89
|
-
/>
|
|
90
|
-
)
|
|
91
|
-
DialogFooter.displayName = "DialogFooter"
|
|
92
|
-
|
|
93
|
-
const DialogTitle = React.forwardRef<
|
|
94
|
-
React.ElementRef<typeof DialogPrimitive.Title>,
|
|
95
|
-
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>
|
|
96
|
-
>(({ className, ...props }, ref) => (
|
|
97
|
-
<DialogPrimitive.Title
|
|
98
|
-
ref={ref}
|
|
99
|
-
className={cn(
|
|
100
|
-
"text-lg font-semibold leading-none tracking-tight",
|
|
101
|
-
className
|
|
102
|
-
)}
|
|
103
|
-
{...props}
|
|
104
|
-
/>
|
|
105
|
-
))
|
|
106
|
-
DialogTitle.displayName = DialogPrimitive.Title.displayName
|
|
107
|
-
|
|
108
|
-
const DialogDescription = React.forwardRef<
|
|
109
|
-
React.ElementRef<typeof DialogPrimitive.Description>,
|
|
110
|
-
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description>
|
|
111
|
-
>(({ className, ...props }, ref) => (
|
|
112
|
-
<DialogPrimitive.Description
|
|
113
|
-
ref={ref}
|
|
114
|
-
className={cn("text-sm text-muted-foreground", className)}
|
|
115
|
-
{...props}
|
|
116
|
-
/>
|
|
117
|
-
))
|
|
118
|
-
DialogDescription.displayName = DialogPrimitive.Description.displayName
|
|
119
|
-
|
|
120
|
-
export {
|
|
121
|
-
Dialog,
|
|
122
|
-
DialogTrigger,
|
|
123
|
-
DialogContent,
|
|
124
|
-
DialogHeader,
|
|
125
|
-
DialogFooter,
|
|
126
|
-
DialogTitle,
|
|
127
|
-
DialogDescription,
|
|
128
|
-
}
|