@gxp-dev/app-ui 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1429) hide show
  1. package/.storybook/main.ts +31 -0
  2. package/.storybook/preview.ts +26 -0
  3. package/README.md +440 -0
  4. package/dist/_virtual/_plugin-vue_export-helper.js +9 -0
  5. package/dist/components/domain/audio-visualizer/AudioVisualizer.vue.js +106 -0
  6. package/dist/components/domain/audio-visualizer/AudioVisualizer.vue2.js +4 -0
  7. package/dist/components/domain/barcode-scanner/BarcodeScanner.vue.js +88 -0
  8. package/dist/components/domain/barcode-scanner/BarcodeScanner.vue2.js +4 -0
  9. package/dist/components/domain/chat-transcript/ChatTranscript.vue.js +7 -0
  10. package/dist/components/domain/chat-transcript/ChatTranscript.vue2.js +148 -0
  11. package/dist/components/domain/connection-status/ConnectionStatus.vue.js +7 -0
  12. package/dist/components/domain/connection-status/ConnectionStatus.vue2.js +107 -0
  13. package/dist/components/domain/countdown/Countdown.vue.js +50 -0
  14. package/dist/components/domain/countdown/Countdown.vue2.js +4 -0
  15. package/dist/components/domain/countdown-timer/CountdownTimer.vue.js +7 -0
  16. package/dist/components/domain/countdown-timer/CountdownTimer.vue2.js +89 -0
  17. package/dist/components/domain/download-button/DownloadButton.vue.js +74 -0
  18. package/dist/components/domain/download-button/DownloadButton.vue2.js +4 -0
  19. package/dist/components/domain/file-uploader/FileUploader.vue.js +96 -0
  20. package/dist/components/domain/file-uploader/FileUploader.vue2.js +4 -0
  21. package/dist/components/domain/header/Header.vue.js +42 -0
  22. package/dist/components/domain/header/Header.vue2.js +4 -0
  23. package/dist/components/domain/leaderboard/ActivityNotifications.vue.js +7 -0
  24. package/dist/components/domain/leaderboard/ActivityNotifications.vue2.js +74 -0
  25. package/dist/components/domain/leaderboard/AwardIcon.vue.js +44 -0
  26. package/dist/components/domain/leaderboard/AwardIcon.vue2.js +4 -0
  27. package/dist/components/domain/leaderboard/Leaderboard.vue.js +7 -0
  28. package/dist/components/domain/leaderboard/Leaderboard.vue2.js +131 -0
  29. package/dist/components/domain/leaderboard/RecentActivity.vue.js +7 -0
  30. package/dist/components/domain/leaderboard/RecentActivity.vue2.js +101 -0
  31. package/dist/components/domain/live-countdown/LiveCountdown.vue.js +7 -0
  32. package/dist/components/domain/live-countdown/LiveCountdown.vue2.js +80 -0
  33. package/dist/components/domain/live-countdown-sync/LiveCountdownSync.vue.js +126 -0
  34. package/dist/components/domain/live-countdown-sync/LiveCountdownSync.vue2.js +4 -0
  35. package/dist/components/domain/local-preview/LocalPreview.vue.js +7 -0
  36. package/dist/components/domain/local-preview/LocalPreview.vue2.js +135 -0
  37. package/dist/components/domain/media-control-bar/MediaControlBar.vue.js +7 -0
  38. package/dist/components/domain/media-control-bar/MediaControlBar.vue2.js +109 -0
  39. package/dist/components/domain/message-composer/MessageComposer.vue.js +162 -0
  40. package/dist/components/domain/message-composer/MessageComposer.vue2.js +4 -0
  41. package/dist/components/domain/message-list/MessageList.vue.js +59 -0
  42. package/dist/components/domain/message-list/MessageList.vue2.js +4 -0
  43. package/dist/components/domain/on-screen-keyboard/OnScreenKeyboard.vue.js +106 -0
  44. package/dist/components/domain/on-screen-keyboard/OnScreenKeyboard.vue2.js +4 -0
  45. package/dist/components/domain/on-screen-keyboard/layouts.js +31 -0
  46. package/dist/components/domain/participant-item/ParticipantItem.vue.js +100 -0
  47. package/dist/components/domain/participant-item/ParticipantItem.vue2.js +4 -0
  48. package/dist/components/domain/pin-pad/PinPad.vue.js +7 -0
  49. package/dist/components/domain/pin-pad/PinPad.vue2.js +166 -0
  50. package/dist/components/domain/signature-pad/SignaturePad.vue.js +100 -0
  51. package/dist/components/domain/signature-pad/SignaturePad.vue2.js +4 -0
  52. package/dist/components/domain/social-stream-post/SocialStreamPost.vue.js +63 -0
  53. package/dist/components/domain/social-stream-post/SocialStreamPost.vue2.js +4 -0
  54. package/dist/components/domain/social-stream-post/SocialStreamPostBody.vue.js +120 -0
  55. package/dist/components/domain/social-stream-post/SocialStreamPostBody.vue2.js +4 -0
  56. package/dist/components/domain/spinner/Spinner.vue.js +38 -0
  57. package/dist/components/domain/spinner/Spinner.vue2.js +4 -0
  58. package/dist/components/domain/step-progress/StepProgress.vue.js +85 -0
  59. package/dist/components/domain/step-progress/StepProgress.vue2.js +4 -0
  60. package/dist/components/domain/theme-wrapper/ThemeWrapper.vue.js +63 -0
  61. package/dist/components/domain/theme-wrapper/ThemeWrapper.vue2.js +4 -0
  62. package/dist/components/domain/video-grid/VideoGrid.vue.js +62 -0
  63. package/dist/components/domain/video-grid/VideoGrid.vue2.js +4 -0
  64. package/dist/components/domain/video-player/VideoPlayer.vue.js +49 -0
  65. package/dist/components/domain/video-player/VideoPlayer.vue2.js +4 -0
  66. package/dist/components/domain/video-tile/VideoTile.vue.js +7 -0
  67. package/dist/components/domain/video-tile/VideoTile.vue2.js +105 -0
  68. package/dist/components/ui/accordion/Accordion.vue.js +31 -0
  69. package/dist/components/ui/accordion/Accordion.vue2.js +4 -0
  70. package/dist/components/ui/accordion/AccordionContent.vue.js +29 -0
  71. package/dist/components/ui/accordion/AccordionContent.vue2.js +4 -0
  72. package/dist/components/ui/accordion/AccordionItem.vue.js +30 -0
  73. package/dist/components/ui/accordion/AccordionItem.vue2.js +4 -0
  74. package/dist/components/ui/accordion/AccordionTrigger.vue.js +39 -0
  75. package/dist/components/ui/accordion/AccordionTrigger.vue2.js +4 -0
  76. package/dist/components/ui/alert/Alert.vue.js +22 -0
  77. package/dist/components/ui/alert/Alert.vue2.js +4 -0
  78. package/dist/components/ui/alert/AlertDescription.vue.js +19 -0
  79. package/dist/components/ui/alert/AlertDescription.vue2.js +4 -0
  80. package/dist/components/ui/alert/AlertTitle.vue.js +19 -0
  81. package/dist/components/ui/alert/AlertTitle.vue2.js +4 -0
  82. package/dist/components/ui/alert/index.js +19 -0
  83. package/dist/components/ui/alert-dialog/AlertDialog.vue.js +23 -0
  84. package/dist/components/ui/alert-dialog/AlertDialog.vue2.js +4 -0
  85. package/dist/components/ui/alert-dialog/AlertDialogAction.vue.js +27 -0
  86. package/dist/components/ui/alert-dialog/AlertDialogAction.vue2.js +4 -0
  87. package/dist/components/ui/alert-dialog/AlertDialogCancel.vue.js +31 -0
  88. package/dist/components/ui/alert-dialog/AlertDialogCancel.vue2.js +4 -0
  89. package/dist/components/ui/alert-dialog/AlertDialogContent.vue.js +41 -0
  90. package/dist/components/ui/alert-dialog/AlertDialogContent.vue2.js +4 -0
  91. package/dist/components/ui/alert-dialog/AlertDialogDescription.vue.js +26 -0
  92. package/dist/components/ui/alert-dialog/AlertDialogDescription.vue2.js +4 -0
  93. package/dist/components/ui/alert-dialog/AlertDialogFooter.vue.js +24 -0
  94. package/dist/components/ui/alert-dialog/AlertDialogFooter.vue2.js +4 -0
  95. package/dist/components/ui/alert-dialog/AlertDialogHeader.vue.js +19 -0
  96. package/dist/components/ui/alert-dialog/AlertDialogHeader.vue2.js +4 -0
  97. package/dist/components/ui/alert-dialog/AlertDialogTitle.vue.js +26 -0
  98. package/dist/components/ui/alert-dialog/AlertDialogTitle.vue2.js +4 -0
  99. package/dist/components/ui/alert-dialog/AlertDialogTrigger.vue.js +21 -0
  100. package/dist/components/ui/alert-dialog/AlertDialogTrigger.vue2.js +4 -0
  101. package/dist/components/ui/aspect-ratio/AspectRatio.vue.js +22 -0
  102. package/dist/components/ui/aspect-ratio/AspectRatio.vue2.js +4 -0
  103. package/dist/components/ui/avatar/Avatar.vue.js +26 -0
  104. package/dist/components/ui/avatar/Avatar.vue2.js +4 -0
  105. package/dist/components/ui/avatar/AvatarFallback.vue.js +22 -0
  106. package/dist/components/ui/avatar/AvatarFallback.vue2.js +4 -0
  107. package/dist/components/ui/avatar/AvatarImage.vue.js +24 -0
  108. package/dist/components/ui/avatar/AvatarImage.vue2.js +4 -0
  109. package/dist/components/ui/avatar/index.js +21 -0
  110. package/dist/components/ui/badge/Badge.vue.js +21 -0
  111. package/dist/components/ui/badge/Badge.vue2.js +4 -0
  112. package/dist/components/ui/badge/index.js +21 -0
  113. package/dist/components/ui/button/Button.vue.js +30 -0
  114. package/dist/components/ui/button/Button.vue2.js +4 -0
  115. package/dist/components/ui/button/index.js +32 -0
  116. package/dist/components/ui/calendar/Calendar.vue.js +120 -0
  117. package/dist/components/ui/calendar/Calendar.vue2.js +4 -0
  118. package/dist/components/ui/calendar/CalendarCell.vue.js +28 -0
  119. package/dist/components/ui/calendar/CalendarCell.vue2.js +4 -0
  120. package/dist/components/ui/calendar/CalendarCellTrigger.vue.js +43 -0
  121. package/dist/components/ui/calendar/CalendarCellTrigger.vue2.js +4 -0
  122. package/dist/components/ui/calendar/CalendarGrid.vue.js +27 -0
  123. package/dist/components/ui/calendar/CalendarGrid.vue2.js +4 -0
  124. package/dist/components/ui/calendar/CalendarGridBody.vue.js +21 -0
  125. package/dist/components/ui/calendar/CalendarGridBody.vue2.js +4 -0
  126. package/dist/components/ui/calendar/CalendarGridHead.vue.js +21 -0
  127. package/dist/components/ui/calendar/CalendarGridHead.vue2.js +4 -0
  128. package/dist/components/ui/calendar/CalendarGridRow.vue.js +27 -0
  129. package/dist/components/ui/calendar/CalendarGridRow.vue2.js +4 -0
  130. package/dist/components/ui/calendar/CalendarHeadCell.vue.js +27 -0
  131. package/dist/components/ui/calendar/CalendarHeadCell.vue2.js +4 -0
  132. package/dist/components/ui/calendar/CalendarHeader.vue.js +27 -0
  133. package/dist/components/ui/calendar/CalendarHeader.vue2.js +4 -0
  134. package/dist/components/ui/calendar/CalendarHeading.vue.js +29 -0
  135. package/dist/components/ui/calendar/CalendarHeading.vue2.js +4 -0
  136. package/dist/components/ui/calendar/CalendarNextButton.vue.js +36 -0
  137. package/dist/components/ui/calendar/CalendarNextButton.vue2.js +4 -0
  138. package/dist/components/ui/calendar/CalendarPrevButton.vue.js +36 -0
  139. package/dist/components/ui/calendar/CalendarPrevButton.vue2.js +4 -0
  140. package/dist/components/ui/card/Card.vue.js +24 -0
  141. package/dist/components/ui/card/Card.vue2.js +4 -0
  142. package/dist/components/ui/card/CardContent.vue.js +19 -0
  143. package/dist/components/ui/card/CardContent.vue2.js +4 -0
  144. package/dist/components/ui/card/CardDescription.vue.js +19 -0
  145. package/dist/components/ui/card/CardDescription.vue2.js +4 -0
  146. package/dist/components/ui/card/CardFooter.vue.js +19 -0
  147. package/dist/components/ui/card/CardFooter.vue2.js +4 -0
  148. package/dist/components/ui/card/CardHeader.vue.js +19 -0
  149. package/dist/components/ui/card/CardHeader.vue2.js +4 -0
  150. package/dist/components/ui/card/CardTitle.vue.js +21 -0
  151. package/dist/components/ui/card/CardTitle.vue2.js +4 -0
  152. package/dist/components/ui/checkbox/Checkbox.vue.js +49 -0
  153. package/dist/components/ui/checkbox/Checkbox.vue2.js +4 -0
  154. package/dist/components/ui/collapsible/Collapsible.vue.js +27 -0
  155. package/dist/components/ui/collapsible/Collapsible.vue2.js +4 -0
  156. package/dist/components/ui/collapsible/CollapsibleContent.vue.js +22 -0
  157. package/dist/components/ui/collapsible/CollapsibleContent.vue2.js +4 -0
  158. package/dist/components/ui/collapsible/CollapsibleTrigger.vue.js +21 -0
  159. package/dist/components/ui/collapsible/CollapsibleTrigger.vue2.js +4 -0
  160. package/dist/components/ui/command/Command.vue.js +76 -0
  161. package/dist/components/ui/command/Command.vue2.js +4 -0
  162. package/dist/components/ui/command/CommandDialog.vue.js +36 -0
  163. package/dist/components/ui/command/CommandDialog.vue2.js +4 -0
  164. package/dist/components/ui/command/CommandEmpty.vue.js +29 -0
  165. package/dist/components/ui/command/CommandEmpty.vue2.js +4 -0
  166. package/dist/components/ui/command/CommandGroup.vue.js +45 -0
  167. package/dist/components/ui/command/CommandGroup.vue2.js +4 -0
  168. package/dist/components/ui/command/CommandInput.vue.js +37 -0
  169. package/dist/components/ui/command/CommandInput.vue2.js +4 -0
  170. package/dist/components/ui/command/CommandItem.vue.js +54 -0
  171. package/dist/components/ui/command/CommandItem.vue2.js +4 -0
  172. package/dist/components/ui/command/CommandList.vue.js +29 -0
  173. package/dist/components/ui/command/CommandList.vue2.js +4 -0
  174. package/dist/components/ui/command/CommandSeparator.vue.js +28 -0
  175. package/dist/components/ui/command/CommandSeparator.vue2.js +4 -0
  176. package/dist/components/ui/command/CommandShortcut.vue.js +19 -0
  177. package/dist/components/ui/command/CommandShortcut.vue2.js +4 -0
  178. package/dist/components/ui/command/index.js +9 -0
  179. package/dist/components/ui/context-menu/ContextMenu.vue.js +24 -0
  180. package/dist/components/ui/context-menu/ContextMenu.vue2.js +4 -0
  181. package/dist/components/ui/context-menu/ContextMenuCheckboxItem.vue.js +44 -0
  182. package/dist/components/ui/context-menu/ContextMenuCheckboxItem.vue2.js +4 -0
  183. package/dist/components/ui/context-menu/ContextMenuContent.vue.js +52 -0
  184. package/dist/components/ui/context-menu/ContextMenuContent.vue2.js +4 -0
  185. package/dist/components/ui/context-menu/ContextMenuGroup.vue.js +21 -0
  186. package/dist/components/ui/context-menu/ContextMenuGroup.vue2.js +4 -0
  187. package/dist/components/ui/context-menu/ContextMenuItem.vue.js +35 -0
  188. package/dist/components/ui/context-menu/ContextMenuItem.vue2.js +4 -0
  189. package/dist/components/ui/context-menu/ContextMenuLabel.vue.js +31 -0
  190. package/dist/components/ui/context-menu/ContextMenuLabel.vue2.js +4 -0
  191. package/dist/components/ui/context-menu/ContextMenuPortal.vue.js +23 -0
  192. package/dist/components/ui/context-menu/ContextMenuPortal.vue2.js +4 -0
  193. package/dist/components/ui/context-menu/ContextMenuRadioGroup.vue.js +24 -0
  194. package/dist/components/ui/context-menu/ContextMenuRadioGroup.vue2.js +4 -0
  195. package/dist/components/ui/context-menu/ContextMenuRadioItem.vue.js +44 -0
  196. package/dist/components/ui/context-menu/ContextMenuRadioItem.vue2.js +4 -0
  197. package/dist/components/ui/context-menu/ContextMenuSeparator.vue.js +21 -0
  198. package/dist/components/ui/context-menu/ContextMenuSeparator.vue2.js +4 -0
  199. package/dist/components/ui/context-menu/ContextMenuShortcut.vue.js +19 -0
  200. package/dist/components/ui/context-menu/ContextMenuShortcut.vue2.js +4 -0
  201. package/dist/components/ui/context-menu/ContextMenuSub.vue.js +23 -0
  202. package/dist/components/ui/context-menu/ContextMenuSub.vue2.js +4 -0
  203. package/dist/components/ui/context-menu/ContextMenuSubContent.vue.js +49 -0
  204. package/dist/components/ui/context-menu/ContextMenuSubContent.vue2.js +4 -0
  205. package/dist/components/ui/context-menu/ContextMenuSubTrigger.vue.js +36 -0
  206. package/dist/components/ui/context-menu/ContextMenuSubTrigger.vue2.js +4 -0
  207. package/dist/components/ui/context-menu/ContextMenuTrigger.vue.js +23 -0
  208. package/dist/components/ui/context-menu/ContextMenuTrigger.vue2.js +4 -0
  209. package/dist/components/ui/dialog/Dialog.vue.js +24 -0
  210. package/dist/components/ui/dialog/Dialog.vue2.js +4 -0
  211. package/dist/components/ui/dialog/DialogClose.vue.js +21 -0
  212. package/dist/components/ui/dialog/DialogClose.vue2.js +4 -0
  213. package/dist/components/ui/dialog/DialogContent.vue.js +50 -0
  214. package/dist/components/ui/dialog/DialogContent.vue2.js +4 -0
  215. package/dist/components/ui/dialog/DialogDescription.vue.js +27 -0
  216. package/dist/components/ui/dialog/DialogDescription.vue2.js +4 -0
  217. package/dist/components/ui/dialog/DialogFooter.vue.js +24 -0
  218. package/dist/components/ui/dialog/DialogFooter.vue2.js +4 -0
  219. package/dist/components/ui/dialog/DialogHeader.vue.js +19 -0
  220. package/dist/components/ui/dialog/DialogHeader.vue2.js +4 -0
  221. package/dist/components/ui/dialog/DialogScrollContent.vue.js +59 -0
  222. package/dist/components/ui/dialog/DialogScrollContent.vue2.js +4 -0
  223. package/dist/components/ui/dialog/DialogTitle.vue.js +30 -0
  224. package/dist/components/ui/dialog/DialogTitle.vue2.js +4 -0
  225. package/dist/components/ui/dialog/DialogTrigger.vue.js +21 -0
  226. package/dist/components/ui/dialog/DialogTrigger.vue2.js +4 -0
  227. package/dist/components/ui/dropdown-menu/DropdownMenu.vue.js +25 -0
  228. package/dist/components/ui/dropdown-menu/DropdownMenu.vue2.js +4 -0
  229. package/dist/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue.js +44 -0
  230. package/dist/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue2.js +4 -0
  231. package/dist/components/ui/dropdown-menu/DropdownMenuContent.vue.js +54 -0
  232. package/dist/components/ui/dropdown-menu/DropdownMenuContent.vue2.js +4 -0
  233. package/dist/components/ui/dropdown-menu/DropdownMenuGroup.vue.js +21 -0
  234. package/dist/components/ui/dropdown-menu/DropdownMenuGroup.vue2.js +4 -0
  235. package/dist/components/ui/dropdown-menu/DropdownMenuItem.vue.js +34 -0
  236. package/dist/components/ui/dropdown-menu/DropdownMenuItem.vue2.js +4 -0
  237. package/dist/components/ui/dropdown-menu/DropdownMenuLabel.vue.js +28 -0
  238. package/dist/components/ui/dropdown-menu/DropdownMenuLabel.vue2.js +4 -0
  239. package/dist/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue.js +24 -0
  240. package/dist/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue2.js +4 -0
  241. package/dist/components/ui/dropdown-menu/DropdownMenuRadioItem.vue.js +44 -0
  242. package/dist/components/ui/dropdown-menu/DropdownMenuRadioItem.vue2.js +4 -0
  243. package/dist/components/ui/dropdown-menu/DropdownMenuSeparator.vue.js +21 -0
  244. package/dist/components/ui/dropdown-menu/DropdownMenuSeparator.vue2.js +4 -0
  245. package/dist/components/ui/dropdown-menu/DropdownMenuShortcut.vue.js +19 -0
  246. package/dist/components/ui/dropdown-menu/DropdownMenuShortcut.vue2.js +4 -0
  247. package/dist/components/ui/dropdown-menu/DropdownMenuSub.vue.js +23 -0
  248. package/dist/components/ui/dropdown-menu/DropdownMenuSub.vue2.js +4 -0
  249. package/dist/components/ui/dropdown-menu/DropdownMenuSubContent.vue.js +46 -0
  250. package/dist/components/ui/dropdown-menu/DropdownMenuSubContent.vue2.js +4 -0
  251. package/dist/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue.js +34 -0
  252. package/dist/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue2.js +4 -0
  253. package/dist/components/ui/dropdown-menu/DropdownMenuTrigger.vue.js +23 -0
  254. package/dist/components/ui/dropdown-menu/DropdownMenuTrigger.vue2.js +4 -0
  255. package/dist/components/ui/form/FormControl.vue.js +22 -0
  256. package/dist/components/ui/form/FormControl.vue2.js +4 -0
  257. package/dist/components/ui/form/FormDescription.vue.js +21 -0
  258. package/dist/components/ui/form/FormDescription.vue2.js +4 -0
  259. package/dist/components/ui/form/FormItem.vue.js +21 -0
  260. package/dist/components/ui/form/FormItem.vue2.js +4 -0
  261. package/dist/components/ui/form/FormLabel.vue.js +31 -0
  262. package/dist/components/ui/form/FormLabel.vue2.js +4 -0
  263. package/dist/components/ui/form/FormMessage.vue.js +18 -0
  264. package/dist/components/ui/form/FormMessage.vue2.js +4 -0
  265. package/dist/components/ui/form/injectionKeys.js +4 -0
  266. package/dist/components/ui/form/useFormField.js +25 -0
  267. package/dist/components/ui/hover-card/HoverCard.vue.js +25 -0
  268. package/dist/components/ui/hover-card/HoverCard.vue2.js +4 -0
  269. package/dist/components/ui/hover-card/HoverCardContent.vue.js +55 -0
  270. package/dist/components/ui/hover-card/HoverCardContent.vue2.js +4 -0
  271. package/dist/components/ui/hover-card/HoverCardTrigger.vue.js +22 -0
  272. package/dist/components/ui/hover-card/HoverCardTrigger.vue2.js +4 -0
  273. package/dist/components/ui/input/Input.vue.js +30 -0
  274. package/dist/components/ui/input/Input.vue2.js +4 -0
  275. package/dist/components/ui/label/Label.vue.js +30 -0
  276. package/dist/components/ui/label/Label.vue2.js +4 -0
  277. package/dist/components/ui/menubar/Menubar.vue.js +33 -0
  278. package/dist/components/ui/menubar/Menubar.vue2.js +4 -0
  279. package/dist/components/ui/menubar/MenubarCheckboxItem.vue.js +44 -0
  280. package/dist/components/ui/menubar/MenubarCheckboxItem.vue2.js +4 -0
  281. package/dist/components/ui/menubar/MenubarContent.vue.js +56 -0
  282. package/dist/components/ui/menubar/MenubarContent.vue2.js +4 -0
  283. package/dist/components/ui/menubar/MenubarGroup.vue.js +21 -0
  284. package/dist/components/ui/menubar/MenubarGroup.vue2.js +4 -0
  285. package/dist/components/ui/menubar/MenubarItem.vue.js +35 -0
  286. package/dist/components/ui/menubar/MenubarItem.vue2.js +4 -0
  287. package/dist/components/ui/menubar/MenubarLabel.vue.js +26 -0
  288. package/dist/components/ui/menubar/MenubarLabel.vue2.js +4 -0
  289. package/dist/components/ui/menubar/MenubarMenu.vue.js +20 -0
  290. package/dist/components/ui/menubar/MenubarMenu.vue2.js +4 -0
  291. package/dist/components/ui/menubar/MenubarRadioGroup.vue.js +24 -0
  292. package/dist/components/ui/menubar/MenubarRadioGroup.vue2.js +4 -0
  293. package/dist/components/ui/menubar/MenubarRadioItem.vue.js +44 -0
  294. package/dist/components/ui/menubar/MenubarRadioItem.vue2.js +4 -0
  295. package/dist/components/ui/menubar/MenubarSeparator.vue.js +22 -0
  296. package/dist/components/ui/menubar/MenubarSeparator.vue2.js +4 -0
  297. package/dist/components/ui/menubar/MenubarShortcut.vue.js +19 -0
  298. package/dist/components/ui/menubar/MenubarShortcut.vue2.js +4 -0
  299. package/dist/components/ui/menubar/MenubarSub.vue.js +23 -0
  300. package/dist/components/ui/menubar/MenubarSub.vue2.js +4 -0
  301. package/dist/components/ui/menubar/MenubarSubContent.vue.js +55 -0
  302. package/dist/components/ui/menubar/MenubarSubContent.vue2.js +4 -0
  303. package/dist/components/ui/menubar/MenubarSubTrigger.vue.js +36 -0
  304. package/dist/components/ui/menubar/MenubarSubTrigger.vue2.js +4 -0
  305. package/dist/components/ui/menubar/MenubarTrigger.vue.js +31 -0
  306. package/dist/components/ui/menubar/MenubarTrigger.vue2.js +4 -0
  307. package/dist/components/ui/navigation-menu/NavigationMenu.vue.js +40 -0
  308. package/dist/components/ui/navigation-menu/NavigationMenu.vue2.js +4 -0
  309. package/dist/components/ui/navigation-menu/NavigationMenuContent.vue.js +33 -0
  310. package/dist/components/ui/navigation-menu/NavigationMenuContent.vue2.js +4 -0
  311. package/dist/components/ui/navigation-menu/NavigationMenuIndicator.vue.js +28 -0
  312. package/dist/components/ui/navigation-menu/NavigationMenuIndicator.vue2.js +4 -0
  313. package/dist/components/ui/navigation-menu/NavigationMenuItem.vue.js +22 -0
  314. package/dist/components/ui/navigation-menu/NavigationMenuItem.vue2.js +4 -0
  315. package/dist/components/ui/navigation-menu/NavigationMenuLink.vue.js +24 -0
  316. package/dist/components/ui/navigation-menu/NavigationMenuLink.vue2.js +4 -0
  317. package/dist/components/ui/navigation-menu/NavigationMenuList.vue.js +30 -0
  318. package/dist/components/ui/navigation-menu/NavigationMenuList.vue2.js +4 -0
  319. package/dist/components/ui/navigation-menu/NavigationMenuTrigger.vue.js +34 -0
  320. package/dist/components/ui/navigation-menu/NavigationMenuTrigger.vue2.js +4 -0
  321. package/dist/components/ui/navigation-menu/NavigationMenuViewport.vue.js +29 -0
  322. package/dist/components/ui/navigation-menu/NavigationMenuViewport.vue2.js +4 -0
  323. package/dist/components/ui/navigation-menu/index.js +8 -0
  324. package/dist/components/ui/pagination/Pagination.vue.js +35 -0
  325. package/dist/components/ui/pagination/Pagination.vue2.js +4 -0
  326. package/dist/components/ui/pagination/PaginationContent.vue.js +26 -0
  327. package/dist/components/ui/pagination/PaginationContent.vue2.js +4 -0
  328. package/dist/components/ui/pagination/PaginationEllipsis.vue.js +30 -0
  329. package/dist/components/ui/pagination/PaginationEllipsis.vue2.js +4 -0
  330. package/dist/components/ui/pagination/PaginationFirst.vue.js +34 -0
  331. package/dist/components/ui/pagination/PaginationFirst.vue2.js +4 -0
  332. package/dist/components/ui/pagination/PaginationItem.vue.js +36 -0
  333. package/dist/components/ui/pagination/PaginationItem.vue2.js +4 -0
  334. package/dist/components/ui/pagination/PaginationLast.vue.js +34 -0
  335. package/dist/components/ui/pagination/PaginationLast.vue2.js +4 -0
  336. package/dist/components/ui/pagination/PaginationNext.vue.js +34 -0
  337. package/dist/components/ui/pagination/PaginationNext.vue2.js +4 -0
  338. package/dist/components/ui/pagination/PaginationPrevious.vue.js +34 -0
  339. package/dist/components/ui/pagination/PaginationPrevious.vue2.js +4 -0
  340. package/dist/components/ui/popover/Popover.vue.js +24 -0
  341. package/dist/components/ui/popover/Popover.vue2.js +4 -0
  342. package/dist/components/ui/popover/PopoverContent.vue.js +58 -0
  343. package/dist/components/ui/popover/PopoverContent.vue2.js +4 -0
  344. package/dist/components/ui/popover/PopoverTrigger.vue.js +21 -0
  345. package/dist/components/ui/popover/PopoverTrigger.vue2.js +4 -0
  346. package/dist/components/ui/progress/Progress.vue.js +37 -0
  347. package/dist/components/ui/progress/Progress.vue2.js +4 -0
  348. package/dist/components/ui/radio-group/RadioGroup.vue.js +36 -0
  349. package/dist/components/ui/radio-group/RadioGroup.vue2.js +4 -0
  350. package/dist/components/ui/radio-group/RadioGroupItem.vue.js +42 -0
  351. package/dist/components/ui/radio-group/RadioGroupItem.vue2.js +4 -0
  352. package/dist/components/ui/scroll-area/ScrollArea.vue.js +39 -0
  353. package/dist/components/ui/scroll-area/ScrollArea.vue2.js +4 -0
  354. package/dist/components/ui/scroll-area/ScrollBar.vue.js +34 -0
  355. package/dist/components/ui/scroll-area/ScrollBar.vue2.js +4 -0
  356. package/dist/components/ui/select/Select.vue.js +32 -0
  357. package/dist/components/ui/select/Select.vue2.js +4 -0
  358. package/dist/components/ui/select/SelectContent.vue.js +73 -0
  359. package/dist/components/ui/select/SelectContent.vue2.js +4 -0
  360. package/dist/components/ui/select/SelectGroup.vue.js +26 -0
  361. package/dist/components/ui/select/SelectGroup.vue2.js +4 -0
  362. package/dist/components/ui/select/SelectItem.vue.js +49 -0
  363. package/dist/components/ui/select/SelectItem.vue2.js +4 -0
  364. package/dist/components/ui/select/SelectItemText.vue.js +21 -0
  365. package/dist/components/ui/select/SelectItemText.vue2.js +4 -0
  366. package/dist/components/ui/select/SelectLabel.vue.js +26 -0
  367. package/dist/components/ui/select/SelectLabel.vue2.js +4 -0
  368. package/dist/components/ui/select/SelectScrollDownButton.vue.js +30 -0
  369. package/dist/components/ui/select/SelectScrollDownButton.vue2.js +4 -0
  370. package/dist/components/ui/select/SelectScrollUpButton.vue.js +30 -0
  371. package/dist/components/ui/select/SelectScrollUpButton.vue2.js +4 -0
  372. package/dist/components/ui/select/SelectSeparator.vue.js +21 -0
  373. package/dist/components/ui/select/SelectSeparator.vue2.js +4 -0
  374. package/dist/components/ui/select/SelectTrigger.vue.js +40 -0
  375. package/dist/components/ui/select/SelectTrigger.vue2.js +4 -0
  376. package/dist/components/ui/select/SelectValue.vue.js +22 -0
  377. package/dist/components/ui/select/SelectValue.vue2.js +4 -0
  378. package/dist/components/ui/separator/Separator.vue.js +27 -0
  379. package/dist/components/ui/separator/Separator.vue2.js +4 -0
  380. package/dist/components/ui/sheet/Sheet.vue.js +24 -0
  381. package/dist/components/ui/sheet/Sheet.vue2.js +4 -0
  382. package/dist/components/ui/sheet/SheetClose.vue.js +21 -0
  383. package/dist/components/ui/sheet/SheetClose.vue2.js +4 -0
  384. package/dist/components/ui/sheet/SheetContent.vue.js +49 -0
  385. package/dist/components/ui/sheet/SheetContent.vue2.js +4 -0
  386. package/dist/components/ui/sheet/SheetDescription.vue.js +26 -0
  387. package/dist/components/ui/sheet/SheetDescription.vue2.js +4 -0
  388. package/dist/components/ui/sheet/SheetFooter.vue.js +24 -0
  389. package/dist/components/ui/sheet/SheetFooter.vue2.js +4 -0
  390. package/dist/components/ui/sheet/SheetHeader.vue.js +21 -0
  391. package/dist/components/ui/sheet/SheetHeader.vue2.js +4 -0
  392. package/dist/components/ui/sheet/SheetTitle.vue.js +26 -0
  393. package/dist/components/ui/sheet/SheetTitle.vue2.js +4 -0
  394. package/dist/components/ui/sheet/SheetTrigger.vue.js +21 -0
  395. package/dist/components/ui/sheet/SheetTrigger.vue2.js +4 -0
  396. package/dist/components/ui/sheet/index.js +21 -0
  397. package/dist/components/ui/skeleton/Skeleton.vue.js +17 -0
  398. package/dist/components/ui/skeleton/Skeleton.vue2.js +4 -0
  399. package/dist/components/ui/slider/Slider.vue.js +56 -0
  400. package/dist/components/ui/slider/Slider.vue2.js +4 -0
  401. package/dist/components/ui/sonner/Sonner.vue.js +74 -0
  402. package/dist/components/ui/sonner/Sonner.vue2.js +4 -0
  403. package/dist/components/ui/switch/Switch.vue.js +48 -0
  404. package/dist/components/ui/switch/Switch.vue2.js +4 -0
  405. package/dist/components/ui/table/Table.vue.js +21 -0
  406. package/dist/components/ui/table/Table.vue2.js +4 -0
  407. package/dist/components/ui/table/TableBody.vue.js +19 -0
  408. package/dist/components/ui/table/TableBody.vue2.js +4 -0
  409. package/dist/components/ui/table/TableCaption.vue.js +19 -0
  410. package/dist/components/ui/table/TableCaption.vue2.js +4 -0
  411. package/dist/components/ui/table/TableCell.vue.js +24 -0
  412. package/dist/components/ui/table/TableCell.vue2.js +4 -0
  413. package/dist/components/ui/table/TableEmpty.vue.js +36 -0
  414. package/dist/components/ui/table/TableEmpty.vue2.js +4 -0
  415. package/dist/components/ui/table/TableFooter.vue.js +19 -0
  416. package/dist/components/ui/table/TableFooter.vue2.js +4 -0
  417. package/dist/components/ui/table/TableHead.vue.js +19 -0
  418. package/dist/components/ui/table/TableHead.vue2.js +4 -0
  419. package/dist/components/ui/table/TableHeader.vue.js +19 -0
  420. package/dist/components/ui/table/TableHeader.vue2.js +4 -0
  421. package/dist/components/ui/table/TableRow.vue.js +19 -0
  422. package/dist/components/ui/table/TableRow.vue2.js +4 -0
  423. package/dist/components/ui/tabs/Tabs.vue.js +29 -0
  424. package/dist/components/ui/tabs/Tabs.vue2.js +4 -0
  425. package/dist/components/ui/tabs/TabsContent.vue.js +28 -0
  426. package/dist/components/ui/tabs/TabsContent.vue2.js +4 -0
  427. package/dist/components/ui/tabs/TabsList.vue.js +30 -0
  428. package/dist/components/ui/tabs/TabsList.vue2.js +4 -0
  429. package/dist/components/ui/tabs/TabsTrigger.vue.js +34 -0
  430. package/dist/components/ui/tabs/TabsTrigger.vue2.js +4 -0
  431. package/dist/components/ui/textarea/Textarea.vue.js +27 -0
  432. package/dist/components/ui/textarea/Textarea.vue2.js +4 -0
  433. package/dist/components/ui/tooltip/Tooltip.vue.js +28 -0
  434. package/dist/components/ui/tooltip/Tooltip.vue2.js +4 -0
  435. package/dist/components/ui/tooltip/TooltipContent.vue.js +49 -0
  436. package/dist/components/ui/tooltip/TooltipContent.vue2.js +4 -0
  437. package/dist/components/ui/tooltip/TooltipProvider.vue.js +26 -0
  438. package/dist/components/ui/tooltip/TooltipProvider.vue2.js +4 -0
  439. package/dist/components/ui/tooltip/TooltipTrigger.vue.js +22 -0
  440. package/dist/components/ui/tooltip/TooltipTrigger.vue2.js +4 -0
  441. package/dist/composables/useAnimations.js +49 -0
  442. package/dist/composables/useCameraBorder.js +32 -0
  443. package/dist/composables/useChatMedia.js +101 -0
  444. package/dist/composables/useChatMessages.js +107 -0
  445. package/dist/composables/useErrors.js +19 -0
  446. package/dist/composables/useMedia.js +302 -0
  447. package/dist/composables/useNfcListener.js +42 -0
  448. package/dist/composables/useQuestion.js +32 -0
  449. package/dist/composables/useScanning.js +26 -0
  450. package/dist/composables/useStreamingAudio.js +121 -0
  451. package/dist/composables/useToast.js +16 -0
  452. package/dist/composables/useWebSocket.js +114 -0
  453. package/dist/experience/ExperienceFlow.vue.js +7 -0
  454. package/dist/experience/ExperienceFlow.vue2.js +94 -0
  455. package/dist/experience/pages/audio-capture/AudioCapturePage.vue.js +86 -0
  456. package/dist/experience/pages/audio-capture/AudioCapturePage.vue2.js +4 -0
  457. package/dist/experience/pages/audio-capture/index.js +8 -0
  458. package/dist/experience/pages/audio-review/AudioReviewPage.vue.js +102 -0
  459. package/dist/experience/pages/audio-review/AudioReviewPage.vue2.js +4 -0
  460. package/dist/experience/pages/audio-review/index.js +9 -0
  461. package/dist/experience/pages/camera/CameraPage.vue.js +139 -0
  462. package/dist/experience/pages/camera/CameraPage.vue2.js +4 -0
  463. package/dist/experience/pages/camera/index.js +8 -0
  464. package/dist/experience/pages/camera-review/CameraReviewPage.vue.js +104 -0
  465. package/dist/experience/pages/camera-review/CameraReviewPage.vue2.js +4 -0
  466. package/dist/experience/pages/camera-review/index.js +9 -0
  467. package/dist/experience/pages/drawing/DrawingPage.vue.js +185 -0
  468. package/dist/experience/pages/drawing/DrawingPage.vue2.js +4 -0
  469. package/dist/experience/pages/drawing/index.js +8 -0
  470. package/dist/experience/pages/final/FinalPage.vue.js +109 -0
  471. package/dist/experience/pages/final/FinalPage.vue2.js +4 -0
  472. package/dist/experience/pages/final/index.js +6 -0
  473. package/dist/experience/pages/form/FormPage.vue.js +175 -0
  474. package/dist/experience/pages/form/FormPage.vue2.js +4 -0
  475. package/dist/experience/pages/form/index.js +8 -0
  476. package/dist/experience/pages/instructions/InstructionsPage.vue.js +89 -0
  477. package/dist/experience/pages/instructions/InstructionsPage.vue2.js +4 -0
  478. package/dist/experience/pages/instructions/index.js +6 -0
  479. package/dist/experience/pages/loading/LoadingPage.vue.js +59 -0
  480. package/dist/experience/pages/loading/LoadingPage.vue2.js +4 -0
  481. package/dist/experience/pages/loading/index.js +11 -0
  482. package/dist/experience/pages/notepad/NotepadPage.vue.js +149 -0
  483. package/dist/experience/pages/notepad/NotepadPage.vue2.js +4 -0
  484. package/dist/experience/pages/notepad/index.js +8 -0
  485. package/dist/experience/pages/options/OptionsPage.vue.js +77 -0
  486. package/dist/experience/pages/options/OptionsPage.vue2.js +4 -0
  487. package/dist/experience/pages/options/index.js +8 -0
  488. package/dist/experience/pages/photo-edit/PhotoEditPage.vue.js +172 -0
  489. package/dist/experience/pages/photo-edit/PhotoEditPage.vue2.js +4 -0
  490. package/dist/experience/pages/photo-edit/index.js +8 -0
  491. package/dist/experience/pages/prompt/PromptPage.vue.js +110 -0
  492. package/dist/experience/pages/prompt/PromptPage.vue2.js +4 -0
  493. package/dist/experience/pages/prompt/index.js +8 -0
  494. package/dist/experience/pages/results-gallery/ResultsGalleryPage.vue.js +105 -0
  495. package/dist/experience/pages/results-gallery/ResultsGalleryPage.vue2.js +4 -0
  496. package/dist/experience/pages/results-gallery/index.js +8 -0
  497. package/dist/experience/pages/share/SharePage.vue.js +154 -0
  498. package/dist/experience/pages/share/SharePage.vue2.js +4 -0
  499. package/dist/experience/pages/share/index.js +6 -0
  500. package/dist/experience/pages/terms/TermsPage.vue.js +80 -0
  501. package/dist/experience/pages/terms/TermsPage.vue2.js +4 -0
  502. package/dist/experience/pages/terms/index.js +8 -0
  503. package/dist/experience/pages/text/TextPage.vue.js +79 -0
  504. package/dist/experience/pages/text/TextPage.vue2.js +4 -0
  505. package/dist/experience/pages/text/index.js +8 -0
  506. package/dist/experience/pages/video-capture/VideoCapturePage.vue.js +107 -0
  507. package/dist/experience/pages/video-capture/VideoCapturePage.vue2.js +4 -0
  508. package/dist/experience/pages/video-capture/index.js +8 -0
  509. package/dist/experience/pages/video-review/VideoReviewPage.vue.js +102 -0
  510. package/dist/experience/pages/video-review/VideoReviewPage.vue2.js +4 -0
  511. package/dist/experience/pages/video-review/index.js +9 -0
  512. package/dist/experience/pages/welcome/WelcomePage.vue.js +48 -0
  513. package/dist/experience/pages/welcome/WelcomePage.vue2.js +4 -0
  514. package/dist/experience/pages/welcome/index.js +6 -0
  515. package/dist/experience/useExperience.js +99 -0
  516. package/dist/experience/useExperienceApi.js +37 -0
  517. package/dist/experience/withDefaults.js +11 -0
  518. package/dist/index.d.ts +12193 -0
  519. package/dist/index.js +538 -0
  520. package/dist/lib/imageToBlob.js +31 -0
  521. package/dist/lib/utils.js +104 -0
  522. package/dist/node_modules/.pnpm/@floating-ui_core@1.7.5/node_modules/@floating-ui/core/dist/floating-ui.core.js +532 -0
  523. package/dist/node_modules/.pnpm/@floating-ui_dom@1.7.6/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +403 -0
  524. package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.11/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +136 -0
  525. package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.11/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +128 -0
  526. package/dist/node_modules/.pnpm/@floating-ui_vue@1.1.11_vue@3.5.35_typescript@5.9.3_/node_modules/@floating-ui/vue/dist/floating-ui.vue.js +133 -0
  527. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/CalendarDate.js +186 -0
  528. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/DateFormatter.js +99 -0
  529. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/BuddhistCalendar.js +32 -0
  530. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/EthiopicCalendar.js +110 -0
  531. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/GregorianCalendar.js +104 -0
  532. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/HebrewCalendar.js +86 -0
  533. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/IndianCalendar.js +40 -0
  534. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/IslamicCalendar.js +122 -0
  535. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/JapaneseCalendar.js +128 -0
  536. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/PersianCalendar.js +53 -0
  537. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/TaiwanCalendar.js +54 -0
  538. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/conversion.js +135 -0
  539. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/createCalendar.js +43 -0
  540. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/manipulation.js +205 -0
  541. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/queries.js +127 -0
  542. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/string.js +27 -0
  543. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/utils.js +6 -0
  544. package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/weekStartData.js +100 -0
  545. package/dist/node_modules/.pnpm/@vueuse_core@14.3.0_vue@3.5.35_typescript@5.9.3_/node_modules/@vueuse/core/dist/index.js +152 -0
  546. package/dist/node_modules/.pnpm/@vueuse_shared@14.3.0_vue@3.5.35_typescript@5.9.3_/node_modules/@vueuse/shared/dist/index.js +291 -0
  547. package/dist/node_modules/.pnpm/aria-hidden@1.2.6/node_modules/aria-hidden/dist/es2015/index.js +52 -0
  548. package/dist/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.js +35 -0
  549. package/dist/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.js +16 -0
  550. package/dist/node_modules/.pnpm/defu@6.1.7/node_modules/defu/dist/defu.js +35 -0
  551. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/createLucideIcon.js +26 -0
  552. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/defaultAttributes.js +20 -0
  553. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/alert-circle.js +15 -0
  554. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/alert-octagon.js +21 -0
  555. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/alert-triangle.js +21 -0
  556. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/check-circle-2.js +14 -0
  557. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/check.js +11 -0
  558. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/chevron-down.js +13 -0
  559. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/chevron-left.js +13 -0
  560. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/chevron-right.js +13 -0
  561. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/chevron-up.js +13 -0
  562. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/circle.js +13 -0
  563. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/clock.js +14 -0
  564. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/delete.js +15 -0
  565. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/flag.js +14 -0
  566. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/hand.js +22 -0
  567. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/info.js +15 -0
  568. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/loader-2.js +13 -0
  569. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/log-out.js +15 -0
  570. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/mic-off.js +18 -0
  571. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/mic.js +15 -0
  572. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/monitor.js +15 -0
  573. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/more-horizontal.js +15 -0
  574. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/paperclip.js +19 -0
  575. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/screen-share.js +17 -0
  576. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/search.js +14 -0
  577. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/send.js +14 -0
  578. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/user.js +14 -0
  579. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/users.js +16 -0
  580. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/video-off.js +15 -0
  581. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/video.js +14 -0
  582. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/volume-x.js +15 -0
  583. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/wifi-off.js +19 -0
  584. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/wifi.js +16 -0
  585. package/dist/node_modules/.pnpm/lucide-vue-next@0.344.0_vue@3.5.35_typescript@5.9.3_/node_modules/lucide-vue-next/dist/esm/icons/x.js +14 -0
  586. package/dist/node_modules/.pnpm/ohash@2.0.11/node_modules/ohash/dist/shared/ohash.D__AXeF1.js +107 -0
  587. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Accordion/AccordionContent.js +54 -0
  588. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Accordion/AccordionHeader.js +41 -0
  589. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Accordion/AccordionItem.js +98 -0
  590. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Accordion/AccordionRoot.js +82 -0
  591. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Accordion/AccordionTrigger.js +56 -0
  592. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/AlertDialog/AlertDialogAction.js +27 -0
  593. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/AlertDialog/AlertDialogCancel.js +30 -0
  594. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/AlertDialog/AlertDialogContent.js +65 -0
  595. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/AlertDialog/AlertDialogDescription.js +27 -0
  596. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/AlertDialog/AlertDialogOverlay.js +30 -0
  597. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/AlertDialog/AlertDialogPortal.js +33 -0
  598. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/AlertDialog/AlertDialogRoot.js +28 -0
  599. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/AlertDialog/AlertDialogTitle.js +27 -0
  600. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/AlertDialog/AlertDialogTrigger.js +27 -0
  601. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/AspectRatio/AspectRatio.js +43 -0
  602. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Avatar/AvatarFallback.js +48 -0
  603. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Avatar/AvatarImage.js +62 -0
  604. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Avatar/AvatarRoot.js +32 -0
  605. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Avatar/utils.js +26 -0
  606. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/CalendarCell.js +47 -0
  607. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/CalendarCellTrigger.js +146 -0
  608. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/CalendarGrid.js +39 -0
  609. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/CalendarGridBody.js +26 -0
  610. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/CalendarGridHead.js +26 -0
  611. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/CalendarGridRow.js +26 -0
  612. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/CalendarHeadCell.js +26 -0
  613. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/CalendarHeader.js +26 -0
  614. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/CalendarHeading.js +27 -0
  615. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/CalendarNext.js +50 -0
  616. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/CalendarPrev.js +50 -0
  617. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/CalendarRoot.js +292 -0
  618. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Calendar/useCalendar.js +208 -0
  619. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Checkbox/CheckboxGroupRoot.js +6 -0
  620. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Checkbox/CheckboxIndicator.js +49 -0
  621. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Checkbox/CheckboxRoot.js +153 -0
  622. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Checkbox/utils.js +10 -0
  623. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Collapsible/CollapsibleContent.js +92 -0
  624. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Collapsible/CollapsibleRoot.js +71 -0
  625. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Collapsible/CollapsibleTrigger.js +53 -0
  626. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Collection/Collection.js +63 -0
  627. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ConfigProvider/ConfigProvider.js +6 -0
  628. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuCheckboxItem.js +43 -0
  629. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuContent.js +121 -0
  630. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuGroup.js +26 -0
  631. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuItem.js +39 -0
  632. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuItemIndicator.js +30 -0
  633. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuLabel.js +26 -0
  634. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuPortal.js +33 -0
  635. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuRadioGroup.js +35 -0
  636. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuRadioItem.js +43 -0
  637. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuRoot.js +60 -0
  638. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuSeparator.js +26 -0
  639. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuSub.js +37 -0
  640. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuSubContent.js +114 -0
  641. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuSubTrigger.js +34 -0
  642. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/ContextMenuTrigger.js +91 -0
  643. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ContextMenu/utils.js +6 -0
  644. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/DialogClose.js +33 -0
  645. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/DialogContent.js +66 -0
  646. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/DialogContentImpl.js +94 -0
  647. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/DialogContentModal.js +67 -0
  648. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/DialogContentNonModal.js +66 -0
  649. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/DialogDescription.js +30 -0
  650. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/DialogOverlay.js +45 -0
  651. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/DialogOverlayImpl.js +39 -0
  652. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/DialogPortal.js +33 -0
  653. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/DialogRoot.js +57 -0
  654. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/DialogTitle.js +28 -0
  655. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/DialogTrigger.js +45 -0
  656. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Dialog/utils.js +18 -0
  657. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DismissableLayer/DismissableLayer.js +85 -0
  658. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DismissableLayer/utils.js +66 -0
  659. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuCheckboxItem.js +43 -0
  660. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuContent.js +144 -0
  661. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuGroup.js +26 -0
  662. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuItem.js +39 -0
  663. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuItemIndicator.js +30 -0
  664. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuLabel.js +26 -0
  665. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuPortal.js +33 -0
  666. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuRadioGroup.js +35 -0
  667. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuRadioItem.js +40 -0
  668. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuRoot.js +69 -0
  669. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuSeparator.js +26 -0
  670. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuSub.js +35 -0
  671. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuSubContent.js +114 -0
  672. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuSubTrigger.js +34 -0
  673. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/DropdownMenu/DropdownMenuTrigger.js +76 -0
  674. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/FocusScope/FocusScope.js +110 -0
  675. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/FocusScope/stack.js +23 -0
  676. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/FocusScope/utils.js +52 -0
  677. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/HoverCard/HoverCardContent.js +118 -0
  678. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/HoverCard/HoverCardContentImpl.js +165 -0
  679. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/HoverCard/HoverCardPortal.js +33 -0
  680. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/HoverCard/HoverCardRoot.js +69 -0
  681. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/HoverCard/HoverCardTrigger.js +60 -0
  682. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/HoverCard/utils.js +12 -0
  683. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Label/Label.js +33 -0
  684. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Listbox/ListboxContent.js +65 -0
  685. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Listbox/ListboxFilter.js +88 -0
  686. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Listbox/ListboxGroup.js +29 -0
  687. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Listbox/ListboxGroupLabel.js +31 -0
  688. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Listbox/ListboxItem.js +89 -0
  689. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Listbox/ListboxRoot.js +280 -0
  690. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Listbox/utils.js +11 -0
  691. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuAnchor.js +29 -0
  692. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuCheckboxItem.js +50 -0
  693. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuContent.js +130 -0
  694. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuContentImpl.js +306 -0
  695. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuGroup.js +29 -0
  696. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuItem.js +63 -0
  697. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuItemImpl.js +80 -0
  698. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuItemIndicator.js +46 -0
  699. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuLabel.js +27 -0
  700. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuPortal.js +33 -0
  701. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuRadioGroup.js +42 -0
  702. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuRadioItem.js +49 -0
  703. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuRoot.js +56 -0
  704. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuRootContentModal.js +121 -0
  705. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuRootContentNonModal.js +117 -0
  706. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuSeparator.js +28 -0
  707. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuSub.js +47 -0
  708. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuSubContent.js +150 -0
  709. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/MenuSubTrigger.js +126 -0
  710. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menu/utils.js +64 -0
  711. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarCheckboxItem.js +43 -0
  712. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarContent.js +160 -0
  713. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarGroup.js +26 -0
  714. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarItem.js +39 -0
  715. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarItemIndicator.js +30 -0
  716. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarLabel.js +26 -0
  717. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarMenu.js +42 -0
  718. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarPortal.js +33 -0
  719. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarRadioGroup.js +35 -0
  720. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarRadioItem.js +40 -0
  721. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarRoot.js +82 -0
  722. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarSeparator.js +26 -0
  723. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarSub.js +37 -0
  724. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarSubContent.js +132 -0
  725. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarSubTrigger.js +34 -0
  726. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Menubar/MenubarTrigger.js +98 -0
  727. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/NavigationMenu/NavigationMenuContent.js +74 -0
  728. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/NavigationMenu/NavigationMenuContentImpl.js +131 -0
  729. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/NavigationMenu/NavigationMenuIndicator.js +65 -0
  730. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/NavigationMenu/NavigationMenuItem.js +107 -0
  731. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/NavigationMenu/NavigationMenuLink.js +64 -0
  732. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/NavigationMenu/NavigationMenuList.js +45 -0
  733. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/NavigationMenu/NavigationMenuRoot.js +152 -0
  734. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/NavigationMenu/NavigationMenuTrigger.js +112 -0
  735. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/NavigationMenu/NavigationMenuViewport.js +121 -0
  736. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/NavigationMenu/utils.js +47 -0
  737. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Pagination/PaginationEllipsis.js +26 -0
  738. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Pagination/PaginationFirst.js +35 -0
  739. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Pagination/PaginationLast.js +35 -0
  740. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Pagination/PaginationList.js +30 -0
  741. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Pagination/PaginationListItem.js +48 -0
  742. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Pagination/PaginationNext.js +35 -0
  743. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Pagination/PaginationPrev.js +35 -0
  744. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Pagination/PaginationRoot.js +84 -0
  745. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Pagination/utils.js +49 -0
  746. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Popover/PopoverContent.js +125 -0
  747. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Popover/PopoverContentImpl.js +157 -0
  748. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Popover/PopoverContentModal.js +131 -0
  749. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Popover/PopoverContentNonModal.js +124 -0
  750. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Popover/PopoverPortal.js +33 -0
  751. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Popover/PopoverRoot.js +56 -0
  752. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Popover/PopoverTrigger.js +55 -0
  753. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Popper/PopperAnchor.js +37 -0
  754. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Popper/PopperContent.js +240 -0
  755. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Popper/PopperRoot.js +18 -0
  756. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Popper/utils.js +31 -0
  757. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Presence/Presence.js +42 -0
  758. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Presence/usePresence.js +64 -0
  759. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Primitive/Primitive.js +27 -0
  760. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Primitive/Slot.js +24 -0
  761. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Primitive/usePrimitiveElement.js +15 -0
  762. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Progress/ProgressIndicator.js +38 -0
  763. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Progress/ProgressRoot.js +100 -0
  764. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/RadioGroup/Radio.js +110 -0
  765. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/RadioGroup/RadioGroupIndicator.js +47 -0
  766. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/RadioGroup/RadioGroupItem.js +116 -0
  767. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/RadioGroup/RadioGroupRoot.js +123 -0
  768. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/RadioGroup/utils.js +11 -0
  769. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/RovingFocus/RovingFocusGroup.js +121 -0
  770. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/RovingFocus/RovingFocusItem.js +94 -0
  771. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/RovingFocus/utils.js +38 -0
  772. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaCorner.js +27 -0
  773. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaCornerImpl.js +40 -0
  774. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaRoot.js +111 -0
  775. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaScrollbar.js +84 -0
  776. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaScrollbarAuto.js +36 -0
  777. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaScrollbarGlimpse.js +95 -0
  778. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaScrollbarHover.js +45 -0
  779. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaScrollbarImpl.js +89 -0
  780. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaScrollbarScroll.js +67 -0
  781. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaScrollbarVisible.js +86 -0
  782. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaScrollbarX.js +34 -0
  783. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaScrollbarY.js +35 -0
  784. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaThumb.js +68 -0
  785. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/ScrollAreaViewport.js +61 -0
  786. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/ScrollArea/utils.js +53 -0
  787. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/BubbleSelect.js +67 -0
  788. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectContent.js +153 -0
  789. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectContentImpl.js +274 -0
  790. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectGroup.js +29 -0
  791. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectIcon.js +29 -0
  792. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectItem.js +122 -0
  793. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectItemAlignedPosition.js +93 -0
  794. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectItemIndicator.js +30 -0
  795. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectItemText.js +48 -0
  796. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectLabel.js +31 -0
  797. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectPopperPosition.js +108 -0
  798. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectPortal.js +33 -0
  799. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectProvider.js +17 -0
  800. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectRoot.js +158 -0
  801. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectScrollButtonImpl.js +49 -0
  802. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectScrollDownButton.js +47 -0
  803. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectScrollUpButton.js +46 -0
  804. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectSeparator.js +25 -0
  805. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectTrigger.js +109 -0
  806. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectValue.js +59 -0
  807. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/SelectViewport.js +73 -0
  808. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Select/utils.js +24 -0
  809. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Separator/Separator.js +34 -0
  810. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Slider/SliderHorizontal.js +80 -0
  811. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Slider/SliderImpl.js +51 -0
  812. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Slider/SliderRange.js +46 -0
  813. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Slider/SliderRoot.js +185 -0
  814. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Slider/SliderThumb.js +28 -0
  815. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Slider/SliderThumbImpl.js +84 -0
  816. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Slider/SliderTrack.js +38 -0
  817. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Slider/SliderVertical.js +73 -0
  818. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Slider/utils.js +93 -0
  819. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Switch/SwitchRoot.js +134 -0
  820. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Switch/SwitchThumb.js +38 -0
  821. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tabs/TabsContent.js +70 -0
  822. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tabs/TabsList.js +55 -0
  823. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tabs/TabsRoot.js +94 -0
  824. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tabs/TabsTrigger.js +78 -0
  825. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tabs/utils.js +10 -0
  826. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Teleport/Teleport.js +40 -0
  827. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tooltip/TooltipContent.js +90 -0
  828. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tooltip/TooltipContentHoverable.js +84 -0
  829. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tooltip/TooltipContentImpl.js +142 -0
  830. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tooltip/TooltipPortal.js +33 -0
  831. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tooltip/TooltipProvider.js +70 -0
  832. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tooltip/TooltipRoot.js +101 -0
  833. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tooltip/TooltipTrigger.js +89 -0
  834. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/Tooltip/utils.js +4 -0
  835. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/VisuallyHidden/VisuallyHidden.js +57 -0
  836. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/VisuallyHidden/VisuallyHiddenInput.js +65 -0
  837. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/VisuallyHidden/VisuallyHiddenInputBubble.js +55 -0
  838. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/component/BaseSeparator.js +49 -0
  839. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/date/calendar.js +61 -0
  840. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/date/comparators.js +61 -0
  841. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/date/utils.js +17 -0
  842. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/arrays.js +10 -0
  843. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/clamp.js +6 -0
  844. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/createContext.js +12 -0
  845. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/getActiveElement.js +9 -0
  846. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/handleAndDispatchCustomEvent.js +11 -0
  847. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/isValueEqualOrExist.js +8 -0
  848. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/nullish.js +6 -0
  849. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/renderSlotFragments.js +7 -0
  850. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useArrowNavigation.js +32 -0
  851. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useBodyScrollLock.js +66 -0
  852. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useDateFormatter.js +124 -0
  853. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useDirection.js +12 -0
  854. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useEmitAsProps.js +10 -0
  855. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useFilter.js +25 -0
  856. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useFocusGuards.js +19 -0
  857. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useFormControl.js +11 -0
  858. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useForwardExpose.js +50 -0
  859. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useForwardProps.js +19 -0
  860. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useForwardPropsEmits.js +13 -0
  861. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useGraceArea.js +168 -0
  862. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useHideOthers.js +19 -0
  863. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useId.js +17 -0
  864. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useIsUsingKeyboard.js +23 -0
  865. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useKbd.js +41 -0
  866. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useLocale.js +12 -0
  867. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useNonce.js +12 -0
  868. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useSingleOrMultipleValue.js +45 -0
  869. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useSize.js +41 -0
  870. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useStateMachine.js +16 -0
  871. package/dist/node_modules/.pnpm/reka-ui@2.9.8_vue@3.5.35_typescript@5.9.3_/node_modules/reka-ui/dist/shared/useTypeahead.js +39 -0
  872. package/dist/node_modules/.pnpm/tailwind-merge@3.6.0/node_modules/tailwind-merge/dist/bundle-mjs.js +2993 -0
  873. package/dist/style.css +1 -0
  874. package/dist/styles/index.css +2 -0
  875. package/package.json +135 -0
  876. package/src/__mocks__/@ericblade/quagga2.ts +7 -0
  877. package/src/components/domain/audio-visualizer/AudioVisualizer.stories.ts +162 -0
  878. package/src/components/domain/audio-visualizer/AudioVisualizer.test.ts +291 -0
  879. package/src/components/domain/audio-visualizer/AudioVisualizer.vue +225 -0
  880. package/src/components/domain/audio-visualizer/index.ts +2 -0
  881. package/src/components/domain/barcode-scanner/BarcodeScanner.stories.ts +139 -0
  882. package/src/components/domain/barcode-scanner/BarcodeScanner.test.ts +93 -0
  883. package/src/components/domain/barcode-scanner/BarcodeScanner.vue +145 -0
  884. package/src/components/domain/barcode-scanner/index.ts +2 -0
  885. package/src/components/domain/chat-transcript/ChatTranscript.stories.ts +283 -0
  886. package/src/components/domain/chat-transcript/ChatTranscript.test.ts +462 -0
  887. package/src/components/domain/chat-transcript/ChatTranscript.vue +330 -0
  888. package/src/components/domain/chat-transcript/index.ts +2 -0
  889. package/src/components/domain/connection-status/ConnectionStatus.stories.ts +120 -0
  890. package/src/components/domain/connection-status/ConnectionStatus.test.ts +133 -0
  891. package/src/components/domain/connection-status/ConnectionStatus.vue +136 -0
  892. package/src/components/domain/connection-status/index.ts +2 -0
  893. package/src/components/domain/countdown/Countdown.stories.ts +96 -0
  894. package/src/components/domain/countdown/Countdown.test.ts +99 -0
  895. package/src/components/domain/countdown/Countdown.vue +118 -0
  896. package/src/components/domain/countdown/index.ts +2 -0
  897. package/src/components/domain/countdown-timer/CountdownTimer.stories.ts +150 -0
  898. package/src/components/domain/countdown-timer/CountdownTimer.test.ts +172 -0
  899. package/src/components/domain/countdown-timer/CountdownTimer.vue +196 -0
  900. package/src/components/domain/countdown-timer/index.ts +2 -0
  901. package/src/components/domain/download-button/DownloadButton.stories.ts +131 -0
  902. package/src/components/domain/download-button/DownloadButton.test.ts +364 -0
  903. package/src/components/domain/download-button/DownloadButton.vue +119 -0
  904. package/src/components/domain/download-button/index.ts +2 -0
  905. package/src/components/domain/file-uploader/FileUploader.stories.ts +78 -0
  906. package/src/components/domain/file-uploader/FileUploader.test.ts +157 -0
  907. package/src/components/domain/file-uploader/FileUploader.vue +182 -0
  908. package/src/components/domain/file-uploader/index.ts +2 -0
  909. package/src/components/domain/header/Header.stories.ts +48 -0
  910. package/src/components/domain/header/Header.test.ts +92 -0
  911. package/src/components/domain/header/Header.vue +48 -0
  912. package/src/components/domain/header/index.ts +2 -0
  913. package/src/components/domain/leaderboard/ActivityNotifications.stories.ts +206 -0
  914. package/src/components/domain/leaderboard/ActivityNotifications.test.ts +306 -0
  915. package/src/components/domain/leaderboard/ActivityNotifications.vue +152 -0
  916. package/src/components/domain/leaderboard/AwardIcon.stories.ts +63 -0
  917. package/src/components/domain/leaderboard/AwardIcon.test.ts +42 -0
  918. package/src/components/domain/leaderboard/AwardIcon.vue +48 -0
  919. package/src/components/domain/leaderboard/Leaderboard.stories.ts +225 -0
  920. package/src/components/domain/leaderboard/Leaderboard.test.ts +320 -0
  921. package/src/components/domain/leaderboard/Leaderboard.vue +314 -0
  922. package/src/components/domain/leaderboard/RecentActivity.stories.ts +152 -0
  923. package/src/components/domain/leaderboard/RecentActivity.test.ts +398 -0
  924. package/src/components/domain/leaderboard/RecentActivity.vue +169 -0
  925. package/src/components/domain/leaderboard/index.ts +11 -0
  926. package/src/components/domain/live-countdown/LiveCountdown.stories.ts +117 -0
  927. package/src/components/domain/live-countdown/LiveCountdown.test.ts +170 -0
  928. package/src/components/domain/live-countdown/LiveCountdown.vue +183 -0
  929. package/src/components/domain/live-countdown/index.ts +2 -0
  930. package/src/components/domain/live-countdown-sync/LiveCountdownSync.stories.ts +180 -0
  931. package/src/components/domain/live-countdown-sync/LiveCountdownSync.test.ts +74 -0
  932. package/src/components/domain/live-countdown-sync/LiveCountdownSync.vue +196 -0
  933. package/src/components/domain/live-countdown-sync/index.ts +2 -0
  934. package/src/components/domain/local-preview/LocalPreview.stories.ts +53 -0
  935. package/src/components/domain/local-preview/LocalPreview.test.ts +73 -0
  936. package/src/components/domain/local-preview/LocalPreview.vue +196 -0
  937. package/src/components/domain/local-preview/index.ts +2 -0
  938. package/src/components/domain/media-control-bar/MediaControlBar.stories.ts +81 -0
  939. package/src/components/domain/media-control-bar/MediaControlBar.test.ts +110 -0
  940. package/src/components/domain/media-control-bar/MediaControlBar.vue +163 -0
  941. package/src/components/domain/media-control-bar/index.ts +2 -0
  942. package/src/components/domain/message-composer/MessageComposer.stories.ts +64 -0
  943. package/src/components/domain/message-composer/MessageComposer.test.ts +195 -0
  944. package/src/components/domain/message-composer/MessageComposer.vue +220 -0
  945. package/src/components/domain/message-composer/index.ts +2 -0
  946. package/src/components/domain/message-list/MessageList.stories.ts +103 -0
  947. package/src/components/domain/message-list/MessageList.test.ts +121 -0
  948. package/src/components/domain/message-list/MessageList.vue +96 -0
  949. package/src/components/domain/message-list/index.ts +2 -0
  950. package/src/components/domain/on-screen-keyboard/OnScreenKeyboard.stories.ts +150 -0
  951. package/src/components/domain/on-screen-keyboard/OnScreenKeyboard.test.ts +148 -0
  952. package/src/components/domain/on-screen-keyboard/OnScreenKeyboard.vue +155 -0
  953. package/src/components/domain/on-screen-keyboard/index.ts +4 -0
  954. package/src/components/domain/on-screen-keyboard/layouts.ts +43 -0
  955. package/src/components/domain/participant-item/ParticipantItem.stories.ts +129 -0
  956. package/src/components/domain/participant-item/ParticipantItem.test.ts +163 -0
  957. package/src/components/domain/participant-item/ParticipantItem.vue +128 -0
  958. package/src/components/domain/participant-item/index.ts +2 -0
  959. package/src/components/domain/pin-pad/PinPad.stories.ts +150 -0
  960. package/src/components/domain/pin-pad/PinPad.test.ts +171 -0
  961. package/src/components/domain/pin-pad/PinPad.vue +235 -0
  962. package/src/components/domain/pin-pad/index.ts +2 -0
  963. package/src/components/domain/signature-pad/SignaturePad.stories.ts +125 -0
  964. package/src/components/domain/signature-pad/SignaturePad.test.ts +149 -0
  965. package/src/components/domain/signature-pad/SignaturePad.vue +180 -0
  966. package/src/components/domain/signature-pad/index.ts +2 -0
  967. package/src/components/domain/social-stream-post/SocialStreamPost.stories.ts +187 -0
  968. package/src/components/domain/social-stream-post/SocialStreamPost.test.ts +403 -0
  969. package/src/components/domain/social-stream-post/SocialStreamPost.vue +105 -0
  970. package/src/components/domain/social-stream-post/SocialStreamPostBody.vue +139 -0
  971. package/src/components/domain/social-stream-post/index.ts +9 -0
  972. package/src/components/domain/spinner/Spinner.stories.ts +88 -0
  973. package/src/components/domain/spinner/Spinner.test.ts +87 -0
  974. package/src/components/domain/spinner/Spinner.vue +42 -0
  975. package/src/components/domain/spinner/index.ts +2 -0
  976. package/src/components/domain/step-progress/StepProgress.stories.ts +173 -0
  977. package/src/components/domain/step-progress/StepProgress.test.ts +194 -0
  978. package/src/components/domain/step-progress/StepProgress.vue +151 -0
  979. package/src/components/domain/step-progress/index.ts +2 -0
  980. package/src/components/domain/theme-wrapper/ThemeWrapper.stories.ts +163 -0
  981. package/src/components/domain/theme-wrapper/ThemeWrapper.test.ts +284 -0
  982. package/src/components/domain/theme-wrapper/ThemeWrapper.vue +122 -0
  983. package/src/components/domain/theme-wrapper/index.ts +2 -0
  984. package/src/components/domain/video-grid/VideoGrid.stories.ts +77 -0
  985. package/src/components/domain/video-grid/VideoGrid.test.ts +97 -0
  986. package/src/components/domain/video-grid/VideoGrid.vue +87 -0
  987. package/src/components/domain/video-grid/index.ts +2 -0
  988. package/src/components/domain/video-player/VideoPlayer.stories.ts +66 -0
  989. package/src/components/domain/video-player/VideoPlayer.test.ts +180 -0
  990. package/src/components/domain/video-player/VideoPlayer.vue +82 -0
  991. package/src/components/domain/video-player/index.ts +2 -0
  992. package/src/components/domain/video-tile/VideoTile.stories.ts +68 -0
  993. package/src/components/domain/video-tile/VideoTile.test.ts +116 -0
  994. package/src/components/domain/video-tile/VideoTile.vue +134 -0
  995. package/src/components/domain/video-tile/index.ts +2 -0
  996. package/src/components/ui/accordion/Accordion.stories.ts +68 -0
  997. package/src/components/ui/accordion/Accordion.test.ts +105 -0
  998. package/src/components/ui/accordion/Accordion.vue +24 -0
  999. package/src/components/ui/accordion/AccordionContent.vue +22 -0
  1000. package/src/components/ui/accordion/AccordionItem.vue +22 -0
  1001. package/src/components/ui/accordion/AccordionTrigger.vue +36 -0
  1002. package/src/components/ui/accordion/index.ts +4 -0
  1003. package/src/components/ui/alert/Alert.stories.ts +98 -0
  1004. package/src/components/ui/alert/Alert.test.ts +164 -0
  1005. package/src/components/ui/alert/Alert.vue +23 -0
  1006. package/src/components/ui/alert/AlertDescription.vue +14 -0
  1007. package/src/components/ui/alert/AlertTitle.vue +14 -0
  1008. package/src/components/ui/alert/index.ts +24 -0
  1009. package/src/components/ui/alert-dialog/AlertDialog.stories.ts +59 -0
  1010. package/src/components/ui/alert-dialog/AlertDialog.test.ts +255 -0
  1011. package/src/components/ui/alert-dialog/AlertDialog.vue +21 -0
  1012. package/src/components/ui/alert-dialog/AlertDialogAction.vue +18 -0
  1013. package/src/components/ui/alert-dialog/AlertDialogCancel.vue +25 -0
  1014. package/src/components/ui/alert-dialog/AlertDialogContent.vue +38 -0
  1015. package/src/components/ui/alert-dialog/AlertDialogDescription.vue +22 -0
  1016. package/src/components/ui/alert-dialog/AlertDialogFooter.vue +21 -0
  1017. package/src/components/ui/alert-dialog/AlertDialogHeader.vue +16 -0
  1018. package/src/components/ui/alert-dialog/AlertDialogTitle.vue +20 -0
  1019. package/src/components/ui/alert-dialog/AlertDialogTrigger.vue +12 -0
  1020. package/src/components/ui/alert-dialog/index.ts +9 -0
  1021. package/src/components/ui/aspect-ratio/AspectRatio.stories.ts +54 -0
  1022. package/src/components/ui/aspect-ratio/AspectRatio.test.ts +73 -0
  1023. package/src/components/ui/aspect-ratio/AspectRatio.vue +18 -0
  1024. package/src/components/ui/aspect-ratio/index.ts +1 -0
  1025. package/src/components/ui/avatar/Avatar.stories.ts +138 -0
  1026. package/src/components/ui/avatar/Avatar.test.ts +136 -0
  1027. package/src/components/ui/avatar/Avatar.vue +27 -0
  1028. package/src/components/ui/avatar/AvatarFallback.vue +12 -0
  1029. package/src/components/ui/avatar/AvatarImage.vue +12 -0
  1030. package/src/components/ui/avatar/index.ts +25 -0
  1031. package/src/components/ui/badge/Badge.stories.ts +103 -0
  1032. package/src/components/ui/badge/Badge.test.ts +119 -0
  1033. package/src/components/ui/badge/Badge.vue +22 -0
  1034. package/src/components/ui/badge/index.ts +26 -0
  1035. package/src/components/ui/button/Button.stories.ts +312 -0
  1036. package/src/components/ui/button/Button.test.ts +307 -0
  1037. package/src/components/ui/button/Button.vue +35 -0
  1038. package/src/components/ui/button/index.ts +37 -0
  1039. package/src/components/ui/calendar/Calendar.stories.ts +65 -0
  1040. package/src/components/ui/calendar/Calendar.test.ts +64 -0
  1041. package/src/components/ui/calendar/Calendar.vue +64 -0
  1042. package/src/components/ui/calendar/CalendarCell.vue +22 -0
  1043. package/src/components/ui/calendar/CalendarCellTrigger.vue +36 -0
  1044. package/src/components/ui/calendar/CalendarGrid.vue +22 -0
  1045. package/src/components/ui/calendar/CalendarGridBody.vue +12 -0
  1046. package/src/components/ui/calendar/CalendarGridHead.vue +12 -0
  1047. package/src/components/ui/calendar/CalendarGridRow.vue +19 -0
  1048. package/src/components/ui/calendar/CalendarHeadCell.vue +19 -0
  1049. package/src/components/ui/calendar/CalendarHeader.vue +19 -0
  1050. package/src/components/ui/calendar/CalendarHeading.vue +29 -0
  1051. package/src/components/ui/calendar/CalendarNextButton.vue +30 -0
  1052. package/src/components/ui/calendar/CalendarPrevButton.vue +30 -0
  1053. package/src/components/ui/calendar/index.ts +12 -0
  1054. package/src/components/ui/card/Card.stories.ts +168 -0
  1055. package/src/components/ui/card/Card.test.ts +213 -0
  1056. package/src/components/ui/card/Card.vue +27 -0
  1057. package/src/components/ui/card/CardContent.vue +14 -0
  1058. package/src/components/ui/card/CardDescription.vue +14 -0
  1059. package/src/components/ui/card/CardFooter.vue +14 -0
  1060. package/src/components/ui/card/CardHeader.vue +14 -0
  1061. package/src/components/ui/card/CardTitle.vue +18 -0
  1062. package/src/components/ui/card/index.ts +6 -0
  1063. package/src/components/ui/checkbox/Checkbox.stories.ts +132 -0
  1064. package/src/components/ui/checkbox/Checkbox.test.ts +72 -0
  1065. package/src/components/ui/checkbox/Checkbox.vue +35 -0
  1066. package/src/components/ui/checkbox/index.ts +1 -0
  1067. package/src/components/ui/collapsible/Collapsible.stories.ts +49 -0
  1068. package/src/components/ui/collapsible/Collapsible.test.ts +44 -0
  1069. package/src/components/ui/collapsible/Collapsible.vue +20 -0
  1070. package/src/components/ui/collapsible/CollapsibleContent.vue +12 -0
  1071. package/src/components/ui/collapsible/CollapsibleTrigger.vue +12 -0
  1072. package/src/components/ui/collapsible/index.ts +3 -0
  1073. package/src/components/ui/command/Command.stories.ts +272 -0
  1074. package/src/components/ui/command/Command.test.ts +127 -0
  1075. package/src/components/ui/command/Command.vue +86 -0
  1076. package/src/components/ui/command/CommandDialog.vue +21 -0
  1077. package/src/components/ui/command/CommandEmpty.vue +23 -0
  1078. package/src/components/ui/command/CommandGroup.vue +44 -0
  1079. package/src/components/ui/command/CommandInput.vue +35 -0
  1080. package/src/components/ui/command/CommandItem.vue +75 -0
  1081. package/src/components/ui/command/CommandList.vue +21 -0
  1082. package/src/components/ui/command/CommandSeparator.vue +20 -0
  1083. package/src/components/ui/command/CommandShortcut.vue +14 -0
  1084. package/src/components/ui/command/index.ts +25 -0
  1085. package/src/components/ui/context-menu/ContextMenu.stories.ts +240 -0
  1086. package/src/components/ui/context-menu/ContextMenu.test.ts +66 -0
  1087. package/src/components/ui/context-menu/ContextMenu.vue +21 -0
  1088. package/src/components/ui/context-menu/ContextMenuCheckboxItem.vue +36 -0
  1089. package/src/components/ui/context-menu/ContextMenuContent.vue +32 -0
  1090. package/src/components/ui/context-menu/ContextMenuGroup.vue +12 -0
  1091. package/src/components/ui/context-menu/ContextMenuItem.vue +30 -0
  1092. package/src/components/ui/context-menu/ContextMenuLabel.vue +23 -0
  1093. package/src/components/ui/context-menu/ContextMenuPortal.vue +12 -0
  1094. package/src/components/ui/context-menu/ContextMenuRadioGroup.vue +18 -0
  1095. package/src/components/ui/context-menu/ContextMenuRadioItem.vue +36 -0
  1096. package/src/components/ui/context-menu/ContextMenuSeparator.vue +17 -0
  1097. package/src/components/ui/context-menu/ContextMenuShortcut.vue +14 -0
  1098. package/src/components/ui/context-menu/ContextMenuSub.vue +18 -0
  1099. package/src/components/ui/context-menu/ContextMenuSubContent.vue +31 -0
  1100. package/src/components/ui/context-menu/ContextMenuSubTrigger.vue +31 -0
  1101. package/src/components/ui/context-menu/ContextMenuTrigger.vue +14 -0
  1102. package/src/components/ui/context-menu/index.ts +15 -0
  1103. package/src/components/ui/dialog/Dialog.stories.ts +339 -0
  1104. package/src/components/ui/dialog/Dialog.test.ts +342 -0
  1105. package/src/components/ui/dialog/Dialog.vue +20 -0
  1106. package/src/components/ui/dialog/DialogClose.vue +12 -0
  1107. package/src/components/ui/dialog/DialogContent.vue +46 -0
  1108. package/src/components/ui/dialog/DialogDescription.vue +22 -0
  1109. package/src/components/ui/dialog/DialogFooter.vue +19 -0
  1110. package/src/components/ui/dialog/DialogHeader.vue +16 -0
  1111. package/src/components/ui/dialog/DialogScrollContent.vue +55 -0
  1112. package/src/components/ui/dialog/DialogTitle.vue +27 -0
  1113. package/src/components/ui/dialog/DialogTrigger.vue +12 -0
  1114. package/src/components/ui/dialog/index.ts +9 -0
  1115. package/src/components/ui/dropdown-menu/DropdownMenu.stories.ts +316 -0
  1116. package/src/components/ui/dropdown-menu/DropdownMenu.test.ts +193 -0
  1117. package/src/components/ui/dropdown-menu/DropdownMenu.vue +21 -0
  1118. package/src/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +36 -0
  1119. package/src/components/ui/dropdown-menu/DropdownMenuContent.vue +34 -0
  1120. package/src/components/ui/dropdown-menu/DropdownMenuGroup.vue +12 -0
  1121. package/src/components/ui/dropdown-menu/DropdownMenuItem.vue +26 -0
  1122. package/src/components/ui/dropdown-menu/DropdownMenuLabel.vue +22 -0
  1123. package/src/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue +18 -0
  1124. package/src/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +37 -0
  1125. package/src/components/ui/dropdown-menu/DropdownMenuSeparator.vue +19 -0
  1126. package/src/components/ui/dropdown-menu/DropdownMenuShortcut.vue +14 -0
  1127. package/src/components/ui/dropdown-menu/DropdownMenuSub.vue +18 -0
  1128. package/src/components/ui/dropdown-menu/DropdownMenuSubContent.vue +26 -0
  1129. package/src/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +30 -0
  1130. package/src/components/ui/dropdown-menu/DropdownMenuTrigger.vue +14 -0
  1131. package/src/components/ui/dropdown-menu/index.ts +16 -0
  1132. package/src/components/ui/form/Form.stories.ts +150 -0
  1133. package/src/components/ui/form/Form.test.ts +45 -0
  1134. package/src/components/ui/form/FormControl.vue +16 -0
  1135. package/src/components/ui/form/FormDescription.vue +20 -0
  1136. package/src/components/ui/form/FormItem.vue +20 -0
  1137. package/src/components/ui/form/FormLabel.vue +23 -0
  1138. package/src/components/ui/form/FormMessage.vue +16 -0
  1139. package/src/components/ui/form/index.ts +12 -0
  1140. package/src/components/ui/form/injectionKeys.ts +4 -0
  1141. package/src/components/ui/form/useFormField.ts +30 -0
  1142. package/src/components/ui/hover-card/HoverCard.stories.ts +48 -0
  1143. package/src/components/ui/hover-card/HoverCard.test.ts +124 -0
  1144. package/src/components/ui/hover-card/HoverCard.vue +21 -0
  1145. package/src/components/ui/hover-card/HoverCardContent.vue +38 -0
  1146. package/src/components/ui/hover-card/HoverCardTrigger.vue +12 -0
  1147. package/src/components/ui/hover-card/index.ts +3 -0
  1148. package/src/components/ui/input/Input.stories.ts +472 -0
  1149. package/src/components/ui/input/Input.test.ts +317 -0
  1150. package/src/components/ui/input/Input.vue +35 -0
  1151. package/src/components/ui/input/index.ts +1 -0
  1152. package/src/components/ui/label/Label.stories.ts +48 -0
  1153. package/src/components/ui/label/Label.test.ts +75 -0
  1154. package/src/components/ui/label/Label.vue +30 -0
  1155. package/src/components/ui/label/index.ts +1 -0
  1156. package/src/components/ui/menubar/Menubar.stories.ts +296 -0
  1157. package/src/components/ui/menubar/Menubar.test.ts +135 -0
  1158. package/src/components/ui/menubar/Menubar.vue +37 -0
  1159. package/src/components/ui/menubar/MenubarCheckboxItem.vue +36 -0
  1160. package/src/components/ui/menubar/MenubarContent.vue +40 -0
  1161. package/src/components/ui/menubar/MenubarGroup.vue +12 -0
  1162. package/src/components/ui/menubar/MenubarItem.vue +31 -0
  1163. package/src/components/ui/menubar/MenubarLabel.vue +14 -0
  1164. package/src/components/ui/menubar/MenubarMenu.vue +12 -0
  1165. package/src/components/ui/menubar/MenubarRadioGroup.vue +19 -0
  1166. package/src/components/ui/menubar/MenubarRadioItem.vue +36 -0
  1167. package/src/components/ui/menubar/MenubarSeparator.vue +17 -0
  1168. package/src/components/ui/menubar/MenubarShortcut.vue +14 -0
  1169. package/src/components/ui/menubar/MenubarSub.vue +20 -0
  1170. package/src/components/ui/menubar/MenubarSubContent.vue +35 -0
  1171. package/src/components/ui/menubar/MenubarSubTrigger.vue +28 -0
  1172. package/src/components/ui/menubar/MenubarTrigger.vue +27 -0
  1173. package/src/components/ui/menubar/index.ts +15 -0
  1174. package/src/components/ui/navigation-menu/NavigationMenu.stories.ts +212 -0
  1175. package/src/components/ui/navigation-menu/NavigationMenu.test.ts +107 -0
  1176. package/src/components/ui/navigation-menu/NavigationMenu.vue +34 -0
  1177. package/src/components/ui/navigation-menu/NavigationMenuContent.vue +30 -0
  1178. package/src/components/ui/navigation-menu/NavigationMenuIndicator.vue +22 -0
  1179. package/src/components/ui/navigation-menu/NavigationMenuItem.vue +12 -0
  1180. package/src/components/ui/navigation-menu/NavigationMenuLink.vue +18 -0
  1181. package/src/components/ui/navigation-menu/NavigationMenuList.vue +27 -0
  1182. package/src/components/ui/navigation-menu/NavigationMenuTrigger.vue +31 -0
  1183. package/src/components/ui/navigation-menu/NavigationMenuViewport.vue +30 -0
  1184. package/src/components/ui/navigation-menu/index.ts +14 -0
  1185. package/src/components/ui/pagination/Pagination.stories.ts +83 -0
  1186. package/src/components/ui/pagination/Pagination.test.ts +152 -0
  1187. package/src/components/ui/pagination/Pagination.vue +31 -0
  1188. package/src/components/ui/pagination/PaginationContent.vue +22 -0
  1189. package/src/components/ui/pagination/PaginationEllipsis.vue +25 -0
  1190. package/src/components/ui/pagination/PaginationFirst.vue +33 -0
  1191. package/src/components/ui/pagination/PaginationItem.vue +34 -0
  1192. package/src/components/ui/pagination/PaginationLast.vue +33 -0
  1193. package/src/components/ui/pagination/PaginationNext.vue +33 -0
  1194. package/src/components/ui/pagination/PaginationPrevious.vue +33 -0
  1195. package/src/components/ui/pagination/index.ts +8 -0
  1196. package/src/components/ui/popover/Popover.stories.ts +47 -0
  1197. package/src/components/ui/popover/Popover.test.ts +85 -0
  1198. package/src/components/ui/popover/Popover.vue +20 -0
  1199. package/src/components/ui/popover/PopoverContent.vue +44 -0
  1200. package/src/components/ui/popover/PopoverTrigger.vue +12 -0
  1201. package/src/components/ui/popover/index.ts +3 -0
  1202. package/src/components/ui/progress/Progress.stories.ts +84 -0
  1203. package/src/components/ui/progress/Progress.test.ts +95 -0
  1204. package/src/components/ui/progress/Progress.vue +41 -0
  1205. package/src/components/ui/progress/index.ts +1 -0
  1206. package/src/components/ui/radio-group/RadioGroup.stories.ts +112 -0
  1207. package/src/components/ui/radio-group/RadioGroup.test.ts +124 -0
  1208. package/src/components/ui/radio-group/RadioGroup.vue +28 -0
  1209. package/src/components/ui/radio-group/RadioGroupItem.vue +36 -0
  1210. package/src/components/ui/radio-group/index.ts +2 -0
  1211. package/src/components/ui/scroll-area/ScrollArea.stories.ts +61 -0
  1212. package/src/components/ui/scroll-area/ScrollArea.test.ts +69 -0
  1213. package/src/components/ui/scroll-area/ScrollArea.vue +31 -0
  1214. package/src/components/ui/scroll-area/ScrollBar.vue +28 -0
  1215. package/src/components/ui/scroll-area/index.ts +2 -0
  1216. package/src/components/ui/select/Select.stories.ts +312 -0
  1217. package/src/components/ui/select/Select.test.ts +290 -0
  1218. package/src/components/ui/select/Select.vue +20 -0
  1219. package/src/components/ui/select/SelectContent.vue +49 -0
  1220. package/src/components/ui/select/SelectGroup.vue +17 -0
  1221. package/src/components/ui/select/SelectItem.vue +41 -0
  1222. package/src/components/ui/select/SelectItemText.vue +12 -0
  1223. package/src/components/ui/select/SelectLabel.vue +14 -0
  1224. package/src/components/ui/select/SelectScrollDownButton.vue +22 -0
  1225. package/src/components/ui/select/SelectScrollUpButton.vue +22 -0
  1226. package/src/components/ui/select/SelectSeparator.vue +15 -0
  1227. package/src/components/ui/select/SelectTrigger.vue +29 -0
  1228. package/src/components/ui/select/SelectValue.vue +12 -0
  1229. package/src/components/ui/select/index.ts +11 -0
  1230. package/src/components/ui/separator/Separator.stories.ts +100 -0
  1231. package/src/components/ui/separator/Separator.test.ts +82 -0
  1232. package/src/components/ui/separator/Separator.vue +34 -0
  1233. package/src/components/ui/separator/index.ts +1 -0
  1234. package/src/components/ui/sheet/Sheet.stories.ts +158 -0
  1235. package/src/components/ui/sheet/Sheet.test.ts +345 -0
  1236. package/src/components/ui/sheet/Sheet.vue +21 -0
  1237. package/src/components/ui/sheet/SheetClose.vue +12 -0
  1238. package/src/components/ui/sheet/SheetContent.vue +53 -0
  1239. package/src/components/ui/sheet/SheetDescription.vue +20 -0
  1240. package/src/components/ui/sheet/SheetFooter.vue +19 -0
  1241. package/src/components/ui/sheet/SheetHeader.vue +16 -0
  1242. package/src/components/ui/sheet/SheetTitle.vue +20 -0
  1243. package/src/components/ui/sheet/SheetTrigger.vue +12 -0
  1244. package/src/components/ui/sheet/index.ts +32 -0
  1245. package/src/components/ui/skeleton/Skeleton.stories.ts +117 -0
  1246. package/src/components/ui/skeleton/Skeleton.test.ts +63 -0
  1247. package/src/components/ui/skeleton/Skeleton.vue +19 -0
  1248. package/src/components/ui/skeleton/index.ts +1 -0
  1249. package/src/components/ui/slider/Slider.stories.ts +96 -0
  1250. package/src/components/ui/slider/Slider.test.ts +91 -0
  1251. package/src/components/ui/slider/Slider.vue +38 -0
  1252. package/src/components/ui/slider/index.ts +1 -0
  1253. package/src/components/ui/sonner/Sonner.stories.ts +255 -0
  1254. package/src/components/ui/sonner/Sonner.test.ts +37 -0
  1255. package/src/components/ui/sonner/Sonner.vue +52 -0
  1256. package/src/components/ui/sonner/index.ts +1 -0
  1257. package/src/components/ui/switch/Switch.stories.ts +66 -0
  1258. package/src/components/ui/switch/Switch.test.ts +78 -0
  1259. package/src/components/ui/switch/Switch.vue +40 -0
  1260. package/src/components/ui/switch/index.ts +1 -0
  1261. package/src/components/ui/table/Table.stories.ts +193 -0
  1262. package/src/components/ui/table/Table.test.ts +414 -0
  1263. package/src/components/ui/table/Table.vue +22 -0
  1264. package/src/components/ui/table/TableBody.vue +14 -0
  1265. package/src/components/ui/table/TableCaption.vue +14 -0
  1266. package/src/components/ui/table/TableCell.vue +21 -0
  1267. package/src/components/ui/table/TableEmpty.vue +34 -0
  1268. package/src/components/ui/table/TableFooter.vue +14 -0
  1269. package/src/components/ui/table/TableHead.vue +14 -0
  1270. package/src/components/ui/table/TableHeader.vue +14 -0
  1271. package/src/components/ui/table/TableRow.vue +14 -0
  1272. package/src/components/ui/table/index.ts +9 -0
  1273. package/src/components/ui/tabs/Tabs.stories.ts +251 -0
  1274. package/src/components/ui/tabs/Tabs.test.ts +127 -0
  1275. package/src/components/ui/tabs/Tabs.vue +20 -0
  1276. package/src/components/ui/tabs/TabsContent.vue +20 -0
  1277. package/src/components/ui/tabs/TabsList.vue +23 -0
  1278. package/src/components/ui/tabs/TabsTrigger.vue +27 -0
  1279. package/src/components/ui/tabs/index.ts +4 -0
  1280. package/src/components/ui/textarea/Textarea.stories.ts +114 -0
  1281. package/src/components/ui/textarea/Textarea.test.ts +146 -0
  1282. package/src/components/ui/textarea/Textarea.vue +29 -0
  1283. package/src/components/ui/textarea/index.ts +1 -0
  1284. package/src/components/ui/tooltip/Tooltip.stories.ts +30 -0
  1285. package/src/components/ui/tooltip/Tooltip.test.ts +97 -0
  1286. package/src/components/ui/tooltip/Tooltip.vue +20 -0
  1287. package/src/components/ui/tooltip/TooltipContent.vue +29 -0
  1288. package/src/components/ui/tooltip/TooltipProvider.vue +12 -0
  1289. package/src/components/ui/tooltip/TooltipTrigger.vue +12 -0
  1290. package/src/components/ui/tooltip/index.ts +4 -0
  1291. package/src/composables/__demo__/UseAnimationsDemo.vue +60 -0
  1292. package/src/composables/__demo__/UseCameraBorderDemo.vue +65 -0
  1293. package/src/composables/__demo__/UseChatMediaDemo.vue +105 -0
  1294. package/src/composables/__demo__/UseChatMessagesDemo.vue +95 -0
  1295. package/src/composables/__demo__/UseErrorsDemo.vue +41 -0
  1296. package/src/composables/__demo__/UseExperienceDemo.vue +72 -0
  1297. package/src/composables/__demo__/UseMediaDemo.vue +100 -0
  1298. package/src/composables/__demo__/UseNfcListenerDemo.vue +36 -0
  1299. package/src/composables/__demo__/UseQuestionDemo.vue +72 -0
  1300. package/src/composables/__demo__/UseScanningDemo.vue +40 -0
  1301. package/src/composables/__demo__/UseStreamingAudioDemo.vue +101 -0
  1302. package/src/composables/__demo__/UseToastDemo.vue +39 -0
  1303. package/src/composables/__demo__/UseWebSocketDemo.vue +59 -0
  1304. package/src/composables/index.ts +58 -0
  1305. package/src/composables/useAnimations.stories.ts +64 -0
  1306. package/src/composables/useAnimations.test.ts +480 -0
  1307. package/src/composables/useAnimations.ts +108 -0
  1308. package/src/composables/useCameraBorder.stories.ts +45 -0
  1309. package/src/composables/useCameraBorder.test.ts +192 -0
  1310. package/src/composables/useCameraBorder.ts +69 -0
  1311. package/src/composables/useChatMedia.stories.ts +57 -0
  1312. package/src/composables/useChatMedia.test.ts +120 -0
  1313. package/src/composables/useChatMedia.ts +298 -0
  1314. package/src/composables/useChatMessages.stories.ts +52 -0
  1315. package/src/composables/useChatMessages.test.ts +105 -0
  1316. package/src/composables/useChatMessages.ts +295 -0
  1317. package/src/composables/useErrors.stories.ts +44 -0
  1318. package/src/composables/useErrors.test.ts +79 -0
  1319. package/src/composables/useErrors.ts +36 -0
  1320. package/src/composables/useExperience.stories.ts +68 -0
  1321. package/src/composables/useMedia.stories.ts +58 -0
  1322. package/src/composables/useMedia.test.ts +106 -0
  1323. package/src/composables/useMedia.ts +664 -0
  1324. package/src/composables/useNfcListener.stories.ts +42 -0
  1325. package/src/composables/useNfcListener.test.ts +311 -0
  1326. package/src/composables/useNfcListener.ts +90 -0
  1327. package/src/composables/useQuestion.stories.ts +118 -0
  1328. package/src/composables/useQuestion.test.ts +113 -0
  1329. package/src/composables/useQuestion.ts +130 -0
  1330. package/src/composables/useScanning.stories.ts +40 -0
  1331. package/src/composables/useScanning.test.ts +135 -0
  1332. package/src/composables/useScanning.ts +50 -0
  1333. package/src/composables/useStreamingAudio.stories.ts +69 -0
  1334. package/src/composables/useStreamingAudio.test.ts +134 -0
  1335. package/src/composables/useStreamingAudio.ts +308 -0
  1336. package/src/composables/useToast.stories.ts +46 -0
  1337. package/src/composables/useToast.test.ts +138 -0
  1338. package/src/composables/useToast.ts +60 -0
  1339. package/src/composables/useWebSocket.stories.ts +60 -0
  1340. package/src/composables/useWebSocket.test.ts +443 -0
  1341. package/src/composables/useWebSocket.ts +303 -0
  1342. package/src/experience/ExperienceFlow.stories.ts +79 -0
  1343. package/src/experience/ExperienceFlow.vue +100 -0
  1344. package/src/experience/index.ts +81 -0
  1345. package/src/experience/pages/audio-capture/AudioCapturePage.stories.ts +21 -0
  1346. package/src/experience/pages/audio-capture/AudioCapturePage.vue +120 -0
  1347. package/src/experience/pages/audio-capture/index.ts +7 -0
  1348. package/src/experience/pages/audio-review/AudioReviewPage.stories.ts +21 -0
  1349. package/src/experience/pages/audio-review/AudioReviewPage.vue +114 -0
  1350. package/src/experience/pages/audio-review/index.ts +8 -0
  1351. package/src/experience/pages/camera/CameraPage.stories.ts +25 -0
  1352. package/src/experience/pages/camera/CameraPage.vue +186 -0
  1353. package/src/experience/pages/camera/index.ts +7 -0
  1354. package/src/experience/pages/camera-review/CameraReviewPage.stories.ts +27 -0
  1355. package/src/experience/pages/camera-review/CameraReviewPage.test.ts +56 -0
  1356. package/src/experience/pages/camera-review/CameraReviewPage.vue +129 -0
  1357. package/src/experience/pages/camera-review/index.ts +8 -0
  1358. package/src/experience/pages/drawing/DrawingPage.stories.ts +19 -0
  1359. package/src/experience/pages/drawing/DrawingPage.vue +249 -0
  1360. package/src/experience/pages/drawing/index.ts +7 -0
  1361. package/src/experience/pages/final/FinalPage.stories.ts +30 -0
  1362. package/src/experience/pages/final/FinalPage.vue +120 -0
  1363. package/src/experience/pages/final/index.ts +5 -0
  1364. package/src/experience/pages/form/FormPage.stories.ts +40 -0
  1365. package/src/experience/pages/form/FormPage.test.ts +40 -0
  1366. package/src/experience/pages/form/FormPage.vue +200 -0
  1367. package/src/experience/pages/form/index.ts +7 -0
  1368. package/src/experience/pages/instructions/InstructionsPage.stories.ts +24 -0
  1369. package/src/experience/pages/instructions/InstructionsPage.vue +105 -0
  1370. package/src/experience/pages/instructions/index.ts +5 -0
  1371. package/src/experience/pages/loading/LoadingPage.stories.ts +24 -0
  1372. package/src/experience/pages/loading/LoadingPage.vue +97 -0
  1373. package/src/experience/pages/loading/index.ts +10 -0
  1374. package/src/experience/pages/notepad/NotepadPage.stories.ts +19 -0
  1375. package/src/experience/pages/notepad/NotepadPage.test.ts +24 -0
  1376. package/src/experience/pages/notepad/NotepadPage.vue +190 -0
  1377. package/src/experience/pages/notepad/index.ts +7 -0
  1378. package/src/experience/pages/options/OptionsPage.stories.ts +28 -0
  1379. package/src/experience/pages/options/OptionsPage.test.ts +28 -0
  1380. package/src/experience/pages/options/OptionsPage.vue +79 -0
  1381. package/src/experience/pages/options/index.ts +7 -0
  1382. package/src/experience/pages/photo-edit/PhotoEditPage.stories.ts +31 -0
  1383. package/src/experience/pages/photo-edit/PhotoEditPage.vue +204 -0
  1384. package/src/experience/pages/photo-edit/index.ts +7 -0
  1385. package/src/experience/pages/prompt/PromptPage.stories.ts +38 -0
  1386. package/src/experience/pages/prompt/PromptPage.test.ts +70 -0
  1387. package/src/experience/pages/prompt/PromptPage.vue +141 -0
  1388. package/src/experience/pages/prompt/index.ts +7 -0
  1389. package/src/experience/pages/results-gallery/ResultsGalleryPage.stories.ts +30 -0
  1390. package/src/experience/pages/results-gallery/ResultsGalleryPage.test.ts +39 -0
  1391. package/src/experience/pages/results-gallery/ResultsGalleryPage.vue +128 -0
  1392. package/src/experience/pages/results-gallery/index.ts +7 -0
  1393. package/src/experience/pages/share/SharePage.stories.ts +29 -0
  1394. package/src/experience/pages/share/SharePage.test.ts +57 -0
  1395. package/src/experience/pages/share/SharePage.vue +182 -0
  1396. package/src/experience/pages/share/index.ts +5 -0
  1397. package/src/experience/pages/terms/TermsPage.stories.ts +24 -0
  1398. package/src/experience/pages/terms/TermsPage.test.ts +43 -0
  1399. package/src/experience/pages/terms/TermsPage.vue +91 -0
  1400. package/src/experience/pages/terms/index.ts +7 -0
  1401. package/src/experience/pages/text/TextPage.stories.ts +21 -0
  1402. package/src/experience/pages/text/TextPage.test.ts +34 -0
  1403. package/src/experience/pages/text/TextPage.vue +98 -0
  1404. package/src/experience/pages/text/index.ts +7 -0
  1405. package/src/experience/pages/video-capture/VideoCapturePage.stories.ts +21 -0
  1406. package/src/experience/pages/video-capture/VideoCapturePage.vue +153 -0
  1407. package/src/experience/pages/video-capture/index.ts +7 -0
  1408. package/src/experience/pages/video-review/VideoReviewPage.stories.ts +21 -0
  1409. package/src/experience/pages/video-review/VideoReviewPage.vue +117 -0
  1410. package/src/experience/pages/video-review/index.ts +8 -0
  1411. package/src/experience/pages/welcome/WelcomePage.stories.ts +25 -0
  1412. package/src/experience/pages/welcome/WelcomePage.test.ts +27 -0
  1413. package/src/experience/pages/welcome/WelcomePage.vue +52 -0
  1414. package/src/experience/pages/welcome/index.ts +5 -0
  1415. package/src/experience/types.ts +79 -0
  1416. package/src/experience/useExperience.test.ts +275 -0
  1417. package/src/experience/useExperience.ts +168 -0
  1418. package/src/experience/useExperienceApi.test.ts +71 -0
  1419. package/src/experience/useExperienceApi.ts +96 -0
  1420. package/src/experience/withDefaults.ts +22 -0
  1421. package/src/index.ts +532 -0
  1422. package/src/lib/imageToBlob.ts +53 -0
  1423. package/src/lib/utils.test.ts +537 -0
  1424. package/src/lib/utils.ts +225 -0
  1425. package/src/shims.d.ts +10 -0
  1426. package/src/styles/base.css +2 -0
  1427. package/src/styles/tailwind.css +91 -0
  1428. package/src/styles/themes/default.css +72 -0
  1429. package/tsconfig.json +28 -0
