@edgedev/create-edge-app 1.1.5 → 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.
Files changed (355) hide show
  1. package/assets/css/tailwind.css +12 -2
  2. package/components/ui/accordion/Accordion.vue +1 -1
  3. package/components/ui/accordion/AccordionContent.vue +3 -3
  4. package/components/ui/accordion/AccordionItem.vue +3 -3
  5. package/components/ui/accordion/AccordionTrigger.vue +4 -4
  6. package/components/ui/alert/Alert.vue +1 -1
  7. package/components/ui/alert/AlertDescription.vue +1 -1
  8. package/components/ui/alert/AlertTitle.vue +1 -1
  9. package/components/ui/alert/index.ts +2 -2
  10. package/components/ui/alert-dialog/AlertDialog.vue +1 -1
  11. package/components/ui/alert-dialog/AlertDialogAction.vue +4 -4
  12. package/components/ui/alert-dialog/AlertDialogCancel.vue +12 -5
  13. package/components/ui/alert-dialog/AlertDialogContent.vue +4 -4
  14. package/components/ui/alert-dialog/AlertDialogDescription.vue +3 -3
  15. package/components/ui/alert-dialog/AlertDialogFooter.vue +1 -1
  16. package/components/ui/alert-dialog/AlertDialogHeader.vue +1 -1
  17. package/components/ui/alert-dialog/AlertDialogTitle.vue +3 -3
  18. package/components/ui/alert-dialog/AlertDialogTrigger.vue +1 -1
  19. package/components/ui/alert-dialog/index.ts +5 -5
  20. package/components/ui/aspect-ratio/AspectRatio.vue +1 -1
  21. package/components/ui/auto-form/AutoForm.vue +8 -8
  22. package/components/ui/auto-form/AutoFormField.vue +1 -1
  23. package/components/ui/auto-form/AutoFormFieldArray.vue +9 -9
  24. package/components/ui/auto-form/AutoFormFieldBoolean.vue +9 -9
  25. package/components/ui/auto-form/AutoFormFieldDate.vue +9 -9
  26. package/components/ui/auto-form/AutoFormFieldEnum.vue +8 -8
  27. package/components/ui/auto-form/AutoFormFieldFile.vue +6 -6
  28. package/components/ui/auto-form/AutoFormFieldInput.vue +5 -5
  29. package/components/ui/auto-form/AutoFormFieldNumber.vue +4 -4
  30. package/components/ui/auto-form/AutoFormFieldObject.vue +5 -5
  31. package/components/ui/auto-form/AutoFormLabel.vue +1 -1
  32. package/components/ui/auto-form/constant.ts +2 -1
  33. package/components/ui/auto-form/dependencies.ts +4 -4
  34. package/components/ui/auto-form/index.ts +4 -4
  35. package/components/ui/auto-form/interface.ts +15 -1
  36. package/components/ui/auto-form/utils.ts +23 -6
  37. package/components/ui/avatar/Avatar.vue +3 -3
  38. package/components/ui/avatar/AvatarFallback.vue +1 -1
  39. package/components/ui/avatar/AvatarImage.vue +5 -2
  40. package/components/ui/avatar/index.ts +2 -2
  41. package/components/ui/badge/Badge.vue +1 -1
  42. package/components/ui/badge/index.ts +1 -1
  43. package/components/ui/breadcrumb/BreadcrumbEllipsis.vue +1 -1
  44. package/components/ui/breadcrumb/BreadcrumbItem.vue +1 -1
  45. package/components/ui/breadcrumb/BreadcrumbLink.vue +2 -2
  46. package/components/ui/breadcrumb/BreadcrumbList.vue +1 -1
  47. package/components/ui/breadcrumb/BreadcrumbPage.vue +1 -1
  48. package/components/ui/breadcrumb/BreadcrumbSeparator.vue +2 -2
  49. package/components/ui/button/Button.vue +2 -2
  50. package/components/ui/button/index.ts +3 -3
  51. package/components/ui/calendar/Calendar.vue +3 -3
  52. package/components/ui/calendar/CalendarCell.vue +4 -4
  53. package/components/ui/calendar/CalendarCellTrigger.vue +5 -5
  54. package/components/ui/calendar/CalendarGrid.vue +3 -3
  55. package/components/ui/calendar/CalendarGridBody.vue +1 -1
  56. package/components/ui/calendar/CalendarGridHead.vue +1 -1
  57. package/components/ui/calendar/CalendarGridRow.vue +3 -3
  58. package/components/ui/calendar/CalendarHeadCell.vue +3 -3
  59. package/components/ui/calendar/CalendarHeader.vue +3 -3
  60. package/components/ui/calendar/CalendarHeading.vue +7 -3
  61. package/components/ui/calendar/CalendarNextButton.vue +4 -4
  62. package/components/ui/calendar/CalendarPrevButton.vue +4 -4
  63. package/components/ui/card/Card.vue +1 -1
  64. package/components/ui/card/CardContent.vue +1 -1
  65. package/components/ui/card/CardDescription.vue +1 -1
  66. package/components/ui/card/CardFooter.vue +1 -1
  67. package/components/ui/card/CardHeader.vue +1 -1
  68. package/components/ui/card/CardTitle.vue +1 -1
  69. package/components/ui/card/index.ts +3 -3
  70. package/components/ui/carousel/Carousel.vue +15 -7
  71. package/components/ui/carousel/CarouselContent.vue +2 -2
  72. package/components/ui/carousel/CarouselItem.vue +2 -2
  73. package/components/ui/carousel/CarouselNext.vue +4 -3
  74. package/components/ui/carousel/CarouselPrevious.vue +4 -3
  75. package/components/ui/carousel/index.ts +5 -5
  76. package/components/ui/carousel/interface.ts +14 -8
  77. package/components/ui/carousel/useCarousel.ts +5 -8
  78. package/components/ui/chart/ChartCrosshair.vue +2 -2
  79. package/components/ui/chart/ChartLegend.vue +3 -3
  80. package/components/ui/chart/ChartSingleTooltip.vue +6 -7
  81. package/components/ui/chart/ChartTooltip.vue +1 -1
  82. package/components/ui/chart/index.ts +6 -6
  83. package/components/ui/chart-area/AreaChart.vue +10 -7
  84. package/components/ui/chart-bar/BarChart.vue +5 -5
  85. package/components/ui/chart-donut/DonutChart.vue +6 -6
  86. package/components/ui/chart-line/LineChart.vue +5 -5
  87. package/components/ui/checkbox/Checkbox.vue +4 -4
  88. package/components/ui/collapsible/Collapsible.vue +2 -2
  89. package/components/ui/collapsible/CollapsibleContent.vue +1 -1
  90. package/components/ui/collapsible/CollapsibleTrigger.vue +1 -1
  91. package/components/ui/collapsible/index.ts +1 -1
  92. package/components/ui/combobox/Combobox.vue +14 -0
  93. package/components/ui/combobox/ComboboxAnchor.vue +25 -0
  94. package/components/ui/combobox/ComboboxEmpty.vue +20 -0
  95. package/components/ui/combobox/ComboboxGroup.vue +29 -0
  96. package/components/ui/combobox/ComboboxInput.vue +28 -0
  97. package/components/ui/combobox/ComboboxItem.vue +26 -0
  98. package/components/ui/combobox/ComboboxList.vue +34 -0
  99. package/components/ui/combobox/ComboboxSeparator.vue +23 -0
  100. package/components/ui/combobox/ComboboxTrigger.vue +26 -0
  101. package/components/ui/combobox/index.ts +10 -0
  102. package/components/ui/command/Command.vue +71 -9
  103. package/components/ui/command/CommandDialog.vue +3 -3
  104. package/components/ui/command/CommandEmpty.vue +12 -7
  105. package/components/ui/command/CommandGroup.vue +26 -9
  106. package/components/ui/command/CommandInput.vue +10 -6
  107. package/components/ui/command/CommandItem.vue +61 -9
  108. package/components/ui/command/CommandList.vue +8 -11
  109. package/components/ui/command/CommandSeparator.vue +7 -7
  110. package/components/ui/command/CommandShortcut.vue +1 -1
  111. package/components/ui/command/index.ts +16 -0
  112. package/components/ui/context-menu/ContextMenu.vue +2 -2
  113. package/components/ui/context-menu/ContextMenuCheckboxItem.vue +4 -4
  114. package/components/ui/context-menu/ContextMenuContent.vue +3 -3
  115. package/components/ui/context-menu/ContextMenuGroup.vue +1 -1
  116. package/components/ui/context-menu/ContextMenuItem.vue +3 -3
  117. package/components/ui/context-menu/ContextMenuLabel.vue +3 -3
  118. package/components/ui/context-menu/ContextMenuPortal.vue +1 -1
  119. package/components/ui/context-menu/ContextMenuRadioGroup.vue +1 -1
  120. package/components/ui/context-menu/ContextMenuRadioItem.vue +4 -4
  121. package/components/ui/context-menu/ContextMenuSeparator.vue +3 -3
  122. package/components/ui/context-menu/ContextMenuShortcut.vue +1 -1
  123. package/components/ui/context-menu/ContextMenuSub.vue +1 -1
  124. package/components/ui/context-menu/ContextMenuSubContent.vue +3 -3
  125. package/components/ui/context-menu/ContextMenuSubTrigger.vue +4 -4
  126. package/components/ui/context-menu/ContextMenuTrigger.vue +1 -1
  127. package/components/ui/context-menu/index.ts +6 -6
  128. package/components/ui/dialog/Dialog.vue +1 -1
  129. package/components/ui/dialog/DialogClose.vue +1 -1
  130. package/components/ui/dialog/DialogContent.vue +5 -5
  131. package/components/ui/dialog/DialogDescription.vue +3 -3
  132. package/components/ui/dialog/DialogFooter.vue +1 -1
  133. package/components/ui/dialog/DialogHeader.vue +1 -1
  134. package/components/ui/dialog/DialogScrollContent.vue +5 -5
  135. package/components/ui/dialog/DialogTitle.vue +3 -3
  136. package/components/ui/dialog/DialogTrigger.vue +1 -1
  137. package/components/ui/dialog/index.ts +5 -5
  138. package/components/ui/drawer/Drawer.vue +1 -1
  139. package/components/ui/drawer/DrawerContent.vue +4 -4
  140. package/components/ui/drawer/DrawerDescription.vue +2 -2
  141. package/components/ui/drawer/DrawerFooter.vue +1 -1
  142. package/components/ui/drawer/DrawerHeader.vue +1 -1
  143. package/components/ui/drawer/DrawerOverlay.vue +3 -3
  144. package/components/ui/drawer/DrawerTitle.vue +2 -2
  145. package/components/ui/drawer/index.ts +4 -4
  146. package/components/ui/dropdown-menu/DropdownMenu.vue +1 -1
  147. package/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +4 -4
  148. package/components/ui/dropdown-menu/DropdownMenuContent.vue +3 -3
  149. package/components/ui/dropdown-menu/DropdownMenuGroup.vue +1 -1
  150. package/components/ui/dropdown-menu/DropdownMenuItem.vue +4 -4
  151. package/components/ui/dropdown-menu/DropdownMenuLabel.vue +3 -3
  152. package/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue +1 -1
  153. package/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +4 -4
  154. package/components/ui/dropdown-menu/DropdownMenuSeparator.vue +3 -3
  155. package/components/ui/dropdown-menu/DropdownMenuShortcut.vue +1 -1
  156. package/components/ui/dropdown-menu/DropdownMenuSub.vue +1 -1
  157. package/components/ui/dropdown-menu/DropdownMenuSubContent.vue +3 -3
  158. package/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +4 -4
  159. package/components/ui/dropdown-menu/DropdownMenuTrigger.vue +1 -1
  160. package/components/ui/dropdown-menu/index.ts +8 -8
  161. package/components/ui/form/FormControl.vue +1 -1
  162. package/components/ui/form/FormDescription.vue +1 -1
  163. package/components/ui/form/FormItem.vue +2 -2
  164. package/components/ui/form/FormLabel.vue +3 -3
  165. package/components/ui/form/index.ts +3 -3
  166. package/components/ui/form/useFormField.ts +7 -7
  167. package/components/ui/hover-card/HoverCard.vue +1 -1
  168. package/components/ui/hover-card/HoverCardContent.vue +3 -3
  169. package/components/ui/hover-card/HoverCardTrigger.vue +1 -1
  170. package/components/ui/hover-card/index.ts +1 -1
  171. package/components/ui/input/Input.vue +1 -1
  172. package/components/ui/label/Label.vue +3 -3
  173. package/components/ui/menubar/Menubar.vue +3 -3
  174. package/components/ui/menubar/MenubarCheckboxItem.vue +4 -4
  175. package/components/ui/menubar/MenubarContent.vue +3 -3
  176. package/components/ui/menubar/MenubarGroup.vue +1 -1
  177. package/components/ui/menubar/MenubarItem.vue +3 -3
  178. package/components/ui/menubar/MenubarLabel.vue +2 -2
  179. package/components/ui/menubar/MenubarMenu.vue +1 -1
  180. package/components/ui/menubar/MenubarRadioGroup.vue +1 -1
  181. package/components/ui/menubar/MenubarRadioItem.vue +4 -4
  182. package/components/ui/menubar/MenubarSeparator.vue +3 -3
  183. package/components/ui/menubar/MenubarShortcut.vue +1 -1
  184. package/components/ui/menubar/MenubarSub.vue +1 -1
  185. package/components/ui/menubar/MenubarSubContent.vue +3 -3
  186. package/components/ui/menubar/MenubarSubTrigger.vue +3 -3
  187. package/components/ui/menubar/MenubarTrigger.vue +3 -3
  188. package/components/ui/menubar/index.ts +4 -4
  189. package/components/ui/navigation-menu/NavigationMenu.vue +3 -3
  190. package/components/ui/navigation-menu/NavigationMenuContent.vue +3 -3
  191. package/components/ui/navigation-menu/NavigationMenuIndicator.vue +3 -3
  192. package/components/ui/navigation-menu/NavigationMenuItem.vue +1 -1
  193. package/components/ui/navigation-menu/NavigationMenuLink.vue +1 -1
  194. package/components/ui/navigation-menu/NavigationMenuList.vue +3 -3
  195. package/components/ui/navigation-menu/NavigationMenuTrigger.vue +4 -4
  196. package/components/ui/navigation-menu/NavigationMenuViewport.vue +4 -4
  197. package/components/ui/navigation-menu/index.ts +5 -3
  198. package/components/ui/number-field/NumberField.vue +4 -4
  199. package/components/ui/number-field/NumberFieldContent.vue +2 -2
  200. package/components/ui/number-field/NumberFieldDecrement.vue +5 -5
  201. package/components/ui/number-field/NumberFieldIncrement.vue +5 -5
  202. package/components/ui/number-field/NumberFieldInput.vue +11 -3
  203. package/components/ui/number-field/index.ts +3 -3
  204. package/components/ui/pagination/PaginationEllipsis.vue +3 -3
  205. package/components/ui/pagination/PaginationFirst.vue +5 -5
  206. package/components/ui/pagination/PaginationLast.vue +5 -5
  207. package/components/ui/pagination/PaginationNext.vue +5 -5
  208. package/components/ui/pagination/PaginationPrev.vue +5 -5
  209. package/components/ui/pagination/index.ts +5 -5
  210. package/components/ui/pin-input/PinInput.vue +3 -3
  211. package/components/ui/pin-input/PinInputGroup.vue +3 -3
  212. package/components/ui/pin-input/PinInputInput.vue +3 -3
  213. package/components/ui/pin-input/PinInputSeparator.vue +1 -1
  214. package/components/ui/pin-input/index.ts +1 -1
  215. package/components/ui/popover/Popover.vue +2 -2
  216. package/components/ui/popover/PopoverContent.vue +3 -3
  217. package/components/ui/popover/PopoverTrigger.vue +1 -1
  218. package/components/ui/popover/index.ts +1 -1
  219. package/components/ui/progress/Progress.vue +3 -3
  220. package/components/ui/radio-group/RadioGroup.vue +3 -3
  221. package/components/ui/radio-group/RadioGroupItem.vue +8 -6
  222. package/components/ui/range-calendar/RangeCalendar.vue +3 -3
  223. package/components/ui/range-calendar/RangeCalendarCell.vue +4 -4
  224. package/components/ui/range-calendar/RangeCalendarCellTrigger.vue +5 -5
  225. package/components/ui/range-calendar/RangeCalendarGrid.vue +3 -3
  226. package/components/ui/range-calendar/RangeCalendarGridBody.vue +1 -1
  227. package/components/ui/range-calendar/RangeCalendarGridHead.vue +1 -1
  228. package/components/ui/range-calendar/RangeCalendarGridRow.vue +3 -3
  229. package/components/ui/range-calendar/RangeCalendarHeadCell.vue +4 -4
  230. package/components/ui/range-calendar/RangeCalendarHeader.vue +3 -3
  231. package/components/ui/range-calendar/RangeCalendarHeading.vue +7 -3
  232. package/components/ui/range-calendar/RangeCalendarNextButton.vue +4 -4
  233. package/components/ui/range-calendar/RangeCalendarPrevButton.vue +4 -4
  234. package/components/ui/resizable/ResizableHandle.vue +3 -3
  235. package/components/ui/resizable/ResizablePanelGroup.vue +3 -3
  236. package/components/ui/resizable/index.ts +2 -2
  237. package/components/ui/scroll-area/ScrollArea.vue +3 -3
  238. package/components/ui/scroll-area/ScrollBar.vue +3 -3
  239. package/components/ui/select/Select.vue +2 -2
  240. package/components/ui/select/SelectContent.vue +4 -4
  241. package/components/ui/select/SelectGroup.vue +3 -3
  242. package/components/ui/select/SelectItem.vue +4 -4
  243. package/components/ui/select/SelectItemText.vue +1 -1
  244. package/components/ui/select/SelectLabel.vue +2 -2
  245. package/components/ui/select/SelectScrollDownButton.vue +3 -3
  246. package/components/ui/select/SelectScrollUpButton.vue +3 -3
  247. package/components/ui/select/SelectSeparator.vue +3 -3
  248. package/components/ui/select/SelectTrigger.vue +5 -5
  249. package/components/ui/select/SelectValue.vue +1 -1
  250. package/components/ui/select/index.ts +4 -4
  251. package/components/ui/separator/Separator.vue +21 -6
  252. package/components/ui/sheet/Sheet.vue +1 -1
  253. package/components/ui/sheet/SheetClose.vue +1 -1
  254. package/components/ui/sheet/SheetContent.vue +5 -5
  255. package/components/ui/sheet/SheetDescription.vue +3 -3
  256. package/components/ui/sheet/SheetFooter.vue +1 -1
  257. package/components/ui/sheet/SheetHeader.vue +1 -1
  258. package/components/ui/sheet/SheetTitle.vue +3 -3
  259. package/components/ui/sheet/SheetTrigger.vue +1 -1
  260. package/components/ui/sheet/index.ts +4 -4
  261. package/components/ui/sidebar/Sidebar.vue +8 -8
  262. package/components/ui/sidebar/SidebarContent.vue +1 -1
  263. package/components/ui/sidebar/SidebarFooter.vue +1 -1
  264. package/components/ui/sidebar/SidebarGroup.vue +1 -1
  265. package/components/ui/sidebar/SidebarGroupAction.vue +3 -4
  266. package/components/ui/sidebar/SidebarGroupContent.vue +1 -1
  267. package/components/ui/sidebar/SidebarGroupLabel.vue +3 -3
  268. package/components/ui/sidebar/SidebarHeader.vue +1 -1
  269. package/components/ui/sidebar/SidebarInput.vue +2 -2
  270. package/components/ui/sidebar/SidebarInset.vue +1 -1
  271. package/components/ui/sidebar/SidebarMenu.vue +1 -1
  272. package/components/ui/sidebar/SidebarMenuAction.vue +2 -3
  273. package/components/ui/sidebar/SidebarMenuBadge.vue +1 -1
  274. package/components/ui/sidebar/SidebarMenuButton.vue +1 -1
  275. package/components/ui/sidebar/SidebarMenuButtonChild.vue +2 -2
  276. package/components/ui/sidebar/SidebarMenuItem.vue +1 -1
  277. package/components/ui/sidebar/SidebarMenuSkeleton.vue +2 -2
  278. package/components/ui/sidebar/SidebarMenuSub.vue +1 -1
  279. package/components/ui/sidebar/SidebarMenuSubButton.vue +3 -3
  280. package/components/ui/sidebar/SidebarProvider.vue +2 -2
  281. package/components/ui/sidebar/SidebarRail.vue +1 -1
  282. package/components/ui/sidebar/SidebarSeparator.vue +2 -2
  283. package/components/ui/sidebar/SidebarTrigger.vue +2 -2
  284. package/components/ui/sidebar/utils.ts +1 -1
  285. package/components/ui/skeleton/Skeleton.vue +1 -1
  286. package/components/ui/slider/Slider.vue +7 -7
  287. package/components/ui/stepper/Stepper.vue +31 -0
  288. package/components/ui/stepper/StepperDescription.vue +23 -0
  289. package/components/ui/stepper/StepperIndicator.vue +35 -0
  290. package/components/ui/stepper/StepperItem.vue +27 -0
  291. package/components/ui/stepper/StepperSeparator.vue +31 -0
  292. package/components/ui/stepper/StepperTitle.vue +23 -0
  293. package/components/ui/stepper/StepperTrigger.vue +26 -0
  294. package/components/ui/stepper/index.ts +7 -0
  295. package/components/ui/switch/Switch.vue +7 -5
  296. package/components/ui/table/Table.vue +1 -1
  297. package/components/ui/table/TableBody.vue +1 -1
  298. package/components/ui/table/TableCaption.vue +1 -1
  299. package/components/ui/table/TableCell.vue +1 -1
  300. package/components/ui/table/TableEmpty.vue +3 -3
  301. package/components/ui/table/TableFooter.vue +1 -1
  302. package/components/ui/table/TableHead.vue +1 -1
  303. package/components/ui/table/TableHeader.vue +1 -1
  304. package/components/ui/table/TableRow.vue +1 -1
  305. package/components/ui/table/index.ts +3 -2
  306. package/components/ui/tabs/Tabs.vue +2 -2
  307. package/components/ui/tabs/TabsContent.vue +3 -3
  308. package/components/ui/tabs/TabsList.vue +4 -4
  309. package/components/ui/tabs/TabsTrigger.vue +6 -4
  310. package/components/ui/tabs/index.ts +2 -2
  311. package/components/ui/tags-input/TagsInput.vue +3 -3
  312. package/components/ui/tags-input/TagsInputInput.vue +3 -3
  313. package/components/ui/tags-input/TagsInputItem.vue +3 -3
  314. package/components/ui/tags-input/TagsInputItemDelete.vue +3 -3
  315. package/components/ui/tags-input/TagsInputItemText.vue +3 -3
  316. package/components/ui/textarea/Textarea.vue +1 -1
  317. package/components/ui/toast/Toast.vue +2 -2
  318. package/components/ui/toast/ToastAction.vue +3 -3
  319. package/components/ui/toast/ToastClose.vue +3 -3
  320. package/components/ui/toast/ToastDescription.vue +3 -3
  321. package/components/ui/toast/ToastProvider.vue +1 -1
  322. package/components/ui/toast/ToastTitle.vue +3 -3
  323. package/components/ui/toast/ToastViewport.vue +3 -3
  324. package/components/ui/toast/Toaster.vue +1 -1
  325. package/components/ui/toast/index.ts +6 -6
  326. package/components/ui/toast/use-toast.ts +1 -1
  327. package/components/ui/toggle/Toggle.vue +3 -3
  328. package/components/ui/toggle/index.ts +5 -5
  329. package/components/ui/toggle-group/ToggleGroup.vue +4 -4
  330. package/components/ui/toggle-group/ToggleGroupItem.vue +4 -4
  331. package/components/ui/tooltip/Tooltip.vue +1 -1
  332. package/components/ui/tooltip/TooltipContent.vue +3 -3
  333. package/components/ui/tooltip/TooltipProvider.vue +1 -1
  334. package/components/ui/tooltip/TooltipTrigger.vue +1 -1
  335. package/components/ui/tooltip/index.ts +1 -1
  336. package/components.json +10 -7
  337. package/lib/utils.ts +9 -0
  338. package/nuxt.config.ts +1 -1
  339. package/package.json +13 -13
  340. package/components/ui/accordion/index.js +0 -4
  341. package/components/ui/alert/index.js +0 -21
  342. package/components/ui/button/index.js +0 -33
  343. package/components/ui/card/index.js +0 -6
  344. package/components/ui/command/index.js +0 -9
  345. package/components/ui/dialog/index.js +0 -9
  346. package/components/ui/form/index.js +0 -7
  347. package/components/ui/form/injectionKeys.js +0 -1
  348. package/components/ui/form/useFormField.js +0 -36
  349. package/components/ui/input/index.js +0 -1
  350. package/components/ui/label/index.js +0 -1
  351. package/components/ui/popover/index.js +0 -3
  352. package/components/ui/progress/index.js +0 -1
  353. package/components/ui/separator/index.js +0 -1
  354. package/components/ui/v-calendar/Calendar.vue +0 -331
  355. package/components/ui/v-calendar/index.ts +0 -22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgedev/create-edge-app",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Create Edge Starter App",
