@geniusdynamics/ns8-ui-lib 1.0.6 → 1.0.8

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 (339) hide show
  1. package/dist/index.d.ts +23 -0
  2. package/dist/ns8-ui-lib.css +1 -1
  3. package/dist/ns8-ui-lib.es.js +222 -222
  4. package/dist/ns8-ui-lib.es.js.map +1 -1
  5. package/dist/ns8-ui-lib.umd.js +3 -3
  6. package/dist/ns8-ui-lib.umd.js.map +1 -1
  7. package/dist/src/components/NS/cards/NSBackupCard.vue.d.ts +51 -0
  8. package/dist/src/components/NS/cards/NSSystemInfoCard.vue.d.ts +58 -0
  9. package/dist/src/components/NS/cards/NSSystemdServiceCard.vue.d.ts +47 -0
  10. package/dist/src/components/NS/cards/index.d.ts +3 -0
  11. package/dist/src/components/NS/checkbox/NSCheckbox.vue.d.ts +37 -0
  12. package/dist/src/components/NS/checkbox/index.d.ts +1 -0
  13. package/dist/src/components/NS/data-table/NSDataTable.vue.d.ts +98 -0
  14. package/dist/src/components/NS/data-table/index.d.ts +1 -0
  15. package/dist/src/components/NS/empty-state/NSEmptyState.vue.d.ts +45 -0
  16. package/dist/src/components/NS/empty-state/index.d.ts +1 -0
  17. package/dist/src/components/NS/index.d.ts +35 -0
  18. package/dist/src/components/NS/inline-notification/NSInlineNotification.vue.d.ts +44 -0
  19. package/dist/src/components/NS/inline-notification/index.d.ts +1 -0
  20. package/dist/src/components/NS/lottie-animation/index.d.ts +1 -0
  21. package/dist/src/components/NS/modal/NSModal.vue.d.ts +56 -0
  22. package/dist/src/components/NS/modal/NSModalTrigger.vue.d.ts +64 -0
  23. package/dist/src/components/NS/modal/index.d.ts +2 -0
  24. package/dist/src/components/NS/pagination/NSPagination.vue.d.ts +36 -0
  25. package/dist/src/components/NS/pagination/index.d.ts +1 -0
  26. package/dist/src/components/NS/progress/NSProgress.vue.d.ts +37 -0
  27. package/dist/src/components/NS/progress/NSProgressBar.vue.d.ts +39 -0
  28. package/dist/src/components/NS/progress/index.d.ts +2 -0
  29. package/dist/src/components/NS/slider/NSByteSlider.vue.d.ts +50 -0
  30. package/dist/src/components/NS/slider/NSSlider.vue.d.ts +49 -0
  31. package/dist/src/components/NS/slider/index.d.ts +2 -0
  32. package/dist/src/components/NS/tag/NSTag.vue.d.ts +41 -0
  33. package/dist/src/components/NS/tag/index.d.ts +1 -0
  34. package/dist/src/components/NS/text-input/NSTextInput.vue.d.ts +67 -0
  35. package/dist/src/components/NS/text-input/index.d.ts +1 -0
  36. package/dist/src/components/NS/toast-notification/NSToastNotification.vue.d.ts +44 -0
  37. package/dist/src/components/NS/toast-notification/index.d.ts +1 -0
  38. package/dist/src/components/NS/toggle/NSToggle.vue.d.ts +51 -0
  39. package/dist/src/components/NS/toggle/index.d.ts +1 -0
  40. package/dist/src/components/NS/wizard/NSWizard.vue.d.ts +86 -0
  41. package/dist/src/components/NS/wizard/index.d.ts +1 -0
  42. package/dist/src/composables/index.d.ts +8 -0
  43. package/dist/src/composables/useDateTimeService.d.ts +10 -0
  44. package/dist/src/composables/useFilterService.d.ts +8 -0
  45. package/dist/src/composables/useIconService.d.ts +153 -0
  46. package/dist/src/composables/usePageTitleService.d.ts +3 -0
  47. package/dist/src/composables/useQueryParamService.d.ts +13 -0
  48. package/dist/src/composables/useStorageService.d.ts +5 -0
  49. package/dist/src/composables/useTaskService.d.ts +18 -0
  50. package/dist/src/composables/useUtilService.d.ts +27 -0
  51. package/package.json +2 -2
  52. package/src/App.vue +3 -4
  53. package/src/components/HelloWorld.vue +2 -2
  54. package/src/components/NS/CompleteDemo.vue +49 -49
  55. package/src/components/NS/Demo.vue +20 -20
  56. package/src/components/NS/cards/NSBackupCard.vue +41 -41
  57. package/src/components/NS/cards/NSSystemInfoCard.vue +37 -37
  58. package/src/components/NS/cards/NSSystemdServiceCard.vue +27 -27
  59. package/src/components/NS/checkbox/NSCheckbox.vue +4 -4
  60. package/src/components/NS/data-table/NSDataTable.vue +29 -29
  61. package/src/components/NS/empty-state/NSEmptyState.vue +3 -3
  62. package/src/components/NS/inline-notification/NSInlineNotification.vue +9 -9
  63. package/src/components/NS/lottie-animation/NSLottieAnimation.vue +5 -5
  64. package/src/components/NS/modal/NSModal.vue +10 -10
  65. package/src/components/NS/modal/NSModalTrigger.vue +1 -1
  66. package/src/components/NS/pagination/NSPagination.vue +10 -10
  67. package/src/components/NS/progress/NSProgress.vue +3 -3
  68. package/src/components/NS/progress/NSProgressBar.vue +4 -4
  69. package/src/components/NS/slider/NSByteSlider.vue +3 -3
  70. package/src/components/NS/slider/NSSlider.vue +2 -2
  71. package/src/components/NS/tag/NSTag.vue +5 -5
  72. package/src/components/NS/text-input/NSTextInput.vue +5 -5
  73. package/src/components/NS/toast-notification/NSToastNotification.vue +7 -7
  74. package/src/components/NS/toggle/NSToggle.vue +2 -2
  75. package/src/components/NS/wizard/NSWizard.vue +21 -21
  76. package/src/components/ui/accordion/AccordionContent.vue +2 -2
  77. package/src/components/ui/accordion/AccordionItem.vue +1 -1
  78. package/src/components/ui/accordion/AccordionTrigger.vue +3 -3
  79. package/src/components/ui/alert/AlertDescription.vue +1 -1
  80. package/src/components/ui/alert/AlertTitle.vue +1 -1
  81. package/src/components/ui/alert-dialog/AlertDialogCancel.vue +1 -1
  82. package/src/components/ui/alert-dialog/AlertDialogContent.vue +2 -2
  83. package/src/components/ui/alert-dialog/AlertDialogDescription.vue +1 -1
  84. package/src/components/ui/alert-dialog/AlertDialogFooter.vue +1 -1
  85. package/src/components/ui/alert-dialog/AlertDialogHeader.vue +1 -1
  86. package/src/components/ui/alert-dialog/AlertDialogTitle.vue +1 -1
  87. package/src/components/ui/avatar/Avatar.vue +1 -1
  88. package/src/components/ui/avatar/AvatarFallback.vue +1 -1
  89. package/src/components/ui/avatar/AvatarImage.vue +1 -1
  90. package/src/components/ui/breadcrumb/BreadcrumbEllipsis.vue +3 -3
  91. package/src/components/ui/breadcrumb/BreadcrumbItem.vue +1 -1
  92. package/src/components/ui/breadcrumb/BreadcrumbLink.vue +1 -1
  93. package/src/components/ui/breadcrumb/BreadcrumbList.vue +1 -1
  94. package/src/components/ui/breadcrumb/BreadcrumbPage.vue +1 -1
  95. package/src/components/ui/breadcrumb/BreadcrumbSeparator.vue +1 -1
  96. package/src/components/ui/button-group/ButtonGroupSeparator.vue +1 -1
  97. package/src/components/ui/button-group/ButtonGroupText.vue +1 -1
  98. package/src/components/ui/calendar/Calendar.vue +16 -16
  99. package/src/components/ui/calendar/CalendarCell.vue +1 -1
  100. package/src/components/ui/calendar/CalendarCellTrigger.vue +6 -6
  101. package/src/components/ui/calendar/CalendarGrid.vue +1 -1
  102. package/src/components/ui/calendar/CalendarGridRow.vue +1 -1
  103. package/src/components/ui/calendar/CalendarHeadCell.vue +1 -1
  104. package/src/components/ui/calendar/CalendarHeader.vue +1 -1
  105. package/src/components/ui/calendar/CalendarHeading.vue +1 -1
  106. package/src/components/ui/calendar/CalendarNextButton.vue +2 -2
  107. package/src/components/ui/calendar/CalendarPrevButton.vue +2 -2
  108. package/src/components/ui/card/Card.vue +1 -1
  109. package/src/components/ui/card/CardAction.vue +1 -1
  110. package/src/components/ui/card/CardContent.vue +1 -1
  111. package/src/components/ui/card/CardDescription.vue +1 -1
  112. package/src/components/ui/card/CardFooter.vue +1 -1
  113. package/src/components/ui/card/CardHeader.vue +1 -1
  114. package/src/components/ui/card/CardTitle.vue +1 -1
  115. package/src/components/ui/carousel/Carousel.vue +1 -1
  116. package/src/components/ui/carousel/CarouselContent.vue +3 -3
  117. package/src/components/ui/carousel/CarouselItem.vue +2 -2
  118. package/src/components/ui/carousel/CarouselNext.vue +4 -4
  119. package/src/components/ui/carousel/CarouselPrevious.vue +4 -4
  120. package/src/components/ui/checkbox/Checkbox.vue +3 -3
  121. package/src/components/ui/combobox/ComboboxAnchor.vue +1 -1
  122. package/src/components/ui/combobox/ComboboxEmpty.vue +1 -1
  123. package/src/components/ui/combobox/ComboboxGroup.vue +2 -2
  124. package/src/components/ui/combobox/ComboboxInput.vue +3 -3
  125. package/src/components/ui/combobox/ComboboxItem.vue +1 -1
  126. package/src/components/ui/combobox/ComboboxItemIndicator.vue +1 -1
  127. package/src/components/ui/combobox/ComboboxList.vue +1 -1
  128. package/src/components/ui/combobox/ComboboxSeparator.vue +1 -1
  129. package/src/components/ui/combobox/ComboboxTrigger.vue +1 -1
  130. package/src/components/ui/combobox/ComboboxViewport.vue +1 -1
  131. package/src/components/ui/command/Command.vue +1 -1
  132. package/src/components/ui/command/CommandDialog.vue +2 -2
  133. package/src/components/ui/command/CommandEmpty.vue +1 -1
  134. package/src/components/ui/command/CommandGroup.vue +2 -2
  135. package/src/components/ui/command/CommandInput.vue +3 -3
  136. package/src/components/ui/command/CommandItem.vue +1 -1
  137. package/src/components/ui/command/CommandList.vue +1 -1
  138. package/src/components/ui/command/CommandSeparator.vue +1 -1
  139. package/src/components/ui/command/CommandShortcut.vue +1 -1
  140. package/src/components/ui/context-menu/ContextMenuCheckboxItem.vue +3 -3
  141. package/src/components/ui/context-menu/ContextMenuContent.vue +1 -1
  142. package/src/components/ui/context-menu/ContextMenuItem.vue +1 -1
  143. package/src/components/ui/context-menu/ContextMenuLabel.vue +1 -1
  144. package/src/components/ui/context-menu/ContextMenuRadioItem.vue +3 -3
  145. package/src/components/ui/context-menu/ContextMenuSeparator.vue +1 -1
  146. package/src/components/ui/context-menu/ContextMenuShortcut.vue +1 -1
  147. package/src/components/ui/context-menu/ContextMenuSubContent.vue +1 -1
  148. package/src/components/ui/context-menu/ContextMenuSubTrigger.vue +2 -2
  149. package/src/components/ui/dialog/DialogContent.vue +18 -27
  150. package/src/components/ui/dialog/DialogDescription.vue +1 -1
  151. package/src/components/ui/dialog/DialogFooter.vue +1 -1
  152. package/src/components/ui/dialog/DialogHeader.vue +1 -1
  153. package/src/components/ui/dialog/DialogOverlay.vue +1 -1
  154. package/src/components/ui/dialog/DialogScrollContent.vue +5 -5
  155. package/src/components/ui/dialog/DialogTitle.vue +1 -1
  156. package/src/components/ui/drawer/DrawerContent.vue +6 -6
  157. package/src/components/ui/drawer/DrawerDescription.vue +1 -1
  158. package/src/components/ui/drawer/DrawerFooter.vue +1 -1
  159. package/src/components/ui/drawer/DrawerHeader.vue +1 -1
  160. package/src/components/ui/drawer/DrawerOverlay.vue +1 -1
  161. package/src/components/ui/drawer/DrawerTitle.vue +1 -1
  162. package/src/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +3 -3
  163. package/src/components/ui/dropdown-menu/DropdownMenuContent.vue +1 -1
  164. package/src/components/ui/dropdown-menu/DropdownMenuItem.vue +1 -1
  165. package/src/components/ui/dropdown-menu/DropdownMenuLabel.vue +1 -1
  166. package/src/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +3 -3
  167. package/src/components/ui/dropdown-menu/DropdownMenuSeparator.vue +1 -1
  168. package/src/components/ui/dropdown-menu/DropdownMenuShortcut.vue +1 -1
  169. package/src/components/ui/dropdown-menu/DropdownMenuSubContent.vue +1 -1
  170. package/src/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +2 -2
  171. package/src/components/ui/empty/Empty.vue +1 -1
  172. package/src/components/ui/empty/EmptyContent.vue +1 -1
  173. package/src/components/ui/empty/EmptyDescription.vue +2 -2
  174. package/src/components/ui/empty/EmptyHeader.vue +1 -1
  175. package/src/components/ui/empty/EmptyTitle.vue +1 -1
  176. package/src/components/ui/field/FieldContent.vue +1 -1
  177. package/src/components/ui/field/FieldDescription.vue +3 -3
  178. package/src/components/ui/field/FieldError.vue +2 -2
  179. package/src/components/ui/field/FieldGroup.vue +1 -1
  180. package/src/components/ui/field/FieldLabel.vue +3 -3
  181. package/src/components/ui/field/FieldLegend.vue +3 -3
  182. package/src/components/ui/field/FieldSeparator.vue +3 -3
  183. package/src/components/ui/field/FieldSet.vue +2 -2
  184. package/src/components/ui/field/FieldTitle.vue +1 -1
  185. package/src/components/ui/form/FormDescription.vue +1 -1
  186. package/src/components/ui/form/FormItem.vue +1 -1
  187. package/src/components/ui/form/FormLabel.vue +1 -1
  188. package/src/components/ui/form/FormMessage.vue +1 -1
  189. package/src/components/ui/hover-card/HoverCardContent.vue +1 -1
  190. package/src/components/ui/input/Input.vue +3 -3
  191. package/src/components/ui/input-group/InputGroup.vue +8 -8
  192. package/src/components/ui/input-group/InputGroupInput.vue +1 -1
  193. package/src/components/ui/input-group/InputGroupText.vue +1 -1
  194. package/src/components/ui/input-group/InputGroupTextarea.vue +1 -1
  195. package/src/components/ui/input-otp/InputOTP.vue +1 -1
  196. package/src/components/ui/input-otp/InputOTPGroup.vue +1 -1
  197. package/src/components/ui/input-otp/InputOTPSlot.vue +3 -3
  198. package/src/components/ui/item/ItemActions.vue +1 -1
  199. package/src/components/ui/item/ItemContent.vue +1 -1
  200. package/src/components/ui/item/ItemDescription.vue +2 -2
  201. package/src/components/ui/item/ItemFooter.vue +1 -1
  202. package/src/components/ui/item/ItemGroup.vue +1 -1
  203. package/src/components/ui/item/ItemHeader.vue +1 -1
  204. package/src/components/ui/item/ItemSeparator.vue +1 -1
  205. package/src/components/ui/item/ItemTitle.vue +1 -1
  206. package/src/components/ui/kbd/Kbd.vue +3 -3
  207. package/src/components/ui/kbd/KbdGroup.vue +1 -1
  208. package/src/components/ui/label/Label.vue +1 -1
  209. package/src/components/ui/menubar/Menubar.vue +1 -1
  210. package/src/components/ui/menubar/MenubarCheckboxItem.vue +3 -3
  211. package/src/components/ui/menubar/MenubarContent.vue +1 -1
  212. package/src/components/ui/menubar/MenubarItem.vue +1 -1
  213. package/src/components/ui/menubar/MenubarLabel.vue +1 -1
  214. package/src/components/ui/menubar/MenubarRadioItem.vue +3 -3
  215. package/src/components/ui/menubar/MenubarSeparator.vue +1 -1
  216. package/src/components/ui/menubar/MenubarShortcut.vue +1 -1
  217. package/src/components/ui/menubar/MenubarSubContent.vue +1 -1
  218. package/src/components/ui/menubar/MenubarSubTrigger.vue +2 -2
  219. package/src/components/ui/menubar/MenubarTrigger.vue +1 -1
  220. package/src/components/ui/native-select/NativeSelect.vue +5 -5
  221. package/src/components/ui/native-select/NativeSelectOptGroup.vue +1 -1
  222. package/src/components/ui/native-select/NativeSelectOption.vue +1 -1
  223. package/src/components/ui/navigation-menu/NavigationMenu.vue +1 -1
  224. package/src/components/ui/navigation-menu/NavigationMenuContent.vue +2 -2
  225. package/src/components/ui/navigation-menu/NavigationMenuIndicator.vue +2 -2
  226. package/src/components/ui/navigation-menu/NavigationMenuItem.vue +1 -1
  227. package/src/components/ui/navigation-menu/NavigationMenuLink.vue +1 -1
  228. package/src/components/ui/navigation-menu/NavigationMenuList.vue +1 -1
  229. package/src/components/ui/navigation-menu/NavigationMenuTrigger.vue +2 -2
  230. package/src/components/ui/navigation-menu/NavigationMenuViewport.vue +2 -2
  231. package/src/components/ui/number-field/NumberField.vue +1 -1
  232. package/src/components/ui/number-field/NumberFieldContent.vue +1 -1
  233. package/src/components/ui/number-field/NumberFieldDecrement.vue +2 -2
  234. package/src/components/ui/number-field/NumberFieldIncrement.vue +2 -2
  235. package/src/components/ui/number-field/NumberFieldInput.vue +1 -1
  236. package/src/components/ui/pagination/Pagination.vue +1 -1
  237. package/src/components/ui/pagination/PaginationContent.vue +1 -1
  238. package/src/components/ui/pagination/PaginationEllipsis.vue +3 -3
  239. package/src/components/ui/pagination/PaginationFirst.vue +2 -2
  240. package/src/components/ui/pagination/PaginationLast.vue +2 -2
  241. package/src/components/ui/pagination/PaginationNext.vue +2 -2
  242. package/src/components/ui/pagination/PaginationPrevious.vue +2 -2
  243. package/src/components/ui/pin-input/PinInput.vue +1 -1
  244. package/src/components/ui/pin-input/PinInputGroup.vue +1 -1
  245. package/src/components/ui/pin-input/PinInputSlot.vue +1 -1
  246. package/src/components/ui/popover/PopoverContent.vue +1 -1
  247. package/src/components/ui/progress/Progress.vue +12 -9
  248. package/src/components/ui/radio-group/RadioGroup.vue +1 -1
  249. package/src/components/ui/radio-group/RadioGroupItem.vue +16 -16
  250. package/src/components/ui/range-calendar/RangeCalendar.vue +4 -4
  251. package/src/components/ui/range-calendar/RangeCalendarCell.vue +1 -1
  252. package/src/components/ui/range-calendar/RangeCalendarCellTrigger.vue +7 -7
  253. package/src/components/ui/range-calendar/RangeCalendarGrid.vue +1 -1
  254. package/src/components/ui/range-calendar/RangeCalendarGridRow.vue +1 -1
  255. package/src/components/ui/range-calendar/RangeCalendarHeadCell.vue +1 -1
  256. package/src/components/ui/range-calendar/RangeCalendarHeader.vue +1 -1
  257. package/src/components/ui/range-calendar/RangeCalendarHeading.vue +1 -1
  258. package/src/components/ui/range-calendar/RangeCalendarNextButton.vue +3 -3
  259. package/src/components/ui/range-calendar/RangeCalendarPrevButton.vue +3 -3
  260. package/src/components/ui/resizable/ResizableHandle.vue +3 -3
  261. package/src/components/ui/resizable/ResizablePanelGroup.vue +1 -1
  262. package/src/components/ui/scroll-area/ScrollArea.vue +2 -2
  263. package/src/components/ui/scroll-area/ScrollBar.vue +16 -22
  264. package/src/components/ui/select/SelectContent.vue +18 -27
  265. package/src/components/ui/select/SelectItem.vue +3 -3
  266. package/src/components/ui/select/SelectLabel.vue +1 -1
  267. package/src/components/ui/select/SelectScrollDownButton.vue +2 -2
  268. package/src/components/ui/select/SelectScrollUpButton.vue +2 -2
  269. package/src/components/ui/select/SelectSeparator.vue +1 -1
  270. package/src/components/ui/select/SelectTrigger.vue +2 -2
  271. package/src/components/ui/separator/Separator.vue +1 -1
  272. package/src/components/ui/sheet/SheetContent.vue +28 -31
  273. package/src/components/ui/sheet/SheetDescription.vue +1 -1
  274. package/src/components/ui/sheet/SheetFooter.vue +1 -1
  275. package/src/components/ui/sheet/SheetHeader.vue +1 -1
  276. package/src/components/ui/sheet/SheetOverlay.vue +1 -1
  277. package/src/components/ui/sheet/SheetTitle.vue +1 -1
  278. package/src/components/ui/sidebar/Sidebar.vue +16 -16
  279. package/src/components/ui/sidebar/SidebarContent.vue +1 -1
  280. package/src/components/ui/sidebar/SidebarFooter.vue +1 -1
  281. package/src/components/ui/sidebar/SidebarGroup.vue +1 -1
  282. package/src/components/ui/sidebar/SidebarGroupAction.vue +3 -3
  283. package/src/components/ui/sidebar/SidebarGroupContent.vue +1 -1
  284. package/src/components/ui/sidebar/SidebarGroupLabel.vue +2 -2
  285. package/src/components/ui/sidebar/SidebarHeader.vue +1 -1
  286. package/src/components/ui/sidebar/SidebarInput.vue +1 -1
  287. package/src/components/ui/sidebar/SidebarInset.vue +2 -2
  288. package/src/components/ui/sidebar/SidebarMenu.vue +1 -1
  289. package/src/components/ui/sidebar/SidebarMenuAction.vue +7 -7
  290. package/src/components/ui/sidebar/SidebarMenuBadge.vue +6 -6
  291. package/src/components/ui/sidebar/SidebarMenuItem.vue +1 -1
  292. package/src/components/ui/sidebar/SidebarMenuSkeleton.vue +3 -3
  293. package/src/components/ui/sidebar/SidebarMenuSub.vue +2 -2
  294. package/src/components/ui/sidebar/SidebarMenuSubButton.vue +5 -5
  295. package/src/components/ui/sidebar/SidebarMenuSubItem.vue +1 -1
  296. package/src/components/ui/sidebar/SidebarProvider.vue +1 -1
  297. package/src/components/ui/sidebar/SidebarRail.vue +6 -6
  298. package/src/components/ui/sidebar/SidebarSeparator.vue +1 -1
  299. package/src/components/ui/sidebar/SidebarTrigger.vue +2 -2
  300. package/src/components/ui/skeleton/Skeleton.vue +1 -1
  301. package/src/components/ui/slider/Slider.vue +4 -4
  302. package/src/components/ui/sonner/Sonner.vue +7 -7
  303. package/src/components/ui/spinner/Spinner.vue +1 -1
  304. package/src/components/ui/stepper/Stepper.vue +1 -1
  305. package/src/components/ui/stepper/StepperDescription.vue +1 -1
  306. package/src/components/ui/stepper/StepperIndicator.vue +4 -4
  307. package/src/components/ui/stepper/StepperItem.vue +1 -1
  308. package/src/components/ui/stepper/StepperSeparator.vue +3 -3
  309. package/src/components/ui/stepper/StepperTitle.vue +1 -1
  310. package/src/components/ui/stepper/StepperTrigger.vue +1 -1
  311. package/src/components/ui/switch/Switch.vue +2 -2
  312. package/src/components/ui/table/Table.vue +6 -12
  313. package/src/components/ui/table/TableBody.vue +1 -1
  314. package/src/components/ui/table/TableCaption.vue +1 -1
  315. package/src/components/ui/table/TableCell.vue +1 -1
  316. package/src/components/ui/table/TableEmpty.vue +14 -17
  317. package/src/components/ui/table/TableFooter.vue +1 -1
  318. package/src/components/ui/table/TableHead.vue +1 -1
  319. package/src/components/ui/table/TableHeader.vue +1 -1
  320. package/src/components/ui/table/TableRow.vue +1 -1
  321. package/src/components/ui/tabs/Tabs.vue +1 -1
  322. package/src/components/ui/tabs/TabsContent.vue +1 -1
  323. package/src/components/ui/tabs/TabsList.vue +1 -1
  324. package/src/components/ui/tabs/TabsTrigger.vue +1 -1
  325. package/src/components/ui/tags-input/TagsInput.vue +3 -3
  326. package/src/components/ui/tags-input/TagsInputInput.vue +1 -1
  327. package/src/components/ui/tags-input/TagsInputItem.vue +1 -1
  328. package/src/components/ui/tags-input/TagsInputItemDelete.vue +2 -2
  329. package/src/components/ui/tags-input/TagsInputItemText.vue +1 -1
  330. package/src/components/ui/textarea/Textarea.vue +1 -1
  331. package/src/components/ui/toggle-group/ToggleGroup.vue +1 -1
  332. package/src/components/ui/toggle-group/ToggleGroupItem.vue +2 -2
  333. package/src/components/ui/tooltip/TooltipContent.vue +2 -2
  334. package/src/components/ui/checkbox/NsCheckbox.vue +0 -123
  335. package/src/components/ui/empty-state/NsEmptyState.vue +0 -149
  336. package/src/components/ui/inline-notification/NsInlineNotification.vue +0 -163
  337. package/src/components/ui/tag/NsTag.vue +0 -114
  338. package/src/components/ui/text-input/NsTextInput.vue +0 -269
  339. package/src/components/ui/toggle/NsToggle.vue +0 -126