@@ -0,0 +1,2993 @@
1
+ const Ne = (e, t) => {
2
+ const r = new Array(e.length + t.length);
3
+ for (let o = 0; o < e.length; o++)
4
+ r[o] = e[o];
5
+ for (let o = 0; o < t.length; o++)
6
+ r[e.length + o] = t[o];
7
+ return r;
8
+ }, je = (e, t) => ({
9
+ classGroupId: e,
10
+ validator: t
11
+ }), ye = (e = /* @__PURE__ */ new Map(), t = null, r) => ({
12
+ nextPart: e,
13
+ validators: t,
14
+ classGroupId: r
15
+ }), H = "-", fe = [], We = "arbitrary..", Ee = (e) => {
16
+ const t = Fe(e), {
17
+ conflictingClassGroups: r,
18
+ conflictingClassGroupModifiers: o
19
+ } = e;
20
+ return {
21
+ getClassGroupId: (i) => {
22
+ if (i.startsWith("[") && i.endsWith("]"))
23
+ return Ve(i);
24
+ const b = i.split(H), u = b[0] === "" && b.length > 1 ? 1 : 0;
25
+ return ve(b, u, t);
26
+ },
27
+ getConflictingClassGroupIds: (i, b) => {
28
+ if (b) {
29
+ const u = o[i], m = r[i];
30
+ return u ? m ? Ne(m, u) : u : m || fe;
31
+ }
32
+ return r[i] || fe;
33
+ }
34
+ };
35
+ }, ve = (e, t, r) => {
36
+ if (e.length - t === 0)
37
+ return r.classGroupId;
38
+ const c = e[t], d = r.nextPart.get(c);
39
+ if (d) {
40
+ const m = ve(e, t + 1, d);
41
+ if (m) return m;
42
+ }
43
+ const i = r.validators;
44
+ if (i === null)
45
+ return;
46
+ const b = t === 0 ? e.join(H) : e.slice(t).join(H), u = i.length;
47
+ for (let m = 0; m < u; m++) {
48
+ const h = i[m];
49
+ if (h.validator(b))
50
+ return h.classGroupId;
51
+ }
52
+ }, Ve = (e) => e.slice(1, -1).indexOf(":") === -1 ? void 0 : (() => {
53
+ const t = e.slice(1, -1), r = t.indexOf(":"), o = t.slice(0, r);
54
+ return o ? We + o : void 0;
55
+ })(), Fe = (e) => {
56
+ const {
57
+ theme: t,
58
+ classGroups: r
59
+ } = e;
60
+ return _e(r, t);
61
+ }, _e = (e, t) => {
62
+ const r = ye();
63
+ for (const o in e) {
64
+ const c = e[o];
65
+ ne(c, r, o, t);
66
+ }
67
+ return r;
68
+ }, ne = (e, t, r, o) => {
69
+ const c = e.length;
70
+ for (let d = 0; d < c; d++) {
71
+ const i = e[d];
72
+ Be(i, t, r, o);
73
+ }
74
+ }, Be = (e, t, r, o) => {
75
+ if (typeof e == "string") {
76
+ $e(e, t, r);
77
+ return;
78
+ }
79
+ if (typeof e == "function") {
80
+ Ue(e, t, r, o);
81
+ return;
82
+ }
83
+ De(e, t, r, o);
84
+ }, $e = (e, t, r) => {
85
+ const o = e === "" ? t : ze(t, e);
86
+ o.classGroupId = r;
87
+ }, Ue = (e, t, r, o) => {
88
+ if (Ye(e)) {
89
+ ne(e(o), t, r, o);
90
+ return;
91
+ }
92
+ t.validators === null && (t.validators = []), t.validators.push(je(r, e));
93
+ }, De = (e, t, r, o) => {
94
+ const c = Object.entries(e), d = c.length;
95
+ for (let i = 0; i < d; i++) {
96
+ const [b, u] = c[i];
97
+ ne(u, ze(t, b), r, o);
98
+ }
99
+ }, ze = (e, t) => {
100
+ let r = e;
101
+ const o = t.split(H), c = o.length;
102
+ for (let d = 0; d < c; d++) {
103
+ const i = o[d];
104
+ let b = r.nextPart.get(i);
105
+ b || (b = ye(), r.nextPart.set(i, b)), r = b;
106
+ }
107
+ return r;
108
+ }, Ye = (e) => "isThemeGetter" in e && e.isThemeGetter === !0, qe = (e) => {
109
+ if (e < 1)
110
+ return {
111
+ get: () => {
112
+ },
113
+ set: () => {
114
+ }
115
+ };
116
+ let t = 0, r = /* @__PURE__ */ Object.create(null), o = /* @__PURE__ */ Object.create(null);
117
+ const c = (d, i) => {
118
+ r[d] = i, t++, t > e && (t = 0, o = r, r = /* @__PURE__ */ Object.create(null));
119
+ };
120
+ return {
121
+ get(d) {
122
+ let i = r[d];
123
+ if (i !== void 0)
124
+ return i;
125
+ if ((i = o[d]) !== void 0)
126
+ return c(d, i), i;
127
+ },
128
+ set(d, i) {
129
+ d in r ? r[d] = i : c(d, i);
130
+ }
131
+ };
132
+ }, se = "!", ge = ":", Xe = [], he = (e, t, r, o, c) => ({
133
+ modifiers: e,
134
+ hasImportantModifier: t,
135
+ baseClassName: r,
136
+ maybePostfixModifierPosition: o,
137
+ isExternal: c
138
+ }), Je = (e) => {
139
+ const {
140
+ prefix: t,
141
+ experimentalParseClassName: r
142
+ } = e;
143
+ let o = (c) => {
144
+ const d = [];
145
+ let i = 0, b = 0, u = 0, m;
146
+ const h = c.length;
147
+ for (let y = 0; y < h; y++) {
148
+ const C = c[y];
149
+ if (i === 0 && b === 0) {
150
+ if (C === ge) {
151
+ d.push(c.slice(u, y)), u = y + 1;
152
+ continue;
153
+ }
154
+ if (C === "/") {
155
+ m = y;
156
+ continue;
157
+ }
158
+ }
159
+ C === "[" ? i++ : C === "]" ? i-- : C === "(" ? b++ : C === ")" && b--;
160
+ }
161
+ const k = d.length === 0 ? c : c.slice(u);
162
+ let T = k, S = !1;
163
+ k.endsWith(se) ? (T = k.slice(0, -1), S = !0) : (
164
+ /**
165
+ * In Tailwind CSS v3 the important modifier was at the start of the base class name. This is still supported for legacy reasons.
166
+ * @see https://github.com/dcastil/tailwind-merge/issues/513#issuecomment-2614029864
167
+ */
168
+ k.startsWith(se) && (T = k.slice(1), S = !0)
169
+ );
170
+ const _ = m && m > u ? m - u : void 0;
171
+ return he(d, S, T, _);
172
+ };
173
+ if (t) {
174
+ const c = t + ge, d = o;
175
+ o = (i) => i.startsWith(c) ? d(i.slice(c.length)) : he(Xe, !1, i, void 0, !0);
176
+ }
177
+ if (r) {
178
+ const c = o;
179
+ o = (d) => r({
180
+ className: d,
181
+ parseClassName: c
182
+ });
183
+ }
184
+ return o;
185
+ }, Qe = (e) => {
186
+ const t = /* @__PURE__ */ new Map();
187
+ return e.orderSensitiveModifiers.forEach((r, o) => {
188
+ t.set(r, 1e6 + o);
189
+ }), (r) => {
190
+ const o = [];
191
+ let c = [];
192
+ for (let d = 0; d < r.length; d++) {
193
+ const i = r[d], b = i[0] === "[", u = t.has(i);
194
+ b || u ? (c.length > 0 && (c.sort(), o.push(...c), c = []), o.push(i)) : c.push(i);
195
+ }
196
+ return c.length > 0 && (c.sort(), o.push(...c)), o;
197
+ };
198
+ }, He = (e) => ({
199
+ cache: qe(e.cacheSize),
200
+ parseClassName: Je(e),
201
+ sortModifiers: Qe(e),
202
+ postfixLookupClassGroupIds: Ke(e),
203
+ ...Ee(e)
204
+ }), Ke = (e) => {
205
+ const t = /* @__PURE__ */ Object.create(null), r = e.postfixLookupClassGroups;
206
+ if (r)
207
+ for (let o = 0; o < r.length; o++)
208
+ t[r[o]] = !0;
209
+ return t;
210
+ }, Ze = /\s+/, eo = (e, t) => {
211
+ const {
212
+ parseClassName: r,
213
+ getClassGroupId: o,
214
+ getConflictingClassGroupIds: c,
215
+ sortModifiers: d,
216
+ postfixLookupClassGroupIds: i
217
+ } = t, b = [], u = e.trim().split(Ze);
218
+ let m = "";
219
+ for (let h = u.length - 1; h >= 0; h -= 1) {
220
+ const k = u[h], {
221
+ isExternal: T,
222
+ modifiers: S,
223
+ hasImportantModifier: _,
224
+ baseClassName: y,
225
+ maybePostfixModifierPosition: C
226
+ } = r(k);
227
+ if (T) {
228
+ m = k + (m.length > 0 ? " " + m : m);
229
+ continue;
230
+ }
231
+ let L = !!C, v;
232
+ if (L) {
233
+ const R = y.substring(0, C);
234
+ v = o(R);
235
+ const a = v && i[v] ? o(y) : void 0;
236
+ a && a !== v && (v = a, L = !1);
237
+ } else
238
+ v = o(y);
239
+ if (!v) {
240
+ if (!L) {
241
+ m = k + (m.length > 0 ? " " + m : m);
242
+ continue;
243
+ }
244
+ if (v = o(y), !v) {
245
+ m = k + (m.length > 0 ? " " + m : m);
246
+ continue;
247
+ }
248
+ L = !1;
249
+ }
250
+ const B = S.length === 0 ? "" : S.length === 1 ? S[0] : d(S).join(":"), W = _ ? B + se : B, E = W + v;
251
+ if (b.indexOf(E) > -1)
252
+ continue;
253
+ b.push(E);
254
+ const V = c(v, L);
255
+ for (let R = 0; R < V.length; ++R) {
256
+ const a = V[R];
257
+ b.push(W + a);
258
+ }
259
+ m = k + (m.length > 0 ? " " + m : m);
260
+ }
261
+ return m;
262
+ }, oo = (...e) => {
263
+ let t = 0, r, o, c = "";
264
+ for (; t < e.length; )
265
+ (r = e[t++]) && (o = Ce(r)) && (c && (c += " "), c += o);
266
+ return c;
267
+ }, Ce = (e) => {
268
+ if (typeof e == "string")
269
+ return e;
270
+ let t, r = "";
271
+ for (let o = 0; o < e.length; o++)
272
+ e[o] && (t = Ce(e[o])) && (r && (r += " "), r += t);
273
+ return r;
274
+ }, ro = (e, ...t) => {
275
+ let r, o, c, d;
276
+ const i = (u) => {
277
+ const m = t.reduce((h, k) => k(h), e());
278
+ return r = He(m), o = r.cache.get, c = r.cache.set, d = b, b(u);
279
+ }, b = (u) => {
280
+ const m = o(u);
281
+ if (m)
282
+ return m;
283
+ const h = eo(u, r);
284
+ return c(u, h), h;
285
+ };
286
+ return d = i, (...u) => d(oo(...u));
287
+ }, to = [], f = (e) => {
288
+ const t = (r) => r[e] || to;
289
+ return t.isThemeGetter = !0, t;
290
+ }, Ae = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, Se = /^\((?:(\w[\w-]*):)?(.+)\)$/i, so = /^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/, no = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, ao = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/, io = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, lo = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, co = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, M = (e) => so.test(e), p = (e) => !!e && !Number.isNaN(Number(e)), I = (e) => !!e && Number.isInteger(Number(e)), te = (e) => e.endsWith("%") && p(e.slice(0, -1)), G = (e) => no.test(e), Ie = () => !0, mo = (e) => (
291
+ // `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
292
+ // For example, `hsl(0 0% 0%)` would be classified as a length without this check.
293
+ // I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
294
+ ao.test(e) && !io.test(e)
295
+ ), ae = () => !1, po = (e) => lo.test(e), bo = (e) => co.test(e), uo = (e) => !s(e) && !n(e), fo = (e) => e.startsWith("@container") && (e[10] === "/" && e[11] !== void 0 || e[11] === "s" && e[16] !== void 0 && e.startsWith("-size/", 10) || e[11] === "n" && e[18] !== void 0 && e.startsWith("-normal/", 10)), go = (e) => P(e, Me, ae), s = (e) => Ae.test(e), N = (e) => P(e, Pe, mo), ke = (e) => P(e, Co, p), ho = (e) => P(e, Le, Ie), ko = (e) => P(e, Te, ae), xe = (e) => P(e, Re, ae), xo = (e) => P(e, Ge, bo), J = (e) => P(e, Oe, po), n = (e) => Se.test(e), $ = (e) => j(e, Pe), wo = (e) => j(e, Te), we = (e) => j(e, Re), yo = (e) => j(e, Me), vo = (e) => j(e, Ge), Q = (e) => j(e, Oe, !0), zo = (e) => j(e, Le, !0), P = (e, t, r) => {
296
+ const o = Ae.exec(e);
297
+ return o ? o[1] ? t(o[1]) : r(o[2]) : !1;
298
+ }, j = (e, t, r = !1) => {
299
+ const o = Se.exec(e);
300
+ return o ? o[1] ? t(o[1]) : r : !1;
301
+ }, Re = (e) => e === "position" || e === "percentage", Ge = (e) => e === "image" || e === "url", Me = (e) => e === "length" || e === "size" || e === "bg-size", Pe = (e) => e === "length", Co = (e) => e === "number", Te = (e) => e === "family-name", Le = (e) => e === "number" || e === "weight", Oe = (e) => e === "shadow", Ao = () => {
302
+ const e = f("color"), t = f("font"), r = f("text"), o = f("font-weight"), c = f("tracking"), d = f("leading"), i = f("breakpoint"), b = f("container"), u = f("spacing"), m = f("radius"), h = f("shadow"), k = f("inset-shadow"), T = f("text-shadow"), S = f("drop-shadow"), _ = f("blur"), y = f("perspective"), C = f("aspect"), L = f("ease"), v = f("animate"), B = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], W = () => [
303
+ "center",
304
+ "top",
305
+ "bottom",
306
+ "left",
307
+ "right",
308
+ "top-left",
309
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
310
+ "left-top",
311
+ "top-right",
312
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
313
+ "right-top",
314
+ "bottom-right",
315
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
316
+ "right-bottom",
317
+ "bottom-left",
318
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
319
+ "left-bottom"
320
+ ], E = () => [...W(), n, s], V = () => ["auto", "hidden", "clip", "visible", "scroll"], R = () => ["auto", "contain", "none"], a = () => [n, s, u], z = () => [M, "full", "auto", ...a()], ie = () => [I, "none", "subgrid", n, s], le = () => ["auto", {
321
+ span: ["full", I, n, s]
322
+ }, I, n, s], U = () => [I, "auto", n, s], ce = () => ["auto", "min", "max", "fr", n, s], K = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], F = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], A = () => ["auto", ...a()], O = () => [M, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...a()], Z = () => [M, "screen", "full", "dvw", "lvw", "svw", "min", "max", "fit", ...a()], ee = () => [M, "screen", "full", "lh", "dvh", "lvh", "svh", "min", "max", "fit", ...a()], l = () => [e, n, s], de = () => [...W(), we, xe, {
323
+ position: [n, s]
324
+ }], me = () => ["no-repeat", {
325
+ repeat: ["", "x", "y", "space", "round"]
326
+ }], pe = () => ["auto", "cover", "contain", yo, go, {
327
+ size: [n, s]
328
+ }], oe = () => [te, $, N], x = () => [
329
+ // Deprecated since Tailwind CSS v4.0.0
330
+ "",
331
+ "none",
332
+ "full",
333
+ m,
334
+ n,
335
+ s
336
+ ], w = () => ["", p, $, N], D = () => ["solid", "dashed", "dotted", "double"], be = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], g = () => [p, te, we, xe], ue = () => [
337
+ // Deprecated since Tailwind CSS v4.0.0
338
+ "",
339
+ "none",
340
+ _,
341
+ n,
342
+ s
343
+ ], Y = () => ["none", p, n, s], q = () => ["none", p, n, s], re = () => [p, n, s], X = () => [M, "full", ...a()];
344
+ return {
345
+ cacheSize: 500,
346
+ theme: {
347
+ animate: ["spin", "ping", "pulse", "bounce"],
348
+ aspect: ["video"],
349
+ blur: [G],
350
+ breakpoint: [G],
351
+ color: [Ie],
352
+ container: [G],
353
+ "drop-shadow": [G],
354
+ ease: ["in", "out", "in-out"],
355
+ font: [uo],
356
+ "font-weight": ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black"],
357
+ "inset-shadow": [G],
358
+ leading: ["none", "tight", "snug", "normal", "relaxed", "loose"],
359
+ perspective: ["dramatic", "near", "normal", "midrange", "distant", "none"],
360
+ radius: [G],
361
+ shadow: [G],
362
+ spacing: ["px", p],
363
+ text: [G],
364
+ "text-shadow": [G],
365
+ tracking: ["tighter", "tight", "normal", "wide", "wider", "widest"]
366
+ },
367
+ classGroups: {
368
+ // --------------
369
+ // --- Layout ---
370
+ // --------------
371
+ /**
372
+ * Aspect Ratio
373
+ * @see https://tailwindcss.com/docs/aspect-ratio
374
+ */
375
+ aspect: [{
376
+ aspect: ["auto", "square", M, s, n, C]
377
+ }],
378
+ /**
379
+ * Container
380
+ * @see https://tailwindcss.com/docs/container
381
+ * @deprecated since Tailwind CSS v4.0.0
382
+ */
383
+ container: ["container"],
384
+ /**
385
+ * Container Type
386
+ * @see https://tailwindcss.com/docs/responsive-design#container-queries
387
+ */
388
+ "container-type": [{
389
+ "@container": ["", "normal", "size", n, s]
390
+ }],
391
+ /**
392
+ * Container Name
393
+ * @see https://tailwindcss.com/docs/responsive-design#named-containers
394
+ */
395
+ "container-named": [fo],
396
+ /**
397
+ * Columns
398
+ * @see https://tailwindcss.com/docs/columns
399
+ */
400
+ columns: [{
401
+ columns: [p, s, n, b]
402
+ }],
403
+ /**
404
+ * Break After
405
+ * @see https://tailwindcss.com/docs/break-after
406
+ */
407
+ "break-after": [{
408
+ "break-after": B()
409
+ }],
410
+ /**
411
+ * Break Before
412
+ * @see https://tailwindcss.com/docs/break-before
413
+ */
414
+ "break-before": [{
415
+ "break-before": B()
416
+ }],
417
+ /**
418
+ * Break Inside
419
+ * @see https://tailwindcss.com/docs/break-inside
420
+ */
421
+ "break-inside": [{
422
+ "break-inside": ["auto", "avoid", "avoid-page", "avoid-column"]
423
+ }],
424
+ /**
425
+ * Box Decoration Break
426
+ * @see https://tailwindcss.com/docs/box-decoration-break
427
+ */
428
+ "box-decoration": [{
429
+ "box-decoration": ["slice", "clone"]
430
+ }],
431
+ /**
432
+ * Box Sizing
433
+ * @see https://tailwindcss.com/docs/box-sizing
434
+ */
435
+ box: [{
436
+ box: ["border", "content"]
437
+ }],
438
+ /**
439
+ * Display
440
+ * @see https://tailwindcss.com/docs/display
441
+ */
442
+ display: ["block", "inline-block", "inline", "flex", "inline-flex", "table", "inline-table", "table-caption", "table-cell", "table-column", "table-column-group", "table-footer-group", "table-header-group", "table-row-group", "table-row", "flow-root", "grid", "inline-grid", "contents", "list-item", "hidden"],
443
+ /**
444
+ * Screen Reader Only
445
+ * @see https://tailwindcss.com/docs/display#screen-reader-only
446
+ */
447
+ sr: ["sr-only", "not-sr-only"],
448
+ /**
449
+ * Floats
450
+ * @see https://tailwindcss.com/docs/float
451
+ */
452
+ float: [{
453
+ float: ["right", "left", "none", "start", "end"]
454
+ }],
455
+ /**
456
+ * Clear
457
+ * @see https://tailwindcss.com/docs/clear
458
+ */
459
+ clear: [{
460
+ clear: ["left", "right", "both", "none", "start", "end"]
461
+ }],
462
+ /**
463
+ * Isolation
464
+ * @see https://tailwindcss.com/docs/isolation
465
+ */
466
+ isolation: ["isolate", "isolation-auto"],
467
+ /**
468
+ * Object Fit
469
+ * @see https://tailwindcss.com/docs/object-fit
470
+ */
471
+ "object-fit": [{
472
+ object: ["contain", "cover", "fill", "none", "scale-down"]
473
+ }],
474
+ /**
475
+ * Object Position
476
+ * @see https://tailwindcss.com/docs/object-position
477
+ */
478
+ "object-position": [{
479
+ object: E()
480
+ }],
481
+ /**
482
+ * Overflow
483
+ * @see https://tailwindcss.com/docs/overflow
484
+ */
485
+ overflow: [{
486
+ overflow: V()
487
+ }],
488
+ /**
489
+ * Overflow X
490
+ * @see https://tailwindcss.com/docs/overflow
491
+ */
492
+ "overflow-x": [{
493
+ "overflow-x": V()
494
+ }],
495
+ /**
496
+ * Overflow Y
497
+ * @see https://tailwindcss.com/docs/overflow
498
+ */
499
+ "overflow-y": [{
500
+ "overflow-y": V()
501
+ }],
502
+ /**
503
+ * Overscroll Behavior
504
+ * @see https://tailwindcss.com/docs/overscroll-behavior
505
+ */
506
+ overscroll: [{
507
+ overscroll: R()
508
+ }],
509
+ /**
510
+ * Overscroll Behavior X
511
+ * @see https://tailwindcss.com/docs/overscroll-behavior
512
+ */
513
+ "overscroll-x": [{
514
+ "overscroll-x": R()
515
+ }],
516
+ /**
517
+ * Overscroll Behavior Y
518
+ * @see https://tailwindcss.com/docs/overscroll-behavior
519
+ */
520
+ "overscroll-y": [{
521
+ "overscroll-y": R()
522
+ }],
523
+ /**
524
+ * Position
525
+ * @see https://tailwindcss.com/docs/position
526
+ */
527
+ position: ["static", "fixed", "absolute", "relative", "sticky"],
528
+ /**
529
+ * Inset
530
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
531
+ */
532
+ inset: [{
533
+ inset: z()
534
+ }],
535
+ /**
536
+ * Inset Inline
537
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
538
+ */
539
+ "inset-x": [{
540
+ "inset-x": z()
541
+ }],
542
+ /**
543
+ * Inset Block
544
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
545
+ */
546
+ "inset-y": [{
547
+ "inset-y": z()
548
+ }],
549
+ /**
550
+ * Inset Inline Start
551
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
552
+ * @todo class group will be renamed to `inset-s` in next major release
553
+ */
554
+ start: [{
555
+ "inset-s": z(),
556
+ /**
557
+ * @deprecated since Tailwind CSS v4.2.0 in favor of `inset-s-*` utilities.
558
+ * @see https://github.com/tailwindlabs/tailwindcss/pull/19613
559
+ */
560
+ start: z()
561
+ }],
562
+ /**
563
+ * Inset Inline End
564
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
565
+ * @todo class group will be renamed to `inset-e` in next major release
566
+ */
567
+ end: [{
568
+ "inset-e": z(),
569
+ /**
570
+ * @deprecated since Tailwind CSS v4.2.0 in favor of `inset-e-*` utilities.
571
+ * @see https://github.com/tailwindlabs/tailwindcss/pull/19613
572
+ */
573
+ end: z()
574
+ }],
575
+ /**
576
+ * Inset Block Start
577
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
578
+ */
579
+ "inset-bs": [{
580
+ "inset-bs": z()
581
+ }],
582
+ /**
583
+ * Inset Block End
584
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
585
+ */
586
+ "inset-be": [{
587
+ "inset-be": z()
588
+ }],
589
+ /**
590
+ * Top
591
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
592
+ */
593
+ top: [{
594
+ top: z()
595
+ }],
596
+ /**
597
+ * Right
598
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
599
+ */
600
+ right: [{
601
+ right: z()
602
+ }],
603
+ /**
604
+ * Bottom
605
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
606
+ */
607
+ bottom: [{
608
+ bottom: z()
609
+ }],
610
+ /**
611
+ * Left
612
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
613
+ */
614
+ left: [{
615
+ left: z()
616
+ }],
617
+ /**
618
+ * Visibility
619
+ * @see https://tailwindcss.com/docs/visibility
620
+ */
621
+ visibility: ["visible", "invisible", "collapse"],
622
+ /**
623
+ * Z-Index
624
+ * @see https://tailwindcss.com/docs/z-index
625
+ */
626
+ z: [{
627
+ z: [I, "auto", n, s]
628
+ }],
629
+ // ------------------------
630
+ // --- Flexbox and Grid ---
631
+ // ------------------------
632
+ /**
633
+ * Flex Basis
634
+ * @see https://tailwindcss.com/docs/flex-basis
635
+ */
636
+ basis: [{
637
+ basis: [M, "full", "auto", b, ...a()]
638
+ }],
639
+ /**
640
+ * Flex Direction
641
+ * @see https://tailwindcss.com/docs/flex-direction
642
+ */
643
+ "flex-direction": [{
644
+ flex: ["row", "row-reverse", "col", "col-reverse"]
645
+ }],
646
+ /**
647
+ * Flex Wrap
648
+ * @see https://tailwindcss.com/docs/flex-wrap
649
+ */
650
+ "flex-wrap": [{
651
+ flex: ["nowrap", "wrap", "wrap-reverse"]
652
+ }],
653
+ /**
654
+ * Flex
655
+ * @see https://tailwindcss.com/docs/flex
656
+ */
657
+ flex: [{
658
+ flex: [p, M, "auto", "initial", "none", s]
659
+ }],
660
+ /**
661
+ * Flex Grow
662
+ * @see https://tailwindcss.com/docs/flex-grow
663
+ */
664
+ grow: [{
665
+ grow: ["", p, n, s]
666
+ }],
667
+ /**
668
+ * Flex Shrink
669
+ * @see https://tailwindcss.com/docs/flex-shrink
670
+ */
671
+ shrink: [{
672
+ shrink: ["", p, n, s]
673
+ }],
674
+ /**
675
+ * Order
676
+ * @see https://tailwindcss.com/docs/order
677
+ */
678
+ order: [{
679
+ order: [I, "first", "last", "none", n, s]
680
+ }],
681
+ /**
682
+ * Grid Template Columns
683
+ * @see https://tailwindcss.com/docs/grid-template-columns
684
+ */
685
+ "grid-cols": [{
686
+ "grid-cols": ie()
687
+ }],
688
+ /**
689
+ * Grid Column Start / End
690
+ * @see https://tailwindcss.com/docs/grid-column
691
+ */
692
+ "col-start-end": [{
693
+ col: le()
694
+ }],
695
+ /**
696
+ * Grid Column Start
697
+ * @see https://tailwindcss.com/docs/grid-column
698
+ */
699
+ "col-start": [{
700
+ "col-start": U()
701
+ }],
702
+ /**
703
+ * Grid Column End
704
+ * @see https://tailwindcss.com/docs/grid-column
705
+ */
706
+ "col-end": [{
707
+ "col-end": U()
708
+ }],
709
+ /**
710
+ * Grid Template Rows
711
+ * @see https://tailwindcss.com/docs/grid-template-rows
712
+ */
713
+ "grid-rows": [{
714
+ "grid-rows": ie()
715
+ }],
716
+ /**
717
+ * Grid Row Start / End
718
+ * @see https://tailwindcss.com/docs/grid-row
719
+ */
720
+ "row-start-end": [{
721
+ row: le()
722
+ }],
723
+ /**
724
+ * Grid Row Start
725
+ * @see https://tailwindcss.com/docs/grid-row
726
+ */
727
+ "row-start": [{
728
+ "row-start": U()
729
+ }],
730
+ /**
731
+ * Grid Row End
732
+ * @see https://tailwindcss.com/docs/grid-row
733
+ */
734
+ "row-end": [{
735
+ "row-end": U()
736
+ }],
737
+ /**
738
+ * Grid Auto Flow
739
+ * @see https://tailwindcss.com/docs/grid-auto-flow
740
+ */
741
+ "grid-flow": [{
742
+ "grid-flow": ["row", "col", "dense", "row-dense", "col-dense"]
743
+ }],
744
+ /**
745
+ * Grid Auto Columns
746
+ * @see https://tailwindcss.com/docs/grid-auto-columns
747
+ */
748
+ "auto-cols": [{
749
+ "auto-cols": ce()
750
+ }],
751
+ /**
752
+ * Grid Auto Rows
753
+ * @see https://tailwindcss.com/docs/grid-auto-rows
754
+ */
755
+ "auto-rows": [{
756
+ "auto-rows": ce()
757
+ }],
758
+ /**
759
+ * Gap
760
+ * @see https://tailwindcss.com/docs/gap
761
+ */
762
+ gap: [{
763
+ gap: a()
764
+ }],
765
+ /**
766
+ * Gap X
767
+ * @see https://tailwindcss.com/docs/gap
768
+ */
769
+ "gap-x": [{
770
+ "gap-x": a()
771
+ }],
772
+ /**
773
+ * Gap Y
774
+ * @see https://tailwindcss.com/docs/gap
775
+ */
776
+ "gap-y": [{
777
+ "gap-y": a()
778
+ }],
779
+ /**
780
+ * Justify Content
781
+ * @see https://tailwindcss.com/docs/justify-content
782
+ */
783
+ "justify-content": [{
784
+ justify: [...K(), "normal"]
785
+ }],
786
+ /**
787
+ * Justify Items
788
+ * @see https://tailwindcss.com/docs/justify-items
789
+ */
790
+ "justify-items": [{
791
+ "justify-items": [...F(), "normal"]
792
+ }],
793
+ /**
794
+ * Justify Self
795
+ * @see https://tailwindcss.com/docs/justify-self
796
+ */
797
+ "justify-self": [{
798
+ "justify-self": ["auto", ...F()]
799
+ }],
800
+ /**
801
+ * Align Content
802
+ * @see https://tailwindcss.com/docs/align-content
803
+ */
804
+ "align-content": [{
805
+ content: ["normal", ...K()]
806
+ }],
807
+ /**
808
+ * Align Items
809
+ * @see https://tailwindcss.com/docs/align-items
810
+ */
811
+ "align-items": [{
812
+ items: [...F(), {
813
+ baseline: ["", "last"]
814
+ }]
815
+ }],
816
+ /**
817
+ * Align Self
818
+ * @see https://tailwindcss.com/docs/align-self
819
+ */
820
+ "align-self": [{
821
+ self: ["auto", ...F(), {
822
+ baseline: ["", "last"]
823
+ }]
824
+ }],
825
+ /**
826
+ * Place Content
827
+ * @see https://tailwindcss.com/docs/place-content
828
+ */
829
+ "place-content": [{
830
+ "place-content": K()
831
+ }],
832
+ /**
833
+ * Place Items
834
+ * @see https://tailwindcss.com/docs/place-items
835
+ */
836
+ "place-items": [{
837
+ "place-items": [...F(), "baseline"]
838
+ }],
839
+ /**
840
+ * Place Self
841
+ * @see https://tailwindcss.com/docs/place-self
842
+ */
843
+ "place-self": [{
844
+ "place-self": ["auto", ...F()]
845
+ }],
846
+ // Spacing
847
+ /**
848
+ * Padding
849
+ * @see https://tailwindcss.com/docs/padding
850
+ */
851
+ p: [{
852
+ p: a()
853
+ }],
854
+ /**
855
+ * Padding Inline
856
+ * @see https://tailwindcss.com/docs/padding
857
+ */
858
+ px: [{
859
+ px: a()
860
+ }],
861
+ /**
862
+ * Padding Block
863
+ * @see https://tailwindcss.com/docs/padding
864
+ */
865
+ py: [{
866
+ py: a()
867
+ }],
868
+ /**
869
+ * Padding Inline Start
870
+ * @see https://tailwindcss.com/docs/padding
871
+ */
872
+ ps: [{
873
+ ps: a()
874
+ }],
875
+ /**
876
+ * Padding Inline End
877
+ * @see https://tailwindcss.com/docs/padding
878
+ */
879
+ pe: [{
880
+ pe: a()
881
+ }],
882
+ /**
883
+ * Padding Block Start
884
+ * @see https://tailwindcss.com/docs/padding
885
+ */
886
+ pbs: [{
887
+ pbs: a()
888
+ }],
889
+ /**
890
+ * Padding Block End
891
+ * @see https://tailwindcss.com/docs/padding
892
+ */
893
+ pbe: [{
894
+ pbe: a()
895
+ }],
896
+ /**
897
+ * Padding Top
898
+ * @see https://tailwindcss.com/docs/padding
899
+ */
900
+ pt: [{
901
+ pt: a()
902
+ }],
903
+ /**
904
+ * Padding Right
905
+ * @see https://tailwindcss.com/docs/padding
906
+ */
907
+ pr: [{
908
+ pr: a()
909
+ }],
910
+ /**
911
+ * Padding Bottom
912
+ * @see https://tailwindcss.com/docs/padding
913
+ */
914
+ pb: [{
915
+ pb: a()
916
+ }],
917
+ /**
918
+ * Padding Left
919
+ * @see https://tailwindcss.com/docs/padding
920
+ */
921
+ pl: [{
922
+ pl: a()
923
+ }],
924
+ /**
925
+ * Margin
926
+ * @see https://tailwindcss.com/docs/margin
927
+ */
928
+ m: [{
929
+ m: A()
930
+ }],
931
+ /**
932
+ * Margin Inline
933
+ * @see https://tailwindcss.com/docs/margin
934
+ */
935
+ mx: [{
936
+ mx: A()
937
+ }],
938
+ /**
939
+ * Margin Block
940
+ * @see https://tailwindcss.com/docs/margin
941
+ */
942
+ my: [{
943
+ my: A()
944
+ }],
945
+ /**
946
+ * Margin Inline Start
947
+ * @see https://tailwindcss.com/docs/margin
948
+ */
949
+ ms: [{
950
+ ms: A()
951
+ }],
952
+ /**
953
+ * Margin Inline End
954
+ * @see https://tailwindcss.com/docs/margin
955
+ */
956
+ me: [{
957
+ me: A()
958
+ }],
959
+ /**
960
+ * Margin Block Start
961
+ * @see https://tailwindcss.com/docs/margin
962
+ */
963
+ mbs: [{
964
+ mbs: A()
965
+ }],
966
+ /**
967
+ * Margin Block End
968
+ * @see https://tailwindcss.com/docs/margin
969
+ */
970
+ mbe: [{
971
+ mbe: A()
972
+ }],
973
+ /**
974
+ * Margin Top
975
+ * @see https://tailwindcss.com/docs/margin
976
+ */
977
+ mt: [{
978
+ mt: A()
979
+ }],
980
+ /**
981
+ * Margin Right
982
+ * @see https://tailwindcss.com/docs/margin
983
+ */
984
+ mr: [{
985
+ mr: A()
986
+ }],
987
+ /**
988
+ * Margin Bottom
989
+ * @see https://tailwindcss.com/docs/margin
990
+ */
991
+ mb: [{
992
+ mb: A()
993
+ }],
994
+ /**
995
+ * Margin Left
996
+ * @see https://tailwindcss.com/docs/margin
997
+ */
998
+ ml: [{
999
+ ml: A()
1000
+ }],
1001
+ /**
1002
+ * Space Between X
1003
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
1004
+ */
1005
+ "space-x": [{
1006
+ "space-x": a()
1007
+ }],
1008
+ /**
1009
+ * Space Between X Reverse
1010
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
1011
+ */
1012
+ "space-x-reverse": ["space-x-reverse"],
1013
+ /**
1014
+ * Space Between Y
1015
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
1016
+ */
1017
+ "space-y": [{
1018
+ "space-y": a()
1019
+ }],
1020
+ /**
1021
+ * Space Between Y Reverse
1022
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
1023
+ */
1024
+ "space-y-reverse": ["space-y-reverse"],
1025
+ // --------------
1026
+ // --- Sizing ---
1027
+ // --------------
1028
+ /**
1029
+ * Size
1030
+ * @see https://tailwindcss.com/docs/width#setting-both-width-and-height
1031
+ */
1032
+ size: [{
1033
+ size: O()
1034
+ }],
1035
+ /**
1036
+ * Inline Size
1037
+ * @see https://tailwindcss.com/docs/width
1038
+ */
1039
+ "inline-size": [{
1040
+ inline: ["auto", ...Z()]
1041
+ }],
1042
+ /**
1043
+ * Min-Inline Size
1044
+ * @see https://tailwindcss.com/docs/min-width
1045
+ */
1046
+ "min-inline-size": [{
1047
+ "min-inline": ["auto", ...Z()]
1048
+ }],
1049
+ /**
1050
+ * Max-Inline Size
1051
+ * @see https://tailwindcss.com/docs/max-width
1052
+ */
1053
+ "max-inline-size": [{
1054
+ "max-inline": ["none", ...Z()]
1055
+ }],
1056
+ /**
1057
+ * Block Size
1058
+ * @see https://tailwindcss.com/docs/height
1059
+ */
1060
+ "block-size": [{
1061
+ block: ["auto", ...ee()]
1062
+ }],
1063
+ /**
1064
+ * Min-Block Size
1065
+ * @see https://tailwindcss.com/docs/min-height
1066
+ */
1067
+ "min-block-size": [{
1068
+ "min-block": ["auto", ...ee()]
1069
+ }],
1070
+ /**
1071
+ * Max-Block Size
1072
+ * @see https://tailwindcss.com/docs/max-height
1073
+ */
1074
+ "max-block-size": [{
1075
+ "max-block": ["none", ...ee()]
1076
+ }],
1077
+ /**
1078
+ * Width
1079
+ * @see https://tailwindcss.com/docs/width
1080
+ */
1081
+ w: [{
1082
+ w: [b, "screen", ...O()]
1083
+ }],
1084
+ /**
1085
+ * Min-Width
1086
+ * @see https://tailwindcss.com/docs/min-width
1087
+ */
1088
+ "min-w": [{
1089
+ "min-w": [
1090
+ b,
1091
+ "screen",
1092
+ /** Deprecated. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
1093
+ "none",
1094
+ ...O()
1095
+ ]
1096
+ }],
1097
+ /**
1098
+ * Max-Width
1099
+ * @see https://tailwindcss.com/docs/max-width
1100
+ */
1101
+ "max-w": [{
1102
+ "max-w": [
1103
+ b,
1104
+ "screen",
1105
+ "none",
1106
+ /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
1107
+ "prose",
1108
+ /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
1109
+ {
1110
+ screen: [i]
1111
+ },
1112
+ ...O()
1113
+ ]
1114
+ }],
1115
+ /**
1116
+ * Height
1117
+ * @see https://tailwindcss.com/docs/height
1118
+ */
1119
+ h: [{
1120
+ h: ["screen", "lh", ...O()]
1121
+ }],
1122
+ /**
1123
+ * Min-Height
1124
+ * @see https://tailwindcss.com/docs/min-height
1125
+ */
1126
+ "min-h": [{
1127
+ "min-h": ["screen", "lh", "none", ...O()]
1128
+ }],
1129
+ /**
1130
+ * Max-Height
1131
+ * @see https://tailwindcss.com/docs/max-height
1132
+ */
1133
+ "max-h": [{
1134
+ "max-h": ["screen", "lh", ...O()]
1135
+ }],
1136
+ // ------------------
1137
+ // --- Typography ---
1138
+ // ------------------
1139
+ /**
1140
+ * Font Size
1141
+ * @see https://tailwindcss.com/docs/font-size
1142
+ */
1143
+ "font-size": [{
1144
+ text: ["base", r, $, N]
1145
+ }],
1146
+ /**
1147
+ * Font Smoothing
1148
+ * @see https://tailwindcss.com/docs/font-smoothing
1149
+ */
1150
+ "font-smoothing": ["antialiased", "subpixel-antialiased"],
1151
+ /**
1152
+ * Font Style
1153
+ * @see https://tailwindcss.com/docs/font-style
1154
+ */
1155
+ "font-style": ["italic", "not-italic"],
1156
+ /**
1157
+ * Font Weight
1158
+ * @see https://tailwindcss.com/docs/font-weight
1159
+ */
1160
+ "font-weight": [{
1161
+ font: [o, zo, ho]
1162
+ }],
1163
+ /**
1164
+ * Font Stretch
1165
+ * @see https://tailwindcss.com/docs/font-stretch
1166
+ */
1167
+ "font-stretch": [{
1168
+ "font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded", te, s]
1169
+ }],
1170
+ /**
1171
+ * Font Family
1172
+ * @see https://tailwindcss.com/docs/font-family
1173
+ */
1174
+ "font-family": [{
1175
+ font: [wo, ko, t]
1176
+ }],
1177
+ /**
1178
+ * Font Feature Settings
1179
+ * @see https://tailwindcss.com/docs/font-feature-settings
1180
+ */
1181
+ "font-features": [{
1182
+ "font-features": [s]
1183
+ }],
1184
+ /**
1185
+ * Font Variant Numeric
1186
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1187
+ */
1188
+ "fvn-normal": ["normal-nums"],
1189
+ /**
1190
+ * Font Variant Numeric
1191
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1192
+ */
1193
+ "fvn-ordinal": ["ordinal"],
1194
+ /**
1195
+ * Font Variant Numeric
1196
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1197
+ */
1198
+ "fvn-slashed-zero": ["slashed-zero"],
1199
+ /**
1200
+ * Font Variant Numeric
1201
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1202
+ */
1203
+ "fvn-figure": ["lining-nums", "oldstyle-nums"],
1204
+ /**
1205
+ * Font Variant Numeric
1206
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1207
+ */
1208
+ "fvn-spacing": ["proportional-nums", "tabular-nums"],
1209
+ /**
1210
+ * Font Variant Numeric
1211
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1212
+ */
1213
+ "fvn-fraction": ["diagonal-fractions", "stacked-fractions"],
1214
+ /**
1215
+ * Letter Spacing
1216
+ * @see https://tailwindcss.com/docs/letter-spacing
1217
+ */
1218
+ tracking: [{
1219
+ tracking: [c, n, s]
1220
+ }],
1221
+ /**
1222
+ * Line Clamp
1223
+ * @see https://tailwindcss.com/docs/line-clamp
1224
+ */
1225
+ "line-clamp": [{
1226
+ "line-clamp": [p, "none", n, ke]
1227
+ }],
1228
+ /**
1229
+ * Line Height
1230
+ * @see https://tailwindcss.com/docs/line-height
1231
+ */
1232
+ leading: [{
1233
+ leading: [
1234
+ /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
1235
+ d,
1236
+ ...a()
1237
+ ]
1238
+ }],
1239
+ /**
1240
+ * List Style Image
1241
+ * @see https://tailwindcss.com/docs/list-style-image
1242
+ */
1243
+ "list-image": [{
1244
+ "list-image": ["none", n, s]
1245
+ }],
1246
+ /**
1247
+ * List Style Position
1248
+ * @see https://tailwindcss.com/docs/list-style-position
1249
+ */
1250
+ "list-style-position": [{
1251
+ list: ["inside", "outside"]
1252
+ }],
1253
+ /**
1254
+ * List Style Type
1255
+ * @see https://tailwindcss.com/docs/list-style-type
1256
+ */
1257
+ "list-style-type": [{
1258
+ list: ["disc", "decimal", "none", n, s]
1259
+ }],
1260
+ /**
1261
+ * Text Alignment
1262
+ * @see https://tailwindcss.com/docs/text-align
1263
+ */
1264
+ "text-alignment": [{
1265
+ text: ["left", "center", "right", "justify", "start", "end"]
1266
+ }],
1267
+ /**
1268
+ * Placeholder Color
1269
+ * @deprecated since Tailwind CSS v3.0.0
1270
+ * @see https://v3.tailwindcss.com/docs/placeholder-color
1271
+ */
1272
+ "placeholder-color": [{
1273
+ placeholder: l()
1274
+ }],
1275
+ /**
1276
+ * Text Color
1277
+ * @see https://tailwindcss.com/docs/text-color
1278
+ */
1279
+ "text-color": [{
1280
+ text: l()
1281
+ }],
1282
+ /**
1283
+ * Text Decoration
1284
+ * @see https://tailwindcss.com/docs/text-decoration
1285
+ */
1286
+ "text-decoration": ["underline", "overline", "line-through", "no-underline"],
1287
+ /**
1288
+ * Text Decoration Style
1289
+ * @see https://tailwindcss.com/docs/text-decoration-style
1290
+ */
1291
+ "text-decoration-style": [{
1292
+ decoration: [...D(), "wavy"]
1293
+ }],
1294
+ /**
1295
+ * Text Decoration Thickness
1296
+ * @see https://tailwindcss.com/docs/text-decoration-thickness
1297
+ */
1298
+ "text-decoration-thickness": [{
1299
+ decoration: [p, "from-font", "auto", n, N]
1300
+ }],
1301
+ /**
1302
+ * Text Decoration Color
1303
+ * @see https://tailwindcss.com/docs/text-decoration-color
1304
+ */
1305
+ "text-decoration-color": [{
1306
+ decoration: l()
1307
+ }],
1308
+ /**
1309
+ * Text Underline Offset
1310
+ * @see https://tailwindcss.com/docs/text-underline-offset
1311
+ */
1312
+ "underline-offset": [{
1313
+ "underline-offset": [p, "auto", n, s]
1314
+ }],
1315
+ /**
1316
+ * Text Transform
1317
+ * @see https://tailwindcss.com/docs/text-transform
1318
+ */
1319
+ "text-transform": ["uppercase", "lowercase", "capitalize", "normal-case"],
1320
+ /**
1321
+ * Text Overflow
1322
+ * @see https://tailwindcss.com/docs/text-overflow
1323
+ */
1324
+ "text-overflow": ["truncate", "text-ellipsis", "text-clip"],
1325
+ /**
1326
+ * Text Wrap
1327
+ * @see https://tailwindcss.com/docs/text-wrap
1328
+ */
1329
+ "text-wrap": [{
1330
+ text: ["wrap", "nowrap", "balance", "pretty"]
1331
+ }],
1332
+ /**
1333
+ * Text Indent
1334
+ * @see https://tailwindcss.com/docs/text-indent
1335
+ */
1336
+ indent: [{
1337
+ indent: a()
1338
+ }],
1339
+ /**
1340
+ * Tab Size
1341
+ * @see https://tailwindcss.com/docs/tab-size
1342
+ */
1343
+ "tab-size": [{
1344
+ tab: [I, n, s]
1345
+ }],
1346
+ /**
1347
+ * Vertical Alignment
1348
+ * @see https://tailwindcss.com/docs/vertical-align
1349
+ */
1350
+ "vertical-align": [{
1351
+ align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", n, s]
1352
+ }],
1353
+ /**
1354
+ * Whitespace
1355
+ * @see https://tailwindcss.com/docs/whitespace
1356
+ */
1357
+ whitespace: [{
1358
+ whitespace: ["normal", "nowrap", "pre", "pre-line", "pre-wrap", "break-spaces"]
1359
+ }],
1360
+ /**
1361
+ * Word Break
1362
+ * @see https://tailwindcss.com/docs/word-break
1363
+ */
1364
+ break: [{
1365
+ break: ["normal", "words", "all", "keep"]
1366
+ }],
1367
+ /**
1368
+ * Overflow Wrap
1369
+ * @see https://tailwindcss.com/docs/overflow-wrap
1370
+ */
1371
+ wrap: [{
1372
+ wrap: ["break-word", "anywhere", "normal"]
1373
+ }],
1374
+ /**
1375
+ * Hyphens
1376
+ * @see https://tailwindcss.com/docs/hyphens
1377
+ */
1378
+ hyphens: [{
1379
+ hyphens: ["none", "manual", "auto"]
1380
+ }],
1381
+ /**
1382
+ * Content
1383
+ * @see https://tailwindcss.com/docs/content
1384
+ */
1385
+ content: [{
1386
+ content: ["none", n, s]
1387
+ }],
1388
+ // -------------------
1389
+ // --- Backgrounds ---
1390
+ // -------------------
1391
+ /**
1392
+ * Background Attachment
1393
+ * @see https://tailwindcss.com/docs/background-attachment
1394
+ */
1395
+ "bg-attachment": [{
1396
+ bg: ["fixed", "local", "scroll"]
1397
+ }],
1398
+ /**
1399
+ * Background Clip
1400
+ * @see https://tailwindcss.com/docs/background-clip
1401
+ */
1402
+ "bg-clip": [{
1403
+ "bg-clip": ["border", "padding", "content", "text"]
1404
+ }],
1405
+ /**
1406
+ * Background Origin
1407
+ * @see https://tailwindcss.com/docs/background-origin
1408
+ */
1409
+ "bg-origin": [{
1410
+ "bg-origin": ["border", "padding", "content"]
1411
+ }],
1412
+ /**
1413
+ * Background Position
1414
+ * @see https://tailwindcss.com/docs/background-position
1415
+ */
1416
+ "bg-position": [{
1417
+ bg: de()
1418
+ }],
1419
+ /**
1420
+ * Background Repeat
1421
+ * @see https://tailwindcss.com/docs/background-repeat
1422
+ */
1423
+ "bg-repeat": [{
1424
+ bg: me()
1425
+ }],
1426
+ /**
1427
+ * Background Size
1428
+ * @see https://tailwindcss.com/docs/background-size
1429
+ */
1430
+ "bg-size": [{
1431
+ bg: pe()
1432
+ }],
1433
+ /**
1434
+ * Background Image
1435
+ * @see https://tailwindcss.com/docs/background-image
1436
+ */
1437
+ "bg-image": [{
1438
+ bg: ["none", {
1439
+ linear: [{
1440
+ to: ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
1441
+ }, I, n, s],
1442
+ radial: ["", n, s],
1443
+ conic: [I, n, s]
1444
+ }, vo, xo]
1445
+ }],
1446
+ /**
1447
+ * Background Color
1448
+ * @see https://tailwindcss.com/docs/background-color
1449
+ */
1450
+ "bg-color": [{
1451
+ bg: l()
1452
+ }],
1453
+ /**
1454
+ * Gradient Color Stops From Position
1455
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1456
+ */
1457
+ "gradient-from-pos": [{
1458
+ from: oe()
1459
+ }],
1460
+ /**
1461
+ * Gradient Color Stops Via Position
1462
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1463
+ */
1464
+ "gradient-via-pos": [{
1465
+ via: oe()
1466
+ }],
1467
+ /**
1468
+ * Gradient Color Stops To Position
1469
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1470
+ */
1471
+ "gradient-to-pos": [{
1472
+ to: oe()
1473
+ }],
1474
+ /**
1475
+ * Gradient Color Stops From
1476
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1477
+ */
1478
+ "gradient-from": [{
1479
+ from: l()
1480
+ }],
1481
+ /**
1482
+ * Gradient Color Stops Via
1483
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1484
+ */
1485
+ "gradient-via": [{
1486
+ via: l()
1487
+ }],
1488
+ /**
1489
+ * Gradient Color Stops To
1490
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1491
+ */
1492
+ "gradient-to": [{
1493
+ to: l()
1494
+ }],
1495
+ // ---------------
1496
+ // --- Borders ---
1497
+ // ---------------
1498
+ /**
1499
+ * Border Radius
1500
+ * @see https://tailwindcss.com/docs/border-radius
1501
+ */
1502
+ rounded: [{
1503
+ rounded: x()
1504
+ }],
1505
+ /**
1506
+ * Border Radius Start
1507
+ * @see https://tailwindcss.com/docs/border-radius
1508
+ */
1509
+ "rounded-s": [{
1510
+ "rounded-s": x()
1511
+ }],
1512
+ /**
1513
+ * Border Radius End
1514
+ * @see https://tailwindcss.com/docs/border-radius
1515
+ */
1516
+ "rounded-e": [{
1517
+ "rounded-e": x()
1518
+ }],
1519
+ /**
1520
+ * Border Radius Top
1521
+ * @see https://tailwindcss.com/docs/border-radius
1522
+ */
1523
+ "rounded-t": [{
1524
+ "rounded-t": x()
1525
+ }],
1526
+ /**
1527
+ * Border Radius Right
1528
+ * @see https://tailwindcss.com/docs/border-radius
1529
+ */
1530
+ "rounded-r": [{
1531
+ "rounded-r": x()
1532
+ }],
1533
+ /**
1534
+ * Border Radius Bottom
1535
+ * @see https://tailwindcss.com/docs/border-radius
1536
+ */
1537
+ "rounded-b": [{
1538
+ "rounded-b": x()
1539
+ }],
1540
+ /**
1541
+ * Border Radius Left
1542
+ * @see https://tailwindcss.com/docs/border-radius
1543
+ */
1544
+ "rounded-l": [{
1545
+ "rounded-l": x()
1546
+ }],
1547
+ /**
1548
+ * Border Radius Start Start
1549
+ * @see https://tailwindcss.com/docs/border-radius
1550
+ */
1551
+ "rounded-ss": [{
1552
+ "rounded-ss": x()
1553
+ }],
1554
+ /**
1555
+ * Border Radius Start End
1556
+ * @see https://tailwindcss.com/docs/border-radius
1557
+ */
1558
+ "rounded-se": [{
1559
+ "rounded-se": x()
1560
+ }],
1561
+ /**
1562
+ * Border Radius End End
1563
+ * @see https://tailwindcss.com/docs/border-radius
1564
+ */
1565
+ "rounded-ee": [{
1566
+ "rounded-ee": x()
1567
+ }],
1568
+ /**
1569
+ * Border Radius End Start
1570
+ * @see https://tailwindcss.com/docs/border-radius
1571
+ */
1572
+ "rounded-es": [{
1573
+ "rounded-es": x()
1574
+ }],
1575
+ /**
1576
+ * Border Radius Top Left
1577
+ * @see https://tailwindcss.com/docs/border-radius
1578
+ */
1579
+ "rounded-tl": [{
1580
+ "rounded-tl": x()
1581
+ }],
1582
+ /**
1583
+ * Border Radius Top Right
1584
+ * @see https://tailwindcss.com/docs/border-radius
1585
+ */
1586
+ "rounded-tr": [{
1587
+ "rounded-tr": x()
1588
+ }],
1589
+ /**
1590
+ * Border Radius Bottom Right
1591
+ * @see https://tailwindcss.com/docs/border-radius
1592
+ */
1593
+ "rounded-br": [{
1594
+ "rounded-br": x()
1595
+ }],
1596
+ /**
1597
+ * Border Radius Bottom Left
1598
+ * @see https://tailwindcss.com/docs/border-radius
1599
+ */
1600
+ "rounded-bl": [{
1601
+ "rounded-bl": x()
1602
+ }],
1603
+ /**
1604
+ * Border Width
1605
+ * @see https://tailwindcss.com/docs/border-width
1606
+ */
1607
+ "border-w": [{
1608
+ border: w()
1609
+ }],
1610
+ /**
1611
+ * Border Width Inline
1612
+ * @see https://tailwindcss.com/docs/border-width
1613
+ */
1614
+ "border-w-x": [{
1615
+ "border-x": w()
1616
+ }],
1617
+ /**
1618
+ * Border Width Block
1619
+ * @see https://tailwindcss.com/docs/border-width
1620
+ */
1621
+ "border-w-y": [{
1622
+ "border-y": w()
1623
+ }],
1624
+ /**
1625
+ * Border Width Inline Start
1626
+ * @see https://tailwindcss.com/docs/border-width
1627
+ */
1628
+ "border-w-s": [{
1629
+ "border-s": w()
1630
+ }],
1631
+ /**
1632
+ * Border Width Inline End
1633
+ * @see https://tailwindcss.com/docs/border-width
1634
+ */
1635
+ "border-w-e": [{
1636
+ "border-e": w()
1637
+ }],
1638
+ /**
1639
+ * Border Width Block Start
1640
+ * @see https://tailwindcss.com/docs/border-width
1641
+ */
1642
+ "border-w-bs": [{
1643
+ "border-bs": w()
1644
+ }],
1645
+ /**
1646
+ * Border Width Block End
1647
+ * @see https://tailwindcss.com/docs/border-width
1648
+ */
1649
+ "border-w-be": [{
1650
+ "border-be": w()
1651
+ }],
1652
+ /**
1653
+ * Border Width Top
1654
+ * @see https://tailwindcss.com/docs/border-width
1655
+ */
1656
+ "border-w-t": [{
1657
+ "border-t": w()
1658
+ }],
1659
+ /**
1660
+ * Border Width Right
1661
+ * @see https://tailwindcss.com/docs/border-width
1662
+ */
1663
+ "border-w-r": [{
1664
+ "border-r": w()
1665
+ }],
1666
+ /**
1667
+ * Border Width Bottom
1668
+ * @see https://tailwindcss.com/docs/border-width
1669
+ */
1670
+ "border-w-b": [{
1671
+ "border-b": w()
1672
+ }],
1673
+ /**
1674
+ * Border Width Left
1675
+ * @see https://tailwindcss.com/docs/border-width
1676
+ */
1677
+ "border-w-l": [{
1678
+ "border-l": w()
1679
+ }],
1680
+ /**
1681
+ * Divide Width X
1682
+ * @see https://tailwindcss.com/docs/border-width#between-children
1683
+ */
1684
+ "divide-x": [{
1685
+ "divide-x": w()
1686
+ }],
1687
+ /**
1688
+ * Divide Width X Reverse
1689
+ * @see https://tailwindcss.com/docs/border-width#between-children
1690
+ */
1691
+ "divide-x-reverse": ["divide-x-reverse"],
1692
+ /**
1693
+ * Divide Width Y
1694
+ * @see https://tailwindcss.com/docs/border-width#between-children
1695
+ */
1696
+ "divide-y": [{
1697
+ "divide-y": w()
1698
+ }],
1699
+ /**
1700
+ * Divide Width Y Reverse
1701
+ * @see https://tailwindcss.com/docs/border-width#between-children
1702
+ */
1703
+ "divide-y-reverse": ["divide-y-reverse"],
1704
+ /**
1705
+ * Border Style
1706
+ * @see https://tailwindcss.com/docs/border-style
1707
+ */
1708
+ "border-style": [{
1709
+ border: [...D(), "hidden", "none"]
1710
+ }],
1711
+ /**
1712
+ * Divide Style
1713
+ * @see https://tailwindcss.com/docs/border-style#setting-the-divider-style
1714
+ */
1715
+ "divide-style": [{
1716
+ divide: [...D(), "hidden", "none"]
1717
+ }],
1718
+ /**
1719
+ * Border Color
1720
+ * @see https://tailwindcss.com/docs/border-color
1721
+ */
1722
+ "border-color": [{
1723
+ border: l()
1724
+ }],
1725
+ /**
1726
+ * Border Color Inline
1727
+ * @see https://tailwindcss.com/docs/border-color
1728
+ */
1729
+ "border-color-x": [{
1730
+ "border-x": l()
1731
+ }],
1732
+ /**
1733
+ * Border Color Block
1734
+ * @see https://tailwindcss.com/docs/border-color
1735
+ */
1736
+ "border-color-y": [{
1737
+ "border-y": l()
1738
+ }],
1739
+ /**
1740
+ * Border Color Inline Start
1741
+ * @see https://tailwindcss.com/docs/border-color
1742
+ */
1743
+ "border-color-s": [{
1744
+ "border-s": l()
1745
+ }],
1746
+ /**
1747
+ * Border Color Inline End
1748
+ * @see https://tailwindcss.com/docs/border-color
1749
+ */
1750
+ "border-color-e": [{
1751
+ "border-e": l()
1752
+ }],
1753
+ /**
1754
+ * Border Color Block Start
1755
+ * @see https://tailwindcss.com/docs/border-color
1756
+ */
1757
+ "border-color-bs": [{
1758
+ "border-bs": l()
1759
+ }],
1760
+ /**
1761
+ * Border Color Block End
1762
+ * @see https://tailwindcss.com/docs/border-color
1763
+ */
1764
+ "border-color-be": [{
1765
+ "border-be": l()
1766
+ }],
1767
+ /**
1768
+ * Border Color Top
1769
+ * @see https://tailwindcss.com/docs/border-color
1770
+ */
1771
+ "border-color-t": [{
1772
+ "border-t": l()
1773
+ }],
1774
+ /**
1775
+ * Border Color Right
1776
+ * @see https://tailwindcss.com/docs/border-color
1777
+ */
1778
+ "border-color-r": [{
1779
+ "border-r": l()
1780
+ }],
1781
+ /**
1782
+ * Border Color Bottom
1783
+ * @see https://tailwindcss.com/docs/border-color
1784
+ */
1785
+ "border-color-b": [{
1786
+ "border-b": l()
1787
+ }],
1788
+ /**
1789
+ * Border Color Left
1790
+ * @see https://tailwindcss.com/docs/border-color
1791
+ */
1792
+ "border-color-l": [{
1793
+ "border-l": l()
1794
+ }],
1795
+ /**
1796
+ * Divide Color
1797
+ * @see https://tailwindcss.com/docs/divide-color
1798
+ */
1799
+ "divide-color": [{
1800
+ divide: l()
1801
+ }],
1802
+ /**
1803
+ * Outline Style
1804
+ * @see https://tailwindcss.com/docs/outline-style
1805
+ */
1806
+ "outline-style": [{
1807
+ outline: [...D(), "none", "hidden"]
1808
+ }],
1809
+ /**
1810
+ * Outline Offset
1811
+ * @see https://tailwindcss.com/docs/outline-offset
1812
+ */
1813
+ "outline-offset": [{
1814
+ "outline-offset": [p, n, s]
1815
+ }],
1816
+ /**
1817
+ * Outline Width
1818
+ * @see https://tailwindcss.com/docs/outline-width
1819
+ */
1820
+ "outline-w": [{
1821
+ outline: ["", p, $, N]
1822
+ }],
1823
+ /**
1824
+ * Outline Color
1825
+ * @see https://tailwindcss.com/docs/outline-color
1826
+ */
1827
+ "outline-color": [{
1828
+ outline: l()
1829
+ }],
1830
+ // ---------------
1831
+ // --- Effects ---
1832
+ // ---------------
1833
+ /**
1834
+ * Box Shadow
1835
+ * @see https://tailwindcss.com/docs/box-shadow
1836
+ */
1837
+ shadow: [{
1838
+ shadow: [
1839
+ // Deprecated since Tailwind CSS v4.0.0
1840
+ "",
1841
+ "none",
1842
+ h,
1843
+ Q,
1844
+ J
1845
+ ]
1846
+ }],
1847
+ /**
1848
+ * Box Shadow Color
1849
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-shadow-color
1850
+ */
1851
+ "shadow-color": [{
1852
+ shadow: l()
1853
+ }],
1854
+ /**
1855
+ * Inset Box Shadow
1856
+ * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-shadow
1857
+ */
1858
+ "inset-shadow": [{
1859
+ "inset-shadow": ["none", k, Q, J]
1860
+ }],
1861
+ /**
1862
+ * Inset Box Shadow Color
1863
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-shadow-color
1864
+ */
1865
+ "inset-shadow-color": [{
1866
+ "inset-shadow": l()
1867
+ }],
1868
+ /**
1869
+ * Ring Width
1870
+ * @see https://tailwindcss.com/docs/box-shadow#adding-a-ring
1871
+ */
1872
+ "ring-w": [{
1873
+ ring: w()
1874
+ }],
1875
+ /**
1876
+ * Ring Width Inset
1877
+ * @see https://v3.tailwindcss.com/docs/ring-width#inset-rings
1878
+ * @deprecated since Tailwind CSS v4.0.0
1879
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1880
+ */
1881
+ "ring-w-inset": ["ring-inset"],
1882
+ /**
1883
+ * Ring Color
1884
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-ring-color
1885
+ */
1886
+ "ring-color": [{
1887
+ ring: l()
1888
+ }],
1889
+ /**
1890
+ * Ring Offset Width
1891
+ * @see https://v3.tailwindcss.com/docs/ring-offset-width
1892
+ * @deprecated since Tailwind CSS v4.0.0
1893
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1894
+ */
1895
+ "ring-offset-w": [{
1896
+ "ring-offset": [p, N]
1897
+ }],
1898
+ /**
1899
+ * Ring Offset Color
1900
+ * @see https://v3.tailwindcss.com/docs/ring-offset-color
1901
+ * @deprecated since Tailwind CSS v4.0.0
1902
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1903
+ */
1904
+ "ring-offset-color": [{
1905
+ "ring-offset": l()
1906
+ }],
1907
+ /**
1908
+ * Inset Ring Width
1909
+ * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring
1910
+ */
1911
+ "inset-ring-w": [{
1912
+ "inset-ring": w()
1913
+ }],
1914
+ /**
1915
+ * Inset Ring Color
1916
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-ring-color
1917
+ */
1918
+ "inset-ring-color": [{
1919
+ "inset-ring": l()
1920
+ }],
1921
+ /**
1922
+ * Text Shadow
1923
+ * @see https://tailwindcss.com/docs/text-shadow
1924
+ */
1925
+ "text-shadow": [{
1926
+ "text-shadow": ["none", T, Q, J]
1927
+ }],
1928
+ /**
1929
+ * Text Shadow Color
1930
+ * @see https://tailwindcss.com/docs/text-shadow#setting-the-shadow-color
1931
+ */
1932
+ "text-shadow-color": [{
1933
+ "text-shadow": l()
1934
+ }],
1935
+ /**
1936
+ * Opacity
1937
+ * @see https://tailwindcss.com/docs/opacity
1938
+ */
1939
+ opacity: [{
1940
+ opacity: [p, n, s]
1941
+ }],
1942
+ /**
1943
+ * Mix Blend Mode
1944
+ * @see https://tailwindcss.com/docs/mix-blend-mode
1945
+ */
1946
+ "mix-blend": [{
1947
+ "mix-blend": [...be(), "plus-darker", "plus-lighter"]
1948
+ }],
1949
+ /**
1950
+ * Background Blend Mode
1951
+ * @see https://tailwindcss.com/docs/background-blend-mode
1952
+ */
1953
+ "bg-blend": [{
1954
+ "bg-blend": be()
1955
+ }],
1956
+ /**
1957
+ * Mask Clip
1958
+ * @see https://tailwindcss.com/docs/mask-clip
1959
+ */
1960
+ "mask-clip": [{
1961
+ "mask-clip": ["border", "padding", "content", "fill", "stroke", "view"]
1962
+ }, "mask-no-clip"],
1963
+ /**
1964
+ * Mask Composite
1965
+ * @see https://tailwindcss.com/docs/mask-composite
1966
+ */
1967
+ "mask-composite": [{
1968
+ mask: ["add", "subtract", "intersect", "exclude"]
1969
+ }],
1970
+ /**
1971
+ * Mask Image
1972
+ * @see https://tailwindcss.com/docs/mask-image
1973
+ */
1974
+ "mask-image-linear-pos": [{
1975
+ "mask-linear": [p]
1976
+ }],
1977
+ "mask-image-linear-from-pos": [{
1978
+ "mask-linear-from": g()
1979
+ }],
1980
+ "mask-image-linear-to-pos": [{
1981
+ "mask-linear-to": g()
1982
+ }],
1983
+ "mask-image-linear-from-color": [{
1984
+ "mask-linear-from": l()
1985
+ }],
1986
+ "mask-image-linear-to-color": [{
1987
+ "mask-linear-to": l()
1988
+ }],
1989
+ "mask-image-t-from-pos": [{
1990
+ "mask-t-from": g()
1991
+ }],
1992
+ "mask-image-t-to-pos": [{
1993
+ "mask-t-to": g()
1994
+ }],
1995
+ "mask-image-t-from-color": [{
1996
+ "mask-t-from": l()
1997
+ }],
1998
+ "mask-image-t-to-color": [{
1999
+ "mask-t-to": l()
2000
+ }],
2001
+ "mask-image-r-from-pos": [{
2002
+ "mask-r-from": g()
2003
+ }],
2004
+ "mask-image-r-to-pos": [{
2005
+ "mask-r-to": g()
2006
+ }],
2007
+ "mask-image-r-from-color": [{
2008
+ "mask-r-from": l()
2009
+ }],
2010
+ "mask-image-r-to-color": [{
2011
+ "mask-r-to": l()
2012
+ }],
2013
+ "mask-image-b-from-pos": [{
2014
+ "mask-b-from": g()
2015
+ }],
2016
+ "mask-image-b-to-pos": [{
2017
+ "mask-b-to": g()
2018
+ }],
2019
+ "mask-image-b-from-color": [{
2020
+ "mask-b-from": l()
2021
+ }],
2022
+ "mask-image-b-to-color": [{
2023
+ "mask-b-to": l()
2024
+ }],
2025
+ "mask-image-l-from-pos": [{
2026
+ "mask-l-from": g()
2027
+ }],
2028
+ "mask-image-l-to-pos": [{
2029
+ "mask-l-to": g()
2030
+ }],
2031
+ "mask-image-l-from-color": [{
2032
+ "mask-l-from": l()
2033
+ }],
2034
+ "mask-image-l-to-color": [{
2035
+ "mask-l-to": l()
2036
+ }],
2037
+ "mask-image-x-from-pos": [{
2038
+ "mask-x-from": g()
2039
+ }],
2040
+ "mask-image-x-to-pos": [{
2041
+ "mask-x-to": g()
2042
+ }],
2043
+ "mask-image-x-from-color": [{
2044
+ "mask-x-from": l()
2045
+ }],
2046
+ "mask-image-x-to-color": [{
2047
+ "mask-x-to": l()
2048
+ }],
2049
+ "mask-image-y-from-pos": [{
2050
+ "mask-y-from": g()
2051
+ }],
2052
+ "mask-image-y-to-pos": [{
2053
+ "mask-y-to": g()
2054
+ }],
2055
+ "mask-image-y-from-color": [{
2056
+ "mask-y-from": l()
2057
+ }],
2058
+ "mask-image-y-to-color": [{
2059
+ "mask-y-to": l()
2060
+ }],
2061
+ "mask-image-radial": [{
2062
+ "mask-radial": [n, s]
2063
+ }],
2064
+ "mask-image-radial-from-pos": [{
2065
+ "mask-radial-from": g()
2066
+ }],
2067
+ "mask-image-radial-to-pos": [{
2068
+ "mask-radial-to": g()
2069
+ }],
2070
+ "mask-image-radial-from-color": [{
2071
+ "mask-radial-from": l()
2072
+ }],
2073
+ "mask-image-radial-to-color": [{
2074
+ "mask-radial-to": l()
2075
+ }],
2076
+ "mask-image-radial-shape": [{
2077
+ "mask-radial": ["circle", "ellipse"]
2078
+ }],
2079
+ "mask-image-radial-size": [{
2080
+ "mask-radial": [{
2081
+ closest: ["side", "corner"],
2082
+ farthest: ["side", "corner"]
2083
+ }]
2084
+ }],
2085
+ "mask-image-radial-pos": [{
2086
+ "mask-radial-at": W()
2087
+ }],
2088
+ "mask-image-conic-pos": [{
2089
+ "mask-conic": [p]
2090
+ }],
2091
+ "mask-image-conic-from-pos": [{
2092
+ "mask-conic-from": g()
2093
+ }],
2094
+ "mask-image-conic-to-pos": [{
2095
+ "mask-conic-to": g()
2096
+ }],
2097
+ "mask-image-conic-from-color": [{
2098
+ "mask-conic-from": l()
2099
+ }],
2100
+ "mask-image-conic-to-color": [{
2101
+ "mask-conic-to": l()
2102
+ }],
2103
+ /**
2104
+ * Mask Mode
2105
+ * @see https://tailwindcss.com/docs/mask-mode
2106
+ */
2107
+ "mask-mode": [{
2108
+ mask: ["alpha", "luminance", "match"]
2109
+ }],
2110
+ /**
2111
+ * Mask Origin
2112
+ * @see https://tailwindcss.com/docs/mask-origin
2113
+ */
2114
+ "mask-origin": [{
2115
+ "mask-origin": ["border", "padding", "content", "fill", "stroke", "view"]
2116
+ }],
2117
+ /**
2118
+ * Mask Position
2119
+ * @see https://tailwindcss.com/docs/mask-position
2120
+ */
2121
+ "mask-position": [{
2122
+ mask: de()
2123
+ }],
2124
+ /**
2125
+ * Mask Repeat
2126
+ * @see https://tailwindcss.com/docs/mask-repeat
2127
+ */
2128
+ "mask-repeat": [{
2129
+ mask: me()
2130
+ }],
2131
+ /**
2132
+ * Mask Size
2133
+ * @see https://tailwindcss.com/docs/mask-size
2134
+ */
2135
+ "mask-size": [{
2136
+ mask: pe()
2137
+ }],
2138
+ /**
2139
+ * Mask Type
2140
+ * @see https://tailwindcss.com/docs/mask-type
2141
+ */
2142
+ "mask-type": [{
2143
+ "mask-type": ["alpha", "luminance"]
2144
+ }],
2145
+ /**
2146
+ * Mask Image
2147
+ * @see https://tailwindcss.com/docs/mask-image
2148
+ */
2149
+ "mask-image": [{
2150
+ mask: ["none", n, s]
2151
+ }],
2152
+ // ---------------
2153
+ // --- Filters ---
2154
+ // ---------------
2155
+ /**
2156
+ * Filter
2157
+ * @see https://tailwindcss.com/docs/filter
2158
+ */
2159
+ filter: [{
2160
+ filter: [
2161
+ // Deprecated since Tailwind CSS v3.0.0
2162
+ "",
2163
+ "none",
2164
+ n,
2165
+ s
2166
+ ]
2167
+ }],
2168
+ /**
2169
+ * Blur
2170
+ * @see https://tailwindcss.com/docs/blur
2171
+ */
2172
+ blur: [{
2173
+ blur: ue()
2174
+ }],
2175
+ /**
2176
+ * Brightness
2177
+ * @see https://tailwindcss.com/docs/brightness
2178
+ */
2179
+ brightness: [{
2180
+ brightness: [p, n, s]
2181
+ }],
2182
+ /**
2183
+ * Contrast
2184
+ * @see https://tailwindcss.com/docs/contrast
2185
+ */
2186
+ contrast: [{
2187
+ contrast: [p, n, s]
2188
+ }],
2189
+ /**
2190
+ * Drop Shadow
2191
+ * @see https://tailwindcss.com/docs/drop-shadow
2192
+ */
2193
+ "drop-shadow": [{
2194
+ "drop-shadow": [
2195
+ // Deprecated since Tailwind CSS v4.0.0
2196
+ "",
2197
+ "none",
2198
+ S,
2199
+ Q,
2200
+ J
2201
+ ]
2202
+ }],
2203
+ /**
2204
+ * Drop Shadow Color
2205
+ * @see https://tailwindcss.com/docs/filter-drop-shadow#setting-the-shadow-color
2206
+ */
2207
+ "drop-shadow-color": [{
2208
+ "drop-shadow": l()
2209
+ }],
2210
+ /**
2211
+ * Grayscale
2212
+ * @see https://tailwindcss.com/docs/grayscale
2213
+ */
2214
+ grayscale: [{
2215
+ grayscale: ["", p, n, s]
2216
+ }],
2217
+ /**
2218
+ * Hue Rotate
2219
+ * @see https://tailwindcss.com/docs/hue-rotate
2220
+ */
2221
+ "hue-rotate": [{
2222
+ "hue-rotate": [p, n, s]
2223
+ }],
2224
+ /**
2225
+ * Invert
2226
+ * @see https://tailwindcss.com/docs/invert
2227
+ */
2228
+ invert: [{
2229
+ invert: ["", p, n, s]
2230
+ }],
2231
+ /**
2232
+ * Saturate
2233
+ * @see https://tailwindcss.com/docs/saturate
2234
+ */
2235
+ saturate: [{
2236
+ saturate: [p, n, s]
2237
+ }],
2238
+ /**
2239
+ * Sepia
2240
+ * @see https://tailwindcss.com/docs/sepia
2241
+ */
2242
+ sepia: [{
2243
+ sepia: ["", p, n, s]
2244
+ }],
2245
+ /**
2246
+ * Backdrop Filter
2247
+ * @see https://tailwindcss.com/docs/backdrop-filter
2248
+ */
2249
+ "backdrop-filter": [{
2250
+ "backdrop-filter": [
2251
+ // Deprecated since Tailwind CSS v3.0.0
2252
+ "",
2253
+ "none",
2254
+ n,
2255
+ s
2256
+ ]
2257
+ }],
2258
+ /**
2259
+ * Backdrop Blur
2260
+ * @see https://tailwindcss.com/docs/backdrop-blur
2261
+ */
2262
+ "backdrop-blur": [{
2263
+ "backdrop-blur": ue()
2264
+ }],
2265
+ /**
2266
+ * Backdrop Brightness
2267
+ * @see https://tailwindcss.com/docs/backdrop-brightness
2268
+ */
2269
+ "backdrop-brightness": [{
2270
+ "backdrop-brightness": [p, n, s]
2271
+ }],
2272
+ /**
2273
+ * Backdrop Contrast
2274
+ * @see https://tailwindcss.com/docs/backdrop-contrast
2275
+ */
2276
+ "backdrop-contrast": [{
2277
+ "backdrop-contrast": [p, n, s]
2278
+ }],
2279
+ /**
2280
+ * Backdrop Grayscale
2281
+ * @see https://tailwindcss.com/docs/backdrop-grayscale
2282
+ */
2283
+ "backdrop-grayscale": [{
2284
+ "backdrop-grayscale": ["", p, n, s]
2285
+ }],
2286
+ /**
2287
+ * Backdrop Hue Rotate
2288
+ * @see https://tailwindcss.com/docs/backdrop-hue-rotate
2289
+ */
2290
+ "backdrop-hue-rotate": [{
2291
+ "backdrop-hue-rotate": [p, n, s]
2292
+ }],
2293
+ /**
2294
+ * Backdrop Invert
2295
+ * @see https://tailwindcss.com/docs/backdrop-invert
2296
+ */
2297
+ "backdrop-invert": [{
2298
+ "backdrop-invert": ["", p, n, s]
2299
+ }],
2300
+ /**
2301
+ * Backdrop Opacity
2302
+ * @see https://tailwindcss.com/docs/backdrop-opacity
2303
+ */
2304
+ "backdrop-opacity": [{
2305
+ "backdrop-opacity": [p, n, s]
2306
+ }],
2307
+ /**
2308
+ * Backdrop Saturate
2309
+ * @see https://tailwindcss.com/docs/backdrop-saturate
2310
+ */
2311
+ "backdrop-saturate": [{
2312
+ "backdrop-saturate": [p, n, s]
2313
+ }],
2314
+ /**
2315
+ * Backdrop Sepia
2316
+ * @see https://tailwindcss.com/docs/backdrop-sepia
2317
+ */
2318
+ "backdrop-sepia": [{
2319
+ "backdrop-sepia": ["", p, n, s]
2320
+ }],
2321
+ // --------------
2322
+ // --- Tables ---
2323
+ // --------------
2324
+ /**
2325
+ * Border Collapse
2326
+ * @see https://tailwindcss.com/docs/border-collapse
2327
+ */
2328
+ "border-collapse": [{
2329
+ border: ["collapse", "separate"]
2330
+ }],
2331
+ /**
2332
+ * Border Spacing
2333
+ * @see https://tailwindcss.com/docs/border-spacing
2334
+ */
2335
+ "border-spacing": [{
2336
+ "border-spacing": a()
2337
+ }],
2338
+ /**
2339
+ * Border Spacing X
2340
+ * @see https://tailwindcss.com/docs/border-spacing
2341
+ */
2342
+ "border-spacing-x": [{
2343
+ "border-spacing-x": a()
2344
+ }],
2345
+ /**
2346
+ * Border Spacing Y
2347
+ * @see https://tailwindcss.com/docs/border-spacing
2348
+ */
2349
+ "border-spacing-y": [{
2350
+ "border-spacing-y": a()
2351
+ }],
2352
+ /**
2353
+ * Table Layout
2354
+ * @see https://tailwindcss.com/docs/table-layout
2355
+ */
2356
+ "table-layout": [{
2357
+ table: ["auto", "fixed"]
2358
+ }],
2359
+ /**
2360
+ * Caption Side
2361
+ * @see https://tailwindcss.com/docs/caption-side
2362
+ */
2363
+ caption: [{
2364
+ caption: ["top", "bottom"]
2365
+ }],
2366
+ // ---------------------------------
2367
+ // --- Transitions and Animation ---
2368
+ // ---------------------------------
2369
+ /**
2370
+ * Transition Property
2371
+ * @see https://tailwindcss.com/docs/transition-property
2372
+ */
2373
+ transition: [{
2374
+ transition: ["", "all", "colors", "opacity", "shadow", "transform", "none", n, s]
2375
+ }],
2376
+ /**
2377
+ * Transition Behavior
2378
+ * @see https://tailwindcss.com/docs/transition-behavior
2379
+ */
2380
+ "transition-behavior": [{
2381
+ transition: ["normal", "discrete"]
2382
+ }],
2383
+ /**
2384
+ * Transition Duration
2385
+ * @see https://tailwindcss.com/docs/transition-duration
2386
+ */
2387
+ duration: [{
2388
+ duration: [p, "initial", n, s]
2389
+ }],
2390
+ /**
2391
+ * Transition Timing Function
2392
+ * @see https://tailwindcss.com/docs/transition-timing-function
2393
+ */
2394
+ ease: [{
2395
+ ease: ["linear", "initial", L, n, s]
2396
+ }],
2397
+ /**
2398
+ * Transition Delay
2399
+ * @see https://tailwindcss.com/docs/transition-delay
2400
+ */
2401
+ delay: [{
2402
+ delay: [p, n, s]
2403
+ }],
2404
+ /**
2405
+ * Animation
2406
+ * @see https://tailwindcss.com/docs/animation
2407
+ */
2408
+ animate: [{
2409
+ animate: ["none", v, n, s]
2410
+ }],
2411
+ // ------------------
2412
+ // --- Transforms ---
2413
+ // ------------------
2414
+ /**
2415
+ * Backface Visibility
2416
+ * @see https://tailwindcss.com/docs/backface-visibility
2417
+ */
2418
+ backface: [{
2419
+ backface: ["hidden", "visible"]
2420
+ }],
2421
+ /**
2422
+ * Perspective
2423
+ * @see https://tailwindcss.com/docs/perspective
2424
+ */
2425
+ perspective: [{
2426
+ perspective: [y, n, s]
2427
+ }],
2428
+ /**
2429
+ * Perspective Origin
2430
+ * @see https://tailwindcss.com/docs/perspective-origin
2431
+ */
2432
+ "perspective-origin": [{
2433
+ "perspective-origin": E()
2434
+ }],
2435
+ /**
2436
+ * Rotate
2437
+ * @see https://tailwindcss.com/docs/rotate
2438
+ */
2439
+ rotate: [{
2440
+ rotate: Y()
2441
+ }],
2442
+ /**
2443
+ * Rotate X
2444
+ * @see https://tailwindcss.com/docs/rotate
2445
+ */
2446
+ "rotate-x": [{
2447
+ "rotate-x": Y()
2448
+ }],
2449
+ /**
2450
+ * Rotate Y
2451
+ * @see https://tailwindcss.com/docs/rotate
2452
+ */
2453
+ "rotate-y": [{
2454
+ "rotate-y": Y()
2455
+ }],
2456
+ /**
2457
+ * Rotate Z
2458
+ * @see https://tailwindcss.com/docs/rotate
2459
+ */
2460
+ "rotate-z": [{
2461
+ "rotate-z": Y()
2462
+ }],
2463
+ /**
2464
+ * Scale
2465
+ * @see https://tailwindcss.com/docs/scale
2466
+ */
2467
+ scale: [{
2468
+ scale: q()
2469
+ }],
2470
+ /**
2471
+ * Scale X
2472
+ * @see https://tailwindcss.com/docs/scale
2473
+ */
2474
+ "scale-x": [{
2475
+ "scale-x": q()
2476
+ }],
2477
+ /**
2478
+ * Scale Y
2479
+ * @see https://tailwindcss.com/docs/scale
2480
+ */
2481
+ "scale-y": [{
2482
+ "scale-y": q()
2483
+ }],
2484
+ /**
2485
+ * Scale Z
2486
+ * @see https://tailwindcss.com/docs/scale
2487
+ */
2488
+ "scale-z": [{
2489
+ "scale-z": q()
2490
+ }],
2491
+ /**
2492
+ * Scale 3D
2493
+ * @see https://tailwindcss.com/docs/scale
2494
+ */
2495
+ "scale-3d": ["scale-3d"],
2496
+ /**
2497
+ * Skew
2498
+ * @see https://tailwindcss.com/docs/skew
2499
+ */
2500
+ skew: [{
2501
+ skew: re()
2502
+ }],
2503
+ /**
2504
+ * Skew X
2505
+ * @see https://tailwindcss.com/docs/skew
2506
+ */
2507
+ "skew-x": [{
2508
+ "skew-x": re()
2509
+ }],
2510
+ /**
2511
+ * Skew Y
2512
+ * @see https://tailwindcss.com/docs/skew
2513
+ */
2514
+ "skew-y": [{
2515
+ "skew-y": re()
2516
+ }],
2517
+ /**
2518
+ * Transform
2519
+ * @see https://tailwindcss.com/docs/transform
2520
+ */
2521
+ transform: [{
2522
+ transform: [n, s, "", "none", "gpu", "cpu"]
2523
+ }],
2524
+ /**
2525
+ * Transform Origin
2526
+ * @see https://tailwindcss.com/docs/transform-origin
2527
+ */
2528
+ "transform-origin": [{
2529
+ origin: E()
2530
+ }],
2531
+ /**
2532
+ * Transform Style
2533
+ * @see https://tailwindcss.com/docs/transform-style
2534
+ */
2535
+ "transform-style": [{
2536
+ transform: ["3d", "flat"]
2537
+ }],
2538
+ /**
2539
+ * Translate
2540
+ * @see https://tailwindcss.com/docs/translate
2541
+ */
2542
+ translate: [{
2543
+ translate: X()
2544
+ }],
2545
+ /**
2546
+ * Translate X
2547
+ * @see https://tailwindcss.com/docs/translate
2548
+ */
2549
+ "translate-x": [{
2550
+ "translate-x": X()
2551
+ }],
2552
+ /**
2553
+ * Translate Y
2554
+ * @see https://tailwindcss.com/docs/translate
2555
+ */
2556
+ "translate-y": [{
2557
+ "translate-y": X()
2558
+ }],
2559
+ /**
2560
+ * Translate Z
2561
+ * @see https://tailwindcss.com/docs/translate
2562
+ */
2563
+ "translate-z": [{
2564
+ "translate-z": X()
2565
+ }],
2566
+ /**
2567
+ * Translate None
2568
+ * @see https://tailwindcss.com/docs/translate
2569
+ */
2570
+ "translate-none": ["translate-none"],
2571
+ /**
2572
+ * Zoom
2573
+ * @see https://tailwindcss.com/docs/zoom
2574
+ */
2575
+ zoom: [{
2576
+ zoom: [I, n, s]
2577
+ }],
2578
+ // ---------------------
2579
+ // --- Interactivity ---
2580
+ // ---------------------
2581
+ /**
2582
+ * Accent Color
2583
+ * @see https://tailwindcss.com/docs/accent-color
2584
+ */
2585
+ accent: [{
2586
+ accent: l()
2587
+ }],
2588
+ /**
2589
+ * Appearance
2590
+ * @see https://tailwindcss.com/docs/appearance
2591
+ */
2592
+ appearance: [{
2593
+ appearance: ["none", "auto"]
2594
+ }],
2595
+ /**
2596
+ * Caret Color
2597
+ * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
2598
+ */
2599
+ "caret-color": [{
2600
+ caret: l()
2601
+ }],
2602
+ /**
2603
+ * Color Scheme
2604
+ * @see https://tailwindcss.com/docs/color-scheme
2605
+ */
2606
+ "color-scheme": [{
2607
+ scheme: ["normal", "dark", "light", "light-dark", "only-dark", "only-light"]
2608
+ }],
2609
+ /**
2610
+ * Cursor
2611
+ * @see https://tailwindcss.com/docs/cursor
2612
+ */
2613
+ cursor: [{
2614
+ cursor: ["auto", "default", "pointer", "wait", "text", "move", "help", "not-allowed", "none", "context-menu", "progress", "cell", "crosshair", "vertical-text", "alias", "copy", "no-drop", "grab", "grabbing", "all-scroll", "col-resize", "row-resize", "n-resize", "e-resize", "s-resize", "w-resize", "ne-resize", "nw-resize", "se-resize", "sw-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", "zoom-out", n, s]
2615
+ }],
2616
+ /**
2617
+ * Field Sizing
2618
+ * @see https://tailwindcss.com/docs/field-sizing
2619
+ */
2620
+ "field-sizing": [{
2621
+ "field-sizing": ["fixed", "content"]
2622
+ }],
2623
+ /**
2624
+ * Pointer Events
2625
+ * @see https://tailwindcss.com/docs/pointer-events
2626
+ */
2627
+ "pointer-events": [{
2628
+ "pointer-events": ["auto", "none"]
2629
+ }],
2630
+ /**
2631
+ * Resize
2632
+ * @see https://tailwindcss.com/docs/resize
2633
+ */
2634
+ resize: [{
2635
+ resize: ["none", "", "y", "x"]
2636
+ }],
2637
+ /**
2638
+ * Scroll Behavior
2639
+ * @see https://tailwindcss.com/docs/scroll-behavior
2640
+ */
2641
+ "scroll-behavior": [{
2642
+ scroll: ["auto", "smooth"]
2643
+ }],
2644
+ /**
2645
+ * Scrollbar Thumb Color
2646
+ * @see https://tailwindcss.com/docs/scrollbar-color
2647
+ */
2648
+ "scrollbar-thumb-color": [{
2649
+ "scrollbar-thumb": l()
2650
+ }],
2651
+ /**
2652
+ * Scrollbar Track Color
2653
+ * @see https://tailwindcss.com/docs/scrollbar-color
2654
+ */
2655
+ "scrollbar-track-color": [{
2656
+ "scrollbar-track": l()
2657
+ }],
2658
+ /**
2659
+ * Scrollbar Gutter
2660
+ * @see https://tailwindcss.com/docs/scrollbar-gutter
2661
+ */
2662
+ "scrollbar-gutter": [{
2663
+ "scrollbar-gutter": ["auto", "stable", "both"]
2664
+ }],
2665
+ /**
2666
+ * Scrollbar Width
2667
+ * @see https://tailwindcss.com/docs/scrollbar-width
2668
+ */
2669
+ "scrollbar-w": [{
2670
+ scrollbar: ["auto", "thin", "none"]
2671
+ }],
2672
+ /**
2673
+ * Scroll Margin
2674
+ * @see https://tailwindcss.com/docs/scroll-margin
2675
+ */
2676
+ "scroll-m": [{
2677
+ "scroll-m": a()
2678
+ }],
2679
+ /**
2680
+ * Scroll Margin Inline
2681
+ * @see https://tailwindcss.com/docs/scroll-margin
2682
+ */
2683
+ "scroll-mx": [{
2684
+ "scroll-mx": a()
2685
+ }],
2686
+ /**
2687
+ * Scroll Margin Block
2688
+ * @see https://tailwindcss.com/docs/scroll-margin
2689
+ */
2690
+ "scroll-my": [{
2691
+ "scroll-my": a()
2692
+ }],
2693
+ /**
2694
+ * Scroll Margin Inline Start
2695
+ * @see https://tailwindcss.com/docs/scroll-margin
2696
+ */
2697
+ "scroll-ms": [{
2698
+ "scroll-ms": a()
2699
+ }],
2700
+ /**
2701
+ * Scroll Margin Inline End
2702
+ * @see https://tailwindcss.com/docs/scroll-margin
2703
+ */
2704
+ "scroll-me": [{
2705
+ "scroll-me": a()
2706
+ }],
2707
+ /**
2708
+ * Scroll Margin Block Start
2709
+ * @see https://tailwindcss.com/docs/scroll-margin
2710
+ */
2711
+ "scroll-mbs": [{
2712
+ "scroll-mbs": a()
2713
+ }],
2714
+ /**
2715
+ * Scroll Margin Block End
2716
+ * @see https://tailwindcss.com/docs/scroll-margin
2717
+ */
2718
+ "scroll-mbe": [{
2719
+ "scroll-mbe": a()
2720
+ }],
2721
+ /**
2722
+ * Scroll Margin Top
2723
+ * @see https://tailwindcss.com/docs/scroll-margin
2724
+ */
2725
+ "scroll-mt": [{
2726
+ "scroll-mt": a()
2727
+ }],
2728
+ /**
2729
+ * Scroll Margin Right
2730
+ * @see https://tailwindcss.com/docs/scroll-margin
2731
+ */
2732
+ "scroll-mr": [{
2733
+ "scroll-mr": a()
2734
+ }],
2735
+ /**
2736
+ * Scroll Margin Bottom
2737
+ * @see https://tailwindcss.com/docs/scroll-margin
2738
+ */
2739
+ "scroll-mb": [{
2740
+ "scroll-mb": a()
2741
+ }],
2742
+ /**
2743
+ * Scroll Margin Left
2744
+ * @see https://tailwindcss.com/docs/scroll-margin
2745
+ */
2746
+ "scroll-ml": [{
2747
+ "scroll-ml": a()
2748
+ }],
2749
+ /**
2750
+ * Scroll Padding
2751
+ * @see https://tailwindcss.com/docs/scroll-padding
2752
+ */
2753
+ "scroll-p": [{
2754
+ "scroll-p": a()
2755
+ }],
2756
+ /**
2757
+ * Scroll Padding Inline
2758
+ * @see https://tailwindcss.com/docs/scroll-padding
2759
+ */
2760
+ "scroll-px": [{
2761
+ "scroll-px": a()
2762
+ }],
2763
+ /**
2764
+ * Scroll Padding Block
2765
+ * @see https://tailwindcss.com/docs/scroll-padding
2766
+ */
2767
+ "scroll-py": [{
2768
+ "scroll-py": a()
2769
+ }],
2770
+ /**
2771
+ * Scroll Padding Inline Start
2772
+ * @see https://tailwindcss.com/docs/scroll-padding
2773
+ */
2774
+ "scroll-ps": [{
2775
+ "scroll-ps": a()
2776
+ }],
2777
+ /**
2778
+ * Scroll Padding Inline End
2779
+ * @see https://tailwindcss.com/docs/scroll-padding
2780
+ */
2781
+ "scroll-pe": [{
2782
+ "scroll-pe": a()
2783
+ }],
2784
+ /**
2785
+ * Scroll Padding Block Start
2786
+ * @see https://tailwindcss.com/docs/scroll-padding
2787
+ */
2788
+ "scroll-pbs": [{
2789
+ "scroll-pbs": a()
2790
+ }],
2791
+ /**
2792
+ * Scroll Padding Block End
2793
+ * @see https://tailwindcss.com/docs/scroll-padding
2794
+ */
2795
+ "scroll-pbe": [{
2796
+ "scroll-pbe": a()
2797
+ }],
2798
+ /**
2799
+ * Scroll Padding Top
2800
+ * @see https://tailwindcss.com/docs/scroll-padding
2801
+ */
2802
+ "scroll-pt": [{
2803
+ "scroll-pt": a()
2804
+ }],
2805
+ /**
2806
+ * Scroll Padding Right
2807
+ * @see https://tailwindcss.com/docs/scroll-padding
2808
+ */
2809
+ "scroll-pr": [{
2810
+ "scroll-pr": a()
2811
+ }],
2812
+ /**
2813
+ * Scroll Padding Bottom
2814
+ * @see https://tailwindcss.com/docs/scroll-padding
2815
+ */
2816
+ "scroll-pb": [{
2817
+ "scroll-pb": a()
2818
+ }],
2819
+ /**
2820
+ * Scroll Padding Left
2821
+ * @see https://tailwindcss.com/docs/scroll-padding
2822
+ */
2823
+ "scroll-pl": [{
2824
+ "scroll-pl": a()
2825
+ }],
2826
+ /**
2827
+ * Scroll Snap Align
2828
+ * @see https://tailwindcss.com/docs/scroll-snap-align
2829
+ */
2830
+ "snap-align": [{
2831
+ snap: ["start", "end", "center", "align-none"]
2832
+ }],
2833
+ /**
2834
+ * Scroll Snap Stop
2835
+ * @see https://tailwindcss.com/docs/scroll-snap-stop
2836
+ */
2837
+ "snap-stop": [{
2838
+ snap: ["normal", "always"]
2839
+ }],
2840
+ /**
2841
+ * Scroll Snap Type
2842
+ * @see https://tailwindcss.com/docs/scroll-snap-type
2843
+ */
2844
+ "snap-type": [{
2845
+ snap: ["none", "x", "y", "both"]
2846
+ }],
2847
+ /**
2848
+ * Scroll Snap Type Strictness
2849
+ * @see https://tailwindcss.com/docs/scroll-snap-type
2850
+ */
2851
+ "snap-strictness": [{
2852
+ snap: ["mandatory", "proximity"]
2853
+ }],
2854
+ /**
2855
+ * Touch Action
2856
+ * @see https://tailwindcss.com/docs/touch-action
2857
+ */
2858
+ touch: [{
2859
+ touch: ["auto", "none", "manipulation"]
2860
+ }],
2861
+ /**
2862
+ * Touch Action X
2863
+ * @see https://tailwindcss.com/docs/touch-action
2864
+ */
2865
+ "touch-x": [{
2866
+ "touch-pan": ["x", "left", "right"]
2867
+ }],
2868
+ /**
2869
+ * Touch Action Y
2870
+ * @see https://tailwindcss.com/docs/touch-action
2871
+ */
2872
+ "touch-y": [{
2873
+ "touch-pan": ["y", "up", "down"]
2874
+ }],
2875
+ /**
2876
+ * Touch Action Pinch Zoom
2877
+ * @see https://tailwindcss.com/docs/touch-action
2878
+ */
2879
+ "touch-pz": ["touch-pinch-zoom"],
2880
+ /**
2881
+ * User Select
2882
+ * @see https://tailwindcss.com/docs/user-select
2883
+ */
2884
+ select: [{
2885
+ select: ["none", "text", "all", "auto"]
2886
+ }],
2887
+ /**
2888
+ * Will Change
2889
+ * @see https://tailwindcss.com/docs/will-change
2890
+ */
2891
+ "will-change": [{
2892
+ "will-change": ["auto", "scroll", "contents", "transform", n, s]
2893
+ }],
2894
+ // -----------
2895
+ // --- SVG ---
2896
+ // -----------
2897
+ /**
2898
+ * Fill
2899
+ * @see https://tailwindcss.com/docs/fill
2900
+ */
2901
+ fill: [{
2902
+ fill: ["none", ...l()]
2903
+ }],
2904
+ /**
2905
+ * Stroke Width
2906
+ * @see https://tailwindcss.com/docs/stroke-width
2907
+ */
2908
+ "stroke-w": [{
2909
+ stroke: [p, $, N, ke]
2910
+ }],
2911
+ /**
2912
+ * Stroke
2913
+ * @see https://tailwindcss.com/docs/stroke
2914
+ */
2915
+ stroke: [{
2916
+ stroke: ["none", ...l()]
2917
+ }],
2918
+ // ---------------------
2919
+ // --- Accessibility ---
2920
+ // ---------------------
2921
+ /**
2922
+ * Forced Color Adjust
2923
+ * @see https://tailwindcss.com/docs/forced-color-adjust
2924
+ */
2925
+ "forced-color-adjust": [{
2926
+ "forced-color-adjust": ["auto", "none"]
2927
+ }]
2928
+ },
2929
+ conflictingClassGroups: {
2930
+ "container-named": ["container-type"],
2931
+ overflow: ["overflow-x", "overflow-y"],
2932
+ overscroll: ["overscroll-x", "overscroll-y"],
2933
+ inset: ["inset-x", "inset-y", "inset-bs", "inset-be", "start", "end", "top", "right", "bottom", "left"],
2934
+ "inset-x": ["right", "left"],
2935
+ "inset-y": ["top", "bottom"],
2936
+ flex: ["basis", "grow", "shrink"],
2937
+ gap: ["gap-x", "gap-y"],
2938
+ p: ["px", "py", "ps", "pe", "pbs", "pbe", "pt", "pr", "pb", "pl"],
2939
+ px: ["pr", "pl"],
2940
+ py: ["pt", "pb"],
2941
+ m: ["mx", "my", "ms", "me", "mbs", "mbe", "mt", "mr", "mb", "ml"],
2942
+ mx: ["mr", "ml"],
2943
+ my: ["mt", "mb"],
2944
+ size: ["w", "h"],
2945
+ "font-size": ["leading"],
2946
+ "fvn-normal": ["fvn-ordinal", "fvn-slashed-zero", "fvn-figure", "fvn-spacing", "fvn-fraction"],
2947
+ "fvn-ordinal": ["fvn-normal"],
2948
+ "fvn-slashed-zero": ["fvn-normal"],
2949
+ "fvn-figure": ["fvn-normal"],
2950
+ "fvn-spacing": ["fvn-normal"],
2951
+ "fvn-fraction": ["fvn-normal"],
2952
+ "line-clamp": ["display", "overflow"],
2953
+ rounded: ["rounded-s", "rounded-e", "rounded-t", "rounded-r", "rounded-b", "rounded-l", "rounded-ss", "rounded-se", "rounded-ee", "rounded-es", "rounded-tl", "rounded-tr", "rounded-br", "rounded-bl"],
2954
+ "rounded-s": ["rounded-ss", "rounded-es"],
2955
+ "rounded-e": ["rounded-se", "rounded-ee"],
2956
+ "rounded-t": ["rounded-tl", "rounded-tr"],
2957
+ "rounded-r": ["rounded-tr", "rounded-br"],
2958
+ "rounded-b": ["rounded-br", "rounded-bl"],
2959
+ "rounded-l": ["rounded-tl", "rounded-bl"],
2960
+ "border-spacing": ["border-spacing-x", "border-spacing-y"],
2961
+ "border-w": ["border-w-x", "border-w-y", "border-w-s", "border-w-e", "border-w-bs", "border-w-be", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
2962
+ "border-w-x": ["border-w-r", "border-w-l"],
2963
+ "border-w-y": ["border-w-t", "border-w-b"],
2964
+ "border-color": ["border-color-x", "border-color-y", "border-color-s", "border-color-e", "border-color-bs", "border-color-be", "border-color-t", "border-color-r", "border-color-b", "border-color-l"],
2965
+ "border-color-x": ["border-color-r", "border-color-l"],
2966
+ "border-color-y": ["border-color-t", "border-color-b"],
2967
+ translate: ["translate-x", "translate-y", "translate-none"],
2968
+ "translate-none": ["translate", "translate-x", "translate-y", "translate-z"],
2969
+ "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mbs", "scroll-mbe", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
2970
+ "scroll-mx": ["scroll-mr", "scroll-ml"],
2971
+ "scroll-my": ["scroll-mt", "scroll-mb"],
2972
+ "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pbs", "scroll-pbe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
2973
+ "scroll-px": ["scroll-pr", "scroll-pl"],
2974
+ "scroll-py": ["scroll-pt", "scroll-pb"],
2975
+ touch: ["touch-x", "touch-y", "touch-pz"],
2976
+ "touch-x": ["touch"],
2977
+ "touch-y": ["touch"],
2978
+ "touch-pz": ["touch"]
2979
+ },
2980
+ conflictingClassGroupModifiers: {
2981
+ "font-size": ["leading"]
2982
+ },
2983
+ postfixLookupClassGroups: ["container-type"],
2984
+ orderSensitiveModifiers: ["*", "**", "after", "backdrop", "before", "details-content", "file", "first-letter", "first-line", "marker", "placeholder", "selection"]
2985
+ };
2986
+ }, So = /* @__PURE__ */ ro(Ao);
2987
+ export {
2988
+ ro as createTailwindMerge,
2989
+ f as fromTheme,
2990
+ Ao as getDefaultConfig,
2991
+ oo as twJoin,
2992
+ So as twMerge
2993
+ };