@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,403 @@
|
|
|
1
|
+
import { computePosition as st, offset as rt, flip as ct, shift as lt, limitShift as ft, size as ut, hide as ht, arrow as at } from "../../../../../@floating-ui_core@1.7.5/node_modules/@floating-ui/core/dist/floating-ui.core.js";
|
|
2
|
+
import { createCoords as y, rectToClientRect as J, round as z, max as E, min as N, floor as D } from "../../../../../@floating-ui_utils@0.2.11/node_modules/@floating-ui/utils/dist/floating-ui.utils.js";
|
|
3
|
+
import { getOverflowAncestors as $, isElement as v, getDocumentElement as b, getWindow as O, getFrameElement as U, getComputedStyle as R, isHTMLElement as T, isTopLayer as V, getParentNode as S, isLastTraversableNode as A, isTableElement as dt, isContainingBlock as Q, getContainingBlock as gt, getNodeName as _, isOverflowElement as q, getNodeScroll as H, isWebKit as Y } from "../../../../../@floating-ui_utils@0.2.11/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js";
|
|
4
|
+
function Z(t) {
|
|
5
|
+
const e = R(t);
|
|
6
|
+
let i = parseFloat(e.width) || 0, o = parseFloat(e.height) || 0;
|
|
7
|
+
const n = T(t), r = n ? t.offsetWidth : i, s = n ? t.offsetHeight : o, c = z(i) !== r || z(o) !== s;
|
|
8
|
+
return c && (i = r, o = s), {
|
|
9
|
+
width: i,
|
|
10
|
+
height: o,
|
|
11
|
+
$: c
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
function X(t) {
|
|
15
|
+
return v(t) ? t : t.contextElement;
|
|
16
|
+
}
|
|
17
|
+
function F(t) {
|
|
18
|
+
const e = X(t);
|
|
19
|
+
if (!T(e))
|
|
20
|
+
return y(1);
|
|
21
|
+
const i = e.getBoundingClientRect(), {
|
|
22
|
+
width: o,
|
|
23
|
+
height: n,
|
|
24
|
+
$: r
|
|
25
|
+
} = Z(e);
|
|
26
|
+
let s = (r ? z(i.width) : i.width) / o, c = (r ? z(i.height) : i.height) / n;
|
|
27
|
+
return (!s || !Number.isFinite(s)) && (s = 1), (!c || !Number.isFinite(c)) && (c = 1), {
|
|
28
|
+
x: s,
|
|
29
|
+
y: c
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
const pt = /* @__PURE__ */ y(0);
|
|
33
|
+
function tt(t) {
|
|
34
|
+
const e = O(t);
|
|
35
|
+
return !Y() || !e.visualViewport ? pt : {
|
|
36
|
+
x: e.visualViewport.offsetLeft,
|
|
37
|
+
y: e.visualViewport.offsetTop
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
function mt(t, e, i) {
|
|
41
|
+
return e === void 0 && (e = !1), !i || e && i !== O(t) ? !1 : e;
|
|
42
|
+
}
|
|
43
|
+
function L(t, e, i, o) {
|
|
44
|
+
e === void 0 && (e = !1), i === void 0 && (i = !1);
|
|
45
|
+
const n = t.getBoundingClientRect(), r = X(t);
|
|
46
|
+
let s = y(1);
|
|
47
|
+
e && (o ? v(o) && (s = F(o)) : s = F(t));
|
|
48
|
+
const c = mt(r, i, o) ? tt(r) : y(0);
|
|
49
|
+
let l = (n.left + c.x) / s.x, f = (n.top + c.y) / s.y, u = n.width / s.x, a = n.height / s.y;
|
|
50
|
+
if (r) {
|
|
51
|
+
const d = O(r), h = o && v(o) ? O(o) : o;
|
|
52
|
+
let m = d, p = U(m);
|
|
53
|
+
for (; p && o && h !== m; ) {
|
|
54
|
+
const w = F(p), g = p.getBoundingClientRect(), x = R(p), C = g.left + (p.clientLeft + parseFloat(x.paddingLeft)) * w.x, W = g.top + (p.clientTop + parseFloat(x.paddingTop)) * w.y;
|
|
55
|
+
l *= w.x, f *= w.y, u *= w.x, a *= w.y, l += C, f += W, m = O(p), p = U(m);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
return J({
|
|
59
|
+
width: u,
|
|
60
|
+
height: a,
|
|
61
|
+
x: l,
|
|
62
|
+
y: f
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
function I(t, e) {
|
|
66
|
+
const i = H(t).scrollLeft;
|
|
67
|
+
return e ? e.left + i : L(b(t)).left + i;
|
|
68
|
+
}
|
|
69
|
+
function et(t, e) {
|
|
70
|
+
const i = t.getBoundingClientRect(), o = i.left + e.scrollLeft - I(t, i), n = i.top + e.scrollTop;
|
|
71
|
+
return {
|
|
72
|
+
x: o,
|
|
73
|
+
y: n
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
function wt(t) {
|
|
77
|
+
let {
|
|
78
|
+
elements: e,
|
|
79
|
+
rect: i,
|
|
80
|
+
offsetParent: o,
|
|
81
|
+
strategy: n
|
|
82
|
+
} = t;
|
|
83
|
+
const r = n === "fixed", s = b(o), c = e ? V(e.floating) : !1;
|
|
84
|
+
if (o === s || c && r)
|
|
85
|
+
return i;
|
|
86
|
+
let l = {
|
|
87
|
+
scrollLeft: 0,
|
|
88
|
+
scrollTop: 0
|
|
89
|
+
}, f = y(1);
|
|
90
|
+
const u = y(0), a = T(o);
|
|
91
|
+
if ((a || !a && !r) && ((_(o) !== "body" || q(s)) && (l = H(o)), a)) {
|
|
92
|
+
const h = L(o);
|
|
93
|
+
f = F(o), u.x = h.x + o.clientLeft, u.y = h.y + o.clientTop;
|
|
94
|
+
}
|
|
95
|
+
const d = s && !a && !r ? et(s, l) : y(0);
|
|
96
|
+
return {
|
|
97
|
+
width: i.width * f.x,
|
|
98
|
+
height: i.height * f.y,
|
|
99
|
+
x: i.x * f.x - l.scrollLeft * f.x + u.x + d.x,
|
|
100
|
+
y: i.y * f.y - l.scrollTop * f.y + u.y + d.y
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
function yt(t) {
|
|
104
|
+
return Array.from(t.getClientRects());
|
|
105
|
+
}
|
|
106
|
+
function xt(t) {
|
|
107
|
+
const e = b(t), i = H(t), o = t.ownerDocument.body, n = E(e.scrollWidth, e.clientWidth, o.scrollWidth, o.clientWidth), r = E(e.scrollHeight, e.clientHeight, o.scrollHeight, o.clientHeight);
|
|
108
|
+
let s = -i.scrollLeft + I(t);
|
|
109
|
+
const c = -i.scrollTop;
|
|
110
|
+
return R(o).direction === "rtl" && (s += E(e.clientWidth, o.clientWidth) - n), {
|
|
111
|
+
width: n,
|
|
112
|
+
height: r,
|
|
113
|
+
x: s,
|
|
114
|
+
y: c
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
const K = 25;
|
|
118
|
+
function vt(t, e) {
|
|
119
|
+
const i = O(t), o = b(t), n = i.visualViewport;
|
|
120
|
+
let r = o.clientWidth, s = o.clientHeight, c = 0, l = 0;
|
|
121
|
+
if (n) {
|
|
122
|
+
r = n.width, s = n.height;
|
|
123
|
+
const u = Y();
|
|
124
|
+
(!u || u && e === "fixed") && (c = n.offsetLeft, l = n.offsetTop);
|
|
125
|
+
}
|
|
126
|
+
const f = I(o);
|
|
127
|
+
if (f <= 0) {
|
|
128
|
+
const u = o.ownerDocument, a = u.body, d = getComputedStyle(a), h = u.compatMode === "CSS1Compat" && parseFloat(d.marginLeft) + parseFloat(d.marginRight) || 0, m = Math.abs(o.clientWidth - a.clientWidth - h);
|
|
129
|
+
m <= K && (r -= m);
|
|
130
|
+
} else f <= K && (r += f);
|
|
131
|
+
return {
|
|
132
|
+
width: r,
|
|
133
|
+
height: s,
|
|
134
|
+
x: c,
|
|
135
|
+
y: l
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
function Rt(t, e) {
|
|
139
|
+
const i = L(t, !0, e === "fixed"), o = i.top + t.clientTop, n = i.left + t.clientLeft, r = T(t) ? F(t) : y(1), s = t.clientWidth * r.x, c = t.clientHeight * r.y, l = n * r.x, f = o * r.y;
|
|
140
|
+
return {
|
|
141
|
+
width: s,
|
|
142
|
+
height: c,
|
|
143
|
+
x: l,
|
|
144
|
+
y: f
|
|
145
|
+
};
|
|
146
|
+
}
|
|
147
|
+
function j(t, e, i) {
|
|
148
|
+
let o;
|
|
149
|
+
if (e === "viewport")
|
|
150
|
+
o = vt(t, i);
|
|
151
|
+
else if (e === "document")
|
|
152
|
+
o = xt(b(t));
|
|
153
|
+
else if (v(e))
|
|
154
|
+
o = Rt(e, i);
|
|
155
|
+
else {
|
|
156
|
+
const n = tt(t);
|
|
157
|
+
o = {
|
|
158
|
+
x: e.x - n.x,
|
|
159
|
+
y: e.y - n.y,
|
|
160
|
+
width: e.width,
|
|
161
|
+
height: e.height
|
|
162
|
+
};
|
|
163
|
+
}
|
|
164
|
+
return J(o);
|
|
165
|
+
}
|
|
166
|
+
function it(t, e) {
|
|
167
|
+
const i = S(t);
|
|
168
|
+
return i === e || !v(i) || A(i) ? !1 : R(i).position === "fixed" || it(i, e);
|
|
169
|
+
}
|
|
170
|
+
function bt(t, e) {
|
|
171
|
+
const i = e.get(t);
|
|
172
|
+
if (i)
|
|
173
|
+
return i;
|
|
174
|
+
let o = $(t, [], !1).filter((c) => v(c) && _(c) !== "body"), n = null;
|
|
175
|
+
const r = R(t).position === "fixed";
|
|
176
|
+
let s = r ? S(t) : t;
|
|
177
|
+
for (; v(s) && !A(s); ) {
|
|
178
|
+
const c = R(s), l = Q(s);
|
|
179
|
+
!l && c.position === "fixed" && (n = null), (r ? !l && !n : !l && c.position === "static" && !!n && (n.position === "absolute" || n.position === "fixed") || q(s) && !l && it(t, s)) ? o = o.filter((u) => u !== s) : n = c, s = S(s);
|
|
180
|
+
}
|
|
181
|
+
return e.set(t, o), o;
|
|
182
|
+
}
|
|
183
|
+
function Ct(t) {
|
|
184
|
+
let {
|
|
185
|
+
element: e,
|
|
186
|
+
boundary: i,
|
|
187
|
+
rootBoundary: o,
|
|
188
|
+
strategy: n
|
|
189
|
+
} = t;
|
|
190
|
+
const s = [...i === "clippingAncestors" ? V(e) ? [] : bt(e, this._c) : [].concat(i), o], c = j(e, s[0], n);
|
|
191
|
+
let l = c.top, f = c.right, u = c.bottom, a = c.left;
|
|
192
|
+
for (let d = 1; d < s.length; d++) {
|
|
193
|
+
const h = j(e, s[d], n);
|
|
194
|
+
l = E(h.top, l), f = N(h.right, f), u = N(h.bottom, u), a = E(h.left, a);
|
|
195
|
+
}
|
|
196
|
+
return {
|
|
197
|
+
width: f - a,
|
|
198
|
+
height: u - l,
|
|
199
|
+
x: a,
|
|
200
|
+
y: l
|
|
201
|
+
};
|
|
202
|
+
}
|
|
203
|
+
function Ot(t) {
|
|
204
|
+
const {
|
|
205
|
+
width: e,
|
|
206
|
+
height: i
|
|
207
|
+
} = Z(t);
|
|
208
|
+
return {
|
|
209
|
+
width: e,
|
|
210
|
+
height: i
|
|
211
|
+
};
|
|
212
|
+
}
|
|
213
|
+
function Lt(t, e, i) {
|
|
214
|
+
const o = T(e), n = b(e), r = i === "fixed", s = L(t, !0, r, e);
|
|
215
|
+
let c = {
|
|
216
|
+
scrollLeft: 0,
|
|
217
|
+
scrollTop: 0
|
|
218
|
+
};
|
|
219
|
+
const l = y(0);
|
|
220
|
+
function f() {
|
|
221
|
+
l.x = I(n);
|
|
222
|
+
}
|
|
223
|
+
if (o || !o && !r)
|
|
224
|
+
if ((_(e) !== "body" || q(n)) && (c = H(e)), o) {
|
|
225
|
+
const h = L(e, !0, r, e);
|
|
226
|
+
l.x = h.x + e.clientLeft, l.y = h.y + e.clientTop;
|
|
227
|
+
} else n && f();
|
|
228
|
+
r && !o && n && f();
|
|
229
|
+
const u = n && !o && !r ? et(n, c) : y(0), a = s.left + c.scrollLeft - l.x - u.x, d = s.top + c.scrollTop - l.y - u.y;
|
|
230
|
+
return {
|
|
231
|
+
x: a,
|
|
232
|
+
y: d,
|
|
233
|
+
width: s.width,
|
|
234
|
+
height: s.height
|
|
235
|
+
};
|
|
236
|
+
}
|
|
237
|
+
function M(t) {
|
|
238
|
+
return R(t).position === "static";
|
|
239
|
+
}
|
|
240
|
+
function G(t, e) {
|
|
241
|
+
if (!T(t) || R(t).position === "fixed")
|
|
242
|
+
return null;
|
|
243
|
+
if (e)
|
|
244
|
+
return e(t);
|
|
245
|
+
let i = t.offsetParent;
|
|
246
|
+
return b(t) === i && (i = i.ownerDocument.body), i;
|
|
247
|
+
}
|
|
248
|
+
function ot(t, e) {
|
|
249
|
+
const i = O(t);
|
|
250
|
+
if (V(t))
|
|
251
|
+
return i;
|
|
252
|
+
if (!T(t)) {
|
|
253
|
+
let n = S(t);
|
|
254
|
+
for (; n && !A(n); ) {
|
|
255
|
+
if (v(n) && !M(n))
|
|
256
|
+
return n;
|
|
257
|
+
n = S(n);
|
|
258
|
+
}
|
|
259
|
+
return i;
|
|
260
|
+
}
|
|
261
|
+
let o = G(t, e);
|
|
262
|
+
for (; o && dt(o) && M(o); )
|
|
263
|
+
o = G(o, e);
|
|
264
|
+
return o && A(o) && M(o) && !Q(o) ? i : o || gt(t) || i;
|
|
265
|
+
}
|
|
266
|
+
const Tt = async function(t) {
|
|
267
|
+
const e = this.getOffsetParent || ot, i = this.getDimensions, o = await i(t.floating);
|
|
268
|
+
return {
|
|
269
|
+
reference: Lt(t.reference, await e(t.floating), t.strategy),
|
|
270
|
+
floating: {
|
|
271
|
+
x: 0,
|
|
272
|
+
y: 0,
|
|
273
|
+
width: o.width,
|
|
274
|
+
height: o.height
|
|
275
|
+
}
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
function Et(t) {
|
|
279
|
+
return R(t).direction === "rtl";
|
|
280
|
+
}
|
|
281
|
+
const Ft = {
|
|
282
|
+
convertOffsetParentRelativeRectToViewportRelativeRect: wt,
|
|
283
|
+
getDocumentElement: b,
|
|
284
|
+
getClippingRect: Ct,
|
|
285
|
+
getOffsetParent: ot,
|
|
286
|
+
getElementRects: Tt,
|
|
287
|
+
getClientRects: yt,
|
|
288
|
+
getDimensions: Ot,
|
|
289
|
+
getScale: F,
|
|
290
|
+
isElement: v,
|
|
291
|
+
isRTL: Et
|
|
292
|
+
};
|
|
293
|
+
function nt(t, e) {
|
|
294
|
+
return t.x === e.x && t.y === e.y && t.width === e.width && t.height === e.height;
|
|
295
|
+
}
|
|
296
|
+
function St(t, e) {
|
|
297
|
+
let i = null, o;
|
|
298
|
+
const n = b(t);
|
|
299
|
+
function r() {
|
|
300
|
+
var c;
|
|
301
|
+
clearTimeout(o), (c = i) == null || c.disconnect(), i = null;
|
|
302
|
+
}
|
|
303
|
+
function s(c, l) {
|
|
304
|
+
c === void 0 && (c = !1), l === void 0 && (l = 1), r();
|
|
305
|
+
const f = t.getBoundingClientRect(), {
|
|
306
|
+
left: u,
|
|
307
|
+
top: a,
|
|
308
|
+
width: d,
|
|
309
|
+
height: h
|
|
310
|
+
} = f;
|
|
311
|
+
if (c || e(), !d || !h)
|
|
312
|
+
return;
|
|
313
|
+
const m = D(a), p = D(n.clientWidth - (u + d)), w = D(n.clientHeight - (a + h)), g = D(u), C = {
|
|
314
|
+
rootMargin: -m + "px " + -p + "px " + -w + "px " + -g + "px",
|
|
315
|
+
threshold: E(0, N(1, l)) || 1
|
|
316
|
+
};
|
|
317
|
+
let W = !0;
|
|
318
|
+
function k(P) {
|
|
319
|
+
const B = P[0].intersectionRatio;
|
|
320
|
+
if (B !== l) {
|
|
321
|
+
if (!W)
|
|
322
|
+
return s();
|
|
323
|
+
B ? s(!1, B) : o = setTimeout(() => {
|
|
324
|
+
s(!1, 1e-7);
|
|
325
|
+
}, 1e3);
|
|
326
|
+
}
|
|
327
|
+
B === 1 && !nt(f, t.getBoundingClientRect()) && s(), W = !1;
|
|
328
|
+
}
|
|
329
|
+
try {
|
|
330
|
+
i = new IntersectionObserver(k, {
|
|
331
|
+
...C,
|
|
332
|
+
// Handle <iframe>s
|
|
333
|
+
root: n.ownerDocument
|
|
334
|
+
});
|
|
335
|
+
} catch {
|
|
336
|
+
i = new IntersectionObserver(k, C);
|
|
337
|
+
}
|
|
338
|
+
i.observe(t);
|
|
339
|
+
}
|
|
340
|
+
return s(!0), r;
|
|
341
|
+
}
|
|
342
|
+
function zt(t, e, i, o) {
|
|
343
|
+
o === void 0 && (o = {});
|
|
344
|
+
const {
|
|
345
|
+
ancestorScroll: n = !0,
|
|
346
|
+
ancestorResize: r = !0,
|
|
347
|
+
elementResize: s = typeof ResizeObserver == "function",
|
|
348
|
+
layoutShift: c = typeof IntersectionObserver == "function",
|
|
349
|
+
animationFrame: l = !1
|
|
350
|
+
} = o, f = X(t), u = n || r ? [...f ? $(f) : [], ...e ? $(e) : []] : [];
|
|
351
|
+
u.forEach((g) => {
|
|
352
|
+
n && g.addEventListener("scroll", i, {
|
|
353
|
+
passive: !0
|
|
354
|
+
}), r && g.addEventListener("resize", i);
|
|
355
|
+
});
|
|
356
|
+
const a = f && c ? St(f, i) : null;
|
|
357
|
+
let d = -1, h = null;
|
|
358
|
+
s && (h = new ResizeObserver((g) => {
|
|
359
|
+
let [x] = g;
|
|
360
|
+
x && x.target === f && h && e && (h.unobserve(e), cancelAnimationFrame(d), d = requestAnimationFrame(() => {
|
|
361
|
+
var C;
|
|
362
|
+
(C = h) == null || C.observe(e);
|
|
363
|
+
})), i();
|
|
364
|
+
}), f && !l && h.observe(f), e && h.observe(e));
|
|
365
|
+
let m, p = l ? L(t) : null;
|
|
366
|
+
l && w();
|
|
367
|
+
function w() {
|
|
368
|
+
const g = L(t);
|
|
369
|
+
p && !nt(p, g) && i(), p = g, m = requestAnimationFrame(w);
|
|
370
|
+
}
|
|
371
|
+
return i(), () => {
|
|
372
|
+
var g;
|
|
373
|
+
u.forEach((x) => {
|
|
374
|
+
n && x.removeEventListener("scroll", i), r && x.removeEventListener("resize", i);
|
|
375
|
+
}), a == null || a(), (g = h) == null || g.disconnect(), h = null, l && cancelAnimationFrame(m);
|
|
376
|
+
};
|
|
377
|
+
}
|
|
378
|
+
const At = rt, Ht = lt, It = ct, Mt = ut, Nt = ht, $t = at, Vt = ft, _t = (t, e, i) => {
|
|
379
|
+
const o = /* @__PURE__ */ new Map(), n = {
|
|
380
|
+
platform: Ft,
|
|
381
|
+
...i
|
|
382
|
+
}, r = {
|
|
383
|
+
...n.platform,
|
|
384
|
+
_c: o
|
|
385
|
+
};
|
|
386
|
+
return st(t, e, {
|
|
387
|
+
...n,
|
|
388
|
+
platform: r
|
|
389
|
+
});
|
|
390
|
+
};
|
|
391
|
+
export {
|
|
392
|
+
$t as arrow,
|
|
393
|
+
zt as autoUpdate,
|
|
394
|
+
_t as computePosition,
|
|
395
|
+
It as flip,
|
|
396
|
+
$ as getOverflowAncestors,
|
|
397
|
+
Nt as hide,
|
|
398
|
+
Vt as limitShift,
|
|
399
|
+
At as offset,
|
|
400
|
+
Ft as platform,
|
|
401
|
+
Ht as shift,
|
|
402
|
+
Mt as size
|
|
403
|
+
};
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
function u() {
|
|
2
|
+
return typeof window < "u";
|
|
3
|
+
}
|
|
4
|
+
function a(t) {
|
|
5
|
+
return m(t) ? (t.nodeName || "").toLowerCase() : "#document";
|
|
6
|
+
}
|
|
7
|
+
function i(t) {
|
|
8
|
+
var n;
|
|
9
|
+
return (t == null || (n = t.ownerDocument) == null ? void 0 : n.defaultView) || window;
|
|
10
|
+
}
|
|
11
|
+
function L(t) {
|
|
12
|
+
var n;
|
|
13
|
+
return (n = (m(t) ? t.ownerDocument : t.document) || window.document) == null ? void 0 : n.documentElement;
|
|
14
|
+
}
|
|
15
|
+
function m(t) {
|
|
16
|
+
return u() ? t instanceof Node || t instanceof i(t).Node : !1;
|
|
17
|
+
}
|
|
18
|
+
function h(t) {
|
|
19
|
+
return u() ? t instanceof Element || t instanceof i(t).Element : !1;
|
|
20
|
+
}
|
|
21
|
+
function g(t) {
|
|
22
|
+
return u() ? t instanceof HTMLElement || t instanceof i(t).HTMLElement : !1;
|
|
23
|
+
}
|
|
24
|
+
function p(t) {
|
|
25
|
+
return !u() || typeof ShadowRoot > "u" ? !1 : t instanceof ShadowRoot || t instanceof i(t).ShadowRoot;
|
|
26
|
+
}
|
|
27
|
+
function y(t) {
|
|
28
|
+
const {
|
|
29
|
+
overflow: n,
|
|
30
|
+
overflowX: r,
|
|
31
|
+
overflowY: c,
|
|
32
|
+
display: e
|
|
33
|
+
} = b(t);
|
|
34
|
+
return /auto|scroll|overlay|hidden|clip/.test(n + c + r) && e !== "inline" && e !== "contents";
|
|
35
|
+
}
|
|
36
|
+
function _(t) {
|
|
37
|
+
return /^(table|td|th)$/.test(a(t));
|
|
38
|
+
}
|
|
39
|
+
function T(t) {
|
|
40
|
+
try {
|
|
41
|
+
if (t.matches(":popover-open"))
|
|
42
|
+
return !0;
|
|
43
|
+
} catch {
|
|
44
|
+
}
|
|
45
|
+
try {
|
|
46
|
+
return t.matches(":modal");
|
|
47
|
+
} catch {
|
|
48
|
+
return !1;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
const v = /transform|translate|scale|rotate|perspective|filter/, C = /paint|layout|strict|content/, o = (t) => !!t && t !== "none";
|
|
52
|
+
let s;
|
|
53
|
+
function D(t) {
|
|
54
|
+
const n = h(t) ? b(t) : t;
|
|
55
|
+
return o(n.transform) || o(n.translate) || o(n.scale) || o(n.rotate) || o(n.perspective) || !R() && (o(n.backdropFilter) || o(n.filter)) || v.test(n.willChange || "") || C.test(n.contain || "");
|
|
56
|
+
}
|
|
57
|
+
function W(t) {
|
|
58
|
+
let n = f(t);
|
|
59
|
+
for (; g(n) && !N(n); ) {
|
|
60
|
+
if (D(n))
|
|
61
|
+
return n;
|
|
62
|
+
if (T(n))
|
|
63
|
+
return null;
|
|
64
|
+
n = f(n);
|
|
65
|
+
}
|
|
66
|
+
return null;
|
|
67
|
+
}
|
|
68
|
+
function R() {
|
|
69
|
+
return s == null && (s = typeof CSS < "u" && CSS.supports && CSS.supports("-webkit-backdrop-filter", "none")), s;
|
|
70
|
+
}
|
|
71
|
+
function N(t) {
|
|
72
|
+
return /^(html|body|#document)$/.test(a(t));
|
|
73
|
+
}
|
|
74
|
+
function b(t) {
|
|
75
|
+
return i(t).getComputedStyle(t);
|
|
76
|
+
}
|
|
77
|
+
function $(t) {
|
|
78
|
+
return h(t) ? {
|
|
79
|
+
scrollLeft: t.scrollLeft,
|
|
80
|
+
scrollTop: t.scrollTop
|
|
81
|
+
} : {
|
|
82
|
+
scrollLeft: t.scrollX,
|
|
83
|
+
scrollTop: t.scrollY
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
function f(t) {
|
|
87
|
+
if (a(t) === "html")
|
|
88
|
+
return t;
|
|
89
|
+
const n = (
|
|
90
|
+
// Step into the shadow DOM of the parent of a slotted node.
|
|
91
|
+
t.assignedSlot || // DOM Element detected.
|
|
92
|
+
t.parentNode || // ShadowRoot detected.
|
|
93
|
+
p(t) && t.host || // Fallback.
|
|
94
|
+
L(t)
|
|
95
|
+
);
|
|
96
|
+
return p(n) ? n.host : n;
|
|
97
|
+
}
|
|
98
|
+
function S(t) {
|
|
99
|
+
const n = f(t);
|
|
100
|
+
return N(n) ? t.ownerDocument ? t.ownerDocument.body : t.body : g(n) && y(n) ? n : S(n);
|
|
101
|
+
}
|
|
102
|
+
function w(t, n, r) {
|
|
103
|
+
var c;
|
|
104
|
+
n === void 0 && (n = []), r === void 0 && (r = !0);
|
|
105
|
+
const e = S(t), E = e === ((c = t.ownerDocument) == null ? void 0 : c.body), l = i(e);
|
|
106
|
+
if (E) {
|
|
107
|
+
const d = k(l);
|
|
108
|
+
return n.concat(l, l.visualViewport || [], y(e) ? e : [], d && r ? w(d) : []);
|
|
109
|
+
} else
|
|
110
|
+
return n.concat(e, w(e, [], r));
|
|
111
|
+
}
|
|
112
|
+
function k(t) {
|
|
113
|
+
return t.parent && Object.getPrototypeOf(t.parent) ? t.frameElement : null;
|
|
114
|
+
}
|
|
115
|
+
export {
|
|
116
|
+
b as getComputedStyle,
|
|
117
|
+
W as getContainingBlock,
|
|
118
|
+
L as getDocumentElement,
|
|
119
|
+
k as getFrameElement,
|
|
120
|
+
S as getNearestOverflowAncestor,
|
|
121
|
+
a as getNodeName,
|
|
122
|
+
$ as getNodeScroll,
|
|
123
|
+
w as getOverflowAncestors,
|
|
124
|
+
f as getParentNode,
|
|
125
|
+
i as getWindow,
|
|
126
|
+
D as isContainingBlock,
|
|
127
|
+
h as isElement,
|
|
128
|
+
g as isHTMLElement,
|
|
129
|
+
N as isLastTraversableNode,
|
|
130
|
+
m as isNode,
|
|
131
|
+
y as isOverflowElement,
|
|
132
|
+
p as isShadowRoot,
|
|
133
|
+
_ as isTableElement,
|
|
134
|
+
T as isTopLayer,
|
|
135
|
+
R as isWebKit
|
|
136
|
+
};
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
const S = ["top", "right", "bottom", "left"], m = Math.min, h = Math.max, w = Math.round, C = Math.floor, j = (t) => ({
|
|
2
|
+
x: t,
|
|
3
|
+
y: t
|
|
4
|
+
}), p = {
|
|
5
|
+
left: "right",
|
|
6
|
+
right: "left",
|
|
7
|
+
bottom: "top",
|
|
8
|
+
top: "bottom"
|
|
9
|
+
};
|
|
10
|
+
function L(t, n, e) {
|
|
11
|
+
return h(t, m(n, e));
|
|
12
|
+
}
|
|
13
|
+
function E(t, n) {
|
|
14
|
+
return typeof t == "function" ? t(n) : t;
|
|
15
|
+
}
|
|
16
|
+
function g(t) {
|
|
17
|
+
return t.split("-")[0];
|
|
18
|
+
}
|
|
19
|
+
function a(t) {
|
|
20
|
+
return t.split("-")[1];
|
|
21
|
+
}
|
|
22
|
+
function x(t) {
|
|
23
|
+
return t === "x" ? "y" : "x";
|
|
24
|
+
}
|
|
25
|
+
function b(t) {
|
|
26
|
+
return t === "y" ? "height" : "width";
|
|
27
|
+
}
|
|
28
|
+
function d(t) {
|
|
29
|
+
const n = t[0];
|
|
30
|
+
return n === "t" || n === "b" ? "y" : "x";
|
|
31
|
+
}
|
|
32
|
+
function A(t) {
|
|
33
|
+
return x(d(t));
|
|
34
|
+
}
|
|
35
|
+
function R(t, n, e) {
|
|
36
|
+
e === void 0 && (e = !1);
|
|
37
|
+
const r = a(t), i = A(t), o = b(i);
|
|
38
|
+
let c = i === "x" ? r === (e ? "end" : "start") ? "right" : "left" : r === "start" ? "bottom" : "top";
|
|
39
|
+
return n.reference[o] > n.floating[o] && (c = f(c)), [c, f(c)];
|
|
40
|
+
}
|
|
41
|
+
function T(t) {
|
|
42
|
+
const n = f(t);
|
|
43
|
+
return [s(t), n, s(n)];
|
|
44
|
+
}
|
|
45
|
+
function s(t) {
|
|
46
|
+
return t.includes("start") ? t.replace("start", "end") : t.replace("end", "start");
|
|
47
|
+
}
|
|
48
|
+
const u = ["left", "right"], l = ["right", "left"], P = ["top", "bottom"], y = ["bottom", "top"];
|
|
49
|
+
function O(t, n, e) {
|
|
50
|
+
switch (t) {
|
|
51
|
+
case "top":
|
|
52
|
+
case "bottom":
|
|
53
|
+
return e ? n ? l : u : n ? u : l;
|
|
54
|
+
case "left":
|
|
55
|
+
case "right":
|
|
56
|
+
return n ? P : y;
|
|
57
|
+
default:
|
|
58
|
+
return [];
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
function k(t, n, e, r) {
|
|
62
|
+
const i = a(t);
|
|
63
|
+
let o = O(g(t), e === "start", r);
|
|
64
|
+
return i && (o = o.map((c) => c + "-" + i), n && (o = o.concat(o.map(s)))), o;
|
|
65
|
+
}
|
|
66
|
+
function f(t) {
|
|
67
|
+
const n = g(t);
|
|
68
|
+
return p[n] + t.slice(n.length);
|
|
69
|
+
}
|
|
70
|
+
function M(t) {
|
|
71
|
+
return {
|
|
72
|
+
top: 0,
|
|
73
|
+
right: 0,
|
|
74
|
+
bottom: 0,
|
|
75
|
+
left: 0,
|
|
76
|
+
...t
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
function q(t) {
|
|
80
|
+
return typeof t != "number" ? M(t) : {
|
|
81
|
+
top: t,
|
|
82
|
+
right: t,
|
|
83
|
+
bottom: t,
|
|
84
|
+
left: t
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
function z(t) {
|
|
88
|
+
const {
|
|
89
|
+
x: n,
|
|
90
|
+
y: e,
|
|
91
|
+
width: r,
|
|
92
|
+
height: i
|
|
93
|
+
} = t;
|
|
94
|
+
return {
|
|
95
|
+
width: r,
|
|
96
|
+
height: i,
|
|
97
|
+
top: e,
|
|
98
|
+
left: n,
|
|
99
|
+
right: n + r,
|
|
100
|
+
bottom: e + i,
|
|
101
|
+
x: n,
|
|
102
|
+
y: e
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
export {
|
|
106
|
+
L as clamp,
|
|
107
|
+
j as createCoords,
|
|
108
|
+
E as evaluate,
|
|
109
|
+
M as expandPaddingObject,
|
|
110
|
+
C as floor,
|
|
111
|
+
a as getAlignment,
|
|
112
|
+
A as getAlignmentAxis,
|
|
113
|
+
R as getAlignmentSides,
|
|
114
|
+
b as getAxisLength,
|
|
115
|
+
T as getExpandedPlacements,
|
|
116
|
+
s as getOppositeAlignmentPlacement,
|
|
117
|
+
x as getOppositeAxis,
|
|
118
|
+
k as getOppositeAxisPlacements,
|
|
119
|
+
f as getOppositePlacement,
|
|
120
|
+
q as getPaddingObject,
|
|
121
|
+
g as getSide,
|
|
122
|
+
d as getSideAxis,
|
|
123
|
+
h as max,
|
|
124
|
+
m as min,
|
|
125
|
+
z as rectToClientRect,
|
|
126
|
+
w as round,
|
|
127
|
+
S as sides
|
|
128
|
+
};
|