@@ -14,7 +14,7 @@ const delegatedProps = reactiveOmit(props, "class")
14
14
  <NavigationMenuItem
15
15
  data-slot="navigation-menu-item"
16
16
  v-bind="delegatedProps"
17
- :class="cn('tw:relative', props.class)"
17
+ :class="cn('relative', props.class)"
18
18
  >
19
19
  <slot />
20
20
  </NavigationMenuItem>
@@ -19,7 +19,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
19
19
  <NavigationMenuLink
20
20
  data-slot="navigation-menu-link"
21
21
  v-bind="forwarded"
22
- :class="cn('tw:data-active:focus:bg-accent tw:data-active:hover:bg-accent tw:data-active:bg-accent/50 tw:data-active:text-accent-foreground tw:hover:bg-accent tw:hover:text-accent-foreground tw:focus:bg-accent tw:focus:text-accent-foreground tw:ring-ring/10 tw:dark:ring-ring/20 tw:dark:outline-ring/40 tw:outline-ring/50 tw:[&_svg:not([class*=\'text-\'])]:text-muted-foreground tw:flex tw:flex-col tw:gap-1 tw:rounded-sm tw:p-2 tw:text-sm tw:transition-[color,box-shadow] tw:focus-visible:ring-4 tw:focus-visible:outline-1 tw:[&_svg:not([class*=\'size-\'])]:size-4', props.class)"
22
+ :class="cn('data-active:focus:bg-accent data-active:hover:bg-accent data-active:bg-accent/50 data-active:text-accent-foreground hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground ring-ring/10 dark:ring-ring/20 dark:outline-ring/40 outline-ring/50 [&_svg:not([class*=\'text-\'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-[color,box-shadow] focus-visible:ring-4 focus-visible:outline-1 [&_svg:not([class*=\'size-\'])]:size-4', props.class)"
23
23
  >
