@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
package/dist/style.css ADDED
@@ -0,0 +1 @@
1
+ /*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){[data-v-7780da8a],[data-v-7780da8a]:before,[data-v-7780da8a]:after,[data-v-7780da8a]::backdrop{--tw-leading:initial;--tw-font-weight:initial;--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0}}}.leaderboard-card[data-v-7780da8a]{width:100%;max-width:var(--container-sm,24rem);border-radius:var(--radius-xl,.75rem);background-color:var(--color-card,var(--card));padding:calc(var(--spacing,.25rem) * 4);flex-direction:column;display:flex}.leaderboard-entry[data-v-7780da8a]{align-items:center;gap:calc(var(--spacing,.25rem) * 3);border-radius:var(--radius-md,calc(var(--radius) - 2px));padding-inline:calc(var(--spacing,.25rem) * 2);padding-block:calc(var(--spacing,.25rem) * 1.5);transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function,cubic-bezier(.4, 0, .2, 1)));transition-duration:var(--tw-duration,var(--default-transition-duration,.15s));display:flex}.leaderboard-entry.highlight[data-v-7780da8a]{animation:1.5s cubic-bezier(.25,.46,.45,.94) highlight-7780da8a}.rank-badge[data-v-7780da8a]{height:calc(var(--spacing,.25rem) * 8);width:calc(var(--spacing,.25rem) * 8);border-radius:.25rem;flex-shrink:0;justify-content:center;align-items:center;display:flex;position:relative;overflow:hidden}.rank-number[data-v-7780da8a]{font-size:var(--text-sm,.875rem);line-height:var(--tw-leading,var(--text-sm--line-height,calc(1.25 / .875)));--tw-leading:1;--tw-font-weight:var(--font-weight-extrabold,800);line-height:1;font-weight:var(--font-weight-extrabold,800)}.rank-badge.award-badge[data-v-7780da8a]{background:0 0}.award-rank-number[data-v-7780da8a]{z-index:10;--tw-translate-x: -50% ;--tw-translate-y: -50% ;translate:var(--tw-translate-x) var(--tw-translate-y);font-size:var(--text-sm,.875rem);line-height:var(--tw-leading,var(--text-sm--line-height,calc(1.25 / .875)));--tw-font-weight:var(--font-weight-black,900);font-weight:var(--font-weight-black,900);color:var(--color-white,#fff);text-shadow:0 1px 2px #00000080;position:absolute;top:36%;left:50%}.rank-badge.rank-other[data-v-7780da8a]{background:0 0}.rank-badge.rank-1[data-v-7780da8a]:not(.number-only):not(.award-badge){background:var(--first-place-color)}.rank-badge.rank-2[data-v-7780da8a]:not(.number-only):not(.award-badge){background:var(--second-place-color)}.rank-badge.rank-3[data-v-7780da8a]:not(.number-only):not(.award-badge){background:var(--third-place-color)}.rank-badge.rank-1:not(.number-only) .rank-number[data-v-7780da8a],.rank-badge.rank-2:not(.number-only) .rank-number[data-v-7780da8a],.rank-badge.rank-3:not(.number-only) .rank-number[data-v-7780da8a]{color:#fff}.rank-badge.circle-style[data-v-7780da8a]{border-radius:50%}.rank-badge.number-only[data-v-7780da8a]{background:0 0!important}.rank-badge.rank-1.award-badge[data-v-7780da8a] svg{color:var(--first-place-color)}.rank-badge.rank-2.award-badge[data-v-7780da8a] svg{color:var(--second-place-color)}.rank-badge.rank-3.award-badge[data-v-7780da8a] svg{color:var(--third-place-color)}@keyframes highlight-7780da8a{0%,to{background:0 0;outline:1px solid #0000}50%{background:hsl(var(--accent));outline:1px solid hsl(var(--border))}}.leaderboard-item-move[data-v-7780da8a]{transition:all .5s cubic-bezier(.16,1,.3,1)}.leaderboard-item-enter-active[data-v-7780da8a]{transition:all .6s cubic-bezier(.16,1,.3,1);transition-delay:calc(var(--item-index,0) * 50ms)}.leaderboard-item-leave-active[data-v-7780da8a]{transition:all .4s cubic-bezier(.4,0,.6,1)}.leaderboard-item-enter-from[data-v-7780da8a]{opacity:0;transform:scale(.96)translate(-12px)}.leaderboard-item-leave-to[data-v-7780da8a]{opacity:0;transform:scale(.96)translate(12px)}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}.activity-toast-enter-active[data-v-a38fdcb0],.activity-toast-leave-active[data-v-a38fdcb0]{transition:all .3s ease}.activity-toast-enter-from[data-v-a38fdcb0],.activity-toast-leave-to[data-v-a38fdcb0]{opacity:0;transform:translate(50px)}.modal-enter-active[data-v-6f4ca1c5],.modal-leave-active[data-v-6f4ca1c5]{transition:all .4s cubic-bezier(.25,.46,.45,.94)}.modal-enter-from[data-v-6f4ca1c5],.modal-leave-to[data-v-6f4ca1c5]{opacity:0}.chat-transcript[data-v-a0f63009]{display:flex;flex-direction:column;gap:.75rem;padding:1rem;overflow-y:auto;scroll-behavior:smooth}.chat-message[data-v-a0f63009]{display:flex;flex-direction:column;gap:.25rem;padding:.75rem 1rem;border-radius:.75rem;max-width:85%;word-wrap:break-word}.chat-message--user[data-v-a0f63009]{align-self:flex-end;background:hsl(var(--primary, 222.2 47.4% 11.2%) / .1);border-bottom-right-radius:.25rem}.chat-message--assistant[data-v-a0f63009]{align-self:flex-start;background:hsl(var(--muted, 210 40% 96.1%));border-bottom-left-radius:.25rem}.chat-message--system[data-v-a0f63009]{align-self:center;background:transparent;font-style:italic;opacity:.7;text-align:center;max-width:100%}.chat-message--live[data-v-a0f63009]{opacity:.8;border-style:dashed;border-width:1px;border-color:hsl(var(--border, 214.3 31.8% 91.4%))}.chat-message--transcribing[data-v-a0f63009]{opacity:.7}.chat-message__role[data-v-a0f63009]{font-size:.75rem;font-weight:600;color:hsl(var(--muted-foreground, 215.4 16.3% 46.9%));display:flex;align-items:center;gap:.375rem}.chat-message__transcribing-badge[data-v-a0f63009],.chat-message__live-badge[data-v-a0f63009]{font-size:.625rem;font-weight:400;color:hsl(var(--muted-foreground, 215.4 16.3% 46.9%));font-style:italic}.chat-message__content[data-v-a0f63009]{font-size:.875rem;line-height:1.5;color:hsl(var(--foreground, 222.2 84% 4.9%));white-space:pre-wrap}.chat-message__time[data-v-a0f63009]{font-size:.625rem;color:hsl(var(--muted-foreground, 215.4 16.3% 46.9%))}.chat-typing-indicator[data-v-a0f63009]{display:inline-flex;gap:.25rem;padding:.25rem 0}.chat-typing-dot[data-v-a0f63009]{width:.5rem;height:.5rem;border-radius:50%;background:hsl(var(--muted-foreground, 215.4 16.3% 46.9%));animation:chat-typing-bounce-a0f63009 1.4s infinite ease-in-out both}.chat-typing-dot[data-v-a0f63009]:nth-child(1){animation-delay:-.32s}.chat-typing-dot[data-v-a0f63009]:nth-child(2){animation-delay:-.16s}.chat-typing-dot[data-v-a0f63009]:nth-child(3){animation-delay:0s}@keyframes chat-typing-bounce-a0f63009{0%,80%,to{transform:scale(.6);opacity:.4}40%{transform:scale(1);opacity:1}}.chat-transcript__empty[data-v-a0f63009]{display:flex;align-items:center;justify-content:center;padding:2rem;color:hsl(var(--muted-foreground, 215.4 16.3% 46.9%));font-size:.875rem}.video-tile[data-v-a6a499a8]{aspect-ratio:16 / 9;min-height:120px}.local-preview-video[data-v-894fab71]{transform:scaleX(-1)}@keyframes pulse-ring-00d09a7b{0%{box-shadow:0 0 #3b82f680}70%{box-shadow:0 0 0 8px #3b82f600}to{box-shadow:0 0 #3b82f600}}@keyframes bounce-subtle-00d09a7b{0%,to{transform:translateY(0)}50%{transform:translateY(-3px)}}.media-control-pulse[data-v-00d09a7b]{animation:pulse-ring-00d09a7b 2s ease-in-out infinite}.media-control-bounce[data-v-00d09a7b]{animation:bounce-subtle-00d09a7b 1s ease-in-out infinite}@keyframes countdown-pulse-ac4a0387{0%,to{opacity:1}50%{opacity:.6}}.countdown-timer-pulse[data-v-ac4a0387]{animation:countdown-pulse-ac4a0387 1s ease-in-out infinite}@keyframes pin-pad-shake-2526f771{0%,to{transform:translate(0)}20%{transform:translate(-8px)}40%{transform:translate(8px)}60%{transform:translate(-4px)}80%{transform:translate(4px)}}.pin-pad-shake[data-v-2526f771]{animation:pin-pad-shake-2526f771 .5s ease-in-out}@keyframes live-countdown-pulse-d5c8261b{0%,to{opacity:1}50%{opacity:.6}}.live-countdown-pulse[data-v-d5c8261b]{animation:live-countdown-pulse-d5c8261b 1s ease-in-out infinite}@keyframes connection-status-pulse-00c59e11{0%,to{opacity:1}50%{opacity:.4}}.connection-status-pulse[data-v-00c59e11]{animation:connection-status-pulse-00c59e11 1.5s ease-in-out infinite}.experience-fade-enter-active[data-v-cdf840e3],.experience-fade-leave-active[data-v-cdf840e3]{transition:opacity .2s ease}.experience-fade-enter-from[data-v-cdf840e3],.experience-fade-leave-to[data-v-cdf840e3]{opacity:0}
@@ -0,0 +1,2 @@
1
+ /*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
2
+ @layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-space-x-reverse:0;--tw-border-style:solid;--tw-gradient-position:initial;--tw-gradient-from:#0000;--tw-gradient-via:#0000;--tw-gradient-to:#0000;--tw-gradient-stops:initial;--tw-gradient-via-stops:initial;--tw-gradient-from-position:0%;--tw-gradient-via-position:50%;--tw-gradient-to-position:100%;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial;--tw-animation-delay:0s;--tw-animation-direction:normal;--tw-animation-duration:initial;--tw-animation-fill-mode:none;--tw-animation-iteration-count:1;--tw-enter-blur:0;--tw-enter-opacity:1;--tw-enter-rotate:0;--tw-enter-scale:1;--tw-enter-translate-x:0;--tw-enter-translate-y:0;--tw-exit-blur:0;--tw-exit-opacity:1;--tw-exit-rotate:0;--tw-exit-scale:1;--tw-exit-translate-x:0;--tw-exit-translate-y:0}}}@layer theme{:root,:host{--font-sans:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--color-red-100:oklch(93.6% .032 17.717);--color-red-500:oklch(63.7% .237 25.331);--color-red-600:oklch(57.7% .245 27.325);--color-red-700:oklch(50.5% .213 27.518);--color-red-800:oklch(44.4% .177 26.899);--color-red-900:oklch(39.6% .141 25.723);--color-amber-100:oklch(96.2% .059 95.617);--color-amber-200:oklch(92.4% .12 95.746);--color-amber-400:oklch(82.8% .189 84.429);--color-amber-500:oklch(76.9% .188 70.08);--color-amber-900:oklch(41.4% .112 45.904);--color-yellow-50:oklch(98.7% .026 102.212);--color-yellow-500:oklch(79.5% .184 86.047);--color-yellow-600:oklch(68.1% .162 75.834);--color-yellow-700:oklch(55.4% .135 66.442);--color-yellow-800:oklch(47.6% .114 61.907);--color-green-50:oklch(98.2% .018 155.826);--color-green-100:oklch(96.2% .044 156.743);--color-green-500:oklch(72.3% .219 149.579);--color-green-600:oklch(62.7% .194 149.214);--color-green-700:oklch(52.7% .154 150.069);--color-green-900:oklch(39.3% .095 152.535);--color-emerald-500:oklch(69.6% .17 162.48);--color-emerald-600:oklch(59.6% .145 163.225);--color-emerald-700:oklch(50.8% .118 165.612);--color-blue-500:oklch(62.3% .214 259.815);--color-blue-600:oklch(54.6% .245 262.881);--color-blue-700:oklch(48.8% .243 264.376);--color-slate-700:oklch(37.2% .044 257.287);--color-slate-800:oklch(27.9% .041 260.031);--color-slate-900:oklch(20.8% .042 265.755);--color-gray-400:oklch(70.7% .022 261.325);--color-gray-600:oklch(44.6% .03 256.802);--color-gray-700:oklch(37.3% .034 259.733);--color-gray-900:oklch(21% .034 264.665);--color-black:#000;--color-white:#fff;--spacing:.25rem;--container-sm:24rem;--container-md:28rem;--container-lg:32rem;--container-xl:36rem;--container-2xl:42rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-base:1rem;--text-base--line-height:calc(1.5 / 1);--text-lg:1.125rem;--text-lg--line-height:calc(1.75 / 1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75 / 1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2 / 1.5);--text-3xl:1.875rem;--text-3xl--line-height:calc(2.25 / 1.875);--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5 / 2.25);--text-5xl:3rem;--text-5xl--line-height:1;--text-8xl:6rem;--text-8xl--line-height:1;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--tracking-tight:-.025em;--tracking-wider:.05em;--tracking-widest:.1em;--leading-tight:1.25;--leading-snug:1.375;--leading-normal:1.5;--leading-relaxed:1.625;--radius-sm:calc(var(--radius) - 4px);--radius-md:calc(var(--radius) - 2px);--radius-lg:var(--radius);--radius-xl:.75rem;--radius-2xl:1rem;--drop-shadow-lg:0 4px 4px #00000026;--ease-out:cubic-bezier(0, 0, .2, 1);--ease-in-out:cubic-bezier(.4, 0, .2, 1);--animate-spin:spin 1s linear infinite;--animate-pulse:pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;--blur-sm:8px;--blur-xl:24px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--animate-accordion-down:accordion-down .2s ease-out;--animate-accordion-up:accordion-up .2s ease-out;--color-background:var(--background);--color-foreground:var(--foreground);--color-card:var(--card);--color-card-foreground:var(--card-foreground);--color-popover:var(--popover);--color-popover-foreground:var(--popover-foreground);--color-primary:var(--primary);--color-primary-foreground:var(--primary-foreground);--color-secondary:var(--secondary);--color-secondary-foreground:var(--secondary-foreground);--color-muted:var(--muted);--color-muted-foreground:var(--muted-foreground);--color-accent:var(--accent);--color-accent-foreground:var(--accent-foreground);--color-destructive:var(--destructive);--color-destructive-foreground:var(--destructive-foreground);--color-border:var(--border);--color-input:var(--input);--color-ring:var(--ring);--color-keyboard-key:var(--keyboard_key_background_color);--color-keyboard-key-foreground:var(--keyboard_key_text_color);--color-keyboard-key-active:var(--keyboard_key_active_background_color);--color-keyboard-key-active-foreground:var(--keyboard_key_active_text_color)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab, currentcolor 50%, transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*,:after,:before{border-color:var(--color-border,currentColor)}body{background-color:var(--color-background);color:var(--color-foreground)}}@layer components;@layer utilities{.pointer-events-auto{pointer-events:auto}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.sr-only{clip-path:inset(50%);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.inset-0{inset:calc(var(--spacing) * 0)}.inset-x-0{inset-inline:calc(var(--spacing) * 0)}.inset-y-0{inset-block:calc(var(--spacing) * 0)}.-top-1{top:calc(var(--spacing) * -1)}.top-0{top:calc(var(--spacing) * 0)}.top-1\/2{top:50%}.top-2{top:calc(var(--spacing) * 2)}.top-3{top:calc(var(--spacing) * 3)}.top-4{top:calc(var(--spacing) * 4)}.top-8{top:calc(var(--spacing) * 8)}.top-\[36\%\]{top:36%}.top-\[60\%\]{top:60%}.top-full{top:100%}.top-px{top:1px}.-right-1{right:calc(var(--spacing) * -1)}.right-0{right:calc(var(--spacing) * 0)}.right-2{right:calc(var(--spacing) * 2)}.right-3{right:calc(var(--spacing) * 3)}.right-4{right:calc(var(--spacing) * 4)}.right-8{right:calc(var(--spacing) * 8)}.bottom-0{bottom:calc(var(--spacing) * 0)}.bottom-2{bottom:calc(var(--spacing) * 2)}.left-0{left:calc(var(--spacing) * 0)}.left-1\/2{left:50%}.left-2{left:calc(var(--spacing) * 2)}.left-3{left:calc(var(--spacing) * 3)}.left-\[var\(--reka-navigation-menu-viewport-left\)\]{left:var(--reka-navigation-menu-viewport-left)}.z-10{z-index:10}.z-20{z-index:20}.z-50{z-index:50}.z-\[1\]{z-index:1}.z-\[9999\]{z-index:9999}.col-span-2{grid-column:span 2/span 2}.col-span-3{grid-column:span 3/span 3}.row-span-3{grid-row:span 3/span 3}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.-mx-1{margin-inline:calc(var(--spacing) * -1)}.mx-1{margin-inline:calc(var(--spacing) * 1)}.mx-auto{margin-inline:auto}.my-1{margin-block:calc(var(--spacing) * 1)}.my-8{margin-block:calc(var(--spacing) * 8)}.prose{color:var(--tw-prose-body);max-width:65ch}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);margin-top:1.2em;margin-bottom:1.2em;font-size:1.25em;line-height:1.6}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:decimal}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:disc}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.25em;font-weight:600}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em;font-style:italic;font-weight:500}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:0;margin-bottom:.888889em;font-size:2.25em;font-weight:800;line-height:1.11111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:2em;margin-bottom:1em;font-size:1.5em;font-weight:700;line-height:1.33333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.6em;margin-bottom:.6em;font-size:1.25em;font-weight:600;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.5em;margin-bottom:.5em;font-weight:600;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em;display:block}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-kbd);box-shadow:0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;border-radius:.3125rem;padding-inline-start:.375em;font-family:inherit;font-size:.875em;font-weight:500}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);padding-top:.857143em;padding-inline-end:1.14286em;padding-bottom:.857143em;border-radius:.375rem;margin-top:1.71429em;margin-bottom:1.71429em;padding-inline-start:1.14286em;font-size:.875em;font-weight:400;line-height:1.71429;overflow-x:auto}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit;background-color:#0000;border-width:0;border-radius:0;padding:0}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){table-layout:auto;width:100%;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.71429}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);vertical-align:bottom;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em;font-weight:600}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);margin-top:.857143em;font-size:.875em;line-height:1.42857}.prose{--tw-prose-body:oklch(37.3% .034 259.733);--tw-prose-headings:oklch(21% .034 264.665);--tw-prose-lead:oklch(44.6% .03 256.802);--tw-prose-links:oklch(21% .034 264.665);--tw-prose-bold:oklch(21% .034 264.665);--tw-prose-counters:oklch(55.1% .027 264.364);--tw-prose-bullets:oklch(87.2% .01 258.338);--tw-prose-hr:oklch(92.8% .006 264.531);--tw-prose-quotes:oklch(21% .034 264.665);--tw-prose-quote-borders:oklch(92.8% .006 264.531);--tw-prose-captions:oklch(55.1% .027 264.364);--tw-prose-kbd:oklch(21% .034 264.665);--tw-prose-kbd-shadows:oklab(21% -.00316127 -.0338527/.1);--tw-prose-code:oklch(21% .034 264.665);--tw-prose-pre-code:oklch(92.8% .006 264.531);--tw-prose-pre-bg:oklch(27.8% .033 256.848);--tw-prose-th-borders:oklch(87.2% .01 258.338);--tw-prose-td-borders:oklch(92.8% .006 264.531);--tw-prose-invert-body:oklch(87.2% .01 258.338);--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:oklch(70.7% .022 261.325);--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:oklch(70.7% .022 261.325);--tw-prose-invert-bullets:oklch(44.6% .03 256.802);--tw-prose-invert-hr:oklch(37.3% .034 259.733);--tw-prose-invert-quotes:oklch(96.7% .003 264.542);--tw-prose-invert-quote-borders:oklch(37.3% .034 259.733);--tw-prose-invert-captions:oklch(70.7% .022 261.325);--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:#ffffff1a;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:oklch(87.2% .01 258.338);--tw-prose-invert-pre-bg:#00000080;--tw-prose-invert-th-borders:oklch(44.6% .03 256.802);--tw-prose-invert-td-borders:oklch(37.3% .034 259.733);font-size:1rem;line-height:1.75}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.571429em;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.prose-sm{font-size:.875rem;line-height:1.71429}.prose-sm :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em;margin-bottom:1.14286em}.prose-sm :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.888889em;margin-bottom:.888889em;font-size:1.28571em;line-height:1.55556}.prose-sm :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.33333em;margin-bottom:1.33333em;padding-inline-start:1.11111em}.prose-sm :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:.8em;font-size:2.14286em;line-height:1.2}.prose-sm :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.6em;margin-bottom:.8em;font-size:1.42857em;line-height:1.4}.prose-sm :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.55556em;margin-bottom:.444444em;font-size:1.28571em;line-height:1.55556}.prose-sm :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.42857em;margin-bottom:.571429em;line-height:1.42857}.prose-sm :where(img):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.71429em;margin-bottom:1.71429em}.prose-sm :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-sm :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.71429em;margin-bottom:1.71429em}.prose-sm :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.142857em;padding-inline-end:.357143em;padding-bottom:.142857em;border-radius:.3125rem;padding-inline-start:.357143em;font-size:.857143em}.prose-sm :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.857143em}.prose-sm :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.9em}.prose-sm :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.888889em}.prose-sm :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.666667em;padding-inline-end:1em;padding-bottom:.666667em;border-radius:.25rem;margin-top:1.66667em;margin-bottom:1.66667em;padding-inline-start:1em;font-size:.857143em;line-height:1.66667}.prose-sm :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em;margin-bottom:1.14286em;padding-inline-start:1.57143em}.prose-sm :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.285714em;margin-bottom:.285714em}.prose-sm :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.428571em}.prose-sm :where(.prose-sm>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.571429em;margin-bottom:.571429em}.prose-sm :where(.prose-sm>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em}.prose-sm :where(.prose-sm>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.14286em}.prose-sm :where(.prose-sm>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em}.prose-sm :where(.prose-sm>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.14286em}.prose-sm :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.571429em;margin-bottom:.571429em}.prose-sm :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em;margin-bottom:1.14286em}.prose-sm :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.14286em}.prose-sm :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.285714em;padding-inline-start:1.57143em}.prose-sm :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2.85714em;margin-bottom:2.85714em}.prose-sm :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-sm :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:.857143em;line-height:1.5}.prose-sm :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:1em;padding-bottom:.666667em;padding-inline-start:1em}.prose-sm :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose-sm :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose-sm :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.666667em;padding-inline-end:1em;padding-bottom:.666667em;padding-inline-start:1em}.prose-sm :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose-sm :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose-sm :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.71429em;margin-bottom:1.71429em}.prose-sm :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose-sm :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.666667em;font-size:.857143em;line-height:1.33333}.prose-sm :where(.prose-sm>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose-sm :where(.prose-sm>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.mt-1{margin-top:calc(var(--spacing) * 1)}.mt-1\.5{margin-top:calc(var(--spacing) * 1.5)}.mt-2{margin-top:calc(var(--spacing) * 2)}.mt-4{margin-top:calc(var(--spacing) * 4)}.mr-1{margin-right:calc(var(--spacing) * 1)}.mr-2{margin-right:calc(var(--spacing) * 2)}.mb-1{margin-bottom:calc(var(--spacing) * 1)}.mb-2{margin-bottom:calc(var(--spacing) * 2)}.mb-3{margin-bottom:calc(var(--spacing) * 3)}.mb-4{margin-bottom:calc(var(--spacing) * 4)}.mb-6{margin-bottom:calc(var(--spacing) * 6)}.ml-1{margin-left:calc(var(--spacing) * 1)}.ml-1\.5{margin-left:calc(var(--spacing) * 1.5)}.ml-2{margin-left:calc(var(--spacing) * 2)}.ml-5{margin-left:calc(var(--spacing) * 5)}.ml-auto{margin-left:auto}.line-clamp-2{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.aspect-square{aspect-ratio:1}.size-4{width:calc(var(--spacing) * 4);height:calc(var(--spacing) * 4)}.size-9{width:calc(var(--spacing) * 9);height:calc(var(--spacing) * 9)}.size-11{width:calc(var(--spacing) * 11);height:calc(var(--spacing) * 11)}.h-1{height:calc(var(--spacing) * 1)}.h-1\.5{height:calc(var(--spacing) * 1.5)}.h-2{height:calc(var(--spacing) * 2)}.h-2\.5{height:calc(var(--spacing) * 2.5)}.h-3{height:calc(var(--spacing) * 3)}.h-3\.5{height:calc(var(--spacing) * 3.5)}.h-4{height:calc(var(--spacing) * 4)}.h-5{height:calc(var(--spacing) * 5)}.h-6{height:calc(var(--spacing) * 6)}.h-7{height:calc(var(--spacing) * 7)}.h-8{height:calc(var(--spacing) * 8)}.h-9{height:calc(var(--spacing) * 9)}.h-10{height:calc(var(--spacing) * 10)}.h-11{height:calc(var(--spacing) * 11)}.h-12{height:calc(var(--spacing) * 12)}.h-14{height:calc(var(--spacing) * 14)}.h-16{height:calc(var(--spacing) * 16)}.h-20{height:calc(var(--spacing) * 20)}.h-24{height:calc(var(--spacing) * 24)}.h-32{height:calc(var(--spacing) * 32)}.h-64{height:calc(var(--spacing) * 64)}.h-72{height:calc(var(--spacing) * 72)}.h-80{height:calc(var(--spacing) * 80)}.h-\[--reka-navigation-menu-viewport-height\]{height:--reka-navigation-menu-viewport-height}.h-\[--reka-select-trigger-height\]{height:--reka-select-trigger-height}.h-\[17cqh\]{height:17cqh}.h-\[20vh\]{height:20vh}.h-\[50px\]{height:50px}.h-\[100px\]{height:100px}.h-\[125px\]{height:125px}.h-\[150px\]{height:150px}.h-\[200px\]{height:200px}.h-\[420px\]{height:420px}.h-full{height:100%}.h-px{height:1px}.h-screen{height:100vh}.max-h-32{max-height:calc(var(--spacing) * 32)}.max-h-40{max-height:calc(var(--spacing) * 40)}.max-h-48{max-height:calc(var(--spacing) * 48)}.max-h-96{max-height:calc(var(--spacing) * 96)}.max-h-\[50vh\]{max-height:50vh}.max-h-\[85\%\]{max-height:85%}.max-h-\[300px\]{max-height:300px}.max-h-full{max-height:100%}.min-h-20{min-height:calc(var(--spacing) * 20)}.min-h-40{min-height:calc(var(--spacing) * 40)}.min-h-\[3px\]{min-height:3px}.min-h-\[100px\]{min-height:100px}.min-h-\[200px\]{min-height:200px}.min-h-\[300px\]{min-height:300px}.min-h-\[400px\]{min-height:400px}.min-h-screen{min-height:100vh}.w-2{width:calc(var(--spacing) * 2)}.w-2\.5{width:calc(var(--spacing) * 2.5)}.w-3{width:calc(var(--spacing) * 3)}.w-3\.5{width:calc(var(--spacing) * 3.5)}.w-3\/4{width:75%}.w-4{width:calc(var(--spacing) * 4)}.w-5{width:calc(var(--spacing) * 5)}.w-6{width:calc(var(--spacing) * 6)}.w-7{width:calc(var(--spacing) * 7)}.w-8{width:calc(var(--spacing) * 8)}.w-9{width:calc(var(--spacing) * 9)}.w-10{width:calc(var(--spacing) * 10)}.w-11{width:calc(var(--spacing) * 11)}.w-12{width:calc(var(--spacing) * 12)}.w-16{width:calc(var(--spacing) * 16)}.w-20{width:calc(var(--spacing) * 20)}.w-24{width:calc(var(--spacing) * 24)}.w-32{width:calc(var(--spacing) * 32)}.w-48{width:calc(var(--spacing) * 48)}.w-56{width:calc(var(--spacing) * 56)}.w-60{width:calc(var(--spacing) * 60)}.w-64{width:calc(var(--spacing) * 64)}.w-72{width:calc(var(--spacing) * 72)}.w-80{width:calc(var(--spacing) * 80)}.w-96{width:calc(var(--spacing) * 96)}.w-\[3px\]{width:3px}.w-\[30px\]{width:30px}.w-\[40\%\]{width:40%}.w-\[50px\]{width:50px}.w-\[60\%\]{width:60%}.w-\[70\%\]{width:70%}.w-\[80\%\]{width:80%}.w-\[100px\]{width:100px}.w-\[150px\]{width:150px}.w-\[200px\]{width:200px}.w-\[250px\]{width:250px}.w-\[280px\]{width:280px}.w-\[300px\]{width:300px}.w-\[350px\]{width:350px}.w-\[400px\]{width:400px}.w-\[420px\]{width:420px}.w-\[450px\]{width:450px}.w-\[460px\]{width:460px}.w-\[480px\]{width:480px}.w-\[500px\]{width:500px}.w-\[520px\]{width:520px}.w-\[640px\]{width:640px}.w-auto{width:auto}.w-fit{width:fit-content}.w-full{width:100%}.w-max{width:max-content}.w-px{width:1px}.w-screen{width:100vw}.max-w-2xl{max-width:var(--container-2xl)}.max-w-\[80\%\]{max-width:80%}.max-w-\[120px\]{max-width:120px}.max-w-full{max-width:100%}.max-w-lg{max-width:var(--container-lg)}.max-w-max{max-width:max-content}.max-w-md{max-width:var(--container-md)}.max-w-none{max-width:none}.max-w-sm{max-width:var(--container-sm)}.max-w-xl{max-width:var(--container-xl)}.min-w-0{min-width:calc(var(--spacing) * 0)}.min-w-8{min-width:calc(var(--spacing) * 8)}.min-w-10{min-width:calc(var(--spacing) * 10)}.min-w-14{min-width:calc(var(--spacing) * 14)}.min-w-32{min-width:calc(var(--spacing) * 32)}.min-w-48{min-width:calc(var(--spacing) * 48)}.min-w-\[--reka-select-trigger-width\]{min-width:--reka-select-trigger-width}.min-w-\[1\.25rem\]{min-width:1.25rem}.min-w-\[3rem\]{min-width:3rem}.min-w-\[60px\]{min-width:60px}.min-w-\[280px\]{min-width:280px}.flex-1{flex:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow,.grow{flex-grow:1}.caption-bottom{caption-side:bottom}.border-collapse{border-collapse:collapse}.-translate-x-1{--tw-translate-x:calc(var(--spacing) * -1);translate:var(--tw-translate-x) var(--tw-translate-y)}.-translate-x-1\/2{--tw-translate-x:calc(calc(1 / 2 * 100%) * -1);translate:var(--tw-translate-x) var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y:calc(calc(1 / 2 * 100%) * -1);translate:var(--tw-translate-x) var(--tw-translate-y)}.scale-110{--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x) var(--tw-scale-y)}.-scale-x-100{--tw-scale-x:calc(100% * -1);scale:var(--tw-scale-x) var(--tw-scale-y)}.scale-\[1\.02\]{scale:1.02}.rotate-45{rotate:45deg}.transform{transform:var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)}.animate-in{animation:enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.animate-pulse{animation:var(--animate-pulse)}.animate-spin{animation:var(--animate-spin)}.cursor-crosshair{cursor:crosshair}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.touch-none{touch-action:none}.resize-none{resize:none}.list-none{list-style-type:none}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-\[200px_1fr\]{grid-template-columns:200px 1fr}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-row{flex-direction:row}.flex-wrap{flex-wrap:wrap}.place-content-center{place-content:center}.place-items-center{place-items:center}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-evenly{justify-content:space-evenly}.justify-start{justify-content:flex-start}.gap-0\.5{gap:calc(var(--spacing) * .5)}.gap-1{gap:calc(var(--spacing) * 1)}.gap-1\.5{gap:calc(var(--spacing) * 1.5)}.gap-2{gap:calc(var(--spacing) * 2)}.gap-2\.5{gap:calc(var(--spacing) * 2.5)}.gap-3{gap:calc(var(--spacing) * 3)}.gap-4{gap:calc(var(--spacing) * 4)}.gap-6{gap:calc(var(--spacing) * 6)}.gap-8{gap:calc(var(--spacing) * 8)}.gap-\[5px\]{gap:5px}.gap-px{gap:1px}:where(.space-y-0\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * .5) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * .5) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-1\.5>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-3>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-4>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)))}:where(.space-y-8>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)))}.gap-x-1{column-gap:calc(var(--spacing) * 1)}.gap-x-2{column-gap:calc(var(--spacing) * 2)}.gap-x-3{column-gap:calc(var(--spacing) * 3)}:where(.space-x-4>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));margin-inline-end:calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)))}.gap-y-1\.5{row-gap:calc(var(--spacing) * 1.5)}.gap-y-2{row-gap:calc(var(--spacing) * 2)}.gap-y-3{row-gap:calc(var(--spacing) * 3)}.gap-y-4{row-gap:calc(var(--spacing) * 4)}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-hidden{overflow-x:hidden}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-\[inherit\]{border-radius:inherit}.rounded-\[var\(--radius\)\]{border-radius:var(--radius)}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-none{border-radius:0}.rounded-sm{border-radius:var(--radius-sm)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-t{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.rounded-l-none{border-top-left-radius:0;border-bottom-left-radius:0}.rounded-tl-sm{border-top-left-radius:var(--radius-sm)}.rounded-r-none{border-top-right-radius:0;border-bottom-right-radius:0}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-4{border-style:var(--tw-border-style);border-width:4px}.border-\[3px\]{border-style:var(--tw-border-style);border-width:3px}.border-\[5px\]{border-style:var(--tw-border-style);border-width:5px}.border-x-0{border-inline-style:var(--tw-border-style);border-inline-width:0}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-solid{--tw-border-style:solid;border-style:solid}.border-\[var\(--border\)\]{border-color:var(--border)}.border-amber-400{border-color:var(--color-amber-400)}.border-amber-400\/40{border-color:#fcbb0066}@supports (color:color-mix(in lab, red, red)){.border-amber-400\/40{border-color:color-mix(in oklab, var(--color-amber-400) 40%, transparent)}}.border-amber-500\/60{border-color:#f99c0099}@supports (color:color-mix(in lab, red, red)){.border-amber-500\/60{border-color:color-mix(in oklab, var(--color-amber-500) 60%, transparent)}}.border-border{border-color:var(--color-border)}.border-current{border-color:currentColor}.border-destructive,.border-destructive\/40{border-color:var(--color-destructive)}@supports (color:color-mix(in lab, red, red)){.border-destructive\/40{border-color:color-mix(in oklab, var(--color-destructive) 40%, transparent)}}.border-destructive\/50{border-color:var(--color-destructive)}@supports (color:color-mix(in lab, red, red)){.border-destructive\/50{border-color:color-mix(in oklab, var(--color-destructive) 50%, transparent)}}.border-foreground{border-color:var(--color-foreground)}.border-green-500{border-color:var(--color-green-500)}.border-input{border-color:var(--color-input)}.border-muted-foreground\/20{border-color:var(--color-muted-foreground)}@supports (color:color-mix(in lab, red, red)){.border-muted-foreground\/20{border-color:color-mix(in oklab, var(--color-muted-foreground) 20%, transparent)}}.border-muted-foreground\/25{border-color:var(--color-muted-foreground)}@supports (color:color-mix(in lab, red, red)){.border-muted-foreground\/25{border-color:color-mix(in oklab, var(--color-muted-foreground) 25%, transparent)}}.border-primary{border-color:var(--color-primary)}.border-red-500{border-color:var(--color-red-500)}.border-transparent{border-color:#0000}.border-white{border-color:var(--color-white)}.border-white\/10{border-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.border-white\/10{border-color:color-mix(in oklab, var(--color-white) 10%, transparent)}}.border-white\/15{border-color:#ffffff26}@supports (color:color-mix(in lab, red, red)){.border-white\/15{border-color:color-mix(in oklab, var(--color-white) 15%, transparent)}}.border-white\/20{border-color:#fff3}@supports (color:color-mix(in lab, red, red)){.border-white\/20{border-color:color-mix(in oklab, var(--color-white) 20%, transparent)}}.border-yellow-500{border-color:var(--color-yellow-500)}.border-t-muted-foreground\/80{border-top-color:var(--color-muted-foreground)}@supports (color:color-mix(in lab, red, red)){.border-t-muted-foreground\/80{border-top-color:color-mix(in oklab, var(--color-muted-foreground) 80%, transparent)}}.border-t-transparent{border-top-color:#0000}.border-t-white\/80{border-top-color:#fffc}@supports (color:color-mix(in lab, red, red)){.border-t-white\/80{border-top-color:color-mix(in oklab, var(--color-white) 80%, transparent)}}.border-r-transparent{border-right-color:#0000}.border-l-transparent{border-left-color:#0000}.\!bg-transparent{background-color:#0000!important}.bg-\[\#dc2626\]{background-color:#dc2626}.bg-\[var\(--input\)\]{background-color:var(--input)}.bg-\[var\(--muted\)\]{background-color:var(--muted)}.bg-\[var\(--primary\)\]{background-color:var(--primary)}.bg-accent{background-color:var(--color-accent)}.bg-amber-100{background-color:var(--color-amber-100)}.bg-amber-500{background-color:var(--color-amber-500)}.bg-amber-500\/15{background-color:#f99c0026}@supports (color:color-mix(in lab, red, red)){.bg-amber-500\/15{background-color:color-mix(in oklab, var(--color-amber-500) 15%, transparent)}}.bg-background,.bg-background\/40{background-color:var(--color-background)}@supports (color:color-mix(in lab, red, red)){.bg-background\/40{background-color:color-mix(in oklab, var(--color-background) 40%, transparent)}}.bg-background\/60{background-color:var(--color-background)}@supports (color:color-mix(in lab, red, red)){.bg-background\/60{background-color:color-mix(in oklab, var(--color-background) 60%, transparent)}}.bg-background\/80{background-color:var(--color-background)}@supports (color:color-mix(in lab, red, red)){.bg-background\/80{background-color:color-mix(in oklab, var(--color-background) 80%, transparent)}}.bg-background\/95{background-color:var(--color-background)}@supports (color:color-mix(in lab, red, red)){.bg-background\/95{background-color:color-mix(in oklab, var(--color-background) 95%, transparent)}}.bg-black{background-color:var(--color-black)}.bg-black\/10{background-color:#0000001a}@supports (color:color-mix(in lab, red, red)){.bg-black\/10{background-color:color-mix(in oklab, var(--color-black) 10%, transparent)}}.bg-black\/30{background-color:#0000004d}@supports (color:color-mix(in lab, red, red)){.bg-black\/30{background-color:color-mix(in oklab, var(--color-black) 30%, transparent)}}.bg-black\/40{background-color:#0006}@supports (color:color-mix(in lab, red, red)){.bg-black\/40{background-color:color-mix(in oklab, var(--color-black) 40%, transparent)}}.bg-black\/50{background-color:#00000080}@supports (color:color-mix(in lab, red, red)){.bg-black\/50{background-color:color-mix(in oklab, var(--color-black) 50%, transparent)}}.bg-black\/80{background-color:#000c}@supports (color:color-mix(in lab, red, red)){.bg-black\/80{background-color:color-mix(in oklab, var(--color-black) 80%, transparent)}}.bg-blue-500{background-color:var(--color-blue-500)}.bg-blue-600{background-color:var(--color-blue-600)}.bg-border{background-color:var(--color-border)}.bg-card{background-color:var(--color-card)}.bg-current{background-color:currentColor}.bg-destructive,.bg-destructive\/10{background-color:var(--color-destructive)}@supports (color:color-mix(in lab, red, red)){.bg-destructive\/10{background-color:color-mix(in oklab, var(--color-destructive) 10%, transparent)}}.bg-destructive\/15{background-color:var(--color-destructive)}@supports (color:color-mix(in lab, red, red)){.bg-destructive\/15{background-color:color-mix(in oklab, var(--color-destructive) 15%, transparent)}}.bg-destructive\/90{background-color:var(--color-destructive)}@supports (color:color-mix(in lab, red, red)){.bg-destructive\/90{background-color:color-mix(in oklab, var(--color-destructive) 90%, transparent)}}.bg-emerald-600{background-color:var(--color-emerald-600)}.bg-foreground{background-color:var(--color-foreground)}.bg-gray-400{background-color:var(--color-gray-400)}.bg-gray-600{background-color:var(--color-gray-600)}.bg-gray-900{background-color:var(--color-gray-900)}.bg-green-50{background-color:var(--color-green-50)}.bg-green-100{background-color:var(--color-green-100)}.bg-green-500{background-color:var(--color-green-500)}.bg-input{background-color:var(--color-input)}.bg-keyboard-key{background-color:var(--color-keyboard-key)}.bg-keyboard-key-active{background-color:var(--color-keyboard-key-active)}.bg-keyboard-key\/80{background-color:var(--color-keyboard-key)}@supports (color:color-mix(in lab, red, red)){.bg-keyboard-key\/80{background-color:color-mix(in oklab, var(--color-keyboard-key) 80%, transparent)}}.bg-muted{background-color:var(--color-muted)}.bg-muted-foreground{background-color:var(--color-muted-foreground)}.bg-muted\/50{background-color:var(--color-muted)}@supports (color:color-mix(in lab, red, red)){.bg-muted\/50{background-color:color-mix(in oklab, var(--color-muted) 50%, transparent)}}.bg-popover{background-color:var(--color-popover)}.bg-primary,.bg-primary\/10{background-color:var(--color-primary)}@supports (color:color-mix(in lab, red, red)){.bg-primary\/10{background-color:color-mix(in oklab, var(--color-primary) 10%, transparent)}}.bg-primary\/70{background-color:var(--color-primary)}@supports (color:color-mix(in lab, red, red)){.bg-primary\/70{background-color:color-mix(in oklab, var(--color-primary) 70%, transparent)}}.bg-red-100{background-color:var(--color-red-100)}.bg-red-500{background-color:var(--color-red-500)}.bg-red-600{background-color:var(--color-red-600)}.bg-secondary{background-color:var(--color-secondary)}.bg-slate-700{background-color:var(--color-slate-700)}.bg-slate-800\/40{background-color:#1d293d66}@supports (color:color-mix(in lab, red, red)){.bg-slate-800\/40{background-color:color-mix(in oklab, var(--color-slate-800) 40%, transparent)}}.bg-slate-800\/95{background-color:#1d293df2}@supports (color:color-mix(in lab, red, red)){.bg-slate-800\/95{background-color:color-mix(in oklab, var(--color-slate-800) 95%, transparent)}}.bg-slate-900{background-color:var(--color-slate-900)}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white)}.bg-white\/5{background-color:#ffffff0d}@supports (color:color-mix(in lab, red, red)){.bg-white\/5{background-color:color-mix(in oklab, var(--color-white) 5%, transparent)}}.bg-white\/20{background-color:#fff3}@supports (color:color-mix(in lab, red, red)){.bg-white\/20{background-color:color-mix(in oklab, var(--color-white) 20%, transparent)}}.bg-white\/50{background-color:#ffffff80}@supports (color:color-mix(in lab, red, red)){.bg-white\/50{background-color:color-mix(in oklab, var(--color-white) 50%, transparent)}}.bg-yellow-50{background-color:var(--color-yellow-50)}.bg-yellow-500{background-color:var(--color-yellow-500)}.bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.bg-gradient-to-t{--tw-gradient-position:to top in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-black\/60{--tw-gradient-from:#0009}@supports (color:color-mix(in lab, red, red)){.from-black\/60{--tw-gradient-from:color-mix(in oklab, var(--color-black) 60%, transparent)}}.from-black\/60{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.from-black\/80{--tw-gradient-from:#000c}@supports (color:color-mix(in lab, red, red)){.from-black\/80{--tw-gradient-from:color-mix(in oklab, var(--color-black) 80%, transparent)}}.from-black\/80{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.from-muted\/50{--tw-gradient-from:var(--color-muted)}@supports (color:color-mix(in lab, red, red)){.from-muted\/50{--tw-gradient-from:color-mix(in oklab, var(--color-muted) 50%, transparent)}}.from-muted\/50{--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.to-muted{--tw-gradient-to:var(--color-muted);--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.to-transparent{--tw-gradient-to:transparent;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))}.bg-cover{background-size:cover}.bg-center{background-position:50%}.bg-no-repeat{background-repeat:no-repeat}.fill-current{fill:currentColor}.fill-white{fill:var(--color-white)}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.\!p-0{padding:calc(var(--spacing) * 0)!important}.p-0{padding:calc(var(--spacing) * 0)}.p-0\.5{padding:calc(var(--spacing) * .5)}.p-1{padding:calc(var(--spacing) * 1)}.p-2{padding:calc(var(--spacing) * 2)}.p-3{padding:calc(var(--spacing) * 3)}.p-4{padding:calc(var(--spacing) * 4)}.p-5{padding:calc(var(--spacing) * 5)}.p-6{padding:calc(var(--spacing) * 6)}.p-8{padding:calc(var(--spacing) * 8)}.p-12{padding:calc(var(--spacing) * 12)}.p-px{padding:1px}.px-1\.5{padding-inline:calc(var(--spacing) * 1.5)}.px-2{padding-inline:calc(var(--spacing) * 2)}.px-2\.5{padding-inline:calc(var(--spacing) * 2.5)}.px-3{padding-inline:calc(var(--spacing) * 3)}.px-4{padding-inline:calc(var(--spacing) * 4)}.px-5{padding-inline:calc(var(--spacing) * 5)}.px-6{padding-inline:calc(var(--spacing) * 6)}.px-8{padding-inline:calc(var(--spacing) * 8)}.py-0\.5{padding-block:calc(var(--spacing) * .5)}.py-1{padding-block:calc(var(--spacing) * 1)}.py-1\.5{padding-block:calc(var(--spacing) * 1.5)}.py-2{padding-block:calc(var(--spacing) * 2)}.py-3{padding-block:calc(var(--spacing) * 3)}.py-4{padding-block:calc(var(--spacing) * 4)}.py-6{padding-block:calc(var(--spacing) * 6)}.py-8{padding-block:calc(var(--spacing) * 8)}.py-10{padding-block:calc(var(--spacing) * 10)}.py-12{padding-block:calc(var(--spacing) * 12)}.pt-0{padding-top:calc(var(--spacing) * 0)}.pt-1{padding-top:calc(var(--spacing) * 1)}.pt-2{padding-top:calc(var(--spacing) * 2)}.pt-3{padding-top:calc(var(--spacing) * 3)}.pr-2{padding-right:calc(var(--spacing) * 2)}.pr-9{padding-right:calc(var(--spacing) * 9)}.pr-10{padding-right:calc(var(--spacing) * 10)}.pb-4{padding-bottom:calc(var(--spacing) * 4)}.pl-8{padding-left:calc(var(--spacing) * 8)}.pl-9{padding-left:calc(var(--spacing) * 9)}.pl-10{padding-left:calc(var(--spacing) * 10)}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.text-start{text-align:start}.align-middle{vertical-align:middle}.font-mono{font-family:var(--font-mono)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.text-5xl{font-size:var(--text-5xl);line-height:var(--tw-leading,var(--text-5xl--line-height))}.text-8xl{font-size:var(--text-8xl);line-height:var(--tw-leading,var(--text-8xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[0\.8rem\]{font-size:.8rem}.text-\[10px\]{font-size:10px}.leading-none{--tw-leading:1;line-height:1}.leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.leading-snug{--tw-leading:var(--leading-snug);line-height:var(--leading-snug)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-black{--tw-font-weight:var(--font-weight-black);font-weight:var(--font-weight-black)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.tracking-widest{--tw-tracking:var(--tracking-widest);letter-spacing:var(--tracking-widest)}.whitespace-nowrap{white-space:nowrap}.text-\[var\(--destructive\)\]{color:var(--destructive)}.text-\[var\(--foreground\)\]{color:var(--foreground)}.text-accent-foreground{color:var(--color-accent-foreground)}.text-amber-500{color:var(--color-amber-500)}.text-amber-900{color:var(--color-amber-900)}.text-background{color:var(--color-background)}.text-blue-500{color:var(--color-blue-500)}.text-card-foreground{color:var(--color-card-foreground)}.text-current{color:currentColor}.text-destructive{color:var(--color-destructive)}.text-destructive-foreground{color:var(--color-destructive-foreground)}.text-emerald-500{color:var(--color-emerald-500)}.text-foreground{color:var(--color-foreground)}.text-gray-400{color:var(--color-gray-400)}.text-green-500{color:var(--color-green-500)}.text-green-600{color:var(--color-green-600)}.text-green-700{color:var(--color-green-700)}.text-green-900{color:var(--color-green-900)}.text-input{color:var(--color-input)}.text-keyboard-key-active-foreground{color:var(--color-keyboard-key-active-foreground)}.text-keyboard-key-foreground{color:var(--color-keyboard-key-foreground)}.text-muted-foreground,.text-muted-foreground\/50{color:var(--color-muted-foreground)}@supports (color:color-mix(in lab, red, red)){.text-muted-foreground\/50{color:color-mix(in oklab, var(--color-muted-foreground) 50%, transparent)}}.text-muted-foreground\/60{color:var(--color-muted-foreground)}@supports (color:color-mix(in lab, red, red)){.text-muted-foreground\/60{color:color-mix(in oklab, var(--color-muted-foreground) 60%, transparent)}}.text-popover-foreground{color:var(--color-popover-foreground)}.text-primary{color:var(--color-primary)}.text-primary-foreground{color:var(--color-primary-foreground)}.text-red-500{color:var(--color-red-500)}.text-red-600{color:var(--color-red-600)}.text-red-700{color:var(--color-red-700)}.text-red-800{color:var(--color-red-800)}.text-red-900{color:var(--color-red-900)}.text-secondary-foreground{color:var(--color-secondary-foreground)}.text-white{color:var(--color-white)}.text-white\/60{color:#fff9}@supports (color:color-mix(in lab, red, red)){.text-white\/60{color:color-mix(in oklab, var(--color-white) 60%, transparent)}}.text-white\/70{color:#ffffffb3}@supports (color:color-mix(in lab, red, red)){.text-white\/70{color:color-mix(in oklab, var(--color-white) 70%, transparent)}}.text-yellow-600{color:var(--color-yellow-600)}.text-yellow-700{color:var(--color-yellow-700)}.text-yellow-800{color:var(--color-yellow-800)}.uppercase{text-transform:uppercase}.italic{font-style:italic}.tabular-nums{--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,)}.no-underline{text-decoration-line:none}.underline{text-decoration-line:underline}.underline-offset-4{text-underline-offset:4px}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.\!opacity-100{opacity:1!important}.opacity-0{opacity:0}.opacity-50{opacity:.5}.opacity-60{opacity:.6}.opacity-70{opacity:.7}.opacity-80{opacity:.8}.opacity-100{opacity:1}.shadow-\[0_0_0_2px_rgba\(245\,158\,11\,0\.2\)\]{--tw-shadow:0 0 0 2px var(--tw-shadow-color,#f59e0b33);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a), 0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a), 0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.ring{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.ring-0{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.ring-2{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.ring-accent{--tw-ring-color:var(--color-accent)}.ring-primary{--tw-ring-color:var(--color-primary)}.ring-ring{--tw-ring-color:var(--color-ring)}.ring-offset-background{--tw-ring-offset-color:var(--color-background)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.drop-shadow{--tw-drop-shadow-size:drop-shadow(0 1px 2px var(--tw-drop-shadow-color,#0000001a)) drop-shadow(0 1px 1px var(--tw-drop-shadow-color,#0000000f));--tw-drop-shadow:drop-shadow(0 1px 2px #0000001a) drop-shadow(0 1px 1px #0000000f);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.drop-shadow-lg{--tw-drop-shadow-size:drop-shadow(0 4px 4px var(--tw-drop-shadow-color,#00000026));--tw-drop-shadow:drop-shadow(var(--drop-shadow-lg));filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.backdrop-blur-sm{--tw-backdrop-blur:blur(var(--blur-sm));-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.backdrop-blur-xl{--tw-backdrop-blur:blur(var(--blur-xl));-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[height\]{transition-property:height;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[width\]{transition-property:width;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-100{--tw-duration:.1s;transition-duration:.1s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.duration-1000{--tw-duration:1s;transition-duration:1s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-linear{--tw-ease:linear;transition-timing-function:linear}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.fade-in-0{--tw-enter-opacity:0}.fade-in-80{--tw-enter-opacity:.8}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.zoom-in-95{--tw-enter-scale:.95}.paused{animation-play-state:paused}.running{animation-play-state:running}@media (hover:hover){.group-hover\:opacity-100:is(:where(.group):hover *){opacity:1}}.group-data-\[state\=open\]\:rotate-180:is(:where(.group)[data-state=open] *){rotate:180deg}.group-\[\.toast\]\:bg-muted:is(:where(.group).toast *){background-color:var(--color-muted)}.group-\[\.toast\]\:bg-primary:is(:where(.group).toast *){background-color:var(--color-primary)}.group-\[\.toast\]\:text-muted-foreground:is(:where(.group).toast *){color:var(--color-muted-foreground)}.group-\[\.toast\]\:text-primary-foreground:is(:where(.group).toast *){color:var(--color-primary-foreground)}.group-\[\.toaster\]\:border-border:is(:where(.group).toaster *){border-color:var(--color-border)}.group-\[\.toaster\]\:bg-background:is(:where(.group).toaster *){background-color:var(--color-background)}.group-\[\.toaster\]\:text-foreground:is(:where(.group).toaster *){color:var(--color-foreground)}.group-\[\.toaster\]\:shadow-lg:is(:where(.group).toaster *){--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a), 0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled~*){cursor:not-allowed}.peer-disabled\:opacity-70:is(:where(.peer):disabled~*){opacity:.7}.file\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\:bg-transparent::file-selector-button{background-color:#0000}.file\:text-sm::file-selector-button{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.file\:text-foreground::file-selector-button{color:var(--color-foreground)}.placeholder\:text-muted-foreground::placeholder{color:var(--color-muted-foreground)}.placeholder\:opacity-50::placeholder{opacity:.5}.focus-within\:relative:focus-within{position:relative}.focus-within\:z-20:focus-within{z-index:20}@media (hover:hover){.hover\:-translate-y-0\.5:hover{--tw-translate-y:calc(var(--spacing) * -.5);translate:var(--tw-translate-x) var(--tw-translate-y)}.hover\:scale-105:hover{--tw-scale-x:105%;--tw-scale-y:105%;--tw-scale-z:105%;scale:var(--tw-scale-x) var(--tw-scale-y)}.hover\:scale-110:hover{--tw-scale-x:110%;--tw-scale-y:110%;--tw-scale-z:110%;scale:var(--tw-scale-x) var(--tw-scale-y)}.hover\:border-border:hover{border-color:var(--color-border)}.hover\:border-primary:hover{border-color:var(--color-primary)}.hover\:border-white\/25:hover{border-color:#ffffff40}@supports (color:color-mix(in lab, red, red)){.hover\:border-white\/25:hover{border-color:color-mix(in oklab, var(--color-white) 25%, transparent)}}.hover\:border-white\/30:hover{border-color:#ffffff4d}@supports (color:color-mix(in lab, red, red)){.hover\:border-white\/30:hover{border-color:color-mix(in oklab, var(--color-white) 30%, transparent)}}.hover\:bg-\[\#b91c1c\]:hover{background-color:#b91c1c}.hover\:bg-\[var\(--accent\)\]:hover{background-color:var(--accent)}.hover\:bg-\[var\(--muted\)\]:hover{background-color:var(--muted)}.hover\:bg-accent:hover{background-color:var(--color-accent)}.hover\:bg-background:hover{background-color:var(--color-background)}.hover\:bg-black\/60:hover{background-color:#0009}@supports (color:color-mix(in lab, red, red)){.hover\:bg-black\/60:hover{background-color:color-mix(in oklab, var(--color-black) 60%, transparent)}}.hover\:bg-black\/70:hover{background-color:#000000b3}@supports (color:color-mix(in lab, red, red)){.hover\:bg-black\/70:hover{background-color:color-mix(in oklab, var(--color-black) 70%, transparent)}}.hover\:bg-blue-600:hover{background-color:var(--color-blue-600)}.hover\:bg-blue-700:hover{background-color:var(--color-blue-700)}.hover\:bg-destructive\/10:hover{background-color:var(--color-destructive)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-destructive\/10:hover{background-color:color-mix(in oklab, var(--color-destructive) 10%, transparent)}}.hover\:bg-destructive\/80:hover{background-color:var(--color-destructive)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-destructive\/80:hover{background-color:color-mix(in oklab, var(--color-destructive) 80%, transparent)}}.hover\:bg-destructive\/90:hover{background-color:var(--color-destructive)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab, var(--color-destructive) 90%, transparent)}}.hover\:bg-emerald-700:hover{background-color:var(--color-emerald-700)}.hover\:bg-gray-700:hover{background-color:var(--color-gray-700)}.hover\:bg-green-600:hover{background-color:var(--color-green-600)}.hover\:bg-keyboard-key-active:hover{background-color:var(--color-keyboard-key-active)}.hover\:bg-muted:hover,.hover\:bg-muted\/50:hover{background-color:var(--color-muted)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-muted\/50:hover{background-color:color-mix(in oklab, var(--color-muted) 50%, transparent)}}.hover\:bg-muted\/80:hover{background-color:var(--color-muted)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-muted\/80:hover{background-color:color-mix(in oklab, var(--color-muted) 80%, transparent)}}.hover\:bg-primary\/80:hover{background-color:var(--color-primary)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-primary\/80:hover{background-color:color-mix(in oklab, var(--color-primary) 80%, transparent)}}.hover\:bg-primary\/90:hover{background-color:var(--color-primary)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-primary\/90:hover{background-color:color-mix(in oklab, var(--color-primary) 90%, transparent)}}.hover\:bg-red-700:hover{background-color:var(--color-red-700)}.hover\:bg-secondary:hover,.hover\:bg-secondary\/80:hover{background-color:var(--color-secondary)}@supports (color:color-mix(in lab, red, red)){.hover\:bg-secondary\/80:hover{background-color:color-mix(in oklab, var(--color-secondary) 80%, transparent)}}.hover\:bg-slate-800\/60:hover{background-color:#1d293d99}@supports (color:color-mix(in lab, red, red)){.hover\:bg-slate-800\/60:hover{background-color:color-mix(in oklab, var(--color-slate-800) 60%, transparent)}}.hover\:bg-transparent:hover{background-color:#0000}.hover\:bg-white\/10:hover{background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.hover\:bg-white\/10:hover{background-color:color-mix(in oklab, var(--color-white) 10%, transparent)}}.hover\:bg-white\/20:hover{background-color:#fff3}@supports (color:color-mix(in lab, red, red)){.hover\:bg-white\/20:hover{background-color:color-mix(in oklab, var(--color-white) 20%, transparent)}}.hover\:bg-white\/40:hover{background-color:#fff6}@supports (color:color-mix(in lab, red, red)){.hover\:bg-white\/40:hover{background-color:color-mix(in oklab, var(--color-white) 40%, transparent)}}.hover\:bg-yellow-600:hover{background-color:var(--color-yellow-600)}.hover\:text-accent-foreground:hover{color:var(--color-accent-foreground)}.hover\:text-destructive:hover{color:var(--color-destructive)}.hover\:text-foreground:hover{color:var(--color-foreground)}.hover\:text-keyboard-key-active-foreground:hover{color:var(--color-keyboard-key-active-foreground)}.hover\:text-primary:hover{color:var(--color-primary)}.hover\:text-white:hover{color:var(--color-white)}.hover\:no-underline:hover{text-decoration-line:none}.hover\:underline:hover{text-decoration-line:underline}.hover\:opacity-100:hover{opacity:1}.hover\:shadow-md:hover{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a), 0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}}.focus\:bg-accent:focus{background-color:var(--color-accent)}.focus\:text-accent-foreground:focus{color:var(--color-accent-foreground)}.focus\:shadow-md:focus{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a), 0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.focus\:ring-ring:focus{--tw-ring-color:var(--color-ring)}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.focus-visible\:ring-red-500:focus-visible{--tw-ring-color:var(--color-red-500)}.focus-visible\:ring-ring:focus-visible{--tw-ring-color:var(--color-ring)}.focus-visible\:ring-offset-2:focus-visible{--tw-ring-offset-width:2px;--tw-ring-offset-shadow:var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)}.focus-visible\:ring-offset-background:focus-visible{--tw-ring-offset-color:var(--color-background)}.focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.active\:bg-\[var\(--primary\)\]:active{background-color:var(--primary)}.active\:bg-keyboard-key-active:active{background-color:var(--color-keyboard-key-active)}.active\:text-\[var\(--primary-foreground\)\]:active{color:var(--primary-foreground)}.active\:text-keyboard-key-active-foreground:active{color:var(--color-keyboard-key-active-foreground)}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:opacity-60:disabled{opacity:.6}.data-\[active\]\:bg-accent\/50[data-active]{background-color:var(--color-accent)}@supports (color:color-mix(in lab, red, red)){.data-\[active\]\:bg-accent\/50[data-active]{background-color:color-mix(in oklab, var(--color-accent) 50%, transparent)}}.data-\[disabled\]\:pointer-events-none[data-disabled]{pointer-events:none}.data-\[disabled\]\:text-muted-foreground[data-disabled]{color:var(--color-muted-foreground)}.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[highlighted\]\:bg-accent[data-highlighted]{background-color:var(--color-accent)}.data-\[highlighted\]\:text-accent-foreground[data-highlighted]{color:var(--color-accent-foreground)}.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion=from-end]{--tw-enter-translate-x:calc(52*var(--spacing))}.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion=from-start]{--tw-enter-translate-x:calc(52*var(--spacing)*-1)}.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion=to-end]{--tw-exit-translate-x:calc(52*var(--spacing))}.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion=to-start]{--tw-exit-translate-x:calc(52*var(--spacing)*-1)}.data-\[motion\^\=from-\]\:animate-in[data-motion^=from-]{animation:enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.data-\[motion\^\=from-\]\:fade-in[data-motion^=from-]{--tw-enter-opacity:0}.data-\[motion\^\=to-\]\:animate-out[data-motion^=to-]{animation:exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.data-\[motion\^\=to-\]\:fade-out[data-motion^=to-]{--tw-exit-opacity:0}.data-\[orientation\=vertical\]\:h-full[data-orientation=vertical]{height:100%}.data-\[orientation\=vertical\]\:w-2[data-orientation=vertical]{width:calc(var(--spacing) * 2)}.data-\[orientation\=vertical\]\:w-full[data-orientation=vertical]{width:100%}.data-\[orientation\=vertical\]\:flex-col[data-orientation=vertical]{flex-direction:column}.data-\[outside-view\]\:text-muted-foreground[data-outside-view]{color:var(--color-muted-foreground)}.data-\[outside-view\]\:opacity-50[data-outside-view]{opacity:.5}.data-\[placeholder\]\:text-muted-foreground[data-placeholder]{color:var(--color-muted-foreground)}.data-\[selected\]\:bg-primary[data-selected]{background-color:var(--color-primary)}.data-\[selected\]\:text-primary-foreground[data-selected]{color:var(--color-primary-foreground)}.data-\[selected\]\:opacity-100[data-selected]{opacity:1}@media (hover:hover){.data-\[selected\]\:hover\:bg-primary[data-selected]:hover{background-color:var(--color-primary)}.data-\[selected\]\:hover\:text-primary-foreground[data-selected]:hover{color:var(--color-primary-foreground)}}.data-\[selected\]\:focus\:bg-primary[data-selected]:focus{background-color:var(--color-primary)}.data-\[selected\]\:focus\:text-primary-foreground[data-selected]:focus{color:var(--color-primary-foreground)}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom]{--tw-translate-y:calc(var(--spacing) * 1);translate:var(--tw-translate-x) var(--tw-translate-y)}.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom]{--tw-enter-translate-y:calc(2*var(--spacing)*-1)}.data-\[side\=left\]\:-translate-x-1[data-side=left]{--tw-translate-x:calc(var(--spacing) * -1);translate:var(--tw-translate-x) var(--tw-translate-y)}.data-\[side\=left\]\:slide-in-from-right-2[data-side=left]{--tw-enter-translate-x:calc(2*var(--spacing))}.data-\[side\=right\]\:translate-x-1[data-side=right]{--tw-translate-x:calc(var(--spacing) * 1);translate:var(--tw-translate-x) var(--tw-translate-y)}.data-\[side\=right\]\:slide-in-from-left-2[data-side=right]{--tw-enter-translate-x:calc(2*var(--spacing)*-1)}.data-\[side\=top\]\:-translate-y-1[data-side=top]{--tw-translate-y:calc(var(--spacing) * -1);translate:var(--tw-translate-x) var(--tw-translate-y)}.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top]{--tw-enter-translate-y:calc(2*var(--spacing))}.data-\[state\=active\]\:bg-background[data-state=active]{background-color:var(--color-background)}.data-\[state\=active\]\:text-foreground[data-state=active]{color:var(--color-foreground)}.data-\[state\=active\]\:shadow-sm[data-state=active]{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)}.data-\[state\=checked\]\:translate-x-5[data-state=checked]{--tw-translate-x:calc(var(--spacing) * 5);translate:var(--tw-translate-x) var(--tw-translate-y)}.data-\[state\=checked\]\:bg-primary[data-state=checked]{background-color:var(--color-primary)}.data-\[state\=checked\]\:text-primary-foreground[data-state=checked]{color:var(--color-primary-foreground)}.data-\[state\=closed\]\:animate-accordion-up[data-state=closed]{animation:var(--animate-accordion-up)}.data-\[state\=closed\]\:animate-collapsible-up[data-state=closed]{animation:collapsible-up var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.data-\[state\=closed\]\:animate-out[data-state=closed]{animation:exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.data-\[state\=closed\]\:duration-300[data-state=closed]{--tw-duration:.3s;transition-duration:.3s}.data-\[state\=closed\]\:fade-out-0[data-state=closed]{--tw-exit-opacity:0}.data-\[state\=closed\]\:zoom-out-95[data-state=closed]{--tw-exit-scale:.95}.data-\[state\=closed\]\:slide-out-to-bottom[data-state=closed]{--tw-exit-translate-y:100%}.data-\[state\=closed\]\:slide-out-to-left[data-state=closed]{--tw-exit-translate-x:-100%}.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state=closed]{--tw-exit-translate-x:calc(1 / 2*-100%)}.data-\[state\=closed\]\:slide-out-to-right[data-state=closed]{--tw-exit-translate-x:100%}.data-\[state\=closed\]\:slide-out-to-top[data-state=closed]{--tw-exit-translate-y:-100%}.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state=closed]{--tw-exit-translate-y:calc(48%*-1)}.data-\[state\=hidden\]\:animate-out[data-state=hidden]{animation:exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.data-\[state\=hidden\]\:fade-out[data-state=hidden]{--tw-exit-opacity:0}.data-\[state\=open\]\:animate-accordion-down[data-state=open]{animation:var(--animate-accordion-down)}.data-\[state\=open\]\:animate-collapsible-down[data-state=open]{animation:collapsible-down var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.data-\[state\=open\]\:animate-in[data-state=open]{animation:enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.data-\[state\=open\]\:bg-accent[data-state=open],.data-\[state\=open\]\:bg-accent\/50[data-state=open]{background-color:var(--color-accent)}@supports (color:color-mix(in lab, red, red)){.data-\[state\=open\]\:bg-accent\/50[data-state=open]{background-color:color-mix(in oklab, var(--color-accent) 50%, transparent)}}.data-\[state\=open\]\:bg-secondary[data-state=open]{background-color:var(--color-secondary)}.data-\[state\=open\]\:text-accent-foreground[data-state=open]{color:var(--color-accent-foreground)}.data-\[state\=open\]\:text-muted-foreground[data-state=open]{color:var(--color-muted-foreground)}.data-\[state\=open\]\:duration-500[data-state=open]{--tw-duration:.5s;transition-duration:.5s}.data-\[state\=open\]\:fade-in-0[data-state=open]{--tw-enter-opacity:0}.data-\[state\=open\]\:zoom-in-90[data-state=open]{--tw-enter-scale:.9}.data-\[state\=open\]\:zoom-in-95[data-state=open]{--tw-enter-scale:.95}.data-\[state\=open\]\:slide-in-from-bottom[data-state=open]{--tw-enter-translate-y:100%}.data-\[state\=open\]\:slide-in-from-left[data-state=open]{--tw-enter-translate-x:-100%}.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state=open]{--tw-enter-translate-x:calc(1 / 2*-100%)}.data-\[state\=open\]\:slide-in-from-right[data-state=open]{--tw-enter-translate-x:100%}.data-\[state\=open\]\:slide-in-from-top[data-state=open]{--tw-enter-translate-y:-100%}.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state=open]{--tw-enter-translate-y:calc(48%*-1)}.data-\[state\=selected\]\:bg-muted[data-state=selected]{background-color:var(--color-muted)}.data-\[state\=unchecked\]\:bg-input[data-state=unchecked]{background-color:var(--color-input)}.data-\[state\=visible\]\:animate-in[data-state=visible]{animation:enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none)}.data-\[state\=visible\]\:fade-in[data-state=visible]{--tw-enter-opacity:0}.data-\[unavailable\]\:text-destructive-foreground[data-unavailable]{color:var(--color-destructive-foreground)}.data-\[unavailable\]\:line-through[data-unavailable]{text-decoration-line:line-through}@media (min-width:40rem){.sm\:mt-0{margin-top:calc(var(--spacing) * 0)}.sm\:block{display:block}.sm\:max-w-\[400px\]{max-width:400px}.sm\:max-w-\[425px\]{max-width:425px}.sm\:max-w-\[500px\]{max-width:500px}.sm\:max-w-sm{max-width:var(--container-sm)}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:justify-end{justify-content:flex-end}.sm\:gap-x-2{column-gap:calc(var(--spacing) * 2)}.sm\:gap-x-4{column-gap:calc(var(--spacing) * 4)}.sm\:gap-y-0{row-gap:calc(var(--spacing) * 0)}.sm\:rounded-lg{border-radius:var(--radius-lg)}.sm\:pr-2\.5{padding-right:calc(var(--spacing) * 2.5)}.sm\:text-left{text-align:left}}@media (min-width:48rem){.md\:absolute{position:absolute}.md\:w-\[--reka-navigation-menu-viewport-width\]{width:--reka-navigation-menu-viewport-width}.md\:w-\[400px\]{width:400px}.md\:w-\[500px\]{width:500px}.md\:w-auto{width:auto}.md\:w-full{width:100%}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:64rem){.lg\:w-\[500px\]{width:500px}.lg\:w-\[600px\]{width:600px}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:grid-cols-\[\.75fr_1fr\]{grid-template-columns:.75fr 1fr}}@media (prefers-color-scheme:dark){.dark\:border-destructive{border-color:var(--color-destructive)}.dark\:bg-amber-500\/20{background-color:#f99c0033}@supports (color:color-mix(in lab, red, red)){.dark\:bg-amber-500\/20{background-color:color-mix(in oklab, var(--color-amber-500) 20%, transparent)}}.dark\:bg-white\/10{background-color:#ffffff1a}@supports (color:color-mix(in lab, red, red)){.dark\:bg-white\/10{background-color:color-mix(in oklab, var(--color-white) 10%, transparent)}}.dark\:text-amber-200{color:var(--color-amber-200)}}.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading]{padding-inline:calc(var(--spacing) * 2)}.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading]{padding-block:calc(var(--spacing) * 1.5)}.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading]{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading]{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading]{color:var(--color-muted-foreground)}.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group]{padding-inline:calc(var(--spacing) * 2)}.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden])~[cmdk-group]{padding-top:calc(var(--spacing) * 0)}.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg{height:calc(var(--spacing) * 5)}.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg{width:calc(var(--spacing) * 5)}.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input]{height:calc(var(--spacing) * 12)}.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item]{padding-inline:calc(var(--spacing) * 2)}.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item]{padding-block:calc(var(--spacing) * 3)}.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg{height:calc(var(--spacing) * 5)}.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg{width:calc(var(--spacing) * 5)}.\[\&_p\]\:leading-relaxed p{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:size-4 svg{width:calc(var(--spacing) * 4);height:calc(var(--spacing) * 4)}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&_tr\]\:border-b tr{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.\[\&_tr\:last-child\]\:border-0 tr:last-child{border-style:var(--tw-border-style);border-width:0}.\[\&\:has\(\[data-selected\]\)\]\:rounded-md:has([data-selected]){border-radius:var(--radius-md)}.\[\&\:has\(\[data-selected\]\)\]\:bg-accent:has([data-selected]),.\[\&\:has\(\[data-selected\]\[data-outside-view\]\)\]\:bg-accent\/50:has([data-selected][data-outside-view]){background-color:var(--color-accent)}@supports (color:color-mix(in lab, red, red)){.\[\&\:has\(\[data-selected\]\[data-outside-view\]\)\]\:bg-accent\/50:has([data-selected][data-outside-view]){background-color:color-mix(in oklab, var(--color-accent) 50%, transparent)}}.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){padding-right:calc(var(--spacing) * 0)}.\[\&\>span\]\:truncate>span{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.\[\&\>svg\]\:absolute>svg{position:absolute}.\[\&\>svg\]\:top-4>svg{top:calc(var(--spacing) * 4)}.\[\&\>svg\]\:left-4>svg{left:calc(var(--spacing) * 4)}.\[\&\>svg\]\:size-4>svg{width:calc(var(--spacing) * 4);height:calc(var(--spacing) * 4)}.\[\&\>svg\]\:shrink-0>svg{flex-shrink:0}.\[\&\>svg\]\:text-destructive>svg{color:var(--color-destructive)}.\[\&\>svg\]\:text-foreground>svg{color:var(--color-foreground)}.\[\&\>svg\+div\]\:translate-y-\[-3px\]>svg+div{--tw-translate-y:-3px;translate:var(--tw-translate-x) var(--tw-translate-y)}.\[\&\>svg\~\*\]\:pl-7>svg~*{padding-left:calc(var(--spacing) * 7)}.\[\&\>tr\]\:last\:border-b-0>tr:last-child{border-bottom-style:var(--tw-border-style);border-bottom-width:0}.\[\&\[data-outside-view\]\[data-selected\]\]\:bg-accent\/50[data-outside-view][data-selected]{background-color:var(--color-accent)}@supports (color:color-mix(in lab, red, red)){.\[\&\[data-outside-view\]\[data-selected\]\]\:bg-accent\/50[data-outside-view][data-selected]{background-color:color-mix(in oklab, var(--color-accent) 50%, transparent)}}.\[\&\[data-outside-view\]\[data-selected\]\]\:text-muted-foreground[data-outside-view][data-selected]{color:var(--color-muted-foreground)}.\[\&\[data-outside-view\]\[data-selected\]\]\:opacity-30[data-outside-view][data-selected]{opacity:.3}.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg{rotate:180deg}.\[\&\[data-today\]\:not\(\[data-selected\]\)\]\:bg-accent[data-today]:not([data-selected]){background-color:var(--color-accent)}.\[\&\[data-today\]\:not\(\[data-selected\]\)\]\:text-accent-foreground[data-today]:not([data-selected]){color:var(--color-accent-foreground)}}@property --tw-animation-delay{syntax:"*";inherits:false;initial-value:0s}@property --tw-animation-direction{syntax:"*";inherits:false;initial-value:normal}@property --tw-animation-duration{syntax:"*";inherits:false}@property --tw-animation-fill-mode{syntax:"*";inherits:false;initial-value:none}@property --tw-animation-iteration-count{syntax:"*";inherits:false;initial-value:1}@property --tw-enter-blur{syntax:"*";inherits:false;initial-value:0}@property --tw-enter-opacity{syntax:"*";inherits:false;initial-value:1}@property --tw-enter-rotate{syntax:"*";inherits:false;initial-value:0}@property --tw-enter-scale{syntax:"*";inherits:false;initial-value:1}@property --tw-enter-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-enter-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-blur{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-opacity{syntax:"*";inherits:false;initial-value:1}@property --tw-exit-rotate{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-scale{syntax:"*";inherits:false;initial-value:1}@property --tw-exit-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-exit-translate-y{syntax:"*";inherits:false;initial-value:0}@keyframes accordion-down{0%{height:0}to{height:var(--radix-accordion-content-height,var(--bits-accordion-content-height,var(--reka-accordion-content-height,var(--kb-accordion-content-height,var(--ngp-accordion-content-height,auto)))))}}@keyframes accordion-up{0%{height:var(--radix-accordion-content-height,var(--bits-accordion-content-height,var(--reka-accordion-content-height,var(--kb-accordion-content-height,var(--ngp-accordion-content-height,auto)))))}to{height:0}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-ordinal{syntax:"*";inherits:false}@property --tw-slashed-zero{syntax:"*";inherits:false}@property --tw-numeric-figure{syntax:"*";inherits:false}@property --tw-numeric-spacing{syntax:"*";inherits:false}@property --tw-numeric-fraction{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}@keyframes pulse{50%{opacity:.5}}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));filter:blur(var(--tw-enter-blur,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));filter:blur(var(--tw-exit-blur,0))}}@keyframes collapsible-down{0%{height:0}to{height:var(--radix-collapsible-content-height,var(--bits-collapsible-content-height,var(--reka-collapsible-content-height,var(--kb-collapsible-content-height,auto))))}}@keyframes collapsible-up{0%{height:var(--radix-collapsible-content-height,var(--bits-collapsible-content-height,var(--reka-collapsible-content-height,var(--kb-collapsible-content-height,auto))))}to{height:0}}
package/package.json ADDED
@@ -0,0 +1,135 @@
1
+ {
2
+ "name": "@gxp-dev/app-ui",
3
+ "version": "0.1.6",
4
+ "type": "module",
5
+ "packageManager": "pnpm@9.15.0",
6
+ "files": [
7
+ "dist",
8
+ "src",
9
+ ".storybook",
10
+ "tsconfig.json"
11
+ ],
12
+ "main": "./dist/index.js",
13
+ "module": "./dist/index.js",
14
+ "types": "./dist/index.d.ts",
15
+ "exports": {
16
+ ".": {
17
+ "import": "./dist/index.js",
18
+ "types": "./dist/index.d.ts"
19
+ },
20
+ "./styles": "./dist/styles/index.css",
21
+ "./styles/base": "./dist/styles/base.css",
22
+ "./styles/themes/*": "./dist/styles/themes/*"
23
+ },
24
+ "scripts": {
25
+ "dev": "vite",
26
+ "build": "vite build && npm run build:css",
27
+ "build:css": "tailwindcss -i src/styles/tailwind.css -o dist/styles/index.css --minify",
28
+ "preview": "vite preview",
29
+ "lint": "eslint src --ext .ts,.vue",
30
+ "typecheck": "vue-tsc --noEmit",
31
+ "test": "vitest",
32
+ "test:run": "vitest run",
33
+ "test:coverage": "vitest --coverage",
34
+ "test:ui": "vitest --ui",
35
+ "storybook": "storybook dev -p 6006",
36
+ "storybook:build": "storybook build -o storybook-static && pnpm manifest",
37
+ "manifest": "node scripts/build-library-manifest.mjs",
38
+ "manifest:pretty": "node scripts/build-library-manifest.mjs --pretty",
39
+ "prepublishOnly": "npm run build"
40
+ },
41
+ "peerDependencies": {
42
+ "@storybook/addon-a11y": "^9.1.0",
43
+ "@storybook/addon-mcp": "^0.6.0",
44
+ "@storybook/addon-themes": "^9.1.0",
45
+ "@storybook/vue3-vite": "^9.1.0",
46
+ "storybook": "^9.1.0",
47
+ "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
48
+ "vue": "^3.4.0"
49
+ },
50
+ "peerDependenciesMeta": {
51
+ "storybook": {
52
+ "optional": true
53
+ },
54
+ "@storybook/vue3-vite": {
55
+ "optional": true
56
+ },
57
+ "@storybook/addon-mcp": {
58
+ "optional": true
59
+ },
60
+ "@storybook/addon-a11y": {
61
+ "optional": true
62
+ },
63
+ "@storybook/addon-themes": {
64
+ "optional": true
65
+ },
66
+ "vite": {
67
+ "optional": true
68
+ }
69
+ },
70
+ "dependencies": {
71
+ "@ericblade/quagga2": "^1.12.1",
72
+ "@fix-webm-duration/fix": "^1.0.1",
73
+ "@vee-validate/zod": "^4.15.1",
74
+ "@vueuse/core": "^14.3.0",
75
+ "class-variance-authority": "^0.7.1",
76
+ "clsx": "^2.1.1",
77
+ "lucide-vue-next": "^0.344.0",
78
+ "radix-vue": "^1.9.17",
79
+ "reka-ui": "^2.9.8",
80
+ "tailwind-merge": "^3.6.0",
81
+ "vee-validate": "^4.15.1",
82
+ "vue-sonner": "^2.0.9",
83
+ "zod": "^3.25.76"
84
+ },
85
+ "devDependencies": {
86
+ "@internationalized/date": "^3.12.1",
87
+ "@storybook/addon-a11y": "^9.1.20",
88
+ "@storybook/addon-docs": "^9.1.20",
89
+ "@storybook/addon-mcp": "^0.6.0",
90
+ "@storybook/addon-themes": "^9.1.20",
91
+ "@storybook/addon-vitest": "^9.1.20",
92
+ "@storybook/vue3": "^9.1.20",
93
+ "@storybook/vue3-vite": "^9.1.20",
94
+ "@tailwindcss/cli": "^4.3.0",
95
+ "@tailwindcss/typography": "^0.5.19",
96
+ "@tailwindcss/vite": "^4.3.0",
97
+ "@types/node": "^20.19.41",
98
+ "@vitejs/plugin-vue": "^5.2.4",
99
+ "@vitest/coverage-v8": "^3.2.4",
100
+ "@vitest/ui": "^3.2.4",
101
+ "@vue/test-utils": "^2.4.10",
102
+ "jsdom": "^24.1.3",
103
+ "storybook": "^9.1.20",
104
+ "tailwindcss": "^4.3.0",
105
+ "tw-animate-css": "^1.4.0",
106
+ "typescript": "^5.9.3",
107
+ "vite": "^5.4.21",
108
+ "vite-plugin-dts": "^3.9.1",
109
+ "vitest": "^3.2.4",
110
+ "vue": "^3.5.35",
111
+ "vue-tsc": "^2.2.12"
112
+ },
113
+ "keywords": [
114
+ "vue",
115
+ "vue3",
116
+ "components",
117
+ "ui",
118
+ "shadcn",
119
+ "tailwind"
120
+ ],
121
+ "author": "GxP Dev",
122
+ "license": "MIT",
123
+ "repository": {
124
+ "type": "git",
125
+ "url": "git+https://github.com/gxp-dev/uikit.git"
126
+ },
127
+ "bugs": {
128
+ "url": "https://github.com/gxp-dev/uikit/issues"
129
+ },
130
+ "homepage": "https://github.com/gxp-dev/uikit#readme",
131
+ "publishConfig": {
132
+ "access": "public",
133
+ "registry": "https://registry.npmjs.org/"
134
+ }
135
+ }
@@ -0,0 +1,7 @@
1
+ // Mock implementation of @ericblade/quagga2 for testing
2
+ export default {
3
+ init: () => {},
4
+ start: () => {},
5
+ stop: () => {},
6
+ onDetected: () => {},
7
+ }
@@ -0,0 +1,162 @@
1
+ import type { Meta, StoryObj } from '@storybook/vue3'
2
+ import AudioVisualizer from './AudioVisualizer.vue'
3
+
4
+ const meta = {
5
+ title: 'Domain/AudioVisualizer',
6
+ component: AudioVisualizer,
7
+ tags: ['autodocs'],
8
+ argTypes: {
9
+ mode: {
10
+ control: 'select',
11
+ options: ['frequency', 'waveform'],
12
+ description: 'Visualization mode: frequency bars or waveform timeline',
13
+ },
14
+ active: {
15
+ control: 'boolean',
16
+ description: 'Whether the visualizer is actively animating',
17
+ },
18
+ timeLimitSeconds: {
19
+ control: 'number',
20
+ description: 'Duration limit for waveform recording (seconds)',
21
+ },
22
+ marksPerSecond: {
23
+ control: 'number',
24
+ description: 'Number of waveform marks rendered per second',
25
+ },
26
+ minHeight: {
27
+ control: 'number',
28
+ description: 'Minimum height percentage for waveform marks',
29
+ },
30
+ class: {
31
+ control: 'text',
32
+ description: 'Additional CSS classes to apply',
33
+ },
34
+ },
35
+ args: {
36
+ mode: 'frequency',
37
+ active: false,
38
+ },
39
+ } satisfies Meta<typeof AudioVisualizer>
40
+
41
+ export default meta
42
+ type Story = StoryObj<typeof meta>
43
+
44
+ /**
45
+ * Default frequency mode (inactive). Shows 5 static bars at minimum height.
46
+ */
47
+ export const Default: Story = {
48
+ render: (args) => ({
49
+ components: { AudioVisualizer },
50
+ setup() {
51
+ return { args }
52
+ },
53
+ template: '<AudioVisualizer v-bind="args" />',
54
+ }),
55
+ }
56
+
57
+ /**
58
+ * Frequency mode with custom styling. The bars remain static without a live audio stream.
59
+ * In a real application, pass a MediaStream via the `stream` prop and set `active` to true
60
+ * to see animated frequency bars.
61
+ */
62
+ export const FrequencyWithCustomClass: Story = {
63
+ args: {
64
+ mode: 'frequency',
65
+ class: 'h-12 w-12 text-blue-500',
66
+ },
67
+ render: (args) => ({
68
+ components: { AudioVisualizer },
69
+ setup() {
70
+ return { args }
71
+ },
72
+ template: '<AudioVisualizer v-bind="args" />',
73
+ }),
74
+ }
75
+
76
+ /**
77
+ * Waveform mode displaying pre-recorded waveform data.
78
+ * The marks represent volume levels over time.
79
+ */
80
+ export const WaveformWithData: Story = {
81
+ args: {
82
+ mode: 'waveform',
83
+ waveformData: [
84
+ 5, 8, 12, 18, 25, 35, 50, 65, 70, 60,
85
+ 55, 45, 40, 48, 55, 62, 70, 75, 80, 72,
86
+ 60, 50, 42, 35, 28, 22, 15, 10, 8, 5,
87
+ 10, 15, 25, 35, 45, 55, 60, 50, 40, 30,
88
+ ],
89
+ timeLimitSeconds: 10,
90
+ },
91
+ render: (args) => ({
92
+ components: { AudioVisualizer },
93
+ setup() {
94
+ return { args }
95
+ },
96
+ template: '<div class="bg-gray-900 p-4 rounded-lg"><AudioVisualizer v-bind="args" /></div>',
97
+ }),
98
+ }
99
+
100
+ /**
101
+ * Waveform mode with minimal data showing a short recording.
102
+ */
103
+ export const WaveformShort: Story = {
104
+ args: {
105
+ mode: 'waveform',
106
+ waveformData: [10, 30, 50, 70, 90, 70, 50, 30, 10],
107
+ timeLimitSeconds: 5,
108
+ },
109
+ render: (args) => ({
110
+ components: { AudioVisualizer },
111
+ setup() {
112
+ return { args }
113
+ },
114
+ template: '<div class="bg-gray-900 p-4 rounded-lg"><AudioVisualizer v-bind="args" /></div>',
115
+ }),
116
+ }
117
+
118
+ /**
119
+ * Waveform mode with no data (empty state).
120
+ */
121
+ export const WaveformEmpty: Story = {
122
+ args: {
123
+ mode: 'waveform',
124
+ },
125
+ render: (args) => ({
126
+ components: { AudioVisualizer },
127
+ setup() {
128
+ return { args }
129
+ },
130
+ template: '<div class="bg-gray-900 p-4 rounded-lg"><AudioVisualizer v-bind="args" /></div>',
131
+ }),
132
+ }
133
+
134
+ /**
135
+ * Multiple visualizers showing different color variations via inherited text color.
136
+ * Frequency bars use `bg-current` so they inherit the text color.
137
+ */
138
+ export const ColorVariations: Story = {
139
+ render: () => ({
140
+ components: { AudioVisualizer },
141
+ template: `
142
+ <div class="flex items-end gap-8">
143
+ <div class="flex flex-col items-center gap-2">
144
+ <AudioVisualizer class="text-white" />
145
+ <span class="text-sm text-muted-foreground">White</span>
146
+ </div>
147
+ <div class="flex flex-col items-center gap-2">
148
+ <AudioVisualizer class="text-blue-500" />
149
+ <span class="text-sm text-muted-foreground">Blue</span>
150
+ </div>
151
+ <div class="flex flex-col items-center gap-2">
152
+ <AudioVisualizer class="text-green-500" />
153
+ <span class="text-sm text-muted-foreground">Green</span>
154
+ </div>
155
+ <div class="flex flex-col items-center gap-2">
156
+ <AudioVisualizer class="text-red-500" />
157
+ <span class="text-sm text-muted-foreground">Red</span>
158
+ </div>
159
+ </div>
160
+ `,
161
+ }),
162
+ }