@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
@@ -170,13 +170,13 @@ const handleJumperChange = (event: Event) => {
170
170
  <template>
171
171
  <div :class="containerClasses">
172
172
  <!-- Total items display -->
173
- <div v-if="showTotal && totalItems" class="tw:text-sm tw:text-muted-foreground">
173
+ <div v-if="showTotal && totalItems" class="text-sm text-muted-foreground">
174
174
  Total: {{ totalItems }} items
175
175
  </div>
176
176
 
177
177
  <!-- Page size changer -->
178
- <div v-if="showSizeChanger" class="tw:flex tw:items-center tw:gap-2">
179
- <span class="tw:text-sm tw:text-muted-foreground">Items per page:</span>
178
+ <div v-if="showSizeChanger" class="flex items-center gap-2">
179
+ <span class="text-sm text-muted-foreground">Items per page:</span>
180
180
  <select
181
181
  v-model="itemsPerPageInternal"
182
182
  :disabled="disabled"
@@ -189,7 +189,7 @@ const handleJumperChange = (event: Event) => {
189
189
  </div>
190
190
 
191
191
  <!-- Pagination buttons -->
192
- <div class="tw:flex tw:items-center tw:gap-1">
192
+ <div class="flex items-center gap-1">
193
193
  <!-- Previous button -->
194
194
  <button
195
195
  :class="buttonClasses"
@@ -197,7 +197,7 @@ const handleJumperChange = (event: Event) => {
197
197
  @click="handlePrev"
198
198
  aria-label="Previous page"
199
199
  >
200
- <ChevronLeft class="tw:h-4 tw:w-4" />
200
+ <ChevronLeft class="h-4 w-4" />
201
201
  </button>
202
202
 
203
203
  <!-- Page numbers -->
@@ -212,9 +212,9 @@ const handleJumperChange = (event: Event) => {
212
212
  </button>
213
213
  <span
214
214
  v-else
215
- class="tw:flex tw:items-center tw:justify-center tw:h-8 tw:w-8 tw:text-sm tw:text-muted-foreground"
215
+ class="flex items-center justify-center h-8 w-8 text-sm text-muted-foreground"
216
216
  >
217
- <MoreHorizontal class="tw:h-4 tw:w-4" />
217
+ <MoreHorizontal class="h-4 w-4" />
218
218
  </span>
219
219
  </template>
220
220
 
@@ -225,13 +225,13 @@ const handleJumperChange = (event: Event) => {
225
225
  @click="handleNext"
226
226
  aria-label="Next page"
227
227
  >
228
- <ChevronRight class="tw:h-4 tw:w-4" />
228
+ <ChevronRight class="h-4 w-4" />
229
229
  </button>
230
230
  </div>
231
231
 
232
232
  <!-- Quick jumper -->
233
- <div v-if="showQuickJumper" class="tw:flex tw:items-center tw:gap-2">
234
- <span class="tw:text-sm tw:text-muted-foreground">Go to page:</span>
233
+ <div v-if="showQuickJumper" class="flex items-center gap-2">
234
+ <span class="text-sm text-muted-foreground">Go to page:</span>
235
235
  <input
236
236
  type="number"
237
237
  :min="1"
@@ -71,9 +71,9 @@ const labelClasses = computed(() => {
71
71
  </script>
72
72
 
73
73
  <template>
74
- <div class="tw:space-y-2">
74
+ <div class="space-y-2">
75
75
  <!-- Label -->
76
- <div v-if="showLabel && (label || $slots.label)" class="tw:flex tw:items-center tw:justify-between">
76
+ <div v-if="showLabel && (label || $slots.label)" class="flex items-center justify-between">
77
77
  <div :class="labelClasses">
78
78
  <slot name="label">{{ label }}</slot>
79
79
  </div>
@@ -94,7 +94,7 @@ const labelClasses = computed(() => {
94
94
  </div>
95
95
 
96
96
  <!-- Value display -->
97
- <div v-if="$slots.value" class="tw:text-sm tw:text-muted-foreground">
97
+ <div v-if="$slots.value" class="text-sm text-muted-foreground">
98
98
  <slot name="value" :value="value" :percentage="percentage" />
99
99
  </div>
100
100
  </div>
@@ -78,9 +78,9 @@ const labelClasses = computed(() => {
78
78
  </script>
79
79
 
80
80
  <template>
81
- <div class="tw:space-y-2">
81
+ <div class="space-y-2">
82
82
  <!-- Label -->
83
- <div v-if="showLabel && (label || $slots.label)" class="tw:flex tw:items-center tw:justify-between">
83
+ <div v-if="showLabel && (label || $slots.label)" class="flex items-center justify-between">
84
84
  <div :class="labelClasses">
85
85
  <slot name="label">{{ label }}</slot>
86
86
  </div>
@@ -101,13 +101,13 @@ const labelClasses = computed(() => {
101
101
  <!-- Animated shimmer effect -->
102
102
  <div
103
103
  v-if="animated && !indeterminate"
104
- class="tw:h-full tw:w-full tw:bg-gradient-to-r tw:from-transparent tw:via-white/20 tw:to-transparent tw:animate-[shimmer_2s_ease-in-out_infinite]"
104
+ class="h-full w-full bg-gradient-to-r from-transparent via-white/20 to-transparent animate-[shimmer_2s_ease-in-out_infinite]"
105
105
  />
106
106
  </div>
107
107
  </div>
108
108
 
109
109
  <!-- Value display -->
110
- <div v-if="$slots.value" class="tw:text-sm tw:text-muted-foreground">
110
+ <div v-if="$slots.value" class="text-sm text-muted-foreground">
111
111
  <slot name="value" :value="value" :percentage="percentage" />
112
112
  </div>
113
113
  </div>
@@ -105,7 +105,7 @@ const decimals = computed(() => {
105
105
  <!-- Label -->
106
106
  <div
107
107
  v-if="showLabel && (label || $slots.label)"
108
- class="tw:flex tw:items-center tw:justify-between tw:mb-2"
108
+ class="flex items-center justify-between mb-2"
109
109
  >
110
110
  <div :class="labelClasses">
111
111
  <slot name="label">{{ label }}</slot>
@@ -131,13 +131,13 @@ const decimals = computed(() => {
131
131
  </SliderRoot>
132
132
 
133
133
  <!-- Scale markers for byte units -->
134
- <div class="tw:relative tw:mt-2 tw:flex tw:justify-between tw:text-xs tw:text-muted-foreground">
134
+ <div class="relative mt-2 flex justify-between text-xs text-muted-foreground">
135
135
  <span v-if="showByteUnits">{{ formatBytes(min) }}</span>
136
136
  <span v-if="showByteUnits">{{ formatBytes(max) }}</span>
137
137
  </div>
138
138
 
139
139
  <!-- Custom value display -->
140
- <div v-if="$slots.value" class="tw:mt-2">
140
+ <div v-if="$slots.value" class="mt-2">
141
141
  <slot name="value" :value="value" :display-value="displayValue" />
142
142
  </div>
143
143
  </div>
@@ -104,7 +104,7 @@ const valueClasses = computed(() => {
104
104
  <!-- Label -->
105
105
  <div
106
106
  v-if="showLabel && (label || $slots.label)"
107
- class="tw:flex tw:items-center tw:justify-between tw:mb-2"
107
+ class="flex items-center justify-between mb-2"
108
108
  >
109
109
  <div :class="labelClasses">
110
110
  <slot name="label">{{ label }}</slot>
@@ -135,7 +135,7 @@ const valueClasses = computed(() => {
135
135
  </SliderRoot>
136
136
 
137
137
  <!-- Custom value display -->
138
- <div v-if="$slots.value" class="tw:mt-2">
138
+ <div v-if="$slots.value" class="mt-2">
139
139
  <slot name="value" :value="value" :display-value="displayValue" />
140
140
  </div>
141
141
  </div>
@@ -99,21 +99,21 @@ const handleKeydown = (event: KeyboardEvent) => {
99
99
  tabindex="0"
100
100
  >
101
101
  <!-- Icon slot/component -->
102
- <div v-if="icon && !isFilter" class="tw:flex tw:items-center tw:justify-center">
102
+ <div v-if="icon && !isFilter" class="flex items-center justify-center">
103
103
  <component
104
104
  v-if="typeof icon === 'object'"
105
105
  :is="icon"
106
- class="tw:h-3 tw:w-3"
106
+ class="h-3 w-3"
107
107
  />
108
108
  <div
109
109
  v-else-if="typeof icon === 'string'"
110
110
  v-html="icon"
111
- class="tw:h-3 tw:w-3"
111
+ class="h-3 w-3"
112
112
  />
113
113
  </div>
114
114
 
115
115
  <!-- Label content -->
116
- <span class="tw:truncate tw:max-w-[200px]">
116
+ <span class="truncate max-w-[200px]">
117
117
  <slot>{{ label }}</slot>
118
118
  </span>
119
119
 
@@ -132,7 +132,7 @@ const handleKeydown = (event: KeyboardEvent) => {
132
132
  :title="clearAriaLabel"
133
133
  @click="handleRemove"
134
134
  >
135
- <X class="tw:h-3 tw:w-3" />
135
+ <X class="h-3 w-3" />
136
136
  </button>
137
137
  </component>
138
138
  </template>
@@ -141,7 +141,7 @@ defineExpose({
141
141
  <slot name="label">{{ label }}</slot>
142
142
  </label>
143
143
 
144
- <div class="tw:relative">
144
+ <div class="relative">
145
145
  <span
146
146
  v-if="prefix"
147
147
  :class="cn( 'absolute left-3 top-1/2 transform -translate-y-1/2 text-sm text-muted-foreground',
@@ -186,7 +186,7 @@ defineExpose({
186
186
 
187
187
  <div
188
188
  v-if="StatusIcon || (isPassword && showPasswordToggle)"
189
- class="tw:absolute tw:right-0 tw:top-1/2 tw:transform tw:-translate-y-1/2 tw:flex tw:items-center tw:gap-1 tw:pr-3"
189
+ class="absolute right-0 top-1/2 transform -translate-y-1/2 flex items-center gap-1 pr-3"
190
190
  >
191
191
  <component
192
192
  v-if="StatusIcon"
@@ -210,8 +210,8 @@ defineExpose({
210
210
  @click="togglePasswordVisibility"
211
211
  :title="isPasswordVisible ? 'Hide password' : 'Show password'"
212
212
  >
213
- <EyeOff v-if="isPasswordVisible" class="tw:h-4 tw:w-4" />
214
- <Eye v-else class="tw:h-4 tw:w-4" />
213
+ <EyeOff v-if="isPasswordVisible" class="h-4 w-4" />
214
+ <Eye v-else class="h-4 w-4" />
215
215
  </button>
216
216
  </div>
217
217
  </div>
@@ -228,7 +228,7 @@ defineExpose({
228
228
  <component
229
229
  v-if="StatusIcon"
230
230
  :is="StatusIcon"
231
- class="tw:h-4 tw:w-4 tw:mt-0.5 tw:flex-shrink-0"
231
+ class="h-4 w-4 mt-0.5 flex-shrink-0"
232
232
  />
233
233
  <span>{{ displayMessage }}</span>
234
234
  </p>
@@ -85,24 +85,24 @@ const positionClasses = computed(() => {
85
85
  <!-- Icon -->
86
86
  <component
87
87
  :is="NotificationIcon"
88
- class="tw:h-5 tw:w-5 tw:shrink-0"
88
+ class="h-5 w-5 shrink-0"
89
89
  />
90
90
 
91
91
  <!-- Loading spinner -->
92
92
  <Loader2
93
93
  v-if="loading"
94
- class="tw:h-5 tw:w-5 tw:shrink-0 tw:animate-spin"
94
+ class="h-5 w-5 shrink-0 animate-spin"
95
95
  />
96
96
 
97
97
  <!-- Content -->
98
- <div class="tw:grid tw:gap-1">
98
+ <div class="grid gap-1">
99
99
  <!-- Title -->
100
- <div v-if="title || $slots.title" class="tw:text-sm tw:font-semibold">
100
+ <div v-if="title || $slots.title" class="text-sm font-semibold">
101
101
  <slot name="title">{{ title }}</slot>
102
102
  </div>
103
103
 
104
104
  <!-- Description -->
105
- <div v-if="description || $slots.description" class="tw:text-sm tw:opacity-90">
105
+ <div v-if="description || $slots.description" class="text-sm opacity-90">
106
106
  <slot name="description">{{ description }}</slot>
107
107
  </div>
108
108
 
@@ -136,13 +136,13 @@ const positionClasses = computed(() => {
136
136
  )"
137
137
  @click="emit('close')"
138
138
  >
139
- <X class="tw:h-4 tw:w-4" />
139
+ <X class="h-4 w-4" />
140
140
  </button>
141
141
 
142
142
  <!-- Progress bar for auto-dismiss -->
143
143
  <div
144
144
  v-if="duration > 0"
145
- class="tw:absolute tw:bottom-0 tw:left-0 tw:h-1 tw:bg-black/20 dark:tw:bg-white/20 tw:animate-[shrink_x_var(--duration)_linear_forwards]"
145
+ class="absolute bottom-0 left-0 h-1 bg-black/20 dark:bg-white/20 animate-[shrink_x_var(--duration)_linear_forwards]"
146
146
  :style="{ '--duration': `${duration}ms` }"
147
147
  />
148
148
  </div>
@@ -94,7 +94,7 @@ const thumbClasses = computed(() => {
94
94
  <SwitchThumb :class="thumbClasses" />
95
95
  </SwitchRoot>
96
96
 
97
- <div class="tw:grid tw:gap-1.5">
97
+ <div class="grid gap-1.5">
98
98
  <label
99
99
  v-if="label || $slots.label"
100
100
  :for="toggleId"
@@ -142,7 +142,7 @@ const thumbClasses = computed(() => {
142
142
 
143
143
  <p
144
144
  v-if="description"
145
- class="tw:text-sm tw:text-muted-foreground"
145
+ class="text-sm text-muted-foreground"
146
146
  >
147
147
  {{ description }}
148
148
  </p>
@@ -281,14 +281,14 @@ watch(currentStep, (newStep, oldStep) => {
281
281
  <template>
282
282
  <div :class="containerClasses">
283
283
  <!-- Progress bar -->
284
- <div v-if="showProgressBar" class="tw:mb-8">
285
- <div class="tw:relative tw:h-2 tw:w-full tw:overflow-hidden tw:rounded-full tw:bg-secondary">
284
+ <div v-if="showProgressBar" class="mb-8">
285
+ <div class="relative h-2 w-full overflow-hidden rounded-full bg-secondary">
286
286
  <div
287
- class="tw:h-full tw:w-full tw:bg-primary tw:transition-all tw:duration-300 tw:ease-in-out"
287
+ class="h-full w-full bg-primary transition-all duration-300 ease-in-out"
288
288
  :style="{ width: `${progressPercentage}%` }"
289
289
  />
290
290
  </div>
291
- <div class="tw:mt-2 tw:text-sm tw:text-muted-foreground">
291
+ <div class="mt-2 text-sm text-muted-foreground">
292
292
  Step {{ currentStep + 1 }} of {{ steps.length }}
293
293
  </div>
294
294
  </div>
@@ -303,16 +303,16 @@ watch(currentStep, (newStep, oldStep) => {
303
303
  @click="goToStep(index)"
304
304
  >
305
305
  <!-- Step indicator -->
306
- <div :class="getStepClasses(index)" class="tw:w-8 tw:h-8 tw:text-sm tw:font-medium">
307
- <Check v-if="getStepState(index) === 'completed'" class="tw:h-4 tw:w-4" />
308
- <component v-else-if="showStepIcons && step.icon" :is="step.icon" class="tw:h-4 tw:w-4" />
306
+ <div :class="getStepClasses(index)" class="w-8 h-8 text-sm font-medium">
307
+ <Check v-if="getStepState(index) === 'completed'" class="h-4 w-4" />
308
+ <component v-else-if="showStepIcons && step.icon" :is="step.icon" class="h-4 w-4" />
309
309
  <span v-else-if="showStepNumbers">{{ index + 1 }}</span>
310
310
  </div>
311
311
 
312
312
  <!-- Step info -->
313
- <div class="tw:text-left">
314
- <div class="tw:font-medium tw:text-sm">{{ step.title }}</div>
315
- <div v-if="step.description" class="tw:text-xs tw:text-muted-foreground">
313
+ <div class="text-left">
314
+ <div class="font-medium text-sm">{{ step.title }}</div>
315
+ <div v-if="step.description" class="text-xs text-muted-foreground">
316
316
  {{ step.description }}
317
317
  </div>
318
318
  </div>
@@ -323,13 +323,13 @@ watch(currentStep, (newStep, oldStep) => {
323
323
  <Separator
324
324
  v-if="!vertical"
325
325
  orientation="vertical"
326
- class="tw:hidden lg:tw:block"
326
+ class="hidden lg:block"
327
327
  />
328
328
 
329
329
  <!-- Content -->
330
330
  <div :class="contentClasses">
331
331
  <!-- Current step content -->
332
- <div class="tw:space-y-6">
332
+ <div class="space-y-6">
333
333
  <slot
334
334
  :name="`step-${currentStepData.id}`"
335
335
  :step="currentStepData"
@@ -344,12 +344,12 @@ watch(currentStep, (newStep, oldStep) => {
344
344
  :canSkip="canSkip"
345
345
  >
346
346
  <!-- Default step content -->
347
- <div class="tw:space-y-4">
348
- <h2 class="tw:text-xl tw:font-semibold">{{ currentStepData.title }}</h2>
349
- <p v-if="currentStepData.description" class="tw:text-muted-foreground">
347
+ <div class="space-y-4">
348
+ <h2 class="text-xl font-semibold">{{ currentStepData.title }}</h2>
349
+ <p v-if="currentStepData.description" class="text-muted-foreground">
350
350
  {{ currentStepData.description }}
351
351
  </p>
352
- <div class="tw:text-sm tw:text-muted-foreground">
352
+ <div class="text-sm text-muted-foreground">
353
353
  Step {{ currentStep + 1 }} of {{ steps.length }}
354
354
  </div>
355
355
  </div>
@@ -358,7 +358,7 @@ watch(currentStep, (newStep, oldStep) => {
358
358
 
359
359
  <!-- Navigation buttons -->
360
360
  <div v-if="showNavigation" :class="navigationClasses">
361
- <div class="tw:flex tw:gap-2">
361
+ <div class="flex gap-2">
362
362
  <!-- Previous button -->
363
363
  <Button
364
364
  v-if="!hidePreviousOnFirst || !isFirstStep"
@@ -366,7 +366,7 @@ watch(currentStep, (newStep, oldStep) => {
366
366
  :disabled="!canGoPrevious"
367
367
  @click="handlePrevious"
368
368
  >
369
- <ChevronLeft class="tw:h-4 tw:w-4" />
369
+ <ChevronLeft class="h-4 w-4" />
370
370
  {{ previousButtonText }}
371
371
  </Button>
372
372
 
@@ -381,15 +381,15 @@ watch(currentStep, (newStep, oldStep) => {
381
381
  </Button>
382
382
  </div>
383
383
 
384
- <div class="tw:flex tw:gap-2">
384
+ <div class="flex gap-2">
385
385
  <!-- Next/Finish button -->
386
386
  <Button
387
387
  :disabled="!canGoNext"
388
388
  @click="handleNext"
389
389
  >
390
390
  {{ isLastStep ? finishButtonText : nextButtonText }}
391
- <ChevronRight v-if="!isLastStep" class="tw:h-4 tw:w-4" />
392
- <Check v-else class="tw:h-4 tw:w-4" />
391
+ <ChevronRight v-if="!isLastStep" class="h-4 w-4" />
392
+ <Check v-else class="h-4 w-4" />
393
393
  </Button>
394
394
  </div>
395
395
  </div>
@@ -14,9 +14,9 @@ const delegatedProps = reactiveOmit(props, "class")
14
14
  <AccordionContent
15
15
  data-slot="accordion-content"
16
16
  v-bind="delegatedProps"
17
- class=""tw:data-[state=closed]:animate-accordion-up tw:data-[state=open]:animate-accordion-down tw:overflow-hidden tw:text-sm""
17
+ class="data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down overflow-hidden text-sm"
18
18
  >
19
- <div :class="cn('tw:pt-0 tw:pb-4', props.class)">
19
+ <div :class="cn('pt-0 pb-4', props.class)">
20
20
  <slot />
21
21
  </div>
22
22
  </AccordionContent>
@@ -17,7 +17,7 @@ const forwardedProps = useForwardProps(delegatedProps)
17
17
  v-slot="slotProps"
18
18
  data-slot="accordion-item"
19
19
  v-bind="forwardedProps"
20
- :class="cn('tw:border-b tw:last:border-b-0', props.class)"
20
+ :class="cn('border-b last:border-b-0', props.class)"
21
21
  >
22
22
  <slot v-bind="slotProps" />
23
23
  </AccordionItem>
@@ -15,13 +15,13 @@ const delegatedProps = reactiveOmit(props, "class")
15
15
  </script>
16
16
 
17
17
  <template>
18
- <AccordionHeader class=""tw:flex"">
18
+ <AccordionHeader class="flex">
19
19
  <AccordionTrigger
20
20
  data-slot="accordion-trigger"
21
21
  v-bind="delegatedProps"
22
22
  :class="
23
23
  cn(
24
- 'tw:focus-visible:border-ring tw:focus-visible:ring-ring/50 tw:flex tw:flex-1 tw:items-start tw:justify-between tw:gap-4 tw:rounded-md tw:py-4 tw:text-left tw:text-sm tw:font-medium tw:transition-all tw:outline-none tw:hover:underline tw:focus-visible:ring-[3px] tw:disabled:pointer-events-none tw:disabled:opacity-50 tw:[&[data-state=open]>svg]:rotate-180',
24
+ 'focus-visible:border-ring focus-visible:ring-ring/50 flex flex-1 items-start justify-between gap-4 rounded-md py-4 text-left text-sm font-medium transition-all outline-none hover:underline focus-visible:ring-[3px] disabled:pointer-events-none disabled:opacity-50 [&[data-state=open]>svg]:rotate-180',
25
25
  props.class,
26
26
  )
27
27
  "
@@ -29,7 +29,7 @@ const delegatedProps = reactiveOmit(props, "class")
29
29
  <slot />
30
30
  <slot name="icon">
31
31
  <ChevronDown
32
- class=""tw:text-muted-foreground tw:pointer-events-none tw:size-4 tw:shrink-0 tw:translate-y-0.5 tw:transition-transform tw:duration-200""
32
+ class="text-muted-foreground pointer-events-none size-4 shrink-0 translate-y-0.5 transition-transform duration-200"
33
33
  />
34
34
  </slot>
35
35
  </AccordionTrigger>
@@ -10,7 +10,7 @@ const props = defineProps<{
10
10
  <template>
11
11
  <div
12
12
  data-slot="alert-description"
13
- :class="cn('tw:text-muted-foreground tw:col-start-2 tw:grid tw:justify-items-start tw:gap-1 tw:text-sm tw:[&_p]:leading-relaxed', props.class)"
13
+ :class="cn('text-muted-foreground col-start-2 grid justify-items-start gap-1 text-sm [&_p]:leading-relaxed', props.class)"
14
14
  >
15
15
  <slot />
16
16
  </div>
@@ -10,7 +10,7 @@ const props = defineProps<{
10
10
  <template>
11
11
  <div
12
12
  data-slot="alert-title"
13
- :class="cn('tw:col-start-2 tw:line-clamp-1 tw:min-h-4 tw:font-medium tw:tracking-tight', props.class)"
13
+ :class="cn('col-start-2 line-clamp-1 min-h-4 font-medium tracking-tight', props.class)"
14
14
  >
15
15
  <slot />
16
16
  </div>
@@ -16,7 +16,7 @@ const delegatedProps = reactiveOmit(props, "class")
16
16
  v-bind="delegatedProps"
17
17
  :class="cn(
18
18
  buttonVariants({ variant: 'outline' }),
19
- 'tw:mt-2 tw:sm:mt-0',
19
+ 'mt-2 sm:mt-0',
20
20
  props.class,
21
21
  )"
22
22
  >
@@ -26,14 +26,14 @@ const forwarded = useForwardPropsEmits(delegatedProps, emits)
26
26
  <AlertDialogPortal>
27
27
  <AlertDialogOverlay
28
28
  data-slot="alert-dialog-overlay"
29
- class=""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:fixed tw:inset-0 tw:z-50 tw:bg-black/80""
29
+ class="data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/80"
30
30
  />
31
31
  <AlertDialogContent
32
32
  data-slot="alert-dialog-content"
33
33
  v-bind="{ ...$attrs, ...forwarded }"
34
34
  :class="
35
35
  cn(
36
- 'tw:bg-background 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:fixed tw:top-[50%] tw:left-[50%] tw:z-50 tw:grid tw:w-full tw:max-w-[calc(100%-2rem)] tw:translate-x-[-50%] tw:translate-y-[-50%] tw:gap-4 tw:rounded-lg tw:border tw:p-6 tw:shadow-lg tw:duration-200 tw:sm:max-w-lg',
36
+ 'bg-background 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 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg',
37
37
  props.class,
38
38
  )
39
39
  "
@@ -16,7 +16,7 @@ const delegatedProps = reactiveOmit(props, "class")
16
16
  <AlertDialogDescription
17
17
  data-slot="alert-dialog-description"
18
18
  v-bind="delegatedProps"
19
- :class="cn('tw:text-muted-foreground tw:text-sm', props.class)"
19
+ :class="cn('text-muted-foreground text-sm', props.class)"
20
20
  >
21
21
  <slot />
22
22
  </AlertDialogDescription>
@@ -12,7 +12,7 @@ const props = defineProps<{
12
12
  data-slot="alert-dialog-footer"
13
13
  :class="
14
14
  cn(
15
- 'tw:flex tw:flex-col-reverse tw:gap-2 tw:sm:flex-row tw:sm:justify-end',
15
+ 'flex flex-col-reverse gap-2 sm:flex-row sm:justify-end',
16
16
  props.class,
17
17
  )
18
18
  "
@@ -10,7 +10,7 @@ const props = defineProps<{
10
10
  <template>
11
11
  <div
12
12
  data-slot="alert-dialog-header"
13
- :class="cn('tw:flex tw:flex-col tw:gap-2 tw:text-center tw:sm:text-left', props.class)"
13
+ :class="cn('flex flex-col gap-2 text-center sm:text-left', props.class)"
14
14
  >
15
15
  <slot />
16
16
  </div>
@@ -14,7 +14,7 @@ const delegatedProps = reactiveOmit(props, "class")
14
14
  <AlertDialogTitle
15
15
  data-slot="alert-dialog-title"
16
16
  v-bind="delegatedProps"
17
- :class="cn('tw:text-lg tw:font-semibold', props.class)"
17
+ :class="cn('text-lg font-semibold', props.class)"
18
18
  >
19
19
  <slot />
20
20
  </AlertDialogTitle>
@@ -11,7 +11,7 @@ const props = defineProps<{
11
11
  <template>
12
12
  <AvatarRoot
13
13
  data-slot="avatar"
14
- :class="cn('tw:relative tw:flex tw:size-8 tw:shrink-0 tw:overflow-hidden tw:rounded-full', props.class)"
14
+ :class="cn('relative flex size-8 shrink-0 overflow-hidden rounded-full', props.class)"
15
15
  >
16
16
  <slot />
17
17
  </AvatarRoot>
@@ -14,7 +14,7 @@ const delegatedProps = reactiveOmit(props, "class")
14
14
  <AvatarFallback
15
15
  data-slot="avatar-fallback"
16
16
  v-bind="delegatedProps"
17
- :class="cn('tw:bg-muted tw:flex tw:size-full tw:items-center tw:justify-center tw:rounded-full', props.class)"
17
+ :class="cn('bg-muted flex size-full items-center justify-center rounded-full', props.class)"
18
18
  >
19
19
  <slot />
20
20
  </AvatarFallback>
@@ -9,7 +9,7 @@ const props = defineProps<AvatarImageProps>()
9
9
  <AvatarImage
10
10
  data-slot="avatar-image"
11
11
  v-bind="props"
12
- class=""tw:aspect-square tw:size-full""
12
+ class="aspect-square size-full"
13
13
  >
14
14
  <slot />
15
15
  </AvatarImage>
@@ -13,11 +13,11 @@ const props = defineProps<{
13
13
  data-slot="breadcrumb-ellipsis"
14
14
  role="presentation"
15
15
  aria-hidden="true"
16
- :class="cn('tw:flex tw:size-9 tw:items-center tw:justify-center', props.class)"
16
+ :class="cn('flex size-9 items-center justify-center', props.class)"
17
17
  >
18
18
  <slot>
19
- <MoreHorizontal class=""tw:size-4"" />
19
+ <MoreHorizontal class="size-4" />
20
20
  </slot>
21
- <span class=""tw:sr-only"">More</span>
21
+ <span class="sr-only">More</span>
22
22
  </span>
23
23
  </template>
@@ -10,7 +10,7 @@ const props = defineProps<{
10
10
  <template>
11
11
  <li
12
12
  data-slot="breadcrumb-item"
13
- :class="cn('tw:inline-flex tw:items-center tw:gap-1.5', props.class)"
13
+ :class="cn('inline-flex items-center gap-1.5', props.class)"
14
14
  >
15
15
  <slot />
16
16
  </li>
@@ -14,7 +14,7 @@ const props = withDefaults(defineProps<PrimitiveProps & { class?: HTMLAttributes
14
14
  data-slot="breadcrumb-link"
15
15
  :as="as"
16
16
  :as-child="asChild"
17
- :class="cn('tw:hover:text-foreground tw:transition-colors', props.class)"
17
+ :class="cn('hover:text-foreground transition-colors', props.class)"
18
18
  >
19
19
  <slot />
20
20
  </Primitive>
@@ -10,7 +10,7 @@ const props = defineProps<{
10
10
  <template>
11
11
  <ol
12
12
  data-slot="breadcrumb-list"
13
- :class="cn('tw:text-muted-foreground tw:flex tw:flex-wrap tw:items-center tw:gap-1.5 tw:text-sm tw:break-words tw:sm:gap-2.5', props.class)"
13
+ :class="cn('text-muted-foreground flex flex-wrap items-center gap-1.5 text-sm break-words sm:gap-2.5', props.class)"
14
14
  >
15
15
  <slot />
16
16
  </ol>
@@ -13,7 +13,7 @@ const props = defineProps<{
13
13
  role="link"
14
14
  aria-disabled="true"
15
15
  aria-current="page"
16
- :class="cn('tw:text-foreground tw:font-normal', props.class)"
16
+ :class="cn('text-foreground font-normal', props.class)"
17
17
  >
18
18
  <slot />
19
19
  </span>