24
24
  <slot />
25
25
  </NavigationMenuLink>
@@ -18,7 +18,7 @@ const forwardedProps = useForwardProps(delegatedProps)
18
18
  v-bind="forwardedProps"
19
19
  :class="
20
20
  cn(
21
- 'tw:group tw:flex tw:flex-1 tw:list-none tw:items-center tw:justify-center tw:gap-1',
21
+ 'group flex flex-1 list-none items-center justify-center gap-1',
22
22
  props.class,
23
23
  )
24
24
  "
@@ -21,11 +21,11 @@ const forwardedProps = useForwardProps(delegatedProps)
21
21
  <NavigationMenuTrigger
22
22
  data-slot="navigation-menu-trigger"
23
23
  v-bind="forwardedProps"
24
- :class="cn(navigationMenuTriggerStyle(), 'tw:group', props.class)"
24
+ :class="cn(navigationMenuTriggerStyle(), 'group', props.class)"
25
25
  >
26
26
  <slot />
27
27
  <ChevronDown
28
- class=""tw:relative tw:top-[1px] tw:ml-1 tw:size-3 tw:transition tw:duration-300 tw:group-data-[state=open]:rotate-180""
28
+ class="relative top-[1px] ml-1 size-3 transition duration-300 group-data-[state=open]:rotate-180"
29
29
  aria-hidden="true"
