@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
@@ -0,0 +1,51 @@
1
+ interface Backup {
2
+ id: string;
3
+ name: string;
4
+ date: string;
5
+ size: string;
6
+ enabled: boolean;
7
+ status?: "success" | "error" | "running" | "pending";
8
+ }
9
+ interface Status {
10
+ [key: string]: {
11
+ success?: boolean;
12
+ message?: string;
13
+ };
14
+ }
15
+ interface Props {
16
+ title?: string;
17
+ loading?: boolean;
18
+ backups?: Backup[];
19
+ status?: Status;
20
+ noBackupMessage?: string;
21
+ statusLabel?: string;
22
+ statusSuccessLabel?: string;
23
+ backupDisabledLabel?: string;
24
+ light?: boolean;
25
+ maxHeight?: string;
26
+ class?: string;
27
+ }
28
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
29
+ delete: (backupId: string) => any;
30
+ backup: (backupId: string) => any;
31
+ restore: (backupId: string) => any;
32
+ enable: (backupId: string) => any;
33
+ disable: (backupId: string) => any;
34
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
35
+ onDelete?: ((backupId: string) => any) | undefined;
36
+ onBackup?: ((backupId: string) => any) | undefined;
37
+ onRestore?: ((backupId: string) => any) | undefined;
38
+ onEnable?: ((backupId: string) => any) | undefined;
39
+ onDisable?: ((backupId: string) => any) | undefined;
40
+ }>, {
41
+ title: string;
42
+ loading: boolean;
43
+ status: Status;
44
+ backups: Backup[];
45
+ noBackupMessage: string;
46
+ statusLabel: string;
47
+ statusSuccessLabel: string;
48
+ backupDisabledLabel: string;
49
+ light: boolean;
50
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
51
+ export default _default;
@@ -0,0 +1,58 @@
1
+ interface SystemMetrics {
2
+ totalSpace: string;
3
+ usedSpace: string;
4
+ freeSpace: string;
5
+ usagePercentage: number;
6
+ temperature?: string;
7
+ loadAverage?: string[];
8
+ uptime?: string;
9
+ processes?: number;
10
+ memory?: {
11
+ total: string;
12
+ used: string;
13
+ free: string;
14
+ percentage: number;
15
+ };
16
+ cpu?: {
17
+ cores: number;
18
+ usage: number;
19
+ frequency: string;
20
+ };
21
+ }
22
+ interface Props {
23
+ title?: string;
24
+ description?: string;
25
+ metrics?: SystemMetrics;
26
+ loading?: boolean;
27
+ refreshInterval?: number;
28
+ showTemperature?: boolean;
29
+ showLoadAverage?: boolean;
30
+ showUptime?: boolean;
31
+ showProcesses?: boolean;
32
+ showMemory?: boolean;
33
+ showCpu?: boolean;
34
+ showStorage?: boolean;
35
+ refreshable?: boolean;
36
+ light?: boolean;
37
+ maxHeight?: string;
38
+ class?: string;
39
+ }
40
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
41
+ refresh: () => any;
42
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
43
+ onRefresh?: (() => any) | undefined;
44
+ }>, {
45
+ description: string;
46
+ title: string;
47
+ loading: boolean;
48
+ light: boolean;
49
+ showUptime: boolean;
50
+ showTemperature: boolean;
51
+ showLoadAverage: boolean;
52
+ showProcesses: boolean;
53
+ showMemory: boolean;
54
+ showCpu: boolean;
55
+ showStorage: boolean;
56
+ refreshable: boolean;
57
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
58
+ export default _default;
@@ -0,0 +1,47 @@
1
+ interface ServiceStatus {
2
+ running: boolean;
3
+ enabled: boolean;
4
+ status?: string;
5
+ uptime?: string;
6
+ lastRestart?: string;
7
+ memory?: string;
8
+ cpu?: string;
9
+ }
10
+ interface Props {
11
+ title?: string;
12
+ description?: string;
13
+ icon?: any;
14
+ loading?: boolean;
15
+ status?: ServiceStatus;
16
+ serviceName?: string;
17
+ light?: boolean;
18
+ showUptime?: boolean;
19
+ showMetrics?: boolean;
20
+ maxHeight?: string;
21
+ class?: string;
22
+ }
23
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
24
+ stop: (serviceName: string) => any;
25
+ view: (serviceName: string) => any;
26
+ restart: (serviceName: string) => any;
27
+ start: (serviceName: string) => any;
28
+ enable: (serviceName: string) => any;
29
+ disable: (serviceName: string) => any;
30
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
31
+ onStop?: ((serviceName: string) => any) | undefined;
32
+ onView?: ((serviceName: string) => any) | undefined;
33
+ onRestart?: ((serviceName: string) => any) | undefined;
34
+ onStart?: ((serviceName: string) => any) | undefined;
35
+ onEnable?: ((serviceName: string) => any) | undefined;
36
+ onDisable?: ((serviceName: string) => any) | undefined;
37
+ }>, {
38
+ description: string;
39
+ title: string;
40
+ loading: boolean;
41
+ status: ServiceStatus;
42
+ light: boolean;
43
+ serviceName: string;
44
+ showUptime: boolean;
45
+ showMetrics: boolean;
46
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
47
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export { default as NSBackupCard } from './NSBackupCard.vue';
2
+ export { default as NSSystemdServiceCard } from './NSSystemdServiceCard.vue';
3
+ export { default as NSSystemInfoCard } from './NSSystemInfoCard.vue';
@@ -0,0 +1,37 @@
1
+ interface Props {
2
+ id?: string;
3
+ checked?: boolean;
4
+ defaultChecked?: boolean;
5
+ disabled?: boolean;
6
+ required?: boolean;
7
+ name?: string;
8
+ value?: string;
9
+ label?: string;
10
+ hideLabel?: boolean;
11
+ description?: string;
12
+ errorMessage?: string;
13
+ indeterminate?: boolean;
14
+ class?: string;
15
+ }
16
+ declare function __VLS_template(): {
17
+ attrs: Partial<{}>;
18
+ slots: {
19
+ label?(_: {}): any;
20
+ extra?(_: {}): any;
21
+ };
22
+ refs: {};
23
+ rootEl: HTMLDivElement;
24
+ };
25
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
26
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
27
+ "update:checked": (value: boolean) => any;
28
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
29
+ "onUpdate:checked"?: ((value: boolean) => any) | undefined;
30
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
31
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
32
+ export default _default;
33
+ type __VLS_WithTemplateSlots<T, S> = T & {
34
+ new (): {
35
+ $slots: S;
36
+ };
37
+ };
@@ -0,0 +1 @@
1
+ export { default as NSCheckbox } from './NSCheckbox.vue';
@@ -0,0 +1,98 @@
1
+ interface Column {
2
+ key: string;
3
+ label: string;
4
+ sortable?: boolean;
5
+ width?: string;
6
+ align?: 'left' | 'center' | 'right';
7
+ filterable?: boolean;
8
+ render?: (value: any, row: any, index: number) => any;
9
+ }
10
+ interface Action {
11
+ key: string;
12
+ label: string;
13
+ icon?: any;
14
+ onClick: (row: any, index: number) => void;
15
+ disabled?: (row: any) => boolean;
16
+ variant?: 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link';
17
+ }
18
+ interface Props {
19
+ data?: any[];
20
+ columns?: Column[];
21
+ actions?: Action[];
22
+ loading?: boolean;
23
+ selectable?: boolean;
24
+ searchable?: boolean;
25
+ filterable?: boolean;
26
+ pagination?: boolean;
27
+ currentPage?: number;
28
+ itemsPerPage?: number;
29
+ totalItems?: number;
30
+ showTotal?: boolean;
31
+ emptyMessage?: string;
32
+ loadingMessage?: string;
33
+ maxHeight?: string;
34
+ striped?: boolean;
35
+ hover?: boolean;
36
+ class?: string;
37
+ tableClass?: string;
38
+ headerClass?: string;
39
+ bodyClass?: string;
40
+ }
41
+ declare function __VLS_template(): {
42
+ attrs: Partial<{}>;
43
+ slots: Partial<Record<`cell-${string}`, (_: {
44
+ row: any;
45
+ value: any;
46
+ column: Column;
47
+ index: number;
48
+ }) => any>> & {
49
+ pagination?(_: {
50
+ currentPage: number;
51
+ totalItems: number;
52
+ }): any;
53
+ };
54
+ refs: {};
55
+ rootEl: HTMLDivElement;
56
+ };
57
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
58
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
59
+ search: (query: string) => any;
60
+ "update:currentPage": (page: number) => any;
61
+ "update:itemsPerPage": (size: number) => any;
62
+ "selection-change": (selectedRows: any[]) => any;
63
+ "row-click": (row: any, index: number) => any;
64
+ "sort-change": (column: string, direction: "desc" | "asc" | null) => any;
65
+ "filter-change": (filters: Record<string, any>) => any;
66
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
67
+ onSearch?: ((query: string) => any) | undefined;
68
+ "onUpdate:currentPage"?: ((page: number) => any) | undefined;
69
+ "onUpdate:itemsPerPage"?: ((size: number) => any) | undefined;
70
+ "onSelection-change"?: ((selectedRows: any[]) => any) | undefined;
71
+ "onRow-click"?: ((row: any, index: number) => any) | undefined;
72
+ "onSort-change"?: ((column: string, direction: "desc" | "asc" | null) => any) | undefined;
73
+ "onFilter-change"?: ((filters: Record<string, any>) => any) | undefined;
74
+ }>, {
75
+ data: any[];
76
+ loading: boolean;
77
+ actions: Action[];
78
+ currentPage: number;
79
+ totalItems: number;
80
+ itemsPerPage: number;
81
+ showTotal: boolean;
82
+ columns: Column[];
83
+ selectable: boolean;
84
+ searchable: boolean;
85
+ filterable: boolean;
86
+ pagination: boolean;
87
+ emptyMessage: string;
88
+ loadingMessage: string;
89
+ striped: boolean;
90
+ hover: boolean;
91
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
92
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
93
+ export default _default;
94
+ type __VLS_WithTemplateSlots<T, S> = T & {
95
+ new (): {
96
+ $slots: S;
97
+ };
98
+ };
@@ -0,0 +1 @@
1
+ export { default as NSDataTable } from './NSDataTable.vue';
@@ -0,0 +1,45 @@
1
+ interface Props {
2
+ title?: string;
3
+ description?: string;
4
+ icon?: string | object;
5
+ lottiePath?: string;
6
+ lottieData?: any;
7
+ animationTitle?: string;
8
+ size?: "default" | "sm" | "lg";
9
+ variant?: "default" | "muted";
10
+ loop?: boolean | number;
11
+ animateOnHover?: boolean;
12
+ autoPlay?: boolean;
13
+ class?: string;
14
+ iconClass?: string;
15
+ titleClass?: string;
16
+ descriptionClass?: string;
17
+ }
18
+ declare function __VLS_template(): {
19
+ attrs: Partial<{}>;
20
+ slots: {
21
+ icon?(_: {}): any;
22
+ title?(_: {}): any;
23
+ description?(_: {}): any;
24
+ actions?(_: {}): any;
25
+ extra?(_: {}): any;
26
+ };
27
+ refs: {};
28
+ rootEl: HTMLDivElement;
29
+ };
30
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
31
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
32
+ title: string;
33
+ variant: "default" | "muted";
34
+ size: "default" | "sm" | "lg";
35
+ loop: boolean | number;
36
+ autoPlay: boolean;
37
+ animateOnHover: boolean;
38
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
39
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
40
+ export default _default;
41
+ type __VLS_WithTemplateSlots<T, S> = T & {
42
+ new (): {
43
+ $slots: S;
44
+ };
45
+ };
@@ -0,0 +1 @@
1
+ export { default as NSEmptyState } from './NSEmptyState.vue';
@@ -0,0 +1,35 @@
1
+ export { NSCheckbox } from './checkbox';
2
+ export { NSTextInput } from './text-input';
3
+ export { NSToggle } from './toggle';
4
+ export { NSTag } from './tag';
5
+ export { NSEmptyState } from './empty-state';
6
+ export { NSInlineNotification } from './inline-notification';
7
+ export { NSToastNotification } from './toast-notification';
8
+ export { NSProgress, NSProgressBar } from './progress';
9
+ export { NSModal, NSModalTrigger } from './modal';
10
+ export { NSSlider, NSByteSlider } from './slider';
11
+ export { NSPagination } from './pagination';
12
+ export { NSDataTable } from './data-table';
13
+ export { NSWizard } from './wizard';
14
+ export { NSBackupCard, NSSystemdServiceCard, NSSystemInfoCard } from './cards';
15
+ export { NSLottieAnimation } from './lottie-animation';
16
+ export type { default as NSCheckboxType } from './checkbox/NSCheckbox.vue';
17
+ export type { default as NSTextInputType } from './text-input/NSTextInput.vue';
18
+ export type { default as NSToggleType } from './toggle/NSToggle.vue';
19
+ export type { default as NSTagType } from './tag/NSTag.vue';
20
+ export type { default as NSEmptyStateType } from './empty-state/NSEmptyState.vue';
21
+ export type { default as NSInlineNotificationType } from './inline-notification/NSInlineNotification.vue';
22
+ export type { default as NSToastNotificationType } from './toast-notification/NSToastNotification.vue';
23
+ export type { default as NSProgressType } from './progress/NSProgress.vue';
24
+ export type { default as NSProgressBarType } from './progress/NSProgressBar.vue';
25
+ export type { default as NSModalType } from './modal/NSModal.vue';
26
+ export type { default as NSModalTriggerType } from './modal/NSModalTrigger.vue';
27
+ export type { default as NSSliderType } from './slider/NSSlider.vue';
28
+ export type { default as NSByteSliderType } from './slider/NSByteSlider.vue';
29
+ export type { default as NSPaginationType } from './pagination/NSPagination.vue';
30
+ export type { default as NSDataTableType } from './data-table/NSDataTable.vue';
31
+ export type { default as NSWizardType } from './wizard/NSWizard.vue';
32
+ export type { default as NSBackupCardType } from './cards/NSBackupCard.vue';
33
+ export type { default as NSSystemdServiceCardType } from './cards/NSSystemdServiceCard.vue';
34
+ export type { default as NSSystemInfoCardType } from './cards/NSSystemInfoCard.vue';
35
+ export type { default as NSLottieAnimationType } from './lottie-animation/NSLottieAnimation.vue';
@@ -0,0 +1,44 @@
1
+ interface Props {
2
+ title?: string;
3
+ description?: string;
4
+ variant?: 'default' | 'destructive' | 'warning' | 'success' | 'info';
5
+ showCloseButton?: boolean;
6
+ actionLabel?: string;
7
+ closeAriaLabel?: string;
8
+ loading?: boolean;
9
+ timer?: number;
10
+ lowContrast?: boolean;
11
+ class?: string;
12
+ icon?: object;
13
+ }
14
+ declare function __VLS_template(): {
15
+ attrs: Partial<{}>;
16
+ slots: {
17
+ title?(_: {}): any;
18
+ description?(_: {}): any;
19
+ extra?(_: {}): any;
20
+ };
21
+ refs: {};
22
+ rootEl: HTMLDivElement;
23
+ };
24
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
25
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
26
+ close: () => any;
27
+ action: () => any;
28
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
29
+ onClose?: (() => any) | undefined;
30
+ onAction?: (() => any) | undefined;
31
+ }>, {
32
+ variant: "default" | "destructive" | "warning" | "success" | "info";
33
+ showCloseButton: boolean;
34
+ closeAriaLabel: string;
35
+ loading: boolean;
36
+ lowContrast: boolean;
37
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
38
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
39
+ export default _default;
40
+ type __VLS_WithTemplateSlots<T, S> = T & {
41
+ new (): {
42
+ $slots: S;
43
+ };
44
+ };
@@ -0,0 +1 @@
1
+ export { default as NSInlineNotification } from './NSInlineNotification.vue';
@@ -0,0 +1 @@
1
+ export { default as NSLottieAnimation } from './NSLottieAnimation.vue';
@@ -0,0 +1,56 @@
1
+ interface Props {
2
+ open?: boolean;
3
+ modelValue?: boolean;
4
+ title?: string;
5
+ description?: string;
6
+ showCloseButton?: boolean;
7
+ closeOnOverlayClick?: boolean;
8
+ closeOnEscape?: boolean;
9
+ size?: 'sm' | 'default' | 'lg' | 'xl' | 'full';
10
+ maxWidth?: string;
11
+ maxHeight?: string;
12
+ persistent?: boolean;
13
+ fullscreen?: boolean;
14
+ class?: string;
15
+ contentClass?: string;
16
+ overlayClass?: string;
17
+ }
18
+ declare function __VLS_template(): {
19
+ attrs: Partial<{}>;
20
+ slots: {
21
+ title?(_: {}): any;
22
+ description?(_: {}): any;
23
+ header?(_: {}): any;
24
+ default?(_: {}): any;
25
+ footer?(_: {}): any;
26
+ actions?(_: {}): any;
27
+ };
28
+ refs: {};
29
+ rootEl: any;
30
+ };
31
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
32
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
33
+ "update:modelValue": (value: boolean) => any;
34
+ close: () => any;
35
+ open: () => any;
36
+ "update:open": (value: boolean) => any;
37
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
38
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
39
+ onClose?: (() => any) | undefined;
40
+ onOpen?: (() => any) | undefined;
41
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
42
+ }>, {
43
+ size: "sm" | "default" | "lg" | "xl" | "full";
44
+ showCloseButton: boolean;
45
+ closeOnOverlayClick: boolean;
46
+ closeOnEscape: boolean;
47
+ persistent: boolean;
48
+ fullscreen: boolean;
49
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
50
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
51
+ export default _default;
52
+ type __VLS_WithTemplateSlots<T, S> = T & {
53
+ new (): {
54
+ $slots: S;
55
+ };
56
+ };
@@ -0,0 +1,64 @@
1
+ interface Props {
2
+ modelValue?: boolean;
3
+ open?: boolean;
4
+ title?: string;
5
+ description?: string;
6
+ showCloseButton?: boolean;
7
+ closeOnOverlayClick?: boolean;
8
+ closeOnEscape?: boolean;
9
+ size?: 'sm' | 'default' | 'lg' | 'xl' | 'full';
10
+ maxWidth?: string;
11
+ maxHeight?: string;
12
+ persistent?: boolean;
13
+ fullscreen?: boolean;
14
+ class?: string;
15
+ contentClass?: string;
16
+ overlayClass?: string;
17
+ }
18
+ declare function __VLS_template(): {
19
+ attrs: Partial<{}>;
20
+ slots: {
21
+ trigger?(_: {
22
+ open: boolean;
23
+ toggle: () => boolean;
24
+ }): any;
25
+ default?(_: {}): any;
26
+ title?(_: {}): any;
27
+ description?(_: {}): any;
28
+ header?(_: {}): any;
29
+ actions?(_: {}): any;
30
+ footer?(_: {}): any;
31
+ };
32
+ refs: {
33
+ triggerRef: HTMLButtonElement;
34
+ };
35
+ rootEl: any;
36
+ };
37
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
38
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
39
+ "update:modelValue": (value: boolean) => any;
40
+ close: () => any;
41
+ open: () => any;
42
+ "update:open": (value: boolean) => any;
43
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
44
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
45
+ onClose?: (() => any) | undefined;
46
+ onOpen?: (() => any) | undefined;
47
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
48
+ }>, {
49
+ size: "sm" | "default" | "lg" | "xl" | "full";
50
+ showCloseButton: boolean;
51
+ closeOnOverlayClick: boolean;
52
+ closeOnEscape: boolean;
53
+ persistent: boolean;
54
+ fullscreen: boolean;
55
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
56
+ triggerRef: HTMLButtonElement;
57
+ }, any>;
58
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
59
+ export default _default;
60
+ type __VLS_WithTemplateSlots<T, S> = T & {
61
+ new (): {
62
+ $slots: S;
63
+ };
64
+ };
@@ -0,0 +1,2 @@
1
+ export { default as NSModal } from './NSModal.vue';
2
+ export { default as NSModalTrigger } from './NSModalTrigger.vue';
@@ -0,0 +1,36 @@
1
+ interface Props {
2
+ currentPage?: number;
3
+ totalItems?: number;
4
+ itemsPerPage?: number;
5
+ totalPages?: number;
6
+ showSizeChanger?: boolean;
7
+ pageSizeOptions?: number[];
8
+ showQuickJumper?: boolean;
9
+ showTotal?: boolean;
10
+ disabled?: boolean;
11
+ size?: 'sm' | 'default' | 'lg';
12
+ align?: 'start' | 'center' | 'end';
13
+ class?: string;
14
+ }
15
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ "update:currentPage": (page: number) => any;
17
+ "update:itemsPerPage": (size: number) => any;
18
+ "page-change": (page: number) => any;
19
+ "size-change": (size: number) => any;
20
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
21
+ "onUpdate:currentPage"?: ((page: number) => any) | undefined;
22
+ "onUpdate:itemsPerPage"?: ((size: number) => any) | undefined;
23
+ "onPage-change"?: ((page: number) => any) | undefined;
24
+ "onSize-change"?: ((size: number) => any) | undefined;
25
+ }>, {
26
+ disabled: boolean;
27
+ size: "sm" | "default" | "lg";
28
+ currentPage: number;
29
+ itemsPerPage: number;
30
+ showSizeChanger: boolean;
31
+ pageSizeOptions: number[];
32
+ showQuickJumper: boolean;
33
+ showTotal: boolean;
34
+ align: "start" | "center" | "end";
35
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
36
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as NSPagination } from './NSPagination.vue';
@@ -0,0 +1,37 @@
1
+ interface Props {
2
+ value?: number;
3
+ max?: number;
4
+ variant?: 'default' | 'destructive' | 'success' | 'warning' | 'info';
5
+ size?: 'default' | 'sm' | 'lg';
6
+ showLabel?: boolean;
7
+ label?: string;
8
+ indeterminate?: boolean;
9
+ class?: string;
10
+ }
11
+ declare function __VLS_template(): {
12
+ attrs: Partial<{}>;
13
+ slots: {
14
+ label?(_: {}): any;
15
+ value?(_: {
16
+ value: number | undefined;
17
+ percentage: number;
18
+ }): any;
19
+ };
20
+ refs: {};
21
+ rootEl: HTMLDivElement;
22
+ };
23
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
24
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
25
+ indeterminate: boolean;
26
+ max: number;
27
+ variant: "default" | "destructive" | "success" | "warning" | "info";
28
+ size: "default" | "sm" | "lg";
29
+ showLabel: boolean;
30
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
31
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
32
+ export default _default;
33
+ type __VLS_WithTemplateSlots<T, S> = T & {
34
+ new (): {
35
+ $slots: S;
36
+ };
37
+ };