@edgedev/create-edge-app 1.1.4 → 1.1.6
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/assets/css/tailwind.css +12 -2
- package/components/ui/accordion/Accordion.vue +1 -1
- package/components/ui/accordion/AccordionContent.vue +3 -3
- package/components/ui/accordion/AccordionItem.vue +3 -3
- package/components/ui/accordion/AccordionTrigger.vue +4 -4
- package/components/ui/alert/Alert.vue +1 -1
- package/components/ui/alert/AlertDescription.vue +1 -1
- package/components/ui/alert/AlertTitle.vue +1 -1
- package/components/ui/alert/index.ts +2 -2
- package/components/ui/alert-dialog/AlertDialog.vue +1 -1
- package/components/ui/alert-dialog/AlertDialogAction.vue +4 -4
- package/components/ui/alert-dialog/AlertDialogCancel.vue +12 -5
- package/components/ui/alert-dialog/AlertDialogContent.vue +4 -4
- package/components/ui/alert-dialog/AlertDialogDescription.vue +3 -3
- package/components/ui/alert-dialog/AlertDialogFooter.vue +1 -1
- package/components/ui/alert-dialog/AlertDialogHeader.vue +1 -1
- package/components/ui/alert-dialog/AlertDialogTitle.vue +3 -3
- package/components/ui/alert-dialog/AlertDialogTrigger.vue +1 -1
- package/components/ui/alert-dialog/index.ts +5 -5
- package/components/ui/aspect-ratio/AspectRatio.vue +1 -1
- package/components/ui/auto-form/AutoForm.vue +8 -8
- package/components/ui/auto-form/AutoFormField.vue +1 -1
- package/components/ui/auto-form/AutoFormFieldArray.vue +9 -9
- package/components/ui/auto-form/AutoFormFieldBoolean.vue +9 -9
- package/components/ui/auto-form/AutoFormFieldDate.vue +9 -9
- package/components/ui/auto-form/AutoFormFieldEnum.vue +8 -8
- package/components/ui/auto-form/AutoFormFieldFile.vue +6 -6
- package/components/ui/auto-form/AutoFormFieldInput.vue +5 -5
- package/components/ui/auto-form/AutoFormFieldNumber.vue +4 -4
- package/components/ui/auto-form/AutoFormFieldObject.vue +5 -5
- package/components/ui/auto-form/AutoFormLabel.vue +1 -1
- package/components/ui/auto-form/constant.ts +2 -1
- package/components/ui/auto-form/dependencies.ts +4 -4
- package/components/ui/auto-form/index.ts +4 -4
- package/components/ui/auto-form/interface.ts +15 -1
- package/components/ui/auto-form/utils.ts +23 -6
- package/components/ui/avatar/Avatar.vue +3 -3
- package/components/ui/avatar/AvatarFallback.vue +1 -1
- package/components/ui/avatar/AvatarImage.vue +5 -2
- package/components/ui/avatar/index.ts +2 -2
- package/components/ui/badge/Badge.vue +1 -1
- package/components/ui/badge/index.ts +1 -1
- package/components/ui/breadcrumb/BreadcrumbEllipsis.vue +1 -1
- package/components/ui/breadcrumb/BreadcrumbItem.vue +1 -1
- package/components/ui/breadcrumb/BreadcrumbLink.vue +2 -2
- package/components/ui/breadcrumb/BreadcrumbList.vue +1 -1
- package/components/ui/breadcrumb/BreadcrumbPage.vue +1 -1
- package/components/ui/breadcrumb/BreadcrumbSeparator.vue +2 -2
- package/components/ui/button/Button.vue +2 -2
- package/components/ui/button/index.ts +3 -3
- package/components/ui/calendar/Calendar.vue +3 -3
- package/components/ui/calendar/CalendarCell.vue +4 -4
- package/components/ui/calendar/CalendarCellTrigger.vue +5 -5
- package/components/ui/calendar/CalendarGrid.vue +3 -3
- package/components/ui/calendar/CalendarGridBody.vue +1 -1
- package/components/ui/calendar/CalendarGridHead.vue +1 -1
- package/components/ui/calendar/CalendarGridRow.vue +3 -3
- package/components/ui/calendar/CalendarHeadCell.vue +3 -3
- package/components/ui/calendar/CalendarHeader.vue +3 -3
- package/components/ui/calendar/CalendarHeading.vue +7 -3
- package/components/ui/calendar/CalendarNextButton.vue +4 -4
- package/components/ui/calendar/CalendarPrevButton.vue +4 -4
- package/components/ui/card/Card.vue +1 -1
- package/components/ui/card/CardContent.vue +1 -1
- package/components/ui/card/CardDescription.vue +1 -1
- package/components/ui/card/CardFooter.vue +1 -1
- package/components/ui/card/CardHeader.vue +1 -1
- package/components/ui/card/CardTitle.vue +1 -1
- package/components/ui/card/index.ts +3 -3
- package/components/ui/carousel/Carousel.vue +15 -7
- package/components/ui/carousel/CarouselContent.vue +2 -2
- package/components/ui/carousel/CarouselItem.vue +2 -2
- package/components/ui/carousel/CarouselNext.vue +4 -3
- package/components/ui/carousel/CarouselPrevious.vue +4 -3
- package/components/ui/carousel/index.ts +5 -5
- package/components/ui/carousel/interface.ts +14 -8
- package/components/ui/carousel/useCarousel.ts +5 -8
- package/components/ui/chart/ChartCrosshair.vue +2 -2
- package/components/ui/chart/ChartLegend.vue +3 -3
- package/components/ui/chart/ChartSingleTooltip.vue +6 -7
- package/components/ui/chart/ChartTooltip.vue +1 -1
- package/components/ui/chart/index.ts +6 -6
- package/components/ui/chart-area/AreaChart.vue +10 -7
- package/components/ui/chart-bar/BarChart.vue +5 -5
- package/components/ui/chart-donut/DonutChart.vue +6 -6
- package/components/ui/chart-line/LineChart.vue +5 -5
- package/components/ui/checkbox/Checkbox.vue +4 -4
- package/components/ui/collapsible/Collapsible.vue +2 -2
- package/components/ui/collapsible/CollapsibleContent.vue +1 -1
- package/components/ui/collapsible/CollapsibleTrigger.vue +1 -1
- package/components/ui/collapsible/index.ts +1 -1
- package/components/ui/combobox/Combobox.vue +14 -0
- package/components/ui/combobox/ComboboxAnchor.vue +25 -0
- package/components/ui/combobox/ComboboxEmpty.vue +20 -0
- package/components/ui/combobox/ComboboxGroup.vue +29 -0
- package/components/ui/combobox/ComboboxInput.vue +28 -0
- package/components/ui/combobox/ComboboxItem.vue +26 -0
- package/components/ui/combobox/ComboboxList.vue +34 -0
- package/components/ui/combobox/ComboboxSeparator.vue +23 -0
- package/components/ui/combobox/ComboboxTrigger.vue +26 -0
- package/components/ui/combobox/index.ts +10 -0
- package/components/ui/command/Command.vue +71 -9
- package/components/ui/command/CommandDialog.vue +3 -3
- package/components/ui/command/CommandEmpty.vue +12 -7
- package/components/ui/command/CommandGroup.vue +26 -9
- package/components/ui/command/CommandInput.vue +10 -6
- package/components/ui/command/CommandItem.vue +61 -9
- package/components/ui/command/CommandList.vue +8 -11
- package/components/ui/command/CommandSeparator.vue +7 -7
- package/components/ui/command/CommandShortcut.vue +1 -1
- package/components/ui/command/index.ts +16 -0
- package/components/ui/context-menu/ContextMenu.vue +2 -2
- package/components/ui/context-menu/ContextMenuCheckboxItem.vue +4 -4
- package/components/ui/context-menu/ContextMenuContent.vue +3 -3
- package/components/ui/context-menu/ContextMenuGroup.vue +1 -1
- package/components/ui/context-menu/ContextMenuItem.vue +3 -3
- package/components/ui/context-menu/ContextMenuLabel.vue +3 -3
- package/components/ui/context-menu/ContextMenuPortal.vue +1 -1
- package/components/ui/context-menu/ContextMenuRadioGroup.vue +1 -1
- package/components/ui/context-menu/ContextMenuRadioItem.vue +4 -4
- package/components/ui/context-menu/ContextMenuSeparator.vue +3 -3
- package/components/ui/context-menu/ContextMenuShortcut.vue +1 -1
- package/components/ui/context-menu/ContextMenuSub.vue +1 -1
- package/components/ui/context-menu/ContextMenuSubContent.vue +3 -3
- package/components/ui/context-menu/ContextMenuSubTrigger.vue +4 -4
- package/components/ui/context-menu/ContextMenuTrigger.vue +1 -1
- package/components/ui/context-menu/index.ts +6 -6
- package/components/ui/dialog/Dialog.vue +1 -1
- package/components/ui/dialog/DialogClose.vue +1 -1
- package/components/ui/dialog/DialogContent.vue +5 -5
- package/components/ui/dialog/DialogDescription.vue +3 -3
- package/components/ui/dialog/DialogFooter.vue +1 -1
- package/components/ui/dialog/DialogHeader.vue +1 -1
- package/components/ui/dialog/DialogScrollContent.vue +5 -5
- package/components/ui/dialog/DialogTitle.vue +3 -3
- package/components/ui/dialog/DialogTrigger.vue +1 -1
- package/components/ui/dialog/index.ts +5 -5
- package/components/ui/drawer/Drawer.vue +1 -1
- package/components/ui/drawer/DrawerContent.vue +4 -4
- package/components/ui/drawer/DrawerDescription.vue +2 -2
- package/components/ui/drawer/DrawerFooter.vue +1 -1
- package/components/ui/drawer/DrawerHeader.vue +1 -1
- package/components/ui/drawer/DrawerOverlay.vue +3 -3
- package/components/ui/drawer/DrawerTitle.vue +2 -2
- package/components/ui/drawer/index.ts +4 -4
- package/components/ui/dropdown-menu/DropdownMenu.vue +1 -1
- package/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +4 -4
- package/components/ui/dropdown-menu/DropdownMenuContent.vue +3 -3
- package/components/ui/dropdown-menu/DropdownMenuGroup.vue +1 -1
- package/components/ui/dropdown-menu/DropdownMenuItem.vue +4 -4
- package/components/ui/dropdown-menu/DropdownMenuLabel.vue +3 -3
- package/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue +1 -1
- package/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +4 -4
- package/components/ui/dropdown-menu/DropdownMenuSeparator.vue +3 -3
- package/components/ui/dropdown-menu/DropdownMenuShortcut.vue +1 -1
- package/components/ui/dropdown-menu/DropdownMenuSub.vue +1 -1
- package/components/ui/dropdown-menu/DropdownMenuSubContent.vue +3 -3
- package/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +4 -4
- package/components/ui/dropdown-menu/DropdownMenuTrigger.vue +1 -1
- package/components/ui/dropdown-menu/index.ts +8 -8
- package/components/ui/form/FormControl.vue +1 -1
- package/components/ui/form/FormDescription.vue +1 -1
- package/components/ui/form/FormItem.vue +2 -2
- package/components/ui/form/FormLabel.vue +3 -3
- package/components/ui/form/index.ts +3 -3
- package/components/ui/form/useFormField.ts +7 -7
- package/components/ui/hover-card/HoverCard.vue +1 -1
- package/components/ui/hover-card/HoverCardContent.vue +3 -3
- package/components/ui/hover-card/HoverCardTrigger.vue +1 -1
- package/components/ui/hover-card/index.ts +1 -1
- package/components/ui/input/Input.vue +1 -1
- package/components/ui/label/Label.vue +3 -3
- package/components/ui/menubar/Menubar.vue +3 -3
- package/components/ui/menubar/MenubarCheckboxItem.vue +4 -4
- package/components/ui/menubar/MenubarContent.vue +3 -3
- package/components/ui/menubar/MenubarGroup.vue +1 -1
- package/components/ui/menubar/MenubarItem.vue +3 -3
- package/components/ui/menubar/MenubarLabel.vue +2 -2
- package/components/ui/menubar/MenubarMenu.vue +1 -1
- package/components/ui/menubar/MenubarRadioGroup.vue +1 -1
- package/components/ui/menubar/MenubarRadioItem.vue +4 -4
- package/components/ui/menubar/MenubarSeparator.vue +3 -3
- package/components/ui/menubar/MenubarShortcut.vue +1 -1
- package/components/ui/menubar/MenubarSub.vue +1 -1
- package/components/ui/menubar/MenubarSubContent.vue +3 -3
- package/components/ui/menubar/MenubarSubTrigger.vue +3 -3
- package/components/ui/menubar/MenubarTrigger.vue +3 -3
- package/components/ui/menubar/index.ts +4 -4
- package/components/ui/navigation-menu/NavigationMenu.vue +3 -3
- package/components/ui/navigation-menu/NavigationMenuContent.vue +3 -3
- package/components/ui/navigation-menu/NavigationMenuIndicator.vue +3 -3
- package/components/ui/navigation-menu/NavigationMenuItem.vue +1 -1
- package/components/ui/navigation-menu/NavigationMenuLink.vue +1 -1
- package/components/ui/navigation-menu/NavigationMenuList.vue +3 -3
- package/components/ui/navigation-menu/NavigationMenuTrigger.vue +4 -4
- package/components/ui/navigation-menu/NavigationMenuViewport.vue +4 -4
- package/components/ui/navigation-menu/index.ts +5 -3
- package/components/ui/number-field/NumberField.vue +4 -4
- package/components/ui/number-field/NumberFieldContent.vue +2 -2
- package/components/ui/number-field/NumberFieldDecrement.vue +5 -5
- package/components/ui/number-field/NumberFieldIncrement.vue +5 -5
- package/components/ui/number-field/NumberFieldInput.vue +11 -3
- package/components/ui/number-field/index.ts +3 -3
- package/components/ui/pagination/PaginationEllipsis.vue +3 -3
- package/components/ui/pagination/PaginationFirst.vue +5 -5
- package/components/ui/pagination/PaginationLast.vue +5 -5
- package/components/ui/pagination/PaginationNext.vue +5 -5
- package/components/ui/pagination/PaginationPrev.vue +5 -5
- package/components/ui/pagination/index.ts +5 -5
- package/components/ui/pin-input/PinInput.vue +3 -3
- package/components/ui/pin-input/PinInputGroup.vue +3 -3
- package/components/ui/pin-input/PinInputInput.vue +3 -3
- package/components/ui/pin-input/PinInputSeparator.vue +1 -1
- package/components/ui/pin-input/index.ts +1 -1
- package/components/ui/popover/Popover.vue +2 -2
- package/components/ui/popover/PopoverContent.vue +3 -3
- package/components/ui/popover/PopoverTrigger.vue +1 -1
- package/components/ui/popover/index.ts +1 -1
- package/components/ui/progress/Progress.vue +3 -3
- package/components/ui/radio-group/RadioGroup.vue +3 -3
- package/components/ui/radio-group/RadioGroupItem.vue +8 -6
- package/components/ui/range-calendar/RangeCalendar.vue +3 -3
- package/components/ui/range-calendar/RangeCalendarCell.vue +4 -4
- package/components/ui/range-calendar/RangeCalendarCellTrigger.vue +5 -5
- package/components/ui/range-calendar/RangeCalendarGrid.vue +3 -3
- package/components/ui/range-calendar/RangeCalendarGridBody.vue +1 -1
- package/components/ui/range-calendar/RangeCalendarGridHead.vue +1 -1
- package/components/ui/range-calendar/RangeCalendarGridRow.vue +3 -3
- package/components/ui/range-calendar/RangeCalendarHeadCell.vue +4 -4
- package/components/ui/range-calendar/RangeCalendarHeader.vue +3 -3
- package/components/ui/range-calendar/RangeCalendarHeading.vue +7 -3
- package/components/ui/range-calendar/RangeCalendarNextButton.vue +4 -4
- package/components/ui/range-calendar/RangeCalendarPrevButton.vue +4 -4
- package/components/ui/resizable/ResizableHandle.vue +3 -3
- package/components/ui/resizable/ResizablePanelGroup.vue +3 -3
- package/components/ui/resizable/index.ts +2 -2
- package/components/ui/scroll-area/ScrollArea.vue +3 -3
- package/components/ui/scroll-area/ScrollBar.vue +3 -3
- package/components/ui/select/Select.vue +2 -2
- package/components/ui/select/SelectContent.vue +4 -4
- package/components/ui/select/SelectGroup.vue +3 -3
- package/components/ui/select/SelectItem.vue +4 -4
- package/components/ui/select/SelectItemText.vue +1 -1
- package/components/ui/select/SelectLabel.vue +2 -2
- package/components/ui/select/SelectScrollDownButton.vue +3 -3
- package/components/ui/select/SelectScrollUpButton.vue +3 -3
- package/components/ui/select/SelectSeparator.vue +3 -3
- package/components/ui/select/SelectTrigger.vue +5 -5
- package/components/ui/select/SelectValue.vue +1 -1
- package/components/ui/select/index.ts +4 -4
- package/components/ui/separator/Separator.vue +21 -6
- package/components/ui/sheet/Sheet.vue +1 -1
- package/components/ui/sheet/SheetClose.vue +1 -1
- package/components/ui/sheet/SheetContent.vue +5 -5
- package/components/ui/sheet/SheetDescription.vue +3 -3
- package/components/ui/sheet/SheetFooter.vue +1 -1
- package/components/ui/sheet/SheetHeader.vue +1 -1
- package/components/ui/sheet/SheetTitle.vue +3 -3
- package/components/ui/sheet/SheetTrigger.vue +1 -1
- package/components/ui/sheet/index.ts +4 -4
- package/components/ui/sidebar/Sidebar.vue +8 -8
- package/components/ui/sidebar/SidebarContent.vue +1 -1
- package/components/ui/sidebar/SidebarFooter.vue +1 -1
- package/components/ui/sidebar/SidebarGroup.vue +1 -1
- package/components/ui/sidebar/SidebarGroupAction.vue +3 -4
- package/components/ui/sidebar/SidebarGroupContent.vue +1 -1
- package/components/ui/sidebar/SidebarGroupLabel.vue +3 -3
- package/components/ui/sidebar/SidebarHeader.vue +1 -1
- package/components/ui/sidebar/SidebarInput.vue +2 -2
- package/components/ui/sidebar/SidebarInset.vue +1 -1
- package/components/ui/sidebar/SidebarMenu.vue +1 -1
- package/components/ui/sidebar/SidebarMenuAction.vue +2 -3
- package/components/ui/sidebar/SidebarMenuBadge.vue +1 -1
- package/components/ui/sidebar/SidebarMenuButton.vue +1 -1
- package/components/ui/sidebar/SidebarMenuButtonChild.vue +2 -2
- package/components/ui/sidebar/SidebarMenuItem.vue +1 -1
- package/components/ui/sidebar/SidebarMenuSkeleton.vue +2 -2
- package/components/ui/sidebar/SidebarMenuSub.vue +1 -1
- package/components/ui/sidebar/SidebarMenuSubButton.vue +3 -3
- package/components/ui/sidebar/SidebarProvider.vue +2 -2
- package/components/ui/sidebar/SidebarRail.vue +1 -1
- package/components/ui/sidebar/SidebarSeparator.vue +2 -2
- package/components/ui/sidebar/SidebarTrigger.vue +2 -2
- package/components/ui/sidebar/utils.ts +1 -1
- package/components/ui/skeleton/Skeleton.vue +1 -1
- package/components/ui/slider/Slider.vue +7 -7
- package/components/ui/stepper/Stepper.vue +31 -0
- package/components/ui/stepper/StepperDescription.vue +23 -0
- package/components/ui/stepper/StepperIndicator.vue +35 -0
- package/components/ui/stepper/StepperItem.vue +27 -0
- package/components/ui/stepper/StepperSeparator.vue +31 -0
- package/components/ui/stepper/StepperTitle.vue +23 -0
- package/components/ui/stepper/StepperTrigger.vue +26 -0
- package/components/ui/stepper/index.ts +7 -0
- package/components/ui/switch/Switch.vue +7 -5
- package/components/ui/table/Table.vue +1 -1
- package/components/ui/table/TableBody.vue +1 -1
- package/components/ui/table/TableCaption.vue +1 -1
- package/components/ui/table/TableCell.vue +1 -1
- package/components/ui/table/TableEmpty.vue +3 -3
- package/components/ui/table/TableFooter.vue +1 -1
- package/components/ui/table/TableHead.vue +1 -1
- package/components/ui/table/TableHeader.vue +1 -1
- package/components/ui/table/TableRow.vue +1 -1
- package/components/ui/table/index.ts +3 -2
- package/components/ui/tabs/Tabs.vue +2 -2
- package/components/ui/tabs/TabsContent.vue +3 -3
- package/components/ui/tabs/TabsList.vue +4 -4
- package/components/ui/tabs/TabsTrigger.vue +6 -4
- package/components/ui/tabs/index.ts +2 -2
- package/components/ui/tags-input/TagsInput.vue +3 -3
- package/components/ui/tags-input/TagsInputInput.vue +3 -3
- package/components/ui/tags-input/TagsInputItem.vue +3 -3
- package/components/ui/tags-input/TagsInputItemDelete.vue +3 -3
- package/components/ui/tags-input/TagsInputItemText.vue +3 -3
- package/components/ui/textarea/Textarea.vue +1 -1
- package/components/ui/toast/Toast.vue +2 -2
- package/components/ui/toast/ToastAction.vue +3 -3
- package/components/ui/toast/ToastClose.vue +3 -3
- package/components/ui/toast/ToastDescription.vue +3 -3
- package/components/ui/toast/ToastProvider.vue +1 -1
- package/components/ui/toast/ToastTitle.vue +3 -3
- package/components/ui/toast/ToastViewport.vue +3 -3
- package/components/ui/toast/Toaster.vue +1 -1
- package/components/ui/toast/index.ts +6 -6
- package/components/ui/toast/use-toast.ts +1 -1
- package/components/ui/toggle/Toggle.vue +3 -3
- package/components/ui/toggle/index.ts +5 -5
- package/components/ui/toggle-group/ToggleGroup.vue +4 -4
- package/components/ui/toggle-group/ToggleGroupItem.vue +4 -4
- package/components/ui/tooltip/Tooltip.vue +1 -1
- package/components/ui/tooltip/TooltipContent.vue +3 -3
- package/components/ui/tooltip/TooltipProvider.vue +1 -1
- package/components/ui/tooltip/TooltipTrigger.vue +1 -1
- package/components/ui/tooltip/index.ts +1 -1
- package/components.json +10 -7
- package/lib/utils.ts +9 -0
- package/nuxt.config.ts +1 -1
- package/package.json +13 -13
- package/tsconfig.json +1 -1
- package/components/ui/accordion/index.js +0 -4
- package/components/ui/alert/index.js +0 -21
- package/components/ui/button/index.js +0 -33
- package/components/ui/card/index.js +0 -6
- package/components/ui/command/index.js +0 -9
- package/components/ui/dialog/index.js +0 -9
- package/components/ui/form/index.js +0 -7
- package/components/ui/form/injectionKeys.js +0 -1
- package/components/ui/form/useFormField.js +0 -36
- package/components/ui/input/index.js +0 -1
- package/components/ui/label/index.js +0 -1
- package/components/ui/popover/index.js +0 -3
- package/components/ui/progress/index.js +0 -1
- package/components/ui/separator/index.js +0 -1
- package/components/ui/v-calendar/Calendar.vue +0 -331
- package/components/ui/v-calendar/index.ts +0 -22
- package/layouts/app.vue +0 -224
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { Label, type LabelProps } from '
|
|
4
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
|
+
import { Label, type LabelProps } from 'reka-ui'
|
|
4
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
5
5
|
|
|
6
6
|
const props = defineProps<LabelProps & { class?: HTMLAttributes['class'] }>()
|
|
7
7
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
3
|
import {
|
|
4
4
|
MenubarRoot,
|
|
5
5
|
type MenubarRootEmits,
|
|
6
6
|
type MenubarRootProps,
|
|
7
7
|
useForwardPropsEmits,
|
|
8
|
-
} from '
|
|
9
|
-
import {
|
|
8
|
+
} from 'reka-ui'
|
|
9
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
10
10
|
|
|
11
11
|
const props = defineProps<MenubarRootProps & { class?: HTMLAttributes['class'] }>()
|
|
12
12
|
const emits = defineEmits<MenubarRootEmits>()
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
|
+
import { Check } from 'lucide-vue-next'
|
|
3
4
|
import {
|
|
4
5
|
MenubarCheckboxItem,
|
|
5
6
|
type MenubarCheckboxItemEmits,
|
|
6
7
|
type MenubarCheckboxItemProps,
|
|
7
8
|
MenubarItemIndicator,
|
|
8
9
|
useForwardPropsEmits,
|
|
9
|
-
} from '
|
|
10
|
-
import {
|
|
11
|
-
import { cn } from '@/lib/utils'
|
|
10
|
+
} from 'reka-ui'
|
|
11
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
12
12
|
|
|
13
13
|
const props = defineProps<MenubarCheckboxItemProps & { class?: HTMLAttributes['class'] }>()
|
|
14
14
|
const emits = defineEmits<MenubarCheckboxItemEmits>()
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
3
|
import {
|
|
4
4
|
MenubarContent,
|
|
5
5
|
type MenubarContentProps,
|
|
6
6
|
MenubarPortal,
|
|
7
7
|
useForwardProps,
|
|
8
|
-
} from '
|
|
9
|
-
import {
|
|
8
|
+
} from 'reka-ui'
|
|
9
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
10
10
|
|
|
11
11
|
const props = withDefaults(
|
|
12
12
|
defineProps<MenubarContentProps & { class?: HTMLAttributes['class'] }>(),
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
3
|
import {
|
|
4
4
|
MenubarItem,
|
|
5
5
|
type MenubarItemEmits,
|
|
6
6
|
type MenubarItemProps,
|
|
7
7
|
useForwardPropsEmits,
|
|
8
|
-
} from '
|
|
9
|
-
import {
|
|
8
|
+
} from 'reka-ui'
|
|
9
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
10
10
|
|
|
11
11
|
const props = defineProps<MenubarItemProps & { class?: HTMLAttributes['class'], inset?: boolean }>()
|
|
12
12
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import type { HTMLAttributes } from 'vue'
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { cn } from '~/lib/utils'
|
|
4
|
+
import { MenubarLabel, type MenubarLabelProps } from 'reka-ui'
|
|
5
5
|
|
|
6
6
|
const props = defineProps<MenubarLabelProps & { class?: HTMLAttributes['class'], inset?: boolean }>()
|
|
7
7
|
</script>
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
|
+
import { Circle } from 'lucide-vue-next'
|
|
3
4
|
import {
|
|
4
5
|
MenubarItemIndicator,
|
|
5
6
|
MenubarRadioItem,
|
|
6
7
|
type MenubarRadioItemEmits,
|
|
7
8
|
type MenubarRadioItemProps,
|
|
8
9
|
useForwardPropsEmits,
|
|
9
|
-
} from '
|
|
10
|
-
import {
|
|
11
|
-
import { cn } from '@/lib/utils'
|
|
10
|
+
} from 'reka-ui'
|
|
11
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
12
12
|
|
|
13
13
|
const props = defineProps<MenubarRadioItemProps & { class?: HTMLAttributes['class'] }>()
|
|
14
14
|
const emits = defineEmits<MenubarRadioItemEmits>()
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { MenubarSeparator, type MenubarSeparatorProps, useForwardProps } from '
|
|
4
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
|
+
import { MenubarSeparator, type MenubarSeparatorProps, useForwardProps } from 'reka-ui'
|
|
4
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
5
5
|
|
|
6
6
|
const props = defineProps<MenubarSeparatorProps & { class?: HTMLAttributes['class'] }>()
|
|
7
7
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
3
|
import {
|
|
4
4
|
MenubarPortal,
|
|
5
5
|
MenubarSubContent,
|
|
6
6
|
type MenubarSubContentEmits,
|
|
7
7
|
type MenubarSubContentProps,
|
|
8
8
|
useForwardPropsEmits,
|
|
9
|
-
} from '
|
|
10
|
-
import {
|
|
9
|
+
} from 'reka-ui'
|
|
10
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
11
11
|
|
|
12
12
|
const props = defineProps<MenubarSubContentProps & { class?: HTMLAttributes['class'] }>()
|
|
13
13
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { MenubarSubTrigger, type MenubarSubTriggerProps, useForwardProps } from 'radix-vue'
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
4
3
|
import { ChevronRight } from 'lucide-vue-next'
|
|
5
|
-
import {
|
|
4
|
+
import { MenubarSubTrigger, type MenubarSubTriggerProps, useForwardProps } from 'reka-ui'
|
|
5
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
6
6
|
|
|
7
7
|
const props = defineProps<MenubarSubTriggerProps & { class?: HTMLAttributes['class'], inset?: boolean }>()
|
|
8
8
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { MenubarTrigger, type MenubarTriggerProps, useForwardProps } from '
|
|
4
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
|
+
import { MenubarTrigger, type MenubarTriggerProps, useForwardProps } from 'reka-ui'
|
|
4
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
5
5
|
|
|
6
6
|
const props = defineProps<MenubarTriggerProps & { class?: HTMLAttributes['class'] }>()
|
|
7
7
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
export { default as Menubar } from './Menubar.vue'
|
|
2
|
-
export { default as
|
|
2
|
+
export { default as MenubarCheckboxItem } from './MenubarCheckboxItem.vue'
|
|
3
3
|
export { default as MenubarContent } from './MenubarContent.vue'
|
|
4
4
|
export { default as MenubarGroup } from './MenubarGroup.vue'
|
|
5
|
+
export { default as MenubarItem } from './MenubarItem.vue'
|
|
6
|
+
export { default as MenubarLabel } from './MenubarLabel.vue'
|
|
5
7
|
export { default as MenubarMenu } from './MenubarMenu.vue'
|
|
6
8
|
export { default as MenubarRadioGroup } from './MenubarRadioGroup.vue'
|
|
7
9
|
export { default as MenubarRadioItem } from './MenubarRadioItem.vue'
|
|
8
|
-
export { default as MenubarCheckboxItem } from './MenubarCheckboxItem.vue'
|
|
9
10
|
export { default as MenubarSeparator } from './MenubarSeparator.vue'
|
|
11
|
+
export { default as MenubarShortcut } from './MenubarShortcut.vue'
|
|
10
12
|
export { default as MenubarSub } from './MenubarSub.vue'
|
|
11
13
|
export { default as MenubarSubContent } from './MenubarSubContent.vue'
|
|
12
14
|
export { default as MenubarSubTrigger } from './MenubarSubTrigger.vue'
|
|
13
15
|
export { default as MenubarTrigger } from './MenubarTrigger.vue'
|
|
14
|
-
export { default as MenubarShortcut } from './MenubarShortcut.vue'
|
|
15
|
-
export { default as MenubarLabel } from './MenubarLabel.vue'
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
3
|
import {
|
|
4
4
|
NavigationMenuRoot,
|
|
5
5
|
type NavigationMenuRootEmits,
|
|
6
6
|
type NavigationMenuRootProps,
|
|
7
7
|
useForwardPropsEmits,
|
|
8
|
-
} from '
|
|
8
|
+
} from 'reka-ui'
|
|
9
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
9
10
|
import NavigationMenuViewport from './NavigationMenuViewport.vue'
|
|
10
|
-
import { cn } from '@/lib/utils'
|
|
11
11
|
|
|
12
12
|
const props = defineProps<NavigationMenuRootProps & { class?: HTMLAttributes['class'] }>()
|
|
13
13
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
3
|
import {
|
|
4
4
|
NavigationMenuContent,
|
|
5
5
|
type NavigationMenuContentEmits,
|
|
6
6
|
type NavigationMenuContentProps,
|
|
7
7
|
useForwardPropsEmits,
|
|
8
|
-
} from '
|
|
9
|
-
import {
|
|
8
|
+
} from 'reka-ui'
|
|
9
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
10
10
|
|
|
11
11
|
const props = defineProps<NavigationMenuContentProps & { class?: HTMLAttributes['class'] }>()
|
|
12
12
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { NavigationMenuIndicator, type NavigationMenuIndicatorProps, useForwardProps } from '
|
|
4
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
|
+
import { NavigationMenuIndicator, type NavigationMenuIndicatorProps, useForwardProps } from 'reka-ui'
|
|
4
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
5
5
|
|
|
6
6
|
const props = defineProps<NavigationMenuIndicatorProps & { class?: HTMLAttributes['class'] }>()
|
|
7
7
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { NavigationMenuList, type NavigationMenuListProps, useForwardProps } from '
|
|
4
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
|
+
import { NavigationMenuList, type NavigationMenuListProps, useForwardProps } from 'reka-ui'
|
|
4
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
5
5
|
|
|
6
6
|
const props = defineProps<NavigationMenuListProps & { class?: HTMLAttributes['class'] }>()
|
|
7
7
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
|
+
import { ChevronDown } from 'lucide-vue-next'
|
|
3
4
|
import {
|
|
4
5
|
NavigationMenuTrigger,
|
|
5
6
|
type NavigationMenuTriggerProps,
|
|
6
7
|
useForwardProps,
|
|
7
|
-
} from '
|
|
8
|
-
import {
|
|
8
|
+
} from 'reka-ui'
|
|
9
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
9
10
|
import { navigationMenuTriggerStyle } from '.'
|
|
10
|
-
import { cn } from '@/lib/utils'
|
|
11
11
|
|
|
12
12
|
const props = defineProps<NavigationMenuTriggerProps & { class?: HTMLAttributes['class'] }>()
|
|
13
13
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
3
|
import {
|
|
4
4
|
NavigationMenuViewport,
|
|
5
5
|
type NavigationMenuViewportProps,
|
|
6
6
|
useForwardProps,
|
|
7
|
-
} from '
|
|
8
|
-
import {
|
|
7
|
+
} from 'reka-ui'
|
|
8
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
9
9
|
|
|
10
10
|
const props = defineProps<NavigationMenuViewportProps & { class?: HTMLAttributes['class'] }>()
|
|
11
11
|
|
|
@@ -24,7 +24,7 @@ const forwardedProps = useForwardProps(delegatedProps)
|
|
|
24
24
|
v-bind="forwardedProps"
|
|
25
25
|
:class="
|
|
26
26
|
cn(
|
|
27
|
-
'origin-top-center relative mt-1.5 h-[--
|
|
27
|
+
'origin-top-center relative mt-1.5 h-[--reka-navigation-menu-viewport-height] w-full overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 md:w-[--reka-navigation-menu-viewport-width]',
|
|
28
28
|
props.class,
|
|
29
29
|
)
|
|
30
30
|
"
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { cva } from 'class-variance-authority'
|
|
2
2
|
|
|
3
3
|
export { default as NavigationMenu } from './NavigationMenu.vue'
|
|
4
|
-
export { default as NavigationMenuList } from './NavigationMenuList.vue'
|
|
5
|
-
export { default as NavigationMenuItem } from './NavigationMenuItem.vue'
|
|
6
|
-
export { default as NavigationMenuTrigger } from './NavigationMenuTrigger.vue'
|
|
7
4
|
export { default as NavigationMenuContent } from './NavigationMenuContent.vue'
|
|
5
|
+
export { default as NavigationMenuIndicator } from './NavigationMenuIndicator.vue'
|
|
6
|
+
export { default as NavigationMenuItem } from './NavigationMenuItem.vue'
|
|
8
7
|
export { default as NavigationMenuLink } from './NavigationMenuLink.vue'
|
|
8
|
+
export { default as NavigationMenuList } from './NavigationMenuList.vue'
|
|
9
|
+
export { default as NavigationMenuTrigger } from './NavigationMenuTrigger.vue'
|
|
10
|
+
export { default as NavigationMenuViewport } from './NavigationMenuViewport.vue'
|
|
9
11
|
|
|
10
12
|
export const navigationMenuTriggerStyle = cva(
|
|
11
13
|
'group inline-flex h-10 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[active]:bg-accent/50 data-[state=open]:bg-accent/50',
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import type { NumberFieldRootEmits, NumberFieldRootProps } from '
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
2
|
+
import type { NumberFieldRootEmits, NumberFieldRootProps } from 'reka-ui'
|
|
3
|
+
import { cn } from '~/lib/utils'
|
|
4
|
+
import { NumberFieldRoot, useForwardPropsEmits } from 'reka-ui'
|
|
5
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
6
6
|
|
|
7
7
|
const props = defineProps<NumberFieldRootProps & { class?: HTMLAttributes['class'] }>()
|
|
8
8
|
const emits = defineEmits<NumberFieldRootEmits>()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import type { HTMLAttributes } from 'vue'
|
|
3
|
-
import { cn } from '
|
|
3
|
+
import { cn } from '~/lib/utils'
|
|
4
4
|
|
|
5
5
|
const props = defineProps<{
|
|
6
6
|
class?: HTMLAttributes['class']
|
|
@@ -8,7 +8,7 @@ const props = defineProps<{
|
|
|
8
8
|
</script>
|
|
9
9
|
|
|
10
10
|
<template>
|
|
11
|
-
<div :class="cn('relative', props.class)">
|
|
11
|
+
<div :class="cn('relative [&>[data-slot=input]]:has-[[data-slot=increment]]:pr-5 [&>[data-slot=input]]:has-[[data-slot=decrement]]:pl-5', props.class)">
|
|
12
12
|
<slot />
|
|
13
13
|
</div>
|
|
14
14
|
</template>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import type { NumberFieldDecrementProps } from '
|
|
3
|
-
import {
|
|
4
|
-
import { type HTMLAttributes, computed } from 'vue'
|
|
2
|
+
import type { NumberFieldDecrementProps } from 'reka-ui'
|
|
3
|
+
import { cn } from '~/lib/utils'
|
|
5
4
|
import { Minus } from 'lucide-vue-next'
|
|
6
|
-
import {
|
|
5
|
+
import { NumberFieldDecrement, useForwardProps } from 'reka-ui'
|
|
6
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
7
7
|
|
|
8
8
|
const props = defineProps<NumberFieldDecrementProps & { class?: HTMLAttributes['class'] }>()
|
|
9
9
|
|
|
@@ -17,7 +17,7 @@ const forwarded = useForwardProps(delegatedProps)
|
|
|
17
17
|
</script>
|
|
18
18
|
|
|
19
19
|
<template>
|
|
20
|
-
<NumberFieldDecrement v-bind="forwarded" :class="cn('absolute top-1/2 -translate-y-1/2 left-0 p-3 disabled:cursor-not-allowed disabled:opacity-20', props.class)">
|
|
20
|
+
<NumberFieldDecrement data-slot="decrement" v-bind="forwarded" :class="cn('absolute top-1/2 -translate-y-1/2 left-0 p-3 disabled:cursor-not-allowed disabled:opacity-20', props.class)">
|
|
21
21
|
<slot>
|
|
22
22
|
<Minus class="h-4 w-4" />
|
|
23
23
|
</slot>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import type { NumberFieldIncrementProps } from '
|
|
3
|
-
import {
|
|
4
|
-
import { type HTMLAttributes, computed } from 'vue'
|
|
2
|
+
import type { NumberFieldIncrementProps } from 'reka-ui'
|
|
3
|
+
import { cn } from '~/lib/utils'
|
|
5
4
|
import { Plus } from 'lucide-vue-next'
|
|
6
|
-
import {
|
|
5
|
+
import { NumberFieldIncrement, useForwardProps } from 'reka-ui'
|
|
6
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
7
7
|
|
|
8
8
|
const props = defineProps<NumberFieldIncrementProps & { class?: HTMLAttributes['class'] }>()
|
|
9
9
|
|
|
@@ -17,7 +17,7 @@ const forwarded = useForwardProps(delegatedProps)
|
|
|
17
17
|
</script>
|
|
18
18
|
|
|
19
19
|
<template>
|
|
20
|
-
<NumberFieldIncrement v-bind="forwarded" :class="cn('absolute top-1/2 -translate-y-1/2 right-0 disabled:cursor-not-allowed disabled:opacity-20 p-3', props.class)">
|
|
20
|
+
<NumberFieldIncrement data-slot="increment" v-bind="forwarded" :class="cn('absolute top-1/2 -translate-y-1/2 right-0 disabled:cursor-not-allowed disabled:opacity-20 p-3', props.class)">
|
|
21
21
|
<slot>
|
|
22
22
|
<Plus class="h-4 w-4" />
|
|
23
23
|
</slot>
|
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { cn } from '
|
|
2
|
+
import type { HTMLAttributes } from 'vue'
|
|
3
|
+
import { cn } from '~/lib/utils'
|
|
4
|
+
import { NumberFieldInput } from 'reka-ui'
|
|
5
|
+
|
|
6
|
+
const props = defineProps<{
|
|
7
|
+
class?: HTMLAttributes['class']
|
|
8
|
+
}>()
|
|
4
9
|
</script>
|
|
5
10
|
|
|
6
11
|
<template>
|
|
7
|
-
<NumberFieldInput
|
|
12
|
+
<NumberFieldInput
|
|
13
|
+
data-slot="input"
|
|
14
|
+
:class="cn('flex h-10 w-full rounded-md border border-input bg-background py-2 text-sm text-center ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50', props.class)"
|
|
15
|
+
/>
|
|
8
16
|
</template>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { default as NumberField } from './NumberField.vue'
|
|
2
|
-
export { default as NumberFieldInput } from './NumberFieldInput.vue'
|
|
3
|
-
export { default as NumberFieldIncrement } from './NumberFieldIncrement.vue'
|
|
4
|
-
export { default as NumberFieldDecrement } from './NumberFieldDecrement.vue'
|
|
5
2
|
export { default as NumberFieldContent } from './NumberFieldContent.vue'
|
|
3
|
+
export { default as NumberFieldDecrement } from './NumberFieldDecrement.vue'
|
|
4
|
+
export { default as NumberFieldIncrement } from './NumberFieldIncrement.vue'
|
|
5
|
+
export { default as NumberFieldInput } from './NumberFieldInput.vue'
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { PaginationEllipsis, type PaginationEllipsisProps } from 'radix-vue'
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
4
3
|
import { MoreHorizontal } from 'lucide-vue-next'
|
|
5
|
-
import {
|
|
4
|
+
import { PaginationEllipsis, type PaginationEllipsisProps } from 'reka-ui'
|
|
5
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
6
6
|
|
|
7
7
|
const props = defineProps<PaginationEllipsisProps & { class?: HTMLAttributes['class'] }>()
|
|
8
8
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { PaginationFirst, type PaginationFirstProps } from 'radix-vue'
|
|
4
|
-
import { ChevronsLeft } from 'lucide-vue-next'
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
5
3
|
import {
|
|
6
4
|
Button,
|
|
7
|
-
} from '
|
|
8
|
-
import {
|
|
5
|
+
} from '~/components/ui/button'
|
|
6
|
+
import { ChevronsLeft } from 'lucide-vue-next'
|
|
7
|
+
import { PaginationFirst, type PaginationFirstProps } from 'reka-ui'
|
|
8
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
9
9
|
|
|
10
10
|
const props = withDefaults(defineProps<PaginationFirstProps & { class?: HTMLAttributes['class'] }>(), {
|
|
11
11
|
asChild: true,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { PaginationLast, type PaginationLastProps } from 'radix-vue'
|
|
4
|
-
import { ChevronsRight } from 'lucide-vue-next'
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
5
3
|
import {
|
|
6
4
|
Button,
|
|
7
|
-
} from '
|
|
8
|
-
import {
|
|
5
|
+
} from '~/components/ui/button'
|
|
6
|
+
import { ChevronsRight } from 'lucide-vue-next'
|
|
7
|
+
import { PaginationLast, type PaginationLastProps } from 'reka-ui'
|
|
8
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
9
9
|
|
|
10
10
|
const props = withDefaults(defineProps<PaginationLastProps & { class?: HTMLAttributes['class'] }>(), {
|
|
11
11
|
asChild: true,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { PaginationNext, type PaginationNextProps } from 'radix-vue'
|
|
4
|
-
import { ChevronRight } from 'lucide-vue-next'
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
5
3
|
import {
|
|
6
4
|
Button,
|
|
7
|
-
} from '
|
|
8
|
-
import {
|
|
5
|
+
} from '~/components/ui/button'
|
|
6
|
+
import { ChevronRight } from 'lucide-vue-next'
|
|
7
|
+
import { PaginationNext, type PaginationNextProps } from 'reka-ui'
|
|
8
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
9
9
|
|
|
10
10
|
const props = withDefaults(defineProps<PaginationNextProps & { class?: HTMLAttributes['class'] }>(), {
|
|
11
11
|
asChild: true,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { PaginationPrev, type PaginationPrevProps } from 'radix-vue'
|
|
4
|
-
import { ChevronLeft } from 'lucide-vue-next'
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
5
3
|
import {
|
|
6
4
|
Button,
|
|
7
|
-
} from '
|
|
8
|
-
import {
|
|
5
|
+
} from '~/components/ui/button'
|
|
6
|
+
import { ChevronLeft } from 'lucide-vue-next'
|
|
7
|
+
import { PaginationPrev, type PaginationPrevProps } from 'reka-ui'
|
|
8
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
9
9
|
|
|
10
10
|
const props = withDefaults(defineProps<PaginationPrevProps & { class?: HTMLAttributes['class'] }>(), {
|
|
11
11
|
asChild: true,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export {
|
|
2
|
-
PaginationRoot as Pagination,
|
|
3
|
-
PaginationList,
|
|
4
|
-
PaginationListItem,
|
|
5
|
-
} from 'radix-vue'
|
|
6
1
|
export { default as PaginationEllipsis } from './PaginationEllipsis.vue'
|
|
7
2
|
export { default as PaginationFirst } from './PaginationFirst.vue'
|
|
8
3
|
export { default as PaginationLast } from './PaginationLast.vue'
|
|
9
4
|
export { default as PaginationNext } from './PaginationNext.vue'
|
|
10
5
|
export { default as PaginationPrev } from './PaginationPrev.vue'
|
|
6
|
+
export {
|
|
7
|
+
PaginationRoot as Pagination,
|
|
8
|
+
PaginationList,
|
|
9
|
+
PaginationListItem,
|
|
10
|
+
} from 'reka-ui'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { PinInputRoot, type PinInputRootEmits, type PinInputRootProps, useForwardPropsEmits } from '
|
|
4
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
|
+
import { PinInputRoot, type PinInputRootEmits, type PinInputRootProps, useForwardPropsEmits } from 'reka-ui'
|
|
4
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
5
5
|
|
|
6
6
|
const props = withDefaults(defineProps<PinInputRootProps & { class?: HTMLAttributes['class'] }>(), {
|
|
7
7
|
modelValue: () => [],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import {
|
|
3
|
-
import { Primitive, type PrimitiveProps, useForwardProps } from '
|
|
4
|
-
import {
|
|
2
|
+
import { cn } from '~/lib/utils'
|
|
3
|
+
import { Primitive, type PrimitiveProps, useForwardProps } from 'reka-ui'
|
|
4
|
+
import { computed, type HTMLAttributes } from 'vue'
|
|
5
5
|
|
|
6
6
|
const props = defineProps<PrimitiveProps & { class?: HTMLAttributes['class'] }>()
|
|
7
7
|
const delegatedProps = computed(() => {
|