30
30
  />
31
31
  </NavigationMenuTrigger>
@@ -16,13 +16,13 @@ const forwardedProps = useForwardProps(delegatedProps)
16
16
  </script>
17
17
 
18
18
  <template>
19
- <div class=""tw:absolute tw:top-full tw:left-0 tw:isolate tw:z-50 tw:flex tw:justify-center"">
19
+ <div class="absolute top-full left-0 isolate z-50 flex justify-center">
20
20
  <NavigationMenuViewport
21
21
  data-slot="navigation-menu-viewport"
22
22
  v-bind="forwardedProps"
23
23
  :class="
24
24
  cn(
25
- 'tw:origin-top-center tw:bg-popover tw:text-popover-foreground tw:data-[state=open]:animate-in tw:data-[state=closed]:animate-out tw:data-[state=closed]:zoom-out-95 tw:data-[state=open]:zoom-in-90 tw:relative tw:mt-1.5 tw:h-[var(--reka-navigation-menu-viewport-height)] tw:w-full tw:overflow-hidden tw:rounded-md tw:border tw:shadow tw:md:w-[var(--reka-navigation-menu-viewport-width)] tw:left-[var(--reka-navigation-menu-viewport-left)]',
25
+ 'origin-top-center bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 relative mt-1.5 h-[var(--reka-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border shadow md:w-[var(--reka-navigation-menu-viewport-width)] left-[var(--reka-navigation-menu-viewport-left)]',
26
26
  props.class,
27
27
  )