5
5
  "bin": {
6
6
  "create-edge-app": "./bin/cli.js"
@@ -26,25 +26,25 @@
26
26
  "@tiptap/extension-text-style": "^2.11.5",
27
27
  "@tiptap/starter-kit": "^2.11.5",
28
28
  "@tiptap/vue-3": "^2.11.5",
29
- "@unovis/ts": "^1.4.1",
30
- "@unovis/vue": "^1.4.1",
31
- "@vee-validate/zod": "^4.13.1",
29
+ "@unovis/ts": "^1.5.1",
30
+ "@unovis/vue": "^1.5.1",
31
+ "@vee-validate/zod": "^4.15.0",
32
32
  "@vueuse/core": "10.4.1",
33
- "class-variance-authority": "^0.7.0",
33
+ "class-variance-authority": "^0.7.1",
34
34
  "clsx": "^2.1.1",
35
35
  "embla-carousel": "^8.1.5",
36
- "embla-carousel-vue": "^8.1.5",
36
+ "embla-carousel-vue": "^8.5.2",
37
37
  "lucide-vue-next": "^0.394.0",
38
38
  "maska": "2.1.9",
39
- "radix-vue": "^1.8.3",
40
- "tailwind-merge": "^2.3.0",
39
+ "reka-ui": "^2.1.0",
40
+ "tailwind-merge": "^2.6.0",
41
41
  "tailwindcss-animate": "^1.0.7",
42
42
  "v-calendar": "^3.1.2",
43
- "vaul-vue": "^0.1.2",
44
- "vee-validate": "^4.13.1",
45
- "vue-sonner": "^1.1.2",
43
+ "vaul-vue": "^0.1.3",
44
+ "vee-validate": "^4.15.0",
45
+ "vue-sonner": "^1.3.0",
46
46
  "vue-upload-component": "^3.1.17",
47
- "zod": "^3.23.8"
47
+ "zod": "^3.24.2"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@antfu/eslint-config": "0.35.1",
@@ -60,7 +60,7 @@
60
60
  "firebase": "9.17.1",
61
61
  "nuxt": "3.9.3",
62
62
  "sass": "1.58.0",
63
- "shadcn-nuxt": "^0.10.4",
63
+ "shadcn-nuxt": "1.0.3",
64
64
  "typescript": "4.9.5",
65
65
  "vuedraggable": "4.1.0",
66
66
  "vuetify": "^3.5.1"
@@ -1,4 +0,0 @@
1
- export { default as Accordion } from "./Accordion.vue";
2
- export { default as AccordionContent } from "./AccordionContent.vue";
3
- export { default as AccordionItem } from "./AccordionItem.vue";
4
- export { default as AccordionTrigger } from "./AccordionTrigger.vue";
@@ -1,21 +0,0 @@
1
- import { cva } from "class-variance-authority";
2
-
3
- export { default as Alert } from "./Alert.vue";
4
- export { default as AlertTitle } from "./AlertTitle.vue";
5
- export { default as AlertDescription } from "./AlertDescription.vue";
6
-
7
- export const alertVariants = cva(
8
- "relative w-full rounded-lg border p-4 [&>svg~*]:pl-7 [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground",
9
- {
10
- variants: {
11
- variant: {
12
- default: "bg-background text-foreground",
13
- destructive:
14
- "border-destructive/50 text-destructive dark:border-destructive [&>svg]:text-destructive",
15
- },
16
- },
17
- defaultVariants: {
18
- variant: "default",
19
- },
20
- },
21
- );
@@ -1,33 +0,0 @@
1
- import { cva } from "class-variance-authority";
2
-
3
- export { default as Button } from "./Button.vue";
4
-
5
- export const buttonVariants = cva(
6
- "inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",
7
- {
8
- variants: {
9
- variant: {
10
- default: "bg-primary text-primary-foreground hover:bg-primary/90",
11
- destructive:
12
- "bg-destructive text-destructive-foreground hover:bg-destructive/90",
13
- outline:
14
- "border border-input bg-background hover:bg-accent hover:text-accent-foreground",
15
- secondary:
16
- "bg-secondary text-secondary-foreground hover:bg-secondary/80",
17
- ghost: "hover:bg-accent hover:text-accent-foreground",
18
- link: "text-primary underline-offset-4 hover:underline",
19
- },
20
- size: {
21
- default: "h-10 px-4 py-2",
22
- xs: "h-7 rounded px-2",
23
- sm: "h-9 rounded-md px-3",
24
- lg: "h-11 rounded-md px-8",
25
- icon: "h-10 w-10",
26
- },
27
- },
28
- defaultVariants: {
29
- variant: "default",
30
- size: "default",
31
- },
32
- },
33
- );
@@ -1,6 +0,0 @@
1
- export { default as Card } from "./Card.vue";
2
- export { default as CardHeader } from "./CardHeader.vue";
3
- export { default as CardTitle } from "./CardTitle.vue";
4
- export { default as CardDescription } from "./CardDescription.vue";
5
- export { default as CardContent } from "./CardContent.vue";
6
- export { default as CardFooter } from "./CardFooter.vue";
@@ -1,9 +0,0 @@
1
- export { default as Command } from "./Command.vue";
2
- export { default as CommandDialog } from "./CommandDialog.vue";
3
- export { default as CommandEmpty } from "./CommandEmpty.vue";
4
- export { default as CommandGroup } from "./CommandGroup.vue";
5
- export { default as CommandInput } from "./CommandInput.vue";
6
- export { default as CommandItem } from "./CommandItem.vue";
7
- export { default as CommandList } from "./CommandList.vue";
8
- export { default as CommandSeparator } from "./CommandSeparator.vue";
9
- export { default as CommandShortcut } from "./CommandShortcut.vue";
@@ -1,9 +0,0 @@
1
- export { default as Dialog } from "./Dialog.vue";
2
- export { default as DialogClose } from "./DialogClose.vue";
3
- export { default as DialogTrigger } from "./DialogTrigger.vue";
4
- export { default as DialogHeader } from "./DialogHeader.vue";
5
- export { default as DialogTitle } from "./DialogTitle.vue";
6
- export { default as DialogDescription } from "./DialogDescription.vue";
7
- export { default as DialogContent } from "./DialogContent.vue";
8
- export { default as DialogScrollContent } from "./DialogScrollContent.vue";
9
- export { default as DialogFooter } from "./DialogFooter.vue";
@@ -1,7 +0,0 @@
1
- export { Form, Field as FormField } from "vee-validate";
2
- export { default as FormItem } from "./FormItem.vue";
3
- export { default as FormLabel } from "./FormLabel.vue";
4
- export { default as FormControl } from "./FormControl.vue";
5
- export { default as FormMessage } from "./FormMessage.vue";
6
- export { default as FormDescription } from "./FormDescription.vue";
7
- export { FORM_ITEM_INJECTION_KEY } from "./injectionKeys";
@@ -1 +0,0 @@
1
- export const FORM_ITEM_INJECTION_KEY = Symbol();
@@ -1,36 +0,0 @@
1
- import {
2
- FieldContextKey,
3
- useFieldError,
4
- useIsFieldDirty,
5
- useIsFieldTouched,
6
- useIsFieldValid,
7
- } from "vee-validate";
8
- import { inject } from "vue";
9
- import { FORM_ITEM_INJECTION_KEY } from "./injectionKeys";
10
-
11
- export function useFormField() {
12
- const fieldContext = inject(FieldContextKey);
13
- const fieldItemContext = inject(FORM_ITEM_INJECTION_KEY);
14
-
15
- const fieldState = {
16
- valid: useIsFieldValid(),
17
- isDirty: useIsFieldDirty(),
18
- isTouched: useIsFieldTouched(),
19
- error: useFieldError(),
20
- };
21
-
22
- if (!fieldContext)
23
- throw new Error("useFormField should be used within <FormField>");
24
-
25
- const { name } = fieldContext;
26
- const id = fieldItemContext;
27
-
28
- return {
29
- id,
30
- name,
31
- formItemId: `${id}-form-item`,
32
- formDescriptionId: `${id}-form-item-description`,
33
- formMessageId: `${id}-form-item-message`,
34
- ...fieldState,
35
- };
36
- }
@@ -1 +0,0 @@
1
- export { default as Input } from "./Input.vue";
@@ -1 +0,0 @@
1
- export { default as Label } from "./Label.vue";
@@ -1,3 +0,0 @@
1
- export { default as Popover } from './Popover.vue'
2
- export { default as PopoverTrigger } from './PopoverTrigger.vue'
3
- export { default as PopoverContent } from './PopoverContent.vue'
@@ -1 +0,0 @@
1
- export { default as Progress } from "./Progress.vue";
@@ -1 +0,0 @@
1
- export { default as Separator } from "./Separator.vue";
@@ -1,331 +0,0 @@
1
- <script setup lang="ts">
2
- import { useVModel } from '@vueuse/core'
3
- import { ChevronLeft, ChevronRight } from 'lucide-vue-next'
4
- import type { Calendar } from 'v-calendar'
5
- import { DatePicker } from 'v-calendar'
6
- import { computed, nextTick, onMounted, ref, useSlots } from 'vue'
7
- import { isVCalendarSlot } from '.'
8
- import { cn } from '@/lib/utils'
9
- import { buttonVariants } from '@/components/ui/button'
10
-
11
- /* Extracted from v-calendar */
12
- type DatePickerModel = DatePickerDate | DatePickerRangeObject
13
- type DateSource = Date | string | number
14
- type DatePickerDate = DateSource | Partial<SimpleDateParts> | null
15
- interface DatePickerRangeObject {
16
- start: Exclude<DatePickerDate, null>
17
- end: Exclude<DatePickerDate, null>
18
- }
19
- interface SimpleDateParts {
20
- year: number
21
- month: number
22
- day: number
23
- hours: number
24
- minutes: number
25
- seconds: number
26
- milliseconds: number
27
- }
28
-
29
- defineOptions({
30
- inheritAttrs: false,
31
- })
32
- const props = withDefaults(defineProps< {
33
- modelValue?: string | number | Date | DatePickerModel
34
- modelModifiers?: object
35
- columns?: number
36
- type?: 'single' | 'range'
37
- }>(), {
38
- type: 'single',
39
- columns: 1,
40
- })
41
- const emits = defineEmits<{
42
- (e: 'update:modelValue', payload: typeof props.modelValue): void
43
- }>()
44
-
45
- const modelValue = useVModel(props, 'modelValue', emits, {
46
- passive: true,
47
- })
48
-
49
- const datePicker = ref<InstanceType<typeof DatePicker>>()
50
- // @ts-expect-error in this current version of v-calendar has the calendaRef instance, which is required to handle arrow nav.
51
- const calendarRef = computed<InstanceType<typeof Calendar>>(() => datePicker.value.calendarRef)
52
-
53
- function handleNav(direction: 'prev' | 'next') {
54
- if (!calendarRef.value)
55
- return
56
-
57
- if (direction === 'prev')
58
- calendarRef.value.movePrev()
59
- else calendarRef.value.moveNext()
60
- }
61
-
62
- onMounted(async () => {
63
- await nextTick()
64
- if (modelValue.value instanceof Date && calendarRef.value)
65
- calendarRef.value.focusDate(modelValue.value)
66
- })
67
-
68
- const $slots = useSlots()
69
- const vCalendarSlots = computed(() => {
70
- return Object.keys($slots)
71
- .filter(name => isVCalendarSlot(name))
72
- .reduce((obj: Record<string, any>, key: string) => {
73
- obj[key] = $slots[key]
74
- return obj
75
- }, {})
76
- })
77
- </script>
78
-
79
- <template>
80
- <div class="relative">
81
- <div v-if="$attrs.mode !== 'time'" class="absolute flex justify-between w-full px-4 top-3 z-[1]">
82
- <button :class="cn(buttonVariants({ variant: 'outline' }), 'h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100')" @click="handleNav('prev')">
83
- <ChevronLeft class="w-4 h-4" />
84
- </button>
85
- <button :class="cn(buttonVariants({ variant: 'outline' }), 'h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100')" @click="handleNav('next')">
86
- <ChevronRight class="w-4 h-4" />
87
- </button>
88
- </div>
89
-
90
- <DatePicker
91
- ref="datePicker"
92
- v-bind="$attrs"
93
- v-model="modelValue"
94
- :model-modifiers="modelModifiers"
95
- class="calendar"
96
- trim-weeks
97
- :transition="'none'"
98
- :columns="columns"
99
- >
100
- <template v-for="(_, slot) of vCalendarSlots" #[slot]="scope">
101
- <slot :name="slot" v-bind="scope" />
102
- </template>
103
-
104
- <template #nav-prev-button>
105
- <ChevronLeft />
106
- </template>
107
-
108
- <template #nav-next-button>
109
- <ChevronRight />
110
- </template>
111
- </DatePicker>
112
- </div>
113
- </template>
114
-
115
- <style lang="css">
116
- .calendar {
117
- @apply p-3 text-center;
118
- }
119
- .calendar .vc-pane-layout {
120
- @apply grid gap-4 max-sm:!grid-cols-1;
121
- }
122
- .calendar .vc-title {
123
- @apply text-sm font-medium relative z-20;
124
- }
125
- .vc-popover-content-wrapper .vc-popover-content {
126
- @apply mt-3 rounded-md max-w-xs border bg-background;
127
- }
128
- .vc-popover-content-wrapper .vc-nav-header {
129
- @apply flex justify-between items-center p-2;
130
- }
131
- .vc-popover-content-wrapper .vc-nav-items {
132
- @apply grid grid-cols-4 gap-2 p-2;
133
- }
134
- .vc-popover-content-wrapper .vc-nav-items .vc-nav-item {
135
- @apply rounded-md px-2 py-1;
136
- }
137
- .vc-popover-content-wrapper .vc-nav-items .vc-nav-item:hover {
138
- @apply text-muted-foreground bg-muted;
139
- }
140
- .vc-popover-content-wrapper .vc-nav-items .vc-nav-item.is-active {
141
- @apply bg-primary text-primary-foreground;
142
- }
143
- .calendar .vc-pane-header-wrapper {
144
- @apply hidden;
145
- }
146
- .calendar .vc-weeks {
147
- @apply mt-4;
148
- }
149
- .calendar .vc-weekdays {
150
- @apply justify-items-center;
151
- }
152
- .calendar .vc-weekday {
153
- @apply text-muted-foreground rounded-md font-normal text-[0.8rem];
154
- }
155
- .calendar .vc-weeks {
156
- @apply w-full space-y-2 flex flex-col [&>_div]:grid [&>_div]:grid-cols-7;
157
- }
158
- .calendar .vc-day:has(.vc-highlights) {
159
- @apply first:rounded-l-md last:rounded-r-md;
160
- }
161
- .calendar .vc-day.is-today:not(:has(.vc-day-layer)) .vc-day-content {
162
- @apply bg-secondary text-primary rounded-md;
163
- }
164
- .calendar .vc-day:has(.vc-highlight-base-start) {
165
- @apply rounded-l-md;
166
- }
167
- .calendar .vc-day:has(.vc-highlight-base-end) {
168
- @apply rounded-r-md;
169
- }
170
- .calendar .vc-day:has(.vc-highlight-bg-outline):not(:has(.vc-highlight-base-start)):not(:has(.vc-highlight-base-end)) {
171
- @apply rounded-md;
172
- }
173
- .calendar .vc-day-content {
174
- @apply text-center text-sm p-0 relative focus-within:relative focus-within:z-20 inline-flex items-center justify-center ring-offset-background hover:transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 hover:bg-accent hover:text-accent-foreground h-9 w-9 font-normal aria-selected:opacity-100 select-none;
175
- }
176
- .calendar .vc-day-content:not(.vc-highlight-content-light) {
177
- @apply rounded-md;
178
- }
179
- .calendar .is-not-in-month:not(:has(.vc-highlight-content-solid)):not(:has(.vc-highlight-content-light)):not(:has(.vc-highlight-content-outline)),
180
- .calendar .vc-disabled {
181
- @apply text-muted-foreground opacity-50;
182
- }
183
- .calendar .vc-highlight-content-solid, .calendar .vc-highlight-content-outline {
184
- @apply bg-primary text-primary-foreground hover:bg-primary hover:text-primary-foreground focus:bg-primary focus:text-primary-foreground;
185
- }
186
- .calendar .vc-highlight-content-light {
187
- @apply bg-accent text-accent-foreground;
188
- }
189
- .calendar .vc-pane-container.in-transition {
190
- @apply overflow-hidden;
191
- }
192
- .calendar .vc-pane-container {
193
- @apply w-full relative;
194
- }
195
- :root {
196
- --vc-slide-translate: 22px;
197
- --vc-slide-duration: 0.15s;
198
- --vc-slide-timing: ease;
199
- }
200
-
201
- .calendar .vc-fade-enter-active,
202
- .calendar .vc-fade-leave-active,
203
- .calendar .vc-slide-left-enter-active,
204
- .calendar .vc-slide-left-leave-active,
205
- .calendar .vc-slide-right-enter-active,
206
- .calendar .vc-slide-right-leave-active,
207
- .calendar .vc-slide-up-enter-active,
208
- .calendar .vc-slide-up-leave-active,
209
- .calendar .vc-slide-down-enter-active,
210
- .calendar .vc-slide-down-leave-active,
211
- .calendar .vc-slide-fade-enter-active,
212
- .calendar .vc-slide-fade-leave-active {
213
- transition:
214
- opacity var(--vc-slide-duration) var(--vc-slide-timing),
215
- -webkit-transform var(--vc-slide-duration) var(--vc-slide-timing);
216
- transition:
217
- transform var(--vc-slide-duration) var(--vc-slide-timing),
218
- opacity var(--vc-slide-duration) var(--vc-slide-timing);
219
- transition:
220
- transform var(--vc-slide-duration) var(--vc-slide-timing),
221
- opacity var(--vc-slide-duration) var(--vc-slide-timing),
222
- -webkit-transform var(--vc-slide-duration) var(--vc-slide-timing);
223
- -webkit-backface-visibility: hidden;
224
- backface-visibility: hidden;
225
- pointer-events: none;
226
- }
227
-
228
- .calendar .vc-none-leave-active,
229
- .calendar .vc-fade-leave-active,
230
- .calendar .vc-slide-left-leave-active,
231
- .calendar .vc-slide-right-leave-active,
232
- .calendar .vc-slide-up-leave-active,
233
- .calendar .vc-slide-down-leave-active {
234
- position: absolute !important;
235
- width: 100%;
236
- }
237
-
238
- .calendar .vc-none-enter-from,
239
- .calendar .vc-none-leave-to,
240
- .calendar .vc-fade-enter-from,
241
- .calendar .vc-fade-leave-to,
242
- .calendar .vc-slide-left-enter-from,
243
- .calendar .vc-slide-left-leave-to,
244
- .calendar .vc-slide-right-enter-from,
245
- .calendar .vc-slide-right-leave-to,
246
- .calendar .vc-slide-up-enter-from,
247
- .calendar .vc-slide-up-leave-to,
248
- .calendar .vc-slide-down-enter-from,
249
- .calendar .vc-slide-down-leave-to,
250
- .calendar .vc-slide-fade-enter-from,
251
- .calendar .vc-slide-fade-leave-to {
252
- opacity: 0;
253
- }
254
-
255
- .calendar .vc-slide-left-enter-from,
256
- .calendar .vc-slide-right-leave-to,
257
- .calendar .vc-slide-fade-enter-from.direction-left,
258
- .calendar .vc-slide-fade-leave-to.direction-left {
259
- -webkit-transform: translateX(var(--vc-slide-translate));
260
- transform: translateX(var(--vc-slide-translate));
261
- }
262
-
263
- .calendar .vc-slide-right-enter-from,
264
- .calendar .vc-slide-left-leave-to,
265
- .calendar .vc-slide-fade-enter-from.direction-right,
266
- .calendar .vc-slide-fade-leave-to.direction-right {
267
- -webkit-transform: translateX(calc(-1 * var(--vc-slide-translate)));
268
- transform: translateX(calc(-1 * var(--vc-slide-translate)));
269
- }
270
-
271
- .calendar .vc-slide-up-enter-from,
272
- .calendar .vc-slide-down-leave-to,
273
- .calendar .vc-slide-fade-enter-from.direction-top,
274
- .calendar .vc-slide-fade-leave-to.direction-top {
275
- -webkit-transform: translateY(var(--vc-slide-translate));
276
- transform: translateY(var(--vc-slide-translate));
277
- }
278
-
279
- .calendar .vc-slide-down-enter-from,
280
- .calendar .vc-slide-up-leave-to,
281
- .calendar .vc-slide-fade-enter-from.direction-bottom,
282
- .calendar .vc-slide-fade-leave-to.direction-bottom {
283
- -webkit-transform: translateY(calc(-1 * var(--vc-slide-translate)));
284
- transform: translateY(calc(-1 * var(--vc-slide-translate)));
285
- }
286
- /**
287
- * Timepicker styles
288
- */
289
- .vc-time-picker {
290
- @apply flex flex-col items-center p-2;
291
- }
292
- .vc-time-picker.vc-invalid {
293
- @apply pointer-events-none opacity-50;
294
- }
295
- .vc-time-picker.vc-attached {
296
- @apply border-t border-solid border-secondary mt-2;
297
- }
298
- .vc-time-picker > * + * {
299
- @apply mt-1;
300
- }
301
- .vc-time-header {
302
- @apply flex items-center text-sm font-semibold uppercase mt-1 px-1 leading-6;
303
- }
304
- .vc-time-select-group {
305
- @apply inline-flex items-center px-1 rounded-md bg-primary-foreground border border-solid border-secondary;
306
- }
307
- .vc-time-select-group .vc-base-icon {
308
- @apply mr-1 text-primary stroke-primary;
309
- }
310
- .vc-time-select-group select {
311
- @apply bg-primary-foreground p-1 appearance-none outline-none text-center;
312
- }
313
- .vc-time-weekday {
314
- @apply text-muted-foreground tracking-wide;
315
- }
316
- .vc-time-month {
317
- @apply text-primary ml-2;
318
- }
319
- .vc-time-day {
320
- @apply text-primary ml-1;
321
- }
322
- .vc-time-year {
323
- @apply text-muted-foreground ml-2;
324
- }
325
- .vc-time-colon {
326
- @apply mb-0.5;
327
- }
328
- .vc-time-decimal {
329
- @apply ml-0.5;
330
- }
331
- </style>
@@ -1,22 +0,0 @@
1
- export { default as Calendar } from './Calendar.vue'
2
- import type { CalendarSlotName } from 'v-calendar/dist/types/src/components/Calendar/CalendarSlot.vue.d.ts'
3
-
4
- export function isVCalendarSlot(slotName: string): slotName is CalendarSlotName {
5
- const validSlots: CalendarSlotName[] = [
6
- 'day-content',
7
- 'day-popover',
8
- 'dp-footer',
9
- 'footer',
10
- 'header-title-wrapper',
11
- 'header-title',
12
- 'header-prev-button',
13
- 'header-next-button',
14
- 'nav',
15
- 'nav-prev-button',
16
- 'nav-next-button',
17
- 'page',
18
- 'time-header',
19
- ]
20
-
21
- return validSlots.includes(slotName as CalendarSlotName)
22
- }