@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.
- package/.storybook/main.ts +31 -0
- package/.storybook/preview.ts +26 -0
- package/README.md +440 -0
- package/dist/_virtual/_plugin-vue_export-helper.js +9 -0
- package/dist/components/domain/audio-visualizer/AudioVisualizer.vue.js +106 -0
- package/dist/components/domain/audio-visualizer/AudioVisualizer.vue2.js +4 -0
- package/dist/components/domain/barcode-scanner/BarcodeScanner.vue.js +88 -0
- package/dist/components/domain/barcode-scanner/BarcodeScanner.vue2.js +4 -0
- package/dist/components/domain/chat-transcript/ChatTranscript.vue.js +7 -0
- package/dist/components/domain/chat-transcript/ChatTranscript.vue2.js +148 -0
- package/dist/components/domain/connection-status/ConnectionStatus.vue.js +7 -0
- package/dist/components/domain/connection-status/ConnectionStatus.vue2.js +107 -0
- package/dist/components/domain/countdown/Countdown.vue.js +50 -0
- package/dist/components/domain/countdown/Countdown.vue2.js +4 -0
- package/dist/components/domain/countdown-timer/CountdownTimer.vue.js +7 -0
- package/dist/components/domain/countdown-timer/CountdownTimer.vue2.js +89 -0
- package/dist/components/domain/download-button/DownloadButton.vue.js +74 -0
- package/dist/components/domain/download-button/DownloadButton.vue2.js +4 -0
- package/dist/components/domain/file-uploader/FileUploader.vue.js +96 -0
- package/dist/components/domain/file-uploader/FileUploader.vue2.js +4 -0
- package/dist/components/domain/header/Header.vue.js +42 -0
- package/dist/components/domain/header/Header.vue2.js +4 -0
- package/dist/components/domain/leaderboard/ActivityNotifications.vue.js +7 -0
- package/dist/components/domain/leaderboard/ActivityNotifications.vue2.js +74 -0
- package/dist/components/domain/leaderboard/AwardIcon.vue.js +44 -0
- package/dist/components/domain/leaderboard/AwardIcon.vue2.js +4 -0
- package/dist/components/domain/leaderboard/Leaderboard.vue.js +7 -0
- package/dist/components/domain/leaderboard/Leaderboard.vue2.js +131 -0
- package/dist/components/domain/leaderboard/RecentActivity.vue.js +7 -0
- package/dist/components/domain/leaderboard/RecentActivity.vue2.js +101 -0
- package/dist/components/domain/live-countdown/LiveCountdown.vue.js +7 -0
- package/dist/components/domain/live-countdown/LiveCountdown.vue2.js +80 -0
- package/dist/components/domain/live-countdown-sync/LiveCountdownSync.vue.js +126 -0
- package/dist/components/domain/live-countdown-sync/LiveCountdownSync.vue2.js +4 -0
- package/dist/components/domain/local-preview/LocalPreview.vue.js +7 -0
- package/dist/components/domain/local-preview/LocalPreview.vue2.js +135 -0
- package/dist/components/domain/media-control-bar/MediaControlBar.vue.js +7 -0
- package/dist/components/domain/media-control-bar/MediaControlBar.vue2.js +109 -0
- package/dist/components/domain/message-composer/MessageComposer.vue.js +162 -0
- package/dist/components/domain/message-composer/MessageComposer.vue2.js +4 -0
- package/dist/components/domain/message-list/MessageList.vue.js +59 -0
- package/dist/components/domain/message-list/MessageList.vue2.js +4 -0
- package/dist/components/domain/on-screen-keyboard/OnScreenKeyboard.vue.js +106 -0
- package/dist/components/domain/on-screen-keyboard/OnScreenKeyboard.vue2.js +4 -0
- package/dist/components/domain/on-screen-keyboard/layouts.js +31 -0
- package/dist/components/domain/participant-item/ParticipantItem.vue.js +100 -0
- package/dist/components/domain/participant-item/ParticipantItem.vue2.js +4 -0
- package/dist/components/domain/pin-pad/PinPad.vue.js +7 -0
- package/dist/components/domain/pin-pad/PinPad.vue2.js +166 -0
- package/dist/components/domain/signature-pad/SignaturePad.vue.js +100 -0
- package/dist/components/domain/signature-pad/SignaturePad.vue2.js +4 -0
- package/dist/components/domain/social-stream-post/SocialStreamPost.vue.js +63 -0
- package/dist/components/domain/social-stream-post/SocialStreamPost.vue2.js +4 -0
- package/dist/components/domain/social-stream-post/SocialStreamPostBody.vue.js +120 -0
- package/dist/components/domain/social-stream-post/SocialStreamPostBody.vue2.js +4 -0
- package/dist/components/domain/spinner/Spinner.vue.js +38 -0
- package/dist/components/domain/spinner/Spinner.vue2.js +4 -0
- package/dist/components/domain/step-progress/StepProgress.vue.js +85 -0
- package/dist/components/domain/step-progress/StepProgress.vue2.js +4 -0
- package/dist/components/domain/theme-wrapper/ThemeWrapper.vue.js +63 -0
- package/dist/components/domain/theme-wrapper/ThemeWrapper.vue2.js +4 -0
- package/dist/components/domain/video-grid/VideoGrid.vue.js +62 -0
- package/dist/components/domain/video-grid/VideoGrid.vue2.js +4 -0
- package/dist/components/domain/video-player/VideoPlayer.vue.js +49 -0
- package/dist/components/domain/video-player/VideoPlayer.vue2.js +4 -0
- package/dist/components/domain/video-tile/VideoTile.vue.js +7 -0
- package/dist/components/domain/video-tile/VideoTile.vue2.js +105 -0
- package/dist/components/ui/accordion/Accordion.vue.js +31 -0
- package/dist/components/ui/accordion/Accordion.vue2.js +4 -0
- package/dist/components/ui/accordion/AccordionContent.vue.js +29 -0
- package/dist/components/ui/accordion/AccordionContent.vue2.js +4 -0
- package/dist/components/ui/accordion/AccordionItem.vue.js +30 -0
- package/dist/components/ui/accordion/AccordionItem.vue2.js +4 -0
- package/dist/components/ui/accordion/AccordionTrigger.vue.js +39 -0
- package/dist/components/ui/accordion/AccordionTrigger.vue2.js +4 -0
- package/dist/components/ui/alert/Alert.vue.js +22 -0
- package/dist/components/ui/alert/Alert.vue2.js +4 -0
- package/dist/components/ui/alert/AlertDescription.vue.js +19 -0
- package/dist/components/ui/alert/AlertDescription.vue2.js +4 -0
- package/dist/components/ui/alert/AlertTitle.vue.js +19 -0
- package/dist/components/ui/alert/AlertTitle.vue2.js +4 -0
- package/dist/components/ui/alert/index.js +19 -0
- package/dist/components/ui/alert-dialog/AlertDialog.vue.js +23 -0
- package/dist/components/ui/alert-dialog/AlertDialog.vue2.js +4 -0
- package/dist/components/ui/alert-dialog/AlertDialogAction.vue.js +27 -0
- package/dist/components/ui/alert-dialog/AlertDialogAction.vue2.js +4 -0
- package/dist/components/ui/alert-dialog/AlertDialogCancel.vue.js +31 -0
- package/dist/components/ui/alert-dialog/AlertDialogCancel.vue2.js +4 -0
- package/dist/components/ui/alert-dialog/AlertDialogContent.vue.js +41 -0
- package/dist/components/ui/alert-dialog/AlertDialogContent.vue2.js +4 -0
- package/dist/components/ui/alert-dialog/AlertDialogDescription.vue.js +26 -0
- package/dist/components/ui/alert-dialog/AlertDialogDescription.vue2.js +4 -0
- package/dist/components/ui/alert-dialog/AlertDialogFooter.vue.js +24 -0
- package/dist/components/ui/alert-dialog/AlertDialogFooter.vue2.js +4 -0
- package/dist/components/ui/alert-dialog/AlertDialogHeader.vue.js +19 -0
- package/dist/components/ui/alert-dialog/AlertDialogHeader.vue2.js +4 -0
- package/dist/components/ui/alert-dialog/AlertDialogTitle.vue.js +26 -0
- package/dist/components/ui/alert-dialog/AlertDialogTitle.vue2.js +4 -0
- package/dist/components/ui/alert-dialog/AlertDialogTrigger.vue.js +21 -0
- package/dist/components/ui/alert-dialog/AlertDialogTrigger.vue2.js +4 -0
- package/dist/components/ui/aspect-ratio/AspectRatio.vue.js +22 -0
- package/dist/components/ui/aspect-ratio/AspectRatio.vue2.js +4 -0
- package/dist/components/ui/avatar/Avatar.vue.js +26 -0
- package/dist/components/ui/avatar/Avatar.vue2.js +4 -0
- package/dist/components/ui/avatar/AvatarFallback.vue.js +22 -0
- package/dist/components/ui/avatar/AvatarFallback.vue2.js +4 -0
- package/dist/components/ui/avatar/AvatarImage.vue.js +24 -0
- package/dist/components/ui/avatar/AvatarImage.vue2.js +4 -0
- package/dist/components/ui/avatar/index.js +21 -0
- package/dist/components/ui/badge/Badge.vue.js +21 -0
- package/dist/components/ui/badge/Badge.vue2.js +4 -0
- package/dist/components/ui/badge/index.js +21 -0
- package/dist/components/ui/button/Button.vue.js +30 -0
- package/dist/components/ui/button/Button.vue2.js +4 -0
- package/dist/components/ui/button/index.js +32 -0
- package/dist/components/ui/calendar/Calendar.vue.js +120 -0
- package/dist/components/ui/calendar/Calendar.vue2.js +4 -0
- package/dist/components/ui/calendar/CalendarCell.vue.js +28 -0
- package/dist/components/ui/calendar/CalendarCell.vue2.js +4 -0
- package/dist/components/ui/calendar/CalendarCellTrigger.vue.js +43 -0
- package/dist/components/ui/calendar/CalendarCellTrigger.vue2.js +4 -0
- package/dist/components/ui/calendar/CalendarGrid.vue.js +27 -0
- package/dist/components/ui/calendar/CalendarGrid.vue2.js +4 -0
- package/dist/components/ui/calendar/CalendarGridBody.vue.js +21 -0
- package/dist/components/ui/calendar/CalendarGridBody.vue2.js +4 -0
- package/dist/components/ui/calendar/CalendarGridHead.vue.js +21 -0
- package/dist/components/ui/calendar/CalendarGridHead.vue2.js +4 -0
- package/dist/components/ui/calendar/CalendarGridRow.vue.js +27 -0
- package/dist/components/ui/calendar/CalendarGridRow.vue2.js +4 -0
- package/dist/components/ui/calendar/CalendarHeadCell.vue.js +27 -0
- package/dist/components/ui/calendar/CalendarHeadCell.vue2.js +4 -0
- package/dist/components/ui/calendar/CalendarHeader.vue.js +27 -0
- package/dist/components/ui/calendar/CalendarHeader.vue2.js +4 -0
- package/dist/components/ui/calendar/CalendarHeading.vue.js +29 -0
- package/dist/components/ui/calendar/CalendarHeading.vue2.js +4 -0
- package/dist/components/ui/calendar/CalendarNextButton.vue.js +36 -0
- package/dist/components/ui/calendar/CalendarNextButton.vue2.js +4 -0
- package/dist/components/ui/calendar/CalendarPrevButton.vue.js +36 -0
- package/dist/components/ui/calendar/CalendarPrevButton.vue2.js +4 -0
- package/dist/components/ui/card/Card.vue.js +24 -0
- package/dist/components/ui/card/Card.vue2.js +4 -0
- package/dist/components/ui/card/CardContent.vue.js +19 -0
- package/dist/components/ui/card/CardContent.vue2.js +4 -0
- package/dist/components/ui/card/CardDescription.vue.js +19 -0
- package/dist/components/ui/card/CardDescription.vue2.js +4 -0
- package/dist/components/ui/card/CardFooter.vue.js +19 -0
- package/dist/components/ui/card/CardFooter.vue2.js +4 -0
- package/dist/components/ui/card/CardHeader.vue.js +19 -0
- package/dist/components/ui/card/CardHeader.vue2.js +4 -0
- package/dist/components/ui/card/CardTitle.vue.js +21 -0
- package/dist/components/ui/card/CardTitle.vue2.js +4 -0
- package/dist/components/ui/checkbox/Checkbox.vue.js +49 -0
- package/dist/components/ui/checkbox/Checkbox.vue2.js +4 -0
- package/dist/components/ui/collapsible/Collapsible.vue.js +27 -0
- package/dist/components/ui/collapsible/Collapsible.vue2.js +4 -0
- package/dist/components/ui/collapsible/CollapsibleContent.vue.js +22 -0
- package/dist/components/ui/collapsible/CollapsibleContent.vue2.js +4 -0
- package/dist/components/ui/collapsible/CollapsibleTrigger.vue.js +21 -0
- package/dist/components/ui/collapsible/CollapsibleTrigger.vue2.js +4 -0
- package/dist/components/ui/command/Command.vue.js +76 -0
- package/dist/components/ui/command/Command.vue2.js +4 -0
- package/dist/components/ui/command/CommandDialog.vue.js +36 -0
- package/dist/components/ui/command/CommandDialog.vue2.js +4 -0
- package/dist/components/ui/command/CommandEmpty.vue.js +29 -0
- package/dist/components/ui/command/CommandEmpty.vue2.js +4 -0
- package/dist/components/ui/command/CommandGroup.vue.js +45 -0
- package/dist/components/ui/command/CommandGroup.vue2.js +4 -0
- package/dist/components/ui/command/CommandInput.vue.js +37 -0
- package/dist/components/ui/command/CommandInput.vue2.js +4 -0
- package/dist/components/ui/command/CommandItem.vue.js +54 -0
- package/dist/components/ui/command/CommandItem.vue2.js +4 -0
- package/dist/components/ui/command/CommandList.vue.js +29 -0
- package/dist/components/ui/command/CommandList.vue2.js +4 -0
- package/dist/components/ui/command/CommandSeparator.vue.js +28 -0
- package/dist/components/ui/command/CommandSeparator.vue2.js +4 -0
- package/dist/components/ui/command/CommandShortcut.vue.js +19 -0
- package/dist/components/ui/command/CommandShortcut.vue2.js +4 -0
- package/dist/components/ui/command/index.js +9 -0
- package/dist/components/ui/context-menu/ContextMenu.vue.js +24 -0
- package/dist/components/ui/context-menu/ContextMenu.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuCheckboxItem.vue.js +44 -0
- package/dist/components/ui/context-menu/ContextMenuCheckboxItem.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuContent.vue.js +52 -0
- package/dist/components/ui/context-menu/ContextMenuContent.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuGroup.vue.js +21 -0
- package/dist/components/ui/context-menu/ContextMenuGroup.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuItem.vue.js +35 -0
- package/dist/components/ui/context-menu/ContextMenuItem.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuLabel.vue.js +31 -0
- package/dist/components/ui/context-menu/ContextMenuLabel.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuPortal.vue.js +23 -0
- package/dist/components/ui/context-menu/ContextMenuPortal.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuRadioGroup.vue.js +24 -0
- package/dist/components/ui/context-menu/ContextMenuRadioGroup.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuRadioItem.vue.js +44 -0
- package/dist/components/ui/context-menu/ContextMenuRadioItem.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuSeparator.vue.js +21 -0
- package/dist/components/ui/context-menu/ContextMenuSeparator.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuShortcut.vue.js +19 -0
- package/dist/components/ui/context-menu/ContextMenuShortcut.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuSub.vue.js +23 -0
- package/dist/components/ui/context-menu/ContextMenuSub.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuSubContent.vue.js +49 -0
- package/dist/components/ui/context-menu/ContextMenuSubContent.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuSubTrigger.vue.js +36 -0
- package/dist/components/ui/context-menu/ContextMenuSubTrigger.vue2.js +4 -0
- package/dist/components/ui/context-menu/ContextMenuTrigger.vue.js +23 -0
- package/dist/components/ui/context-menu/ContextMenuTrigger.vue2.js +4 -0
- package/dist/components/ui/dialog/Dialog.vue.js +24 -0
- package/dist/components/ui/dialog/Dialog.vue2.js +4 -0
- package/dist/components/ui/dialog/DialogClose.vue.js +21 -0
- package/dist/components/ui/dialog/DialogClose.vue2.js +4 -0
- package/dist/components/ui/dialog/DialogContent.vue.js +50 -0
- package/dist/components/ui/dialog/DialogContent.vue2.js +4 -0
- package/dist/components/ui/dialog/DialogDescription.vue.js +27 -0
- package/dist/components/ui/dialog/DialogDescription.vue2.js +4 -0
- package/dist/components/ui/dialog/DialogFooter.vue.js +24 -0
- package/dist/components/ui/dialog/DialogFooter.vue2.js +4 -0
- package/dist/components/ui/dialog/DialogHeader.vue.js +19 -0
- package/dist/components/ui/dialog/DialogHeader.vue2.js +4 -0
- package/dist/components/ui/dialog/DialogScrollContent.vue.js +59 -0
- package/dist/components/ui/dialog/DialogScrollContent.vue2.js +4 -0
- package/dist/components/ui/dialog/DialogTitle.vue.js +30 -0
- package/dist/components/ui/dialog/DialogTitle.vue2.js +4 -0
- package/dist/components/ui/dialog/DialogTrigger.vue.js +21 -0
- package/dist/components/ui/dialog/DialogTrigger.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenu.vue.js +25 -0
- package/dist/components/ui/dropdown-menu/DropdownMenu.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue.js +44 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuContent.vue.js +54 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuContent.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuGroup.vue.js +21 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuGroup.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuItem.vue.js +34 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuItem.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuLabel.vue.js +28 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuLabel.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue.js +24 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuRadioItem.vue.js +44 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuRadioItem.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuSeparator.vue.js +21 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuSeparator.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuShortcut.vue.js +19 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuShortcut.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuSub.vue.js +23 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuSub.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuSubContent.vue.js +46 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuSubContent.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue.js +34 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue2.js +4 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuTrigger.vue.js +23 -0
- package/dist/components/ui/dropdown-menu/DropdownMenuTrigger.vue2.js +4 -0
- package/dist/components/ui/form/FormControl.vue.js +22 -0
- package/dist/components/ui/form/FormControl.vue2.js +4 -0
- package/dist/components/ui/form/FormDescription.vue.js +21 -0
- package/dist/components/ui/form/FormDescription.vue2.js +4 -0
- package/dist/components/ui/form/FormItem.vue.js +21 -0
- package/dist/components/ui/form/FormItem.vue2.js +4 -0
- package/dist/components/ui/form/FormLabel.vue.js +31 -0
- package/dist/components/ui/form/FormLabel.vue2.js +4 -0
- package/dist/components/ui/form/FormMessage.vue.js +18 -0
- package/dist/components/ui/form/FormMessage.vue2.js +4 -0
- package/dist/components/ui/form/injectionKeys.js +4 -0
- package/dist/components/ui/form/useFormField.js +25 -0
- package/dist/components/ui/hover-card/HoverCard.vue.js +25 -0
- package/dist/components/ui/hover-card/HoverCard.vue2.js +4 -0
- package/dist/components/ui/hover-card/HoverCardContent.vue.js +55 -0
- package/dist/components/ui/hover-card/HoverCardContent.vue2.js +4 -0
- package/dist/components/ui/hover-card/HoverCardTrigger.vue.js +22 -0
- package/dist/components/ui/hover-card/HoverCardTrigger.vue2.js +4 -0
- package/dist/components/ui/input/Input.vue.js +30 -0
- package/dist/components/ui/input/Input.vue2.js +4 -0
- package/dist/components/ui/label/Label.vue.js +30 -0
- package/dist/components/ui/label/Label.vue2.js +4 -0
- package/dist/components/ui/menubar/Menubar.vue.js +33 -0
- package/dist/components/ui/menubar/Menubar.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarCheckboxItem.vue.js +44 -0
- package/dist/components/ui/menubar/MenubarCheckboxItem.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarContent.vue.js +56 -0
- package/dist/components/ui/menubar/MenubarContent.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarGroup.vue.js +21 -0
- package/dist/components/ui/menubar/MenubarGroup.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarItem.vue.js +35 -0
- package/dist/components/ui/menubar/MenubarItem.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarLabel.vue.js +26 -0
- package/dist/components/ui/menubar/MenubarLabel.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarMenu.vue.js +20 -0
- package/dist/components/ui/menubar/MenubarMenu.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarRadioGroup.vue.js +24 -0
- package/dist/components/ui/menubar/MenubarRadioGroup.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarRadioItem.vue.js +44 -0
- package/dist/components/ui/menubar/MenubarRadioItem.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarSeparator.vue.js +22 -0
- package/dist/components/ui/menubar/MenubarSeparator.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarShortcut.vue.js +19 -0
- package/dist/components/ui/menubar/MenubarShortcut.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarSub.vue.js +23 -0
- package/dist/components/ui/menubar/MenubarSub.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarSubContent.vue.js +55 -0
- package/dist/components/ui/menubar/MenubarSubContent.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarSubTrigger.vue.js +36 -0
- package/dist/components/ui/menubar/MenubarSubTrigger.vue2.js +4 -0
- package/dist/components/ui/menubar/MenubarTrigger.vue.js +31 -0
- package/dist/components/ui/menubar/MenubarTrigger.vue2.js +4 -0
- package/dist/components/ui/navigation-menu/NavigationMenu.vue.js +40 -0
- package/dist/components/ui/navigation-menu/NavigationMenu.vue2.js +4 -0
- package/dist/components/ui/navigation-menu/NavigationMenuContent.vue.js +33 -0
- package/dist/components/ui/navigation-menu/NavigationMenuContent.vue2.js +4 -0
- package/dist/components/ui/navigation-menu/NavigationMenuIndicator.vue.js +28 -0
- package/dist/components/ui/navigation-menu/NavigationMenuIndicator.vue2.js +4 -0
- package/dist/components/ui/navigation-menu/NavigationMenuItem.vue.js +22 -0
- package/dist/components/ui/navigation-menu/NavigationMenuItem.vue2.js +4 -0
- package/dist/components/ui/navigation-menu/NavigationMenuLink.vue.js +24 -0
- package/dist/components/ui/navigation-menu/NavigationMenuLink.vue2.js +4 -0
- package/dist/components/ui/navigation-menu/NavigationMenuList.vue.js +30 -0
- package/dist/components/ui/navigation-menu/NavigationMenuList.vue2.js +4 -0
- package/dist/components/ui/navigation-menu/NavigationMenuTrigger.vue.js +34 -0
- package/dist/components/ui/navigation-menu/NavigationMenuTrigger.vue2.js +4 -0
- package/dist/components/ui/navigation-menu/NavigationMenuViewport.vue.js +29 -0
- package/dist/components/ui/navigation-menu/NavigationMenuViewport.vue2.js +4 -0
- package/dist/components/ui/navigation-menu/index.js +8 -0
- package/dist/components/ui/pagination/Pagination.vue.js +35 -0
- package/dist/components/ui/pagination/Pagination.vue2.js +4 -0
- package/dist/components/ui/pagination/PaginationContent.vue.js +26 -0
- package/dist/components/ui/pagination/PaginationContent.vue2.js +4 -0
- package/dist/components/ui/pagination/PaginationEllipsis.vue.js +30 -0
- package/dist/components/ui/pagination/PaginationEllipsis.vue2.js +4 -0
- package/dist/components/ui/pagination/PaginationFirst.vue.js +34 -0
- package/dist/components/ui/pagination/PaginationFirst.vue2.js +4 -0
- package/dist/components/ui/pagination/PaginationItem.vue.js +36 -0
- package/dist/components/ui/pagination/PaginationItem.vue2.js +4 -0
- package/dist/components/ui/pagination/PaginationLast.vue.js +34 -0
- package/dist/components/ui/pagination/PaginationLast.vue2.js +4 -0
- package/dist/components/ui/pagination/PaginationNext.vue.js +34 -0
- package/dist/components/ui/pagination/PaginationNext.vue2.js +4 -0
- package/dist/components/ui/pagination/PaginationPrevious.vue.js +34 -0
- package/dist/components/ui/pagination/PaginationPrevious.vue2.js +4 -0
- package/dist/components/ui/popover/Popover.vue.js +24 -0
- package/dist/components/ui/popover/Popover.vue2.js +4 -0
- package/dist/components/ui/popover/PopoverContent.vue.js +58 -0
- package/dist/components/ui/popover/PopoverContent.vue2.js +4 -0
- package/dist/components/ui/popover/PopoverTrigger.vue.js +21 -0
- package/dist/components/ui/popover/PopoverTrigger.vue2.js +4 -0
- package/dist/components/ui/progress/Progress.vue.js +37 -0
- package/dist/components/ui/progress/Progress.vue2.js +4 -0
- package/dist/components/ui/radio-group/RadioGroup.vue.js +36 -0
- package/dist/components/ui/radio-group/RadioGroup.vue2.js +4 -0
- package/dist/components/ui/radio-group/RadioGroupItem.vue.js +42 -0
- package/dist/components/ui/radio-group/RadioGroupItem.vue2.js +4 -0
- package/dist/components/ui/scroll-area/ScrollArea.vue.js +39 -0
- package/dist/components/ui/scroll-area/ScrollArea.vue2.js +4 -0
- package/dist/components/ui/scroll-area/ScrollBar.vue.js +34 -0
- package/dist/components/ui/scroll-area/ScrollBar.vue2.js +4 -0
- package/dist/components/ui/select/Select.vue.js +32 -0
- package/dist/components/ui/select/Select.vue2.js +4 -0
- package/dist/components/ui/select/SelectContent.vue.js +73 -0
- package/dist/components/ui/select/SelectContent.vue2.js +4 -0
- package/dist/components/ui/select/SelectGroup.vue.js +26 -0
- package/dist/components/ui/select/SelectGroup.vue2.js +4 -0
- package/dist/components/ui/select/SelectItem.vue.js +49 -0
- package/dist/components/ui/select/SelectItem.vue2.js +4 -0
- package/dist/components/ui/select/SelectItemText.vue.js +21 -0
- package/dist/components/ui/select/SelectItemText.vue2.js +4 -0
- package/dist/components/ui/select/SelectLabel.vue.js +26 -0
- package/dist/components/ui/select/SelectLabel.vue2.js +4 -0
- package/dist/components/ui/select/SelectScrollDownButton.vue.js +30 -0
- package/dist/components/ui/select/SelectScrollDownButton.vue2.js +4 -0
- package/dist/components/ui/select/SelectScrollUpButton.vue.js +30 -0
- package/dist/components/ui/select/SelectScrollUpButton.vue2.js +4 -0
- package/dist/components/ui/select/SelectSeparator.vue.js +21 -0
- package/dist/components/ui/select/SelectSeparator.vue2.js +4 -0
- package/dist/components/ui/select/SelectTrigger.vue.js +40 -0
- package/dist/components/ui/select/SelectTrigger.vue2.js +4 -0
- package/dist/components/ui/select/SelectValue.vue.js +22 -0
- package/dist/components/ui/select/SelectValue.vue2.js +4 -0
- package/dist/components/ui/separator/Separator.vue.js +27 -0
- package/dist/components/ui/separator/Separator.vue2.js +4 -0
- package/dist/components/ui/sheet/Sheet.vue.js +24 -0
- package/dist/components/ui/sheet/Sheet.vue2.js +4 -0
- package/dist/components/ui/sheet/SheetClose.vue.js +21 -0
- package/dist/components/ui/sheet/SheetClose.vue2.js +4 -0
- package/dist/components/ui/sheet/SheetContent.vue.js +49 -0
- package/dist/components/ui/sheet/SheetContent.vue2.js +4 -0
- package/dist/components/ui/sheet/SheetDescription.vue.js +26 -0
- package/dist/components/ui/sheet/SheetDescription.vue2.js +4 -0
- package/dist/components/ui/sheet/SheetFooter.vue.js +24 -0
- package/dist/components/ui/sheet/SheetFooter.vue2.js +4 -0
- package/dist/components/ui/sheet/SheetHeader.vue.js +21 -0
- package/dist/components/ui/sheet/SheetHeader.vue2.js +4 -0
- package/dist/components/ui/sheet/SheetTitle.vue.js +26 -0
- package/dist/components/ui/sheet/SheetTitle.vue2.js +4 -0
- package/dist/components/ui/sheet/SheetTrigger.vue.js +21 -0
- package/dist/components/ui/sheet/SheetTrigger.vue2.js +4 -0
- package/dist/components/ui/sheet/index.js +21 -0
- package/dist/components/ui/skeleton/Skeleton.vue.js +17 -0
- package/dist/components/ui/skeleton/Skeleton.vue2.js +4 -0
- package/dist/components/ui/slider/Slider.vue.js +56 -0
- package/dist/components/ui/slider/Slider.vue2.js +4 -0
- package/dist/components/ui/sonner/Sonner.vue.js +74 -0
- package/dist/components/ui/sonner/Sonner.vue2.js +4 -0
- package/dist/components/ui/switch/Switch.vue.js +48 -0
- package/dist/components/ui/switch/Switch.vue2.js +4 -0
- package/dist/components/ui/table/Table.vue.js +21 -0
- package/dist/components/ui/table/Table.vue2.js +4 -0
- package/dist/components/ui/table/TableBody.vue.js +19 -0
- package/dist/components/ui/table/TableBody.vue2.js +4 -0
- package/dist/components/ui/table/TableCaption.vue.js +19 -0
- package/dist/components/ui/table/TableCaption.vue2.js +4 -0
- package/dist/components/ui/table/TableCell.vue.js +24 -0
- package/dist/components/ui/table/TableCell.vue2.js +4 -0
- package/dist/components/ui/table/TableEmpty.vue.js +36 -0
- package/dist/components/ui/table/TableEmpty.vue2.js +4 -0
- package/dist/components/ui/table/TableFooter.vue.js +19 -0
- package/dist/components/ui/table/TableFooter.vue2.js +4 -0
- package/dist/components/ui/table/TableHead.vue.js +19 -0
- package/dist/components/ui/table/TableHead.vue2.js +4 -0
- package/dist/components/ui/table/TableHeader.vue.js +19 -0
- package/dist/components/ui/table/TableHeader.vue2.js +4 -0
- package/dist/components/ui/table/TableRow.vue.js +19 -0
- package/dist/components/ui/table/TableRow.vue2.js +4 -0
- package/dist/components/ui/tabs/Tabs.vue.js +29 -0
- package/dist/components/ui/tabs/Tabs.vue2.js +4 -0
- package/dist/components/ui/tabs/TabsContent.vue.js +28 -0
- package/dist/components/ui/tabs/TabsContent.vue2.js +4 -0
- package/dist/components/ui/tabs/TabsList.vue.js +30 -0
- package/dist/components/ui/tabs/TabsList.vue2.js +4 -0
- package/dist/components/ui/tabs/TabsTrigger.vue.js +34 -0
- package/dist/components/ui/tabs/TabsTrigger.vue2.js +4 -0
- package/dist/components/ui/textarea/Textarea.vue.js +27 -0
- package/dist/components/ui/textarea/Textarea.vue2.js +4 -0
- package/dist/components/ui/tooltip/Tooltip.vue.js +28 -0
- package/dist/components/ui/tooltip/Tooltip.vue2.js +4 -0
- package/dist/components/ui/tooltip/TooltipContent.vue.js +49 -0
- package/dist/components/ui/tooltip/TooltipContent.vue2.js +4 -0
- package/dist/components/ui/tooltip/TooltipProvider.vue.js +26 -0
- package/dist/components/ui/tooltip/TooltipProvider.vue2.js +4 -0
- package/dist/components/ui/tooltip/TooltipTrigger.vue.js +22 -0
- package/dist/components/ui/tooltip/TooltipTrigger.vue2.js +4 -0
- package/dist/composables/useAnimations.js +49 -0
- package/dist/composables/useCameraBorder.js +32 -0
- package/dist/composables/useChatMedia.js +101 -0
- package/dist/composables/useChatMessages.js +107 -0
- package/dist/composables/useErrors.js +19 -0
- package/dist/composables/useMedia.js +302 -0
- package/dist/composables/useNfcListener.js +42 -0
- package/dist/composables/useQuestion.js +32 -0
- package/dist/composables/useScanning.js +26 -0
- package/dist/composables/useStreamingAudio.js +121 -0
- package/dist/composables/useToast.js +16 -0
- package/dist/composables/useWebSocket.js +114 -0
- package/dist/experience/ExperienceFlow.vue.js +7 -0
- package/dist/experience/ExperienceFlow.vue2.js +94 -0
- package/dist/experience/pages/audio-capture/AudioCapturePage.vue.js +86 -0
- package/dist/experience/pages/audio-capture/AudioCapturePage.vue2.js +4 -0
- package/dist/experience/pages/audio-capture/index.js +8 -0
- package/dist/experience/pages/audio-review/AudioReviewPage.vue.js +102 -0
- package/dist/experience/pages/audio-review/AudioReviewPage.vue2.js +4 -0
- package/dist/experience/pages/audio-review/index.js +9 -0
- package/dist/experience/pages/camera/CameraPage.vue.js +139 -0
- package/dist/experience/pages/camera/CameraPage.vue2.js +4 -0
- package/dist/experience/pages/camera/index.js +8 -0
- package/dist/experience/pages/camera-review/CameraReviewPage.vue.js +104 -0
- package/dist/experience/pages/camera-review/CameraReviewPage.vue2.js +4 -0
- package/dist/experience/pages/camera-review/index.js +9 -0
- package/dist/experience/pages/drawing/DrawingPage.vue.js +185 -0
- package/dist/experience/pages/drawing/DrawingPage.vue2.js +4 -0
- package/dist/experience/pages/drawing/index.js +8 -0
- package/dist/experience/pages/final/FinalPage.vue.js +109 -0
- package/dist/experience/pages/final/FinalPage.vue2.js +4 -0
- package/dist/experience/pages/final/index.js +6 -0
- package/dist/experience/pages/form/FormPage.vue.js +175 -0
- package/dist/experience/pages/form/FormPage.vue2.js +4 -0
- package/dist/experience/pages/form/index.js +8 -0
- package/dist/experience/pages/instructions/InstructionsPage.vue.js +89 -0
- package/dist/experience/pages/instructions/InstructionsPage.vue2.js +4 -0
- package/dist/experience/pages/instructions/index.js +6 -0
- package/dist/experience/pages/loading/LoadingPage.vue.js +59 -0
- package/dist/experience/pages/loading/LoadingPage.vue2.js +4 -0
- package/dist/experience/pages/loading/index.js +11 -0
- package/dist/experience/pages/notepad/NotepadPage.vue.js +149 -0
- package/dist/experience/pages/notepad/NotepadPage.vue2.js +4 -0
- package/dist/experience/pages/notepad/index.js +8 -0
- package/dist/experience/pages/options/OptionsPage.vue.js +77 -0
- package/dist/experience/pages/options/OptionsPage.vue2.js +4 -0
- package/dist/experience/pages/options/index.js +8 -0
- package/dist/experience/pages/photo-edit/PhotoEditPage.vue.js +172 -0
- package/dist/experience/pages/photo-edit/PhotoEditPage.vue2.js +4 -0
- package/dist/experience/pages/photo-edit/index.js +8 -0
- package/dist/experience/pages/prompt/PromptPage.vue.js +110 -0
- package/dist/experience/pages/prompt/PromptPage.vue2.js +4 -0
- package/dist/experience/pages/prompt/index.js +8 -0
- package/dist/experience/pages/results-gallery/ResultsGalleryPage.vue.js +105 -0
- package/dist/experience/pages/results-gallery/ResultsGalleryPage.vue2.js +4 -0
- package/dist/experience/pages/results-gallery/index.js +8 -0
- package/dist/experience/pages/share/SharePage.vue.js +154 -0
- package/dist/experience/pages/share/SharePage.vue2.js +4 -0
- package/dist/experience/pages/share/index.js +6 -0
- package/dist/experience/pages/terms/TermsPage.vue.js +80 -0
- package/dist/experience/pages/terms/TermsPage.vue2.js +4 -0
- package/dist/experience/pages/terms/index.js +8 -0
- package/dist/experience/pages/text/TextPage.vue.js +79 -0
- package/dist/experience/pages/text/TextPage.vue2.js +4 -0
- package/dist/experience/pages/text/index.js +8 -0
- package/dist/experience/pages/video-capture/VideoCapturePage.vue.js +107 -0
- package/dist/experience/pages/video-capture/VideoCapturePage.vue2.js +4 -0
- package/dist/experience/pages/video-capture/index.js +8 -0
- package/dist/experience/pages/video-review/VideoReviewPage.vue.js +102 -0
- package/dist/experience/pages/video-review/VideoReviewPage.vue2.js +4 -0
- package/dist/experience/pages/video-review/index.js +9 -0
- package/dist/experience/pages/welcome/WelcomePage.vue.js +48 -0
- package/dist/experience/pages/welcome/WelcomePage.vue2.js +4 -0
- package/dist/experience/pages/welcome/index.js +6 -0
- package/dist/experience/useExperience.js +99 -0
- package/dist/experience/useExperienceApi.js +37 -0
- package/dist/experience/withDefaults.js +11 -0
- package/dist/index.d.ts +12193 -0
- package/dist/index.js +538 -0
- package/dist/lib/imageToBlob.js +31 -0
- package/dist/lib/utils.js +104 -0
- package/dist/node_modules/.pnpm/@floating-ui_core@1.7.5/node_modules/@floating-ui/core/dist/floating-ui.core.js +532 -0
- package/dist/node_modules/.pnpm/@floating-ui_dom@1.7.6/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +403 -0
- package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.11/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +136 -0
- package/dist/node_modules/.pnpm/@floating-ui_utils@0.2.11/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +128 -0
- 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
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/CalendarDate.js +186 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/DateFormatter.js +99 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/BuddhistCalendar.js +32 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/EthiopicCalendar.js +110 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/GregorianCalendar.js +104 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/HebrewCalendar.js +86 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/IndianCalendar.js +40 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/IslamicCalendar.js +122 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/JapaneseCalendar.js +128 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/PersianCalendar.js +53 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/calendars/TaiwanCalendar.js +54 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/conversion.js +135 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/createCalendar.js +43 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/manipulation.js +205 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/queries.js +127 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/string.js +27 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/utils.js +6 -0
- package/dist/node_modules/.pnpm/@internationalized_date@3.12.1/node_modules/@internationalized/date/dist/private/weekStartData.js +100 -0
- 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
- 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
- package/dist/node_modules/.pnpm/aria-hidden@1.2.6/node_modules/aria-hidden/dist/es2015/index.js +52 -0
- package/dist/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.js +35 -0
- package/dist/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.js +16 -0
- package/dist/node_modules/.pnpm/defu@6.1.7/node_modules/defu/dist/defu.js +35 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- package/dist/node_modules/.pnpm/ohash@2.0.11/node_modules/ohash/dist/shared/ohash.D__AXeF1.js +107 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- package/dist/node_modules/.pnpm/tailwind-merge@3.6.0/node_modules/tailwind-merge/dist/bundle-mjs.js +2993 -0
- package/dist/style.css +1 -0
- package/dist/styles/index.css +2 -0
- package/package.json +135 -0
- package/src/__mocks__/@ericblade/quagga2.ts +7 -0
- package/src/components/domain/audio-visualizer/AudioVisualizer.stories.ts +162 -0
- package/src/components/domain/audio-visualizer/AudioVisualizer.test.ts +291 -0
- package/src/components/domain/audio-visualizer/AudioVisualizer.vue +225 -0
- package/src/components/domain/audio-visualizer/index.ts +2 -0
- package/src/components/domain/barcode-scanner/BarcodeScanner.stories.ts +139 -0
- package/src/components/domain/barcode-scanner/BarcodeScanner.test.ts +93 -0
- package/src/components/domain/barcode-scanner/BarcodeScanner.vue +145 -0
- package/src/components/domain/barcode-scanner/index.ts +2 -0
- package/src/components/domain/chat-transcript/ChatTranscript.stories.ts +283 -0
- package/src/components/domain/chat-transcript/ChatTranscript.test.ts +462 -0
- package/src/components/domain/chat-transcript/ChatTranscript.vue +330 -0
- package/src/components/domain/chat-transcript/index.ts +2 -0
- package/src/components/domain/connection-status/ConnectionStatus.stories.ts +120 -0
- package/src/components/domain/connection-status/ConnectionStatus.test.ts +133 -0
- package/src/components/domain/connection-status/ConnectionStatus.vue +136 -0
- package/src/components/domain/connection-status/index.ts +2 -0
- package/src/components/domain/countdown/Countdown.stories.ts +96 -0
- package/src/components/domain/countdown/Countdown.test.ts +99 -0
- package/src/components/domain/countdown/Countdown.vue +118 -0
- package/src/components/domain/countdown/index.ts +2 -0
- package/src/components/domain/countdown-timer/CountdownTimer.stories.ts +150 -0
- package/src/components/domain/countdown-timer/CountdownTimer.test.ts +172 -0
- package/src/components/domain/countdown-timer/CountdownTimer.vue +196 -0
- package/src/components/domain/countdown-timer/index.ts +2 -0
- package/src/components/domain/download-button/DownloadButton.stories.ts +131 -0
- package/src/components/domain/download-button/DownloadButton.test.ts +364 -0
- package/src/components/domain/download-button/DownloadButton.vue +119 -0
- package/src/components/domain/download-button/index.ts +2 -0
- package/src/components/domain/file-uploader/FileUploader.stories.ts +78 -0
- package/src/components/domain/file-uploader/FileUploader.test.ts +157 -0
- package/src/components/domain/file-uploader/FileUploader.vue +182 -0
- package/src/components/domain/file-uploader/index.ts +2 -0
- package/src/components/domain/header/Header.stories.ts +48 -0
- package/src/components/domain/header/Header.test.ts +92 -0
- package/src/components/domain/header/Header.vue +48 -0
- package/src/components/domain/header/index.ts +2 -0
- package/src/components/domain/leaderboard/ActivityNotifications.stories.ts +206 -0
- package/src/components/domain/leaderboard/ActivityNotifications.test.ts +306 -0
- package/src/components/domain/leaderboard/ActivityNotifications.vue +152 -0
- package/src/components/domain/leaderboard/AwardIcon.stories.ts +63 -0
- package/src/components/domain/leaderboard/AwardIcon.test.ts +42 -0
- package/src/components/domain/leaderboard/AwardIcon.vue +48 -0
- package/src/components/domain/leaderboard/Leaderboard.stories.ts +225 -0
- package/src/components/domain/leaderboard/Leaderboard.test.ts +320 -0
- package/src/components/domain/leaderboard/Leaderboard.vue +314 -0
- package/src/components/domain/leaderboard/RecentActivity.stories.ts +152 -0
- package/src/components/domain/leaderboard/RecentActivity.test.ts +398 -0
- package/src/components/domain/leaderboard/RecentActivity.vue +169 -0
- package/src/components/domain/leaderboard/index.ts +11 -0
- package/src/components/domain/live-countdown/LiveCountdown.stories.ts +117 -0
- package/src/components/domain/live-countdown/LiveCountdown.test.ts +170 -0
- package/src/components/domain/live-countdown/LiveCountdown.vue +183 -0
- package/src/components/domain/live-countdown/index.ts +2 -0
- package/src/components/domain/live-countdown-sync/LiveCountdownSync.stories.ts +180 -0
- package/src/components/domain/live-countdown-sync/LiveCountdownSync.test.ts +74 -0
- package/src/components/domain/live-countdown-sync/LiveCountdownSync.vue +196 -0
- package/src/components/domain/live-countdown-sync/index.ts +2 -0
- package/src/components/domain/local-preview/LocalPreview.stories.ts +53 -0
- package/src/components/domain/local-preview/LocalPreview.test.ts +73 -0
- package/src/components/domain/local-preview/LocalPreview.vue +196 -0
- package/src/components/domain/local-preview/index.ts +2 -0
- package/src/components/domain/media-control-bar/MediaControlBar.stories.ts +81 -0
- package/src/components/domain/media-control-bar/MediaControlBar.test.ts +110 -0
- package/src/components/domain/media-control-bar/MediaControlBar.vue +163 -0
- package/src/components/domain/media-control-bar/index.ts +2 -0
- package/src/components/domain/message-composer/MessageComposer.stories.ts +64 -0
- package/src/components/domain/message-composer/MessageComposer.test.ts +195 -0
- package/src/components/domain/message-composer/MessageComposer.vue +220 -0
- package/src/components/domain/message-composer/index.ts +2 -0
- package/src/components/domain/message-list/MessageList.stories.ts +103 -0
- package/src/components/domain/message-list/MessageList.test.ts +121 -0
- package/src/components/domain/message-list/MessageList.vue +96 -0
- package/src/components/domain/message-list/index.ts +2 -0
- package/src/components/domain/on-screen-keyboard/OnScreenKeyboard.stories.ts +150 -0
- package/src/components/domain/on-screen-keyboard/OnScreenKeyboard.test.ts +148 -0
- package/src/components/domain/on-screen-keyboard/OnScreenKeyboard.vue +155 -0
- package/src/components/domain/on-screen-keyboard/index.ts +4 -0
- package/src/components/domain/on-screen-keyboard/layouts.ts +43 -0
- package/src/components/domain/participant-item/ParticipantItem.stories.ts +129 -0
- package/src/components/domain/participant-item/ParticipantItem.test.ts +163 -0
- package/src/components/domain/participant-item/ParticipantItem.vue +128 -0
- package/src/components/domain/participant-item/index.ts +2 -0
- package/src/components/domain/pin-pad/PinPad.stories.ts +150 -0
- package/src/components/domain/pin-pad/PinPad.test.ts +171 -0
- package/src/components/domain/pin-pad/PinPad.vue +235 -0
- package/src/components/domain/pin-pad/index.ts +2 -0
- package/src/components/domain/signature-pad/SignaturePad.stories.ts +125 -0
- package/src/components/domain/signature-pad/SignaturePad.test.ts +149 -0
- package/src/components/domain/signature-pad/SignaturePad.vue +180 -0
- package/src/components/domain/signature-pad/index.ts +2 -0
- package/src/components/domain/social-stream-post/SocialStreamPost.stories.ts +187 -0
- package/src/components/domain/social-stream-post/SocialStreamPost.test.ts +403 -0
- package/src/components/domain/social-stream-post/SocialStreamPost.vue +105 -0
- package/src/components/domain/social-stream-post/SocialStreamPostBody.vue +139 -0
- package/src/components/domain/social-stream-post/index.ts +9 -0
- package/src/components/domain/spinner/Spinner.stories.ts +88 -0
- package/src/components/domain/spinner/Spinner.test.ts +87 -0
- package/src/components/domain/spinner/Spinner.vue +42 -0
- package/src/components/domain/spinner/index.ts +2 -0
- package/src/components/domain/step-progress/StepProgress.stories.ts +173 -0
- package/src/components/domain/step-progress/StepProgress.test.ts +194 -0
- package/src/components/domain/step-progress/StepProgress.vue +151 -0
- package/src/components/domain/step-progress/index.ts +2 -0
- package/src/components/domain/theme-wrapper/ThemeWrapper.stories.ts +163 -0
- package/src/components/domain/theme-wrapper/ThemeWrapper.test.ts +284 -0
- package/src/components/domain/theme-wrapper/ThemeWrapper.vue +122 -0
- package/src/components/domain/theme-wrapper/index.ts +2 -0
- package/src/components/domain/video-grid/VideoGrid.stories.ts +77 -0
- package/src/components/domain/video-grid/VideoGrid.test.ts +97 -0
- package/src/components/domain/video-grid/VideoGrid.vue +87 -0
- package/src/components/domain/video-grid/index.ts +2 -0
- package/src/components/domain/video-player/VideoPlayer.stories.ts +66 -0
- package/src/components/domain/video-player/VideoPlayer.test.ts +180 -0
- package/src/components/domain/video-player/VideoPlayer.vue +82 -0
- package/src/components/domain/video-player/index.ts +2 -0
- package/src/components/domain/video-tile/VideoTile.stories.ts +68 -0
- package/src/components/domain/video-tile/VideoTile.test.ts +116 -0
- package/src/components/domain/video-tile/VideoTile.vue +134 -0
- package/src/components/domain/video-tile/index.ts +2 -0
- package/src/components/ui/accordion/Accordion.stories.ts +68 -0
- package/src/components/ui/accordion/Accordion.test.ts +105 -0
- package/src/components/ui/accordion/Accordion.vue +24 -0
- package/src/components/ui/accordion/AccordionContent.vue +22 -0
- package/src/components/ui/accordion/AccordionItem.vue +22 -0
- package/src/components/ui/accordion/AccordionTrigger.vue +36 -0
- package/src/components/ui/accordion/index.ts +4 -0
- package/src/components/ui/alert/Alert.stories.ts +98 -0
- package/src/components/ui/alert/Alert.test.ts +164 -0
- package/src/components/ui/alert/Alert.vue +23 -0
- package/src/components/ui/alert/AlertDescription.vue +14 -0
- package/src/components/ui/alert/AlertTitle.vue +14 -0
- package/src/components/ui/alert/index.ts +24 -0
- package/src/components/ui/alert-dialog/AlertDialog.stories.ts +59 -0
- package/src/components/ui/alert-dialog/AlertDialog.test.ts +255 -0
- package/src/components/ui/alert-dialog/AlertDialog.vue +21 -0
- package/src/components/ui/alert-dialog/AlertDialogAction.vue +18 -0
- package/src/components/ui/alert-dialog/AlertDialogCancel.vue +25 -0
- package/src/components/ui/alert-dialog/AlertDialogContent.vue +38 -0
- package/src/components/ui/alert-dialog/AlertDialogDescription.vue +22 -0
- package/src/components/ui/alert-dialog/AlertDialogFooter.vue +21 -0
- package/src/components/ui/alert-dialog/AlertDialogHeader.vue +16 -0
- package/src/components/ui/alert-dialog/AlertDialogTitle.vue +20 -0
- package/src/components/ui/alert-dialog/AlertDialogTrigger.vue +12 -0
- package/src/components/ui/alert-dialog/index.ts +9 -0
- package/src/components/ui/aspect-ratio/AspectRatio.stories.ts +54 -0
- package/src/components/ui/aspect-ratio/AspectRatio.test.ts +73 -0
- package/src/components/ui/aspect-ratio/AspectRatio.vue +18 -0
- package/src/components/ui/aspect-ratio/index.ts +1 -0
- package/src/components/ui/avatar/Avatar.stories.ts +138 -0
- package/src/components/ui/avatar/Avatar.test.ts +136 -0
- package/src/components/ui/avatar/Avatar.vue +27 -0
- package/src/components/ui/avatar/AvatarFallback.vue +12 -0
- package/src/components/ui/avatar/AvatarImage.vue +12 -0
- package/src/components/ui/avatar/index.ts +25 -0
- package/src/components/ui/badge/Badge.stories.ts +103 -0
- package/src/components/ui/badge/Badge.test.ts +119 -0
- package/src/components/ui/badge/Badge.vue +22 -0
- package/src/components/ui/badge/index.ts +26 -0
- package/src/components/ui/button/Button.stories.ts +312 -0
- package/src/components/ui/button/Button.test.ts +307 -0
- package/src/components/ui/button/Button.vue +35 -0
- package/src/components/ui/button/index.ts +37 -0
- package/src/components/ui/calendar/Calendar.stories.ts +65 -0
- package/src/components/ui/calendar/Calendar.test.ts +64 -0
- package/src/components/ui/calendar/Calendar.vue +64 -0
- package/src/components/ui/calendar/CalendarCell.vue +22 -0
- package/src/components/ui/calendar/CalendarCellTrigger.vue +36 -0
- package/src/components/ui/calendar/CalendarGrid.vue +22 -0
- package/src/components/ui/calendar/CalendarGridBody.vue +12 -0
- package/src/components/ui/calendar/CalendarGridHead.vue +12 -0
- package/src/components/ui/calendar/CalendarGridRow.vue +19 -0
- package/src/components/ui/calendar/CalendarHeadCell.vue +19 -0
- package/src/components/ui/calendar/CalendarHeader.vue +19 -0
- package/src/components/ui/calendar/CalendarHeading.vue +29 -0
- package/src/components/ui/calendar/CalendarNextButton.vue +30 -0
- package/src/components/ui/calendar/CalendarPrevButton.vue +30 -0
- package/src/components/ui/calendar/index.ts +12 -0
- package/src/components/ui/card/Card.stories.ts +168 -0
- package/src/components/ui/card/Card.test.ts +213 -0
- package/src/components/ui/card/Card.vue +27 -0
- package/src/components/ui/card/CardContent.vue +14 -0
- package/src/components/ui/card/CardDescription.vue +14 -0
- package/src/components/ui/card/CardFooter.vue +14 -0
- package/src/components/ui/card/CardHeader.vue +14 -0
- package/src/components/ui/card/CardTitle.vue +18 -0
- package/src/components/ui/card/index.ts +6 -0
- package/src/components/ui/checkbox/Checkbox.stories.ts +132 -0
- package/src/components/ui/checkbox/Checkbox.test.ts +72 -0
- package/src/components/ui/checkbox/Checkbox.vue +35 -0
- package/src/components/ui/checkbox/index.ts +1 -0
- package/src/components/ui/collapsible/Collapsible.stories.ts +49 -0
- package/src/components/ui/collapsible/Collapsible.test.ts +44 -0
- package/src/components/ui/collapsible/Collapsible.vue +20 -0
- package/src/components/ui/collapsible/CollapsibleContent.vue +12 -0
- package/src/components/ui/collapsible/CollapsibleTrigger.vue +12 -0
- package/src/components/ui/collapsible/index.ts +3 -0
- package/src/components/ui/command/Command.stories.ts +272 -0
- package/src/components/ui/command/Command.test.ts +127 -0
- package/src/components/ui/command/Command.vue +86 -0
- package/src/components/ui/command/CommandDialog.vue +21 -0
- package/src/components/ui/command/CommandEmpty.vue +23 -0
- package/src/components/ui/command/CommandGroup.vue +44 -0
- package/src/components/ui/command/CommandInput.vue +35 -0
- package/src/components/ui/command/CommandItem.vue +75 -0
- package/src/components/ui/command/CommandList.vue +21 -0
- package/src/components/ui/command/CommandSeparator.vue +20 -0
- package/src/components/ui/command/CommandShortcut.vue +14 -0
- package/src/components/ui/command/index.ts +25 -0
- package/src/components/ui/context-menu/ContextMenu.stories.ts +240 -0
- package/src/components/ui/context-menu/ContextMenu.test.ts +66 -0
- package/src/components/ui/context-menu/ContextMenu.vue +21 -0
- package/src/components/ui/context-menu/ContextMenuCheckboxItem.vue +36 -0
- package/src/components/ui/context-menu/ContextMenuContent.vue +32 -0
- package/src/components/ui/context-menu/ContextMenuGroup.vue +12 -0
- package/src/components/ui/context-menu/ContextMenuItem.vue +30 -0
- package/src/components/ui/context-menu/ContextMenuLabel.vue +23 -0
- package/src/components/ui/context-menu/ContextMenuPortal.vue +12 -0
- package/src/components/ui/context-menu/ContextMenuRadioGroup.vue +18 -0
- package/src/components/ui/context-menu/ContextMenuRadioItem.vue +36 -0
- package/src/components/ui/context-menu/ContextMenuSeparator.vue +17 -0
- package/src/components/ui/context-menu/ContextMenuShortcut.vue +14 -0
- package/src/components/ui/context-menu/ContextMenuSub.vue +18 -0
- package/src/components/ui/context-menu/ContextMenuSubContent.vue +31 -0
- package/src/components/ui/context-menu/ContextMenuSubTrigger.vue +31 -0
- package/src/components/ui/context-menu/ContextMenuTrigger.vue +14 -0
- package/src/components/ui/context-menu/index.ts +15 -0
- package/src/components/ui/dialog/Dialog.stories.ts +339 -0
- package/src/components/ui/dialog/Dialog.test.ts +342 -0
- package/src/components/ui/dialog/Dialog.vue +20 -0
- package/src/components/ui/dialog/DialogClose.vue +12 -0
- package/src/components/ui/dialog/DialogContent.vue +46 -0
- package/src/components/ui/dialog/DialogDescription.vue +22 -0
- package/src/components/ui/dialog/DialogFooter.vue +19 -0
- package/src/components/ui/dialog/DialogHeader.vue +16 -0
- package/src/components/ui/dialog/DialogScrollContent.vue +55 -0
- package/src/components/ui/dialog/DialogTitle.vue +27 -0
- package/src/components/ui/dialog/DialogTrigger.vue +12 -0
- package/src/components/ui/dialog/index.ts +9 -0
- package/src/components/ui/dropdown-menu/DropdownMenu.stories.ts +316 -0
- package/src/components/ui/dropdown-menu/DropdownMenu.test.ts +193 -0
- package/src/components/ui/dropdown-menu/DropdownMenu.vue +21 -0
- package/src/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +36 -0
- package/src/components/ui/dropdown-menu/DropdownMenuContent.vue +34 -0
- package/src/components/ui/dropdown-menu/DropdownMenuGroup.vue +12 -0
- package/src/components/ui/dropdown-menu/DropdownMenuItem.vue +26 -0
- package/src/components/ui/dropdown-menu/DropdownMenuLabel.vue +22 -0
- package/src/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue +18 -0
- package/src/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +37 -0
- package/src/components/ui/dropdown-menu/DropdownMenuSeparator.vue +19 -0
- package/src/components/ui/dropdown-menu/DropdownMenuShortcut.vue +14 -0
- package/src/components/ui/dropdown-menu/DropdownMenuSub.vue +18 -0
- package/src/components/ui/dropdown-menu/DropdownMenuSubContent.vue +26 -0
- package/src/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +30 -0
- package/src/components/ui/dropdown-menu/DropdownMenuTrigger.vue +14 -0
- package/src/components/ui/dropdown-menu/index.ts +16 -0
- package/src/components/ui/form/Form.stories.ts +150 -0
- package/src/components/ui/form/Form.test.ts +45 -0
- package/src/components/ui/form/FormControl.vue +16 -0
- package/src/components/ui/form/FormDescription.vue +20 -0
- package/src/components/ui/form/FormItem.vue +20 -0
- package/src/components/ui/form/FormLabel.vue +23 -0
- package/src/components/ui/form/FormMessage.vue +16 -0
- package/src/components/ui/form/index.ts +12 -0
- package/src/components/ui/form/injectionKeys.ts +4 -0
- package/src/components/ui/form/useFormField.ts +30 -0
- package/src/components/ui/hover-card/HoverCard.stories.ts +48 -0
- package/src/components/ui/hover-card/HoverCard.test.ts +124 -0
- package/src/components/ui/hover-card/HoverCard.vue +21 -0
- package/src/components/ui/hover-card/HoverCardContent.vue +38 -0
- package/src/components/ui/hover-card/HoverCardTrigger.vue +12 -0
- package/src/components/ui/hover-card/index.ts +3 -0
- package/src/components/ui/input/Input.stories.ts +472 -0
- package/src/components/ui/input/Input.test.ts +317 -0
- package/src/components/ui/input/Input.vue +35 -0
- package/src/components/ui/input/index.ts +1 -0
- package/src/components/ui/label/Label.stories.ts +48 -0
- package/src/components/ui/label/Label.test.ts +75 -0
- package/src/components/ui/label/Label.vue +30 -0
- package/src/components/ui/label/index.ts +1 -0
- package/src/components/ui/menubar/Menubar.stories.ts +296 -0
- package/src/components/ui/menubar/Menubar.test.ts +135 -0
- package/src/components/ui/menubar/Menubar.vue +37 -0
- package/src/components/ui/menubar/MenubarCheckboxItem.vue +36 -0
- package/src/components/ui/menubar/MenubarContent.vue +40 -0
- package/src/components/ui/menubar/MenubarGroup.vue +12 -0
- package/src/components/ui/menubar/MenubarItem.vue +31 -0
- package/src/components/ui/menubar/MenubarLabel.vue +14 -0
- package/src/components/ui/menubar/MenubarMenu.vue +12 -0
- package/src/components/ui/menubar/MenubarRadioGroup.vue +19 -0
- package/src/components/ui/menubar/MenubarRadioItem.vue +36 -0
- package/src/components/ui/menubar/MenubarSeparator.vue +17 -0
- package/src/components/ui/menubar/MenubarShortcut.vue +14 -0
- package/src/components/ui/menubar/MenubarSub.vue +20 -0
- package/src/components/ui/menubar/MenubarSubContent.vue +35 -0
- package/src/components/ui/menubar/MenubarSubTrigger.vue +28 -0
- package/src/components/ui/menubar/MenubarTrigger.vue +27 -0
- package/src/components/ui/menubar/index.ts +15 -0
- package/src/components/ui/navigation-menu/NavigationMenu.stories.ts +212 -0
- package/src/components/ui/navigation-menu/NavigationMenu.test.ts +107 -0
- package/src/components/ui/navigation-menu/NavigationMenu.vue +34 -0
- package/src/components/ui/navigation-menu/NavigationMenuContent.vue +30 -0
- package/src/components/ui/navigation-menu/NavigationMenuIndicator.vue +22 -0
- package/src/components/ui/navigation-menu/NavigationMenuItem.vue +12 -0
- package/src/components/ui/navigation-menu/NavigationMenuLink.vue +18 -0
- package/src/components/ui/navigation-menu/NavigationMenuList.vue +27 -0
- package/src/components/ui/navigation-menu/NavigationMenuTrigger.vue +31 -0
- package/src/components/ui/navigation-menu/NavigationMenuViewport.vue +30 -0
- package/src/components/ui/navigation-menu/index.ts +14 -0
- package/src/components/ui/pagination/Pagination.stories.ts +83 -0
- package/src/components/ui/pagination/Pagination.test.ts +152 -0
- package/src/components/ui/pagination/Pagination.vue +31 -0
- package/src/components/ui/pagination/PaginationContent.vue +22 -0
- package/src/components/ui/pagination/PaginationEllipsis.vue +25 -0
- package/src/components/ui/pagination/PaginationFirst.vue +33 -0
- package/src/components/ui/pagination/PaginationItem.vue +34 -0
- package/src/components/ui/pagination/PaginationLast.vue +33 -0
- package/src/components/ui/pagination/PaginationNext.vue +33 -0
- package/src/components/ui/pagination/PaginationPrevious.vue +33 -0
- package/src/components/ui/pagination/index.ts +8 -0
- package/src/components/ui/popover/Popover.stories.ts +47 -0
- package/src/components/ui/popover/Popover.test.ts +85 -0
- package/src/components/ui/popover/Popover.vue +20 -0
- package/src/components/ui/popover/PopoverContent.vue +44 -0
- package/src/components/ui/popover/PopoverTrigger.vue +12 -0
- package/src/components/ui/popover/index.ts +3 -0
- package/src/components/ui/progress/Progress.stories.ts +84 -0
- package/src/components/ui/progress/Progress.test.ts +95 -0
- package/src/components/ui/progress/Progress.vue +41 -0
- package/src/components/ui/progress/index.ts +1 -0
- package/src/components/ui/radio-group/RadioGroup.stories.ts +112 -0
- package/src/components/ui/radio-group/RadioGroup.test.ts +124 -0
- package/src/components/ui/radio-group/RadioGroup.vue +28 -0
- package/src/components/ui/radio-group/RadioGroupItem.vue +36 -0
- package/src/components/ui/radio-group/index.ts +2 -0
- package/src/components/ui/scroll-area/ScrollArea.stories.ts +61 -0
- package/src/components/ui/scroll-area/ScrollArea.test.ts +69 -0
- package/src/components/ui/scroll-area/ScrollArea.vue +31 -0
- package/src/components/ui/scroll-area/ScrollBar.vue +28 -0
- package/src/components/ui/scroll-area/index.ts +2 -0
- package/src/components/ui/select/Select.stories.ts +312 -0
- package/src/components/ui/select/Select.test.ts +290 -0
- package/src/components/ui/select/Select.vue +20 -0
- package/src/components/ui/select/SelectContent.vue +49 -0
- package/src/components/ui/select/SelectGroup.vue +17 -0
- package/src/components/ui/select/SelectItem.vue +41 -0
- package/src/components/ui/select/SelectItemText.vue +12 -0
- package/src/components/ui/select/SelectLabel.vue +14 -0
- package/src/components/ui/select/SelectScrollDownButton.vue +22 -0
- package/src/components/ui/select/SelectScrollUpButton.vue +22 -0
- package/src/components/ui/select/SelectSeparator.vue +15 -0
- package/src/components/ui/select/SelectTrigger.vue +29 -0
- package/src/components/ui/select/SelectValue.vue +12 -0
- package/src/components/ui/select/index.ts +11 -0
- package/src/components/ui/separator/Separator.stories.ts +100 -0
- package/src/components/ui/separator/Separator.test.ts +82 -0
- package/src/components/ui/separator/Separator.vue +34 -0
- package/src/components/ui/separator/index.ts +1 -0
- package/src/components/ui/sheet/Sheet.stories.ts +158 -0
- package/src/components/ui/sheet/Sheet.test.ts +345 -0
- package/src/components/ui/sheet/Sheet.vue +21 -0
- package/src/components/ui/sheet/SheetClose.vue +12 -0
- package/src/components/ui/sheet/SheetContent.vue +53 -0
- package/src/components/ui/sheet/SheetDescription.vue +20 -0
- package/src/components/ui/sheet/SheetFooter.vue +19 -0
- package/src/components/ui/sheet/SheetHeader.vue +16 -0
- package/src/components/ui/sheet/SheetTitle.vue +20 -0
- package/src/components/ui/sheet/SheetTrigger.vue +12 -0
- package/src/components/ui/sheet/index.ts +32 -0
- package/src/components/ui/skeleton/Skeleton.stories.ts +117 -0
- package/src/components/ui/skeleton/Skeleton.test.ts +63 -0
- package/src/components/ui/skeleton/Skeleton.vue +19 -0
- package/src/components/ui/skeleton/index.ts +1 -0
- package/src/components/ui/slider/Slider.stories.ts +96 -0
- package/src/components/ui/slider/Slider.test.ts +91 -0
- package/src/components/ui/slider/Slider.vue +38 -0
- package/src/components/ui/slider/index.ts +1 -0
- package/src/components/ui/sonner/Sonner.stories.ts +255 -0
- package/src/components/ui/sonner/Sonner.test.ts +37 -0
- package/src/components/ui/sonner/Sonner.vue +52 -0
- package/src/components/ui/sonner/index.ts +1 -0
- package/src/components/ui/switch/Switch.stories.ts +66 -0
- package/src/components/ui/switch/Switch.test.ts +78 -0
- package/src/components/ui/switch/Switch.vue +40 -0
- package/src/components/ui/switch/index.ts +1 -0
- package/src/components/ui/table/Table.stories.ts +193 -0
- package/src/components/ui/table/Table.test.ts +414 -0
- package/src/components/ui/table/Table.vue +22 -0
- package/src/components/ui/table/TableBody.vue +14 -0
- package/src/components/ui/table/TableCaption.vue +14 -0
- package/src/components/ui/table/TableCell.vue +21 -0
- package/src/components/ui/table/TableEmpty.vue +34 -0
- package/src/components/ui/table/TableFooter.vue +14 -0
- package/src/components/ui/table/TableHead.vue +14 -0
- package/src/components/ui/table/TableHeader.vue +14 -0
- package/src/components/ui/table/TableRow.vue +14 -0
- package/src/components/ui/table/index.ts +9 -0
- package/src/components/ui/tabs/Tabs.stories.ts +251 -0
- package/src/components/ui/tabs/Tabs.test.ts +127 -0
- package/src/components/ui/tabs/Tabs.vue +20 -0
- package/src/components/ui/tabs/TabsContent.vue +20 -0
- package/src/components/ui/tabs/TabsList.vue +23 -0
- package/src/components/ui/tabs/TabsTrigger.vue +27 -0
- package/src/components/ui/tabs/index.ts +4 -0
- package/src/components/ui/textarea/Textarea.stories.ts +114 -0
- package/src/components/ui/textarea/Textarea.test.ts +146 -0
- package/src/components/ui/textarea/Textarea.vue +29 -0
- package/src/components/ui/textarea/index.ts +1 -0
- package/src/components/ui/tooltip/Tooltip.stories.ts +30 -0
- package/src/components/ui/tooltip/Tooltip.test.ts +97 -0
- package/src/components/ui/tooltip/Tooltip.vue +20 -0
- package/src/components/ui/tooltip/TooltipContent.vue +29 -0
- package/src/components/ui/tooltip/TooltipProvider.vue +12 -0
- package/src/components/ui/tooltip/TooltipTrigger.vue +12 -0
- package/src/components/ui/tooltip/index.ts +4 -0
- package/src/composables/__demo__/UseAnimationsDemo.vue +60 -0
- package/src/composables/__demo__/UseCameraBorderDemo.vue +65 -0
- package/src/composables/__demo__/UseChatMediaDemo.vue +105 -0
- package/src/composables/__demo__/UseChatMessagesDemo.vue +95 -0
- package/src/composables/__demo__/UseErrorsDemo.vue +41 -0
- package/src/composables/__demo__/UseExperienceDemo.vue +72 -0
- package/src/composables/__demo__/UseMediaDemo.vue +100 -0
- package/src/composables/__demo__/UseNfcListenerDemo.vue +36 -0
- package/src/composables/__demo__/UseQuestionDemo.vue +72 -0
- package/src/composables/__demo__/UseScanningDemo.vue +40 -0
- package/src/composables/__demo__/UseStreamingAudioDemo.vue +101 -0
- package/src/composables/__demo__/UseToastDemo.vue +39 -0
- package/src/composables/__demo__/UseWebSocketDemo.vue +59 -0
- package/src/composables/index.ts +58 -0
- package/src/composables/useAnimations.stories.ts +64 -0
- package/src/composables/useAnimations.test.ts +480 -0
- package/src/composables/useAnimations.ts +108 -0
- package/src/composables/useCameraBorder.stories.ts +45 -0
- package/src/composables/useCameraBorder.test.ts +192 -0
- package/src/composables/useCameraBorder.ts +69 -0
- package/src/composables/useChatMedia.stories.ts +57 -0
- package/src/composables/useChatMedia.test.ts +120 -0
- package/src/composables/useChatMedia.ts +298 -0
- package/src/composables/useChatMessages.stories.ts +52 -0
- package/src/composables/useChatMessages.test.ts +105 -0
- package/src/composables/useChatMessages.ts +295 -0
- package/src/composables/useErrors.stories.ts +44 -0
- package/src/composables/useErrors.test.ts +79 -0
- package/src/composables/useErrors.ts +36 -0
- package/src/composables/useExperience.stories.ts +68 -0
- package/src/composables/useMedia.stories.ts +58 -0
- package/src/composables/useMedia.test.ts +106 -0
- package/src/composables/useMedia.ts +664 -0
- package/src/composables/useNfcListener.stories.ts +42 -0
- package/src/composables/useNfcListener.test.ts +311 -0
- package/src/composables/useNfcListener.ts +90 -0
- package/src/composables/useQuestion.stories.ts +118 -0
- package/src/composables/useQuestion.test.ts +113 -0
- package/src/composables/useQuestion.ts +130 -0
- package/src/composables/useScanning.stories.ts +40 -0
- package/src/composables/useScanning.test.ts +135 -0
- package/src/composables/useScanning.ts +50 -0
- package/src/composables/useStreamingAudio.stories.ts +69 -0
- package/src/composables/useStreamingAudio.test.ts +134 -0
- package/src/composables/useStreamingAudio.ts +308 -0
- package/src/composables/useToast.stories.ts +46 -0
- package/src/composables/useToast.test.ts +138 -0
- package/src/composables/useToast.ts +60 -0
- package/src/composables/useWebSocket.stories.ts +60 -0
- package/src/composables/useWebSocket.test.ts +443 -0
- package/src/composables/useWebSocket.ts +303 -0
- package/src/experience/ExperienceFlow.stories.ts +79 -0
- package/src/experience/ExperienceFlow.vue +100 -0
- package/src/experience/index.ts +81 -0
- package/src/experience/pages/audio-capture/AudioCapturePage.stories.ts +21 -0
- package/src/experience/pages/audio-capture/AudioCapturePage.vue +120 -0
- package/src/experience/pages/audio-capture/index.ts +7 -0
- package/src/experience/pages/audio-review/AudioReviewPage.stories.ts +21 -0
- package/src/experience/pages/audio-review/AudioReviewPage.vue +114 -0
- package/src/experience/pages/audio-review/index.ts +8 -0
- package/src/experience/pages/camera/CameraPage.stories.ts +25 -0
- package/src/experience/pages/camera/CameraPage.vue +186 -0
- package/src/experience/pages/camera/index.ts +7 -0
- package/src/experience/pages/camera-review/CameraReviewPage.stories.ts +27 -0
- package/src/experience/pages/camera-review/CameraReviewPage.test.ts +56 -0
- package/src/experience/pages/camera-review/CameraReviewPage.vue +129 -0
- package/src/experience/pages/camera-review/index.ts +8 -0
- package/src/experience/pages/drawing/DrawingPage.stories.ts +19 -0
- package/src/experience/pages/drawing/DrawingPage.vue +249 -0
- package/src/experience/pages/drawing/index.ts +7 -0
- package/src/experience/pages/final/FinalPage.stories.ts +30 -0
- package/src/experience/pages/final/FinalPage.vue +120 -0
- package/src/experience/pages/final/index.ts +5 -0
- package/src/experience/pages/form/FormPage.stories.ts +40 -0
- package/src/experience/pages/form/FormPage.test.ts +40 -0
- package/src/experience/pages/form/FormPage.vue +200 -0
- package/src/experience/pages/form/index.ts +7 -0
- package/src/experience/pages/instructions/InstructionsPage.stories.ts +24 -0
- package/src/experience/pages/instructions/InstructionsPage.vue +105 -0
- package/src/experience/pages/instructions/index.ts +5 -0
- package/src/experience/pages/loading/LoadingPage.stories.ts +24 -0
- package/src/experience/pages/loading/LoadingPage.vue +97 -0
- package/src/experience/pages/loading/index.ts +10 -0
- package/src/experience/pages/notepad/NotepadPage.stories.ts +19 -0
- package/src/experience/pages/notepad/NotepadPage.test.ts +24 -0
- package/src/experience/pages/notepad/NotepadPage.vue +190 -0
- package/src/experience/pages/notepad/index.ts +7 -0
- package/src/experience/pages/options/OptionsPage.stories.ts +28 -0
- package/src/experience/pages/options/OptionsPage.test.ts +28 -0
- package/src/experience/pages/options/OptionsPage.vue +79 -0
- package/src/experience/pages/options/index.ts +7 -0
- package/src/experience/pages/photo-edit/PhotoEditPage.stories.ts +31 -0
- package/src/experience/pages/photo-edit/PhotoEditPage.vue +204 -0
- package/src/experience/pages/photo-edit/index.ts +7 -0
- package/src/experience/pages/prompt/PromptPage.stories.ts +38 -0
- package/src/experience/pages/prompt/PromptPage.test.ts +70 -0
- package/src/experience/pages/prompt/PromptPage.vue +141 -0
- package/src/experience/pages/prompt/index.ts +7 -0
- package/src/experience/pages/results-gallery/ResultsGalleryPage.stories.ts +30 -0
- package/src/experience/pages/results-gallery/ResultsGalleryPage.test.ts +39 -0
- package/src/experience/pages/results-gallery/ResultsGalleryPage.vue +128 -0
- package/src/experience/pages/results-gallery/index.ts +7 -0
- package/src/experience/pages/share/SharePage.stories.ts +29 -0
- package/src/experience/pages/share/SharePage.test.ts +57 -0
- package/src/experience/pages/share/SharePage.vue +182 -0
- package/src/experience/pages/share/index.ts +5 -0
- package/src/experience/pages/terms/TermsPage.stories.ts +24 -0
- package/src/experience/pages/terms/TermsPage.test.ts +43 -0
- package/src/experience/pages/terms/TermsPage.vue +91 -0
- package/src/experience/pages/terms/index.ts +7 -0
- package/src/experience/pages/text/TextPage.stories.ts +21 -0
- package/src/experience/pages/text/TextPage.test.ts +34 -0
- package/src/experience/pages/text/TextPage.vue +98 -0
- package/src/experience/pages/text/index.ts +7 -0
- package/src/experience/pages/video-capture/VideoCapturePage.stories.ts +21 -0
- package/src/experience/pages/video-capture/VideoCapturePage.vue +153 -0
- package/src/experience/pages/video-capture/index.ts +7 -0
- package/src/experience/pages/video-review/VideoReviewPage.stories.ts +21 -0
- package/src/experience/pages/video-review/VideoReviewPage.vue +117 -0
- package/src/experience/pages/video-review/index.ts +8 -0
- package/src/experience/pages/welcome/WelcomePage.stories.ts +25 -0
- package/src/experience/pages/welcome/WelcomePage.test.ts +27 -0
- package/src/experience/pages/welcome/WelcomePage.vue +52 -0
- package/src/experience/pages/welcome/index.ts +5 -0
- package/src/experience/types.ts +79 -0
- package/src/experience/useExperience.test.ts +275 -0
- package/src/experience/useExperience.ts +168 -0
- package/src/experience/useExperienceApi.test.ts +71 -0
- package/src/experience/useExperienceApi.ts +96 -0
- package/src/experience/withDefaults.ts +22 -0
- package/src/index.ts +532 -0
- package/src/lib/imageToBlob.ts +53 -0
- package/src/lib/utils.test.ts +537 -0
- package/src/lib/utils.ts +225 -0
- package/src/shims.d.ts +10 -0
- package/src/styles/base.css +2 -0
- package/src/styles/tailwind.css +91 -0
- package/src/styles/themes/default.css +72 -0
- package/tsconfig.json +28 -0
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { clsx as u } from "../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.js";
|
|
2
|
+
import { twMerge as p } from "../node_modules/.pnpm/tailwind-merge@3.6.0/node_modules/tailwind-merge/dist/bundle-mjs.js";
|
|
3
|
+
function y(...o) {
|
|
4
|
+
return p(u(o));
|
|
5
|
+
}
|
|
6
|
+
const g = (o) => new Promise((n) => setTimeout(n, o)), x = () => "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (o) => {
|
|
7
|
+
const n = Math.random() * 16 | 0;
|
|
8
|
+
return (o === "x" ? n : n & 3 | 8).toString(16);
|
|
9
|
+
}), _ = (o) => {
|
|
10
|
+
const n = /* @__PURE__ */ new Date(), r = new Date(o), e = n.getTime() - r.getTime();
|
|
11
|
+
if (e < 0) return "in the future";
|
|
12
|
+
const t = Math.floor(e / 1e3), a = Math.floor(t / 60), s = Math.floor(a / 60), i = Math.floor(s / 24), c = Math.floor(i / 7), f = Math.floor(i / 30.44), l = Math.floor(i / 365.25);
|
|
13
|
+
return t < 60 ? t <= 1 ? "just now" : `${t} seconds ago` : a < 60 ? a === 1 ? "1 minute ago" : `${a} minutes ago` : s < 24 ? s === 1 ? "1 hour ago" : `${s} hours ago` : i < 7 ? i === 1 ? "1 day ago" : `${i} days ago` : c < 4 ? c === 1 ? "1 week ago" : `${c} weeks ago` : f < 12 ? f === 1 ? "1 month ago" : `${f} months ago` : l === 1 ? "1 year ago" : `${l} years ago`;
|
|
14
|
+
}, d = (o, n, r = {}) => {
|
|
15
|
+
let e = null, t = 0;
|
|
16
|
+
const { leading: a = !0, trailing: s = !0 } = r, i = function(...c) {
|
|
17
|
+
const f = Date.now();
|
|
18
|
+
!t && !a && (t = f);
|
|
19
|
+
const l = n - (f - t);
|
|
20
|
+
l <= 0 || l > n ? (e && (clearTimeout(e), e = null), t = f, o.apply(this, c)) : !e && s && (e = setTimeout(() => {
|
|
21
|
+
t = a ? Date.now() : 0, e = null, o.apply(this, c);
|
|
22
|
+
}, l));
|
|
23
|
+
};
|
|
24
|
+
return i.cancel = () => {
|
|
25
|
+
e && (clearTimeout(e), e = null), t = 0;
|
|
26
|
+
}, i;
|
|
27
|
+
}, w = (o) => {
|
|
28
|
+
try {
|
|
29
|
+
const n = o.match(/```json\s*([\s\S]*?)\s*```/);
|
|
30
|
+
let r = n ? n[1].trim() : o;
|
|
31
|
+
try {
|
|
32
|
+
return JSON.parse(r);
|
|
33
|
+
} catch {
|
|
34
|
+
r = r.replace(/,(\s*})/g, "$1").replace(/([{,]\s*)(\w+)(\s*:)/g, '$1"$2"$3').replace(/'/g, '"');
|
|
35
|
+
try {
|
|
36
|
+
const e = r.match(/\{[\s\S]*\}/s);
|
|
37
|
+
return e && (r = e[0]), JSON.parse(r);
|
|
38
|
+
} catch {
|
|
39
|
+
return { error: "Failed to parse AI response. Please try again." };
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
} catch {
|
|
43
|
+
return { error: "Failed to parse AI response. Please try again." };
|
|
44
|
+
}
|
|
45
|
+
}, $ = (o) => {
|
|
46
|
+
const n = (t) => /\.(jpg|jpeg|png|gif|webp|svg|bmp|tiff|ico)(\?.*)?$/i.test(t), r = [], e = (t) => {
|
|
47
|
+
typeof t == "string" && n(t) && r.push(fetch(t));
|
|
48
|
+
};
|
|
49
|
+
return Object.values(o).forEach((t) => {
|
|
50
|
+
try {
|
|
51
|
+
if (!t) return;
|
|
52
|
+
typeof t == "string" ? e(t) : Array.isArray(t) ? t.forEach(e) : typeof t == "object" && Object.values(t).forEach((a) => {
|
|
53
|
+
typeof a == "object" && a !== null ? Object.values(a).forEach((s) => {
|
|
54
|
+
typeof s == "object" && s !== null ? Object.values(s).forEach(e) : e(s);
|
|
55
|
+
}) : e(a);
|
|
56
|
+
});
|
|
57
|
+
} catch {
|
|
58
|
+
}
|
|
59
|
+
}), r;
|
|
60
|
+
}, j = (o, n) => {
|
|
61
|
+
const r = {
|
|
62
|
+
heading_1_font_family: o.heading_1_font_family,
|
|
63
|
+
heading_2_font_family: o.heading_2_font_family,
|
|
64
|
+
paragraph_1_font_family: o.paragraph_1_font_family,
|
|
65
|
+
paragraph_2_font_family: o.paragraph_2_font_family,
|
|
66
|
+
button_text_font_family: o.button_text_font_family
|
|
67
|
+
}, e = {
|
|
68
|
+
woff: "woff",
|
|
69
|
+
woff2: "woff2",
|
|
70
|
+
ttf: "truetype",
|
|
71
|
+
otf: "opentype",
|
|
72
|
+
eot: "embedded-opentype",
|
|
73
|
+
svg: "svg"
|
|
74
|
+
};
|
|
75
|
+
for (const [t, a] of Object.entries(r)) {
|
|
76
|
+
if (!a || a !== "custom") continue;
|
|
77
|
+
const s = n[`${t}_custom`];
|
|
78
|
+
if (!s) continue;
|
|
79
|
+
const i = document.getElementById(t);
|
|
80
|
+
i && i.remove();
|
|
81
|
+
const c = document.createElement("style");
|
|
82
|
+
c.id = t;
|
|
83
|
+
const f = s.split("?")[0].split(".").at(-1) || "", l = t.includes("button") ? t.split("_")[0] : "." + t.split("_").slice(0, 2).join("-");
|
|
84
|
+
c.textContent = `
|
|
85
|
+
@font-face {
|
|
86
|
+
font-family: '${t}';
|
|
87
|
+
src: url('${s}') format('${e[f] || f}');
|
|
88
|
+
}
|
|
89
|
+
${l} {
|
|
90
|
+
font-family: '${t}';
|
|
91
|
+
}
|
|
92
|
+
`, document.head.appendChild(c);
|
|
93
|
+
}
|
|
94
|
+
};
|
|
95
|
+
export {
|
|
96
|
+
y as cn,
|
|
97
|
+
g as delay,
|
|
98
|
+
j as loadFonts,
|
|
99
|
+
w as parseAIResponse,
|
|
100
|
+
$ as preloadAssets,
|
|
101
|
+
d as throttle,
|
|
102
|
+
_ as timeAgo,
|
|
103
|
+
x as uuid
|
|
104
|
+
};
|
|
@@ -0,0 +1,532 @@
|
|
|
1
|
+
import { evaluate as L, getSide as j, getSideAxis as T, getOppositePlacement as Z, getExpandedPlacements as ee, getOppositeAxisPlacements as te, getAlignmentSides as ne, clamp as $, getAlignment as _, min as Y, max as B, getAlignmentAxis as U, getPaddingObject as q, rectToClientRect as z, getOppositeAxis as G, sides as ie, getAxisLength as J } from "../../../../../@floating-ui_utils@0.2.11/node_modules/@floating-ui/utils/dist/floating-ui.utils.js";
|
|
2
|
+
function X(t, e, d) {
|
|
3
|
+
let {
|
|
4
|
+
reference: a,
|
|
5
|
+
floating: m
|
|
6
|
+
} = t;
|
|
7
|
+
const n = T(e), i = U(e), l = J(i), g = j(e), p = n === "y", r = a.x + a.width / 2 - m.width / 2, o = a.y + a.height / 2 - m.height / 2, f = a[l] / 2 - m[l] / 2;
|
|
8
|
+
let s;
|
|
9
|
+
switch (g) {
|
|
10
|
+
case "top":
|
|
11
|
+
s = {
|
|
12
|
+
x: r,
|
|
13
|
+
y: a.y - m.height
|
|
14
|
+
};
|
|
15
|
+
break;
|
|
16
|
+
case "bottom":
|
|
17
|
+
s = {
|
|
18
|
+
x: r,
|
|
19
|
+
y: a.y + a.height
|
|
20
|
+
};
|
|
21
|
+
break;
|
|
22
|
+
case "right":
|
|
23
|
+
s = {
|
|
24
|
+
x: a.x + a.width,
|
|
25
|
+
y: o
|
|
26
|
+
};
|
|
27
|
+
break;
|
|
28
|
+
case "left":
|
|
29
|
+
s = {
|
|
30
|
+
x: a.x - m.width,
|
|
31
|
+
y: o
|
|
32
|
+
};
|
|
33
|
+
break;
|
|
34
|
+
default:
|
|
35
|
+
s = {
|
|
36
|
+
x: a.x,
|
|
37
|
+
y: a.y
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
switch (_(e)) {
|
|
41
|
+
case "start":
|
|
42
|
+
s[i] -= f * (d && p ? -1 : 1);
|
|
43
|
+
break;
|
|
44
|
+
case "end":
|
|
45
|
+
s[i] += f * (d && p ? -1 : 1);
|
|
46
|
+
break;
|
|
47
|
+
}
|
|
48
|
+
return s;
|
|
49
|
+
}
|
|
50
|
+
async function se(t, e) {
|
|
51
|
+
var d;
|
|
52
|
+
e === void 0 && (e = {});
|
|
53
|
+
const {
|
|
54
|
+
x: a,
|
|
55
|
+
y: m,
|
|
56
|
+
platform: n,
|
|
57
|
+
rects: i,
|
|
58
|
+
elements: l,
|
|
59
|
+
strategy: g
|
|
60
|
+
} = t, {
|
|
61
|
+
boundary: p = "clippingAncestors",
|
|
62
|
+
rootBoundary: r = "viewport",
|
|
63
|
+
elementContext: o = "floating",
|
|
64
|
+
altBoundary: f = !1,
|
|
65
|
+
padding: s = 0
|
|
66
|
+
} = L(e, t), c = q(s), h = l[f ? o === "floating" ? "reference" : "floating" : o], v = z(await n.getClippingRect({
|
|
67
|
+
element: (d = await (n.isElement == null ? void 0 : n.isElement(h))) == null || d ? h : h.contextElement || await (n.getDocumentElement == null ? void 0 : n.getDocumentElement(l.floating)),
|
|
68
|
+
boundary: p,
|
|
69
|
+
rootBoundary: r,
|
|
70
|
+
strategy: g
|
|
71
|
+
})), A = o === "floating" ? {
|
|
72
|
+
x: a,
|
|
73
|
+
y: m,
|
|
74
|
+
width: i.floating.width,
|
|
75
|
+
height: i.floating.height
|
|
76
|
+
} : i.reference, u = await (n.getOffsetParent == null ? void 0 : n.getOffsetParent(l.floating)), w = await (n.isElement == null ? void 0 : n.isElement(u)) ? await (n.getScale == null ? void 0 : n.getScale(u)) || {
|
|
77
|
+
x: 1,
|
|
78
|
+
y: 1
|
|
79
|
+
} : {
|
|
80
|
+
x: 1,
|
|
81
|
+
y: 1
|
|
82
|
+
}, y = z(n.convertOffsetParentRelativeRectToViewportRelativeRect ? await n.convertOffsetParentRelativeRectToViewportRelativeRect({
|
|
83
|
+
elements: l,
|
|
84
|
+
rect: A,
|
|
85
|
+
offsetParent: u,
|
|
86
|
+
strategy: g
|
|
87
|
+
}) : A);
|
|
88
|
+
return {
|
|
89
|
+
top: (v.top - y.top + c.top) / w.y,
|
|
90
|
+
bottom: (y.bottom - v.bottom + c.bottom) / w.y,
|
|
91
|
+
left: (v.left - y.left + c.left) / w.x,
|
|
92
|
+
right: (y.right - v.right + c.right) / w.x
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
const oe = 50, le = async (t, e, d) => {
|
|
96
|
+
const {
|
|
97
|
+
placement: a = "bottom",
|
|
98
|
+
strategy: m = "absolute",
|
|
99
|
+
middleware: n = [],
|
|
100
|
+
platform: i
|
|
101
|
+
} = d, l = i.detectOverflow ? i : {
|
|
102
|
+
...i,
|
|
103
|
+
detectOverflow: se
|
|
104
|
+
}, g = await (i.isRTL == null ? void 0 : i.isRTL(e));
|
|
105
|
+
let p = await i.getElementRects({
|
|
106
|
+
reference: t,
|
|
107
|
+
floating: e,
|
|
108
|
+
strategy: m
|
|
109
|
+
}), {
|
|
110
|
+
x: r,
|
|
111
|
+
y: o
|
|
112
|
+
} = X(p, a, g), f = a, s = 0;
|
|
113
|
+
const c = {};
|
|
114
|
+
for (let x = 0; x < n.length; x++) {
|
|
115
|
+
const h = n[x];
|
|
116
|
+
if (!h)
|
|
117
|
+
continue;
|
|
118
|
+
const {
|
|
119
|
+
name: v,
|
|
120
|
+
fn: A
|
|
121
|
+
} = h, {
|
|
122
|
+
x: u,
|
|
123
|
+
y: w,
|
|
124
|
+
data: y,
|
|
125
|
+
reset: b
|
|
126
|
+
} = await A({
|
|
127
|
+
x: r,
|
|
128
|
+
y: o,
|
|
129
|
+
initialPlacement: a,
|
|
130
|
+
placement: f,
|
|
131
|
+
strategy: m,
|
|
132
|
+
middlewareData: c,
|
|
133
|
+
rects: p,
|
|
134
|
+
platform: l,
|
|
135
|
+
elements: {
|
|
136
|
+
reference: t,
|
|
137
|
+
floating: e
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
r = u ?? r, o = w ?? o, c[v] = {
|
|
141
|
+
...c[v],
|
|
142
|
+
...y
|
|
143
|
+
}, b && s < oe && (s++, typeof b == "object" && (b.placement && (f = b.placement), b.rects && (p = b.rects === !0 ? await i.getElementRects({
|
|
144
|
+
reference: t,
|
|
145
|
+
floating: e,
|
|
146
|
+
strategy: m
|
|
147
|
+
}) : b.rects), {
|
|
148
|
+
x: r,
|
|
149
|
+
y: o
|
|
150
|
+
} = X(p, f, g)), x = -1);
|
|
151
|
+
}
|
|
152
|
+
return {
|
|
153
|
+
x: r,
|
|
154
|
+
y: o,
|
|
155
|
+
placement: f,
|
|
156
|
+
strategy: m,
|
|
157
|
+
middlewareData: c
|
|
158
|
+
};
|
|
159
|
+
}, re = (t) => ({
|
|
160
|
+
name: "arrow",
|
|
161
|
+
options: t,
|
|
162
|
+
async fn(e) {
|
|
163
|
+
const {
|
|
164
|
+
x: d,
|
|
165
|
+
y: a,
|
|
166
|
+
placement: m,
|
|
167
|
+
rects: n,
|
|
168
|
+
platform: i,
|
|
169
|
+
elements: l,
|
|
170
|
+
middlewareData: g
|
|
171
|
+
} = e, {
|
|
172
|
+
element: p,
|
|
173
|
+
padding: r = 0
|
|
174
|
+
} = L(t, e) || {};
|
|
175
|
+
if (p == null)
|
|
176
|
+
return {};
|
|
177
|
+
const o = q(r), f = {
|
|
178
|
+
x: d,
|
|
179
|
+
y: a
|
|
180
|
+
}, s = U(m), c = J(s), x = await i.getDimensions(p), h = s === "y", v = h ? "top" : "left", A = h ? "bottom" : "right", u = h ? "clientHeight" : "clientWidth", w = n.reference[c] + n.reference[s] - f[s] - n.floating[c], y = f[s] - n.reference[s], b = await (i.getOffsetParent == null ? void 0 : i.getOffsetParent(p));
|
|
181
|
+
let C = b ? b[u] : 0;
|
|
182
|
+
(!C || !await (i.isElement == null ? void 0 : i.isElement(b))) && (C = l.floating[u] || n.floating[c]);
|
|
183
|
+
const E = w / 2 - y / 2, D = C / 2 - x[c] / 2 - 1, P = Y(o[v], D), H = Y(o[A], D), k = P, F = C - x[c] - H, O = C / 2 - x[c] / 2 + E, W = $(k, O, F), M = !g.arrow && _(m) != null && O !== W && n.reference[c] / 2 - (O < k ? P : H) - x[c] / 2 < 0, S = M ? O < k ? O - k : O - F : 0;
|
|
184
|
+
return {
|
|
185
|
+
[s]: f[s] + S,
|
|
186
|
+
data: {
|
|
187
|
+
[s]: W,
|
|
188
|
+
centerOffset: O - W - S,
|
|
189
|
+
...M && {
|
|
190
|
+
alignmentOffset: S
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
reset: M
|
|
194
|
+
};
|
|
195
|
+
}
|
|
196
|
+
}), fe = function(t) {
|
|
197
|
+
return t === void 0 && (t = {}), {
|
|
198
|
+
name: "flip",
|
|
199
|
+
options: t,
|
|
200
|
+
async fn(e) {
|
|
201
|
+
var d, a;
|
|
202
|
+
const {
|
|
203
|
+
placement: m,
|
|
204
|
+
middlewareData: n,
|
|
205
|
+
rects: i,
|
|
206
|
+
initialPlacement: l,
|
|
207
|
+
platform: g,
|
|
208
|
+
elements: p
|
|
209
|
+
} = e, {
|
|
210
|
+
mainAxis: r = !0,
|
|
211
|
+
crossAxis: o = !0,
|
|
212
|
+
fallbackPlacements: f,
|
|
213
|
+
fallbackStrategy: s = "bestFit",
|
|
214
|
+
fallbackAxisSideDirection: c = "none",
|
|
215
|
+
flipAlignment: x = !0,
|
|
216
|
+
...h
|
|
217
|
+
} = L(t, e);
|
|
218
|
+
if ((d = n.arrow) != null && d.alignmentOffset)
|
|
219
|
+
return {};
|
|
220
|
+
const v = j(m), A = T(l), u = j(l) === l, w = await (g.isRTL == null ? void 0 : g.isRTL(p.floating)), y = f || (u || !x ? [Z(l)] : ee(l)), b = c !== "none";
|
|
221
|
+
!f && b && y.push(...te(l, x, c, w));
|
|
222
|
+
const C = [l, ...y], E = await g.detectOverflow(e, h), D = [];
|
|
223
|
+
let P = ((a = n.flip) == null ? void 0 : a.overflows) || [];
|
|
224
|
+
if (r && D.push(E[v]), o) {
|
|
225
|
+
const O = ne(m, i, w);
|
|
226
|
+
D.push(E[O[0]], E[O[1]]);
|
|
227
|
+
}
|
|
228
|
+
if (P = [...P, {
|
|
229
|
+
placement: m,
|
|
230
|
+
overflows: D
|
|
231
|
+
}], !D.every((O) => O <= 0)) {
|
|
232
|
+
var H, k;
|
|
233
|
+
const O = (((H = n.flip) == null ? void 0 : H.index) || 0) + 1, W = C[O];
|
|
234
|
+
if (W && (!(o === "alignment" ? A !== T(W) : !1) || // We leave the current main axis only if every placement on that axis
|
|
235
|
+
// overflows the main axis.
|
|
236
|
+
P.every((R) => T(R.placement) === A ? R.overflows[0] > 0 : !0)))
|
|
237
|
+
return {
|
|
238
|
+
data: {
|
|
239
|
+
index: O,
|
|
240
|
+
overflows: P
|
|
241
|
+
},
|
|
242
|
+
reset: {
|
|
243
|
+
placement: W
|
|
244
|
+
}
|
|
245
|
+
};
|
|
246
|
+
let M = (k = P.filter((S) => S.overflows[0] <= 0).sort((S, R) => S.overflows[1] - R.overflows[1])[0]) == null ? void 0 : k.placement;
|
|
247
|
+
if (!M)
|
|
248
|
+
switch (s) {
|
|
249
|
+
case "bestFit": {
|
|
250
|
+
var F;
|
|
251
|
+
const S = (F = P.filter((R) => {
|
|
252
|
+
if (b) {
|
|
253
|
+
const V = T(R.placement);
|
|
254
|
+
return V === A || // Create a bias to the `y` side axis due to horizontal
|
|
255
|
+
// reading directions favoring greater width.
|
|
256
|
+
V === "y";
|
|
257
|
+
}
|
|
258
|
+
return !0;
|
|
259
|
+
}).map((R) => [R.placement, R.overflows.filter((V) => V > 0).reduce((V, Q) => V + Q, 0)]).sort((R, V) => R[1] - V[1])[0]) == null ? void 0 : F[0];
|
|
260
|
+
S && (M = S);
|
|
261
|
+
break;
|
|
262
|
+
}
|
|
263
|
+
case "initialPlacement":
|
|
264
|
+
M = l;
|
|
265
|
+
break;
|
|
266
|
+
}
|
|
267
|
+
if (m !== M)
|
|
268
|
+
return {
|
|
269
|
+
reset: {
|
|
270
|
+
placement: M
|
|
271
|
+
}
|
|
272
|
+
};
|
|
273
|
+
}
|
|
274
|
+
return {};
|
|
275
|
+
}
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
function I(t, e) {
|
|
279
|
+
return {
|
|
280
|
+
top: t.top - e.height,
|
|
281
|
+
right: t.right - e.width,
|
|
282
|
+
bottom: t.bottom - e.height,
|
|
283
|
+
left: t.left - e.width
|
|
284
|
+
};
|
|
285
|
+
}
|
|
286
|
+
function N(t) {
|
|
287
|
+
return ie.some((e) => t[e] >= 0);
|
|
288
|
+
}
|
|
289
|
+
const me = function(t) {
|
|
290
|
+
return t === void 0 && (t = {}), {
|
|
291
|
+
name: "hide",
|
|
292
|
+
options: t,
|
|
293
|
+
async fn(e) {
|
|
294
|
+
const {
|
|
295
|
+
rects: d,
|
|
296
|
+
platform: a
|
|
297
|
+
} = e, {
|
|
298
|
+
strategy: m = "referenceHidden",
|
|
299
|
+
...n
|
|
300
|
+
} = L(t, e);
|
|
301
|
+
switch (m) {
|
|
302
|
+
case "referenceHidden": {
|
|
303
|
+
const i = await a.detectOverflow(e, {
|
|
304
|
+
...n,
|
|
305
|
+
elementContext: "reference"
|
|
306
|
+
}), l = I(i, d.reference);
|
|
307
|
+
return {
|
|
308
|
+
data: {
|
|
309
|
+
referenceHiddenOffsets: l,
|
|
310
|
+
referenceHidden: N(l)
|
|
311
|
+
}
|
|
312
|
+
};
|
|
313
|
+
}
|
|
314
|
+
case "escaped": {
|
|
315
|
+
const i = await a.detectOverflow(e, {
|
|
316
|
+
...n,
|
|
317
|
+
altBoundary: !0
|
|
318
|
+
}), l = I(i, d.floating);
|
|
319
|
+
return {
|
|
320
|
+
data: {
|
|
321
|
+
escapedOffsets: l,
|
|
322
|
+
escaped: N(l)
|
|
323
|
+
}
|
|
324
|
+
};
|
|
325
|
+
}
|
|
326
|
+
default:
|
|
327
|
+
return {};
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
};
|
|
331
|
+
}, K = /* @__PURE__ */ new Set(["left", "top"]);
|
|
332
|
+
async function ce(t, e) {
|
|
333
|
+
const {
|
|
334
|
+
placement: d,
|
|
335
|
+
platform: a,
|
|
336
|
+
elements: m
|
|
337
|
+
} = t, n = await (a.isRTL == null ? void 0 : a.isRTL(m.floating)), i = j(d), l = _(d), g = T(d) === "y", p = K.has(i) ? -1 : 1, r = n && g ? -1 : 1, o = L(e, t);
|
|
338
|
+
let {
|
|
339
|
+
mainAxis: f,
|
|
340
|
+
crossAxis: s,
|
|
341
|
+
alignmentAxis: c
|
|
342
|
+
} = typeof o == "number" ? {
|
|
343
|
+
mainAxis: o,
|
|
344
|
+
crossAxis: 0,
|
|
345
|
+
alignmentAxis: null
|
|
346
|
+
} : {
|
|
347
|
+
mainAxis: o.mainAxis || 0,
|
|
348
|
+
crossAxis: o.crossAxis || 0,
|
|
349
|
+
alignmentAxis: o.alignmentAxis
|
|
350
|
+
};
|
|
351
|
+
return l && typeof c == "number" && (s = l === "end" ? c * -1 : c), g ? {
|
|
352
|
+
x: s * r,
|
|
353
|
+
y: f * p
|
|
354
|
+
} : {
|
|
355
|
+
x: f * p,
|
|
356
|
+
y: s * r
|
|
357
|
+
};
|
|
358
|
+
}
|
|
359
|
+
const de = function(t) {
|
|
360
|
+
return t === void 0 && (t = 0), {
|
|
361
|
+
name: "offset",
|
|
362
|
+
options: t,
|
|
363
|
+
async fn(e) {
|
|
364
|
+
var d, a;
|
|
365
|
+
const {
|
|
366
|
+
x: m,
|
|
367
|
+
y: n,
|
|
368
|
+
placement: i,
|
|
369
|
+
middlewareData: l
|
|
370
|
+
} = e, g = await ce(e, t);
|
|
371
|
+
return i === ((d = l.offset) == null ? void 0 : d.placement) && (a = l.arrow) != null && a.alignmentOffset ? {} : {
|
|
372
|
+
x: m + g.x,
|
|
373
|
+
y: n + g.y,
|
|
374
|
+
data: {
|
|
375
|
+
...g,
|
|
376
|
+
placement: i
|
|
377
|
+
}
|
|
378
|
+
};
|
|
379
|
+
}
|
|
380
|
+
};
|
|
381
|
+
}, xe = function(t) {
|
|
382
|
+
return t === void 0 && (t = {}), {
|
|
383
|
+
name: "shift",
|
|
384
|
+
options: t,
|
|
385
|
+
async fn(e) {
|
|
386
|
+
const {
|
|
387
|
+
x: d,
|
|
388
|
+
y: a,
|
|
389
|
+
placement: m,
|
|
390
|
+
platform: n
|
|
391
|
+
} = e, {
|
|
392
|
+
mainAxis: i = !0,
|
|
393
|
+
crossAxis: l = !1,
|
|
394
|
+
limiter: g = {
|
|
395
|
+
fn: (v) => {
|
|
396
|
+
let {
|
|
397
|
+
x: A,
|
|
398
|
+
y: u
|
|
399
|
+
} = v;
|
|
400
|
+
return {
|
|
401
|
+
x: A,
|
|
402
|
+
y: u
|
|
403
|
+
};
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
...p
|
|
407
|
+
} = L(t, e), r = {
|
|
408
|
+
x: d,
|
|
409
|
+
y: a
|
|
410
|
+
}, o = await n.detectOverflow(e, p), f = T(j(m)), s = G(f);
|
|
411
|
+
let c = r[s], x = r[f];
|
|
412
|
+
if (i) {
|
|
413
|
+
const v = s === "y" ? "top" : "left", A = s === "y" ? "bottom" : "right", u = c + o[v], w = c - o[A];
|
|
414
|
+
c = $(u, c, w);
|
|
415
|
+
}
|
|
416
|
+
if (l) {
|
|
417
|
+
const v = f === "y" ? "top" : "left", A = f === "y" ? "bottom" : "right", u = x + o[v], w = x - o[A];
|
|
418
|
+
x = $(u, x, w);
|
|
419
|
+
}
|
|
420
|
+
const h = g.fn({
|
|
421
|
+
...e,
|
|
422
|
+
[s]: c,
|
|
423
|
+
[f]: x
|
|
424
|
+
});
|
|
425
|
+
return {
|
|
426
|
+
...h,
|
|
427
|
+
data: {
|
|
428
|
+
x: h.x - d,
|
|
429
|
+
y: h.y - a,
|
|
430
|
+
enabled: {
|
|
431
|
+
[s]: i,
|
|
432
|
+
[f]: l
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
};
|
|
436
|
+
}
|
|
437
|
+
};
|
|
438
|
+
}, ge = function(t) {
|
|
439
|
+
return t === void 0 && (t = {}), {
|
|
440
|
+
options: t,
|
|
441
|
+
fn(e) {
|
|
442
|
+
const {
|
|
443
|
+
x: d,
|
|
444
|
+
y: a,
|
|
445
|
+
placement: m,
|
|
446
|
+
rects: n,
|
|
447
|
+
middlewareData: i
|
|
448
|
+
} = e, {
|
|
449
|
+
offset: l = 0,
|
|
450
|
+
mainAxis: g = !0,
|
|
451
|
+
crossAxis: p = !0
|
|
452
|
+
} = L(t, e), r = {
|
|
453
|
+
x: d,
|
|
454
|
+
y: a
|
|
455
|
+
}, o = T(m), f = G(o);
|
|
456
|
+
let s = r[f], c = r[o];
|
|
457
|
+
const x = L(l, e), h = typeof x == "number" ? {
|
|
458
|
+
mainAxis: x,
|
|
459
|
+
crossAxis: 0
|
|
460
|
+
} : {
|
|
461
|
+
mainAxis: 0,
|
|
462
|
+
crossAxis: 0,
|
|
463
|
+
...x
|
|
464
|
+
};
|
|
465
|
+
if (g) {
|
|
466
|
+
const u = f === "y" ? "height" : "width", w = n.reference[f] - n.floating[u] + h.mainAxis, y = n.reference[f] + n.reference[u] - h.mainAxis;
|
|
467
|
+
s < w ? s = w : s > y && (s = y);
|
|
468
|
+
}
|
|
469
|
+
if (p) {
|
|
470
|
+
var v, A;
|
|
471
|
+
const u = f === "y" ? "width" : "height", w = K.has(j(m)), y = n.reference[o] - n.floating[u] + (w && ((v = i.offset) == null ? void 0 : v[o]) || 0) + (w ? 0 : h.crossAxis), b = n.reference[o] + n.reference[u] + (w ? 0 : ((A = i.offset) == null ? void 0 : A[o]) || 0) - (w ? h.crossAxis : 0);
|
|
472
|
+
c < y ? c = y : c > b && (c = b);
|
|
473
|
+
}
|
|
474
|
+
return {
|
|
475
|
+
[f]: s,
|
|
476
|
+
[o]: c
|
|
477
|
+
};
|
|
478
|
+
}
|
|
479
|
+
};
|
|
480
|
+
}, ue = function(t) {
|
|
481
|
+
return t === void 0 && (t = {}), {
|
|
482
|
+
name: "size",
|
|
483
|
+
options: t,
|
|
484
|
+
async fn(e) {
|
|
485
|
+
var d, a;
|
|
486
|
+
const {
|
|
487
|
+
placement: m,
|
|
488
|
+
rects: n,
|
|
489
|
+
platform: i,
|
|
490
|
+
elements: l
|
|
491
|
+
} = e, {
|
|
492
|
+
apply: g = () => {
|
|
493
|
+
},
|
|
494
|
+
...p
|
|
495
|
+
} = L(t, e), r = await i.detectOverflow(e, p), o = j(m), f = _(m), s = T(m) === "y", {
|
|
496
|
+
width: c,
|
|
497
|
+
height: x
|
|
498
|
+
} = n.floating;
|
|
499
|
+
let h, v;
|
|
500
|
+
o === "top" || o === "bottom" ? (h = o, v = f === (await (i.isRTL == null ? void 0 : i.isRTL(l.floating)) ? "start" : "end") ? "left" : "right") : (v = o, h = f === "end" ? "top" : "bottom");
|
|
501
|
+
const A = x - r.top - r.bottom, u = c - r.left - r.right, w = Y(x - r[h], A), y = Y(c - r[v], u), b = !e.middlewareData.shift;
|
|
502
|
+
let C = w, E = y;
|
|
503
|
+
if ((d = e.middlewareData.shift) != null && d.enabled.x && (E = u), (a = e.middlewareData.shift) != null && a.enabled.y && (C = A), b && !f) {
|
|
504
|
+
const P = B(r.left, 0), H = B(r.right, 0), k = B(r.top, 0), F = B(r.bottom, 0);
|
|
505
|
+
s ? E = c - 2 * (P !== 0 || H !== 0 ? P + H : B(r.left, r.right)) : C = x - 2 * (k !== 0 || F !== 0 ? k + F : B(r.top, r.bottom));
|
|
506
|
+
}
|
|
507
|
+
await g({
|
|
508
|
+
...e,
|
|
509
|
+
availableWidth: E,
|
|
510
|
+
availableHeight: C
|
|
511
|
+
});
|
|
512
|
+
const D = await i.getDimensions(l.floating);
|
|
513
|
+
return c !== D.width || x !== D.height ? {
|
|
514
|
+
reset: {
|
|
515
|
+
rects: !0
|
|
516
|
+
}
|
|
517
|
+
} : {};
|
|
518
|
+
}
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
export {
|
|
522
|
+
re as arrow,
|
|
523
|
+
le as computePosition,
|
|
524
|
+
se as detectOverflow,
|
|
525
|
+
fe as flip,
|
|
526
|
+
me as hide,
|
|
527
|
+
ge as limitShift,
|
|
528
|
+
de as offset,
|
|
529
|
+
z as rectToClientRect,
|
|
530
|
+
xe as shift,
|
|
531
|
+
ue as size
|
|
532
|
+
};
|