28
28
  "
@@ -14,7 +14,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
14
14
  </script>
15
15
 
16
16
  <template>
17
- <NumberFieldRoot v-slot="slotProps" v-bind="forwarded" :class="cn('tw:grid tw:gap-1.5', props.class)">
17
+ <NumberFieldRoot v-slot="slotProps" v-bind="forwarded" :class="cn('grid gap-1.5', props.class)">
18
18
  <slot v-bind="slotProps" />
19
19
  </NumberFieldRoot>
20
20
  </template>
@@ -8,7 +8,7 @@ const props = defineProps<{
8
8
  </script>
9
9
 
10
10
  <template>
11
- <div :class="cn('tw:relative tw:[&>[data-slot=input]]:has-[[data-slot=increment]]:pr-5 tw:[&>[data-slot=input]]:has-[[data-slot=decrement]]:pl-5', 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>
@@ -14,9 +14,9 @@ const forwarded = useForwardProps(delegatedProps)
14
14
  </script>
15
15
 
16
16
  <template>
17
- <NumberFieldDecrement data-slot="decrement" v-bind="forwarded" :class="cn('tw:absolute tw:top-1/2 tw:-translate-y-1/2 tw:left-0 tw:p-3 tw:disabled:cursor-not-allowed tw:disabled:opacity-20', props.class)">
17
+ <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)">
18
18
  <slot>
19
- <Minus class=""tw:h-4 tw:w-4"" />
19
+ <Minus class="h-4 w-4" />
20
20
  </slot>
21
21
  </NumberFieldDecrement>
22
22
  </template>
@@ -14,9 +14,9 @@ const forwarded = useForwardProps(delegatedProps)
14
14
  </script>
15
15
 
16
16
  <template>
17
- <NumberFieldIncrement data-slot="increment" v-bind="forwarded" :class="cn('tw:absolute tw:top-1/2 tw:-translate-y-1/2 tw:right-0 tw:disabled:cursor-not-allowed tw:disabled:opacity-20 tw:p-3', props.class)">
17
+ <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)">
18
18
  <slot>
19
- <Plus class=""tw:h-4 tw:w-4"" />
19
+ <Plus class="h-4 w-4" />
20
20
  </slot>
21
21
  </NumberFieldIncrement>
22
22
  </template>
@@ -11,6 +11,6 @@ const props = defineProps<{
11
11
  <template>
12
12
  <NumberFieldInput
13
13
  data-slot="input"
14
- :class="cn('tw:flex tw:h-9 tw:w-full tw:rounded-md tw:border tw:border-input tw:bg-transparent tw:py-1 tw:text-sm tw:text-center tw:shadow-sm tw:transition-colors tw:placeholder:text-muted-foreground tw:focus-visible:outline-none tw:focus-visible:ring-1 tw:focus-visible:ring-ring tw:disabled:cursor-not-allowed tw:disabled:opacity-50', props.class)"
14
+ :class="cn('flex h-9 w-full rounded-md border border-input bg-transparent py-1 text-sm text-center shadow-sm transition-colors placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50', props.class)"
15
15
  />
16
16
  </template>
@@ -19,7 +19,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
19
19
  v-slot="slotProps"
20
20
  data-slot="pagination"
21
21
  v-bind="forwarded"
22
- :class="cn('tw:mx-auto tw:flex tw:w-full tw:justify-center', props.class)"
22
+ :class="cn('mx-auto flex w-full justify-center', props.class)"
23
23
  >
24
24
  <slot v-bind="slotProps" />
25
25
  </PaginationRoot>
@@ -15,7 +15,7 @@ const delegatedProps = reactiveOmit(props, "class")
15
15
  v-slot="slotProps"
16
16
  data-slot="pagination-content"
17
17
  v-bind="delegatedProps"
18
- :class="cn('tw:flex tw:flex-row tw:items-center tw:gap-1', props.class)"
18
+ :class="cn('flex flex-row items-center gap-1', props.class)"
19
19
  >
20
20
  <slot v-bind="slotProps" />
21
21
  </PaginationList>
@@ -15,11 +15,11 @@ const delegatedProps = reactiveOmit(props, "class")
15
15
  <PaginationEllipsis
16
16
  data-slot="pagination-ellipsis"
17
17
  v-bind="delegatedProps"
18
- :class="cn('tw:flex tw:size-9 tw:items-center tw:justify-center', props.class)"
18
+ :class="cn('flex size-9 items-center justify-center', props.class)"
19
19
  >
20
20
  <slot>
21
- <MoreHorizontal class=""tw:size-4"" />
22
- <span class=""tw:sr-only"">More pages</span>
21
+ <MoreHorizontal class="size-4" />
22
+ <span class="sr-only">More pages</span>
23
23
  </slot>
24
24
  </PaginationEllipsis>
25
25
  </template>
@@ -22,12 +22,12 @@ const forwarded = useForwardProps(delegatedProps)
22
22
  <template>
23
23
  <PaginationFirst
24
24
  data-slot="pagination-first"
25
- :class="cn(buttonVariants({ variant: 'ghost', size }), 'tw:gap-1 tw:px-2.5 tw:sm:pr-2.5', props.class)"
25
+ :class="cn(buttonVariants({ variant: 'ghost', size }), 'gap-1 px-2.5 sm:pr-2.5', props.class)"
26
26
  v-bind="forwarded"
27
27
  >
28
28
  <slot>
29
29
  <ChevronLeftIcon />
30
- <span class=""tw:hidden tw:sm:block"">First</span>
30
+ <span class="hidden sm:block">First</span>
31
31
  </slot>
32
32
  </PaginationFirst>
33
33
  </template>
@@ -22,11 +22,11 @@ const forwarded = useForwardProps(delegatedProps)
22
22
  <template>
23
23
  <PaginationLast
24
24
  data-slot="pagination-last"
25
- :class="cn(buttonVariants({ variant: 'ghost', size }), 'tw:gap-1 tw:px-2.5 tw:sm:pr-2.5', props.class)"
25
+ :class="cn(buttonVariants({ variant: 'ghost', size }), 'gap-1 px-2.5 sm:pr-2.5', props.class)"
26
26
  v-bind="forwarded"
27
27
  >
28
28
  <slot>
29
- <span class=""tw:hidden tw:sm:block"">Last</span>
29
+ <span class="hidden sm:block">Last</span>
30
30
  <ChevronRightIcon />
31
31
  </slot>
32
32
  </PaginationLast>
@@ -22,11 +22,11 @@ const forwarded = useForwardProps(delegatedProps)
22
22
  <template>
23
23
  <PaginationNext
24
24
  data-slot="pagination-next"
25
- :class="cn(buttonVariants({ variant: 'ghost', size }), 'tw:gap-1 tw:px-2.5 tw:sm:pr-2.5', props.class)"
25
+ :class="cn(buttonVariants({ variant: 'ghost', size }), 'gap-1 px-2.5 sm:pr-2.5', props.class)"
26
26
  v-bind="forwarded"
27
27
  >
28
28
  <slot>
29
- <span class=""tw:hidden tw:sm:block"">Next</span>
29
+ <span class="hidden sm:block">Next</span>
30
30
  <ChevronRightIcon />
31
31
  </slot>
32
32
  </PaginationNext>
@@ -22,12 +22,12 @@ const forwarded = useForwardProps(delegatedProps)
22
22
  <template>
23
23
  <PaginationPrev
24
24
  data-slot="pagination-previous"
25
- :class="cn(buttonVariants({ variant: 'ghost', size }), 'tw:gap-1 tw:px-2.5 tw:sm:pr-2.5', props.class)"
25
+ :class="cn(buttonVariants({ variant: 'ghost', size }), 'gap-1 px-2.5 sm:pr-2.5', props.class)"
26
26
  v-bind="forwarded"
27
27
  >
28
28
  <slot>
29
29
  <ChevronLeftIcon />
30
- <span class=""tw:hidden tw:sm:block"">Previous</span>
30
+ <span class="hidden sm:block">Previous</span>
31
31
  </slot>
32
32
  </PaginationPrev>
33
33
  </template>
@@ -19,7 +19,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
19
19
  <PinInputRoot
20
20
  :otp="props.otp"
21
21
  data-slot="pin-input"
22
- v-bind="forwarded" :class="cn('tw:flex tw:items-center tw:gap-2 tw:has-disabled:opacity-50 tw:disabled:cursor-not-allowed', props.class)"
22
+ v-bind="forwarded" :class="cn('flex items-center gap-2 has-disabled:opacity-50 disabled:cursor-not-allowed', props.class)"
23
23
  >
24
24
  <slot />
25
25
  </PinInputRoot>
@@ -14,7 +14,7 @@ const forwardedProps = useForwardProps(delegatedProps)
14
14
  <Primitive
15
15
  data-slot="pin-input-group"
16
16
  v-bind="forwardedProps"
17
- :class="cn('tw:flex tw:items-center', props.class)"
17
+ :class="cn('flex items-center', props.class)"
18
18
  >
19
19
  <slot />
20
20
  </Primitive>
@@ -16,6 +16,6 @@ const forwardedProps = useForwardProps(delegatedProps)
16
16
  <PinInputInput
17
17
  data-slot="pin-input-slot"
18
18
  v-bind="forwardedProps"
19
- :class="cn('tw:border-input tw:focus:border-ring tw:focus:ring-ring/50 tw:focus:aria-invalid:ring-destructive/20 tw:dark:bg-input/30 tw:dark:focus:aria-invalid:ring-destructive/40 tw:aria-invalid:border-destructive tw:focus:aria-invalid:border-destructive tw:relative tw:flex tw:h-9 tw:w-9 tw:items-center tw:justify-center tw:border-y tw:border-r tw:text-sm tw:shadow-xs tw:transition-all tw:outline-none tw:text-center tw:first:rounded-l-md tw:first:border-l tw:last:rounded-r-md tw:focus:z-10 tw:focus:ring-[3px]', props.class)"
19
+ :class="cn('border-input focus:border-ring focus:ring-ring/50 focus:aria-invalid:ring-destructive/20 dark:bg-input/30 dark:focus:aria-invalid:ring-destructive/40 aria-invalid:border-destructive focus:aria-invalid:border-destructive relative flex h-9 w-9 items-center justify-center border-y border-r text-sm shadow-xs transition-all outline-none text-center first:rounded-l-md first:border-l last:rounded-r-md focus:z-10 focus:ring-[3px]', props.class)"
20
20
  />
21
21
  </template>
@@ -34,7 +34,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
34
34
  v-bind="{ ...$attrs, ...forwarded }"
35
35
  :class="
36
36
  cn(
37
- 'tw:bg-popover tw:text-popover-foreground tw:data-[state=open]:animate-in tw:data-[state=closed]:animate-out tw:data-[state=closed]:fade-out-0 tw:data-[state=open]:fade-in-0 tw:data-[state=closed]:zoom-out-95 tw:data-[state=open]:zoom-in-95 tw:data-[side=bottom]:slide-in-from-top-2 tw:data-[side=left]:slide-in-from-right-2 tw:data-[side=right]:slide-in-from-left-2 tw:data-[side=top]:slide-in-from-bottom-2 tw:z-50 tw:w-72 tw:rounded-md tw:border tw:p-4 tw:shadow-md tw:origin-(--reka-popover-content-transform-origin) tw:outline-hidden',
37
+ 'bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-72 rounded-md border p-4 shadow-md origin-(--reka-popover-content-transform-origin) outline-hidden',
38
38
  props.class,
39
39
  )
40
40
  "
@@ -1,18 +1,21 @@
1
1
  <script setup lang="ts">
2
- import type { ProgressRootProps } from "reka-ui";
3
- import type { HTMLAttributes } from "vue";
4
- import { reactiveOmit } from "@vueuse/core";
5
- import { ProgressIndicator, ProgressRoot } from "reka-ui";
6
- import { cn } from "@/lib/utils";
2
+ import type { ProgressRootProps } from "reka-ui"
3
+ import type { HTMLAttributes } from "vue"
4
+ import { reactiveOmit } from "@vueuse/core"
5
+ import {
6
+ ProgressIndicator,
7
+ ProgressRoot,
8
+ } from "reka-ui"
9
+ import { cn } from "@/lib/utils"
7
10
 
8
11
  const props = withDefaults(
9
12
  defineProps<ProgressRootProps & { class?: HTMLAttributes["class"] }>(),
10
13
  {
11
14
  modelValue: 0,
12
15
  },
13
- );
16
+ )
14
17
 
15
- const delegatedProps = reactiveOmit(props, "class");
18
+ const delegatedProps = reactiveOmit(props, "class")
16
19
  </script>
17
20
 
18
21
  <template>
@@ -21,14 +24,14 @@ const delegatedProps = reactiveOmit(props, "class");
21
24
  v-bind="delegatedProps"
22
25
  :class="
23
26
  cn(
24
- 'tw:bg-primary/20 tw:relative tw:h-2 tw:w-full tw:overflow-hidden tw:rounded-full',
27
+ 'bg-primary/20 relative h-2 w-full overflow-hidden rounded-full',
25
28
  props.class,
26
29
  )
27
30
  "
28
31
  >
29
32
  <ProgressIndicator
30
33
  data-slot="progress-indicator"
31
- class="tw:bg-primary tw:h-full tw:w-full tw:flex-1 tw:transition-all"
34
+ class="bg-primary h-full w-full flex-1 transition-all"
32
35
  :style="`transform: translateX(-${100 - (props.modelValue ?? 0)}%);`"
33
36
  />
34
37
  </ProgressRoot>
@@ -17,7 +17,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
17
17
  <RadioGroupRoot
18
18
  v-slot="slotProps"
19
19
  data-slot="radio-group"
20
- :class="cn('tw:grid tw:gap-3', props.class)"
20
+ :class="cn('grid gap-3', props.class)"
21
21
  v-bind="forwarded"
22
22
  >
23
23
  <slot v-bind="slotProps" />
@@ -1,18 +1,20 @@
1
1
  <script setup lang="ts">
2
- import type { RadioGroupItemProps } from "reka-ui";
3
- import type { HTMLAttributes } from "vue";
4
- import { reactiveOmit } from "@vueuse/core";
5
- import { CircleIcon } from "lucide-vue-next";
6
- import { RadioGroupIndicator, RadioGroupItem, useForwardProps } from "reka-ui";
7
- import { cn } from "@/lib/utils";
2
+ import type { RadioGroupItemProps } from "reka-ui"
3
+ import type { HTMLAttributes } from "vue"
4
+ import { reactiveOmit } from "@vueuse/core"
5
+ import { CircleIcon } from "lucide-vue-next"
6
+ import {
7
+ RadioGroupIndicator,
8
+ RadioGroupItem,
9
+ useForwardProps,
10
+ } from "reka-ui"
11
+ import { cn } from "@/lib/utils"
8
12
 
9
- const props = defineProps<
10
- RadioGroupItemProps & { class?: HTMLAttributes["class"] }
11
- >();
13
+ const props = defineProps<RadioGroupItemProps & { class?: HTMLAttributes["class"] }>()
12
14
 
13
- const delegatedProps = reactiveOmit(props, "class");
15
+ const delegatedProps = reactiveOmit(props, "class")
14
16
 
15
- const forwardedProps = useForwardProps(delegatedProps);
17
+ const forwardedProps = useForwardProps(delegatedProps)
16
18
  </script>
17
19
 
18
20
  <template>
@@ -21,19 +23,17 @@ const forwardedProps = useForwardProps(delegatedProps);
21
23
  v-bind="forwardedProps"
22
24
  :class="
23
25
  cn(
24
- 'tw:border-input tw:text-primary tw:focus-visible:border-ring tw:focus-visible:ring-ring/50 tw:aria-invalid:ring-destructive/20 tw:dark:aria-invalid:ring-destructive/40 tw:aria-invalid:border-destructive tw:dark:bg-input/30 tw:aspect-square tw:size-4 tw:shrink-0 tw:rounded-full tw:border tw:shadow-xs tw:transition-[color,box-shadow] tw:outline-none tw:focus-visible:ring-[3px] tw:disabled:cursor-not-allowed tw:disabled:opacity-50',
26
+ 'border-input text-primary focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:bg-input/30 aspect-square size-4 shrink-0 rounded-full border shadow-xs transition-[color,box-shadow] outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50',
25
27
  props.class,
26
28
  )
27
29
  "
28
30
  >
29
31
  <RadioGroupIndicator
30
32
  data-slot="radio-group-indicator"
31
- class="tw:relative tw:flex tw:items-center tw:justify-center"
33
+ class="relative flex items-center justify-center"
32
34
  >
33
35
  <slot>
34
- <CircleIcon
35
- class="tw:fill-primary tw:absolute tw:top-1/2 tw:left-1/2 tw:size-2 tw:-translate-x-1/2 tw:-translate-y-1/2"
36
- />
36
+ <CircleIcon class="fill-primary absolute top-1/2 left-1/2 size-2 -translate-x-1/2 -translate-y-1/2" />
37
37
  </slot>
38
38
  </RadioGroupIndicator>
39
39
  </RadioGroupItem>
@@ -19,19 +19,19 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
19
19
  <RangeCalendarRoot
20
20
  v-slot="{ grid, weekDays }"
21
21
  data-slot="range-calendar"
22
- :class="cn('tw:p-3', props.class)"
22
+ :class="cn('p-3', props.class)"
23
23
  v-bind="forwarded"
24
24
  >
25
25
  <RangeCalendarHeader>
26
26
  <RangeCalendarHeading />
27
27
 
28
- <div class=""tw:flex tw:items-center tw:gap-1"">
28
+ <div class="flex items-center gap-1">
29
29
  <RangeCalendarPrevButton />
30
30
  <RangeCalendarNextButton />
31
31
  </div>
32
32
  </RangeCalendarHeader>
33
33
 
34
- <div class=""tw:flex tw:flex-col tw:gap-y-4 tw:mt-4 tw:sm:flex-row tw:sm:gap-x-4 tw:sm:gap-y-0"">
34
+ <div class="flex flex-col gap-y-4 mt-4 sm:flex-row sm:gap-x-4 sm:gap-y-0">
35
35
  <RangeCalendarGrid v-for="month in grid" :key="month.value.toString()">
36
36
  <RangeCalendarGridHead>
37
37
  <RangeCalendarGridRow>
@@ -43,7 +43,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
43
43
  </RangeCalendarGridRow>
44
44
  </RangeCalendarGridHead>
45
45
  <RangeCalendarGridBody>
46
- <RangeCalendarGridRow v-for="(weekDates, index) in month.rows" :key="`weekDate-${index}`" class=""tw:mt-2 tw:w-full"">
46
+ <RangeCalendarGridRow v-for="(weekDates, index) in month.rows" :key="`weekDate-${index}`" class="mt-2 w-full">
47
47
  <RangeCalendarCell
48
48
  v-for="weekDate in weekDates"
49
49
  :key="weekDate.toString()"
@@ -15,7 +15,7 @@ const forwardedProps = useForwardProps(delegatedProps)
15
15
  <template>
16
16
  <RangeCalendarCell
17
17
  data-slot="range-calendar-cell"
18
- :class="cn('tw:relative tw:p-0 tw:text-center tw:text-sm tw:focus-within:relative tw:focus-within:z-20 tw:[&:has([data-selected])]:bg-accent tw:first:[&:has([data-selected])]:rounded-l-md tw:last:[&:has([data-selected])]:rounded-r-md tw:[&:has([data-selected][data-selection-end])]:rounded-r-md tw:[&:has([data-selected][data-selection-start])]:rounded-l-md', props.class)"
18
+ :class="cn('relative p-0 text-center text-sm focus-within:relative focus-within:z-20 [&:has([data-selected])]:bg-accent first:[&:has([data-selected])]:rounded-l-md last:[&:has([data-selected])]:rounded-r-md [&:has([data-selected][data-selection-end])]:rounded-r-md [&:has([data-selected][data-selection-start])]:rounded-l-md', props.class)"
19
19
  v-bind="forwardedProps"
20
20
  >
21
21
  <slot />
@@ -20,18 +20,18 @@ const forwardedProps = useForwardProps(delegatedProps)
20
20
  data-slot="range-calendar-trigger"
21
21
  :class="cn(
22
22
  buttonVariants({ variant: 'ghost' }),
23
- 'tw:h-8 tw:w-8 tw:p-0 tw:font-normal tw:data-[selected]:opacity-100',
24
- 'tw:[&[data-today]:not([data-selected])]:bg-accent tw:[&[data-today]:not([data-selected])]:text-accent-foreground',
23
+ 'h-8 w-8 p-0 font-normal data-[selected]:opacity-100',
24
+ '[&[data-today]:not([data-selected])]:bg-accent [&[data-today]:not([data-selected])]:text-accent-foreground',
25
25
  // Selection Start
26
- 'tw:data-[selection-start]:bg-primary tw:data-[selection-start]:text-primary-foreground tw:data-[selection-start]:hover:bg-primary tw:data-[selection-start]:hover:text-primary-foreground tw:data-[selection-start]:focus:bg-primary tw:data-[selection-start]:focus:text-primary-foreground',
26
+ 'data-[selection-start]:bg-primary data-[selection-start]:text-primary-foreground data-[selection-start]:hover:bg-primary data-[selection-start]:hover:text-primary-foreground data-[selection-start]:focus:bg-primary data-[selection-start]:focus:text-primary-foreground',
27
27
  // Selection End
28
- 'tw:data-[selection-end]:bg-primary tw:data-[selection-end]:text-primary-foreground tw:data-[selection-end]:hover:bg-primary tw:data-[selection-end]:hover:text-primary-foreground tw:data-[selection-end]:focus:bg-primary tw:data-[selection-end]:focus:text-primary-foreground',
28
+ 'data-[selection-end]:bg-primary data-[selection-end]:text-primary-foreground data-[selection-end]:hover:bg-primary data-[selection-end]:hover:text-primary-foreground data-[selection-end]:focus:bg-primary data-[selection-end]:focus:text-primary-foreground',
29
29
  // Outside months
30
- 'tw:data-[outside-view]:text-muted-foreground',
30
+ 'data-[outside-view]:text-muted-foreground',
31
31
  // Disabled
32
- 'tw:data-[disabled]:text-muted-foreground tw:data-[disabled]:opacity-50',
32
+ 'data-[disabled]:text-muted-foreground data-[disabled]:opacity-50',
33
33
  // Unavailable
34
- 'tw:data-[unavailable]:text-destructive-foreground tw:data-[unavailable]:line-through',
34
+ 'data-[unavailable]:text-destructive-foreground data-[unavailable]:line-through',
35
35
  props.class,
36
36
  )"
37
37
  v-bind="forwardedProps"
@@ -15,7 +15,7 @@ const forwardedProps = useForwardProps(delegatedProps)
15
15
  <template>
16
16
  <RangeCalendarGrid
17
17
  data-slot="range-calendar-grid"
18
- :class="cn('tw:w-full tw:border-collapse tw:space-x-1', props.class)"
18
+ :class="cn('w-full border-collapse space-x-1', props.class)"
19
19
  v-bind="forwardedProps"
20
20
  >
21
21
  <slot />
@@ -15,7 +15,7 @@ const forwardedProps = useForwardProps(delegatedProps)
15
15
  <template>
16
16
  <RangeCalendarGridRow
17
17
  data-slot="range-calendar-grid-row"
18
- :class="cn('tw:flex', props.class)" v-bind="forwardedProps"
18
+ :class="cn('flex', props.class)" v-bind="forwardedProps"
19
19
  >
20
20
  <slot />
21
21
  </RangeCalendarGridRow>
@@ -15,7 +15,7 @@ const forwardedProps = useForwardProps(delegatedProps)
15
15
  <template>
16
16
  <RangeCalendarHeadCell
17
17
  data-slot="range-calendar-head-cell"
18
- :class="cn('tw:w-8 tw:rounded-md tw:text-[0.8rem] tw:font-normal tw:text-muted-foreground', props.class)"
18
+ :class="cn('w-8 rounded-md text-[0.8rem] font-normal text-muted-foreground', props.class)"
19
19
  v-bind="forwardedProps"
20
20
  >
21
21
  <slot />
@@ -15,7 +15,7 @@ const forwardedProps = useForwardProps(delegatedProps)
15
15
  <template>
16
16
  <RangeCalendarHeader
17
17
  data-slot="range-calendar-header"
18
- :class="cn('tw:flex tw:justify-center tw:pt-1 tw:relative tw:items-center tw:w-full', props.class)"
18
+ :class="cn('flex justify-center pt-1 relative items-center w-full', props.class)"
19
19
  v-bind="forwardedProps"
20
20
  >
21
21
  <slot />
@@ -20,7 +20,7 @@ const forwardedProps = useForwardProps(delegatedProps)
20
20
  <RangeCalendarHeading
21
21
  v-slot="{ headingValue }"
22
22
  data-slot="range-calendar-heading"
23
- :class="cn('tw:text-sm tw:font-medium', props.class)"
23
+ :class="cn('text-sm font-medium', props.class)"
24
24
  v-bind="forwardedProps"
25
25
  >
26
26
  <slot :heading-value>
@@ -19,14 +19,14 @@ const forwardedProps = useForwardProps(delegatedProps)
19
19
  data-slot="range-calendar-next-button"
20
20
  :class="cn(
21
21
  buttonVariants({ variant: 'outline' }),
22
- 'tw:absolute tw:right-1',
23
- 'tw:size-7 tw:bg-transparent tw:p-0 tw:opacity-50 tw:hover:opacity-100',
22
+ 'absolute right-1',
23
+ 'size-7 bg-transparent p-0 opacity-50 hover:opacity-100',
24
24
  props.class,
25
25
  )"
26
26
  v-bind="forwardedProps"
27
27
  >
28
28
  <slot>
29
- <ChevronRight class=""tw:size-4"" />
29
+ <ChevronRight class="size-4" />
30
30
  </slot>
31
31
  </RangeCalendarNext>
32
32
  </template>
@@ -19,14 +19,14 @@ const forwardedProps = useForwardProps(delegatedProps)
19
19
  data-slot="range-calendar-prev-button"
20
20
  :class="cn(
21
21
  buttonVariants({ variant: 'outline' }),
22
- 'tw:absolute tw:left-1',
23
- 'tw:size-7 tw:bg-transparent tw:p-0 tw:opacity-50 tw:hover:opacity-100',
22
+ 'absolute left-1',
23
+ 'size-7 bg-transparent p-0 opacity-50 hover:opacity-100',
24
24
  props.class,
25
25
  )"
26
26
  v-bind="forwardedProps"
27
27
  >
28
28
  <slot>
29
- <ChevronLeft class=""tw:size-4"" />
29
+ <ChevronLeft class="size-4" />
30
30
  </slot>
31
31
  </RangeCalendarPrev>
32
32
  </template>
@@ -17,12 +17,12 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
17
17
  <SplitterResizeHandle
18
18
  data-slot="resizable-handle"
19
19
  v-bind="forwarded"
20
- :class="cn('tw:bg-border tw:focus-visible:ring-ring tw:relative tw:flex tw:w-px tw:items-center tw:justify-center tw:after:absolute tw:after:inset-y-0 tw:after:left-1/2 tw:after:w-1 tw:after:-translate-x-1/2 tw:focus-visible:ring-1 tw:focus-visible:ring-offset-1 tw:focus-visible:outline-hidden tw:data-[orientation=vertical]:h-px tw:data-[orientation=vertical]:w-full tw:data-[orientation=vertical]:after:left-0 tw:data-[orientation=vertical]:after:h-1 tw:data-[orientation=vertical]:after:w-full tw:data-[orientation=vertical]:after:-translate-y-1/2 tw:data-[orientation=vertical]:after:translate-x-0 tw:[&[data-orientation=vertical]>div]:rotate-90', props.class)"
20
+ :class="cn('bg-border focus-visible:ring-ring relative flex w-px items-center justify-center after:absolute after:inset-y-0 after:left-1/2 after:w-1 after:-translate-x-1/2 focus-visible:ring-1 focus-visible:ring-offset-1 focus-visible:outline-hidden data-[orientation=vertical]:h-px data-[orientation=vertical]:w-full data-[orientation=vertical]:after:left-0 data-[orientation=vertical]:after:h-1 data-[orientation=vertical]:after:w-full data-[orientation=vertical]:after:-translate-y-1/2 data-[orientation=vertical]:after:translate-x-0 [&[data-orientation=vertical]>div]:rotate-90', props.class)"
21
21
  >
22
22
  <template v-if="props.withHandle">
23
- <div class=""tw:bg-border tw:z-10 tw:flex tw:h-4 tw:w-3 tw:items-center tw:justify-center tw:rounded-xs tw:border"">
23
+ <div class="bg-border z-10 flex h-4 w-3 items-center justify-center rounded-xs border">
24
24
  <slot>
25
- <GripVertical class=""tw:size-2.5"" />
25
+ <GripVertical class="size-2.5" />
26
26
  </slot>
27
27
  </div>
28
28
  </template>
@@ -18,7 +18,7 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
18
18
  v-slot="slotProps"
19
19
  data-slot="resizable-panel-group"
20
20
  v-bind="forwarded"
21
- :class="cn('tw:flex tw:h-full tw:w-full tw:data-[orientation=vertical]:flex-col', props.class)"
21
+ :class="cn('flex h-full w-full data-[orientation=vertical]:flex-col', props.class)"
22
22
  >
23
23
  <slot v-bind="slotProps" />
24
24
  </SplitterGroup>
@@ -19,11 +19,11 @@ const delegatedProps = reactiveOmit(props, "class")
19
19
  <ScrollAreaRoot
20
20
  data-slot="scroll-area"
21
21
  v-bind="delegatedProps"
22
- :class="cn('tw:relative', props.class)"
22
+ :class="cn('relative', props.class)"
23
23
  >
24
24
  <ScrollAreaViewport
25
25
  data-slot="scroll-area-viewport"
26
- class=""tw:focus-visible:ring-ring/50 tw:size-full tw:rounded-[inherit] tw:transition-[color,box-shadow] tw:outline-none tw:focus-visible:ring-[3px] tw:focus-visible:outline-1""
26
+ class="focus-visible:ring-ring/50 size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring-[3px] focus-visible:outline-1"
27
27
  >
28
28
  <slot />
29
29
  </ScrollAreaViewport>